
    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_1ba5b4e4b84183c82f66049c.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.575000;font-style:normal;font-weight:normal;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_874e834579597c183b29ebca.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.200000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00000;src:url('chunks/assets/font_190a8f4c1c0033654846e571.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:0.838000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00000;src:url('chunks/assets/font_13271e7797177c3ab136bb68.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00000{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_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:-8.865660px;}
.ls1_c00000{letter-spacing:-5.910450px;}
.ls2_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:-23.928794px;}
.ws1_c00000{word-spacing:0.000000px;}
._2_c00000{margin-left:-7.464886px;}
._0_c00000{margin-left:-6.081843px;}
._3_c00000{margin-left:-4.842919px;}
._1_c00000{margin-left:-3.227100px;}
._7_c00000{margin-left:-1.857231px;}
._6_c00000{width:1.261456px;}
._8_c00000{width:2.307676px;}
._5_c00000{width:3.498516px;}
._4_c00000{width:5.134742px;}
.fc3_c00000{color:transparent;}
.fc1_c00000{color:rgb(33,56,93);}
.fc2_c00000{color:rgb(255,255,255);}
.fc0_c00000{color:rgb(35,31,32);}
.fs6_c00000{font-size:82.712400px;}
.fs8_c00000{font-size:86.074800px;}
.fs5_c00000{font-size:90.672600px;}
.fs7_c00000{font-size:101.182800px;}
.fs1_c00000{font-size:118.209000px;}
.fs4_c00000{font-size:140.419200px;}
.fs2_c00000{font-size:142.438800px;}
.fs0_c00000{font-size:177.313200px;}
.fs9_c00000{font-size:180.852600px;}
.fs3_c00000{font-size:270.249600px;}
.y0_c00000{bottom:0.000000px;}
.y8_c00000{bottom:5.667300px;}
.y7_c00000{bottom:38.593500px;}
.yf_c00000{bottom:42.731400px;}
.y6_c00000{bottom:56.304750px;}
.y5_c00000{bottom:98.430750px;}
.y3_c00000{bottom:261.259800px;}
.ya_c00000{bottom:292.766010px;}
.y2_c00000{bottom:292.786200px;}
.y1_c00000{bottom:335.276850px;}
.y4_c00000{bottom:380.638650px;}
.yb_c00000{bottom:437.317950px;}
.yd_c00000{bottom:1064.415227px;}
.y9_c00000{bottom:1084.956000px;}
.yc_c00000{bottom:1089.527550px;}
.ye_c00000{bottom:1099.662858px;}
.h9_c00000{height:68.403155px;}
.h8_c00000{height:74.986240px;}
.hb_c00000{height:91.841812px;}
.ha_c00000{height:107.962048px;}
.h7_c00000{height:121.455000px;}
.h3_c00000{height:126.129003px;}
.h6_c00000{height:136.768301px;}
.h4_c00000{height:151.982200px;}
.hc_c00000{height:176.150432px;}
.h2_c00000{height:189.193184px;}
.h5_c00000{height:263.223110px;}
.h0_c00000{height:1262.835000px;}
.h1_c00000{height:1263.000000px;}
.w2_c00000{width:-518.437500px;}
.w3_c00000{width:892.912500px;}
.w0_c00000{width:892.914000px;}
.w1_c00000{width:893.250000px;}
.x7_c00000{left:-944.275800px;}
.x8_c00000{left:-63.464400px;}
.xb_c00000{left:-56.919750px;}
.x9_c00000{left:-37.966334px;}
.xd_c00000{left:-33.580950px;}
.xc_c00000{left:-19.821511px;}
.xa_c00000{left:-12.468269px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:99.724200px;}
.x2_c00000{left:154.814100px;}
.x3_c00000{left:319.945950px;}
.x5_c00000{left:334.387800px;}
.x6_c00000{left:472.152000px;}
.x4_c00000{left:512.704650px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:-7.880587pt;}
.ls1_c00000{letter-spacing:-5.253733pt;}
.ls2_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:-21.270039pt;}
.ws1_c00000{word-spacing:0.000000pt;}
._2_c00000{margin-left:-6.635454pt;}
._0_c00000{margin-left:-5.406082pt;}
._3_c00000{margin-left:-4.304817pt;}
._1_c00000{margin-left:-2.868534pt;}
._7_c00000{margin-left:-1.650872pt;}
._6_c00000{width:1.121294pt;}
._8_c00000{width:2.051268pt;}
._5_c00000{width:3.109792pt;}
._4_c00000{width:4.564215pt;}
.fs6_c00000{font-size:73.522133pt;}
.fs8_c00000{font-size:76.510933pt;}
.fs5_c00000{font-size:80.597867pt;}
.fs7_c00000{font-size:89.940267pt;}
.fs1_c00000{font-size:105.074667pt;}
.fs4_c00000{font-size:124.817067pt;}
.fs2_c00000{font-size:126.612267pt;}
.fs0_c00000{font-size:157.611733pt;}
.fs9_c00000{font-size:160.757867pt;}
.fs3_c00000{font-size:240.221867pt;}
.y0_c00000{bottom:0.000000pt;}
.y8_c00000{bottom:5.037600pt;}
.y7_c00000{bottom:34.305333pt;}
.yf_c00000{bottom:37.983467pt;}
.y6_c00000{bottom:50.048667pt;}
.y5_c00000{bottom:87.494000pt;}
.y3_c00000{bottom:232.230933pt;}
.ya_c00000{bottom:260.236454pt;}
.y2_c00000{bottom:260.254400pt;}
.y1_c00000{bottom:298.023867pt;}
.y4_c00000{bottom:338.345467pt;}
.yb_c00000{bottom:388.727067pt;}
.yd_c00000{bottom:946.146869pt;}
.y9_c00000{bottom:964.405333pt;}
.yc_c00000{bottom:968.468933pt;}
.ye_c00000{bottom:977.478096pt;}
.h9_c00000{height:60.802804pt;}
.h8_c00000{height:66.654436pt;}
.hb_c00000{height:81.637166pt;}
.ha_c00000{height:95.966265pt;}
.h7_c00000{height:107.960000pt;}
.h3_c00000{height:112.114669pt;}
.h6_c00000{height:121.571823pt;}
.h4_c00000{height:135.095289pt;}
.hc_c00000{height:156.578162pt;}
.h2_c00000{height:168.171719pt;}
.h5_c00000{height:233.976098pt;}
.h0_c00000{height:1122.520000pt;}
.h1_c00000{height:1122.666667pt;}
.w2_c00000{width:-460.833333pt;}
.w3_c00000{width:793.700000pt;}
.w0_c00000{width:793.701333pt;}
.w1_c00000{width:794.000000pt;}
.x7_c00000{left:-839.356267pt;}
.x8_c00000{left:-56.412800pt;}
.xb_c00000{left:-50.595333pt;}
.x9_c00000{left:-33.747853pt;}
.xd_c00000{left:-29.849733pt;}
.xc_c00000{left:-17.619121pt;}
.xa_c00000{left:-11.082906pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:88.643733pt;}
.x2_c00000{left:137.612533pt;}
.x3_c00000{left:284.396400pt;}
.x5_c00000{left:297.233600pt;}
.x6_c00000{left:419.690667pt;}
.x4_c00000{left:455.737467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00001{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
}
.y0_c00001{bottom:0.000000px;}
.h0_c00001{height:1262.835000px;}
.h1_c00001{height:1263.000000px;}
.w0_c00001{width:892.914000px;}
.w1_c00001{width:893.250000px;}
.x0_c00001{left:0.000000px;}
@media print{
.y0_c00001{bottom:0.000000pt;}
.h0_c00001{height:1122.520000pt;}
.h1_c00001{height:1122.666667pt;}
.w0_c00001{width:793.701333pt;}
.w1_c00001{width:794.000000pt;}
.x0_c00001{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_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;}
.sc__c00002{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
}
.y0_c00002{bottom:0.000000px;}
.h0_c00002{height:1262.835000px;}
.h1_c00002{height:1263.000000px;}
.w0_c00002{width:892.914000px;}
.w1_c00002{width:893.250000px;}
.x0_c00002{left:0.000000px;}
@media print{
.y0_c00002{bottom:0.000000pt;}
.h0_c00002{height:1122.520000pt;}
.h1_c00002{height:1122.666667pt;}
.w0_c00002{width:793.701333pt;}
.w1_c00002{width:794.000000pt;}
.x0_c00002{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_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;}
.sc__c00003{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
}
.y0_c00003{bottom:0.000000px;}
.h0_c00003{height:1262.835000px;}
.h1_c00003{height:1263.000000px;}
.w0_c00003{width:892.914000px;}
.w1_c00003{width:893.250000px;}
.x0_c00003{left:0.000000px;}
@media print{
.y0_c00003{bottom:0.000000pt;}
.h0_c00003{height:1122.520000pt;}
.h1_c00003{height:1122.666667pt;}
.w0_c00003{width:793.701333pt;}
.w1_c00003{width:794.000000pt;}
.x0_c00003{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_c00004 {
    display:none;
  }
  .loading-indicator_c00004.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00004 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00004 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00004" -> "#page-container .classname_c00004")
 */
.pf_c00004 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00004 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00004 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00004 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00004 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00004 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00004 {overflow:visible;}
  }
}
.c_c00004 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00004 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00004:after { /* webkit #35443 */
  content: '';
}
.t_c00004:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00004 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00004 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00004 { /* info for Javascript */
  display:none;
}
.l_c00004 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00004 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00004 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00004:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00004;src:url('chunks/assets/font_b7d6209967139dba54a55e72.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_038003eb0ec6705ee1498aae.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls2_c00004{letter-spacing:-0.167760px;}
.ls4_c00004{letter-spacing:-0.083880px;}
.ls5_c00004{letter-spacing:0.000000px;}
.ls1_c00004{letter-spacing:0.083880px;}
.ls0_c00004{letter-spacing:0.167760px;}
.ls3_c00004{letter-spacing:0.251640px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00004{word-spacing:-23.486400px;}
.ws2_c00004{word-spacing:-23.402520px;}
.ws0_c00004{word-spacing:-23.234760px;}
.ws11_c00004{word-spacing:-0.167760px;}
.wsc_c00004{word-spacing:-0.083880px;}
.wsd_c00004{word-spacing:0.000000px;}
.wsf_c00004{word-spacing:0.083880px;}
.ws8_c00004{word-spacing:0.167760px;}
.ws5_c00004{word-spacing:0.251640px;}
.ws10_c00004{word-spacing:4.194000px;}
.ws12_c00004{word-spacing:4.277880px;}
.ws4_c00004{word-spacing:4.865040px;}
.ws13_c00004{word-spacing:8.220240px;}
.ws9_c00004{word-spacing:18.956880px;}
.wsa_c00004{word-spacing:19.376280px;}
.wsb_c00004{word-spacing:21.221640px;}
.ws14_c00004{word-spacing:27.261000px;}
.ws15_c00004{word-spacing:37.326600px;}
.wse_c00004{word-spacing:40.597920px;}
.ws3_c00004{word-spacing:53.515440px;}
.ws7_c00004{word-spacing:66.097440px;}
.ws6_c00004{word-spacing:69.704280px;}
._0_c00004{margin-left:-1.342080px;}
._1_c00004{width:1.014948px;}
._3_c00004{width:3.598452px;}
._2_c00004{width:53.683200px;}
.fc0_c00004{color:rgb(0,0,0);}
.fs0_c00004{font-size:83.880000px;}
.y0_c00004{bottom:0.000000px;}
.y11_c00004{bottom:411.827100px;}
.y10_c00004{bottom:435.942600px;}
.yf_c00004{bottom:460.058100px;}
.ye_c00004{bottom:484.173600px;}
.yd_c00004{bottom:508.393950px;}
.yc_c00004{bottom:556.624950px;}
.yb_c00004{bottom:580.845300px;}
.ya_c00004{bottom:604.960800px;}
.y9_c00004{bottom:629.076300px;}
.y8_c00004{bottom:653.296650px;}
.y7_c00004{bottom:677.412150px;}
.y6_c00004{bottom:701.527650px;}
.y5_c00004{bottom:749.863500px;}
.y4_c00004{bottom:798.094500px;}
.y3_c00004{bottom:822.314850px;}
.y2_c00004{bottom:846.430350px;}
.y1_c00004{bottom:967.207350px;}
.h2_c00004{height:87.484219px;}
.h3_c00004{height:89.499960px;}
.h0_c00004{height:1262.835000px;}
.h1_c00004{height:1263.000000px;}
.w0_c00004{width:892.914000px;}
.w1_c00004{width:893.250000px;}
.x0_c00004{left:0.000000px;}
.x2_c00004{left:148.851900px;}
.x3_c00004{left:408.858930px;}
.x1_c00004{left:766.530000px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls2_c00004{letter-spacing:-0.149120pt;}
.ls4_c00004{letter-spacing:-0.074560pt;}
.ls5_c00004{letter-spacing:0.000000pt;}
.ls1_c00004{letter-spacing:0.074560pt;}
.ls0_c00004{letter-spacing:0.149120pt;}
.ls3_c00004{letter-spacing:0.223680pt;}
.ws1_c00004{word-spacing:-20.876800pt;}
.ws2_c00004{word-spacing:-20.802240pt;}
.ws0_c00004{word-spacing:-20.653120pt;}
.ws11_c00004{word-spacing:-0.149120pt;}
.wsc_c00004{word-spacing:-0.074560pt;}
.wsd_c00004{word-spacing:0.000000pt;}
.wsf_c00004{word-spacing:0.074560pt;}
.ws8_c00004{word-spacing:0.149120pt;}
.ws5_c00004{word-spacing:0.223680pt;}
.ws10_c00004{word-spacing:3.728000pt;}
.ws12_c00004{word-spacing:3.802560pt;}
.ws4_c00004{word-spacing:4.324480pt;}
.ws13_c00004{word-spacing:7.306880pt;}
.ws9_c00004{word-spacing:16.850560pt;}
.wsa_c00004{word-spacing:17.223360pt;}
.wsb_c00004{word-spacing:18.863680pt;}
.ws14_c00004{word-spacing:24.232000pt;}
.ws15_c00004{word-spacing:33.179200pt;}
.wse_c00004{word-spacing:36.087040pt;}
.ws3_c00004{word-spacing:47.569280pt;}
.ws7_c00004{word-spacing:58.753280pt;}
.ws6_c00004{word-spacing:61.959360pt;}
._0_c00004{margin-left:-1.192960pt;}
._1_c00004{width:0.902176pt;}
._3_c00004{width:3.198624pt;}
._2_c00004{width:47.718400pt;}
.fs0_c00004{font-size:74.560000pt;}
.y0_c00004{bottom:0.000000pt;}
.y11_c00004{bottom:366.068533pt;}
.y10_c00004{bottom:387.504533pt;}
.yf_c00004{bottom:408.940533pt;}
.ye_c00004{bottom:430.376533pt;}
.yd_c00004{bottom:451.905733pt;}
.yc_c00004{bottom:494.777733pt;}
.yb_c00004{bottom:516.306933pt;}
.ya_c00004{bottom:537.742933pt;}
.y9_c00004{bottom:559.178933pt;}
.y8_c00004{bottom:580.708133pt;}
.y7_c00004{bottom:602.144133pt;}
.y6_c00004{bottom:623.580133pt;}
.y5_c00004{bottom:666.545333pt;}
.y4_c00004{bottom:709.417333pt;}
.y3_c00004{bottom:730.946533pt;}
.y2_c00004{bottom:752.382533pt;}
.y1_c00004{bottom:859.739867pt;}
.h2_c00004{height:77.763750pt;}
.h3_c00004{height:79.555520pt;}
.h0_c00004{height:1122.520000pt;}
.h1_c00004{height:1122.666667pt;}
.w0_c00004{width:793.701333pt;}
.w1_c00004{width:794.000000pt;}
.x0_c00004{left:0.000000pt;}
.x2_c00004{left:132.312800pt;}
.x3_c00004{left:363.430160pt;}
.x1_c00004{left:681.360000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00005{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
}
.y0_c00005{bottom:0.000000px;}
.h0_c00005{height:1262.835000px;}
.h1_c00005{height:1263.000000px;}
.w0_c00005{width:892.914000px;}
.w1_c00005{width:893.250000px;}
.x0_c00005{left:0.000000px;}
@media print{
.y0_c00005{bottom:0.000000pt;}
.h0_c00005{height:1122.520000pt;}
.h1_c00005{height:1122.666667pt;}
.w0_c00005{width:793.701333pt;}
.w1_c00005{width:794.000000pt;}
.x0_c00005{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_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_8e75012d3a1aa222678f00af.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_b6fb90c31a6640d273278473.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00006;src:url('chunks/assets/font_3507aafbf56498ce42ad6924.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00006{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls2_c00006{letter-spacing:-0.167760px;}
.ls3_c00006{letter-spacing:-0.083880px;}
.ls4_c00006{letter-spacing:0.000000px;}
.ls5_c00006{letter-spacing:0.083880px;}
.ls0_c00006{letter-spacing:0.167760px;}
.ls1_c00006{letter-spacing:401.449680px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:-23.486400px;}
.ws2_c00006{word-spacing:-23.318640px;}
.ws1_c00006{word-spacing:-23.150880px;}
.ws9_c00006{word-spacing:-0.083880px;}
.wsa_c00006{word-spacing:0.000000px;}
.ws4_c00006{word-spacing:0.083880px;}
.ws8_c00006{word-spacing:0.167760px;}
.ws3_c00006{word-spacing:0.251640px;}
.ws5_c00006{word-spacing:0.503280px;}
.ws6_c00006{word-spacing:312.956280px;}
.ws7_c00006{word-spacing:564.260760px;}
._1_c00006{margin-left:-1.006560px;}
._0_c00006{width:1.006560px;}
._2_c00006{width:706.185720px;}
.fc0_c00006{color:rgb(0,0,0);}
.fs0_c00006{font-size:83.880000px;}
.y0_c00006{bottom:0.000000px;}
.yf_c00006{bottom:286.352430px;}
.ye_c00006{bottom:334.688280px;}
.yd_c00006{bottom:382.919280px;}
.yc_c00006{bottom:407.139630px;}
.yb_c00006{bottom:455.370630px;}
.ya_c00006{bottom:479.590980px;}
.y9_c00006{bottom:532.330530px;}
.y8_c00006{bottom:695.225490px;}
.y7_c00006{bottom:719.445840px;}
.y6_c00006{bottom:796.300890px;}
.y5_c00006{bottom:862.629000px;}
.y4_c00006{bottom:886.744500px;}
.y3_c00006{bottom:935.080350px;}
.y2_c00006{bottom:983.416200px;}
.y1_c00006{bottom:1060.357200px;}
.h2_c00006{height:87.484219px;}
.h3_c00006{height:89.499960px;}
.h0_c00006{height:1262.835000px;}
.h1_c00006{height:1263.000000px;}
.w0_c00006{width:892.914000px;}
.w1_c00006{width:893.250000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:127.620600px;}
.x3_c00006{left:150.960360px;}
.x2_c00006{left:182.876700px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls2_c00006{letter-spacing:-0.149120pt;}
.ls3_c00006{letter-spacing:-0.074560pt;}
.ls4_c00006{letter-spacing:0.000000pt;}
.ls5_c00006{letter-spacing:0.074560pt;}
.ls0_c00006{letter-spacing:0.149120pt;}
.ls1_c00006{letter-spacing:356.844160pt;}
.ws0_c00006{word-spacing:-20.876800pt;}
.ws2_c00006{word-spacing:-20.727680pt;}
.ws1_c00006{word-spacing:-20.578560pt;}
.ws9_c00006{word-spacing:-0.074560pt;}
.wsa_c00006{word-spacing:0.000000pt;}
.ws4_c00006{word-spacing:0.074560pt;}
.ws8_c00006{word-spacing:0.149120pt;}
.ws3_c00006{word-spacing:0.223680pt;}
.ws5_c00006{word-spacing:0.447360pt;}
.ws6_c00006{word-spacing:278.183360pt;}
.ws7_c00006{word-spacing:501.565120pt;}
._1_c00006{margin-left:-0.894720pt;}
._0_c00006{width:0.894720pt;}
._2_c00006{width:627.720640pt;}
.fs0_c00006{font-size:74.560000pt;}
.y0_c00006{bottom:0.000000pt;}
.yf_c00006{bottom:254.535493pt;}
.ye_c00006{bottom:297.500693pt;}
.yd_c00006{bottom:340.372693pt;}
.yc_c00006{bottom:361.901893pt;}
.yb_c00006{bottom:404.773893pt;}
.ya_c00006{bottom:426.303093pt;}
.y9_c00006{bottom:473.182693pt;}
.y8_c00006{bottom:617.978213pt;}
.y7_c00006{bottom:639.507413pt;}
.y6_c00006{bottom:707.823013pt;}
.y5_c00006{bottom:766.781333pt;}
.y4_c00006{bottom:788.217333pt;}
.y3_c00006{bottom:831.182533pt;}
.y2_c00006{bottom:874.147733pt;}
.y1_c00006{bottom:942.539733pt;}
.h2_c00006{height:77.763750pt;}
.h3_c00006{height:79.555520pt;}
.h0_c00006{height:1122.520000pt;}
.h1_c00006{height:1122.666667pt;}
.w0_c00006{width:793.701333pt;}
.w1_c00006{width:794.000000pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:113.440533pt;}
.x3_c00006{left:134.186987pt;}
.x2_c00006{left:162.557067pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00007{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
}
.y0_c00007{bottom:0.000000px;}
.h0_c00007{height:1262.835000px;}
.h1_c00007{height:1263.000000px;}
.w0_c00007{width:892.914000px;}
.w1_c00007{width:893.250000px;}
.x0_c00007{left:0.000000px;}
@media print{
.y0_c00007{bottom:0.000000pt;}
.h0_c00007{height:1122.520000pt;}
.h1_c00007{height:1122.666667pt;}
.w0_c00007{width:793.701333pt;}
.w1_c00007{width:794.000000pt;}
.x0_c00007{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_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;}
.sc__c00008{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
}
.y0_c00008{bottom:0.000000px;}
.h0_c00008{height:1262.835000px;}
.h1_c00008{height:1263.000000px;}
.w0_c00008{width:892.914000px;}
.w1_c00008{width:893.250000px;}
.x0_c00008{left:0.000000px;}
@media print{
.y0_c00008{bottom:0.000000pt;}
.h0_c00008{height:1122.520000pt;}
.h1_c00008{height:1122.666667pt;}
.w0_c00008{width:793.701333pt;}
.w1_c00008{width:794.000000pt;}
.x0_c00008{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_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;}
.sc__c00009{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00009{-webkit-text-stroke:0px transparent;}
}
.y0_c00009{bottom:0.000000px;}
.h0_c00009{height:1262.835000px;}
.h1_c00009{height:1263.000000px;}
.w0_c00009{width:892.914000px;}
.w1_c00009{width:893.250000px;}
.x0_c00009{left:0.000000px;}
@media print{
.y0_c00009{bottom:0.000000pt;}
.h0_c00009{height:1122.520000pt;}
.h1_c00009{height:1122.666667pt;}
.w0_c00009{width:793.701333pt;}
.w1_c00009{width:794.000000pt;}
.x0_c00009{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_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;}
.sc__c00010{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
}
.y0_c00010{bottom:0.000000px;}
.h0_c00010{height:1262.835000px;}
.h1_c00010{height:1263.000000px;}
.w0_c00010{width:892.914000px;}
.w1_c00010{width:893.250000px;}
.x0_c00010{left:0.000000px;}
@media print{
.y0_c00010{bottom:0.000000pt;}
.h0_c00010{height:1122.520000pt;}
.h1_c00010{height:1122.666667pt;}
.w0_c00010{width:793.701333pt;}
.w1_c00010{width:794.000000pt;}
.x0_c00010{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_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;}
.sc__c00011{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
}
.y0_c00011{bottom:0.000000px;}
.h0_c00011{height:1262.835000px;}
.h1_c00011{height:1263.000000px;}
.w0_c00011{width:892.914000px;}
.w1_c00011{width:893.250000px;}
.x0_c00011{left:0.000000px;}
@media print{
.y0_c00011{bottom:0.000000pt;}
.h0_c00011{height:1122.520000pt;}
.h1_c00011{height:1122.666667pt;}
.w0_c00011{width:793.701333pt;}
.w1_c00011{width:794.000000pt;}
.x0_c00011{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_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;}
.sc__c00012{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
}
.y0_c00012{bottom:0.000000px;}
.h0_c00012{height:1262.835000px;}
.h1_c00012{height:1263.000000px;}
.w0_c00012{width:892.914000px;}
.w1_c00012{width:893.250000px;}
.x0_c00012{left:0.000000px;}
@media print{
.y0_c00012{bottom:0.000000pt;}
.h0_c00012{height:1122.520000pt;}
.h1_c00012{height:1122.666667pt;}
.w0_c00012{width:793.701333pt;}
.w1_c00012{width:794.000000pt;}
.x0_c00012{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_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;}
.sc__c00013{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
}
.y0_c00013{bottom:0.000000px;}
.h0_c00013{height:1262.835000px;}
.h1_c00013{height:1263.000000px;}
.w0_c00013{width:892.914000px;}
.w1_c00013{width:893.250000px;}
.x0_c00013{left:0.000000px;}
@media print{
.y0_c00013{bottom:0.000000pt;}
.h0_c00013{height:1122.520000pt;}
.h1_c00013{height:1122.666667pt;}
.w0_c00013{width:793.701333pt;}
.w1_c00013{width:794.000000pt;}
.x0_c00013{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_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_865536ed6a50bb4447df94ca.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls0_c00014{letter-spacing:0.144000px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00014{word-spacing:-0.144000px;}
._0_c00014{margin-left:-1.008000px;}
.fc0_c00014{color:rgb(0,0,0);}
.fs0_c00014{font-size:72.000000px;}
.y0_c00014{bottom:0.000000px;}
.y1_c00014{bottom:643.274100px;}
.h2_c00014{height:76.824000px;}
.h0_c00014{height:1262.835000px;}
.h1_c00014{height:1263.000000px;}
.w0_c00014{width:892.914000px;}
.w1_c00014{width:893.250000px;}
.x0_c00014{left:0.000000px;}
.x1_c00014{left:673.470000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls0_c00014{letter-spacing:0.128000pt;}
.ws0_c00014{word-spacing:-0.128000pt;}
._0_c00014{margin-left:-0.896000pt;}
.fs0_c00014{font-size:64.000000pt;}
.y0_c00014{bottom:0.000000pt;}
.y1_c00014{bottom:571.799200pt;}
.h2_c00014{height:68.288000pt;}
.h0_c00014{height:1122.520000pt;}
.h1_c00014{height:1122.666667pt;}
.w0_c00014{width:793.701333pt;}
.w1_c00014{width:794.000000pt;}
.x0_c00014{left:0.000000pt;}
.x1_c00014{left:598.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00015{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
}
.y0_c00015{bottom:0.000000px;}
.h0_c00015{height:1262.835000px;}
.h1_c00015{height:1263.000000px;}
.w0_c00015{width:892.914000px;}
.w1_c00015{width:893.250000px;}
.x0_c00015{left:0.000000px;}
@media print{
.y0_c00015{bottom:0.000000pt;}
.h0_c00015{height:1122.520000pt;}
.h1_c00015{height:1122.666667pt;}
.w0_c00015{width:793.701333pt;}
.w1_c00015{width:794.000000pt;}
.x0_c00015{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_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_d66ccf4b21ce87ee6afd6e17.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00016;src:url('chunks/assets/font_d8295fe0f23ddb7430687dc7.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11_c00016{letter-spacing:-0.576000px;}
.ls10_c00016{letter-spacing:-0.360000px;}
.lsf_c00016{letter-spacing:-0.144000px;}
.ls12_c00016{letter-spacing:-0.072000px;}
.lse_c00016{letter-spacing:0.000000px;}
.ls1_c00016{letter-spacing:0.072000px;}
.lsb_c00016{letter-spacing:0.144000px;}
.ls3_c00016{letter-spacing:17.640000px;}
.ls4_c00016{letter-spacing:18.000000px;}
.lsa_c00016{letter-spacing:21.600000px;}
.lsc_c00016{letter-spacing:23.400000px;}
.lsd_c00016{letter-spacing:23.760000px;}
.ls7_c00016{letter-spacing:24.120000px;}
.ls6_c00016{letter-spacing:24.192000px;}
.ls5_c00016{letter-spacing:30.096000px;}
.ls2_c00016{letter-spacing:36.360000px;}
.ls8_c00016{letter-spacing:41.256000px;}
.ls9_c00016{letter-spacing:41.400000px;}
.ls0_c00016{letter-spacing:47.520000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00016{word-spacing:-18.144000px;}
.ws2_c00016{word-spacing:-18.072000px;}
.ws7_c00016{word-spacing:-18.000000px;}
.wsd_c00016{word-spacing:-17.856000px;}
.ws1d_c00016{word-spacing:-0.432000px;}
.ws9_c00016{word-spacing:-0.144000px;}
.ws22_c00016{word-spacing:-0.072000px;}
.ws13_c00016{word-spacing:0.000000px;}
.ws24_c00016{word-spacing:0.072000px;}
.ws19_c00016{word-spacing:0.144000px;}
.ws2f_c00016{word-spacing:0.216000px;}
.ws1c_c00016{word-spacing:0.360000px;}
.ws2d_c00016{word-spacing:0.576000px;}
.ws2c_c00016{word-spacing:3.456000px;}
.ws6_c00016{word-spacing:3.600000px;}
.wsf_c00016{word-spacing:3.672000px;}
.ws2e_c00016{word-spacing:3.816000px;}
.ws2b_c00016{word-spacing:3.960000px;}
.ws5_c00016{word-spacing:4.032000px;}
.wsc_c00016{word-spacing:4.176000px;}
.ws32_c00016{word-spacing:4.968000px;}
.wse_c00016{word-spacing:5.184000px;}
.ws31_c00016{word-spacing:5.328000px;}
.ws30_c00016{word-spacing:5.400000px;}
.wsa_c00016{word-spacing:5.688000px;}
.ws11_c00016{word-spacing:5.760000px;}
.ws34_c00016{word-spacing:5.832000px;}
.ws27_c00016{word-spacing:6.048000px;}
.ws10_c00016{word-spacing:6.120000px;}
.wsb_c00016{word-spacing:6.336000px;}
.ws18_c00016{word-spacing:6.696000px;}
.ws33_c00016{word-spacing:7.056000px;}
.ws17_c00016{word-spacing:7.200000px;}
.ws1b_c00016{word-spacing:8.208000px;}
.ws23_c00016{word-spacing:12.168000px;}
.ws25_c00016{word-spacing:12.456000px;}
.ws26_c00016{word-spacing:12.600000px;}
.ws1_c00016{word-spacing:12.880800px;}
.ws16_c00016{word-spacing:12.960000px;}
.ws15_c00016{word-spacing:13.104000px;}
.ws1f_c00016{word-spacing:18.360000px;}
.ws1e_c00016{word-spacing:19.296000px;}
.ws8_c00016{word-spacing:22.046400px;}
.ws20_c00016{word-spacing:22.608000px;}
.ws21_c00016{word-spacing:22.680000px;}
.ws29_c00016{word-spacing:23.328000px;}
.ws2a_c00016{word-spacing:23.400000px;}
.ws28_c00016{word-spacing:23.760000px;}
.ws14_c00016{word-spacing:29.160000px;}
.ws0_c00016{word-spacing:29.232000px;}
.ws12_c00016{word-spacing:29.520000px;}
.ws1a_c00016{word-spacing:31.608000px;}
.ws3_c00016{word-spacing:31.680000px;}
._0_c00016{margin-left:-1.008000px;}
._2_c00016{width:1.008000px;}
._5_c00016{width:5.040000px;}
._3_c00016{width:12.744000px;}
._4_c00016{width:29.520000px;}
._1_c00016{width:31.968000px;}
.fc0_c00016{color:rgb(0,0,0);}
.fs0_c00016{font-size:72.000000px;}
.y0_c00016{bottom:0.000000px;}
.y18_c00016{bottom:177.524400px;}
.y17_c00016{bottom:208.574400px;}
.y16_c00016{bottom:239.624400px;}
.y15_c00016{bottom:270.674400px;}
.y14_c00016{bottom:332.774400px;}
.y13_c00016{bottom:363.824400px;}
.y12_c00016{bottom:425.924400px;}
.y11_c00016{bottom:456.974400px;}
.y10_c00016{bottom:519.074400px;}
.yf_c00016{bottom:550.124400px;}
.ye_c00016{bottom:581.174400px;}
.yd_c00016{bottom:643.274400px;}
.yc_c00016{bottom:674.324400px;}
.yb_c00016{bottom:705.374400px;}
.ya_c00016{bottom:767.474400px;}
.y9_c00016{bottom:798.434400px;}
.y8_c00016{bottom:860.534400px;}
.y7_c00016{bottom:891.584400px;}
.y6_c00016{bottom:922.634400px;}
.y5_c00016{bottom:984.734400px;}
.y4_c00016{bottom:1015.784400px;}
.y3_c00016{bottom:1046.834400px;}
.y2_c00016{bottom:1108.934400px;}
.y1_c00016{bottom:1139.984400px;}
.h3_c00016{height:76.824000px;}
.h2_c00016{height:78.048000px;}
.h0_c00016{height:1262.835000px;}
.h1_c00016{height:1263.000000px;}
.w0_c00016{width:892.914000px;}
.w1_c00016{width:893.250000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:127.620000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls11_c00016{letter-spacing:-0.512000pt;}
.ls10_c00016{letter-spacing:-0.320000pt;}
.lsf_c00016{letter-spacing:-0.128000pt;}
.ls12_c00016{letter-spacing:-0.064000pt;}
.lse_c00016{letter-spacing:0.000000pt;}
.ls1_c00016{letter-spacing:0.064000pt;}
.lsb_c00016{letter-spacing:0.128000pt;}
.ls3_c00016{letter-spacing:15.680000pt;}
.ls4_c00016{letter-spacing:16.000000pt;}
.lsa_c00016{letter-spacing:19.200000pt;}
.lsc_c00016{letter-spacing:20.800000pt;}
.lsd_c00016{letter-spacing:21.120000pt;}
.ls7_c00016{letter-spacing:21.440000pt;}
.ls6_c00016{letter-spacing:21.504000pt;}
.ls5_c00016{letter-spacing:26.752000pt;}
.ls2_c00016{letter-spacing:32.320000pt;}
.ls8_c00016{letter-spacing:36.672000pt;}
.ls9_c00016{letter-spacing:36.800000pt;}
.ls0_c00016{letter-spacing:42.240000pt;}
.ws4_c00016{word-spacing:-16.128000pt;}
.ws2_c00016{word-spacing:-16.064000pt;}
.ws7_c00016{word-spacing:-16.000000pt;}
.wsd_c00016{word-spacing:-15.872000pt;}
.ws1d_c00016{word-spacing:-0.384000pt;}
.ws9_c00016{word-spacing:-0.128000pt;}
.ws22_c00016{word-spacing:-0.064000pt;}
.ws13_c00016{word-spacing:0.000000pt;}
.ws24_c00016{word-spacing:0.064000pt;}
.ws19_c00016{word-spacing:0.128000pt;}
.ws2f_c00016{word-spacing:0.192000pt;}
.ws1c_c00016{word-spacing:0.320000pt;}
.ws2d_c00016{word-spacing:0.512000pt;}
.ws2c_c00016{word-spacing:3.072000pt;}
.ws6_c00016{word-spacing:3.200000pt;}
.wsf_c00016{word-spacing:3.264000pt;}
.ws2e_c00016{word-spacing:3.392000pt;}
.ws2b_c00016{word-spacing:3.520000pt;}
.ws5_c00016{word-spacing:3.584000pt;}
.wsc_c00016{word-spacing:3.712000pt;}
.ws32_c00016{word-spacing:4.416000pt;}
.wse_c00016{word-spacing:4.608000pt;}
.ws31_c00016{word-spacing:4.736000pt;}
.ws30_c00016{word-spacing:4.800000pt;}
.wsa_c00016{word-spacing:5.056000pt;}
.ws11_c00016{word-spacing:5.120000pt;}
.ws34_c00016{word-spacing:5.184000pt;}
.ws27_c00016{word-spacing:5.376000pt;}
.ws10_c00016{word-spacing:5.440000pt;}
.wsb_c00016{word-spacing:5.632000pt;}
.ws18_c00016{word-spacing:5.952000pt;}
.ws33_c00016{word-spacing:6.272000pt;}
.ws17_c00016{word-spacing:6.400000pt;}
.ws1b_c00016{word-spacing:7.296000pt;}
.ws23_c00016{word-spacing:10.816000pt;}
.ws25_c00016{word-spacing:11.072000pt;}
.ws26_c00016{word-spacing:11.200000pt;}
.ws1_c00016{word-spacing:11.449600pt;}
.ws16_c00016{word-spacing:11.520000pt;}
.ws15_c00016{word-spacing:11.648000pt;}
.ws1f_c00016{word-spacing:16.320000pt;}
.ws1e_c00016{word-spacing:17.152000pt;}
.ws8_c00016{word-spacing:19.596800pt;}
.ws20_c00016{word-spacing:20.096000pt;}
.ws21_c00016{word-spacing:20.160000pt;}
.ws29_c00016{word-spacing:20.736000pt;}
.ws2a_c00016{word-spacing:20.800000pt;}
.ws28_c00016{word-spacing:21.120000pt;}
.ws14_c00016{word-spacing:25.920000pt;}
.ws0_c00016{word-spacing:25.984000pt;}
.ws12_c00016{word-spacing:26.240000pt;}
.ws1a_c00016{word-spacing:28.096000pt;}
.ws3_c00016{word-spacing:28.160000pt;}
._0_c00016{margin-left:-0.896000pt;}
._2_c00016{width:0.896000pt;}
._5_c00016{width:4.480000pt;}
._3_c00016{width:11.328000pt;}
._4_c00016{width:26.240000pt;}
._1_c00016{width:28.416000pt;}
.fs0_c00016{font-size:64.000000pt;}
.y0_c00016{bottom:0.000000pt;}
.y18_c00016{bottom:157.799467pt;}
.y17_c00016{bottom:185.399467pt;}
.y16_c00016{bottom:212.999467pt;}
.y15_c00016{bottom:240.599467pt;}
.y14_c00016{bottom:295.799467pt;}
.y13_c00016{bottom:323.399467pt;}
.y12_c00016{bottom:378.599467pt;}
.y11_c00016{bottom:406.199467pt;}
.y10_c00016{bottom:461.399467pt;}
.yf_c00016{bottom:488.999467pt;}
.ye_c00016{bottom:516.599467pt;}
.yd_c00016{bottom:571.799467pt;}
.yc_c00016{bottom:599.399467pt;}
.yb_c00016{bottom:626.999467pt;}
.ya_c00016{bottom:682.199467pt;}
.y9_c00016{bottom:709.719467pt;}
.y8_c00016{bottom:764.919467pt;}
.y7_c00016{bottom:792.519467pt;}
.y6_c00016{bottom:820.119467pt;}
.y5_c00016{bottom:875.319467pt;}
.y4_c00016{bottom:902.919467pt;}
.y3_c00016{bottom:930.519467pt;}
.y2_c00016{bottom:985.719467pt;}
.y1_c00016{bottom:1013.319467pt;}
.h3_c00016{height:68.288000pt;}
.h2_c00016{height:69.376000pt;}
.h0_c00016{height:1122.520000pt;}
.h1_c00016{height:1122.666667pt;}
.w0_c00016{width:793.701333pt;}
.w1_c00016{width:794.000000pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:113.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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;}
.sc__c00017{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
}
.y0_c00017{bottom:0.000000px;}
.h0_c00017{height:1262.835000px;}
.h1_c00017{height:1263.000000px;}
.w0_c00017{width:892.914000px;}
.w1_c00017{width:893.250000px;}
.x0_c00017{left:0.000000px;}
@media print{
.y0_c00017{bottom:0.000000pt;}
.h0_c00017{height:1122.520000pt;}
.h1_c00017{height:1122.666667pt;}
.w0_c00017{width:793.701333pt;}
.w1_c00017{width:794.000000pt;}
.x0_c00017{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_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;}
.sc__c00018{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
}
.y0_c00018{bottom:0.000000px;}
.h0_c00018{height:1262.835000px;}
.h1_c00018{height:1263.000000px;}
.w0_c00018{width:892.914000px;}
.w1_c00018{width:893.250000px;}
.x0_c00018{left:0.000000px;}
@media print{
.y0_c00018{bottom:0.000000pt;}
.h0_c00018{height:1122.520000pt;}
.h1_c00018{height:1122.666667pt;}
.w0_c00018{width:793.701333pt;}
.w1_c00018{width:794.000000pt;}
.x0_c00018{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_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;}
.sc__c00019{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
}
.y0_c00019{bottom:0.000000px;}
.h0_c00019{height:1262.835000px;}
.h1_c00019{height:1263.000000px;}
.w0_c00019{width:892.914000px;}
.w1_c00019{width:893.250000px;}
.x0_c00019{left:0.000000px;}
@media print{
.y0_c00019{bottom:0.000000pt;}
.h0_c00019{height:1122.520000pt;}
.h1_c00019{height:1122.666667pt;}
.w0_c00019{width:793.701333pt;}
.w1_c00019{width:794.000000pt;}
.x0_c00019{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_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00020;src:url('chunks/assets/font_68b1edff075db546de702732.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00020;src:url('chunks/assets/font_3ea1cc2f0c97fb5018320893.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00020;src:url('chunks/assets/font_a3364a25eeaf991fd91f6e6c.woff2')format("woff");}.ff4_c00020{font-family:ff4_c00020;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00020{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls2_c00020{letter-spacing:-0.065880px;}
.ls1_c00020{letter-spacing:0.000000px;}
.ls0_c00020{letter-spacing:0.065880px;}
.ls3_c00020{letter-spacing:0.197640px;}
.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;}
}
.ws1_c00020{word-spacing:-16.535880px;}
.ws3_c00020{word-spacing:-16.470000px;}
.ws0_c00020{word-spacing:-16.404120px;}
.ws10_c00020{word-spacing:-0.461160px;}
.wsd_c00020{word-spacing:-0.197640px;}
.wsc_c00020{word-spacing:-0.131760px;}
.ws8_c00020{word-spacing:0.000000px;}
.wsf_c00020{word-spacing:0.065880px;}
.wse_c00020{word-spacing:0.131760px;}
.wsb_c00020{word-spacing:0.197640px;}
.ws4_c00020{word-spacing:10.936080px;}
.ws5_c00020{word-spacing:11.331360px;}
.ws6_c00020{word-spacing:13.439520px;}
.ws7_c00020{word-spacing:18.841680px;}
.ws9_c00020{word-spacing:21.015720px;}
.wsa_c00020{word-spacing:28.196640px;}
.ws2_c00020{word-spacing:41.504400px;}
._7_c00020{margin-left:-1.264896px;}
._0_c00020{width:1.119960px;}
._4_c00020{width:2.239920px;}
._3_c00020{width:3.623400px;}
._1_c00020{width:5.468040px;}
._8_c00020{width:7.128216px;}
._5_c00020{width:9.289080px;}
._2_c00020{width:11.001960px;}
._9_c00020{width:44.864280px;}
._6_c00020{width:58.172040px;}
.fc1_c00020{color:rgb(0,0,0);}
.fc0_c00020{color:rgb(35,31,32);}
.fs1_c00020{font-size:65.880000px;}
.fs0_c00020{font-size:72.000000px;}
.y0_c00020{bottom:0.000000px;}
.y1_c00020{bottom:61.748550px;}
.y1d_c00020{bottom:124.386870px;}
.y1c_c00020{bottom:152.912910px;}
.y1b_c00020{bottom:181.356600px;}
.y1a_c00020{bottom:209.800290px;}
.y19_c00020{bottom:238.243980px;}
.y18_c00020{bottom:266.687670px;}
.y17_c00020{bottom:295.213710px;}
.y16_c00020{bottom:323.657400px;}
.y15_c00020{bottom:352.101090px;}
.y14_c00020{bottom:380.544780px;}
.y13_c00020{bottom:409.070820px;}
.y12_c00020{bottom:465.958200px;}
.y11_c00020{bottom:551.371620px;}
.y10_c00020{bottom:608.259000px;}
.yf_c00020{bottom:636.702690px;}
.ye_c00020{bottom:665.228730px;}
.yd_c00020{bottom:693.672420px;}
.yc_c00020{bottom:722.116110px;}
.yb_c00020{bottom:779.085840px;}
.ya_c00020{bottom:807.529530px;}
.y9_c00020{bottom:864.416910px;}
.y8_c00020{bottom:921.386640px;}
.y7_c00020{bottom:949.830330px;}
.y6_c00020{bottom:978.274020px;}
.y5_c00020{bottom:1035.243750px;}
.y4_c00020{bottom:1084.291410px;}
.y3_c00020{bottom:1141.261140px;}
.y2_c00020{bottom:1194.096900px;}
.h2_c00020{height:50.400000px;}
.h3_c00020{height:54.331699px;}
.h4_c00020{height:70.293960px;}
.h0_c00020{height:1262.835000px;}
.h1_c00020{height:1263.000000px;}
.w0_c00020{width:892.914000px;}
.w1_c00020{width:893.250000px;}
.x0_c00020{left:0.000000px;}
.x2_c00020{left:85.050000px;}
.x4_c00020{left:106.362180px;}
.x5_c00020{left:112.554900px;}
.x6_c00020{left:138.989250px;}
.x3_c00020{left:166.032990px;}
.x7_c00020{left:180.641880px;}
.x1_c00020{left:804.366150px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls2_c00020{letter-spacing:-0.058560pt;}
.ls1_c00020{letter-spacing:0.000000pt;}
.ls0_c00020{letter-spacing:0.058560pt;}
.ls3_c00020{letter-spacing:0.175680pt;}
.ws1_c00020{word-spacing:-14.698560pt;}
.ws3_c00020{word-spacing:-14.640000pt;}
.ws0_c00020{word-spacing:-14.581440pt;}
.ws10_c00020{word-spacing:-0.409920pt;}
.wsd_c00020{word-spacing:-0.175680pt;}
.wsc_c00020{word-spacing:-0.117120pt;}
.ws8_c00020{word-spacing:0.000000pt;}
.wsf_c00020{word-spacing:0.058560pt;}
.wse_c00020{word-spacing:0.117120pt;}
.wsb_c00020{word-spacing:0.175680pt;}
.ws4_c00020{word-spacing:9.720960pt;}
.ws5_c00020{word-spacing:10.072320pt;}
.ws6_c00020{word-spacing:11.946240pt;}
.ws7_c00020{word-spacing:16.748160pt;}
.ws9_c00020{word-spacing:18.680640pt;}
.wsa_c00020{word-spacing:25.063680pt;}
.ws2_c00020{word-spacing:36.892800pt;}
._7_c00020{margin-left:-1.124352pt;}
._0_c00020{width:0.995520pt;}
._4_c00020{width:1.991040pt;}
._3_c00020{width:3.220800pt;}
._1_c00020{width:4.860480pt;}
._8_c00020{width:6.336192pt;}
._5_c00020{width:8.256960pt;}
._2_c00020{width:9.779520pt;}
._9_c00020{width:39.879360pt;}
._6_c00020{width:51.708480pt;}
.fs1_c00020{font-size:58.560000pt;}
.fs0_c00020{font-size:64.000000pt;}
.y0_c00020{bottom:0.000000pt;}
.y1_c00020{bottom:54.887600pt;}
.y1d_c00020{bottom:110.566107pt;}
.y1c_c00020{bottom:135.922587pt;}
.y1b_c00020{bottom:161.205867pt;}
.y1a_c00020{bottom:186.489147pt;}
.y19_c00020{bottom:211.772427pt;}
.y18_c00020{bottom:237.055707pt;}
.y17_c00020{bottom:262.412187pt;}
.y16_c00020{bottom:287.695467pt;}
.y15_c00020{bottom:312.978747pt;}
.y14_c00020{bottom:338.262027pt;}
.y13_c00020{bottom:363.618507pt;}
.y12_c00020{bottom:414.185067pt;}
.y11_c00020{bottom:490.108107pt;}
.y10_c00020{bottom:540.674667pt;}
.yf_c00020{bottom:565.957947pt;}
.ye_c00020{bottom:591.314427pt;}
.yd_c00020{bottom:616.597707pt;}
.yc_c00020{bottom:641.880987pt;}
.yb_c00020{bottom:692.520747pt;}
.ya_c00020{bottom:717.804027pt;}
.y9_c00020{bottom:768.370587pt;}
.y8_c00020{bottom:819.010347pt;}
.y7_c00020{bottom:844.293627pt;}
.y6_c00020{bottom:869.576907pt;}
.y5_c00020{bottom:920.216667pt;}
.y4_c00020{bottom:963.814587pt;}
.y3_c00020{bottom:1014.454347pt;}
.y2_c00020{bottom:1061.419467pt;}
.h2_c00020{height:44.800000pt;}
.h3_c00020{height:48.294844pt;}
.h4_c00020{height:62.483520pt;}
.h0_c00020{height:1122.520000pt;}
.h1_c00020{height:1122.666667pt;}
.w0_c00020{width:793.701333pt;}
.w1_c00020{width:794.000000pt;}
.x0_c00020{left:0.000000pt;}
.x2_c00020{left:75.600000pt;}
.x4_c00020{left:94.544160pt;}
.x5_c00020{left:100.048800pt;}
.x6_c00020{left:123.546000pt;}
.x3_c00020{left:147.584880pt;}
.x7_c00020{left:160.570560pt;}
.x1_c00020{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_90afe6b36d3396899e0f97ce.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_cd1ff034adad5fffb5856beb.woff2')format("woff");}.ff3_c00021{font-family:ff3_c00021;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00021;src:url('chunks/assets/font_d2590a06cbf2492f19703e0f.woff2')format("woff");}.ff4_c00021{font-family:ff4_c00021;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls3_c00021{letter-spacing:-0.065880px;}
.ls1_c00021{letter-spacing:0.000000px;}
.ls0_c00021{letter-spacing:0.065880px;}
.ls2_c00021{letter-spacing:0.197640px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00021{word-spacing:-16.535880px;}
.ws2_c00021{word-spacing:-16.470000px;}
.ws5_c00021{word-spacing:-16.404120px;}
.ws9_c00021{word-spacing:-0.197640px;}
.ws7_c00021{word-spacing:-0.131760px;}
.wsa_c00021{word-spacing:-0.065880px;}
.ws6_c00021{word-spacing:0.000000px;}
.wsb_c00021{word-spacing:0.065880px;}
.ws8_c00021{word-spacing:0.131760px;}
.ws4_c00021{word-spacing:21.345120px;}
.ws3_c00021{word-spacing:28.196640px;}
.ws0_c00021{word-spacing:41.504400px;}
._0_c00021{margin-left:-1.185840px;}
._3_c00021{width:1.126548px;}
._9_c00021{width:3.129300px;}
._4_c00021{width:4.255848px;}
._2_c00021{width:5.468040px;}
._7_c00021{width:7.299504px;}
._8_c00021{width:9.071676px;}
._1_c00021{width:11.067840px;}
._6_c00021{width:12.095568px;}
._5_c00021{width:15.389568px;}
._a_c00021{width:30.014928px;}
.fc1_c00021{color:rgb(0,0,0);}
.fc0_c00021{color:rgb(35,31,32);}
.fs1_c00021{font-size:65.880000px;}
.fs0_c00021{font-size:72.000000px;}
.y0_c00021{bottom:0.000000px;}
.y1_c00021{bottom:61.748550px;}
.y1c_c00021{bottom:116.623470px;}
.y1b_c00021{bottom:145.067160px;}
.y1a_c00021{bottom:173.593200px;}
.y19_c00021{bottom:202.036890px;}
.y18_c00021{bottom:230.480580px;}
.y17_c00021{bottom:287.367960px;}
.y16_c00021{bottom:344.238870px;}
.y15_c00021{bottom:372.764910px;}
.y14_c00021{bottom:458.178330px;}
.y13_c00021{bottom:515.065710px;}
.y12_c00021{bottom:543.509400px;}
.y11_c00021{bottom:572.035440px;}
.y10_c00021{bottom:600.479130px;}
.yf_c00021{bottom:628.922820px;}
.ye_c00021{bottom:685.892550px;}
.yd_c00021{bottom:714.336240px;}
.yc_c00021{bottom:742.779930px;}
.yb_c00021{bottom:771.223620px;}
.ya_c00021{bottom:828.193350px;}
.y9_c00021{bottom:913.524420px;}
.y8_c00021{bottom:970.494150px;}
.y7_c00021{bottom:998.937840px;}
.y6_c00021{bottom:1027.381530px;}
.y5_c00021{bottom:1055.825220px;}
.y4_c00021{bottom:1084.351260px;}
.y3_c00021{bottom:1112.794950px;}
.y2_c00021{bottom:1194.074400px;}
.h2_c00021{height:50.400000px;}
.h3_c00021{height:54.331699px;}
.h4_c00021{height:70.293960px;}
.h0_c00021{height:1262.835000px;}
.h1_c00021{height:1263.000000px;}
.w0_c00021{width:892.914000px;}
.w1_c00021{width:893.250000px;}
.x0_c00021{left:0.000000px;}
.x1_c00021{left:54.000000px;}
.x2_c00021{left:85.050000px;}
.x3_c00021{left:90.007470px;}
.x4_c00021{left:106.395120px;}
.x5_c00021{left:116.935920px;}
.x6_c00021{left:148.805370px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls3_c00021{letter-spacing:-0.058560pt;}
.ls1_c00021{letter-spacing:0.000000pt;}
.ls0_c00021{letter-spacing:0.058560pt;}
.ls2_c00021{letter-spacing:0.175680pt;}
.ws1_c00021{word-spacing:-14.698560pt;}
.ws2_c00021{word-spacing:-14.640000pt;}
.ws5_c00021{word-spacing:-14.581440pt;}
.ws9_c00021{word-spacing:-0.175680pt;}
.ws7_c00021{word-spacing:-0.117120pt;}
.wsa_c00021{word-spacing:-0.058560pt;}
.ws6_c00021{word-spacing:0.000000pt;}
.wsb_c00021{word-spacing:0.058560pt;}
.ws8_c00021{word-spacing:0.117120pt;}
.ws4_c00021{word-spacing:18.973440pt;}
.ws3_c00021{word-spacing:25.063680pt;}
.ws0_c00021{word-spacing:36.892800pt;}
._0_c00021{margin-left:-1.054080pt;}
._3_c00021{width:1.001376pt;}
._9_c00021{width:2.781600pt;}
._4_c00021{width:3.782976pt;}
._2_c00021{width:4.860480pt;}
._7_c00021{width:6.488448pt;}
._8_c00021{width:8.063712pt;}
._1_c00021{width:9.838080pt;}
._6_c00021{width:10.751616pt;}
._5_c00021{width:13.679616pt;}
._a_c00021{width:26.679936pt;}
.fs1_c00021{font-size:58.560000pt;}
.fs0_c00021{font-size:64.000000pt;}
.y0_c00021{bottom:0.000000pt;}
.y1_c00021{bottom:54.887600pt;}
.y1c_c00021{bottom:103.665307pt;}
.y1b_c00021{bottom:128.948587pt;}
.y1a_c00021{bottom:154.305067pt;}
.y19_c00021{bottom:179.588347pt;}
.y18_c00021{bottom:204.871627pt;}
.y17_c00021{bottom:255.438187pt;}
.y16_c00021{bottom:305.990107pt;}
.y15_c00021{bottom:331.346587pt;}
.y14_c00021{bottom:407.269627pt;}
.y13_c00021{bottom:457.836187pt;}
.y12_c00021{bottom:483.119467pt;}
.y11_c00021{bottom:508.475947pt;}
.y10_c00021{bottom:533.759227pt;}
.yf_c00021{bottom:559.042507pt;}
.ye_c00021{bottom:609.682267pt;}
.yd_c00021{bottom:634.965547pt;}
.yc_c00021{bottom:660.248827pt;}
.yb_c00021{bottom:685.532107pt;}
.ya_c00021{bottom:736.171867pt;}
.y9_c00021{bottom:812.021707pt;}
.y8_c00021{bottom:862.661467pt;}
.y7_c00021{bottom:887.944747pt;}
.y6_c00021{bottom:913.228027pt;}
.y5_c00021{bottom:938.511307pt;}
.y4_c00021{bottom:963.867787pt;}
.y3_c00021{bottom:989.151067pt;}
.y2_c00021{bottom:1061.399467pt;}
.h2_c00021{height:44.800000pt;}
.h3_c00021{height:48.294844pt;}
.h4_c00021{height:62.483520pt;}
.h0_c00021{height:1122.520000pt;}
.h1_c00021{height:1122.666667pt;}
.w0_c00021{width:793.701333pt;}
.w1_c00021{width:794.000000pt;}
.x0_c00021{left:0.000000pt;}
.x1_c00021{left:48.000000pt;}
.x2_c00021{left:75.600000pt;}
.x3_c00021{left:80.006640pt;}
.x4_c00021{left:94.573440pt;}
.x5_c00021{left:103.943040pt;}
.x6_c00021{left:132.271440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00022;src:url('chunks/assets/font_dbcdd080c888fb5957d28d49.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00022;src:url('chunks/assets/font_e5e5fd2eeca09bff66896762.woff2')format("woff");}.ff3_c00022{font-family:ff3_c00022;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00022;src:url('chunks/assets/font_dd795c3f10940107807f94d9.woff2')format("woff");}.ff4_c00022{font-family:ff4_c00022;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00022;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00022{font-family:ff5_c00022;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00022;src:url('chunks/assets/font_71a6e07067a5547da9c686f7.woff2')format("woff");}.ff6_c00022{font-family:ff6_c00022;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00022;src:url('chunks/assets/font_2d31b9f89b0e6a1c064ee1a1.woff2')format("woff");}.ff7_c00022{font-family:ff7_c00022;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00022;src:url('chunks/assets/font_44a6f821c249e48b65f88fa8.woff2')format("woff");}.ff8_c00022{font-family:ff8_c00022;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00022{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls4_c00022{letter-spacing:-0.131760px;}
.ls3_c00022{letter-spacing:-0.065880px;}
.ls1_c00022{letter-spacing:0.000000px;}
.ls0_c00022{letter-spacing:0.065880px;}
.ls2_c00022{letter-spacing:0.197640px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00022{word-spacing:-16.535880px;}
.ws2_c00022{word-spacing:-16.470000px;}
.ws5_c00022{word-spacing:-16.404120px;}
.ws6_c00022{word-spacing:-16.338240px;}
.wse_c00022{word-spacing:-0.197640px;}
.wsc_c00022{word-spacing:-0.131760px;}
.wsf_c00022{word-spacing:-0.065880px;}
.wsb_c00022{word-spacing:0.000000px;}
.ws10_c00022{word-spacing:0.065880px;}
.wsd_c00022{word-spacing:0.131760px;}
.ws11_c00022{word-spacing:0.197640px;}
.ws9_c00022{word-spacing:1.179252px;}
.ws8_c00022{word-spacing:3.636576px;}
.ws7_c00022{word-spacing:5.072760px;}
.wsa_c00022{word-spacing:12.662136px;}
.ws4_c00022{word-spacing:21.345120px;}
.ws3_c00022{word-spacing:28.196640px;}
.ws0_c00022{word-spacing:41.504400px;}
._0_c00022{margin-left:-1.185840px;}
._3_c00022{width:1.126548px;}
._9_c00022{width:3.129300px;}
._4_c00022{width:4.255848px;}
._2_c00022{width:5.468040px;}
._7_c00022{width:7.299504px;}
._8_c00022{width:9.071676px;}
._1_c00022{width:11.067840px;}
._6_c00022{width:12.095568px;}
._11_c00022{width:14.282784px;}
._5_c00022{width:15.389568px;}
._c_c00022{width:22.181796px;}
._10_c00022{width:23.631156px;}
._b_c00022{width:26.404704px;}
._e_c00022{width:27.511488px;}
._a_c00022{width:30.014928px;}
._f_c00022{width:32.188968px;}
._d_c00022{width:58.172040px;}
.fc2_c00022{color:transparent;}
.fc1_c00022{color:rgb(0,0,0);}
.fc0_c00022{color:rgb(35,31,32);}
.fs1_c00022{font-size:65.880000px;}
.fs0_c00022{font-size:72.000000px;}
.y0_c00022{bottom:0.000000px;}
.y1_c00022{bottom:61.748550px;}
.y29_c00022{bottom:116.607000px;}
.y1c_c00022{bottom:116.623470px;}
.y28_c00022{bottom:145.050690px;}
.y1b_c00022{bottom:145.067160px;}
.y1a_c00022{bottom:173.593200px;}
.y27_c00022{bottom:202.020420px;}
.y19_c00022{bottom:202.036890px;}
.y26_c00022{bottom:230.464110px;}
.y18_c00022{bottom:230.480580px;}
.y25_c00022{bottom:258.907800px;}
.y17_c00022{bottom:287.367960px;}
.y24_c00022{bottom:315.877530px;}
.y16_c00022{bottom:344.238870px;}
.y15_c00022{bottom:372.764910px;}
.y23_c00022{bottom:429.734640px;}
.y14_c00022{bottom:458.178330px;}
.y22_c00022{bottom:486.622020px;}
.y13_c00022{bottom:515.065710px;}
.y12_c00022{bottom:543.509400px;}
.y11_c00022{bottom:572.035440px;}
.y10_c00022{bottom:600.479130px;}
.yf_c00022{bottom:628.922820px;}
.y21_c00022{bottom:657.366510px;}
.ye_c00022{bottom:685.892550px;}
.yd_c00022{bottom:714.336240px;}
.yc_c00022{bottom:742.779930px;}
.yb_c00022{bottom:771.223620px;}
.y20_c00022{bottom:799.667310px;}
.ya_c00022{bottom:828.193350px;}
.y1f_c00022{bottom:856.637040px;}
.y9_c00022{bottom:913.524420px;}
.y8_c00022{bottom:970.494150px;}
.y7_c00022{bottom:998.937840px;}
.y6_c00022{bottom:1027.381530px;}
.y5_c00022{bottom:1055.825220px;}
.y1e_c00022{bottom:1084.268910px;}
.y4_c00022{bottom:1084.351260px;}
.y3_c00022{bottom:1112.794950px;}
.y1d_c00022{bottom:1141.238640px;}
.y2_c00022{bottom:1194.074400px;}
.h2_c00022{height:50.400000px;}
.h3_c00022{height:54.331699px;}
.h4_c00022{height:70.293960px;}
.h0_c00022{height:1262.835000px;}
.h1_c00022{height:1263.000000px;}
.w2_c00022{width:0.000000px;}
.w3_c00022{width:0.066000px;}
.w0_c00022{width:892.914000px;}
.w1_c00022{width:893.250000px;}
.x1_c00022{left:-838.913400px;}
.x2_c00022{left:-807.863400px;}
.x3_c00022{left:-802.905930px;}
.x4_c00022{left:-786.518280px;}
.x5_c00022{left:-775.977480px;}
.x6_c00022{left:-744.108030px;}
.x0_c00022{left:0.000000px;}
.x8_c00022{left:85.116600px;}
.xb_c00022{left:90.057600px;}
.xc_c00022{left:117.068400px;}
.x9_c00022{left:148.937850px;}
.xa_c00022{left:166.116060px;}
.x7_c00022{left:804.366150px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls4_c00022{letter-spacing:-0.117120pt;}
.ls3_c00022{letter-spacing:-0.058560pt;}
.ls1_c00022{letter-spacing:0.000000pt;}
.ls0_c00022{letter-spacing:0.058560pt;}
.ls2_c00022{letter-spacing:0.175680pt;}
.ws1_c00022{word-spacing:-14.698560pt;}
.ws2_c00022{word-spacing:-14.640000pt;}
.ws5_c00022{word-spacing:-14.581440pt;}
.ws6_c00022{word-spacing:-14.522880pt;}
.wse_c00022{word-spacing:-0.175680pt;}
.wsc_c00022{word-spacing:-0.117120pt;}
.wsf_c00022{word-spacing:-0.058560pt;}
.wsb_c00022{word-spacing:0.000000pt;}
.ws10_c00022{word-spacing:0.058560pt;}
.wsd_c00022{word-spacing:0.117120pt;}
.ws11_c00022{word-spacing:0.175680pt;}
.ws9_c00022{word-spacing:1.048224pt;}
.ws8_c00022{word-spacing:3.232512pt;}
.ws7_c00022{word-spacing:4.509120pt;}
.wsa_c00022{word-spacing:11.255232pt;}
.ws4_c00022{word-spacing:18.973440pt;}
.ws3_c00022{word-spacing:25.063680pt;}
.ws0_c00022{word-spacing:36.892800pt;}
._0_c00022{margin-left:-1.054080pt;}
._3_c00022{width:1.001376pt;}
._9_c00022{width:2.781600pt;}
._4_c00022{width:3.782976pt;}
._2_c00022{width:4.860480pt;}
._7_c00022{width:6.488448pt;}
._8_c00022{width:8.063712pt;}
._1_c00022{width:9.838080pt;}
._6_c00022{width:10.751616pt;}
._11_c00022{width:12.695808pt;}
._5_c00022{width:13.679616pt;}
._c_c00022{width:19.717152pt;}
._10_c00022{width:21.005472pt;}
._b_c00022{width:23.470848pt;}
._e_c00022{width:24.454656pt;}
._a_c00022{width:26.679936pt;}
._f_c00022{width:28.612416pt;}
._d_c00022{width:51.708480pt;}
.fs1_c00022{font-size:58.560000pt;}
.fs0_c00022{font-size:64.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y1_c00022{bottom:54.887600pt;}
.y29_c00022{bottom:103.650667pt;}
.y1c_c00022{bottom:103.665307pt;}
.y28_c00022{bottom:128.933947pt;}
.y1b_c00022{bottom:128.948587pt;}
.y1a_c00022{bottom:154.305067pt;}
.y27_c00022{bottom:179.573707pt;}
.y19_c00022{bottom:179.588347pt;}
.y26_c00022{bottom:204.856987pt;}
.y18_c00022{bottom:204.871627pt;}
.y25_c00022{bottom:230.140267pt;}
.y17_c00022{bottom:255.438187pt;}
.y24_c00022{bottom:280.780027pt;}
.y16_c00022{bottom:305.990107pt;}
.y15_c00022{bottom:331.346587pt;}
.y23_c00022{bottom:381.986347pt;}
.y14_c00022{bottom:407.269627pt;}
.y22_c00022{bottom:432.552907pt;}
.y13_c00022{bottom:457.836187pt;}
.y12_c00022{bottom:483.119467pt;}
.y11_c00022{bottom:508.475947pt;}
.y10_c00022{bottom:533.759227pt;}
.yf_c00022{bottom:559.042507pt;}
.y21_c00022{bottom:584.325787pt;}
.ye_c00022{bottom:609.682267pt;}
.yd_c00022{bottom:634.965547pt;}
.yc_c00022{bottom:660.248827pt;}
.yb_c00022{bottom:685.532107pt;}
.y20_c00022{bottom:710.815387pt;}
.ya_c00022{bottom:736.171867pt;}
.y1f_c00022{bottom:761.455147pt;}
.y9_c00022{bottom:812.021707pt;}
.y8_c00022{bottom:862.661467pt;}
.y7_c00022{bottom:887.944747pt;}
.y6_c00022{bottom:913.228027pt;}
.y5_c00022{bottom:938.511307pt;}
.y1e_c00022{bottom:963.794587pt;}
.y4_c00022{bottom:963.867787pt;}
.y3_c00022{bottom:989.151067pt;}
.y1d_c00022{bottom:1014.434347pt;}
.y2_c00022{bottom:1061.399467pt;}
.h2_c00022{height:44.800000pt;}
.h3_c00022{height:48.294844pt;}
.h4_c00022{height:62.483520pt;}
.h0_c00022{height:1122.520000pt;}
.h1_c00022{height:1122.666667pt;}
.w2_c00022{width:0.000000pt;}
.w3_c00022{width:0.058667pt;}
.w0_c00022{width:793.701333pt;}
.w1_c00022{width:794.000000pt;}
.x1_c00022{left:-745.700800pt;}
.x2_c00022{left:-718.100800pt;}
.x3_c00022{left:-713.694160pt;}
.x4_c00022{left:-699.127360pt;}
.x5_c00022{left:-689.757760pt;}
.x6_c00022{left:-661.429360pt;}
.x0_c00022{left:0.000000pt;}
.x8_c00022{left:75.659200pt;}
.xb_c00022{left:80.051200pt;}
.xc_c00022{left:104.060800pt;}
.x9_c00022{left:132.389200pt;}
.xa_c00022{left:147.658720pt;}
.x7_c00022{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00023;src:url('chunks/assets/font_88a82d8391cbb980f3936ef0.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00023;src:url('chunks/assets/font_c57bbb969e818f00ac5c76fc.woff2')format("woff");}.ff3_c00023{font-family:ff3_c00023;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00023;src:url('chunks/assets/font_148834144b7514aa651e1979.woff2')format("woff");}.ff4_c00023{font-family:ff4_c00023;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.lsa_c00023{letter-spacing:-0.329400px;}
.ls9_c00023{letter-spacing:-0.065880px;}
.ls8_c00023{letter-spacing:0.000000px;}
.ls0_c00023{letter-spacing:0.065880px;}
.ls7_c00023{letter-spacing:0.072000px;}
.ls2_c00023{letter-spacing:0.197640px;}
.ls4_c00023{letter-spacing:3.755160px;}
.ls6_c00023{letter-spacing:5.336280px;}
.ls1_c00023{letter-spacing:6.060960px;}
.ls5_c00023{letter-spacing:6.785640px;}
.ls3_c00023{letter-spacing:16.390944px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00023{word-spacing:-16.535880px;}
.ws8_c00023{word-spacing:-16.470000px;}
.ws4_c00023{word-spacing:-16.404120px;}
.ws12_c00023{word-spacing:-0.461160px;}
.wse_c00023{word-spacing:-0.197640px;}
.ws11_c00023{word-spacing:-0.131760px;}
.ws17_c00023{word-spacing:-0.072000px;}
.ws10_c00023{word-spacing:-0.065880px;}
.ws6_c00023{word-spacing:0.000000px;}
.wsf_c00023{word-spacing:0.065880px;}
.wsd_c00023{word-spacing:0.131760px;}
.ws7_c00023{word-spacing:0.144936px;}
.wsc_c00023{word-spacing:0.165960px;}
.ws13_c00023{word-spacing:0.197640px;}
.ws16_c00023{word-spacing:0.329400px;}
.wsb_c00023{word-spacing:5.863320px;}
.ws18_c00023{word-spacing:14.559480px;}
.ws14_c00023{word-spacing:15.350040px;}
.ws9_c00023{word-spacing:15.494976px;}
.ws15_c00023{word-spacing:15.613560px;}
.wsa_c00023{word-spacing:15.811200px;}
.ws5_c00023{word-spacing:17.853480px;}
.ws0_c00023{word-spacing:21.345120px;}
.ws2_c00023{word-spacing:28.196640px;}
.ws3_c00023{word-spacing:41.504400px;}
._a_c00023{margin-left:-1.119960px;}
._3_c00023{width:1.647000px;}
._7_c00023{width:3.228120px;}
._5_c00023{width:4.348080px;}
._1_c00023{width:6.060960px;}
._b_c00023{width:7.773840px;}
._2_c00023{width:9.486720px;}
._8_c00023{width:10.738440px;}
._0_c00023{width:12.253680px;}
._d_c00023{width:14.230080px;}
._c_c00023{width:15.284160px;}
._4_c00023{width:17.787600px;}
._e_c00023{width:21.674520px;}
._6_c00023{width:23.123880px;}
._9_c00023{width:24.836760px;}
._11_c00023{width:28.130760px;}
._f_c00023{width:30.370680px;}
._10_c00023{width:32.347080px;}
.fc2_c00023{color:transparent;}
.fc1_c00023{color:rgb(0,0,0);}
.fc0_c00023{color:rgb(35,31,32);}
.fs1_c00023{font-size:65.880000px;}
.fs0_c00023{font-size:72.000000px;}
.y0_c00023{bottom:0.000000px;}
.y1_c00023{bottom:61.748550px;}
.y39_c00023{bottom:129.621840px;}
.y38_c00023{bottom:158.065530px;}
.y1d_c00023{bottom:173.593200px;}
.y37_c00023{bottom:186.509220px;}
.y36_c00023{bottom:215.035260px;}
.y1c_c00023{bottom:230.480580px;}
.y35_c00023{bottom:243.478950px;}
.y34_c00023{bottom:271.922640px;}
.y1b_c00023{bottom:287.367960px;}
.y33_c00023{bottom:300.366330px;}
.y32_c00023{bottom:328.810020px;}
.y1a_c00023{bottom:344.337690px;}
.y31_c00023{bottom:358.584240px;}
.y30_c00023{bottom:388.378470px;}
.y19_c00023{bottom:401.208600px;}
.y2f_c00023{bottom:437.524950px;}
.y18_c00023{bottom:458.178330px;}
.y17_c00023{bottom:486.622020px;}
.y2e_c00023{bottom:494.379390px;}
.y16_c00023{bottom:515.065710px;}
.y2d_c00023{bottom:522.823080px;}
.y15_c00023{bottom:543.509400px;}
.y2c_c00023{bottom:551.349120px;}
.y14_c00023{bottom:572.035440px;}
.y2b_c00023{bottom:579.792810px;}
.y13_c00023{bottom:600.479130px;}
.y2a_c00023{bottom:608.236500px;}
.y12_c00023{bottom:628.922820px;}
.y29_c00023{bottom:636.680190px;}
.y28_c00023{bottom:665.206230px;}
.y11_c00023{bottom:685.892550px;}
.y27_c00023{bottom:693.649920px;}
.y10_c00023{bottom:714.336240px;}
.y26_c00023{bottom:722.093610px;}
.yf_c00023{bottom:742.779930px;}
.y25_c00023{bottom:750.537300px;}
.ye_c00023{bottom:771.223620px;}
.y24_c00023{bottom:779.063340px;}
.yd_c00023{bottom:799.667310px;}
.y23_c00023{bottom:807.507030px;}
.yc_c00023{bottom:828.193350px;}
.y22_c00023{bottom:835.950720px;}
.yb_c00023{bottom:856.637040px;}
.y21_c00023{bottom:864.394410px;}
.ya_c00023{bottom:885.080730px;}
.y9_c00023{bottom:913.524420px;}
.y20_c00023{bottom:913.540890px;}
.y8_c00023{bottom:942.050460px;}
.y1f_c00023{bottom:970.494150px;}
.y7_c00023{bottom:998.937840px;}
.y1e_c00023{bottom:1027.381530px;}
.y6_c00023{bottom:1055.825220px;}
.y5_c00023{bottom:1084.351260px;}
.y4_c00023{bottom:1112.794950px;}
.y3_c00023{bottom:1141.238640px;}
.y2_c00023{bottom:1194.074400px;}
.h2_c00023{height:50.400000px;}
.h3_c00023{height:54.331699px;}
.h4_c00023{height:70.293960px;}
.h5_c00023{height:76.904040px;}
.h0_c00023{height:1262.835000px;}
.h1_c00023{height:1263.000000px;}
.w2_c00023{width:0.066000px;}
.w0_c00023{width:892.914000px;}
.w1_c00023{width:893.250000px;}
.x0_c00023{left:0.000000px;}
.x1_c00023{left:54.000000px;}
.x2_c00023{left:84.983400px;}
.x5_c00023{left:89.907930px;}
.x4_c00023{left:116.918730px;}
.x3_c00023{left:148.788180px;}
.x6_c00023{left:192.960720px;}
.x7_c00023{left:892.846500px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.lsa_c00023{letter-spacing:-0.292800pt;}
.ls9_c00023{letter-spacing:-0.058560pt;}
.ls8_c00023{letter-spacing:0.000000pt;}
.ls0_c00023{letter-spacing:0.058560pt;}
.ls7_c00023{letter-spacing:0.064000pt;}
.ls2_c00023{letter-spacing:0.175680pt;}
.ls4_c00023{letter-spacing:3.337920pt;}
.ls6_c00023{letter-spacing:4.743360pt;}
.ls1_c00023{letter-spacing:5.387520pt;}
.ls5_c00023{letter-spacing:6.031680pt;}
.ls3_c00023{letter-spacing:14.569728pt;}
.ws1_c00023{word-spacing:-14.698560pt;}
.ws8_c00023{word-spacing:-14.640000pt;}
.ws4_c00023{word-spacing:-14.581440pt;}
.ws12_c00023{word-spacing:-0.409920pt;}
.wse_c00023{word-spacing:-0.175680pt;}
.ws11_c00023{word-spacing:-0.117120pt;}
.ws17_c00023{word-spacing:-0.064000pt;}
.ws10_c00023{word-spacing:-0.058560pt;}
.ws6_c00023{word-spacing:0.000000pt;}
.wsf_c00023{word-spacing:0.058560pt;}
.wsd_c00023{word-spacing:0.117120pt;}
.ws7_c00023{word-spacing:0.128832pt;}
.wsc_c00023{word-spacing:0.147520pt;}
.ws13_c00023{word-spacing:0.175680pt;}
.ws16_c00023{word-spacing:0.292800pt;}
.wsb_c00023{word-spacing:5.211840pt;}
.ws18_c00023{word-spacing:12.941760pt;}
.ws14_c00023{word-spacing:13.644480pt;}
.ws9_c00023{word-spacing:13.773312pt;}
.ws15_c00023{word-spacing:13.878720pt;}
.wsa_c00023{word-spacing:14.054400pt;}
.ws5_c00023{word-spacing:15.869760pt;}
.ws0_c00023{word-spacing:18.973440pt;}
.ws2_c00023{word-spacing:25.063680pt;}
.ws3_c00023{word-spacing:36.892800pt;}
._a_c00023{margin-left:-0.995520pt;}
._3_c00023{width:1.464000pt;}
._7_c00023{width:2.869440pt;}
._5_c00023{width:3.864960pt;}
._1_c00023{width:5.387520pt;}
._b_c00023{width:6.910080pt;}
._2_c00023{width:8.432640pt;}
._8_c00023{width:9.545280pt;}
._0_c00023{width:10.892160pt;}
._d_c00023{width:12.648960pt;}
._c_c00023{width:13.585920pt;}
._4_c00023{width:15.811200pt;}
._e_c00023{width:19.266240pt;}
._6_c00023{width:20.554560pt;}
._9_c00023{width:22.077120pt;}
._11_c00023{width:25.005120pt;}
._f_c00023{width:26.996160pt;}
._10_c00023{width:28.752960pt;}
.fs1_c00023{font-size:58.560000pt;}
.fs0_c00023{font-size:64.000000pt;}
.y0_c00023{bottom:0.000000pt;}
.y1_c00023{bottom:54.887600pt;}
.y39_c00023{bottom:115.219413pt;}
.y38_c00023{bottom:140.502693pt;}
.y1d_c00023{bottom:154.305067pt;}
.y37_c00023{bottom:165.785973pt;}
.y36_c00023{bottom:191.142453pt;}
.y1c_c00023{bottom:204.871627pt;}
.y35_c00023{bottom:216.425733pt;}
.y34_c00023{bottom:241.709013pt;}
.y1b_c00023{bottom:255.438187pt;}
.y33_c00023{bottom:266.992293pt;}
.y32_c00023{bottom:292.275573pt;}
.y1a_c00023{bottom:306.077947pt;}
.y31_c00023{bottom:318.741547pt;}
.y30_c00023{bottom:345.225307pt;}
.y19_c00023{bottom:356.629867pt;}
.y2f_c00023{bottom:388.911067pt;}
.y18_c00023{bottom:407.269627pt;}
.y17_c00023{bottom:432.552907pt;}
.y2e_c00023{bottom:439.448347pt;}
.y16_c00023{bottom:457.836187pt;}
.y2d_c00023{bottom:464.731627pt;}
.y15_c00023{bottom:483.119467pt;}
.y2c_c00023{bottom:490.088107pt;}
.y14_c00023{bottom:508.475947pt;}
.y2b_c00023{bottom:515.371387pt;}
.y13_c00023{bottom:533.759227pt;}
.y2a_c00023{bottom:540.654667pt;}
.y12_c00023{bottom:559.042507pt;}
.y29_c00023{bottom:565.937947pt;}
.y28_c00023{bottom:591.294427pt;}
.y11_c00023{bottom:609.682267pt;}
.y27_c00023{bottom:616.577707pt;}
.y10_c00023{bottom:634.965547pt;}
.y26_c00023{bottom:641.860987pt;}
.yf_c00023{bottom:660.248827pt;}
.y25_c00023{bottom:667.144267pt;}
.ye_c00023{bottom:685.532107pt;}
.y24_c00023{bottom:692.500747pt;}
.yd_c00023{bottom:710.815387pt;}
.y23_c00023{bottom:717.784027pt;}
.yc_c00023{bottom:736.171867pt;}
.y22_c00023{bottom:743.067307pt;}
.yb_c00023{bottom:761.455147pt;}
.y21_c00023{bottom:768.350587pt;}
.ya_c00023{bottom:786.738427pt;}
.y9_c00023{bottom:812.021707pt;}
.y20_c00023{bottom:812.036347pt;}
.y8_c00023{bottom:837.378187pt;}
.y1f_c00023{bottom:862.661467pt;}
.y7_c00023{bottom:887.944747pt;}
.y1e_c00023{bottom:913.228027pt;}
.y6_c00023{bottom:938.511307pt;}
.y5_c00023{bottom:963.867787pt;}
.y4_c00023{bottom:989.151067pt;}
.y3_c00023{bottom:1014.434347pt;}
.y2_c00023{bottom:1061.399467pt;}
.h2_c00023{height:44.800000pt;}
.h3_c00023{height:48.294844pt;}
.h4_c00023{height:62.483520pt;}
.h5_c00023{height:68.359147pt;}
.h0_c00023{height:1122.520000pt;}
.h1_c00023{height:1122.666667pt;}
.w2_c00023{width:0.058667pt;}
.w0_c00023{width:793.701333pt;}
.w1_c00023{width:794.000000pt;}
.x0_c00023{left:0.000000pt;}
.x1_c00023{left:48.000000pt;}
.x2_c00023{left:75.540800pt;}
.x5_c00023{left:79.918160pt;}
.x4_c00023{left:103.927760pt;}
.x3_c00023{left:132.256160pt;}
.x6_c00023{left:171.520640pt;}
.x7_c00023{left:793.641333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00024;src:url('chunks/assets/font_f631aff13fd434d2a00c0422.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00024;src:url('chunks/assets/font_411aa8da3957032348bc3387.woff2')format("woff");}.ff3_c00024{font-family:ff3_c00024;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00024;src:url('chunks/assets/font_4119b0238b2bc6a7eaae56cc.woff2')format("woff");}.ff4_c00024{font-family:ff4_c00024;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00024;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00024{font-family:ff5_c00024;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00024;src:url('chunks/assets/font_5b8507842eb4543d80aed8cd.woff2')format("woff");}.ff6_c00024{font-family:ff6_c00024;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00024;src:url('chunks/assets/font_ab860fef0f27684cef6aa9b6.woff2')format("woff");}.ff7_c00024{font-family:ff7_c00024;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00024;src:url('chunks/assets/font_e76a8ef331b640938ee0f5cc.woff2')format("woff");}.ff8_c00024{font-family:ff8_c00024;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00024{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.lsa_c00024{letter-spacing:-0.329400px;}
.ls9_c00024{letter-spacing:-0.065880px;}
.ls8_c00024{letter-spacing:0.000000px;}
.ls0_c00024{letter-spacing:0.065880px;}
.ls7_c00024{letter-spacing:0.072000px;}
.ls2_c00024{letter-spacing:0.197640px;}
.ls4_c00024{letter-spacing:3.755160px;}
.ls6_c00024{letter-spacing:5.336280px;}
.ls1_c00024{letter-spacing:6.060960px;}
.ls5_c00024{letter-spacing:6.785640px;}
.ls3_c00024{letter-spacing:16.404120px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00024{word-spacing:-16.535880px;}
.ws8_c00024{word-spacing:-16.470000px;}
.ws4_c00024{word-spacing:-16.404120px;}
.ws12_c00024{word-spacing:-0.461160px;}
.wse_c00024{word-spacing:-0.197640px;}
.ws11_c00024{word-spacing:-0.131760px;}
.ws17_c00024{word-spacing:-0.072000px;}
.ws10_c00024{word-spacing:-0.065880px;}
.ws6_c00024{word-spacing:0.000000px;}
.wsf_c00024{word-spacing:0.065880px;}
.wsd_c00024{word-spacing:0.131760px;}
.ws7_c00024{word-spacing:0.144936px;}
.wsc_c00024{word-spacing:0.165960px;}
.ws13_c00024{word-spacing:0.197640px;}
.ws16_c00024{word-spacing:0.329400px;}
.wsb_c00024{word-spacing:5.863320px;}
.ws18_c00024{word-spacing:14.559480px;}
.ws14_c00024{word-spacing:15.350040px;}
.ws9_c00024{word-spacing:15.494976px;}
.ws15_c00024{word-spacing:15.613560px;}
.wsa_c00024{word-spacing:15.811200px;}
.ws5_c00024{word-spacing:17.853480px;}
.ws0_c00024{word-spacing:21.345120px;}
.ws2_c00024{word-spacing:28.196640px;}
.ws3_c00024{word-spacing:41.504400px;}
._a_c00024{margin-left:-1.126548px;}
._3_c00024{width:1.647000px;}
._7_c00024{width:3.228120px;}
._5_c00024{width:4.348080px;}
._1_c00024{width:6.060960px;}
._b_c00024{width:7.793604px;}
._2_c00024{width:9.486720px;}
._8_c00024{width:10.738440px;}
._0_c00024{width:12.253680px;}
._d_c00024{width:14.230080px;}
._c_c00024{width:15.284160px;}
._4_c00024{width:17.787600px;}
._e_c00024{width:21.700872px;}
._6_c00024{width:23.123880px;}
._9_c00024{width:24.836760px;}
._11_c00024{width:28.130760px;}
._f_c00024{width:30.370680px;}
._10_c00024{width:32.347080px;}
.fc2_c00024{color:transparent;}
.fc1_c00024{color:rgb(0,0,0);}
.fc0_c00024{color:rgb(35,31,32);}
.fs1_c00024{font-size:65.880000px;}
.fs0_c00024{font-size:72.000000px;}
.y0_c00024{bottom:0.000000px;}
.y1_c00024{bottom:61.748550px;}
.y39_c00024{bottom:129.621840px;}
.y38_c00024{bottom:158.065530px;}
.y1d_c00024{bottom:173.593200px;}
.y37_c00024{bottom:186.509220px;}
.y36_c00024{bottom:215.035260px;}
.y1c_c00024{bottom:230.480580px;}
.y35_c00024{bottom:243.478950px;}
.y34_c00024{bottom:271.922640px;}
.y1b_c00024{bottom:287.367960px;}
.y33_c00024{bottom:300.366330px;}
.y32_c00024{bottom:328.810020px;}
.y1a_c00024{bottom:344.337690px;}
.y31_c00024{bottom:358.584240px;}
.y4a_c00024{bottom:358.600170px;}
.y30_c00024{bottom:388.378470px;}
.y49_c00024{bottom:388.394400px;}
.y19_c00024{bottom:401.208600px;}
.y2f_c00024{bottom:437.524950px;}
.y48_c00024{bottom:437.534790px;}
.y18_c00024{bottom:458.178330px;}
.y17_c00024{bottom:486.622020px;}
.y2e_c00024{bottom:494.379390px;}
.y47_c00024{bottom:494.389230px;}
.y16_c00024{bottom:515.065710px;}
.y2d_c00024{bottom:522.823080px;}
.y46_c00024{bottom:522.832920px;}
.y15_c00024{bottom:543.509400px;}
.y2c_c00024{bottom:551.349120px;}
.y45_c00024{bottom:551.358960px;}
.y14_c00024{bottom:572.035440px;}
.y2b_c00024{bottom:579.792810px;}
.y44_c00024{bottom:579.802650px;}
.y13_c00024{bottom:600.479130px;}
.y2a_c00024{bottom:608.236500px;}
.y43_c00024{bottom:608.246340px;}
.y12_c00024{bottom:628.922820px;}
.y29_c00024{bottom:636.680190px;}
.y42_c00024{bottom:636.690030px;}
.y28_c00024{bottom:665.206230px;}
.y41_c00024{bottom:665.216070px;}
.y11_c00024{bottom:685.892550px;}
.y27_c00024{bottom:693.649920px;}
.y40_c00024{bottom:693.659760px;}
.y10_c00024{bottom:714.336240px;}
.y26_c00024{bottom:722.093610px;}
.y3f_c00024{bottom:722.103450px;}
.yf_c00024{bottom:742.779930px;}
.y25_c00024{bottom:750.537300px;}
.y3e_c00024{bottom:750.547140px;}
.ye_c00024{bottom:771.223620px;}
.y24_c00024{bottom:779.063340px;}
.y3d_c00024{bottom:779.073180px;}
.yd_c00024{bottom:799.667310px;}
.y23_c00024{bottom:807.507030px;}
.y3c_c00024{bottom:807.516870px;}
.yc_c00024{bottom:828.193350px;}
.y22_c00024{bottom:835.950720px;}
.y3b_c00024{bottom:835.960560px;}
.yb_c00024{bottom:856.637040px;}
.y21_c00024{bottom:864.394410px;}
.y3a_c00024{bottom:864.404250px;}
.ya_c00024{bottom:885.080730px;}
.y9_c00024{bottom:913.524420px;}
.y20_c00024{bottom:913.540890px;}
.y8_c00024{bottom:942.050460px;}
.y1f_c00024{bottom:970.494150px;}
.y7_c00024{bottom:998.937840px;}
.y1e_c00024{bottom:1027.381530px;}
.y6_c00024{bottom:1055.825220px;}
.y5_c00024{bottom:1084.351260px;}
.y4_c00024{bottom:1112.794950px;}
.y3_c00024{bottom:1141.238640px;}
.y2_c00024{bottom:1194.074400px;}
.h2_c00024{height:50.400000px;}
.h3_c00024{height:54.331699px;}
.h4_c00024{height:70.293960px;}
.h6_c00024{height:76.840320px;}
.h5_c00024{height:76.904040px;}
.h0_c00024{height:1262.835000px;}
.h1_c00024{height:1263.000000px;}
.w3_c00024{width:-0.001500px;}
.w2_c00024{width:0.000000px;}
.w0_c00024{width:892.914000px;}
.w1_c00024{width:893.250000px;}
.x1_c00024{left:-838.913400px;}
.x2_c00024{left:-807.930150px;}
.x5_c00024{left:-803.005620px;}
.x4_c00024{left:-775.994820px;}
.x3_c00024{left:-744.125370px;}
.x6_c00024{left:-699.952830px;}
.x0_c00024{left:0.000000px;}
.x7_c00024{left:84.983400px;}
.x8_c00024{left:89.940870px;}
.x9_c00024{left:804.366150px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.lsa_c00024{letter-spacing:-0.292800pt;}
.ls9_c00024{letter-spacing:-0.058560pt;}
.ls8_c00024{letter-spacing:0.000000pt;}
.ls0_c00024{letter-spacing:0.058560pt;}
.ls7_c00024{letter-spacing:0.064000pt;}
.ls2_c00024{letter-spacing:0.175680pt;}
.ls4_c00024{letter-spacing:3.337920pt;}
.ls6_c00024{letter-spacing:4.743360pt;}
.ls1_c00024{letter-spacing:5.387520pt;}
.ls5_c00024{letter-spacing:6.031680pt;}
.ls3_c00024{letter-spacing:14.581440pt;}
.ws1_c00024{word-spacing:-14.698560pt;}
.ws8_c00024{word-spacing:-14.640000pt;}
.ws4_c00024{word-spacing:-14.581440pt;}
.ws12_c00024{word-spacing:-0.409920pt;}
.wse_c00024{word-spacing:-0.175680pt;}
.ws11_c00024{word-spacing:-0.117120pt;}
.ws17_c00024{word-spacing:-0.064000pt;}
.ws10_c00024{word-spacing:-0.058560pt;}
.ws6_c00024{word-spacing:0.000000pt;}
.wsf_c00024{word-spacing:0.058560pt;}
.wsd_c00024{word-spacing:0.117120pt;}
.ws7_c00024{word-spacing:0.128832pt;}
.wsc_c00024{word-spacing:0.147520pt;}
.ws13_c00024{word-spacing:0.175680pt;}
.ws16_c00024{word-spacing:0.292800pt;}
.wsb_c00024{word-spacing:5.211840pt;}
.ws18_c00024{word-spacing:12.941760pt;}
.ws14_c00024{word-spacing:13.644480pt;}
.ws9_c00024{word-spacing:13.773312pt;}
.ws15_c00024{word-spacing:13.878720pt;}
.wsa_c00024{word-spacing:14.054400pt;}
.ws5_c00024{word-spacing:15.869760pt;}
.ws0_c00024{word-spacing:18.973440pt;}
.ws2_c00024{word-spacing:25.063680pt;}
.ws3_c00024{word-spacing:36.892800pt;}
._a_c00024{margin-left:-1.001376pt;}
._3_c00024{width:1.464000pt;}
._7_c00024{width:2.869440pt;}
._5_c00024{width:3.864960pt;}
._1_c00024{width:5.387520pt;}
._b_c00024{width:6.927648pt;}
._2_c00024{width:8.432640pt;}
._8_c00024{width:9.545280pt;}
._0_c00024{width:10.892160pt;}
._d_c00024{width:12.648960pt;}
._c_c00024{width:13.585920pt;}
._4_c00024{width:15.811200pt;}
._e_c00024{width:19.289664pt;}
._6_c00024{width:20.554560pt;}
._9_c00024{width:22.077120pt;}
._11_c00024{width:25.005120pt;}
._f_c00024{width:26.996160pt;}
._10_c00024{width:28.752960pt;}
.fs1_c00024{font-size:58.560000pt;}
.fs0_c00024{font-size:64.000000pt;}
.y0_c00024{bottom:0.000000pt;}
.y1_c00024{bottom:54.887600pt;}
.y39_c00024{bottom:115.219413pt;}
.y38_c00024{bottom:140.502693pt;}
.y1d_c00024{bottom:154.305067pt;}
.y37_c00024{bottom:165.785973pt;}
.y36_c00024{bottom:191.142453pt;}
.y1c_c00024{bottom:204.871627pt;}
.y35_c00024{bottom:216.425733pt;}
.y34_c00024{bottom:241.709013pt;}
.y1b_c00024{bottom:255.438187pt;}
.y33_c00024{bottom:266.992293pt;}
.y32_c00024{bottom:292.275573pt;}
.y1a_c00024{bottom:306.077947pt;}
.y31_c00024{bottom:318.741547pt;}
.y4a_c00024{bottom:318.755707pt;}
.y30_c00024{bottom:345.225307pt;}
.y49_c00024{bottom:345.239467pt;}
.y19_c00024{bottom:356.629867pt;}
.y2f_c00024{bottom:388.911067pt;}
.y48_c00024{bottom:388.919813pt;}
.y18_c00024{bottom:407.269627pt;}
.y17_c00024{bottom:432.552907pt;}
.y2e_c00024{bottom:439.448347pt;}
.y47_c00024{bottom:439.457093pt;}
.y16_c00024{bottom:457.836187pt;}
.y2d_c00024{bottom:464.731627pt;}
.y46_c00024{bottom:464.740373pt;}
.y15_c00024{bottom:483.119467pt;}
.y2c_c00024{bottom:490.088107pt;}
.y45_c00024{bottom:490.096853pt;}
.y14_c00024{bottom:508.475947pt;}
.y2b_c00024{bottom:515.371387pt;}
.y44_c00024{bottom:515.380133pt;}
.y13_c00024{bottom:533.759227pt;}
.y2a_c00024{bottom:540.654667pt;}
.y43_c00024{bottom:540.663413pt;}
.y12_c00024{bottom:559.042507pt;}
.y29_c00024{bottom:565.937947pt;}
.y42_c00024{bottom:565.946693pt;}
.y28_c00024{bottom:591.294427pt;}
.y41_c00024{bottom:591.303173pt;}
.y11_c00024{bottom:609.682267pt;}
.y27_c00024{bottom:616.577707pt;}
.y40_c00024{bottom:616.586453pt;}
.y10_c00024{bottom:634.965547pt;}
.y26_c00024{bottom:641.860987pt;}
.y3f_c00024{bottom:641.869733pt;}
.yf_c00024{bottom:660.248827pt;}
.y25_c00024{bottom:667.144267pt;}
.y3e_c00024{bottom:667.153013pt;}
.ye_c00024{bottom:685.532107pt;}
.y24_c00024{bottom:692.500747pt;}
.y3d_c00024{bottom:692.509493pt;}
.yd_c00024{bottom:710.815387pt;}
.y23_c00024{bottom:717.784027pt;}
.y3c_c00024{bottom:717.792773pt;}
.yc_c00024{bottom:736.171867pt;}
.y22_c00024{bottom:743.067307pt;}
.y3b_c00024{bottom:743.076053pt;}
.yb_c00024{bottom:761.455147pt;}
.y21_c00024{bottom:768.350587pt;}
.y3a_c00024{bottom:768.359333pt;}
.ya_c00024{bottom:786.738427pt;}
.y9_c00024{bottom:812.021707pt;}
.y20_c00024{bottom:812.036347pt;}
.y8_c00024{bottom:837.378187pt;}
.y1f_c00024{bottom:862.661467pt;}
.y7_c00024{bottom:887.944747pt;}
.y1e_c00024{bottom:913.228027pt;}
.y6_c00024{bottom:938.511307pt;}
.y5_c00024{bottom:963.867787pt;}
.y4_c00024{bottom:989.151067pt;}
.y3_c00024{bottom:1014.434347pt;}
.y2_c00024{bottom:1061.399467pt;}
.h2_c00024{height:44.800000pt;}
.h3_c00024{height:48.294844pt;}
.h4_c00024{height:62.483520pt;}
.h6_c00024{height:68.302507pt;}
.h5_c00024{height:68.359147pt;}
.h0_c00024{height:1122.520000pt;}
.h1_c00024{height:1122.666667pt;}
.w3_c00024{width:-0.001333pt;}
.w2_c00024{width:0.000000pt;}
.w0_c00024{width:793.701333pt;}
.w1_c00024{width:794.000000pt;}
.x1_c00024{left:-745.700800pt;}
.x2_c00024{left:-718.160133pt;}
.x5_c00024{left:-713.782773pt;}
.x4_c00024{left:-689.773173pt;}
.x3_c00024{left:-661.444773pt;}
.x6_c00024{left:-622.180293pt;}
.x0_c00024{left:0.000000pt;}
.x7_c00024{left:75.540800pt;}
.x8_c00024{left:79.947440pt;}
.x9_c00024{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_bfba09fd4c488bdcc39d1353.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00025;src:url('chunks/assets/font_ab320e1695458f9a38728a06.woff2')format("woff");}.ff3_c00025{font-family:ff3_c00025;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00025{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls6_c00025{letter-spacing:-0.065880px;}
.ls5_c00025{letter-spacing:0.000000px;}
.ls0_c00025{letter-spacing:0.065880px;}
.ls3_c00025{letter-spacing:0.197640px;}
.ls4_c00025{letter-spacing:16.404120px;}
.ls2_c00025{letter-spacing:16.456824px;}
.ls1_c00025{letter-spacing:16.601760px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00025{word-spacing:-16.667640px;}
.ws0_c00025{word-spacing:-16.535880px;}
.ws1_c00025{word-spacing:-16.404120px;}
.ws5_c00025{word-spacing:-0.197640px;}
.wsa_c00025{word-spacing:-0.131760px;}
.ws3_c00025{word-spacing:0.000000px;}
.ws6_c00025{word-spacing:0.065880px;}
.ws4_c00025{word-spacing:0.131760px;}
.wsb_c00025{word-spacing:0.197640px;}
.ws9_c00025{word-spacing:7.773840px;}
.ws8_c00025{word-spacing:8.103240px;}
.ws7_c00025{word-spacing:9.486720px;}
._9_c00025{margin-left:-1.067256px;}
._0_c00025{width:1.001376px;}
._e_c00025{width:2.345328px;}
._2_c00025{width:3.491640px;}
._d_c00025{width:4.809240px;}
._7_c00025{width:6.640704px;}
._8_c00025{width:8.432640px;}
._6_c00025{width:9.882000px;}
._b_c00025{width:11.568528px;}
._c_c00025{width:13.953384px;}
._5_c00025{width:15.165576px;}
._f_c00025{width:18.051120px;}
._3_c00025{width:22.451904px;}
._1_c00025{width:24.757704px;}
._10_c00025{width:27.537840px;}
._a_c00025{width:29.224368px;}
._4_c00025{width:31.806864px;}
.fc2_c00025{color:transparent;}
.fc1_c00025{color:rgb(0,0,0);}
.fc0_c00025{color:rgb(35,31,32);}
.fs1_c00025{font-size:65.880000px;}
.fs0_c00025{font-size:72.000000px;}
.y0_c00025{bottom:0.000000px;}
.y1_c00025{bottom:61.748550px;}
.y25_c00025{bottom:124.425570px;}
.y24_c00025{bottom:152.951610px;}
.y23_c00025{bottom:181.395300px;}
.y22_c00025{bottom:209.838990px;}
.y32_c00025{bottom:238.276920px;}
.y21_c00025{bottom:238.282680px;}
.y31_c00025{bottom:266.720610px;}
.y20_c00025{bottom:266.726370px;}
.y30_c00025{bottom:295.246650px;}
.y1f_c00025{bottom:295.252410px;}
.y2f_c00025{bottom:323.690340px;}
.y1e_c00025{bottom:323.696100px;}
.y2e_c00025{bottom:352.134030px;}
.y1d_c00025{bottom:352.139790px;}
.y2d_c00025{bottom:380.577720px;}
.y1c_c00025{bottom:380.583480px;}
.y2c_c00025{bottom:409.103760px;}
.y1b_c00025{bottom:409.109520px;}
.y2b_c00025{bottom:437.547450px;}
.y1a_c00025{bottom:437.553210px;}
.y2a_c00025{bottom:465.991140px;}
.y19_c00025{bottom:465.996900px;}
.y29_c00025{bottom:494.434830px;}
.y18_c00025{bottom:515.137620px;}
.y28_c00025{bottom:522.878520px;}
.y27_c00025{bottom:551.404560px;}
.y17_c00025{bottom:572.057940px;}
.y26_c00025{bottom:579.848250px;}
.y16_c00025{bottom:600.501630px;}
.y15_c00025{bottom:628.945320px;}
.y14_c00025{bottom:657.389010px;}
.y13_c00025{bottom:685.915050px;}
.y12_c00025{bottom:714.358740px;}
.y11_c00025{bottom:742.802430px;}
.y10_c00025{bottom:771.246120px;}
.yf_c00025{bottom:799.689810px;}
.ye_c00025{bottom:828.215850px;}
.yd_c00025{bottom:856.659540px;}
.yc_c00025{bottom:885.103230px;}
.yb_c00025{bottom:913.546920px;}
.ya_c00025{bottom:942.072960px;}
.y9_c00025{bottom:970.516650px;}
.y8_c00025{bottom:998.960340px;}
.y7_c00025{bottom:1027.404030px;}
.y6_c00025{bottom:1055.847720px;}
.y5_c00025{bottom:1084.373760px;}
.y4_c00025{bottom:1112.817450px;}
.y3_c00025{bottom:1141.261140px;}
.y2_c00025{bottom:1194.096900px;}
.h2_c00025{height:50.400000px;}
.h3_c00025{height:54.331699px;}
.h4_c00025{height:70.293960px;}
.h0_c00025{height:1262.835000px;}
.h1_c00025{height:1263.000000px;}
.w2_c00025{width:0.033000px;}
.w0_c00025{width:892.914000px;}
.w1_c00025{width:893.250000px;}
.x0_c00025{left:0.000000px;}
.x1_c00025{left:54.000000px;}
.x2_c00025{left:85.016700px;}
.x3_c00025{left:86.910750px;}
.x4_c00025{left:892.881000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls6_c00025{letter-spacing:-0.058560pt;}
.ls5_c00025{letter-spacing:0.000000pt;}
.ls0_c00025{letter-spacing:0.058560pt;}
.ls3_c00025{letter-spacing:0.175680pt;}
.ls4_c00025{letter-spacing:14.581440pt;}
.ls2_c00025{letter-spacing:14.628288pt;}
.ls1_c00025{letter-spacing:14.757120pt;}
.ws2_c00025{word-spacing:-14.815680pt;}
.ws0_c00025{word-spacing:-14.698560pt;}
.ws1_c00025{word-spacing:-14.581440pt;}
.ws5_c00025{word-spacing:-0.175680pt;}
.wsa_c00025{word-spacing:-0.117120pt;}
.ws3_c00025{word-spacing:0.000000pt;}
.ws6_c00025{word-spacing:0.058560pt;}
.ws4_c00025{word-spacing:0.117120pt;}
.wsb_c00025{word-spacing:0.175680pt;}
.ws9_c00025{word-spacing:6.910080pt;}
.ws8_c00025{word-spacing:7.202880pt;}
.ws7_c00025{word-spacing:8.432640pt;}
._9_c00025{margin-left:-0.948672pt;}
._0_c00025{width:0.890112pt;}
._e_c00025{width:2.084736pt;}
._2_c00025{width:3.103680pt;}
._d_c00025{width:4.274880pt;}
._7_c00025{width:5.902848pt;}
._8_c00025{width:7.495680pt;}
._6_c00025{width:8.784000pt;}
._b_c00025{width:10.283136pt;}
._c_c00025{width:12.403008pt;}
._5_c00025{width:13.480512pt;}
._f_c00025{width:16.045440pt;}
._3_c00025{width:19.957248pt;}
._1_c00025{width:22.006848pt;}
._10_c00025{width:24.478080pt;}
._a_c00025{width:25.977216pt;}
._4_c00025{width:28.272768pt;}
.fs1_c00025{font-size:58.560000pt;}
.fs0_c00025{font-size:64.000000pt;}
.y0_c00025{bottom:0.000000pt;}
.y1_c00025{bottom:54.887600pt;}
.y25_c00025{bottom:110.600507pt;}
.y24_c00025{bottom:135.956987pt;}
.y23_c00025{bottom:161.240267pt;}
.y22_c00025{bottom:186.523547pt;}
.y32_c00025{bottom:211.801707pt;}
.y21_c00025{bottom:211.806827pt;}
.y31_c00025{bottom:237.084987pt;}
.y20_c00025{bottom:237.090107pt;}
.y30_c00025{bottom:262.441467pt;}
.y1f_c00025{bottom:262.446587pt;}
.y2f_c00025{bottom:287.724747pt;}
.y1e_c00025{bottom:287.729867pt;}
.y2e_c00025{bottom:313.008027pt;}
.y1d_c00025{bottom:313.013147pt;}
.y2d_c00025{bottom:338.291307pt;}
.y1c_c00025{bottom:338.296427pt;}
.y2c_c00025{bottom:363.647787pt;}
.y1b_c00025{bottom:363.652907pt;}
.y2b_c00025{bottom:388.931067pt;}
.y1a_c00025{bottom:388.936187pt;}
.y2a_c00025{bottom:414.214347pt;}
.y19_c00025{bottom:414.219467pt;}
.y29_c00025{bottom:439.497627pt;}
.y18_c00025{bottom:457.900107pt;}
.y28_c00025{bottom:464.780907pt;}
.y27_c00025{bottom:490.137387pt;}
.y17_c00025{bottom:508.495947pt;}
.y26_c00025{bottom:515.420667pt;}
.y16_c00025{bottom:533.779227pt;}
.y15_c00025{bottom:559.062507pt;}
.y14_c00025{bottom:584.345787pt;}
.y13_c00025{bottom:609.702267pt;}
.y12_c00025{bottom:634.985547pt;}
.y11_c00025{bottom:660.268827pt;}
.y10_c00025{bottom:685.552107pt;}
.yf_c00025{bottom:710.835387pt;}
.ye_c00025{bottom:736.191867pt;}
.yd_c00025{bottom:761.475147pt;}
.yc_c00025{bottom:786.758427pt;}
.yb_c00025{bottom:812.041707pt;}
.ya_c00025{bottom:837.398187pt;}
.y9_c00025{bottom:862.681467pt;}
.y8_c00025{bottom:887.964747pt;}
.y7_c00025{bottom:913.248027pt;}
.y6_c00025{bottom:938.531307pt;}
.y5_c00025{bottom:963.887787pt;}
.y4_c00025{bottom:989.171067pt;}
.y3_c00025{bottom:1014.454347pt;}
.y2_c00025{bottom:1061.419467pt;}
.h2_c00025{height:44.800000pt;}
.h3_c00025{height:48.294844pt;}
.h4_c00025{height:62.483520pt;}
.h0_c00025{height:1122.520000pt;}
.h1_c00025{height:1122.666667pt;}
.w2_c00025{width:0.029333pt;}
.w0_c00025{width:793.701333pt;}
.w1_c00025{width:794.000000pt;}
.x0_c00025{left:0.000000pt;}
.x1_c00025{left:48.000000pt;}
.x2_c00025{left:75.570400pt;}
.x3_c00025{left:77.254000pt;}
.x4_c00025{left:793.672000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00026;src:url('chunks/assets/font_e991f01ec358d2b82c4b3257.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00026;src:url('chunks/assets/font_b200174a5f819bcb9c129755.woff2')format("woff");}.ff3_c00026{font-family:ff3_c00026;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00026;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00026{font-family:ff4_c00026;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00026;src:url('chunks/assets/font_192468330033c5ccfc4e874b.woff2')format("woff");}.ff5_c00026{font-family:ff5_c00026;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00026;src:url('chunks/assets/font_b200174a5f819bcb9c129755.woff2')format("woff");}.ff6_c00026{font-family:ff6_c00026;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00026{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls7_c00026{letter-spacing:-0.065880px;}
.ls6_c00026{letter-spacing:0.000000px;}
.ls0_c00026{letter-spacing:0.065880px;}
.ls3_c00026{letter-spacing:0.197640px;}
.ls4_c00026{letter-spacing:16.404120px;}
.ls2_c00026{letter-spacing:16.456824px;}
.ls5_c00026{letter-spacing:16.463412px;}
.ls1_c00026{letter-spacing:16.601760px;}
.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;}
}
.ws2_c00026{word-spacing:-16.667640px;}
.ws0_c00026{word-spacing:-16.535880px;}
.ws1_c00026{word-spacing:-16.404120px;}
.ws5_c00026{word-spacing:-0.197640px;}
.wsa_c00026{word-spacing:-0.131760px;}
.ws3_c00026{word-spacing:0.000000px;}
.ws6_c00026{word-spacing:0.065880px;}
.ws4_c00026{word-spacing:0.131760px;}
.wsb_c00026{word-spacing:0.197640px;}
.ws9_c00026{word-spacing:7.773840px;}
.ws8_c00026{word-spacing:8.103240px;}
.ws7_c00026{word-spacing:9.486720px;}
._9_c00026{margin-left:-1.067256px;}
._0_c00026{width:1.001376px;}
._e_c00026{width:2.345328px;}
._2_c00026{width:3.491640px;}
._d_c00026{width:4.809240px;}
._7_c00026{width:6.640704px;}
._8_c00026{width:8.432640px;}
._6_c00026{width:9.882000px;}
._b_c00026{width:11.568528px;}
._c_c00026{width:13.953384px;}
._5_c00026{width:15.165576px;}
._f_c00026{width:18.051120px;}
._3_c00026{width:22.451904px;}
._1_c00026{width:24.757704px;}
._10_c00026{width:27.537840px;}
._a_c00026{width:29.224368px;}
._4_c00026{width:31.806864px;}
.fc2_c00026{color:transparent;}
.fc1_c00026{color:rgb(0,0,0);}
.fc0_c00026{color:rgb(35,31,32);}
.fs1_c00026{font-size:65.880000px;}
.fs0_c00026{font-size:72.000000px;}
.y0_c00026{bottom:0.000000px;}
.y1_c00026{bottom:61.748550px;}
.y25_c00026{bottom:124.419810px;}
.y24_c00026{bottom:152.945850px;}
.y23_c00026{bottom:181.389540px;}
.y22_c00026{bottom:209.833230px;}
.y21_c00026{bottom:238.276920px;}
.y20_c00026{bottom:266.720610px;}
.y1f_c00026{bottom:295.246650px;}
.y1e_c00026{bottom:323.690340px;}
.y1d_c00026{bottom:352.134030px;}
.y1c_c00026{bottom:380.577720px;}
.y1b_c00026{bottom:409.103760px;}
.y1a_c00026{bottom:437.547450px;}
.y19_c00026{bottom:465.991140px;}
.y29_c00026{bottom:494.434830px;}
.y18_c00026{bottom:515.137620px;}
.y28_c00026{bottom:522.878520px;}
.y27_c00026{bottom:551.404560px;}
.y17_c00026{bottom:572.057940px;}
.y26_c00026{bottom:579.848250px;}
.y16_c00026{bottom:600.501630px;}
.y15_c00026{bottom:628.945320px;}
.y14_c00026{bottom:657.389010px;}
.y13_c00026{bottom:685.915050px;}
.y12_c00026{bottom:714.358740px;}
.y11_c00026{bottom:742.802430px;}
.y10_c00026{bottom:771.246120px;}
.yf_c00026{bottom:799.689810px;}
.ye_c00026{bottom:828.215850px;}
.yd_c00026{bottom:856.659540px;}
.yc_c00026{bottom:885.103230px;}
.yb_c00026{bottom:913.546920px;}
.ya_c00026{bottom:942.072960px;}
.y9_c00026{bottom:970.516650px;}
.y8_c00026{bottom:998.960340px;}
.y7_c00026{bottom:1027.404030px;}
.y6_c00026{bottom:1055.847720px;}
.y5_c00026{bottom:1084.373760px;}
.y4_c00026{bottom:1112.817450px;}
.y3_c00026{bottom:1141.261140px;}
.y2_c00026{bottom:1194.096900px;}
.h2_c00026{height:50.400000px;}
.h3_c00026{height:54.331699px;}
.h4_c00026{height:70.293960px;}
.h0_c00026{height:1262.835000px;}
.h1_c00026{height:1263.000000px;}
.w2_c00026{width:0.000000px;}
.w3_c00026{width:0.034500px;}
.w0_c00026{width:892.914000px;}
.w1_c00026{width:893.250000px;}
.x1_c00026{left:-838.913400px;}
.x2_c00026{left:-807.896700px;}
.x3_c00026{left:-806.002650px;}
.x0_c00026{left:0.000000px;}
.x4_c00026{left:85.016550px;}
.x5_c00026{left:804.366150px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls7_c00026{letter-spacing:-0.058560pt;}
.ls6_c00026{letter-spacing:0.000000pt;}
.ls0_c00026{letter-spacing:0.058560pt;}
.ls3_c00026{letter-spacing:0.175680pt;}
.ls4_c00026{letter-spacing:14.581440pt;}
.ls2_c00026{letter-spacing:14.628288pt;}
.ls5_c00026{letter-spacing:14.634144pt;}
.ls1_c00026{letter-spacing:14.757120pt;}
.ws2_c00026{word-spacing:-14.815680pt;}
.ws0_c00026{word-spacing:-14.698560pt;}
.ws1_c00026{word-spacing:-14.581440pt;}
.ws5_c00026{word-spacing:-0.175680pt;}
.wsa_c00026{word-spacing:-0.117120pt;}
.ws3_c00026{word-spacing:0.000000pt;}
.ws6_c00026{word-spacing:0.058560pt;}
.ws4_c00026{word-spacing:0.117120pt;}
.wsb_c00026{word-spacing:0.175680pt;}
.ws9_c00026{word-spacing:6.910080pt;}
.ws8_c00026{word-spacing:7.202880pt;}
.ws7_c00026{word-spacing:8.432640pt;}
._9_c00026{margin-left:-0.948672pt;}
._0_c00026{width:0.890112pt;}
._e_c00026{width:2.084736pt;}
._2_c00026{width:3.103680pt;}
._d_c00026{width:4.274880pt;}
._7_c00026{width:5.902848pt;}
._8_c00026{width:7.495680pt;}
._6_c00026{width:8.784000pt;}
._b_c00026{width:10.283136pt;}
._c_c00026{width:12.403008pt;}
._5_c00026{width:13.480512pt;}
._f_c00026{width:16.045440pt;}
._3_c00026{width:19.957248pt;}
._1_c00026{width:22.006848pt;}
._10_c00026{width:24.478080pt;}
._a_c00026{width:25.977216pt;}
._4_c00026{width:28.272768pt;}
.fs1_c00026{font-size:58.560000pt;}
.fs0_c00026{font-size:64.000000pt;}
.y0_c00026{bottom:0.000000pt;}
.y1_c00026{bottom:54.887600pt;}
.y25_c00026{bottom:110.595387pt;}
.y24_c00026{bottom:135.951867pt;}
.y23_c00026{bottom:161.235147pt;}
.y22_c00026{bottom:186.518427pt;}
.y21_c00026{bottom:211.801707pt;}
.y20_c00026{bottom:237.084987pt;}
.y1f_c00026{bottom:262.441467pt;}
.y1e_c00026{bottom:287.724747pt;}
.y1d_c00026{bottom:313.008027pt;}
.y1c_c00026{bottom:338.291307pt;}
.y1b_c00026{bottom:363.647787pt;}
.y1a_c00026{bottom:388.931067pt;}
.y19_c00026{bottom:414.214347pt;}
.y29_c00026{bottom:439.497627pt;}
.y18_c00026{bottom:457.900107pt;}
.y28_c00026{bottom:464.780907pt;}
.y27_c00026{bottom:490.137387pt;}
.y17_c00026{bottom:508.495947pt;}
.y26_c00026{bottom:515.420667pt;}
.y16_c00026{bottom:533.779227pt;}
.y15_c00026{bottom:559.062507pt;}
.y14_c00026{bottom:584.345787pt;}
.y13_c00026{bottom:609.702267pt;}
.y12_c00026{bottom:634.985547pt;}
.y11_c00026{bottom:660.268827pt;}
.y10_c00026{bottom:685.552107pt;}
.yf_c00026{bottom:710.835387pt;}
.ye_c00026{bottom:736.191867pt;}
.yd_c00026{bottom:761.475147pt;}
.yc_c00026{bottom:786.758427pt;}
.yb_c00026{bottom:812.041707pt;}
.ya_c00026{bottom:837.398187pt;}
.y9_c00026{bottom:862.681467pt;}
.y8_c00026{bottom:887.964747pt;}
.y7_c00026{bottom:913.248027pt;}
.y6_c00026{bottom:938.531307pt;}
.y5_c00026{bottom:963.887787pt;}
.y4_c00026{bottom:989.171067pt;}
.y3_c00026{bottom:1014.454347pt;}
.y2_c00026{bottom:1061.419467pt;}
.h2_c00026{height:44.800000pt;}
.h3_c00026{height:48.294844pt;}
.h4_c00026{height:62.483520pt;}
.h0_c00026{height:1122.520000pt;}
.h1_c00026{height:1122.666667pt;}
.w2_c00026{width:0.000000pt;}
.w3_c00026{width:0.030667pt;}
.w0_c00026{width:793.701333pt;}
.w1_c00026{width:794.000000pt;}
.x1_c00026{left:-745.700800pt;}
.x2_c00026{left:-718.130400pt;}
.x3_c00026{left:-716.446800pt;}
.x0_c00026{left:0.000000pt;}
.x4_c00026{left:75.570267pt;}
.x5_c00026{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00027{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
}
.y0_c00027{bottom:0.000000px;}
.h0_c00027{height:1262.835000px;}
.h1_c00027{height:1263.000000px;}
.w0_c00027{width:892.914000px;}
.w1_c00027{width:893.250000px;}
.x0_c00027{left:0.000000px;}
@media print{
.y0_c00027{bottom:0.000000pt;}
.h0_c00027{height:1122.520000pt;}
.h1_c00027{height:1122.666667pt;}
.w0_c00027{width:793.701333pt;}
.w1_c00027{width:794.000000pt;}
.x0_c00027{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_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;}
.sc__c00028{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
}
.y0_c00028{bottom:0.000000px;}
.h0_c00028{height:1262.835000px;}
.h1_c00028{height:1263.000000px;}
.w0_c00028{width:892.914000px;}
.w1_c00028{width:893.250000px;}
.x0_c00028{left:0.000000px;}
@media print{
.y0_c00028{bottom:0.000000pt;}
.h0_c00028{height:1122.520000pt;}
.h1_c00028{height:1122.666667pt;}
.w0_c00028{width:793.701333pt;}
.w1_c00028{width:794.000000pt;}
.x0_c00028{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_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;}
.sc__c00029{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
}
.y0_c00029{bottom:0.000000px;}
.h0_c00029{height:1262.835000px;}
.h1_c00029{height:1263.000000px;}
.w0_c00029{width:892.914000px;}
.w1_c00029{width:893.250000px;}
.x0_c00029{left:0.000000px;}
@media print{
.y0_c00029{bottom:0.000000pt;}
.h0_c00029{height:1122.520000pt;}
.h1_c00029{height:1122.666667pt;}
.w0_c00029{width:793.701333pt;}
.w1_c00029{width:794.000000pt;}
.x0_c00029{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_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00030;src:url('chunks/assets/font_8af73078f9668a31951f5072.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00030;src:url('chunks/assets/font_09e80be2fe664bc5386ccf44.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.ls4_c00030{letter-spacing:0.000000px;}
.ls0_c00030{letter-spacing:0.072000px;}
.ls5_c00030{letter-spacing:0.144000px;}
.ls3_c00030{letter-spacing:38.520000px;}
.ls2_c00030{letter-spacing:38.880000px;}
.ls1_c00030{letter-spacing:52.632000px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00030{word-spacing:-18.144000px;}
.ws2_c00030{word-spacing:-18.072000px;}
.ws5_c00030{word-spacing:-0.131760px;}
.wsa_c00030{word-spacing:-0.072000px;}
.ws3_c00030{word-spacing:0.000000px;}
.ws4_c00030{word-spacing:0.197640px;}
.ws10_c00030{word-spacing:1.008000px;}
.ws11_c00030{word-spacing:1.080000px;}
.ws20_c00030{word-spacing:2.376000px;}
.ws19_c00030{word-spacing:2.448000px;}
.ws18_c00030{word-spacing:2.520000px;}
.ws1b_c00030{word-spacing:2.808000px;}
.ws1a_c00030{word-spacing:3.528000px;}
.ws15_c00030{word-spacing:4.608000px;}
.ws14_c00030{word-spacing:4.680000px;}
.ws1f_c00030{word-spacing:6.480000px;}
.ws8_c00030{word-spacing:7.200000px;}
.ws9_c00030{word-spacing:7.488000px;}
.ws7_c00030{word-spacing:7.560000px;}
.ws13_c00030{word-spacing:10.728000px;}
.wsf_c00030{word-spacing:11.088000px;}
.ws1e_c00030{word-spacing:11.448000px;}
.wse_c00030{word-spacing:11.808000px;}
.ws21_c00030{word-spacing:11.880000px;}
.ws17_c00030{word-spacing:13.608000px;}
.ws16_c00030{word-spacing:13.680000px;}
.ws1_c00030{word-spacing:14.270400px;}
.ws22_c00030{word-spacing:14.328000px;}
.wsd_c00030{word-spacing:16.848000px;}
.wsc_c00030{word-spacing:16.920000px;}
.ws26_c00030{word-spacing:20.880000px;}
.ws6_c00030{word-spacing:21.240000px;}
.ws23_c00030{word-spacing:26.208000px;}
.ws1d_c00030{word-spacing:30.528000px;}
.ws1c_c00030{word-spacing:30.600000px;}
.wsb_c00030{word-spacing:31.320000px;}
.ws12_c00030{word-spacing:33.048000px;}
.ws25_c00030{word-spacing:34.488000px;}
.ws24_c00030{word-spacing:34.560000px;}
._1_c00030{margin-left:-1.224000px;}
._0_c00030{width:1.119960px;}
._2_c00030{width:31.248000px;}
._3_c00030{width:41.400000px;}
.fc1_c00030{color:rgb(0,0,0);}
.fc0_c00030{color:rgb(35,31,32);}
.fs1_c00030{font-size:65.880000px;}
.fs0_c00030{font-size:72.000000px;}
.y0_c00030{bottom:0.000000px;}
.y1_c00030{bottom:61.748550px;}
.y22_c00030{bottom:116.234250px;}
.y21_c00030{bottom:147.284250px;}
.y20_c00030{bottom:178.334250px;}
.y1f_c00030{bottom:240.434250px;}
.y1e_c00030{bottom:271.484250px;}
.y1d_c00030{bottom:302.534250px;}
.y1c_c00030{bottom:333.584250px;}
.y1b_c00030{bottom:364.634250px;}
.y1a_c00030{bottom:395.684250px;}
.y19_c00030{bottom:426.734250px;}
.y18_c00030{bottom:457.784250px;}
.y17_c00030{bottom:519.884250px;}
.y16_c00030{bottom:550.934250px;}
.y15_c00030{bottom:581.984250px;}
.y14_c00030{bottom:613.034250px;}
.y13_c00030{bottom:644.084250px;}
.y12_c00030{bottom:675.134250px;}
.y11_c00030{bottom:706.184250px;}
.y10_c00030{bottom:737.234250px;}
.yf_c00030{bottom:768.284250px;}
.ye_c00030{bottom:830.384250px;}
.yd_c00030{bottom:861.434250px;}
.yc_c00030{bottom:892.484250px;}
.yb_c00030{bottom:923.534250px;}
.ya_c00030{bottom:954.584250px;}
.y9_c00030{bottom:985.634250px;}
.y8_c00030{bottom:1016.684400px;}
.y7_c00030{bottom:1046.834400px;}
.y6_c00030{bottom:1077.884400px;}
.y5_c00030{bottom:1108.934400px;}
.y4_c00030{bottom:1139.984400px;}
.y3_c00030{bottom:1173.915120px;}
.y2_c00030{bottom:1194.074400px;}
.h2_c00030{height:50.400000px;}
.h3_c00030{height:54.331699px;}
.h4_c00030{height:76.824000px;}
.h0_c00030{height:1262.835000px;}
.h1_c00030{height:1263.000000px;}
.w0_c00030{width:892.914000px;}
.w1_c00030{width:893.250000px;}
.x0_c00030{left:0.000000px;}
.x2_c00030{left:127.620000px;}
.x3_c00030{left:159.570000px;}
.x1_c00030{left:804.366150px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls4_c00030{letter-spacing:0.000000pt;}
.ls0_c00030{letter-spacing:0.064000pt;}
.ls5_c00030{letter-spacing:0.128000pt;}
.ls3_c00030{letter-spacing:34.240000pt;}
.ls2_c00030{letter-spacing:34.560000pt;}
.ls1_c00030{letter-spacing:46.784000pt;}
.ws0_c00030{word-spacing:-16.128000pt;}
.ws2_c00030{word-spacing:-16.064000pt;}
.ws5_c00030{word-spacing:-0.117120pt;}
.wsa_c00030{word-spacing:-0.064000pt;}
.ws3_c00030{word-spacing:0.000000pt;}
.ws4_c00030{word-spacing:0.175680pt;}
.ws10_c00030{word-spacing:0.896000pt;}
.ws11_c00030{word-spacing:0.960000pt;}
.ws20_c00030{word-spacing:2.112000pt;}
.ws19_c00030{word-spacing:2.176000pt;}
.ws18_c00030{word-spacing:2.240000pt;}
.ws1b_c00030{word-spacing:2.496000pt;}
.ws1a_c00030{word-spacing:3.136000pt;}
.ws15_c00030{word-spacing:4.096000pt;}
.ws14_c00030{word-spacing:4.160000pt;}
.ws1f_c00030{word-spacing:5.760000pt;}
.ws8_c00030{word-spacing:6.400000pt;}
.ws9_c00030{word-spacing:6.656000pt;}
.ws7_c00030{word-spacing:6.720000pt;}
.ws13_c00030{word-spacing:9.536000pt;}
.wsf_c00030{word-spacing:9.856000pt;}
.ws1e_c00030{word-spacing:10.176000pt;}
.wse_c00030{word-spacing:10.496000pt;}
.ws21_c00030{word-spacing:10.560000pt;}
.ws17_c00030{word-spacing:12.096000pt;}
.ws16_c00030{word-spacing:12.160000pt;}
.ws1_c00030{word-spacing:12.684800pt;}
.ws22_c00030{word-spacing:12.736000pt;}
.wsd_c00030{word-spacing:14.976000pt;}
.wsc_c00030{word-spacing:15.040000pt;}
.ws26_c00030{word-spacing:18.560000pt;}
.ws6_c00030{word-spacing:18.880000pt;}
.ws23_c00030{word-spacing:23.296000pt;}
.ws1d_c00030{word-spacing:27.136000pt;}
.ws1c_c00030{word-spacing:27.200000pt;}
.wsb_c00030{word-spacing:27.840000pt;}
.ws12_c00030{word-spacing:29.376000pt;}
.ws25_c00030{word-spacing:30.656000pt;}
.ws24_c00030{word-spacing:30.720000pt;}
._1_c00030{margin-left:-1.088000pt;}
._0_c00030{width:0.995520pt;}
._2_c00030{width:27.776000pt;}
._3_c00030{width:36.800000pt;}
.fs1_c00030{font-size:58.560000pt;}
.fs0_c00030{font-size:64.000000pt;}
.y0_c00030{bottom:0.000000pt;}
.y1_c00030{bottom:54.887600pt;}
.y22_c00030{bottom:103.319333pt;}
.y21_c00030{bottom:130.919333pt;}
.y20_c00030{bottom:158.519333pt;}
.y1f_c00030{bottom:213.719333pt;}
.y1e_c00030{bottom:241.319333pt;}
.y1d_c00030{bottom:268.919333pt;}
.y1c_c00030{bottom:296.519333pt;}
.y1b_c00030{bottom:324.119333pt;}
.y1a_c00030{bottom:351.719333pt;}
.y19_c00030{bottom:379.319333pt;}
.y18_c00030{bottom:406.919333pt;}
.y17_c00030{bottom:462.119333pt;}
.y16_c00030{bottom:489.719333pt;}
.y15_c00030{bottom:517.319333pt;}
.y14_c00030{bottom:544.919333pt;}
.y13_c00030{bottom:572.519333pt;}
.y12_c00030{bottom:600.119333pt;}
.y11_c00030{bottom:627.719333pt;}
.y10_c00030{bottom:655.319333pt;}
.yf_c00030{bottom:682.919333pt;}
.ye_c00030{bottom:738.119333pt;}
.yd_c00030{bottom:765.719333pt;}
.yc_c00030{bottom:793.319333pt;}
.yb_c00030{bottom:820.919333pt;}
.ya_c00030{bottom:848.519333pt;}
.y9_c00030{bottom:876.119333pt;}
.y8_c00030{bottom:903.719467pt;}
.y7_c00030{bottom:930.519467pt;}
.y6_c00030{bottom:958.119467pt;}
.y5_c00030{bottom:985.719467pt;}
.y4_c00030{bottom:1013.319467pt;}
.y3_c00030{bottom:1043.480107pt;}
.y2_c00030{bottom:1061.399467pt;}
.h2_c00030{height:44.800000pt;}
.h3_c00030{height:48.294844pt;}
.h4_c00030{height:68.288000pt;}
.h0_c00030{height:1122.520000pt;}
.h1_c00030{height:1122.666667pt;}
.w0_c00030{width:793.701333pt;}
.w1_c00030{width:794.000000pt;}
.x0_c00030{left:0.000000pt;}
.x2_c00030{left:113.440000pt;}
.x3_c00030{left:141.840000pt;}
.x1_c00030{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00031;src:url('chunks/assets/font_db76d3876ea483fee826bca7.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00031;src:url('chunks/assets/font_fcf7fbf0b23fc7043df66276.woff2')format("woff");}.ff3_c00031{font-family:ff3_c00031;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls4_c00031{letter-spacing:-0.360000px;}
.ls5_c00031{letter-spacing:-0.216000px;}
.ls6_c00031{letter-spacing:-0.144000px;}
.ls3_c00031{letter-spacing:-0.131760px;}
.ls2_c00031{letter-spacing:0.000000px;}
.ls0_c00031{letter-spacing:0.072000px;}
.ls1_c00031{letter-spacing:0.144000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00031{word-spacing:-18.144000px;}
.ws8_c00031{word-spacing:-18.072000px;}
.ws1_c00031{word-spacing:-18.000000px;}
.wsa_c00031{word-spacing:-17.856000px;}
.ws6_c00031{word-spacing:-17.784000px;}
.ws0_c00031{word-spacing:-14.757120px;}
.ws19_c00031{word-spacing:-0.360000px;}
.ws9_c00031{word-spacing:-0.072000px;}
.wsb_c00031{word-spacing:0.000000px;}
.wsc_c00031{word-spacing:2.088000px;}
.ws26_c00031{word-spacing:2.448000px;}
.wsf_c00031{word-spacing:2.520000px;}
.ws27_c00031{word-spacing:2.808000px;}
.ws18_c00031{word-spacing:3.096000px;}
.ws1c_c00031{word-spacing:3.888000px;}
.ws12_c00031{word-spacing:5.328000px;}
.ws13_c00031{word-spacing:5.400000px;}
.ws24_c00031{word-spacing:6.048000px;}
.ws23_c00031{word-spacing:6.120000px;}
.ws22_c00031{word-spacing:6.768000px;}
.ws5_c00031{word-spacing:6.840000px;}
.ws1f_c00031{word-spacing:7.488000px;}
.ws20_c00031{word-spacing:7.560000px;}
.ws11_c00031{word-spacing:7.848000px;}
.ws1e_c00031{word-spacing:8.568000px;}
.ws1d_c00031{word-spacing:8.640000px;}
.ws15_c00031{word-spacing:9.000000px;}
.ws14_c00031{word-spacing:9.360000px;}
.ws3_c00031{word-spacing:11.030400px;}
.ws16_c00031{word-spacing:11.160000px;}
.ws17_c00031{word-spacing:11.448000px;}
.ws2_c00031{word-spacing:11.592000px;}
.ws28_c00031{word-spacing:12.528000px;}
.ws21_c00031{word-spacing:14.328000px;}
.wsd_c00031{word-spacing:14.688000px;}
.ws1b_c00031{word-spacing:15.768000px;}
.ws1a_c00031{word-spacing:15.840000px;}
.ws25_c00031{word-spacing:19.008000px;}
.ws10_c00031{word-spacing:19.800000px;}
.wse_c00031{word-spacing:20.448000px;}
.ws7_c00031{word-spacing:36.000000px;}
._1_c00031{margin-left:-1.152000px;}
._0_c00031{width:1.251720px;}
._2_c00031{width:9.000000px;}
.fc1_c00031{color:rgb(0,0,0);}
.fc0_c00031{color:rgb(35,31,32);}
.fs1_c00031{font-size:65.880000px;}
.fs0_c00031{font-size:72.000000px;}
.y0_c00031{bottom:0.000000px;}
.y1_c00031{bottom:61.748550px;}
.y1d_c00031{bottom:146.474400px;}
.y1c_c00031{bottom:177.524400px;}
.y1b_c00031{bottom:239.624400px;}
.y1a_c00031{bottom:270.674400px;}
.y19_c00031{bottom:332.774400px;}
.y18_c00031{bottom:394.874400px;}
.y17_c00031{bottom:425.924400px;}
.y16_c00031{bottom:488.024400px;}
.y15_c00031{bottom:519.074400px;}
.y14_c00031{bottom:581.174400px;}
.y13_c00031{bottom:612.224400px;}
.y12_c00031{bottom:643.274400px;}
.y11_c00031{bottom:674.324400px;}
.y10_c00031{bottom:705.374400px;}
.yf_c00031{bottom:736.424400px;}
.ye_c00031{bottom:767.474400px;}
.yd_c00031{bottom:829.484400px;}
.yc_c00031{bottom:860.534400px;}
.yb_c00031{bottom:891.584400px;}
.ya_c00031{bottom:922.634400px;}
.y9_c00031{bottom:953.684400px;}
.y8_c00031{bottom:984.734400px;}
.y7_c00031{bottom:1015.784400px;}
.y6_c00031{bottom:1046.834400px;}
.y5_c00031{bottom:1077.884400px;}
.y4_c00031{bottom:1108.934400px;}
.y3_c00031{bottom:1139.984400px;}
.y2_c00031{bottom:1194.074400px;}
.h2_c00031{height:50.400000px;}
.h3_c00031{height:54.331699px;}
.h4_c00031{height:76.824000px;}
.h0_c00031{height:1262.835000px;}
.h1_c00031{height:1263.000000px;}
.w0_c00031{width:892.914000px;}
.w1_c00031{width:893.250000px;}
.x0_c00031{left:0.000000px;}
.x1_c00031{left:54.000000px;}
.x2_c00031{left:127.620000px;}
.x3_c00031{left:159.570000px;}
.x4_c00031{left:180.540000px;}
.x5_c00031{left:207.540000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls4_c00031{letter-spacing:-0.320000pt;}
.ls5_c00031{letter-spacing:-0.192000pt;}
.ls6_c00031{letter-spacing:-0.128000pt;}
.ls3_c00031{letter-spacing:-0.117120pt;}
.ls2_c00031{letter-spacing:0.000000pt;}
.ls0_c00031{letter-spacing:0.064000pt;}
.ls1_c00031{letter-spacing:0.128000pt;}
.ws4_c00031{word-spacing:-16.128000pt;}
.ws8_c00031{word-spacing:-16.064000pt;}
.ws1_c00031{word-spacing:-16.000000pt;}
.wsa_c00031{word-spacing:-15.872000pt;}
.ws6_c00031{word-spacing:-15.808000pt;}
.ws0_c00031{word-spacing:-13.117440pt;}
.ws19_c00031{word-spacing:-0.320000pt;}
.ws9_c00031{word-spacing:-0.064000pt;}
.wsb_c00031{word-spacing:0.000000pt;}
.wsc_c00031{word-spacing:1.856000pt;}
.ws26_c00031{word-spacing:2.176000pt;}
.wsf_c00031{word-spacing:2.240000pt;}
.ws27_c00031{word-spacing:2.496000pt;}
.ws18_c00031{word-spacing:2.752000pt;}
.ws1c_c00031{word-spacing:3.456000pt;}
.ws12_c00031{word-spacing:4.736000pt;}
.ws13_c00031{word-spacing:4.800000pt;}
.ws24_c00031{word-spacing:5.376000pt;}
.ws23_c00031{word-spacing:5.440000pt;}
.ws22_c00031{word-spacing:6.016000pt;}
.ws5_c00031{word-spacing:6.080000pt;}
.ws1f_c00031{word-spacing:6.656000pt;}
.ws20_c00031{word-spacing:6.720000pt;}
.ws11_c00031{word-spacing:6.976000pt;}
.ws1e_c00031{word-spacing:7.616000pt;}
.ws1d_c00031{word-spacing:7.680000pt;}
.ws15_c00031{word-spacing:8.000000pt;}
.ws14_c00031{word-spacing:8.320000pt;}
.ws3_c00031{word-spacing:9.804800pt;}
.ws16_c00031{word-spacing:9.920000pt;}
.ws17_c00031{word-spacing:10.176000pt;}
.ws2_c00031{word-spacing:10.304000pt;}
.ws28_c00031{word-spacing:11.136000pt;}
.ws21_c00031{word-spacing:12.736000pt;}
.wsd_c00031{word-spacing:13.056000pt;}
.ws1b_c00031{word-spacing:14.016000pt;}
.ws1a_c00031{word-spacing:14.080000pt;}
.ws25_c00031{word-spacing:16.896000pt;}
.ws10_c00031{word-spacing:17.600000pt;}
.wse_c00031{word-spacing:18.176000pt;}
.ws7_c00031{word-spacing:32.000000pt;}
._1_c00031{margin-left:-1.024000pt;}
._0_c00031{width:1.112640pt;}
._2_c00031{width:8.000000pt;}
.fs1_c00031{font-size:58.560000pt;}
.fs0_c00031{font-size:64.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y1_c00031{bottom:54.887600pt;}
.y1d_c00031{bottom:130.199467pt;}
.y1c_c00031{bottom:157.799467pt;}
.y1b_c00031{bottom:212.999467pt;}
.y1a_c00031{bottom:240.599467pt;}
.y19_c00031{bottom:295.799467pt;}
.y18_c00031{bottom:350.999467pt;}
.y17_c00031{bottom:378.599467pt;}
.y16_c00031{bottom:433.799467pt;}
.y15_c00031{bottom:461.399467pt;}
.y14_c00031{bottom:516.599467pt;}
.y13_c00031{bottom:544.199467pt;}
.y12_c00031{bottom:571.799467pt;}
.y11_c00031{bottom:599.399467pt;}
.y10_c00031{bottom:626.999467pt;}
.yf_c00031{bottom:654.599467pt;}
.ye_c00031{bottom:682.199467pt;}
.yd_c00031{bottom:737.319467pt;}
.yc_c00031{bottom:764.919467pt;}
.yb_c00031{bottom:792.519467pt;}
.ya_c00031{bottom:820.119467pt;}
.y9_c00031{bottom:847.719467pt;}
.y8_c00031{bottom:875.319467pt;}
.y7_c00031{bottom:902.919467pt;}
.y6_c00031{bottom:930.519467pt;}
.y5_c00031{bottom:958.119467pt;}
.y4_c00031{bottom:985.719467pt;}
.y3_c00031{bottom:1013.319467pt;}
.y2_c00031{bottom:1061.399467pt;}
.h2_c00031{height:44.800000pt;}
.h3_c00031{height:48.294844pt;}
.h4_c00031{height:68.288000pt;}
.h0_c00031{height:1122.520000pt;}
.h1_c00031{height:1122.666667pt;}
.w0_c00031{width:793.701333pt;}
.w1_c00031{width:794.000000pt;}
.x0_c00031{left:0.000000pt;}
.x1_c00031{left:48.000000pt;}
.x2_c00031{left:113.440000pt;}
.x3_c00031{left:141.840000pt;}
.x4_c00031{left:160.480000pt;}
.x5_c00031{left:184.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_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00032;src:url('chunks/assets/font_e57af536f6d2908ef2be30f6.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00032;src:url('chunks/assets/font_d3a64e5bce76327458863f13.woff2')format("woff");}.ff3_c00032{font-family:ff3_c00032;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00032;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00032{font-family:ff4_c00032;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00032;src:url('chunks/assets/font_8cf5b2b0de5aac2dc64e3e95.woff2')format("woff");}.ff5_c00032{font-family:ff5_c00032;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00032;src:url('chunks/assets/font_0a438bccf0c213930e19755b.woff2')format("woff");}.ff6_c00032{font-family:ff6_c00032;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00032;src:url('chunks/assets/font_81d4c5b40a41f049d6b2f656.woff2')format("woff");}.ff7_c00032{font-family:ff7_c00032;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.ls5_c00032{letter-spacing:-0.360000px;}
.ls6_c00032{letter-spacing:-0.216000px;}
.ls7_c00032{letter-spacing:-0.144000px;}
.ls4_c00032{letter-spacing:-0.131760px;}
.ls3_c00032{letter-spacing:0.000000px;}
.ls0_c00032{letter-spacing:0.072000px;}
.ls1_c00032{letter-spacing:0.144000px;}
.ls2_c00032{letter-spacing:28.512000px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00032{word-spacing:-18.144000px;}
.ws8_c00032{word-spacing:-18.072000px;}
.ws1_c00032{word-spacing:-18.000000px;}
.wsa_c00032{word-spacing:-17.856000px;}
.ws6_c00032{word-spacing:-17.784000px;}
.ws0_c00032{word-spacing:-14.757120px;}
.ws1c_c00032{word-spacing:-0.360000px;}
.ws2d_c00032{word-spacing:-0.131760px;}
.ws9_c00032{word-spacing:-0.072000px;}
.wsb_c00032{word-spacing:0.000000px;}
.ws2c_c00032{word-spacing:0.197640px;}
.wse_c00032{word-spacing:0.216000px;}
.ws32_c00032{word-spacing:0.648000px;}
.ws39_c00032{word-spacing:0.720000px;}
.ws3e_c00032{word-spacing:1.728000px;}
.wsf_c00032{word-spacing:2.088000px;}
.ws29_c00032{word-spacing:2.448000px;}
.ws12_c00032{word-spacing:2.520000px;}
.ws2a_c00032{word-spacing:2.808000px;}
.ws1b_c00032{word-spacing:3.096000px;}
.ws1f_c00032{word-spacing:3.888000px;}
.ws3f_c00032{word-spacing:4.176000px;}
.ws35_c00032{word-spacing:4.608000px;}
.ws40_c00032{word-spacing:4.680000px;}
.ws15_c00032{word-spacing:5.328000px;}
.ws16_c00032{word-spacing:5.400000px;}
.ws2f_c00032{word-spacing:5.688000px;}
.ws27_c00032{word-spacing:6.048000px;}
.ws26_c00032{word-spacing:6.120000px;}
.ws41_c00032{word-spacing:6.408000px;}
.ws25_c00032{word-spacing:6.768000px;}
.ws5_c00032{word-spacing:6.840000px;}
.ws34_c00032{word-spacing:7.416000px;}
.ws22_c00032{word-spacing:7.488000px;}
.ws23_c00032{word-spacing:7.560000px;}
.wsd_c00032{word-spacing:7.632000px;}
.ws14_c00032{word-spacing:7.848000px;}
.ws21_c00032{word-spacing:8.568000px;}
.ws20_c00032{word-spacing:8.640000px;}
.ws36_c00032{word-spacing:8.928000px;}
.ws18_c00032{word-spacing:9.000000px;}
.ws17_c00032{word-spacing:9.360000px;}
.ws38_c00032{word-spacing:9.720000px;}
.ws2e_c00032{word-spacing:10.008000px;}
.wsc_c00032{word-spacing:10.152000px;}
.ws30_c00032{word-spacing:10.368000px;}
.ws31_c00032{word-spacing:10.440000px;}
.ws3_c00032{word-spacing:11.030400px;}
.ws19_c00032{word-spacing:11.160000px;}
.ws1a_c00032{word-spacing:11.448000px;}
.ws2_c00032{word-spacing:11.592000px;}
.ws2b_c00032{word-spacing:12.528000px;}
.ws3d_c00032{word-spacing:14.040000px;}
.ws24_c00032{word-spacing:14.328000px;}
.ws10_c00032{word-spacing:14.688000px;}
.ws33_c00032{word-spacing:15.696000px;}
.ws1e_c00032{word-spacing:15.768000px;}
.ws1d_c00032{word-spacing:15.840000px;}
.ws28_c00032{word-spacing:19.008000px;}
.ws3a_c00032{word-spacing:19.368000px;}
.ws3b_c00032{word-spacing:19.440000px;}
.ws13_c00032{word-spacing:19.800000px;}
.ws11_c00032{word-spacing:20.448000px;}
.ws37_c00032{word-spacing:26.208000px;}
.ws3c_c00032{word-spacing:33.768000px;}
.ws7_c00032{word-spacing:36.000000px;}
._1_c00032{margin-left:-1.152000px;}
._0_c00032{width:1.251720px;}
._2_c00032{width:9.000000px;}
._3_c00032{width:26.496000px;}
.fc2_c00032{color:transparent;}
.fc1_c00032{color:rgb(0,0,0);}
.fc0_c00032{color:rgb(35,31,32);}
.fs1_c00032{font-size:65.880000px;}
.fs0_c00032{font-size:72.000000px;}
.y0_c00032{bottom:0.000000px;}
.y1_c00032{bottom:61.748550px;}
.y1d_c00032{bottom:146.474400px;}
.y1c_c00032{bottom:177.524400px;}
.y23_c00032{bottom:208.574400px;}
.y1b_c00032{bottom:239.624400px;}
.y1a_c00032{bottom:270.674400px;}
.y22_c00032{bottom:301.724400px;}
.y19_c00032{bottom:332.774400px;}
.y21_c00032{bottom:363.824400px;}
.y18_c00032{bottom:394.874400px;}
.y17_c00032{bottom:425.924400px;}
.y16_c00032{bottom:488.024400px;}
.y15_c00032{bottom:519.074400px;}
.y20_c00032{bottom:550.124400px;}
.y14_c00032{bottom:581.174400px;}
.y13_c00032{bottom:612.224400px;}
.y12_c00032{bottom:643.274400px;}
.y11_c00032{bottom:674.324400px;}
.y10_c00032{bottom:705.374400px;}
.yf_c00032{bottom:736.424400px;}
.ye_c00032{bottom:767.474400px;}
.y1f_c00032{bottom:798.434400px;}
.yd_c00032{bottom:829.484400px;}
.yc_c00032{bottom:860.534400px;}
.yb_c00032{bottom:891.584400px;}
.ya_c00032{bottom:922.634400px;}
.y9_c00032{bottom:953.684400px;}
.y8_c00032{bottom:984.734400px;}
.y7_c00032{bottom:1015.784400px;}
.y6_c00032{bottom:1046.834400px;}
.y5_c00032{bottom:1077.884400px;}
.y4_c00032{bottom:1108.934400px;}
.y3_c00032{bottom:1139.984400px;}
.y1e_c00032{bottom:1173.915120px;}
.y2_c00032{bottom:1194.074400px;}
.h2_c00032{height:50.400000px;}
.h3_c00032{height:54.331699px;}
.h4_c00032{height:76.824000px;}
.h5_c00032{height:78.048000px;}
.h0_c00032{height:1262.835000px;}
.h1_c00032{height:1263.000000px;}
.w2_c00032{width:0.000000px;}
.w3_c00032{width:0.066000px;}
.w0_c00032{width:892.914000px;}
.w1_c00032{width:893.250000px;}
.x1_c00032{left:-838.913400px;}
.x2_c00032{left:-765.293400px;}
.x3_c00032{left:-733.343400px;}
.x4_c00032{left:-712.373400px;}
.x5_c00032{left:-685.373400px;}
.x0_c00032{left:0.000000px;}
.x7_c00032{left:127.620000px;}
.xa_c00032{left:159.570000px;}
.x8_c00032{left:217.620000px;}
.x9_c00032{left:244.620000px;}
.x6_c00032{left:804.366150px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls5_c00032{letter-spacing:-0.320000pt;}
.ls6_c00032{letter-spacing:-0.192000pt;}
.ls7_c00032{letter-spacing:-0.128000pt;}
.ls4_c00032{letter-spacing:-0.117120pt;}
.ls3_c00032{letter-spacing:0.000000pt;}
.ls0_c00032{letter-spacing:0.064000pt;}
.ls1_c00032{letter-spacing:0.128000pt;}
.ls2_c00032{letter-spacing:25.344000pt;}
.ws4_c00032{word-spacing:-16.128000pt;}
.ws8_c00032{word-spacing:-16.064000pt;}
.ws1_c00032{word-spacing:-16.000000pt;}
.wsa_c00032{word-spacing:-15.872000pt;}
.ws6_c00032{word-spacing:-15.808000pt;}
.ws0_c00032{word-spacing:-13.117440pt;}
.ws1c_c00032{word-spacing:-0.320000pt;}
.ws2d_c00032{word-spacing:-0.117120pt;}
.ws9_c00032{word-spacing:-0.064000pt;}
.wsb_c00032{word-spacing:0.000000pt;}
.ws2c_c00032{word-spacing:0.175680pt;}
.wse_c00032{word-spacing:0.192000pt;}
.ws32_c00032{word-spacing:0.576000pt;}
.ws39_c00032{word-spacing:0.640000pt;}
.ws3e_c00032{word-spacing:1.536000pt;}
.wsf_c00032{word-spacing:1.856000pt;}
.ws29_c00032{word-spacing:2.176000pt;}
.ws12_c00032{word-spacing:2.240000pt;}
.ws2a_c00032{word-spacing:2.496000pt;}
.ws1b_c00032{word-spacing:2.752000pt;}
.ws1f_c00032{word-spacing:3.456000pt;}
.ws3f_c00032{word-spacing:3.712000pt;}
.ws35_c00032{word-spacing:4.096000pt;}
.ws40_c00032{word-spacing:4.160000pt;}
.ws15_c00032{word-spacing:4.736000pt;}
.ws16_c00032{word-spacing:4.800000pt;}
.ws2f_c00032{word-spacing:5.056000pt;}
.ws27_c00032{word-spacing:5.376000pt;}
.ws26_c00032{word-spacing:5.440000pt;}
.ws41_c00032{word-spacing:5.696000pt;}
.ws25_c00032{word-spacing:6.016000pt;}
.ws5_c00032{word-spacing:6.080000pt;}
.ws34_c00032{word-spacing:6.592000pt;}
.ws22_c00032{word-spacing:6.656000pt;}
.ws23_c00032{word-spacing:6.720000pt;}
.wsd_c00032{word-spacing:6.784000pt;}
.ws14_c00032{word-spacing:6.976000pt;}
.ws21_c00032{word-spacing:7.616000pt;}
.ws20_c00032{word-spacing:7.680000pt;}
.ws36_c00032{word-spacing:7.936000pt;}
.ws18_c00032{word-spacing:8.000000pt;}
.ws17_c00032{word-spacing:8.320000pt;}
.ws38_c00032{word-spacing:8.640000pt;}
.ws2e_c00032{word-spacing:8.896000pt;}
.wsc_c00032{word-spacing:9.024000pt;}
.ws30_c00032{word-spacing:9.216000pt;}
.ws31_c00032{word-spacing:9.280000pt;}
.ws3_c00032{word-spacing:9.804800pt;}
.ws19_c00032{word-spacing:9.920000pt;}
.ws1a_c00032{word-spacing:10.176000pt;}
.ws2_c00032{word-spacing:10.304000pt;}
.ws2b_c00032{word-spacing:11.136000pt;}
.ws3d_c00032{word-spacing:12.480000pt;}
.ws24_c00032{word-spacing:12.736000pt;}
.ws10_c00032{word-spacing:13.056000pt;}
.ws33_c00032{word-spacing:13.952000pt;}
.ws1e_c00032{word-spacing:14.016000pt;}
.ws1d_c00032{word-spacing:14.080000pt;}
.ws28_c00032{word-spacing:16.896000pt;}
.ws3a_c00032{word-spacing:17.216000pt;}
.ws3b_c00032{word-spacing:17.280000pt;}
.ws13_c00032{word-spacing:17.600000pt;}
.ws11_c00032{word-spacing:18.176000pt;}
.ws37_c00032{word-spacing:23.296000pt;}
.ws3c_c00032{word-spacing:30.016000pt;}
.ws7_c00032{word-spacing:32.000000pt;}
._1_c00032{margin-left:-1.024000pt;}
._0_c00032{width:1.112640pt;}
._2_c00032{width:8.000000pt;}
._3_c00032{width:23.552000pt;}
.fs1_c00032{font-size:58.560000pt;}
.fs0_c00032{font-size:64.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.y1_c00032{bottom:54.887600pt;}
.y1d_c00032{bottom:130.199467pt;}
.y1c_c00032{bottom:157.799467pt;}
.y23_c00032{bottom:185.399467pt;}
.y1b_c00032{bottom:212.999467pt;}
.y1a_c00032{bottom:240.599467pt;}
.y22_c00032{bottom:268.199467pt;}
.y19_c00032{bottom:295.799467pt;}
.y21_c00032{bottom:323.399467pt;}
.y18_c00032{bottom:350.999467pt;}
.y17_c00032{bottom:378.599467pt;}
.y16_c00032{bottom:433.799467pt;}
.y15_c00032{bottom:461.399467pt;}
.y20_c00032{bottom:488.999467pt;}
.y14_c00032{bottom:516.599467pt;}
.y13_c00032{bottom:544.199467pt;}
.y12_c00032{bottom:571.799467pt;}
.y11_c00032{bottom:599.399467pt;}
.y10_c00032{bottom:626.999467pt;}
.yf_c00032{bottom:654.599467pt;}
.ye_c00032{bottom:682.199467pt;}
.y1f_c00032{bottom:709.719467pt;}
.yd_c00032{bottom:737.319467pt;}
.yc_c00032{bottom:764.919467pt;}
.yb_c00032{bottom:792.519467pt;}
.ya_c00032{bottom:820.119467pt;}
.y9_c00032{bottom:847.719467pt;}
.y8_c00032{bottom:875.319467pt;}
.y7_c00032{bottom:902.919467pt;}
.y6_c00032{bottom:930.519467pt;}
.y5_c00032{bottom:958.119467pt;}
.y4_c00032{bottom:985.719467pt;}
.y3_c00032{bottom:1013.319467pt;}
.y1e_c00032{bottom:1043.480107pt;}
.y2_c00032{bottom:1061.399467pt;}
.h2_c00032{height:44.800000pt;}
.h3_c00032{height:48.294844pt;}
.h4_c00032{height:68.288000pt;}
.h5_c00032{height:69.376000pt;}
.h0_c00032{height:1122.520000pt;}
.h1_c00032{height:1122.666667pt;}
.w2_c00032{width:0.000000pt;}
.w3_c00032{width:0.058667pt;}
.w0_c00032{width:793.701333pt;}
.w1_c00032{width:794.000000pt;}
.x1_c00032{left:-745.700800pt;}
.x2_c00032{left:-680.260800pt;}
.x3_c00032{left:-651.860800pt;}
.x4_c00032{left:-633.220800pt;}
.x5_c00032{left:-609.220800pt;}
.x0_c00032{left:0.000000pt;}
.x7_c00032{left:113.440000pt;}
.xa_c00032{left:141.840000pt;}
.x8_c00032{left:193.440000pt;}
.x9_c00032{left:217.440000pt;}
.x6_c00032{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00033;src:url('chunks/assets/font_18870c414d5055fd5b36eff3.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00033;src:url('chunks/assets/font_999c56922de01ecfcb664dc4.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00033;src:url('chunks/assets/font_13cd3874a436de3eb6963930.woff2')format("woff");}.ff4_c00033{font-family:ff4_c00033;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls2_c00033{letter-spacing:-0.131760px;}
.ls3_c00033{letter-spacing:-0.072000px;}
.ls1_c00033{letter-spacing:0.000000px;}
.ls0_c00033{letter-spacing:0.072000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00033{word-spacing:-18.000000px;}
.ws0_c00033{word-spacing:-14.757120px;}
.ws7_c00033{word-spacing:-0.360000px;}
.ws6_c00033{word-spacing:-0.072000px;}
.ws3_c00033{word-spacing:0.000000px;}
.ws4_c00033{word-spacing:5.616000px;}
.ws5_c00033{word-spacing:5.760000px;}
.wsa_c00033{word-spacing:9.360000px;}
.wsb_c00033{word-spacing:14.328000px;}
.ws9_c00033{word-spacing:17.640000px;}
.ws8_c00033{word-spacing:17.784000px;}
.wsc_c00033{word-spacing:24.048000px;}
.ws1_c00033{word-spacing:24.055200px;}
.wsd_c00033{word-spacing:24.120000px;}
._1_c00033{margin-left:-1.180800px;}
._0_c00033{width:1.251720px;}
.fc1_c00033{color:rgb(0,0,0);}
.fc0_c00033{color:rgb(35,31,32);}
.fs1_c00033{font-size:65.880000px;}
.fs0_c00033{font-size:72.000000px;}
.y0_c00033{bottom:0.000000px;}
.y1_c00033{bottom:61.748550px;}
.y9_c00033{bottom:922.634400px;}
.y8_c00033{bottom:953.684400px;}
.y7_c00033{bottom:984.734400px;}
.y6_c00033{bottom:1015.784400px;}
.y5_c00033{bottom:1046.834400px;}
.y4_c00033{bottom:1108.934400px;}
.y3_c00033{bottom:1139.984400px;}
.y2_c00033{bottom:1194.074400px;}
.h2_c00033{height:50.400000px;}
.h3_c00033{height:54.331699px;}
.h5_c00033{height:76.824000px;}
.h4_c00033{height:78.048000px;}
.h0_c00033{height:1262.835000px;}
.h1_c00033{height:1263.000000px;}
.w0_c00033{width:892.914000px;}
.w1_c00033{width:893.250000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:54.000000px;}
.x2_c00033{left:127.620000px;}
.x3_c00033{left:159.570000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls2_c00033{letter-spacing:-0.117120pt;}
.ls3_c00033{letter-spacing:-0.064000pt;}
.ls1_c00033{letter-spacing:0.000000pt;}
.ls0_c00033{letter-spacing:0.064000pt;}
.ws2_c00033{word-spacing:-16.000000pt;}
.ws0_c00033{word-spacing:-13.117440pt;}
.ws7_c00033{word-spacing:-0.320000pt;}
.ws6_c00033{word-spacing:-0.064000pt;}
.ws3_c00033{word-spacing:0.000000pt;}
.ws4_c00033{word-spacing:4.992000pt;}
.ws5_c00033{word-spacing:5.120000pt;}
.wsa_c00033{word-spacing:8.320000pt;}
.wsb_c00033{word-spacing:12.736000pt;}
.ws9_c00033{word-spacing:15.680000pt;}
.ws8_c00033{word-spacing:15.808000pt;}
.wsc_c00033{word-spacing:21.376000pt;}
.ws1_c00033{word-spacing:21.382400pt;}
.wsd_c00033{word-spacing:21.440000pt;}
._1_c00033{margin-left:-1.049600pt;}
._0_c00033{width:1.112640pt;}
.fs1_c00033{font-size:58.560000pt;}
.fs0_c00033{font-size:64.000000pt;}
.y0_c00033{bottom:0.000000pt;}
.y1_c00033{bottom:54.887600pt;}
.y9_c00033{bottom:820.119467pt;}
.y8_c00033{bottom:847.719467pt;}
.y7_c00033{bottom:875.319467pt;}
.y6_c00033{bottom:902.919467pt;}
.y5_c00033{bottom:930.519467pt;}
.y4_c00033{bottom:985.719467pt;}
.y3_c00033{bottom:1013.319467pt;}
.y2_c00033{bottom:1061.399467pt;}
.h2_c00033{height:44.800000pt;}
.h3_c00033{height:48.294844pt;}
.h5_c00033{height:68.288000pt;}
.h4_c00033{height:69.376000pt;}
.h0_c00033{height:1122.520000pt;}
.h1_c00033{height:1122.666667pt;}
.w0_c00033{width:793.701333pt;}
.w1_c00033{width:794.000000pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:48.000000pt;}
.x2_c00033{left:113.440000pt;}
.x3_c00033{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00034;src:url('chunks/assets/font_ec94f230dccc0feec3628f18.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00034;src:url('chunks/assets/font_b4fb2d75597e56e6dc75aaad.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00034;src:url('chunks/assets/font_e8453166e497184e97711e10.woff2')format("woff");}.ff4_c00034{font-family:ff4_c00034;line-height:1.592000;font-style:normal;font-weight:normal;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_65ad9840abf60e0cd34af94b.woff2')format("woff");}.ff5_c00034{font-family:ff5_c00034;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00034;src:url('chunks/assets/font_edc3f50a329053945e9f8fc6.woff2')format("woff");}.ff6_c00034{font-family:ff6_c00034;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00034;src:url('chunks/assets/font_92c569db65d963c30caf5420.woff2')format("woff");}.ff7_c00034{font-family:ff7_c00034;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls2_c00034{letter-spacing:-0.131760px;}
.ls3_c00034{letter-spacing:-0.072000px;}
.ls1_c00034{letter-spacing:0.000000px;}
.ls0_c00034{letter-spacing:0.072000px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00034{word-spacing:-18.000000px;}
.ws0_c00034{word-spacing:-14.757120px;}
.ws8_c00034{word-spacing:-0.360000px;}
.ws7_c00034{word-spacing:-0.072000px;}
.ws4_c00034{word-spacing:0.000000px;}
.ws5_c00034{word-spacing:5.616000px;}
.ws6_c00034{word-spacing:5.760000px;}
.wsb_c00034{word-spacing:9.360000px;}
.wsc_c00034{word-spacing:14.328000px;}
.wsa_c00034{word-spacing:17.640000px;}
.ws9_c00034{word-spacing:17.784000px;}
.wsd_c00034{word-spacing:24.048000px;}
.ws1_c00034{word-spacing:24.055200px;}
.ws3_c00034{word-spacing:24.062400px;}
.wse_c00034{word-spacing:24.120000px;}
._1_c00034{margin-left:-1.180800px;}
._0_c00034{width:1.251720px;}
.fc2_c00034{color:transparent;}
.fc1_c00034{color:rgb(0,0,0);}
.fc0_c00034{color:rgb(35,31,32);}
.fs1_c00034{font-size:65.880000px;}
.fs0_c00034{font-size:72.000000px;}
.y0_c00034{bottom:0.000000px;}
.y1_c00034{bottom:61.748550px;}
.y9_c00034{bottom:922.634400px;}
.y8_c00034{bottom:953.684400px;}
.y7_c00034{bottom:984.734400px;}
.y6_c00034{bottom:1015.784400px;}
.y5_c00034{bottom:1046.834400px;}
.y4_c00034{bottom:1108.934400px;}
.y3_c00034{bottom:1139.984400px;}
.y2_c00034{bottom:1194.074400px;}
.h2_c00034{height:50.400000px;}
.h3_c00034{height:54.331699px;}
.h5_c00034{height:76.824000px;}
.h4_c00034{height:78.048000px;}
.h0_c00034{height:1262.835000px;}
.h1_c00034{height:1263.000000px;}
.w2_c00034{width:0.000000px;}
.w3_c00034{width:0.066000px;}
.w0_c00034{width:892.914000px;}
.w1_c00034{width:893.250000px;}
.x1_c00034{left:-838.913400px;}
.x2_c00034{left:-765.293400px;}
.x3_c00034{left:-733.343400px;}
.x0_c00034{left:0.000000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls2_c00034{letter-spacing:-0.117120pt;}
.ls3_c00034{letter-spacing:-0.064000pt;}
.ls1_c00034{letter-spacing:0.000000pt;}
.ls0_c00034{letter-spacing:0.064000pt;}
.ws2_c00034{word-spacing:-16.000000pt;}
.ws0_c00034{word-spacing:-13.117440pt;}
.ws8_c00034{word-spacing:-0.320000pt;}
.ws7_c00034{word-spacing:-0.064000pt;}
.ws4_c00034{word-spacing:0.000000pt;}
.ws5_c00034{word-spacing:4.992000pt;}
.ws6_c00034{word-spacing:5.120000pt;}
.wsb_c00034{word-spacing:8.320000pt;}
.wsc_c00034{word-spacing:12.736000pt;}
.wsa_c00034{word-spacing:15.680000pt;}
.ws9_c00034{word-spacing:15.808000pt;}
.wsd_c00034{word-spacing:21.376000pt;}
.ws1_c00034{word-spacing:21.382400pt;}
.ws3_c00034{word-spacing:21.388800pt;}
.wse_c00034{word-spacing:21.440000pt;}
._1_c00034{margin-left:-1.049600pt;}
._0_c00034{width:1.112640pt;}
.fs1_c00034{font-size:58.560000pt;}
.fs0_c00034{font-size:64.000000pt;}
.y0_c00034{bottom:0.000000pt;}
.y1_c00034{bottom:54.887600pt;}
.y9_c00034{bottom:820.119467pt;}
.y8_c00034{bottom:847.719467pt;}
.y7_c00034{bottom:875.319467pt;}
.y6_c00034{bottom:902.919467pt;}
.y5_c00034{bottom:930.519467pt;}
.y4_c00034{bottom:985.719467pt;}
.y3_c00034{bottom:1013.319467pt;}
.y2_c00034{bottom:1061.399467pt;}
.h2_c00034{height:44.800000pt;}
.h3_c00034{height:48.294844pt;}
.h5_c00034{height:68.288000pt;}
.h4_c00034{height:69.376000pt;}
.h0_c00034{height:1122.520000pt;}
.h1_c00034{height:1122.666667pt;}
.w2_c00034{width:0.000000pt;}
.w3_c00034{width:0.058667pt;}
.w0_c00034{width:793.701333pt;}
.w1_c00034{width:794.000000pt;}
.x1_c00034{left:-745.700800pt;}
.x2_c00034{left:-680.260800pt;}
.x3_c00034{left:-651.860800pt;}
.x0_c00034{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_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;}
.sc__c00035{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
}
.y0_c00035{bottom:0.000000px;}
.h0_c00035{height:1262.835000px;}
.h1_c00035{height:1263.000000px;}
.w0_c00035{width:892.914000px;}
.w1_c00035{width:893.250000px;}
.x0_c00035{left:0.000000px;}
@media print{
.y0_c00035{bottom:0.000000pt;}
.h0_c00035{height:1122.520000pt;}
.h1_c00035{height:1122.666667pt;}
.w0_c00035{width:793.701333pt;}
.w1_c00035{width:794.000000pt;}
.x0_c00035{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_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;}
.sc__c00036{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
}
.y0_c00036{bottom:0.000000px;}
.h0_c00036{height:1262.835000px;}
.h1_c00036{height:1263.000000px;}
.w0_c00036{width:892.914000px;}
.w1_c00036{width:893.250000px;}
.x0_c00036{left:0.000000px;}
@media print{
.y0_c00036{bottom:0.000000pt;}
.h0_c00036{height:1122.520000pt;}
.h1_c00036{height:1122.666667pt;}
.w0_c00036{width:793.701333pt;}
.w1_c00036{width:794.000000pt;}
.x0_c00036{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_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_daae674238254e7cf5f0290b.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00037;src:url('chunks/assets/font_7373734cb500f3588877379c.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls3_c00037{letter-spacing:-0.288000px;}
.ls2_c00037{letter-spacing:-0.144000px;}
.ls1_c00037{letter-spacing:-0.065880px;}
.ls4_c00037{letter-spacing:0.000000px;}
.ls0_c00037{letter-spacing:0.072000px;}
.ls5_c00037{letter-spacing:0.144000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00037{word-spacing:-17.856000px;}
.ws8_c00037{word-spacing:-0.144000px;}
.wsa_c00037{word-spacing:-0.072000px;}
.ws2_c00037{word-spacing:0.131760px;}
.ws4_c00037{word-spacing:0.288000px;}
.ws3_c00037{word-spacing:3.168000px;}
.ws9_c00037{word-spacing:6.768000px;}
.ws6_c00037{word-spacing:26.568000px;}
.ws7_c00037{word-spacing:28.080000px;}
.ws5_c00037{word-spacing:29.880000px;}
.ws1_c00037{word-spacing:42.120000px;}
._1_c00037{margin-left:-1.080000px;}
._0_c00037{width:1.119960px;}
._2_c00037{width:5.904000px;}
.fc1_c00037{color:transparent;}
.fc0_c00037{color:rgb(0,0,0);}
.fs0_c00037{font-size:65.880000px;}
.fs1_c00037{font-size:72.000000px;}
.y0_c00037{bottom:0.000000px;}
.y8_c00037{bottom:632.838300px;}
.y7_c00037{bottom:663.888300px;}
.y6_c00037{bottom:694.938300px;}
.y5_c00037{bottom:725.988300px;}
.y4_c00037{bottom:757.038300px;}
.y3_c00037{bottom:788.088300px;}
.y2_c00037{bottom:850.188300px;}
.y1_c00037{bottom:1024.788600px;}
.h3_c00037{height:70.293960px;}
.h4_c00037{height:76.824000px;}
.h5_c00037{height:78.048000px;}
.h2_c00037{height:974.835000px;}
.h0_c00037{height:1262.835000px;}
.h1_c00037{height:1263.000000px;}
.w2_c00037{width:0.000000px;}
.w0_c00037{width:892.914000px;}
.w1_c00037{width:893.250000px;}
.x0_c00037{left:0.000000px;}
.x2_c00037{left:127.619250px;}
.x3_c00037{left:159.569250px;}
.x1_c00037{left:892.914000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls3_c00037{letter-spacing:-0.256000pt;}
.ls2_c00037{letter-spacing:-0.128000pt;}
.ls1_c00037{letter-spacing:-0.058560pt;}
.ls4_c00037{letter-spacing:0.000000pt;}
.ls0_c00037{letter-spacing:0.064000pt;}
.ls5_c00037{letter-spacing:0.128000pt;}
.ws0_c00037{word-spacing:-15.872000pt;}
.ws8_c00037{word-spacing:-0.128000pt;}
.wsa_c00037{word-spacing:-0.064000pt;}
.ws2_c00037{word-spacing:0.117120pt;}
.ws4_c00037{word-spacing:0.256000pt;}
.ws3_c00037{word-spacing:2.816000pt;}
.ws9_c00037{word-spacing:6.016000pt;}
.ws6_c00037{word-spacing:23.616000pt;}
.ws7_c00037{word-spacing:24.960000pt;}
.ws5_c00037{word-spacing:26.560000pt;}
.ws1_c00037{word-spacing:37.440000pt;}
._1_c00037{margin-left:-0.960000pt;}
._0_c00037{width:0.995520pt;}
._2_c00037{width:5.248000pt;}
.fs0_c00037{font-size:58.560000pt;}
.fs1_c00037{font-size:64.000000pt;}
.y0_c00037{bottom:0.000000pt;}
.y8_c00037{bottom:562.522933pt;}
.y7_c00037{bottom:590.122933pt;}
.y6_c00037{bottom:617.722933pt;}
.y5_c00037{bottom:645.322933pt;}
.y4_c00037{bottom:672.922933pt;}
.y3_c00037{bottom:700.522933pt;}
.y2_c00037{bottom:755.722933pt;}
.y1_c00037{bottom:910.923200pt;}
.h3_c00037{height:62.483520pt;}
.h4_c00037{height:68.288000pt;}
.h5_c00037{height:69.376000pt;}
.h2_c00037{height:866.520000pt;}
.h0_c00037{height:1122.520000pt;}
.h1_c00037{height:1122.666667pt;}
.w2_c00037{width:0.000000pt;}
.w0_c00037{width:793.701333pt;}
.w1_c00037{width:794.000000pt;}
.x0_c00037{left:0.000000pt;}
.x2_c00037{left:113.439333pt;}
.x3_c00037{left:141.839333pt;}
.x1_c00037{left:793.701333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_64611988e86fb3849af7e7ee.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00038;src:url('chunks/assets/font_a2bb978388c8d9d0a577f82a.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00038;src:url('chunks/assets/font_42de36e09eec77a0f5a63c05.woff2')format("woff");}.ff3_c00038{font-family:ff3_c00038;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00038;src:url('chunks/assets/font_a2bb978388c8d9d0a577f82a.woff2')format("woff");}.ff4_c00038{font-family:ff4_c00038;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00038{letter-spacing:-0.288000px;}
.ls2_c00038{letter-spacing:-0.144000px;}
.ls1_c00038{letter-spacing:-0.065880px;}
.ls4_c00038{letter-spacing:0.000000px;}
.ls0_c00038{letter-spacing:0.072000px;}
.ls5_c00038{letter-spacing:0.144000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00038{word-spacing:-17.856000px;}
.ws8_c00038{word-spacing:-0.144000px;}
.wsa_c00038{word-spacing:-0.072000px;}
.ws2_c00038{word-spacing:0.131760px;}
.ws4_c00038{word-spacing:0.288000px;}
.ws3_c00038{word-spacing:3.168000px;}
.ws9_c00038{word-spacing:6.768000px;}
.ws6_c00038{word-spacing:26.568000px;}
.ws7_c00038{word-spacing:28.080000px;}
.ws5_c00038{word-spacing:29.880000px;}
.ws1_c00038{word-spacing:42.120000px;}
._1_c00038{margin-left:-1.080000px;}
._0_c00038{width:1.119960px;}
._2_c00038{width:5.904000px;}
.fc1_c00038{color:transparent;}
.fc0_c00038{color:rgb(0,0,0);}
.fs0_c00038{font-size:65.880000px;}
.fs1_c00038{font-size:72.000000px;}
.y11_c00038{bottom:-351.540900px;}
.y10_c00038{bottom:-320.490900px;}
.yf_c00038{bottom:-289.440900px;}
.ye_c00038{bottom:-258.390900px;}
.yd_c00038{bottom:-227.340900px;}
.yc_c00038{bottom:-196.290900px;}
.yb_c00038{bottom:-134.190900px;}
.y0_c00038{bottom:0.000000px;}
.y8_c00038{bottom:632.838300px;}
.y7_c00038{bottom:663.888300px;}
.y6_c00038{bottom:694.938300px;}
.y5_c00038{bottom:725.988300px;}
.y4_c00038{bottom:757.038300px;}
.y3_c00038{bottom:788.088300px;}
.y2_c00038{bottom:850.188300px;}
.y1_c00038{bottom:1024.788600px;}
.ya_c00038{bottom:1100.835000px;}
.y9_c00038{bottom:1141.244250px;}
.h3_c00038{height:70.293960px;}
.h4_c00038{height:76.824000px;}
.h5_c00038{height:78.048000px;}
.h6_c00038{height:152.076000px;}
.h2_c00038{height:974.835000px;}
.h0_c00038{height:1262.835000px;}
.h1_c00038{height:1263.000000px;}
.w2_c00038{width:0.000000px;}
.w3_c00038{width:892.912500px;}
.w0_c00038{width:892.914000px;}
.w1_c00038{width:893.250000px;}
.x0_c00038{left:0.000000px;}
.x1_c00038{left:127.619850px;}
.x2_c00038{left:159.569850px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls3_c00038{letter-spacing:-0.256000pt;}
.ls2_c00038{letter-spacing:-0.128000pt;}
.ls1_c00038{letter-spacing:-0.058560pt;}
.ls4_c00038{letter-spacing:0.000000pt;}
.ls0_c00038{letter-spacing:0.064000pt;}
.ls5_c00038{letter-spacing:0.128000pt;}
.ws0_c00038{word-spacing:-15.872000pt;}
.ws8_c00038{word-spacing:-0.128000pt;}
.wsa_c00038{word-spacing:-0.064000pt;}
.ws2_c00038{word-spacing:0.117120pt;}
.ws4_c00038{word-spacing:0.256000pt;}
.ws3_c00038{word-spacing:2.816000pt;}
.ws9_c00038{word-spacing:6.016000pt;}
.ws6_c00038{word-spacing:23.616000pt;}
.ws7_c00038{word-spacing:24.960000pt;}
.ws5_c00038{word-spacing:26.560000pt;}
.ws1_c00038{word-spacing:37.440000pt;}
._1_c00038{margin-left:-0.960000pt;}
._0_c00038{width:0.995520pt;}
._2_c00038{width:5.248000pt;}
.fs0_c00038{font-size:58.560000pt;}
.fs1_c00038{font-size:64.000000pt;}
.y11_c00038{bottom:-312.480800pt;}
.y10_c00038{bottom:-284.880800pt;}
.yf_c00038{bottom:-257.280800pt;}
.ye_c00038{bottom:-229.680800pt;}
.yd_c00038{bottom:-202.080800pt;}
.yc_c00038{bottom:-174.480800pt;}
.yb_c00038{bottom:-119.280800pt;}
.y0_c00038{bottom:0.000000pt;}
.y8_c00038{bottom:562.522933pt;}
.y7_c00038{bottom:590.122933pt;}
.y6_c00038{bottom:617.722933pt;}
.y5_c00038{bottom:645.322933pt;}
.y4_c00038{bottom:672.922933pt;}
.y3_c00038{bottom:700.522933pt;}
.y2_c00038{bottom:755.722933pt;}
.y1_c00038{bottom:910.923200pt;}
.ya_c00038{bottom:978.520000pt;}
.y9_c00038{bottom:1014.439333pt;}
.h3_c00038{height:62.483520pt;}
.h4_c00038{height:68.288000pt;}
.h5_c00038{height:69.376000pt;}
.h6_c00038{height:135.178667pt;}
.h2_c00038{height:866.520000pt;}
.h0_c00038{height:1122.520000pt;}
.h1_c00038{height:1122.666667pt;}
.w2_c00038{width:0.000000pt;}
.w3_c00038{width:793.700000pt;}
.w0_c00038{width:793.701333pt;}
.w1_c00038{width:794.000000pt;}
.x0_c00038{left:0.000000pt;}
.x1_c00038{left:113.439867pt;}
.x2_c00038{left:141.839867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00039{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
}
.y0_c00039{bottom:0.000000px;}
.h0_c00039{height:1262.835000px;}
.h1_c00039{height:1263.000000px;}
.w0_c00039{width:892.914000px;}
.w1_c00039{width:893.250000px;}
.x0_c00039{left:0.000000px;}
@media print{
.y0_c00039{bottom:0.000000pt;}
.h0_c00039{height:1122.520000pt;}
.h1_c00039{height:1122.666667pt;}
.w0_c00039{width:793.701333pt;}
.w1_c00039{width:794.000000pt;}
.x0_c00039{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_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00040;src:url('chunks/assets/font_39a916a8e441b0e1bad0e23d.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00040;src:url('chunks/assets/font_9d16c143623f875e9c89af70.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00040;src:url('chunks/assets/font_e5280dcd54dea0c92e76a5d6.woff2')format("woff");}.ff4_c00040{font-family:ff4_c00040;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00040;src:url('chunks/assets/font_ef38c4049acd357ba7ac334a.woff2')format("woff");}.ff5_c00040{font-family:ff5_c00040;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00040{letter-spacing:-0.216000px;}
.ls7_c00040{letter-spacing:-0.065880px;}
.ls5_c00040{letter-spacing:0.000000px;}
.ls0_c00040{letter-spacing:0.072000px;}
.ls1_c00040{letter-spacing:0.144000px;}
.ls2_c00040{letter-spacing:0.197640px;}
.ls3_c00040{letter-spacing:16.325064px;}
.ls4_c00040{letter-spacing:18.792000px;}
.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;}
}
.ws3_c00040{word-spacing:-18.072000px;}
.ws5_c00040{word-spacing:-18.000000px;}
.ws8_c00040{word-spacing:-0.131760px;}
.ws9_c00040{word-spacing:-0.072000px;}
.ws7_c00040{word-spacing:0.000000px;}
.ws1e_c00040{word-spacing:0.131760px;}
.wsb_c00040{word-spacing:0.216000px;}
.ws21_c00040{word-spacing:0.576000px;}
.ws20_c00040{word-spacing:0.720000px;}
.wsd_c00040{word-spacing:1.368000px;}
.ws11_c00040{word-spacing:1.728000px;}
.ws10_c00040{word-spacing:2.160000px;}
.ws12_c00040{word-spacing:2.448000px;}
.ws13_c00040{word-spacing:2.520000px;}
.ws6_c00040{word-spacing:3.117600px;}
.ws18_c00040{word-spacing:3.528000px;}
.wsf_c00040{word-spacing:3.960000px;}
.ws4_c00040{word-spacing:4.032000px;}
.wse_c00040{word-spacing:4.320000px;}
.ws1a_c00040{word-spacing:4.809240px;}
.wsc_c00040{word-spacing:5.400000px;}
.ws1d_c00040{word-spacing:6.719760px;}
.ws15_c00040{word-spacing:6.768000px;}
.ws1c_c00040{word-spacing:7.839720px;}
.ws2_c00040{word-spacing:10.231200px;}
.wsa_c00040{word-spacing:10.368000px;}
.ws1_c00040{word-spacing:10.620000px;}
.ws19_c00040{word-spacing:10.656000px;}
.ws1f_c00040{word-spacing:13.608000px;}
.ws16_c00040{word-spacing:14.328000px;}
.ws17_c00040{word-spacing:14.400000px;}
.ws14_c00040{word-spacing:16.128000px;}
.ws1b_c00040{word-spacing:24.639120px;}
.ws0_c00040{word-spacing:36.000000px;}
._0_c00040{margin-left:-1.022400px;}
._2_c00040{width:1.008000px;}
._1_c00040{width:11.800800px;}
.fc1_c00040{color:rgb(0,0,0);}
.fc0_c00040{color:rgb(35,31,32);}
.fs1_c00040{font-size:65.880000px;}
.fs0_c00040{font-size:72.000000px;}
.y0_c00040{bottom:0.000000px;}
.y1_c00040{bottom:61.748550px;}
.y1d_c00040{bottom:190.484400px;}
.y1c_c00040{bottom:221.534400px;}
.y1b_c00040{bottom:252.584400px;}
.y1a_c00040{bottom:313.336110px;}
.y19_c00040{bottom:341.680980px;}
.y18_c00040{bottom:370.124670px;}
.y17_c00040{bottom:398.650710px;}
.y16_c00040{bottom:427.094400px;}
.y15_c00040{bottom:488.024400px;}
.y14_c00040{bottom:519.074400px;}
.y13_c00040{bottom:550.124400px;}
.y12_c00040{bottom:581.174400px;}
.y11_c00040{bottom:643.274400px;}
.y10_c00040{bottom:674.324400px;}
.yf_c00040{bottom:705.374400px;}
.ye_c00040{bottom:736.424400px;}
.yd_c00040{bottom:798.434400px;}
.yc_c00040{bottom:829.484400px;}
.yb_c00040{bottom:860.534400px;}
.ya_c00040{bottom:891.584400px;}
.y9_c00040{bottom:922.634400px;}
.y8_c00040{bottom:984.734400px;}
.y7_c00040{bottom:1015.784400px;}
.y6_c00040{bottom:1046.834400px;}
.y5_c00040{bottom:1077.884400px;}
.y4_c00040{bottom:1139.804400px;}
.y3_c00040{bottom:1173.915120px;}
.y2_c00040{bottom:1194.074400px;}
.h2_c00040{height:50.400000px;}
.h3_c00040{height:54.331699px;}
.h6_c00040{height:71.413920px;}
.h4_c00040{height:76.824000px;}
.h5_c00040{height:78.048000px;}
.h0_c00040{height:1262.835000px;}
.h1_c00040{height:1263.000000px;}
.w0_c00040{width:892.914000px;}
.w1_c00040{width:893.250000px;}
.x0_c00040{left:0.000000px;}
.x3_c00040{left:127.618740px;}
.x4_c00040{left:159.570000px;}
.x2_c00040{left:701.730000px;}
.x1_c00040{left:804.366150px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls6_c00040{letter-spacing:-0.192000pt;}
.ls7_c00040{letter-spacing:-0.058560pt;}
.ls5_c00040{letter-spacing:0.000000pt;}
.ls0_c00040{letter-spacing:0.064000pt;}
.ls1_c00040{letter-spacing:0.128000pt;}
.ls2_c00040{letter-spacing:0.175680pt;}
.ls3_c00040{letter-spacing:14.511168pt;}
.ls4_c00040{letter-spacing:16.704000pt;}
.ws3_c00040{word-spacing:-16.064000pt;}
.ws5_c00040{word-spacing:-16.000000pt;}
.ws8_c00040{word-spacing:-0.117120pt;}
.ws9_c00040{word-spacing:-0.064000pt;}
.ws7_c00040{word-spacing:0.000000pt;}
.ws1e_c00040{word-spacing:0.117120pt;}
.wsb_c00040{word-spacing:0.192000pt;}
.ws21_c00040{word-spacing:0.512000pt;}
.ws20_c00040{word-spacing:0.640000pt;}
.wsd_c00040{word-spacing:1.216000pt;}
.ws11_c00040{word-spacing:1.536000pt;}
.ws10_c00040{word-spacing:1.920000pt;}
.ws12_c00040{word-spacing:2.176000pt;}
.ws13_c00040{word-spacing:2.240000pt;}
.ws6_c00040{word-spacing:2.771200pt;}
.ws18_c00040{word-spacing:3.136000pt;}
.wsf_c00040{word-spacing:3.520000pt;}
.ws4_c00040{word-spacing:3.584000pt;}
.wse_c00040{word-spacing:3.840000pt;}
.ws1a_c00040{word-spacing:4.274880pt;}
.wsc_c00040{word-spacing:4.800000pt;}
.ws1d_c00040{word-spacing:5.973120pt;}
.ws15_c00040{word-spacing:6.016000pt;}
.ws1c_c00040{word-spacing:6.968640pt;}
.ws2_c00040{word-spacing:9.094400pt;}
.wsa_c00040{word-spacing:9.216000pt;}
.ws1_c00040{word-spacing:9.440000pt;}
.ws19_c00040{word-spacing:9.472000pt;}
.ws1f_c00040{word-spacing:12.096000pt;}
.ws16_c00040{word-spacing:12.736000pt;}
.ws17_c00040{word-spacing:12.800000pt;}
.ws14_c00040{word-spacing:14.336000pt;}
.ws1b_c00040{word-spacing:21.901440pt;}
.ws0_c00040{word-spacing:32.000000pt;}
._0_c00040{margin-left:-0.908800pt;}
._2_c00040{width:0.896000pt;}
._1_c00040{width:10.489600pt;}
.fs1_c00040{font-size:58.560000pt;}
.fs0_c00040{font-size:64.000000pt;}
.y0_c00040{bottom:0.000000pt;}
.y1_c00040{bottom:54.887600pt;}
.y1d_c00040{bottom:169.319467pt;}
.y1c_c00040{bottom:196.919467pt;}
.y1b_c00040{bottom:224.519467pt;}
.y1a_c00040{bottom:278.520987pt;}
.y19_c00040{bottom:303.716427pt;}
.y18_c00040{bottom:328.999707pt;}
.y17_c00040{bottom:354.356187pt;}
.y16_c00040{bottom:379.639467pt;}
.y15_c00040{bottom:433.799467pt;}
.y14_c00040{bottom:461.399467pt;}
.y13_c00040{bottom:488.999467pt;}
.y12_c00040{bottom:516.599467pt;}
.y11_c00040{bottom:571.799467pt;}
.y10_c00040{bottom:599.399467pt;}
.yf_c00040{bottom:626.999467pt;}
.ye_c00040{bottom:654.599467pt;}
.yd_c00040{bottom:709.719467pt;}
.yc_c00040{bottom:737.319467pt;}
.yb_c00040{bottom:764.919467pt;}
.ya_c00040{bottom:792.519467pt;}
.y9_c00040{bottom:820.119467pt;}
.y8_c00040{bottom:875.319467pt;}
.y7_c00040{bottom:902.919467pt;}
.y6_c00040{bottom:930.519467pt;}
.y5_c00040{bottom:958.119467pt;}
.y4_c00040{bottom:1013.159467pt;}
.y3_c00040{bottom:1043.480107pt;}
.y2_c00040{bottom:1061.399467pt;}
.h2_c00040{height:44.800000pt;}
.h3_c00040{height:48.294844pt;}
.h6_c00040{height:63.479040pt;}
.h4_c00040{height:68.288000pt;}
.h5_c00040{height:69.376000pt;}
.h0_c00040{height:1122.520000pt;}
.h1_c00040{height:1122.666667pt;}
.w0_c00040{width:793.701333pt;}
.w1_c00040{width:794.000000pt;}
.x0_c00040{left:0.000000pt;}
.x3_c00040{left:113.438880pt;}
.x4_c00040{left:141.840000pt;}
.x2_c00040{left:623.760000pt;}
.x1_c00040{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00041;src:url('chunks/assets/font_db4f877f6b4cc6a1668aee30.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00041;src:url('chunks/assets/font_edd0dcda20b2fa2b0f6565a2.woff2')format("woff");}.ff3_c00041{font-family:ff3_c00041;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00041;src:url('chunks/assets/font_3db217412d12b12116b874f4.woff2')format("woff");}.ff4_c00041{font-family:ff4_c00041;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00041{letter-spacing:-0.360000px;}
.ls1_c00041{letter-spacing:0.000000px;}
.ls0_c00041{letter-spacing:0.072000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00041{word-spacing:-18.000000px;}
.ws19_c00041{word-spacing:-0.432000px;}
.ws3_c00041{word-spacing:-0.131760px;}
.wsf_c00041{word-spacing:-0.072000px;}
.ws2_c00041{word-spacing:0.000000px;}
.ws14_c00041{word-spacing:0.360000px;}
.ws10_c00041{word-spacing:1.008000px;}
.wsa_c00041{word-spacing:1.440000px;}
.ws6_c00041{word-spacing:1.728000px;}
.ws7_c00041{word-spacing:1.800000px;}
.ws1d_c00041{word-spacing:3.168000px;}
.ws16_c00041{word-spacing:3.528000px;}
.wsb_c00041{word-spacing:3.600000px;}
.ws21_c00041{word-spacing:4.104000px;}
.ws1_c00041{word-spacing:4.320000px;}
.ws12_c00041{word-spacing:4.608000px;}
.ws18_c00041{word-spacing:4.680000px;}
.wsc_c00041{word-spacing:5.328000px;}
.ws17_c00041{word-spacing:5.976000px;}
.ws9_c00041{word-spacing:7.200000px;}
.ws5_c00041{word-spacing:7.560000px;}
.ws15_c00041{word-spacing:8.640000px;}
.wse_c00041{word-spacing:8.928000px;}
.wsd_c00041{word-spacing:9.000000px;}
.ws13_c00041{word-spacing:11.160000px;}
.ws11_c00041{word-spacing:12.528000px;}
.ws4_c00041{word-spacing:12.600000px;}
.ws20_c00041{word-spacing:14.040000px;}
.ws1e_c00041{word-spacing:14.328000px;}
.ws1f_c00041{word-spacing:14.400000px;}
.ws1c_c00041{word-spacing:16.848000px;}
.ws1b_c00041{word-spacing:16.920000px;}
.ws8_c00041{word-spacing:17.208000px;}
.ws1a_c00041{word-spacing:18.000000px;}
._1_c00041{margin-left:-1.008000px;}
._0_c00041{width:1.054080px;}
.fc1_c00041{color:rgb(0,0,0);}
.fc0_c00041{color:rgb(35,31,32);}
.fs1_c00041{font-size:65.880000px;}
.fs0_c00041{font-size:72.000000px;}
.y0_c00041{bottom:0.000000px;}
.y1_c00041{bottom:61.748550px;}
.y20_c00041{bottom:146.474400px;}
.y1f_c00041{bottom:177.524400px;}
.y1e_c00041{bottom:208.574400px;}
.y1d_c00041{bottom:239.624400px;}
.y1c_c00041{bottom:270.674400px;}
.y1b_c00041{bottom:301.724400px;}
.y1a_c00041{bottom:363.824400px;}
.y19_c00041{bottom:394.874400px;}
.y18_c00041{bottom:425.924400px;}
.y17_c00041{bottom:456.974400px;}
.y16_c00041{bottom:488.024400px;}
.y15_c00041{bottom:550.124400px;}
.y14_c00041{bottom:581.174400px;}
.y13_c00041{bottom:612.224400px;}
.y12_c00041{bottom:643.274400px;}
.y11_c00041{bottom:674.324400px;}
.y10_c00041{bottom:705.374400px;}
.yf_c00041{bottom:736.424400px;}
.ye_c00041{bottom:798.434400px;}
.yd_c00041{bottom:829.484400px;}
.yc_c00041{bottom:860.534400px;}
.yb_c00041{bottom:891.584400px;}
.ya_c00041{bottom:922.634400px;}
.y9_c00041{bottom:953.684400px;}
.y8_c00041{bottom:1015.784400px;}
.y7_c00041{bottom:1046.834400px;}
.y6_c00041{bottom:1077.884400px;}
.y5_c00041{bottom:1108.934400px;}
.y4_c00041{bottom:1139.984400px;}
.y3_c00041{bottom:1173.915120px;}
.y2_c00041{bottom:1194.074400px;}
.h2_c00041{height:50.400000px;}
.h3_c00041{height:54.331699px;}
.h4_c00041{height:76.824000px;}
.h5_c00041{height:78.048000px;}
.h0_c00041{height:1262.835000px;}
.h1_c00041{height:1263.000000px;}
.w0_c00041{width:892.914000px;}
.w1_c00041{width:893.250000px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:54.000000px;}
.x2_c00041{left:127.620000px;}
.x3_c00041{left:159.570000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls2_c00041{letter-spacing:-0.320000pt;}
.ls1_c00041{letter-spacing:0.000000pt;}
.ls0_c00041{letter-spacing:0.064000pt;}
.ws0_c00041{word-spacing:-16.000000pt;}
.ws19_c00041{word-spacing:-0.384000pt;}
.ws3_c00041{word-spacing:-0.117120pt;}
.wsf_c00041{word-spacing:-0.064000pt;}
.ws2_c00041{word-spacing:0.000000pt;}
.ws14_c00041{word-spacing:0.320000pt;}
.ws10_c00041{word-spacing:0.896000pt;}
.wsa_c00041{word-spacing:1.280000pt;}
.ws6_c00041{word-spacing:1.536000pt;}
.ws7_c00041{word-spacing:1.600000pt;}
.ws1d_c00041{word-spacing:2.816000pt;}
.ws16_c00041{word-spacing:3.136000pt;}
.wsb_c00041{word-spacing:3.200000pt;}
.ws21_c00041{word-spacing:3.648000pt;}
.ws1_c00041{word-spacing:3.840000pt;}
.ws12_c00041{word-spacing:4.096000pt;}
.ws18_c00041{word-spacing:4.160000pt;}
.wsc_c00041{word-spacing:4.736000pt;}
.ws17_c00041{word-spacing:5.312000pt;}
.ws9_c00041{word-spacing:6.400000pt;}
.ws5_c00041{word-spacing:6.720000pt;}
.ws15_c00041{word-spacing:7.680000pt;}
.wse_c00041{word-spacing:7.936000pt;}
.wsd_c00041{word-spacing:8.000000pt;}
.ws13_c00041{word-spacing:9.920000pt;}
.ws11_c00041{word-spacing:11.136000pt;}
.ws4_c00041{word-spacing:11.200000pt;}
.ws20_c00041{word-spacing:12.480000pt;}
.ws1e_c00041{word-spacing:12.736000pt;}
.ws1f_c00041{word-spacing:12.800000pt;}
.ws1c_c00041{word-spacing:14.976000pt;}
.ws1b_c00041{word-spacing:15.040000pt;}
.ws8_c00041{word-spacing:15.296000pt;}
.ws1a_c00041{word-spacing:16.000000pt;}
._1_c00041{margin-left:-0.896000pt;}
._0_c00041{width:0.936960pt;}
.fs1_c00041{font-size:58.560000pt;}
.fs0_c00041{font-size:64.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y1_c00041{bottom:54.887600pt;}
.y20_c00041{bottom:130.199467pt;}
.y1f_c00041{bottom:157.799467pt;}
.y1e_c00041{bottom:185.399467pt;}
.y1d_c00041{bottom:212.999467pt;}
.y1c_c00041{bottom:240.599467pt;}
.y1b_c00041{bottom:268.199467pt;}
.y1a_c00041{bottom:323.399467pt;}
.y19_c00041{bottom:350.999467pt;}
.y18_c00041{bottom:378.599467pt;}
.y17_c00041{bottom:406.199467pt;}
.y16_c00041{bottom:433.799467pt;}
.y15_c00041{bottom:488.999467pt;}
.y14_c00041{bottom:516.599467pt;}
.y13_c00041{bottom:544.199467pt;}
.y12_c00041{bottom:571.799467pt;}
.y11_c00041{bottom:599.399467pt;}
.y10_c00041{bottom:626.999467pt;}
.yf_c00041{bottom:654.599467pt;}
.ye_c00041{bottom:709.719467pt;}
.yd_c00041{bottom:737.319467pt;}
.yc_c00041{bottom:764.919467pt;}
.yb_c00041{bottom:792.519467pt;}
.ya_c00041{bottom:820.119467pt;}
.y9_c00041{bottom:847.719467pt;}
.y8_c00041{bottom:902.919467pt;}
.y7_c00041{bottom:930.519467pt;}
.y6_c00041{bottom:958.119467pt;}
.y5_c00041{bottom:985.719467pt;}
.y4_c00041{bottom:1013.319467pt;}
.y3_c00041{bottom:1043.480107pt;}
.y2_c00041{bottom:1061.399467pt;}
.h2_c00041{height:44.800000pt;}
.h3_c00041{height:48.294844pt;}
.h4_c00041{height:68.288000pt;}
.h5_c00041{height:69.376000pt;}
.h0_c00041{height:1122.520000pt;}
.h1_c00041{height:1122.666667pt;}
.w0_c00041{width:793.701333pt;}
.w1_c00041{width:794.000000pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:48.000000pt;}
.x2_c00041{left:113.440000pt;}
.x3_c00041{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00042;src:url('chunks/assets/font_1ccc62af6c7bfee018c2965b.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00042;src:url('chunks/assets/font_ca5299ebe09d9df92085834a.woff2')format("woff");}.ff3_c00042{font-family:ff3_c00042;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00042;src:url('chunks/assets/font_5e521db7d7ccabf72600753c.woff2')format("woff");}.ff4_c00042{font-family:ff4_c00042;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00042;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00042{font-family:ff5_c00042;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00042;src:url('chunks/assets/font_83cfdfba00db3da8e50f3f7b.woff2')format("woff");}.ff6_c00042{font-family:ff6_c00042;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00042;src:url('chunks/assets/font_6b3d721d66e8f52eb82dcba3.woff2')format("woff");}.ff7_c00042{font-family:ff7_c00042;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00042;src:url('chunks/assets/font_a8427415bc25ce32250e9c5e.woff2')format("woff");}.ff8_c00042{font-family:ff8_c00042;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00042;src:url('chunks/assets/font_017fa1b6ac97af169b0a5cd3.woff2')format("woff");}.ff9_c00042{font-family:ff9_c00042;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00042{letter-spacing:-0.576000px;}
.ls3_c00042{letter-spacing:-0.360000px;}
.ls4_c00042{letter-spacing:-0.072000px;}
.ls5_c00042{letter-spacing:-0.065880px;}
.ls2_c00042{letter-spacing:0.000000px;}
.ls0_c00042{letter-spacing:0.072000px;}
.ls1_c00042{letter-spacing:0.144000px;}
.ls6_c00042{letter-spacing:0.197640px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00042{word-spacing:-18.072000px;}
.ws0_c00042{word-spacing:-18.000000px;}
.ws3_c00042{word-spacing:-0.648000px;}
.ws1f_c00042{word-spacing:-0.432000px;}
.wsa_c00042{word-spacing:-0.131760px;}
.ws8_c00042{word-spacing:-0.072000px;}
.ws7_c00042{word-spacing:0.000000px;}
.ws2c_c00042{word-spacing:0.065880px;}
.ws30_c00042{word-spacing:0.131760px;}
.ws1a_c00042{word-spacing:0.360000px;}
.ws16_c00042{word-spacing:1.008000px;}
.ws11_c00042{word-spacing:1.440000px;}
.wsd_c00042{word-spacing:1.728000px;}
.wse_c00042{word-spacing:1.800000px;}
.ws2b_c00042{word-spacing:2.701080px;}
.ws34_c00042{word-spacing:3.096000px;}
.ws23_c00042{word-spacing:3.168000px;}
.ws6_c00042{word-spacing:3.240000px;}
.ws1c_c00042{word-spacing:3.528000px;}
.ws12_c00042{word-spacing:3.600000px;}
.ws9_c00042{word-spacing:3.672000px;}
.ws38_c00042{word-spacing:3.888000px;}
.ws37_c00042{word-spacing:3.960000px;}
.ws27_c00042{word-spacing:4.104000px;}
.ws1_c00042{word-spacing:4.320000px;}
.ws18_c00042{word-spacing:4.608000px;}
.ws1e_c00042{word-spacing:4.680000px;}
.ws2e_c00042{word-spacing:4.941000px;}
.ws5_c00042{word-spacing:5.040000px;}
.ws13_c00042{word-spacing:5.328000px;}
.ws35_c00042{word-spacing:5.400000px;}
.ws1d_c00042{word-spacing:5.976000px;}
.ws39_c00042{word-spacing:6.048000px;}
.ws3a_c00042{word-spacing:6.480000px;}
.ws10_c00042{word-spacing:7.200000px;}
.ws32_c00042{word-spacing:7.488000px;}
.wsc_c00042{word-spacing:7.560000px;}
.ws1b_c00042{word-spacing:8.640000px;}
.ws15_c00042{word-spacing:8.928000px;}
.ws14_c00042{word-spacing:9.000000px;}
.ws28_c00042{word-spacing:10.800000px;}
.ws2_c00042{word-spacing:11.016000px;}
.ws19_c00042{word-spacing:11.160000px;}
.ws36_c00042{word-spacing:11.376000px;}
.ws31_c00042{word-spacing:11.448000px;}
.ws17_c00042{word-spacing:12.528000px;}
.wsb_c00042{word-spacing:12.600000px;}
.ws3c_c00042{word-spacing:12.816000px;}
.ws2d_c00042{word-spacing:12.846600px;}
.ws3b_c00042{word-spacing:13.248000px;}
.ws2a_c00042{word-spacing:13.968000px;}
.ws26_c00042{word-spacing:14.040000px;}
.ws2f_c00042{word-spacing:14.164200px;}
.ws24_c00042{word-spacing:14.328000px;}
.ws25_c00042{word-spacing:14.400000px;}
.ws22_c00042{word-spacing:16.848000px;}
.ws21_c00042{word-spacing:16.920000px;}
.wsf_c00042{word-spacing:17.208000px;}
.ws3d_c00042{word-spacing:17.280000px;}
.ws20_c00042{word-spacing:18.000000px;}
.ws29_c00042{word-spacing:20.880000px;}
.ws33_c00042{word-spacing:21.960000px;}
._1_c00042{margin-left:-1.008000px;}
._0_c00042{width:1.054080px;}
._2_c00042{width:7.848000px;}
._4_c00042{width:22.371840px;}
._3_c00042{width:122.400000px;}
.fc2_c00042{color:transparent;}
.fc1_c00042{color:rgb(0,0,0);}
.fc0_c00042{color:rgb(35,31,32);}
.fs1_c00042{font-size:65.880000px;}
.fs0_c00042{font-size:72.000000px;}
.y0_c00042{bottom:0.000000px;}
.y1_c00042{bottom:61.748550px;}
.y38_c00042{bottom:128.384100px;}
.y20_c00042{bottom:146.474400px;}
.y37_c00042{bottom:159.434100px;}
.y1f_c00042{bottom:177.524400px;}
.y36_c00042{bottom:190.484100px;}
.y1e_c00042{bottom:208.574400px;}
.y1d_c00042{bottom:239.624400px;}
.y35_c00042{bottom:252.584100px;}
.y1c_c00042{bottom:270.674400px;}
.y34_c00042{bottom:283.634100px;}
.y1b_c00042{bottom:301.724400px;}
.y33_c00042{bottom:314.684100px;}
.y32_c00042{bottom:345.734100px;}
.y1a_c00042{bottom:363.824400px;}
.y31_c00042{bottom:376.784100px;}
.y19_c00042{bottom:394.874400px;}
.y30_c00042{bottom:407.834100px;}
.y18_c00042{bottom:425.924400px;}
.y17_c00042{bottom:456.974400px;}
.y2f_c00042{bottom:469.934100px;}
.y16_c00042{bottom:488.024400px;}
.y2e_c00042{bottom:500.984100px;}
.y2d_c00042{bottom:531.944100px;}
.y15_c00042{bottom:550.124400px;}
.y2c_c00042{bottom:562.994100px;}
.y14_c00042{bottom:581.174400px;}
.y13_c00042{bottom:612.224400px;}
.y2b_c00042{bottom:624.914100px;}
.y12_c00042{bottom:643.274400px;}
.y11_c00042{bottom:674.324400px;}
.y2a_c00042{bottom:687.194100px;}
.y10_c00042{bottom:705.374400px;}
.y29_c00042{bottom:718.244100px;}
.yf_c00042{bottom:736.424400px;}
.y28_c00042{bottom:749.294100px;}
.y27_c00042{bottom:780.344100px;}
.ye_c00042{bottom:798.434400px;}
.y26_c00042{bottom:811.394100px;}
.yd_c00042{bottom:829.484400px;}
.yc_c00042{bottom:860.534400px;}
.y25_c00042{bottom:872.129490px;}
.yb_c00042{bottom:891.584400px;}
.y24_c00042{bottom:900.573180px;}
.ya_c00042{bottom:922.634400px;}
.y23_c00042{bottom:929.016870px;}
.y9_c00042{bottom:953.684400px;}
.y22_c00042{bottom:957.460560px;}
.y21_c00042{bottom:985.904250px;}
.y8_c00042{bottom:1015.784400px;}
.y7_c00042{bottom:1046.834400px;}
.y6_c00042{bottom:1077.884400px;}
.y5_c00042{bottom:1108.934400px;}
.y4_c00042{bottom:1139.984400px;}
.y3_c00042{bottom:1173.915120px;}
.y2_c00042{bottom:1194.074400px;}
.h2_c00042{height:50.400000px;}
.h3_c00042{height:54.331699px;}
.h6_c00042{height:71.413920px;}
.h4_c00042{height:76.824000px;}
.h5_c00042{height:78.048000px;}
.h0_c00042{height:1262.835000px;}
.h1_c00042{height:1263.000000px;}
.w2_c00042{width:0.000000px;}
.w3_c00042{width:0.066000px;}
.w0_c00042{width:892.914000px;}
.w1_c00042{width:893.250000px;}
.x1_c00042{left:-838.913400px;}
.x2_c00042{left:-765.293400px;}
.x3_c00042{left:-733.343400px;}
.x0_c00042{left:0.000000px;}
.x6_c00042{left:127.618740px;}
.x7_c00042{left:159.570000px;}
.x5_c00042{left:701.730000px;}
.x4_c00042{left:804.366150px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls7_c00042{letter-spacing:-0.512000pt;}
.ls3_c00042{letter-spacing:-0.320000pt;}
.ls4_c00042{letter-spacing:-0.064000pt;}
.ls5_c00042{letter-spacing:-0.058560pt;}
.ls2_c00042{letter-spacing:0.000000pt;}
.ls0_c00042{letter-spacing:0.064000pt;}
.ls1_c00042{letter-spacing:0.128000pt;}
.ls6_c00042{letter-spacing:0.175680pt;}
.ws4_c00042{word-spacing:-16.064000pt;}
.ws0_c00042{word-spacing:-16.000000pt;}
.ws3_c00042{word-spacing:-0.576000pt;}
.ws1f_c00042{word-spacing:-0.384000pt;}
.wsa_c00042{word-spacing:-0.117120pt;}
.ws8_c00042{word-spacing:-0.064000pt;}
.ws7_c00042{word-spacing:0.000000pt;}
.ws2c_c00042{word-spacing:0.058560pt;}
.ws30_c00042{word-spacing:0.117120pt;}
.ws1a_c00042{word-spacing:0.320000pt;}
.ws16_c00042{word-spacing:0.896000pt;}
.ws11_c00042{word-spacing:1.280000pt;}
.wsd_c00042{word-spacing:1.536000pt;}
.wse_c00042{word-spacing:1.600000pt;}
.ws2b_c00042{word-spacing:2.400960pt;}
.ws34_c00042{word-spacing:2.752000pt;}
.ws23_c00042{word-spacing:2.816000pt;}
.ws6_c00042{word-spacing:2.880000pt;}
.ws1c_c00042{word-spacing:3.136000pt;}
.ws12_c00042{word-spacing:3.200000pt;}
.ws9_c00042{word-spacing:3.264000pt;}
.ws38_c00042{word-spacing:3.456000pt;}
.ws37_c00042{word-spacing:3.520000pt;}
.ws27_c00042{word-spacing:3.648000pt;}
.ws1_c00042{word-spacing:3.840000pt;}
.ws18_c00042{word-spacing:4.096000pt;}
.ws1e_c00042{word-spacing:4.160000pt;}
.ws2e_c00042{word-spacing:4.392000pt;}
.ws5_c00042{word-spacing:4.480000pt;}
.ws13_c00042{word-spacing:4.736000pt;}
.ws35_c00042{word-spacing:4.800000pt;}
.ws1d_c00042{word-spacing:5.312000pt;}
.ws39_c00042{word-spacing:5.376000pt;}
.ws3a_c00042{word-spacing:5.760000pt;}
.ws10_c00042{word-spacing:6.400000pt;}
.ws32_c00042{word-spacing:6.656000pt;}
.wsc_c00042{word-spacing:6.720000pt;}
.ws1b_c00042{word-spacing:7.680000pt;}
.ws15_c00042{word-spacing:7.936000pt;}
.ws14_c00042{word-spacing:8.000000pt;}
.ws28_c00042{word-spacing:9.600000pt;}
.ws2_c00042{word-spacing:9.792000pt;}
.ws19_c00042{word-spacing:9.920000pt;}
.ws36_c00042{word-spacing:10.112000pt;}
.ws31_c00042{word-spacing:10.176000pt;}
.ws17_c00042{word-spacing:11.136000pt;}
.wsb_c00042{word-spacing:11.200000pt;}
.ws3c_c00042{word-spacing:11.392000pt;}
.ws2d_c00042{word-spacing:11.419200pt;}
.ws3b_c00042{word-spacing:11.776000pt;}
.ws2a_c00042{word-spacing:12.416000pt;}
.ws26_c00042{word-spacing:12.480000pt;}
.ws2f_c00042{word-spacing:12.590400pt;}
.ws24_c00042{word-spacing:12.736000pt;}
.ws25_c00042{word-spacing:12.800000pt;}
.ws22_c00042{word-spacing:14.976000pt;}
.ws21_c00042{word-spacing:15.040000pt;}
.wsf_c00042{word-spacing:15.296000pt;}
.ws3d_c00042{word-spacing:15.360000pt;}
.ws20_c00042{word-spacing:16.000000pt;}
.ws29_c00042{word-spacing:18.560000pt;}
.ws33_c00042{word-spacing:19.520000pt;}
._1_c00042{margin-left:-0.896000pt;}
._0_c00042{width:0.936960pt;}
._2_c00042{width:6.976000pt;}
._4_c00042{width:19.886080pt;}
._3_c00042{width:108.800000pt;}
.fs1_c00042{font-size:58.560000pt;}
.fs0_c00042{font-size:64.000000pt;}
.y0_c00042{bottom:0.000000pt;}
.y1_c00042{bottom:54.887600pt;}
.y38_c00042{bottom:114.119200pt;}
.y20_c00042{bottom:130.199467pt;}
.y37_c00042{bottom:141.719200pt;}
.y1f_c00042{bottom:157.799467pt;}
.y36_c00042{bottom:169.319200pt;}
.y1e_c00042{bottom:185.399467pt;}
.y1d_c00042{bottom:212.999467pt;}
.y35_c00042{bottom:224.519200pt;}
.y1c_c00042{bottom:240.599467pt;}
.y34_c00042{bottom:252.119200pt;}
.y1b_c00042{bottom:268.199467pt;}
.y33_c00042{bottom:279.719200pt;}
.y32_c00042{bottom:307.319200pt;}
.y1a_c00042{bottom:323.399467pt;}
.y31_c00042{bottom:334.919200pt;}
.y19_c00042{bottom:350.999467pt;}
.y30_c00042{bottom:362.519200pt;}
.y18_c00042{bottom:378.599467pt;}
.y17_c00042{bottom:406.199467pt;}
.y2f_c00042{bottom:417.719200pt;}
.y16_c00042{bottom:433.799467pt;}
.y2e_c00042{bottom:445.319200pt;}
.y2d_c00042{bottom:472.839200pt;}
.y15_c00042{bottom:488.999467pt;}
.y2c_c00042{bottom:500.439200pt;}
.y14_c00042{bottom:516.599467pt;}
.y13_c00042{bottom:544.199467pt;}
.y2b_c00042{bottom:555.479200pt;}
.y12_c00042{bottom:571.799467pt;}
.y11_c00042{bottom:599.399467pt;}
.y2a_c00042{bottom:610.839200pt;}
.y10_c00042{bottom:626.999467pt;}
.y29_c00042{bottom:638.439200pt;}
.yf_c00042{bottom:654.599467pt;}
.y28_c00042{bottom:666.039200pt;}
.y27_c00042{bottom:693.639200pt;}
.ye_c00042{bottom:709.719467pt;}
.y26_c00042{bottom:721.239200pt;}
.yd_c00042{bottom:737.319467pt;}
.yc_c00042{bottom:764.919467pt;}
.y25_c00042{bottom:775.226213pt;}
.yb_c00042{bottom:792.519467pt;}
.y24_c00042{bottom:800.509493pt;}
.ya_c00042{bottom:820.119467pt;}
.y23_c00042{bottom:825.792773pt;}
.y9_c00042{bottom:847.719467pt;}
.y22_c00042{bottom:851.076053pt;}
.y21_c00042{bottom:876.359333pt;}
.y8_c00042{bottom:902.919467pt;}
.y7_c00042{bottom:930.519467pt;}
.y6_c00042{bottom:958.119467pt;}
.y5_c00042{bottom:985.719467pt;}
.y4_c00042{bottom:1013.319467pt;}
.y3_c00042{bottom:1043.480107pt;}
.y2_c00042{bottom:1061.399467pt;}
.h2_c00042{height:44.800000pt;}
.h3_c00042{height:48.294844pt;}
.h6_c00042{height:63.479040pt;}
.h4_c00042{height:68.288000pt;}
.h5_c00042{height:69.376000pt;}
.h0_c00042{height:1122.520000pt;}
.h1_c00042{height:1122.666667pt;}
.w2_c00042{width:0.000000pt;}
.w3_c00042{width:0.058667pt;}
.w0_c00042{width:793.701333pt;}
.w1_c00042{width:794.000000pt;}
.x1_c00042{left:-745.700800pt;}
.x2_c00042{left:-680.260800pt;}
.x3_c00042{left:-651.860800pt;}
.x0_c00042{left:0.000000pt;}
.x6_c00042{left:113.438880pt;}
.x7_c00042{left:141.840000pt;}
.x5_c00042{left:623.760000pt;}
.x4_c00042{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00043;src:url('chunks/assets/font_281fb15c839baab3b5421c1e.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00043;src:url('chunks/assets/font_cee99f685027e165495e9841.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00043;src:url('chunks/assets/font_7b97ee74ca13368bd3eadb70.woff2')format("woff");}.ff4_c00043{font-family:ff4_c00043;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00043{letter-spacing:-0.576000px;}
.ls9_c00043{letter-spacing:-0.288000px;}
.ls8_c00043{letter-spacing:-0.072000px;}
.ls6_c00043{letter-spacing:0.000000px;}
.ls1_c00043{letter-spacing:0.072000px;}
.ls0_c00043{letter-spacing:0.144000px;}
.ls2_c00043{letter-spacing:23.472000px;}
.ls4_c00043{letter-spacing:23.760000px;}
.ls3_c00043{letter-spacing:25.920000px;}
.ls5_c00043{letter-spacing:26.568000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00043{word-spacing:-18.144000px;}
.ws7_c00043{word-spacing:-18.072000px;}
.ws3_c00043{word-spacing:-18.000000px;}
.ws8_c00043{word-spacing:-17.928000px;}
.ws1_c00043{word-spacing:-17.424000px;}
.wsa_c00043{word-spacing:-0.131760px;}
.ws0_c00043{word-spacing:-0.072000px;}
.ws2_c00043{word-spacing:0.000000px;}
.ws1f_c00043{word-spacing:0.288000px;}
.ws18_c00043{word-spacing:0.720000px;}
.ws4_c00043{word-spacing:1.224000px;}
.ws12_c00043{word-spacing:1.368000px;}
.ws13_c00043{word-spacing:1.440000px;}
.wsb_c00043{word-spacing:1.800000px;}
.wse_c00043{word-spacing:3.744000px;}
.wsf_c00043{word-spacing:3.888000px;}
.ws10_c00043{word-spacing:4.608000px;}
.ws1a_c00043{word-spacing:4.680000px;}
.ws1e_c00043{word-spacing:5.328000px;}
.ws16_c00043{word-spacing:5.688000px;}
.ws14_c00043{word-spacing:5.760000px;}
.ws6_c00043{word-spacing:6.120000px;}
.ws1b_c00043{word-spacing:7.848000px;}
.ws1c_c00043{word-spacing:7.920000px;}
.ws22_c00043{word-spacing:8.640000px;}
.ws20_c00043{word-spacing:9.000000px;}
.ws1d_c00043{word-spacing:10.080000px;}
.ws17_c00043{word-spacing:12.600000px;}
.ws5_c00043{word-spacing:12.672000px;}
.ws23_c00043{word-spacing:14.760000px;}
.ws15_c00043{word-spacing:16.920000px;}
.ws21_c00043{word-spacing:18.648000px;}
.wsc_c00043{word-spacing:22.680000px;}
.wsd_c00043{word-spacing:24.120000px;}
.ws11_c00043{word-spacing:31.680000px;}
.ws19_c00043{word-spacing:40.968000px;}
._1_c00043{margin-left:-1.080000px;}
._0_c00043{width:1.054080px;}
._2_c00043{width:2.113920px;}
._4_c00043{width:6.048000px;}
._5_c00043{width:7.704000px;}
._3_c00043{width:20.067840px;}
.fc1_c00043{color:rgb(0,0,0);}
.fc0_c00043{color:rgb(35,31,32);}
.fs1_c00043{font-size:65.880000px;}
.fs0_c00043{font-size:72.000000px;}
.y0_c00043{bottom:0.000000px;}
.y1_c00043{bottom:61.748550px;}
.y20_c00043{bottom:146.474400px;}
.y1f_c00043{bottom:177.524400px;}
.y1e_c00043{bottom:208.574400px;}
.y1d_c00043{bottom:239.534400px;}
.y1c_c00043{bottom:270.584400px;}
.y1b_c00043{bottom:301.724400px;}
.y1a_c00043{bottom:332.774400px;}
.y19_c00043{bottom:363.824400px;}
.y18_c00043{bottom:394.874400px;}
.y17_c00043{bottom:456.974400px;}
.y16_c00043{bottom:488.024400px;}
.y15_c00043{bottom:519.074400px;}
.y14_c00043{bottom:581.174400px;}
.y13_c00043{bottom:612.134400px;}
.y12_c00043{bottom:643.274400px;}
.y11_c00043{bottom:674.324400px;}
.y10_c00043{bottom:705.374400px;}
.yf_c00043{bottom:736.424400px;}
.ye_c00043{bottom:767.474400px;}
.yd_c00043{bottom:829.484400px;}
.yc_c00043{bottom:860.534400px;}
.yb_c00043{bottom:891.584400px;}
.ya_c00043{bottom:922.634400px;}
.y9_c00043{bottom:953.684400px;}
.y8_c00043{bottom:984.734400px;}
.y7_c00043{bottom:1046.834400px;}
.y6_c00043{bottom:1077.794400px;}
.y5_c00043{bottom:1108.844400px;}
.y4_c00043{bottom:1139.894400px;}
.y3_c00043{bottom:1173.915120px;}
.y2_c00043{bottom:1194.074400px;}
.h2_c00043{height:50.400000px;}
.h3_c00043{height:54.331699px;}
.h5_c00043{height:76.824000px;}
.h4_c00043{height:78.048000px;}
.h0_c00043{height:1262.835000px;}
.h1_c00043{height:1263.000000px;}
.w0_c00043{width:892.914000px;}
.w1_c00043{width:893.250000px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:54.000000px;}
.x2_c00043{left:127.620000px;}
.x3_c00043{left:159.570000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls7_c00043{letter-spacing:-0.512000pt;}
.ls9_c00043{letter-spacing:-0.256000pt;}
.ls8_c00043{letter-spacing:-0.064000pt;}
.ls6_c00043{letter-spacing:0.000000pt;}
.ls1_c00043{letter-spacing:0.064000pt;}
.ls0_c00043{letter-spacing:0.128000pt;}
.ls2_c00043{letter-spacing:20.864000pt;}
.ls4_c00043{letter-spacing:21.120000pt;}
.ls3_c00043{letter-spacing:23.040000pt;}
.ls5_c00043{letter-spacing:23.616000pt;}
.ws9_c00043{word-spacing:-16.128000pt;}
.ws7_c00043{word-spacing:-16.064000pt;}
.ws3_c00043{word-spacing:-16.000000pt;}
.ws8_c00043{word-spacing:-15.936000pt;}
.ws1_c00043{word-spacing:-15.488000pt;}
.wsa_c00043{word-spacing:-0.117120pt;}
.ws0_c00043{word-spacing:-0.064000pt;}
.ws2_c00043{word-spacing:0.000000pt;}
.ws1f_c00043{word-spacing:0.256000pt;}
.ws18_c00043{word-spacing:0.640000pt;}
.ws4_c00043{word-spacing:1.088000pt;}
.ws12_c00043{word-spacing:1.216000pt;}
.ws13_c00043{word-spacing:1.280000pt;}
.wsb_c00043{word-spacing:1.600000pt;}
.wse_c00043{word-spacing:3.328000pt;}
.wsf_c00043{word-spacing:3.456000pt;}
.ws10_c00043{word-spacing:4.096000pt;}
.ws1a_c00043{word-spacing:4.160000pt;}
.ws1e_c00043{word-spacing:4.736000pt;}
.ws16_c00043{word-spacing:5.056000pt;}
.ws14_c00043{word-spacing:5.120000pt;}
.ws6_c00043{word-spacing:5.440000pt;}
.ws1b_c00043{word-spacing:6.976000pt;}
.ws1c_c00043{word-spacing:7.040000pt;}
.ws22_c00043{word-spacing:7.680000pt;}
.ws20_c00043{word-spacing:8.000000pt;}
.ws1d_c00043{word-spacing:8.960000pt;}
.ws17_c00043{word-spacing:11.200000pt;}
.ws5_c00043{word-spacing:11.264000pt;}
.ws23_c00043{word-spacing:13.120000pt;}
.ws15_c00043{word-spacing:15.040000pt;}
.ws21_c00043{word-spacing:16.576000pt;}
.wsc_c00043{word-spacing:20.160000pt;}
.wsd_c00043{word-spacing:21.440000pt;}
.ws11_c00043{word-spacing:28.160000pt;}
.ws19_c00043{word-spacing:36.416000pt;}
._1_c00043{margin-left:-0.960000pt;}
._0_c00043{width:0.936960pt;}
._2_c00043{width:1.879040pt;}
._4_c00043{width:5.376000pt;}
._5_c00043{width:6.848000pt;}
._3_c00043{width:17.838080pt;}
.fs1_c00043{font-size:58.560000pt;}
.fs0_c00043{font-size:64.000000pt;}
.y0_c00043{bottom:0.000000pt;}
.y1_c00043{bottom:54.887600pt;}
.y20_c00043{bottom:130.199467pt;}
.y1f_c00043{bottom:157.799467pt;}
.y1e_c00043{bottom:185.399467pt;}
.y1d_c00043{bottom:212.919467pt;}
.y1c_c00043{bottom:240.519467pt;}
.y1b_c00043{bottom:268.199467pt;}
.y1a_c00043{bottom:295.799467pt;}
.y19_c00043{bottom:323.399467pt;}
.y18_c00043{bottom:350.999467pt;}
.y17_c00043{bottom:406.199467pt;}
.y16_c00043{bottom:433.799467pt;}
.y15_c00043{bottom:461.399467pt;}
.y14_c00043{bottom:516.599467pt;}
.y13_c00043{bottom:544.119467pt;}
.y12_c00043{bottom:571.799467pt;}
.y11_c00043{bottom:599.399467pt;}
.y10_c00043{bottom:626.999467pt;}
.yf_c00043{bottom:654.599467pt;}
.ye_c00043{bottom:682.199467pt;}
.yd_c00043{bottom:737.319467pt;}
.yc_c00043{bottom:764.919467pt;}
.yb_c00043{bottom:792.519467pt;}
.ya_c00043{bottom:820.119467pt;}
.y9_c00043{bottom:847.719467pt;}
.y8_c00043{bottom:875.319467pt;}
.y7_c00043{bottom:930.519467pt;}
.y6_c00043{bottom:958.039467pt;}
.y5_c00043{bottom:985.639467pt;}
.y4_c00043{bottom:1013.239467pt;}
.y3_c00043{bottom:1043.480107pt;}
.y2_c00043{bottom:1061.399467pt;}
.h2_c00043{height:44.800000pt;}
.h3_c00043{height:48.294844pt;}
.h5_c00043{height:68.288000pt;}
.h4_c00043{height:69.376000pt;}
.h0_c00043{height:1122.520000pt;}
.h1_c00043{height:1122.666667pt;}
.w0_c00043{width:793.701333pt;}
.w1_c00043{width:794.000000pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:48.000000pt;}
.x2_c00043{left:113.440000pt;}
.x3_c00043{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00044;src:url('chunks/assets/font_b8474e1e57479cc77d574862.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00044;src:url('chunks/assets/font_73695cbab8d38bdce50b4fb5.woff2')format("woff");}.ff3_c00044{font-family:ff3_c00044;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00044;src:url('chunks/assets/font_e66b94f9bc95d2f59f10544b.woff2')format("woff");}.ff4_c00044{font-family:ff4_c00044;line-height:1.575000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00044{font-family:ff5_c00044;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00044;src:url('chunks/assets/font_86dd9e1d5530442452718b2c.woff2')format("woff");}.ff6_c00044{font-family:ff6_c00044;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00044;src:url('chunks/assets/font_e75d5dfe4bb295b5a1b630f1.woff2')format("woff");}.ff7_c00044{font-family:ff7_c00044;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00044;src:url('chunks/assets/font_f897035ed7e5f4e0da49af8c.woff2')format("woff");}.ff8_c00044{font-family:ff8_c00044;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00044;src:url('chunks/assets/font_afa79abace8b50fd6c7c9354.woff2')format("woff");}.ff9_c00044{font-family:ff9_c00044;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00044{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.lsd_c00044{letter-spacing:-0.576000px;}
.lsf_c00044{letter-spacing:-0.288000px;}
.lse_c00044{letter-spacing:-0.072000px;}
.lsc_c00044{letter-spacing:0.000000px;}
.ls1_c00044{letter-spacing:0.072000px;}
.ls0_c00044{letter-spacing:0.144000px;}
.lsa_c00044{letter-spacing:0.360000px;}
.lsb_c00044{letter-spacing:0.504000px;}
.ls8_c00044{letter-spacing:20.160000px;}
.ls2_c00044{letter-spacing:23.472000px;}
.ls6_c00044{letter-spacing:23.760000px;}
.ls4_c00044{letter-spacing:23.767200px;}
.ls3_c00044{letter-spacing:25.920000px;}
.ls5_c00044{letter-spacing:26.568000px;}
.ls7_c00044{letter-spacing:31.680000px;}
.ls9_c00044{letter-spacing:39.600000px;}
.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;}
}
.ws9_c00044{word-spacing:-18.144000px;}
.ws7_c00044{word-spacing:-18.072000px;}
.ws3_c00044{word-spacing:-18.000000px;}
.ws8_c00044{word-spacing:-17.928000px;}
.ws1_c00044{word-spacing:-17.424000px;}
.ws3b_c00044{word-spacing:-0.360000px;}
.wsf_c00044{word-spacing:-0.131760px;}
.ws0_c00044{word-spacing:-0.072000px;}
.ws2_c00044{word-spacing:0.000000px;}
.ws23_c00044{word-spacing:0.288000px;}
.ws30_c00044{word-spacing:0.576000px;}
.ws42_c00044{word-spacing:0.648000px;}
.ws1c_c00044{word-spacing:0.720000px;}
.ws41_c00044{word-spacing:1.008000px;}
.ws32_c00044{word-spacing:1.080000px;}
.ws4_c00044{word-spacing:1.224000px;}
.ws16_c00044{word-spacing:1.368000px;}
.ws17_c00044{word-spacing:1.440000px;}
.ws10_c00044{word-spacing:1.800000px;}
.ws34_c00044{word-spacing:2.016000px;}
.ws33_c00044{word-spacing:2.160000px;}
.ws31_c00044{word-spacing:2.448000px;}
.ws12_c00044{word-spacing:3.744000px;}
.ws13_c00044{word-spacing:3.888000px;}
.ws40_c00044{word-spacing:3.960000px;}
.ws2f_c00044{word-spacing:4.176000px;}
.ws2e_c00044{word-spacing:4.248000px;}
.ws38_c00044{word-spacing:4.320000px;}
.ws14_c00044{word-spacing:4.608000px;}
.ws1e_c00044{word-spacing:4.680000px;}
.ws22_c00044{word-spacing:5.328000px;}
.ws3e_c00044{word-spacing:5.400000px;}
.ws1a_c00044{word-spacing:5.688000px;}
.ws18_c00044{word-spacing:5.760000px;}
.ws6_c00044{word-spacing:6.120000px;}
.ws1f_c00044{word-spacing:7.848000px;}
.ws20_c00044{word-spacing:7.920000px;}
.ws43_c00044{word-spacing:8.208000px;}
.wsd_c00044{word-spacing:8.280000px;}
.ws26_c00044{word-spacing:8.640000px;}
.ws24_c00044{word-spacing:9.000000px;}
.ws21_c00044{word-spacing:10.080000px;}
.ws46_c00044{word-spacing:11.016000px;}
.ws3f_c00044{word-spacing:11.520000px;}
.ws36_c00044{word-spacing:11.808000px;}
.ws35_c00044{word-spacing:11.880000px;}
.ws1b_c00044{word-spacing:12.600000px;}
.ws5_c00044{word-spacing:12.672000px;}
.ws2d_c00044{word-spacing:12.960000px;}
.ws2b_c00044{word-spacing:13.176000px;}
.ws44_c00044{word-spacing:13.248000px;}
.ws45_c00044{word-spacing:13.320000px;}
.wse_c00044{word-spacing:13.341600px;}
.ws28_c00044{word-spacing:13.680000px;}
.ws3d_c00044{word-spacing:14.616000px;}
.ws3c_c00044{word-spacing:14.688000px;}
.ws27_c00044{word-spacing:14.760000px;}
.ws37_c00044{word-spacing:15.480000px;}
.ws2c_c00044{word-spacing:15.840000px;}
.ws19_c00044{word-spacing:16.920000px;}
.ws25_c00044{word-spacing:18.648000px;}
.wsc_c00044{word-spacing:21.528000px;}
.ws2a_c00044{word-spacing:21.888000px;}
.ws29_c00044{word-spacing:21.960000px;}
.ws39_c00044{word-spacing:22.248000px;}
.ws3a_c00044{word-spacing:22.320000px;}
.wsb_c00044{word-spacing:22.680000px;}
.ws11_c00044{word-spacing:24.120000px;}
.ws15_c00044{word-spacing:31.680000px;}
.ws1d_c00044{word-spacing:40.968000px;}
.wsa_c00044{word-spacing:104.400000px;}
._1_c00044{margin-left:-1.080000px;}
._0_c00044{width:1.054080px;}
._2_c00044{width:2.113920px;}
._7_c00044{width:3.960000px;}
._4_c00044{width:6.048000px;}
._5_c00044{width:7.704000px;}
._6_c00044{width:12.816000px;}
._3_c00044{width:20.067840px;}
._8_c00044{width:21.960000px;}
._9_c00044{width:39.312000px;}
.fc2_c00044{color:transparent;}
.fc1_c00044{color:rgb(0,0,0);}
.fc0_c00044{color:rgb(35,31,32);}
.fs1_c00044{font-size:65.880000px;}
.fs0_c00044{font-size:72.000000px;}
.y0_c00044{bottom:0.000000px;}
.y1_c00044{bottom:61.748550px;}
.y2a_c00044{bottom:115.424400px;}
.y20_c00044{bottom:146.474400px;}
.y1f_c00044{bottom:177.524400px;}
.y1e_c00044{bottom:208.574400px;}
.y1d_c00044{bottom:239.534400px;}
.y29_c00044{bottom:239.624400px;}
.y1c_c00044{bottom:270.584400px;}
.y28_c00044{bottom:270.674400px;}
.y1b_c00044{bottom:301.724400px;}
.y1a_c00044{bottom:332.774400px;}
.y19_c00044{bottom:363.824400px;}
.y18_c00044{bottom:394.874400px;}
.y27_c00044{bottom:425.924400px;}
.y17_c00044{bottom:456.974400px;}
.y16_c00044{bottom:488.024400px;}
.y15_c00044{bottom:519.074400px;}
.y26_c00044{bottom:550.124400px;}
.y14_c00044{bottom:581.174400px;}
.y13_c00044{bottom:612.134400px;}
.y25_c00044{bottom:612.224400px;}
.y12_c00044{bottom:643.274400px;}
.y11_c00044{bottom:674.324400px;}
.y10_c00044{bottom:705.374400px;}
.yf_c00044{bottom:736.424400px;}
.ye_c00044{bottom:767.474400px;}
.y24_c00044{bottom:829.304400px;}
.yd_c00044{bottom:829.484400px;}
.yc_c00044{bottom:860.534400px;}
.yb_c00044{bottom:891.584400px;}
.ya_c00044{bottom:922.634400px;}
.y9_c00044{bottom:953.684400px;}
.y8_c00044{bottom:984.734400px;}
.y23_c00044{bottom:1015.784400px;}
.y7_c00044{bottom:1046.834400px;}
.y6_c00044{bottom:1077.794400px;}
.y5_c00044{bottom:1108.844400px;}
.y22_c00044{bottom:1108.934400px;}
.y4_c00044{bottom:1139.894400px;}
.y21_c00044{bottom:1139.984400px;}
.y3_c00044{bottom:1173.915120px;}
.y2_c00044{bottom:1194.074400px;}
.h2_c00044{height:50.400000px;}
.h3_c00044{height:54.331699px;}
.h5_c00044{height:76.824000px;}
.h4_c00044{height:78.048000px;}
.h0_c00044{height:1262.835000px;}
.h1_c00044{height:1263.000000px;}
.w2_c00044{width:0.000000px;}
.w3_c00044{width:0.066000px;}
.w0_c00044{width:892.914000px;}
.w1_c00044{width:893.250000px;}
.x1_c00044{left:-838.913400px;}
.x2_c00044{left:-765.293400px;}
.x3_c00044{left:-733.343400px;}
.x0_c00044{left:0.000000px;}
.x6_c00044{left:127.618740px;}
.x7_c00044{left:159.570000px;}
.x8_c00044{left:170.190000px;}
.x5_c00044{left:701.730000px;}
.x4_c00044{left:804.366150px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.lsd_c00044{letter-spacing:-0.512000pt;}
.lsf_c00044{letter-spacing:-0.256000pt;}
.lse_c00044{letter-spacing:-0.064000pt;}
.lsc_c00044{letter-spacing:0.000000pt;}
.ls1_c00044{letter-spacing:0.064000pt;}
.ls0_c00044{letter-spacing:0.128000pt;}
.lsa_c00044{letter-spacing:0.320000pt;}
.lsb_c00044{letter-spacing:0.448000pt;}
.ls8_c00044{letter-spacing:17.920000pt;}
.ls2_c00044{letter-spacing:20.864000pt;}
.ls6_c00044{letter-spacing:21.120000pt;}
.ls4_c00044{letter-spacing:21.126400pt;}
.ls3_c00044{letter-spacing:23.040000pt;}
.ls5_c00044{letter-spacing:23.616000pt;}
.ls7_c00044{letter-spacing:28.160000pt;}
.ls9_c00044{letter-spacing:35.200000pt;}
.ws9_c00044{word-spacing:-16.128000pt;}
.ws7_c00044{word-spacing:-16.064000pt;}
.ws3_c00044{word-spacing:-16.000000pt;}
.ws8_c00044{word-spacing:-15.936000pt;}
.ws1_c00044{word-spacing:-15.488000pt;}
.ws3b_c00044{word-spacing:-0.320000pt;}
.wsf_c00044{word-spacing:-0.117120pt;}
.ws0_c00044{word-spacing:-0.064000pt;}
.ws2_c00044{word-spacing:0.000000pt;}
.ws23_c00044{word-spacing:0.256000pt;}
.ws30_c00044{word-spacing:0.512000pt;}
.ws42_c00044{word-spacing:0.576000pt;}
.ws1c_c00044{word-spacing:0.640000pt;}
.ws41_c00044{word-spacing:0.896000pt;}
.ws32_c00044{word-spacing:0.960000pt;}
.ws4_c00044{word-spacing:1.088000pt;}
.ws16_c00044{word-spacing:1.216000pt;}
.ws17_c00044{word-spacing:1.280000pt;}
.ws10_c00044{word-spacing:1.600000pt;}
.ws34_c00044{word-spacing:1.792000pt;}
.ws33_c00044{word-spacing:1.920000pt;}
.ws31_c00044{word-spacing:2.176000pt;}
.ws12_c00044{word-spacing:3.328000pt;}
.ws13_c00044{word-spacing:3.456000pt;}
.ws40_c00044{word-spacing:3.520000pt;}
.ws2f_c00044{word-spacing:3.712000pt;}
.ws2e_c00044{word-spacing:3.776000pt;}
.ws38_c00044{word-spacing:3.840000pt;}
.ws14_c00044{word-spacing:4.096000pt;}
.ws1e_c00044{word-spacing:4.160000pt;}
.ws22_c00044{word-spacing:4.736000pt;}
.ws3e_c00044{word-spacing:4.800000pt;}
.ws1a_c00044{word-spacing:5.056000pt;}
.ws18_c00044{word-spacing:5.120000pt;}
.ws6_c00044{word-spacing:5.440000pt;}
.ws1f_c00044{word-spacing:6.976000pt;}
.ws20_c00044{word-spacing:7.040000pt;}
.ws43_c00044{word-spacing:7.296000pt;}
.wsd_c00044{word-spacing:7.360000pt;}
.ws26_c00044{word-spacing:7.680000pt;}
.ws24_c00044{word-spacing:8.000000pt;}
.ws21_c00044{word-spacing:8.960000pt;}
.ws46_c00044{word-spacing:9.792000pt;}
.ws3f_c00044{word-spacing:10.240000pt;}
.ws36_c00044{word-spacing:10.496000pt;}
.ws35_c00044{word-spacing:10.560000pt;}
.ws1b_c00044{word-spacing:11.200000pt;}
.ws5_c00044{word-spacing:11.264000pt;}
.ws2d_c00044{word-spacing:11.520000pt;}
.ws2b_c00044{word-spacing:11.712000pt;}
.ws44_c00044{word-spacing:11.776000pt;}
.ws45_c00044{word-spacing:11.840000pt;}
.wse_c00044{word-spacing:11.859200pt;}
.ws28_c00044{word-spacing:12.160000pt;}
.ws3d_c00044{word-spacing:12.992000pt;}
.ws3c_c00044{word-spacing:13.056000pt;}
.ws27_c00044{word-spacing:13.120000pt;}
.ws37_c00044{word-spacing:13.760000pt;}
.ws2c_c00044{word-spacing:14.080000pt;}
.ws19_c00044{word-spacing:15.040000pt;}
.ws25_c00044{word-spacing:16.576000pt;}
.wsc_c00044{word-spacing:19.136000pt;}
.ws2a_c00044{word-spacing:19.456000pt;}
.ws29_c00044{word-spacing:19.520000pt;}
.ws39_c00044{word-spacing:19.776000pt;}
.ws3a_c00044{word-spacing:19.840000pt;}
.wsb_c00044{word-spacing:20.160000pt;}
.ws11_c00044{word-spacing:21.440000pt;}
.ws15_c00044{word-spacing:28.160000pt;}
.ws1d_c00044{word-spacing:36.416000pt;}
.wsa_c00044{word-spacing:92.800000pt;}
._1_c00044{margin-left:-0.960000pt;}
._0_c00044{width:0.936960pt;}
._2_c00044{width:1.879040pt;}
._7_c00044{width:3.520000pt;}
._4_c00044{width:5.376000pt;}
._5_c00044{width:6.848000pt;}
._6_c00044{width:11.392000pt;}
._3_c00044{width:17.838080pt;}
._8_c00044{width:19.520000pt;}
._9_c00044{width:34.944000pt;}
.fs1_c00044{font-size:58.560000pt;}
.fs0_c00044{font-size:64.000000pt;}
.y0_c00044{bottom:0.000000pt;}
.y1_c00044{bottom:54.887600pt;}
.y2a_c00044{bottom:102.599467pt;}
.y20_c00044{bottom:130.199467pt;}
.y1f_c00044{bottom:157.799467pt;}
.y1e_c00044{bottom:185.399467pt;}
.y1d_c00044{bottom:212.919467pt;}
.y29_c00044{bottom:212.999467pt;}
.y1c_c00044{bottom:240.519467pt;}
.y28_c00044{bottom:240.599467pt;}
.y1b_c00044{bottom:268.199467pt;}
.y1a_c00044{bottom:295.799467pt;}
.y19_c00044{bottom:323.399467pt;}
.y18_c00044{bottom:350.999467pt;}
.y27_c00044{bottom:378.599467pt;}
.y17_c00044{bottom:406.199467pt;}
.y16_c00044{bottom:433.799467pt;}
.y15_c00044{bottom:461.399467pt;}
.y26_c00044{bottom:488.999467pt;}
.y14_c00044{bottom:516.599467pt;}
.y13_c00044{bottom:544.119467pt;}
.y25_c00044{bottom:544.199467pt;}
.y12_c00044{bottom:571.799467pt;}
.y11_c00044{bottom:599.399467pt;}
.y10_c00044{bottom:626.999467pt;}
.yf_c00044{bottom:654.599467pt;}
.ye_c00044{bottom:682.199467pt;}
.y24_c00044{bottom:737.159467pt;}
.yd_c00044{bottom:737.319467pt;}
.yc_c00044{bottom:764.919467pt;}
.yb_c00044{bottom:792.519467pt;}
.ya_c00044{bottom:820.119467pt;}
.y9_c00044{bottom:847.719467pt;}
.y8_c00044{bottom:875.319467pt;}
.y23_c00044{bottom:902.919467pt;}
.y7_c00044{bottom:930.519467pt;}
.y6_c00044{bottom:958.039467pt;}
.y5_c00044{bottom:985.639467pt;}
.y22_c00044{bottom:985.719467pt;}
.y4_c00044{bottom:1013.239467pt;}
.y21_c00044{bottom:1013.319467pt;}
.y3_c00044{bottom:1043.480107pt;}
.y2_c00044{bottom:1061.399467pt;}
.h2_c00044{height:44.800000pt;}
.h3_c00044{height:48.294844pt;}
.h5_c00044{height:68.288000pt;}
.h4_c00044{height:69.376000pt;}
.h0_c00044{height:1122.520000pt;}
.h1_c00044{height:1122.666667pt;}
.w2_c00044{width:0.000000pt;}
.w3_c00044{width:0.058667pt;}
.w0_c00044{width:793.701333pt;}
.w1_c00044{width:794.000000pt;}
.x1_c00044{left:-745.700800pt;}
.x2_c00044{left:-680.260800pt;}
.x3_c00044{left:-651.860800pt;}
.x0_c00044{left:0.000000pt;}
.x6_c00044{left:113.438880pt;}
.x7_c00044{left:141.840000pt;}
.x8_c00044{left:151.280000pt;}
.x5_c00044{left:623.760000pt;}
.x4_c00044{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00045;src:url('chunks/assets/font_995b4a40848f75be83c7625f.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00045;src:url('chunks/assets/font_1d444c9d0f42819f9d888fcf.woff2')format("woff");}.ff3_c00045{font-family:ff3_c00045;line-height:1.575000;font-style:normal;font-weight:normal;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_df56ac55942cf8ba4c9c6ae0.woff2')format("woff");}.ff4_c00045{font-family:ff4_c00045;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00045{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls3_c00045{letter-spacing:-0.216000px;}
.ls2_c00045{letter-spacing:0.000000px;}
.ls0_c00045{letter-spacing:0.072000px;}
.ls1_c00045{letter-spacing:0.144000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00045{word-spacing:-18.000000px;}
.ws3_c00045{word-spacing:-17.784000px;}
.ws7_c00045{word-spacing:-0.144000px;}
.ws5_c00045{word-spacing:-0.131760px;}
.wsb_c00045{word-spacing:-0.072000px;}
.ws4_c00045{word-spacing:0.000000px;}
.ws16_c00045{word-spacing:0.072000px;}
.wse_c00045{word-spacing:0.360000px;}
.ws10_c00045{word-spacing:0.576000px;}
.ws11_c00045{word-spacing:0.648000px;}
.wsc_c00045{word-spacing:4.680000px;}
.ws12_c00045{word-spacing:5.688000px;}
.wsd_c00045{word-spacing:5.760000px;}
.wsf_c00045{word-spacing:6.120000px;}
.ws14_c00045{word-spacing:6.336000px;}
.wsa_c00045{word-spacing:6.480000px;}
.ws13_c00045{word-spacing:6.840000px;}
.ws9_c00045{word-spacing:7.920000px;}
.ws15_c00045{word-spacing:14.328000px;}
.ws8_c00045{word-spacing:14.616000px;}
.ws0_c00045{word-spacing:15.120000px;}
.ws17_c00045{word-spacing:17.928000px;}
.ws6_c00045{word-spacing:18.648000px;}
.ws1_c00045{word-spacing:22.608000px;}
.ws1a_c00045{word-spacing:22.824000px;}
.ws19_c00045{word-spacing:23.400000px;}
.ws18_c00045{word-spacing:31.608000px;}
._1_c00045{margin-left:-1.008000px;}
._0_c00045{width:1.054080px;}
._2_c00045{width:14.544000px;}
.fc1_c00045{color:rgb(0,0,0);}
.fc0_c00045{color:rgb(35,31,32);}
.fs1_c00045{font-size:65.880000px;}
.fs0_c00045{font-size:72.000000px;}
.y0_c00045{bottom:0.000000px;}
.y1_c00045{bottom:61.748550px;}
.y17_c00045{bottom:146.474400px;}
.y16_c00045{bottom:177.524400px;}
.y15_c00045{bottom:208.574400px;}
.y14_c00045{bottom:239.624400px;}
.y13_c00045{bottom:270.674400px;}
.y12_c00045{bottom:301.724400px;}
.y11_c00045{bottom:332.774400px;}
.y10_c00045{bottom:363.824400px;}
.yf_c00045{bottom:394.874400px;}
.ye_c00045{bottom:425.924400px;}
.yd_c00045{bottom:456.974400px;}
.yc_c00045{bottom:488.024400px;}
.yb_c00045{bottom:519.074400px;}
.ya_c00045{bottom:581.174400px;}
.y9_c00045{bottom:612.224400px;}
.y8_c00045{bottom:1015.784400px;}
.y7_c00045{bottom:1046.834400px;}
.y6_c00045{bottom:1077.884400px;}
.y5_c00045{bottom:1108.934400px;}
.y4_c00045{bottom:1139.984400px;}
.y3_c00045{bottom:1173.915120px;}
.y2_c00045{bottom:1194.074400px;}
.h2_c00045{height:50.400000px;}
.h3_c00045{height:54.331699px;}
.h4_c00045{height:76.824000px;}
.h5_c00045{height:78.048000px;}
.h0_c00045{height:1262.835000px;}
.h1_c00045{height:1263.000000px;}
.w0_c00045{width:892.914000px;}
.w1_c00045{width:893.250000px;}
.x0_c00045{left:0.000000px;}
.x1_c00045{left:54.000000px;}
.x2_c00045{left:127.620000px;}
.x3_c00045{left:148.950000px;}
.x4_c00045{left:159.570000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls3_c00045{letter-spacing:-0.192000pt;}
.ls2_c00045{letter-spacing:0.000000pt;}
.ls0_c00045{letter-spacing:0.064000pt;}
.ls1_c00045{letter-spacing:0.128000pt;}
.ws2_c00045{word-spacing:-16.000000pt;}
.ws3_c00045{word-spacing:-15.808000pt;}
.ws7_c00045{word-spacing:-0.128000pt;}
.ws5_c00045{word-spacing:-0.117120pt;}
.wsb_c00045{word-spacing:-0.064000pt;}
.ws4_c00045{word-spacing:0.000000pt;}
.ws16_c00045{word-spacing:0.064000pt;}
.wse_c00045{word-spacing:0.320000pt;}
.ws10_c00045{word-spacing:0.512000pt;}
.ws11_c00045{word-spacing:0.576000pt;}
.wsc_c00045{word-spacing:4.160000pt;}
.ws12_c00045{word-spacing:5.056000pt;}
.wsd_c00045{word-spacing:5.120000pt;}
.wsf_c00045{word-spacing:5.440000pt;}
.ws14_c00045{word-spacing:5.632000pt;}
.wsa_c00045{word-spacing:5.760000pt;}
.ws13_c00045{word-spacing:6.080000pt;}
.ws9_c00045{word-spacing:7.040000pt;}
.ws15_c00045{word-spacing:12.736000pt;}
.ws8_c00045{word-spacing:12.992000pt;}
.ws0_c00045{word-spacing:13.440000pt;}
.ws17_c00045{word-spacing:15.936000pt;}
.ws6_c00045{word-spacing:16.576000pt;}
.ws1_c00045{word-spacing:20.096000pt;}
.ws1a_c00045{word-spacing:20.288000pt;}
.ws19_c00045{word-spacing:20.800000pt;}
.ws18_c00045{word-spacing:28.096000pt;}
._1_c00045{margin-left:-0.896000pt;}
._0_c00045{width:0.936960pt;}
._2_c00045{width:12.928000pt;}
.fs1_c00045{font-size:58.560000pt;}
.fs0_c00045{font-size:64.000000pt;}
.y0_c00045{bottom:0.000000pt;}
.y1_c00045{bottom:54.887600pt;}
.y17_c00045{bottom:130.199467pt;}
.y16_c00045{bottom:157.799467pt;}
.y15_c00045{bottom:185.399467pt;}
.y14_c00045{bottom:212.999467pt;}
.y13_c00045{bottom:240.599467pt;}
.y12_c00045{bottom:268.199467pt;}
.y11_c00045{bottom:295.799467pt;}
.y10_c00045{bottom:323.399467pt;}
.yf_c00045{bottom:350.999467pt;}
.ye_c00045{bottom:378.599467pt;}
.yd_c00045{bottom:406.199467pt;}
.yc_c00045{bottom:433.799467pt;}
.yb_c00045{bottom:461.399467pt;}
.ya_c00045{bottom:516.599467pt;}
.y9_c00045{bottom:544.199467pt;}
.y8_c00045{bottom:902.919467pt;}
.y7_c00045{bottom:930.519467pt;}
.y6_c00045{bottom:958.119467pt;}
.y5_c00045{bottom:985.719467pt;}
.y4_c00045{bottom:1013.319467pt;}
.y3_c00045{bottom:1043.480107pt;}
.y2_c00045{bottom:1061.399467pt;}
.h2_c00045{height:44.800000pt;}
.h3_c00045{height:48.294844pt;}
.h4_c00045{height:68.288000pt;}
.h5_c00045{height:69.376000pt;}
.h0_c00045{height:1122.520000pt;}
.h1_c00045{height:1122.666667pt;}
.w0_c00045{width:793.701333pt;}
.w1_c00045{width:794.000000pt;}
.x0_c00045{left:0.000000pt;}
.x1_c00045{left:48.000000pt;}
.x2_c00045{left:113.440000pt;}
.x3_c00045{left:132.400000pt;}
.x4_c00045{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00046;src:url('chunks/assets/font_8e553eb3da6ec1b473c5608b.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00046;src:url('chunks/assets/font_cee9257aef1247cef6b1638a.woff2')format("woff");}.ff3_c00046{font-family:ff3_c00046;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00046;src:url('chunks/assets/font_9eb7ce96e3d6ffafb1205a04.woff2')format("woff");}.ff4_c00046{font-family:ff4_c00046;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00046;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00046{font-family:ff5_c00046;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00046;src:url('chunks/assets/font_72b6d2b56751f49e807e6932.woff2')format("woff");}.ff6_c00046{font-family:ff6_c00046;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00046;src:url('chunks/assets/font_227b320fedefb0a958c87d8d.woff2')format("woff");}.ff7_c00046{font-family:ff7_c00046;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00046;src:url('chunks/assets/font_13f8b9da5e7f0579bd448100.woff2')format("woff");}.ff8_c00046{font-family:ff8_c00046;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00046{letter-spacing:-0.216000px;}
.ls5_c00046{letter-spacing:-0.072000px;}
.ls3_c00046{letter-spacing:0.000000px;}
.ls0_c00046{letter-spacing:0.072000px;}
.ls1_c00046{letter-spacing:0.144000px;}
.ls2_c00046{letter-spacing:21.240000px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00046{word-spacing:-18.072000px;}
.ws2_c00046{word-spacing:-18.000000px;}
.ws6_c00046{word-spacing:-17.928000px;}
.ws3_c00046{word-spacing:-17.784000px;}
.wsc_c00046{word-spacing:-0.144000px;}
.wsa_c00046{word-spacing:-0.131760px;}
.ws10_c00046{word-spacing:-0.072000px;}
.ws9_c00046{word-spacing:0.000000px;}
.ws1a_c00046{word-spacing:0.072000px;}
.ws12_c00046{word-spacing:0.360000px;}
.ws14_c00046{word-spacing:0.576000px;}
.ws15_c00046{word-spacing:0.648000px;}
.ws20_c00046{word-spacing:0.720000px;}
.ws2b_c00046{word-spacing:1.008000px;}
.ws24_c00046{word-spacing:1.080000px;}
.ws32_c00046{word-spacing:1.440000px;}
.ws22_c00046{word-spacing:1.728000px;}
.ws21_c00046{word-spacing:1.800000px;}
.ws30_c00046{word-spacing:2.808000px;}
.ws37_c00046{word-spacing:3.168000px;}
.ws36_c00046{word-spacing:3.240000px;}
.ws2e_c00046{word-spacing:4.248000px;}
.ws7_c00046{word-spacing:4.320000px;}
.ws4_c00046{word-spacing:4.680000px;}
.ws5_c00046{word-spacing:4.953600px;}
.ws23_c00046{word-spacing:5.040000px;}
.ws16_c00046{word-spacing:5.688000px;}
.ws11_c00046{word-spacing:5.760000px;}
.ws13_c00046{word-spacing:6.120000px;}
.ws18_c00046{word-spacing:6.336000px;}
.wsf_c00046{word-spacing:6.480000px;}
.ws17_c00046{word-spacing:6.840000px;}
.wse_c00046{word-spacing:7.920000px;}
.ws1f_c00046{word-spacing:8.568000px;}
.ws2c_c00046{word-spacing:9.360000px;}
.ws2f_c00046{word-spacing:10.368000px;}
.ws19_c00046{word-spacing:14.328000px;}
.ws34_c00046{word-spacing:14.400000px;}
.wsd_c00046{word-spacing:14.616000px;}
.ws0_c00046{word-spacing:15.120000px;}
.ws31_c00046{word-spacing:15.840000px;}
.ws26_c00046{word-spacing:16.200000px;}
.ws28_c00046{word-spacing:16.488000px;}
.ws27_c00046{word-spacing:16.560000px;}
.ws29_c00046{word-spacing:16.920000px;}
.ws1b_c00046{word-spacing:17.928000px;}
.wsb_c00046{word-spacing:18.648000px;}
.ws25_c00046{word-spacing:19.728000px;}
.ws35_c00046{word-spacing:20.448000px;}
.ws2a_c00046{word-spacing:20.520000px;}
.ws33_c00046{word-spacing:22.320000px;}
.ws1_c00046{word-spacing:22.608000px;}
.ws1e_c00046{word-spacing:22.824000px;}
.ws1d_c00046{word-spacing:23.400000px;}
.ws2d_c00046{word-spacing:25.920000px;}
.ws1c_c00046{word-spacing:31.608000px;}
._1_c00046{margin-left:-1.008000px;}
._0_c00046{width:1.054080px;}
._5_c00046{width:3.024000px;}
._4_c00046{width:5.342400px;}
._2_c00046{width:14.544000px;}
._3_c00046{width:15.649920px;}
.fc2_c00046{color:transparent;}
.fc1_c00046{color:rgb(0,0,0);}
.fc0_c00046{color:rgb(35,31,32);}
.fs1_c00046{font-size:65.880000px;}
.fs0_c00046{font-size:72.000000px;}
.y0_c00046{bottom:0.000000px;}
.y1_c00046{bottom:61.748550px;}
.y24_c00046{bottom:115.424400px;}
.y17_c00046{bottom:146.474400px;}
.y16_c00046{bottom:177.524400px;}
.y15_c00046{bottom:208.574400px;}
.y14_c00046{bottom:239.624400px;}
.y13_c00046{bottom:270.674400px;}
.y12_c00046{bottom:301.724400px;}
.y11_c00046{bottom:332.774400px;}
.y10_c00046{bottom:363.824400px;}
.yf_c00046{bottom:394.874400px;}
.ye_c00046{bottom:425.924400px;}
.yd_c00046{bottom:456.974400px;}
.yc_c00046{bottom:488.024400px;}
.yb_c00046{bottom:519.074400px;}
.ya_c00046{bottom:581.174400px;}
.y23_c00046{bottom:612.134400px;}
.y9_c00046{bottom:612.224400px;}
.y22_c00046{bottom:643.184400px;}
.y21_c00046{bottom:674.324400px;}
.y20_c00046{bottom:705.374400px;}
.y1f_c00046{bottom:736.424400px;}
.y1e_c00046{bottom:767.474400px;}
.y1d_c00046{bottom:798.434400px;}
.y1c_c00046{bottom:829.484400px;}
.y1b_c00046{bottom:891.584400px;}
.y1a_c00046{bottom:922.634400px;}
.y19_c00046{bottom:953.684400px;}
.y18_c00046{bottom:984.734400px;}
.y8_c00046{bottom:1015.784400px;}
.y7_c00046{bottom:1046.834400px;}
.y6_c00046{bottom:1077.884400px;}
.y5_c00046{bottom:1108.934400px;}
.y4_c00046{bottom:1139.984400px;}
.y3_c00046{bottom:1173.915120px;}
.y2_c00046{bottom:1194.074400px;}
.h2_c00046{height:50.400000px;}
.h3_c00046{height:54.331699px;}
.h4_c00046{height:76.824000px;}
.h5_c00046{height:78.048000px;}
.h0_c00046{height:1262.835000px;}
.h1_c00046{height:1263.000000px;}
.w2_c00046{width:0.000000px;}
.w3_c00046{width:0.066000px;}
.w0_c00046{width:892.914000px;}
.w1_c00046{width:893.250000px;}
.x1_c00046{left:-838.913400px;}
.x2_c00046{left:-765.293400px;}
.x3_c00046{left:-743.963400px;}
.x4_c00046{left:-733.343400px;}
.x0_c00046{left:0.000000px;}
.x7_c00046{left:127.618740px;}
.x8_c00046{left:159.570000px;}
.x6_c00046{left:701.730000px;}
.x5_c00046{left:804.366150px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls4_c00046{letter-spacing:-0.192000pt;}
.ls5_c00046{letter-spacing:-0.064000pt;}
.ls3_c00046{letter-spacing:0.000000pt;}
.ls0_c00046{letter-spacing:0.064000pt;}
.ls1_c00046{letter-spacing:0.128000pt;}
.ls2_c00046{letter-spacing:18.880000pt;}
.ws8_c00046{word-spacing:-16.064000pt;}
.ws2_c00046{word-spacing:-16.000000pt;}
.ws6_c00046{word-spacing:-15.936000pt;}
.ws3_c00046{word-spacing:-15.808000pt;}
.wsc_c00046{word-spacing:-0.128000pt;}
.wsa_c00046{word-spacing:-0.117120pt;}
.ws10_c00046{word-spacing:-0.064000pt;}
.ws9_c00046{word-spacing:0.000000pt;}
.ws1a_c00046{word-spacing:0.064000pt;}
.ws12_c00046{word-spacing:0.320000pt;}
.ws14_c00046{word-spacing:0.512000pt;}
.ws15_c00046{word-spacing:0.576000pt;}
.ws20_c00046{word-spacing:0.640000pt;}
.ws2b_c00046{word-spacing:0.896000pt;}
.ws24_c00046{word-spacing:0.960000pt;}
.ws32_c00046{word-spacing:1.280000pt;}
.ws22_c00046{word-spacing:1.536000pt;}
.ws21_c00046{word-spacing:1.600000pt;}
.ws30_c00046{word-spacing:2.496000pt;}
.ws37_c00046{word-spacing:2.816000pt;}
.ws36_c00046{word-spacing:2.880000pt;}
.ws2e_c00046{word-spacing:3.776000pt;}
.ws7_c00046{word-spacing:3.840000pt;}
.ws4_c00046{word-spacing:4.160000pt;}
.ws5_c00046{word-spacing:4.403200pt;}
.ws23_c00046{word-spacing:4.480000pt;}
.ws16_c00046{word-spacing:5.056000pt;}
.ws11_c00046{word-spacing:5.120000pt;}
.ws13_c00046{word-spacing:5.440000pt;}
.ws18_c00046{word-spacing:5.632000pt;}
.wsf_c00046{word-spacing:5.760000pt;}
.ws17_c00046{word-spacing:6.080000pt;}
.wse_c00046{word-spacing:7.040000pt;}
.ws1f_c00046{word-spacing:7.616000pt;}
.ws2c_c00046{word-spacing:8.320000pt;}
.ws2f_c00046{word-spacing:9.216000pt;}
.ws19_c00046{word-spacing:12.736000pt;}
.ws34_c00046{word-spacing:12.800000pt;}
.wsd_c00046{word-spacing:12.992000pt;}
.ws0_c00046{word-spacing:13.440000pt;}
.ws31_c00046{word-spacing:14.080000pt;}
.ws26_c00046{word-spacing:14.400000pt;}
.ws28_c00046{word-spacing:14.656000pt;}
.ws27_c00046{word-spacing:14.720000pt;}
.ws29_c00046{word-spacing:15.040000pt;}
.ws1b_c00046{word-spacing:15.936000pt;}
.wsb_c00046{word-spacing:16.576000pt;}
.ws25_c00046{word-spacing:17.536000pt;}
.ws35_c00046{word-spacing:18.176000pt;}
.ws2a_c00046{word-spacing:18.240000pt;}
.ws33_c00046{word-spacing:19.840000pt;}
.ws1_c00046{word-spacing:20.096000pt;}
.ws1e_c00046{word-spacing:20.288000pt;}
.ws1d_c00046{word-spacing:20.800000pt;}
.ws2d_c00046{word-spacing:23.040000pt;}
.ws1c_c00046{word-spacing:28.096000pt;}
._1_c00046{margin-left:-0.896000pt;}
._0_c00046{width:0.936960pt;}
._5_c00046{width:2.688000pt;}
._4_c00046{width:4.748800pt;}
._2_c00046{width:12.928000pt;}
._3_c00046{width:13.911040pt;}
.fs1_c00046{font-size:58.560000pt;}
.fs0_c00046{font-size:64.000000pt;}
.y0_c00046{bottom:0.000000pt;}
.y1_c00046{bottom:54.887600pt;}
.y24_c00046{bottom:102.599467pt;}
.y17_c00046{bottom:130.199467pt;}
.y16_c00046{bottom:157.799467pt;}
.y15_c00046{bottom:185.399467pt;}
.y14_c00046{bottom:212.999467pt;}
.y13_c00046{bottom:240.599467pt;}
.y12_c00046{bottom:268.199467pt;}
.y11_c00046{bottom:295.799467pt;}
.y10_c00046{bottom:323.399467pt;}
.yf_c00046{bottom:350.999467pt;}
.ye_c00046{bottom:378.599467pt;}
.yd_c00046{bottom:406.199467pt;}
.yc_c00046{bottom:433.799467pt;}
.yb_c00046{bottom:461.399467pt;}
.ya_c00046{bottom:516.599467pt;}
.y23_c00046{bottom:544.119467pt;}
.y9_c00046{bottom:544.199467pt;}
.y22_c00046{bottom:571.719467pt;}
.y21_c00046{bottom:599.399467pt;}
.y20_c00046{bottom:626.999467pt;}
.y1f_c00046{bottom:654.599467pt;}
.y1e_c00046{bottom:682.199467pt;}
.y1d_c00046{bottom:709.719467pt;}
.y1c_c00046{bottom:737.319467pt;}
.y1b_c00046{bottom:792.519467pt;}
.y1a_c00046{bottom:820.119467pt;}
.y19_c00046{bottom:847.719467pt;}
.y18_c00046{bottom:875.319467pt;}
.y8_c00046{bottom:902.919467pt;}
.y7_c00046{bottom:930.519467pt;}
.y6_c00046{bottom:958.119467pt;}
.y5_c00046{bottom:985.719467pt;}
.y4_c00046{bottom:1013.319467pt;}
.y3_c00046{bottom:1043.480107pt;}
.y2_c00046{bottom:1061.399467pt;}
.h2_c00046{height:44.800000pt;}
.h3_c00046{height:48.294844pt;}
.h4_c00046{height:68.288000pt;}
.h5_c00046{height:69.376000pt;}
.h0_c00046{height:1122.520000pt;}
.h1_c00046{height:1122.666667pt;}
.w2_c00046{width:0.000000pt;}
.w3_c00046{width:0.058667pt;}
.w0_c00046{width:793.701333pt;}
.w1_c00046{width:794.000000pt;}
.x1_c00046{left:-745.700800pt;}
.x2_c00046{left:-680.260800pt;}
.x3_c00046{left:-661.300800pt;}
.x4_c00046{left:-651.860800pt;}
.x0_c00046{left:0.000000pt;}
.x7_c00046{left:113.438880pt;}
.x8_c00046{left:141.840000pt;}
.x6_c00046{left:623.760000pt;}
.x5_c00046{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00047;src:url('chunks/assets/font_a60a889d1ad89e1c70cc6c50.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00047;src:url('chunks/assets/font_216d4bf7827ab57aeb3ed49e.woff2')format("woff");}.ff3_c00047{font-family:ff3_c00047;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00047;src:url('chunks/assets/font_f29db3b239497a4dba130755.woff2')format("woff");}.ff4_c00047{font-family:ff4_c00047;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00047;src:url('chunks/assets/font_cb5e4758e5d2e1a946ebf3e5.woff2')format("woff");}.ff5_c00047{font-family:ff5_c00047;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c00047{letter-spacing:-0.288000px;}
.lsa_c00047{letter-spacing:-0.216000px;}
.ls7_c00047{letter-spacing:-0.144000px;}
.ls8_c00047{letter-spacing:-0.072000px;}
.ls6_c00047{letter-spacing:0.000000px;}
.ls0_c00047{letter-spacing:0.072000px;}
.ls4_c00047{letter-spacing:0.144000px;}
.ls1_c00047{letter-spacing:22.320000px;}
.ls5_c00047{letter-spacing:34.560000px;}
.ls3_c00047{letter-spacing:45.014400px;}
.ls2_c00047{letter-spacing:45.504000px;}
.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;}
}
.wsa_c00047{word-spacing:-18.144000px;}
.ws5_c00047{word-spacing:-18.072000px;}
.wsf_c00047{word-spacing:-18.000000px;}
.wsd_c00047{word-spacing:-17.784000px;}
.ws4_c00047{word-spacing:-0.432000px;}
.ws27_c00047{word-spacing:-0.144000px;}
.ws11_c00047{word-spacing:-0.131760px;}
.ws12_c00047{word-spacing:-0.072000px;}
.ws10_c00047{word-spacing:0.000000px;}
.ws1_c00047{word-spacing:0.288000px;}
.ws21_c00047{word-spacing:1.008000px;}
.ws2c_c00047{word-spacing:1.080000px;}
.wse_c00047{word-spacing:1.152000px;}
.ws22_c00047{word-spacing:1.368000px;}
.wsc_c00047{word-spacing:1.382400px;}
.wsb_c00047{word-spacing:1.440000px;}
.ws6_c00047{word-spacing:1.663200px;}
.ws2a_c00047{word-spacing:1.872000px;}
.ws2b_c00047{word-spacing:2.088000px;}
.ws7_c00047{word-spacing:2.232000px;}
.ws23_c00047{word-spacing:2.520000px;}
.ws24_c00047{word-spacing:2.808000px;}
.ws1d_c00047{word-spacing:3.168000px;}
.ws1e_c00047{word-spacing:3.240000px;}
.ws3_c00047{word-spacing:3.384000px;}
.ws2e_c00047{word-spacing:3.744000px;}
.ws2d_c00047{word-spacing:3.888000px;}
.ws1b_c00047{word-spacing:4.248000px;}
.ws1c_c00047{word-spacing:4.320000px;}
.ws14_c00047{word-spacing:4.608000px;}
.ws17_c00047{word-spacing:7.128000px;}
.ws20_c00047{word-spacing:9.288000px;}
.ws1f_c00047{word-spacing:10.368000px;}
.ws2_c00047{word-spacing:10.584000px;}
.ws16_c00047{word-spacing:10.728000px;}
.ws15_c00047{word-spacing:10.800000px;}
.ws2f_c00047{word-spacing:13.608000px;}
.ws19_c00047{word-spacing:16.128000px;}
.ws1a_c00047{word-spacing:16.416000px;}
.ws9_c00047{word-spacing:16.776000px;}
.ws8_c00047{word-spacing:16.920000px;}
.ws18_c00047{word-spacing:18.000000px;}
.ws30_c00047{word-spacing:21.240000px;}
.ws28_c00047{word-spacing:27.144000px;}
.ws29_c00047{word-spacing:27.360000px;}
.ws13_c00047{word-spacing:27.720000px;}
.ws26_c00047{word-spacing:28.008000px;}
.ws25_c00047{word-spacing:28.080000px;}
.ws0_c00047{word-spacing:36.000000px;}
._1_c00047{margin-left:-1.080000px;}
._0_c00047{width:1.054080px;}
._3_c00047{width:2.232000px;}
._4_c00047{width:18.576000px;}
._2_c00047{width:27.360000px;}
.fc1_c00047{color:rgb(0,0,0);}
.fc0_c00047{color:rgb(35,31,32);}
.fs1_c00047{font-size:65.880000px;}
.fs0_c00047{font-size:72.000000px;}
.y0_c00047{bottom:0.000000px;}
.y1_c00047{bottom:61.748550px;}
.y20_c00047{bottom:115.424400px;}
.y1f_c00047{bottom:146.474400px;}
.y1e_c00047{bottom:177.524400px;}
.y1d_c00047{bottom:208.574400px;}
.y1c_c00047{bottom:270.674400px;}
.y1b_c00047{bottom:301.724400px;}
.y1a_c00047{bottom:332.774400px;}
.y19_c00047{bottom:363.824400px;}
.y18_c00047{bottom:394.874400px;}
.y17_c00047{bottom:425.924400px;}
.y16_c00047{bottom:488.024400px;}
.y15_c00047{bottom:519.074400px;}
.y14_c00047{bottom:550.124400px;}
.y13_c00047{bottom:581.174400px;}
.y12_c00047{bottom:612.224400px;}
.y11_c00047{bottom:674.324400px;}
.y10_c00047{bottom:705.374400px;}
.yf_c00047{bottom:736.424400px;}
.ye_c00047{bottom:767.474400px;}
.yd_c00047{bottom:798.434400px;}
.yc_c00047{bottom:860.534400px;}
.yb_c00047{bottom:891.584400px;}
.ya_c00047{bottom:922.634400px;}
.y9_c00047{bottom:953.684400px;}
.y8_c00047{bottom:984.734400px;}
.y7_c00047{bottom:1015.784400px;}
.y6_c00047{bottom:1046.834400px;}
.y5_c00047{bottom:1077.884400px;}
.y4_c00047{bottom:1139.804400px;}
.y3_c00047{bottom:1173.915120px;}
.y2_c00047{bottom:1194.074400px;}
.h2_c00047{height:50.400000px;}
.h3_c00047{height:54.331699px;}
.h4_c00047{height:76.824000px;}
.h5_c00047{height:78.048000px;}
.h0_c00047{height:1262.835000px;}
.h1_c00047{height:1263.000000px;}
.w0_c00047{width:892.914000px;}
.w1_c00047{width:893.250000px;}
.x0_c00047{left:0.000000px;}
.x1_c00047{left:54.000000px;}
.x2_c00047{left:127.620000px;}
.x3_c00047{left:159.570000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls9_c00047{letter-spacing:-0.256000pt;}
.lsa_c00047{letter-spacing:-0.192000pt;}
.ls7_c00047{letter-spacing:-0.128000pt;}
.ls8_c00047{letter-spacing:-0.064000pt;}
.ls6_c00047{letter-spacing:0.000000pt;}
.ls0_c00047{letter-spacing:0.064000pt;}
.ls4_c00047{letter-spacing:0.128000pt;}
.ls1_c00047{letter-spacing:19.840000pt;}
.ls5_c00047{letter-spacing:30.720000pt;}
.ls3_c00047{letter-spacing:40.012800pt;}
.ls2_c00047{letter-spacing:40.448000pt;}
.wsa_c00047{word-spacing:-16.128000pt;}
.ws5_c00047{word-spacing:-16.064000pt;}
.wsf_c00047{word-spacing:-16.000000pt;}
.wsd_c00047{word-spacing:-15.808000pt;}
.ws4_c00047{word-spacing:-0.384000pt;}
.ws27_c00047{word-spacing:-0.128000pt;}
.ws11_c00047{word-spacing:-0.117120pt;}
.ws12_c00047{word-spacing:-0.064000pt;}
.ws10_c00047{word-spacing:0.000000pt;}
.ws1_c00047{word-spacing:0.256000pt;}
.ws21_c00047{word-spacing:0.896000pt;}
.ws2c_c00047{word-spacing:0.960000pt;}
.wse_c00047{word-spacing:1.024000pt;}
.ws22_c00047{word-spacing:1.216000pt;}
.wsc_c00047{word-spacing:1.228800pt;}
.wsb_c00047{word-spacing:1.280000pt;}
.ws6_c00047{word-spacing:1.478400pt;}
.ws2a_c00047{word-spacing:1.664000pt;}
.ws2b_c00047{word-spacing:1.856000pt;}
.ws7_c00047{word-spacing:1.984000pt;}
.ws23_c00047{word-spacing:2.240000pt;}
.ws24_c00047{word-spacing:2.496000pt;}
.ws1d_c00047{word-spacing:2.816000pt;}
.ws1e_c00047{word-spacing:2.880000pt;}
.ws3_c00047{word-spacing:3.008000pt;}
.ws2e_c00047{word-spacing:3.328000pt;}
.ws2d_c00047{word-spacing:3.456000pt;}
.ws1b_c00047{word-spacing:3.776000pt;}
.ws1c_c00047{word-spacing:3.840000pt;}
.ws14_c00047{word-spacing:4.096000pt;}
.ws17_c00047{word-spacing:6.336000pt;}
.ws20_c00047{word-spacing:8.256000pt;}
.ws1f_c00047{word-spacing:9.216000pt;}
.ws2_c00047{word-spacing:9.408000pt;}
.ws16_c00047{word-spacing:9.536000pt;}
.ws15_c00047{word-spacing:9.600000pt;}
.ws2f_c00047{word-spacing:12.096000pt;}
.ws19_c00047{word-spacing:14.336000pt;}
.ws1a_c00047{word-spacing:14.592000pt;}
.ws9_c00047{word-spacing:14.912000pt;}
.ws8_c00047{word-spacing:15.040000pt;}
.ws18_c00047{word-spacing:16.000000pt;}
.ws30_c00047{word-spacing:18.880000pt;}
.ws28_c00047{word-spacing:24.128000pt;}
.ws29_c00047{word-spacing:24.320000pt;}
.ws13_c00047{word-spacing:24.640000pt;}
.ws26_c00047{word-spacing:24.896000pt;}
.ws25_c00047{word-spacing:24.960000pt;}
.ws0_c00047{word-spacing:32.000000pt;}
._1_c00047{margin-left:-0.960000pt;}
._0_c00047{width:0.936960pt;}
._3_c00047{width:1.984000pt;}
._4_c00047{width:16.512000pt;}
._2_c00047{width:24.320000pt;}
.fs1_c00047{font-size:58.560000pt;}
.fs0_c00047{font-size:64.000000pt;}
.y0_c00047{bottom:0.000000pt;}
.y1_c00047{bottom:54.887600pt;}
.y20_c00047{bottom:102.599467pt;}
.y1f_c00047{bottom:130.199467pt;}
.y1e_c00047{bottom:157.799467pt;}
.y1d_c00047{bottom:185.399467pt;}
.y1c_c00047{bottom:240.599467pt;}
.y1b_c00047{bottom:268.199467pt;}
.y1a_c00047{bottom:295.799467pt;}
.y19_c00047{bottom:323.399467pt;}
.y18_c00047{bottom:350.999467pt;}
.y17_c00047{bottom:378.599467pt;}
.y16_c00047{bottom:433.799467pt;}
.y15_c00047{bottom:461.399467pt;}
.y14_c00047{bottom:488.999467pt;}
.y13_c00047{bottom:516.599467pt;}
.y12_c00047{bottom:544.199467pt;}
.y11_c00047{bottom:599.399467pt;}
.y10_c00047{bottom:626.999467pt;}
.yf_c00047{bottom:654.599467pt;}
.ye_c00047{bottom:682.199467pt;}
.yd_c00047{bottom:709.719467pt;}
.yc_c00047{bottom:764.919467pt;}
.yb_c00047{bottom:792.519467pt;}
.ya_c00047{bottom:820.119467pt;}
.y9_c00047{bottom:847.719467pt;}
.y8_c00047{bottom:875.319467pt;}
.y7_c00047{bottom:902.919467pt;}
.y6_c00047{bottom:930.519467pt;}
.y5_c00047{bottom:958.119467pt;}
.y4_c00047{bottom:1013.159467pt;}
.y3_c00047{bottom:1043.480107pt;}
.y2_c00047{bottom:1061.399467pt;}
.h2_c00047{height:44.800000pt;}
.h3_c00047{height:48.294844pt;}
.h4_c00047{height:68.288000pt;}
.h5_c00047{height:69.376000pt;}
.h0_c00047{height:1122.520000pt;}
.h1_c00047{height:1122.666667pt;}
.w0_c00047{width:793.701333pt;}
.w1_c00047{width:794.000000pt;}
.x0_c00047{left:0.000000pt;}
.x1_c00047{left:48.000000pt;}
.x2_c00047{left:113.440000pt;}
.x3_c00047{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00048;src:url('chunks/assets/font_1bdbc79c9c5916e16deefca1.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00048;src:url('chunks/assets/font_b48f14701a1c7da6315be6ee.woff2')format("woff");}.ff3_c00048{font-family:ff3_c00048;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00048;src:url('chunks/assets/font_355c35fbb406b73b75c776e1.woff2')format("woff");}.ff4_c00048{font-family:ff4_c00048;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00048;src:url('chunks/assets/font_2a3790ae084984bbfef80781.woff2')format("woff");}.ff5_c00048{font-family:ff5_c00048;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00048;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00048{font-family:ff6_c00048;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00048;src:url('chunks/assets/font_8ae1b4195fb843f111b512df.woff2')format("woff");}.ff7_c00048{font-family:ff7_c00048;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00048;src:url('chunks/assets/font_b89ae8304cf75dbef829bb2f.woff2')format("woff");}.ff8_c00048{font-family:ff8_c00048;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00048;src:url('chunks/assets/font_127ace8f290c1f0a39898548.woff2')format("woff");}.ff9_c00048{font-family:ff9_c00048;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00048;src:url('chunks/assets/font_e8cc9e8c83a2198984f446c3.woff2')format("woff");}.ffa_c00048{font-family:ffa_c00048;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00048;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ffb_c00048{font-family:ffb_c00048;line-height:0.666504;font-style: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;}
.lse_c00048{letter-spacing:-0.360000px;}
.lsc_c00048{letter-spacing:-0.288000px;}
.lsd_c00048{letter-spacing:-0.216000px;}
.lsa_c00048{letter-spacing:-0.144000px;}
.lsb_c00048{letter-spacing:-0.072000px;}
.ls9_c00048{letter-spacing:0.000000px;}
.ls0_c00048{letter-spacing:0.072000px;}
.ls4_c00048{letter-spacing:0.144000px;}
.ls8_c00048{letter-spacing:19.440000px;}
.ls1_c00048{letter-spacing:22.320000px;}
.ls5_c00048{letter-spacing:34.560000px;}
.ls3_c00048{letter-spacing:45.014400px;}
.ls7_c00048{letter-spacing:45.432000px;}
.ls2_c00048{letter-spacing:45.504000px;}
.ls6_c00048{letter-spacing:47.232000px;}
.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;}
}
.wsa_c00048{word-spacing:-18.144000px;}
.ws5_c00048{word-spacing:-18.072000px;}
.wsf_c00048{word-spacing:-18.000000px;}
.wsd_c00048{word-spacing:-17.784000px;}
.ws12_c00048{word-spacing:-17.712000px;}
.ws4_c00048{word-spacing:-0.432000px;}
.ws33_c00048{word-spacing:-0.144000px;}
.ws1f_c00048{word-spacing:-0.131760px;}
.ws14_c00048{word-spacing:-0.072000px;}
.ws1e_c00048{word-spacing:0.000000px;}
.ws4b_c00048{word-spacing:0.072000px;}
.ws1_c00048{word-spacing:0.288000px;}
.ws4a_c00048{word-spacing:0.360000px;}
.ws40_c00048{word-spacing:0.648000px;}
.ws17_c00048{word-spacing:0.813600px;}
.ws46_c00048{word-spacing:0.936000px;}
.ws13_c00048{word-spacing:1.008000px;}
.ws37_c00048{word-spacing:1.080000px;}
.wse_c00048{word-spacing:1.152000px;}
.ws2e_c00048{word-spacing:1.368000px;}
.ws10_c00048{word-spacing:1.375200px;}
.wsc_c00048{word-spacing:1.382400px;}
.wsb_c00048{word-spacing:1.440000px;}
.ws11_c00048{word-spacing:1.512000px;}
.ws1d_c00048{word-spacing:1.656000px;}
.ws6_c00048{word-spacing:1.663200px;}
.ws36_c00048{word-spacing:1.872000px;}
.ws45_c00048{word-spacing:2.016000px;}
.ws19_c00048{word-spacing:2.088000px;}
.ws49_c00048{word-spacing:2.160000px;}
.ws7_c00048{word-spacing:2.232000px;}
.ws2f_c00048{word-spacing:2.520000px;}
.ws30_c00048{word-spacing:2.808000px;}
.ws2a_c00048{word-spacing:3.168000px;}
.ws2b_c00048{word-spacing:3.240000px;}
.ws3_c00048{word-spacing:3.384000px;}
.ws39_c00048{word-spacing:3.744000px;}
.ws38_c00048{word-spacing:3.888000px;}
.ws51_c00048{word-spacing:3.960000px;}
.ws28_c00048{word-spacing:4.248000px;}
.ws29_c00048{word-spacing:4.320000px;}
.ws21_c00048{word-spacing:4.608000px;}
.ws50_c00048{word-spacing:4.680000px;}
.ws3e_c00048{word-spacing:5.760000px;}
.ws24_c00048{word-spacing:7.128000px;}
.ws15_c00048{word-spacing:7.704000px;}
.ws44_c00048{word-spacing:7.848000px;}
.ws43_c00048{word-spacing:7.920000px;}
.ws16_c00048{word-spacing:7.927200px;}
.ws2d_c00048{word-spacing:9.288000px;}
.ws2c_c00048{word-spacing:10.368000px;}
.ws2_c00048{word-spacing:10.584000px;}
.ws23_c00048{word-spacing:10.728000px;}
.ws22_c00048{word-spacing:10.800000px;}
.ws48_c00048{word-spacing:10.872000px;}
.ws18_c00048{word-spacing:11.016000px;}
.ws47_c00048{word-spacing:11.160000px;}
.ws1b_c00048{word-spacing:13.536000px;}
.ws3a_c00048{word-spacing:13.608000px;}
.ws1a_c00048{word-spacing:13.680000px;}
.ws26_c00048{word-spacing:16.128000px;}
.ws27_c00048{word-spacing:16.416000px;}
.ws1c_c00048{word-spacing:16.711200px;}
.ws9_c00048{word-spacing:16.776000px;}
.ws8_c00048{word-spacing:16.920000px;}
.ws4f_c00048{word-spacing:17.136000px;}
.ws3c_c00048{word-spacing:17.208000px;}
.ws4e_c00048{word-spacing:17.280000px;}
.ws25_c00048{word-spacing:18.000000px;}
.ws3b_c00048{word-spacing:21.240000px;}
.ws4c_c00048{word-spacing:21.528000px;}
.ws4d_c00048{word-spacing:21.600000px;}
.ws3d_c00048{word-spacing:22.248000px;}
.ws3f_c00048{word-spacing:24.120000px;}
.ws34_c00048{word-spacing:27.144000px;}
.ws35_c00048{word-spacing:27.360000px;}
.ws20_c00048{word-spacing:27.720000px;}
.ws32_c00048{word-spacing:28.008000px;}
.ws31_c00048{word-spacing:28.080000px;}
.ws41_c00048{word-spacing:29.016000px;}
.ws42_c00048{word-spacing:29.088000px;}
.ws0_c00048{word-spacing:36.000000px;}
._1_c00048{margin-left:-1.080000px;}
._0_c00048{width:1.054080px;}
._3_c00048{width:2.232000px;}
._6_c00048{width:13.896000px;}
._4_c00048{width:18.576000px;}
._5_c00048{width:19.728000px;}
._8_c00048{width:21.816000px;}
._2_c00048{width:27.360000px;}
._7_c00048{width:31.752000px;}
._9_c00048{width:38.592000px;}
.fc2_c00048{color:transparent;}
.fc1_c00048{color:rgb(0,0,0);}
.fc0_c00048{color:rgb(35,31,32);}
.fs1_c00048{font-size:65.880000px;}
.fs0_c00048{font-size:72.000000px;}
.y0_c00048{bottom:0.000000px;}
.y1_c00048{bottom:61.748550px;}
.y20_c00048{bottom:115.424400px;}
.y30_c00048{bottom:142.604400px;}
.y1f_c00048{bottom:146.474400px;}
.y2f_c00048{bottom:173.654400px;}
.y1e_c00048{bottom:177.524400px;}
.y2e_c00048{bottom:204.704400px;}
.y1d_c00048{bottom:208.574400px;}
.y2d_c00048{bottom:235.754400px;}
.y2c_c00048{bottom:266.804400px;}
.y1c_c00048{bottom:270.674400px;}
.y1b_c00048{bottom:301.724400px;}
.y2b_c00048{bottom:328.904400px;}
.y1a_c00048{bottom:332.774400px;}
.y2a_c00048{bottom:359.864400px;}
.y19_c00048{bottom:363.824400px;}
.y29_c00048{bottom:392.264400px;}
.y18_c00048{bottom:394.874400px;}
.y28_c00048{bottom:423.224400px;}
.y17_c00048{bottom:425.924400px;}
.y27_c00048{bottom:455.624400px;}
.y26_c00048{bottom:486.674400px;}
.y16_c00048{bottom:488.024400px;}
.y25_c00048{bottom:517.724400px;}
.y15_c00048{bottom:519.074400px;}
.y24_c00048{bottom:548.774400px;}
.y14_c00048{bottom:550.124400px;}
.y13_c00048{bottom:581.174400px;}
.y12_c00048{bottom:612.224400px;}
.y23_c00048{bottom:643.274400px;}
.y11_c00048{bottom:674.324400px;}
.y10_c00048{bottom:705.374400px;}
.yf_c00048{bottom:736.424400px;}
.ye_c00048{bottom:767.474400px;}
.yd_c00048{bottom:798.434400px;}
.y22_c00048{bottom:829.484400px;}
.yc_c00048{bottom:860.534400px;}
.yb_c00048{bottom:891.584400px;}
.ya_c00048{bottom:922.634400px;}
.y9_c00048{bottom:953.684400px;}
.y8_c00048{bottom:984.734400px;}
.y7_c00048{bottom:1015.784400px;}
.y6_c00048{bottom:1046.834400px;}
.y5_c00048{bottom:1077.884400px;}
.y21_c00048{bottom:1108.934400px;}
.y4_c00048{bottom:1139.804400px;}
.y3_c00048{bottom:1173.915120px;}
.y2_c00048{bottom:1194.074400px;}
.h2_c00048{height:50.400000px;}
.h3_c00048{height:54.331699px;}
.h4_c00048{height:76.824000px;}
.h5_c00048{height:78.048000px;}
.h0_c00048{height:1262.835000px;}
.h1_c00048{height:1263.000000px;}
.w2_c00048{width:0.000000px;}
.w3_c00048{width:0.066000px;}
.w0_c00048{width:892.914000px;}
.w1_c00048{width:893.250000px;}
.x1_c00048{left:-838.913400px;}
.x2_c00048{left:-765.293400px;}
.x3_c00048{left:-733.343400px;}
.x0_c00048{left:0.000000px;}
.x6_c00048{left:127.618740px;}
.x8_c00048{left:148.950000px;}
.x7_c00048{left:159.570000px;}
.x9_c00048{left:170.190000px;}
.x5_c00048{left:701.730000px;}
.x4_c00048{left:804.366150px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.lse_c00048{letter-spacing:-0.320000pt;}
.lsc_c00048{letter-spacing:-0.256000pt;}
.lsd_c00048{letter-spacing:-0.192000pt;}
.lsa_c00048{letter-spacing:-0.128000pt;}
.lsb_c00048{letter-spacing:-0.064000pt;}
.ls9_c00048{letter-spacing:0.000000pt;}
.ls0_c00048{letter-spacing:0.064000pt;}
.ls4_c00048{letter-spacing:0.128000pt;}
.ls8_c00048{letter-spacing:17.280000pt;}
.ls1_c00048{letter-spacing:19.840000pt;}
.ls5_c00048{letter-spacing:30.720000pt;}
.ls3_c00048{letter-spacing:40.012800pt;}
.ls7_c00048{letter-spacing:40.384000pt;}
.ls2_c00048{letter-spacing:40.448000pt;}
.ls6_c00048{letter-spacing:41.984000pt;}
.wsa_c00048{word-spacing:-16.128000pt;}
.ws5_c00048{word-spacing:-16.064000pt;}
.wsf_c00048{word-spacing:-16.000000pt;}
.wsd_c00048{word-spacing:-15.808000pt;}
.ws12_c00048{word-spacing:-15.744000pt;}
.ws4_c00048{word-spacing:-0.384000pt;}
.ws33_c00048{word-spacing:-0.128000pt;}
.ws1f_c00048{word-spacing:-0.117120pt;}
.ws14_c00048{word-spacing:-0.064000pt;}
.ws1e_c00048{word-spacing:0.000000pt;}
.ws4b_c00048{word-spacing:0.064000pt;}
.ws1_c00048{word-spacing:0.256000pt;}
.ws4a_c00048{word-spacing:0.320000pt;}
.ws40_c00048{word-spacing:0.576000pt;}
.ws17_c00048{word-spacing:0.723200pt;}
.ws46_c00048{word-spacing:0.832000pt;}
.ws13_c00048{word-spacing:0.896000pt;}
.ws37_c00048{word-spacing:0.960000pt;}
.wse_c00048{word-spacing:1.024000pt;}
.ws2e_c00048{word-spacing:1.216000pt;}
.ws10_c00048{word-spacing:1.222400pt;}
.wsc_c00048{word-spacing:1.228800pt;}
.wsb_c00048{word-spacing:1.280000pt;}
.ws11_c00048{word-spacing:1.344000pt;}
.ws1d_c00048{word-spacing:1.472000pt;}
.ws6_c00048{word-spacing:1.478400pt;}
.ws36_c00048{word-spacing:1.664000pt;}
.ws45_c00048{word-spacing:1.792000pt;}
.ws19_c00048{word-spacing:1.856000pt;}
.ws49_c00048{word-spacing:1.920000pt;}
.ws7_c00048{word-spacing:1.984000pt;}
.ws2f_c00048{word-spacing:2.240000pt;}
.ws30_c00048{word-spacing:2.496000pt;}
.ws2a_c00048{word-spacing:2.816000pt;}
.ws2b_c00048{word-spacing:2.880000pt;}
.ws3_c00048{word-spacing:3.008000pt;}
.ws39_c00048{word-spacing:3.328000pt;}
.ws38_c00048{word-spacing:3.456000pt;}
.ws51_c00048{word-spacing:3.520000pt;}
.ws28_c00048{word-spacing:3.776000pt;}
.ws29_c00048{word-spacing:3.840000pt;}
.ws21_c00048{word-spacing:4.096000pt;}
.ws50_c00048{word-spacing:4.160000pt;}
.ws3e_c00048{word-spacing:5.120000pt;}
.ws24_c00048{word-spacing:6.336000pt;}
.ws15_c00048{word-spacing:6.848000pt;}
.ws44_c00048{word-spacing:6.976000pt;}
.ws43_c00048{word-spacing:7.040000pt;}
.ws16_c00048{word-spacing:7.046400pt;}
.ws2d_c00048{word-spacing:8.256000pt;}
.ws2c_c00048{word-spacing:9.216000pt;}
.ws2_c00048{word-spacing:9.408000pt;}
.ws23_c00048{word-spacing:9.536000pt;}
.ws22_c00048{word-spacing:9.600000pt;}
.ws48_c00048{word-spacing:9.664000pt;}
.ws18_c00048{word-spacing:9.792000pt;}
.ws47_c00048{word-spacing:9.920000pt;}
.ws1b_c00048{word-spacing:12.032000pt;}
.ws3a_c00048{word-spacing:12.096000pt;}
.ws1a_c00048{word-spacing:12.160000pt;}
.ws26_c00048{word-spacing:14.336000pt;}
.ws27_c00048{word-spacing:14.592000pt;}
.ws1c_c00048{word-spacing:14.854400pt;}
.ws9_c00048{word-spacing:14.912000pt;}
.ws8_c00048{word-spacing:15.040000pt;}
.ws4f_c00048{word-spacing:15.232000pt;}
.ws3c_c00048{word-spacing:15.296000pt;}
.ws4e_c00048{word-spacing:15.360000pt;}
.ws25_c00048{word-spacing:16.000000pt;}
.ws3b_c00048{word-spacing:18.880000pt;}
.ws4c_c00048{word-spacing:19.136000pt;}
.ws4d_c00048{word-spacing:19.200000pt;}
.ws3d_c00048{word-spacing:19.776000pt;}
.ws3f_c00048{word-spacing:21.440000pt;}
.ws34_c00048{word-spacing:24.128000pt;}
.ws35_c00048{word-spacing:24.320000pt;}
.ws20_c00048{word-spacing:24.640000pt;}
.ws32_c00048{word-spacing:24.896000pt;}
.ws31_c00048{word-spacing:24.960000pt;}
.ws41_c00048{word-spacing:25.792000pt;}
.ws42_c00048{word-spacing:25.856000pt;}
.ws0_c00048{word-spacing:32.000000pt;}
._1_c00048{margin-left:-0.960000pt;}
._0_c00048{width:0.936960pt;}
._3_c00048{width:1.984000pt;}
._6_c00048{width:12.352000pt;}
._4_c00048{width:16.512000pt;}
._5_c00048{width:17.536000pt;}
._8_c00048{width:19.392000pt;}
._2_c00048{width:24.320000pt;}
._7_c00048{width:28.224000pt;}
._9_c00048{width:34.304000pt;}
.fs1_c00048{font-size:58.560000pt;}
.fs0_c00048{font-size:64.000000pt;}
.y0_c00048{bottom:0.000000pt;}
.y1_c00048{bottom:54.887600pt;}
.y20_c00048{bottom:102.599467pt;}
.y30_c00048{bottom:126.759467pt;}
.y1f_c00048{bottom:130.199467pt;}
.y2f_c00048{bottom:154.359467pt;}
.y1e_c00048{bottom:157.799467pt;}
.y2e_c00048{bottom:181.959467pt;}
.y1d_c00048{bottom:185.399467pt;}
.y2d_c00048{bottom:209.559467pt;}
.y2c_c00048{bottom:237.159467pt;}
.y1c_c00048{bottom:240.599467pt;}
.y1b_c00048{bottom:268.199467pt;}
.y2b_c00048{bottom:292.359467pt;}
.y1a_c00048{bottom:295.799467pt;}
.y2a_c00048{bottom:319.879467pt;}
.y19_c00048{bottom:323.399467pt;}
.y29_c00048{bottom:348.679467pt;}
.y18_c00048{bottom:350.999467pt;}
.y28_c00048{bottom:376.199467pt;}
.y17_c00048{bottom:378.599467pt;}
.y27_c00048{bottom:404.999467pt;}
.y26_c00048{bottom:432.599467pt;}
.y16_c00048{bottom:433.799467pt;}
.y25_c00048{bottom:460.199467pt;}
.y15_c00048{bottom:461.399467pt;}
.y24_c00048{bottom:487.799467pt;}
.y14_c00048{bottom:488.999467pt;}
.y13_c00048{bottom:516.599467pt;}
.y12_c00048{bottom:544.199467pt;}
.y23_c00048{bottom:571.799467pt;}
.y11_c00048{bottom:599.399467pt;}
.y10_c00048{bottom:626.999467pt;}
.yf_c00048{bottom:654.599467pt;}
.ye_c00048{bottom:682.199467pt;}
.yd_c00048{bottom:709.719467pt;}
.y22_c00048{bottom:737.319467pt;}
.yc_c00048{bottom:764.919467pt;}
.yb_c00048{bottom:792.519467pt;}
.ya_c00048{bottom:820.119467pt;}
.y9_c00048{bottom:847.719467pt;}
.y8_c00048{bottom:875.319467pt;}
.y7_c00048{bottom:902.919467pt;}
.y6_c00048{bottom:930.519467pt;}
.y5_c00048{bottom:958.119467pt;}
.y21_c00048{bottom:985.719467pt;}
.y4_c00048{bottom:1013.159467pt;}
.y3_c00048{bottom:1043.480107pt;}
.y2_c00048{bottom:1061.399467pt;}
.h2_c00048{height:44.800000pt;}
.h3_c00048{height:48.294844pt;}
.h4_c00048{height:68.288000pt;}
.h5_c00048{height:69.376000pt;}
.h0_c00048{height:1122.520000pt;}
.h1_c00048{height:1122.666667pt;}
.w2_c00048{width:0.000000pt;}
.w3_c00048{width:0.058667pt;}
.w0_c00048{width:793.701333pt;}
.w1_c00048{width:794.000000pt;}
.x1_c00048{left:-745.700800pt;}
.x2_c00048{left:-680.260800pt;}
.x3_c00048{left:-651.860800pt;}
.x0_c00048{left:0.000000pt;}
.x6_c00048{left:113.438880pt;}
.x8_c00048{left:132.400000pt;}
.x7_c00048{left:141.840000pt;}
.x9_c00048{left:151.280000pt;}
.x5_c00048{left:623.760000pt;}
.x4_c00048{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00049;src:url('chunks/assets/font_7d8556af657e290ea555f7a7.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00049;src:url('chunks/assets/font_2ffea9b57eb52efc5c77f32f.woff2')format("woff");}.ff3_c00049{font-family:ff3_c00049;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00049;src:url('chunks/assets/font_e110ea5691fbed51481c68a7.woff2')format("woff");}.ff4_c00049{font-family:ff4_c00049;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c00049{letter-spacing:-0.360000px;}
.ls7_c00049{letter-spacing:-0.288000px;}
.ls8_c00049{letter-spacing:-0.216000px;}
.lsa_c00049{letter-spacing:-0.072000px;}
.ls6_c00049{letter-spacing:0.000000px;}
.ls0_c00049{letter-spacing:0.072000px;}
.ls2_c00049{letter-spacing:0.144000px;}
.ls1_c00049{letter-spacing:23.760000px;}
.ls3_c00049{letter-spacing:24.912000px;}
.ls5_c00049{letter-spacing:32.112000px;}
.ls4_c00049{letter-spacing:32.400000px;}
.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;}
}
.wsf_c00049{word-spacing:-18.144000px;}
.ws5_c00049{word-spacing:-18.072000px;}
.ws3_c00049{word-spacing:-18.000000px;}
.ws1_c00049{word-spacing:-17.712000px;}
.ws1c_c00049{word-spacing:-0.432000px;}
.ws2a_c00049{word-spacing:-0.144000px;}
.ws11_c00049{word-spacing:-0.131760px;}
.ws20_c00049{word-spacing:-0.072000px;}
.ws6_c00049{word-spacing:0.000000px;}
.ws33_c00049{word-spacing:0.072000px;}
.ws31_c00049{word-spacing:0.288000px;}
.ws25_c00049{word-spacing:0.360000px;}
.ws27_c00049{word-spacing:1.152000px;}
.ws1f_c00049{word-spacing:1.368000px;}
.ws9_c00049{word-spacing:1.440000px;}
.ws1e_c00049{word-spacing:2.016000px;}
.ws0_c00049{word-spacing:2.030400px;}
.ws1d_c00049{word-spacing:2.088000px;}
.ws12_c00049{word-spacing:2.160000px;}
.ws30_c00049{word-spacing:2.448000px;}
.wsd_c00049{word-spacing:2.520000px;}
.wsc_c00049{word-spacing:2.872800px;}
.ws2f_c00049{word-spacing:2.880000px;}
.wsa_c00049{word-spacing:3.448800px;}
.wsb_c00049{word-spacing:3.456000px;}
.ws13_c00049{word-spacing:3.528000px;}
.ws14_c00049{word-spacing:3.600000px;}
.ws2_c00049{word-spacing:3.614400px;}
.wse_c00049{word-spacing:3.672000px;}
.ws23_c00049{word-spacing:3.744000px;}
.ws35_c00049{word-spacing:3.816000px;}
.ws36_c00049{word-spacing:3.960000px;}
.ws24_c00049{word-spacing:4.176000px;}
.ws32_c00049{word-spacing:4.248000px;}
.ws26_c00049{word-spacing:4.320000px;}
.ws16_c00049{word-spacing:5.688000px;}
.ws15_c00049{word-spacing:5.760000px;}
.ws37_c00049{word-spacing:6.048000px;}
.ws29_c00049{word-spacing:7.128000px;}
.ws28_c00049{word-spacing:7.200000px;}
.ws18_c00049{word-spacing:10.080000px;}
.ws4_c00049{word-spacing:11.304000px;}
.ws19_c00049{word-spacing:11.520000px;}
.ws17_c00049{word-spacing:13.680000px;}
.ws2c_c00049{word-spacing:13.896000px;}
.ws2e_c00049{word-spacing:14.184000px;}
.ws2d_c00049{word-spacing:14.256000px;}
.ws2b_c00049{word-spacing:14.400000px;}
.ws39_c00049{word-spacing:14.976000px;}
.ws38_c00049{word-spacing:15.048000px;}
.ws1b_c00049{word-spacing:15.408000px;}
.ws1a_c00049{word-spacing:15.480000px;}
.ws34_c00049{word-spacing:16.128000px;}
.ws22_c00049{word-spacing:19.008000px;}
.ws7_c00049{word-spacing:19.382400px;}
.ws21_c00049{word-spacing:19.440000px;}
.ws8_c00049{word-spacing:20.088000px;}
.ws10_c00049{word-spacing:36.000000px;}
._2_c00049{margin-left:-1.440000px;}
._0_c00049{width:1.054080px;}
._1_c00049{width:2.160000px;}
._4_c00049{width:3.888000px;}
._6_c00049{width:6.904800px;}
._7_c00049{width:14.832000px;}
._3_c00049{width:21.625920px;}
._5_c00049{width:25.200000px;}
.fc1_c00049{color:rgb(0,0,0);}
.fc0_c00049{color:rgb(35,31,32);}
.fs1_c00049{font-size:65.880000px;}
.fs0_c00049{font-size:72.000000px;}
.y0_c00049{bottom:0.000000px;}
.y1_c00049{bottom:61.748550px;}
.y21_c00049{bottom:115.424400px;}
.y20_c00049{bottom:146.474400px;}
.y1f_c00049{bottom:177.524400px;}
.y1e_c00049{bottom:208.574400px;}
.y1d_c00049{bottom:239.624400px;}
.y1c_c00049{bottom:301.544400px;}
.y1b_c00049{bottom:363.824400px;}
.y1a_c00049{bottom:394.874400px;}
.y19_c00049{bottom:425.924400px;}
.y18_c00049{bottom:456.974400px;}
.y17_c00049{bottom:488.024400px;}
.y16_c00049{bottom:519.074400px;}
.y15_c00049{bottom:550.124400px;}
.y14_c00049{bottom:581.174400px;}
.y13_c00049{bottom:643.274400px;}
.y12_c00049{bottom:674.324400px;}
.y11_c00049{bottom:705.374400px;}
.y10_c00049{bottom:736.424400px;}
.yf_c00049{bottom:767.474400px;}
.ye_c00049{bottom:798.434400px;}
.yd_c00049{bottom:829.484400px;}
.yc_c00049{bottom:860.534400px;}
.yb_c00049{bottom:922.634400px;}
.ya_c00049{bottom:953.684400px;}
.y9_c00049{bottom:984.734400px;}
.y8_c00049{bottom:1015.784400px;}
.y7_c00049{bottom:1046.834400px;}
.y6_c00049{bottom:1077.884400px;}
.y5_c00049{bottom:1108.934400px;}
.y4_c00049{bottom:1139.984400px;}
.y3_c00049{bottom:1173.915120px;}
.y2_c00049{bottom:1194.074400px;}
.h2_c00049{height:50.400000px;}
.h3_c00049{height:54.331699px;}
.h4_c00049{height:76.824000px;}
.h0_c00049{height:1262.835000px;}
.h1_c00049{height:1263.000000px;}
.w0_c00049{width:892.914000px;}
.w1_c00049{width:893.250000px;}
.x0_c00049{left:0.000000px;}
.x1_c00049{left:54.000000px;}
.x2_c00049{left:127.620000px;}
.x3_c00049{left:159.570000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls9_c00049{letter-spacing:-0.320000pt;}
.ls7_c00049{letter-spacing:-0.256000pt;}
.ls8_c00049{letter-spacing:-0.192000pt;}
.lsa_c00049{letter-spacing:-0.064000pt;}
.ls6_c00049{letter-spacing:0.000000pt;}
.ls0_c00049{letter-spacing:0.064000pt;}
.ls2_c00049{letter-spacing:0.128000pt;}
.ls1_c00049{letter-spacing:21.120000pt;}
.ls3_c00049{letter-spacing:22.144000pt;}
.ls5_c00049{letter-spacing:28.544000pt;}
.ls4_c00049{letter-spacing:28.800000pt;}
.wsf_c00049{word-spacing:-16.128000pt;}
.ws5_c00049{word-spacing:-16.064000pt;}
.ws3_c00049{word-spacing:-16.000000pt;}
.ws1_c00049{word-spacing:-15.744000pt;}
.ws1c_c00049{word-spacing:-0.384000pt;}
.ws2a_c00049{word-spacing:-0.128000pt;}
.ws11_c00049{word-spacing:-0.117120pt;}
.ws20_c00049{word-spacing:-0.064000pt;}
.ws6_c00049{word-spacing:0.000000pt;}
.ws33_c00049{word-spacing:0.064000pt;}
.ws31_c00049{word-spacing:0.256000pt;}
.ws25_c00049{word-spacing:0.320000pt;}
.ws27_c00049{word-spacing:1.024000pt;}
.ws1f_c00049{word-spacing:1.216000pt;}
.ws9_c00049{word-spacing:1.280000pt;}
.ws1e_c00049{word-spacing:1.792000pt;}
.ws0_c00049{word-spacing:1.804800pt;}
.ws1d_c00049{word-spacing:1.856000pt;}
.ws12_c00049{word-spacing:1.920000pt;}
.ws30_c00049{word-spacing:2.176000pt;}
.wsd_c00049{word-spacing:2.240000pt;}
.wsc_c00049{word-spacing:2.553600pt;}
.ws2f_c00049{word-spacing:2.560000pt;}
.wsa_c00049{word-spacing:3.065600pt;}
.wsb_c00049{word-spacing:3.072000pt;}
.ws13_c00049{word-spacing:3.136000pt;}
.ws14_c00049{word-spacing:3.200000pt;}
.ws2_c00049{word-spacing:3.212800pt;}
.wse_c00049{word-spacing:3.264000pt;}
.ws23_c00049{word-spacing:3.328000pt;}
.ws35_c00049{word-spacing:3.392000pt;}
.ws36_c00049{word-spacing:3.520000pt;}
.ws24_c00049{word-spacing:3.712000pt;}
.ws32_c00049{word-spacing:3.776000pt;}
.ws26_c00049{word-spacing:3.840000pt;}
.ws16_c00049{word-spacing:5.056000pt;}
.ws15_c00049{word-spacing:5.120000pt;}
.ws37_c00049{word-spacing:5.376000pt;}
.ws29_c00049{word-spacing:6.336000pt;}
.ws28_c00049{word-spacing:6.400000pt;}
.ws18_c00049{word-spacing:8.960000pt;}
.ws4_c00049{word-spacing:10.048000pt;}
.ws19_c00049{word-spacing:10.240000pt;}
.ws17_c00049{word-spacing:12.160000pt;}
.ws2c_c00049{word-spacing:12.352000pt;}
.ws2e_c00049{word-spacing:12.608000pt;}
.ws2d_c00049{word-spacing:12.672000pt;}
.ws2b_c00049{word-spacing:12.800000pt;}
.ws39_c00049{word-spacing:13.312000pt;}
.ws38_c00049{word-spacing:13.376000pt;}
.ws1b_c00049{word-spacing:13.696000pt;}
.ws1a_c00049{word-spacing:13.760000pt;}
.ws34_c00049{word-spacing:14.336000pt;}
.ws22_c00049{word-spacing:16.896000pt;}
.ws7_c00049{word-spacing:17.228800pt;}
.ws21_c00049{word-spacing:17.280000pt;}
.ws8_c00049{word-spacing:17.856000pt;}
.ws10_c00049{word-spacing:32.000000pt;}
._2_c00049{margin-left:-1.280000pt;}
._0_c00049{width:0.936960pt;}
._1_c00049{width:1.920000pt;}
._4_c00049{width:3.456000pt;}
._6_c00049{width:6.137600pt;}
._7_c00049{width:13.184000pt;}
._3_c00049{width:19.223040pt;}
._5_c00049{width:22.400000pt;}
.fs1_c00049{font-size:58.560000pt;}
.fs0_c00049{font-size:64.000000pt;}
.y0_c00049{bottom:0.000000pt;}
.y1_c00049{bottom:54.887600pt;}
.y21_c00049{bottom:102.599467pt;}
.y20_c00049{bottom:130.199467pt;}
.y1f_c00049{bottom:157.799467pt;}
.y1e_c00049{bottom:185.399467pt;}
.y1d_c00049{bottom:212.999467pt;}
.y1c_c00049{bottom:268.039467pt;}
.y1b_c00049{bottom:323.399467pt;}
.y1a_c00049{bottom:350.999467pt;}
.y19_c00049{bottom:378.599467pt;}
.y18_c00049{bottom:406.199467pt;}
.y17_c00049{bottom:433.799467pt;}
.y16_c00049{bottom:461.399467pt;}
.y15_c00049{bottom:488.999467pt;}
.y14_c00049{bottom:516.599467pt;}
.y13_c00049{bottom:571.799467pt;}
.y12_c00049{bottom:599.399467pt;}
.y11_c00049{bottom:626.999467pt;}
.y10_c00049{bottom:654.599467pt;}
.yf_c00049{bottom:682.199467pt;}
.ye_c00049{bottom:709.719467pt;}
.yd_c00049{bottom:737.319467pt;}
.yc_c00049{bottom:764.919467pt;}
.yb_c00049{bottom:820.119467pt;}
.ya_c00049{bottom:847.719467pt;}
.y9_c00049{bottom:875.319467pt;}
.y8_c00049{bottom:902.919467pt;}
.y7_c00049{bottom:930.519467pt;}
.y6_c00049{bottom:958.119467pt;}
.y5_c00049{bottom:985.719467pt;}
.y4_c00049{bottom:1013.319467pt;}
.y3_c00049{bottom:1043.480107pt;}
.y2_c00049{bottom:1061.399467pt;}
.h2_c00049{height:44.800000pt;}
.h3_c00049{height:48.294844pt;}
.h4_c00049{height:68.288000pt;}
.h0_c00049{height:1122.520000pt;}
.h1_c00049{height:1122.666667pt;}
.w0_c00049{width:793.701333pt;}
.w1_c00049{width:794.000000pt;}
.x0_c00049{left:0.000000pt;}
.x1_c00049{left:48.000000pt;}
.x2_c00049{left:113.440000pt;}
.x3_c00049{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00050;src:url('chunks/assets/font_a6dcb1ecc06c4baf053ea783.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00050;src:url('chunks/assets/font_7e89af8c1615d9c85a82876f.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00050;src:url('chunks/assets/font_992babd3ebee8d0d4002f079.woff2')format("woff");}.ff4_c00050{font-family:ff4_c00050;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00050;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00050{font-family:ff5_c00050;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00050;src:url('chunks/assets/font_027983eca9dbdb854d2bf9a6.woff2')format("woff");}.ff6_c00050{font-family:ff6_c00050;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00050;src:url('chunks/assets/font_6529d00811be708f551f7e82.woff2')format("woff");}.ff7_c00050{font-family:ff7_c00050;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00050;src:url('chunks/assets/font_59d65c18b36d44a659d7a8fb.woff2')format("woff");}.ff8_c00050{font-family:ff8_c00050;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00050;src:url('chunks/assets/font_613bfbf14c7c26bcbdabf12f.woff2')format("woff");}.ff9_c00050{font-family:ff9_c00050;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse_c00050{letter-spacing:-0.360000px;}
.lsc_c00050{letter-spacing:-0.288000px;}
.lsd_c00050{letter-spacing:-0.216000px;}
.lsf_c00050{letter-spacing:-0.072000px;}
.ls10_c00050{letter-spacing:-0.065880px;}
.lsb_c00050{letter-spacing:0.000000px;}
.ls0_c00050{letter-spacing:0.072000px;}
.ls2_c00050{letter-spacing:0.144000px;}
.ls9_c00050{letter-spacing:0.197640px;}
.lsa_c00050{letter-spacing:16.325064px;}
.ls8_c00050{letter-spacing:19.080000px;}
.ls1_c00050{letter-spacing:23.760000px;}
.ls3_c00050{letter-spacing:24.912000px;}
.ls7_c00050{letter-spacing:30.240000px;}
.ls5_c00050{letter-spacing:32.112000px;}
.ls4_c00050{letter-spacing:32.400000px;}
.ls6_c00050{letter-spacing:35.280000px;}
.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;}
}
.wsf_c00050{word-spacing:-18.144000px;}
.ws5_c00050{word-spacing:-18.072000px;}
.ws3_c00050{word-spacing:-18.000000px;}
.ws1_c00050{word-spacing:-17.712000px;}
.ws1f_c00050{word-spacing:-0.432000px;}
.ws2d_c00050{word-spacing:-0.144000px;}
.ws14_c00050{word-spacing:-0.131760px;}
.ws23_c00050{word-spacing:-0.072000px;}
.ws6_c00050{word-spacing:0.000000px;}
.ws35_c00050{word-spacing:0.072000px;}
.ws51_c00050{word-spacing:0.131760px;}
.ws33_c00050{word-spacing:0.288000px;}
.ws28_c00050{word-spacing:0.360000px;}
.ws43_c00050{word-spacing:1.080000px;}
.ws2a_c00050{word-spacing:1.152000px;}
.ws4c_c00050{word-spacing:1.317600px;}
.ws22_c00050{word-spacing:1.368000px;}
.ws9_c00050{word-spacing:1.440000px;}
.ws4b_c00050{word-spacing:1.581120px;}
.ws3c_c00050{word-spacing:1.656000px;}
.ws3d_c00050{word-spacing:1.728000px;}
.ws21_c00050{word-spacing:2.016000px;}
.ws11_c00050{word-spacing:2.023200px;}
.ws0_c00050{word-spacing:2.030400px;}
.ws20_c00050{word-spacing:2.088000px;}
.ws15_c00050{word-spacing:2.160000px;}
.ws32_c00050{word-spacing:2.448000px;}
.wsd_c00050{word-spacing:2.520000px;}
.wsc_c00050{word-spacing:2.872800px;}
.ws13_c00050{word-spacing:2.880000px;}
.wsa_c00050{word-spacing:3.448800px;}
.wsb_c00050{word-spacing:3.456000px;}
.ws16_c00050{word-spacing:3.528000px;}
.ws17_c00050{word-spacing:3.600000px;}
.ws2_c00050{word-spacing:3.614400px;}
.wse_c00050{word-spacing:3.672000px;}
.ws26_c00050{word-spacing:3.744000px;}
.ws37_c00050{word-spacing:3.816000px;}
.ws38_c00050{word-spacing:3.960000px;}
.ws27_c00050{word-spacing:4.176000px;}
.ws34_c00050{word-spacing:4.248000px;}
.ws29_c00050{word-spacing:4.320000px;}
.ws46_c00050{word-spacing:4.680000px;}
.ws44_c00050{word-spacing:4.968000px;}
.ws45_c00050{word-spacing:5.040000px;}
.ws48_c00050{word-spacing:5.400000px;}
.ws19_c00050{word-spacing:5.688000px;}
.ws18_c00050{word-spacing:5.760000px;}
.ws39_c00050{word-spacing:6.048000px;}
.ws47_c00050{word-spacing:6.840000px;}
.ws4e_c00050{word-spacing:7.115040px;}
.ws2c_c00050{word-spacing:7.128000px;}
.ws2b_c00050{word-spacing:7.200000px;}
.ws55_c00050{word-spacing:8.928000px;}
.ws56_c00050{word-spacing:9.000000px;}
.ws4d_c00050{word-spacing:9.618480px;}
.ws57_c00050{word-spacing:9.720000px;}
.ws1b_c00050{word-spacing:10.080000px;}
.ws4_c00050{word-spacing:11.304000px;}
.ws1c_c00050{word-spacing:11.520000px;}
.ws42_c00050{word-spacing:11.808000px;}
.ws40_c00050{word-spacing:12.600000px;}
.ws41_c00050{word-spacing:12.960000px;}
.ws4a_c00050{word-spacing:13.248000px;}
.ws1a_c00050{word-spacing:13.680000px;}
.ws2f_c00050{word-spacing:13.896000px;}
.ws31_c00050{word-spacing:14.184000px;}
.ws30_c00050{word-spacing:14.256000px;}
.ws53_c00050{word-spacing:14.328000px;}
.ws2e_c00050{word-spacing:14.400000px;}
.ws3b_c00050{word-spacing:14.976000px;}
.ws3a_c00050{word-spacing:15.048000px;}
.ws1e_c00050{word-spacing:15.408000px;}
.ws1d_c00050{word-spacing:15.480000px;}
.ws36_c00050{word-spacing:16.128000px;}
.ws49_c00050{word-spacing:17.280000px;}
.ws3f_c00050{word-spacing:17.568000px;}
.ws3e_c00050{word-spacing:17.640000px;}
.ws25_c00050{word-spacing:19.008000px;}
.ws12_c00050{word-spacing:19.375200px;}
.ws7_c00050{word-spacing:19.382400px;}
.ws24_c00050{word-spacing:19.440000px;}
.ws8_c00050{word-spacing:20.088000px;}
.ws52_c00050{word-spacing:20.160000px;}
.ws54_c00050{word-spacing:25.488000px;}
.ws4f_c00050{word-spacing:28.328400px;}
.ws50_c00050{word-spacing:28.591920px;}
.ws10_c00050{word-spacing:36.000000px;}
._2_c00050{margin-left:-1.440000px;}
._0_c00050{width:1.054080px;}
._1_c00050{width:2.160000px;}
._4_c00050{width:3.888000px;}
._6_c00050{width:6.904800px;}
._7_c00050{width:14.832000px;}
._8_c00050{width:18.720000px;}
._3_c00050{width:21.625920px;}
._5_c00050{width:25.200000px;}
.fc2_c00050{color:transparent;}
.fc1_c00050{color:rgb(0,0,0);}
.fc0_c00050{color:rgb(35,31,32);}
.fs1_c00050{font-size:65.880000px;}
.fs0_c00050{font-size:72.000000px;}
.y0_c00050{bottom:0.000000px;}
.y1_c00050{bottom:61.748550px;}
.y21_c00050{bottom:115.424400px;}
.y30_c00050{bottom:128.384400px;}
.y20_c00050{bottom:146.474400px;}
.y2f_c00050{bottom:159.434400px;}
.y1f_c00050{bottom:177.524400px;}
.y2e_c00050{bottom:190.484400px;}
.y1e_c00050{bottom:208.574400px;}
.y2d_c00050{bottom:221.534400px;}
.y1d_c00050{bottom:239.624400px;}
.y2c_c00050{bottom:252.584400px;}
.y1c_c00050{bottom:301.544400px;}
.y2b_c00050{bottom:314.684400px;}
.y2a_c00050{bottom:345.734400px;}
.y1b_c00050{bottom:363.824400px;}
.y29_c00050{bottom:376.784400px;}
.y1a_c00050{bottom:394.874400px;}
.y28_c00050{bottom:407.834400px;}
.y19_c00050{bottom:425.924400px;}
.y18_c00050{bottom:456.974400px;}
.y27_c00050{bottom:468.586110px;}
.y17_c00050{bottom:488.024400px;}
.y26_c00050{bottom:496.930980px;}
.y16_c00050{bottom:519.074400px;}
.y25_c00050{bottom:525.374670px;}
.y15_c00050{bottom:550.124400px;}
.y24_c00050{bottom:553.818360px;}
.y14_c00050{bottom:581.174400px;}
.y23_c00050{bottom:582.344400px;}
.y13_c00050{bottom:643.274400px;}
.y12_c00050{bottom:674.324400px;}
.y11_c00050{bottom:705.374400px;}
.y10_c00050{bottom:736.424400px;}
.yf_c00050{bottom:767.474400px;}
.ye_c00050{bottom:798.434400px;}
.yd_c00050{bottom:829.484400px;}
.yc_c00050{bottom:860.534400px;}
.y22_c00050{bottom:891.584400px;}
.yb_c00050{bottom:922.634400px;}
.ya_c00050{bottom:953.684400px;}
.y9_c00050{bottom:984.734400px;}
.y8_c00050{bottom:1015.784400px;}
.y7_c00050{bottom:1046.834400px;}
.y6_c00050{bottom:1077.884400px;}
.y5_c00050{bottom:1108.934400px;}
.y4_c00050{bottom:1139.984400px;}
.y3_c00050{bottom:1173.915120px;}
.y2_c00050{bottom:1194.074400px;}
.h2_c00050{height:50.400000px;}
.h3_c00050{height:54.331699px;}
.h6_c00050{height:71.413920px;}
.h4_c00050{height:76.824000px;}
.h5_c00050{height:78.048000px;}
.h0_c00050{height:1262.835000px;}
.h1_c00050{height:1263.000000px;}
.w2_c00050{width:0.000000px;}
.w3_c00050{width:0.066000px;}
.w0_c00050{width:892.914000px;}
.w1_c00050{width:893.250000px;}
.x1_c00050{left:-838.913400px;}
.x2_c00050{left:-765.293400px;}
.x3_c00050{left:-733.343400px;}
.x0_c00050{left:0.000000px;}
.x6_c00050{left:127.618740px;}
.x7_c00050{left:159.570000px;}
.x5_c00050{left:701.730000px;}
.x4_c00050{left:804.366150px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.lse_c00050{letter-spacing:-0.320000pt;}
.lsc_c00050{letter-spacing:-0.256000pt;}
.lsd_c00050{letter-spacing:-0.192000pt;}
.lsf_c00050{letter-spacing:-0.064000pt;}
.ls10_c00050{letter-spacing:-0.058560pt;}
.lsb_c00050{letter-spacing:0.000000pt;}
.ls0_c00050{letter-spacing:0.064000pt;}
.ls2_c00050{letter-spacing:0.128000pt;}
.ls9_c00050{letter-spacing:0.175680pt;}
.lsa_c00050{letter-spacing:14.511168pt;}
.ls8_c00050{letter-spacing:16.960000pt;}
.ls1_c00050{letter-spacing:21.120000pt;}
.ls3_c00050{letter-spacing:22.144000pt;}
.ls7_c00050{letter-spacing:26.880000pt;}
.ls5_c00050{letter-spacing:28.544000pt;}
.ls4_c00050{letter-spacing:28.800000pt;}
.ls6_c00050{letter-spacing:31.360000pt;}
.wsf_c00050{word-spacing:-16.128000pt;}
.ws5_c00050{word-spacing:-16.064000pt;}
.ws3_c00050{word-spacing:-16.000000pt;}
.ws1_c00050{word-spacing:-15.744000pt;}
.ws1f_c00050{word-spacing:-0.384000pt;}
.ws2d_c00050{word-spacing:-0.128000pt;}
.ws14_c00050{word-spacing:-0.117120pt;}
.ws23_c00050{word-spacing:-0.064000pt;}
.ws6_c00050{word-spacing:0.000000pt;}
.ws35_c00050{word-spacing:0.064000pt;}
.ws51_c00050{word-spacing:0.117120pt;}
.ws33_c00050{word-spacing:0.256000pt;}
.ws28_c00050{word-spacing:0.320000pt;}
.ws43_c00050{word-spacing:0.960000pt;}
.ws2a_c00050{word-spacing:1.024000pt;}
.ws4c_c00050{word-spacing:1.171200pt;}
.ws22_c00050{word-spacing:1.216000pt;}
.ws9_c00050{word-spacing:1.280000pt;}
.ws4b_c00050{word-spacing:1.405440pt;}
.ws3c_c00050{word-spacing:1.472000pt;}
.ws3d_c00050{word-spacing:1.536000pt;}
.ws21_c00050{word-spacing:1.792000pt;}
.ws11_c00050{word-spacing:1.798400pt;}
.ws0_c00050{word-spacing:1.804800pt;}
.ws20_c00050{word-spacing:1.856000pt;}
.ws15_c00050{word-spacing:1.920000pt;}
.ws32_c00050{word-spacing:2.176000pt;}
.wsd_c00050{word-spacing:2.240000pt;}
.wsc_c00050{word-spacing:2.553600pt;}
.ws13_c00050{word-spacing:2.560000pt;}
.wsa_c00050{word-spacing:3.065600pt;}
.wsb_c00050{word-spacing:3.072000pt;}
.ws16_c00050{word-spacing:3.136000pt;}
.ws17_c00050{word-spacing:3.200000pt;}
.ws2_c00050{word-spacing:3.212800pt;}
.wse_c00050{word-spacing:3.264000pt;}
.ws26_c00050{word-spacing:3.328000pt;}
.ws37_c00050{word-spacing:3.392000pt;}
.ws38_c00050{word-spacing:3.520000pt;}
.ws27_c00050{word-spacing:3.712000pt;}
.ws34_c00050{word-spacing:3.776000pt;}
.ws29_c00050{word-spacing:3.840000pt;}
.ws46_c00050{word-spacing:4.160000pt;}
.ws44_c00050{word-spacing:4.416000pt;}
.ws45_c00050{word-spacing:4.480000pt;}
.ws48_c00050{word-spacing:4.800000pt;}
.ws19_c00050{word-spacing:5.056000pt;}
.ws18_c00050{word-spacing:5.120000pt;}
.ws39_c00050{word-spacing:5.376000pt;}
.ws47_c00050{word-spacing:6.080000pt;}
.ws4e_c00050{word-spacing:6.324480pt;}
.ws2c_c00050{word-spacing:6.336000pt;}
.ws2b_c00050{word-spacing:6.400000pt;}
.ws55_c00050{word-spacing:7.936000pt;}
.ws56_c00050{word-spacing:8.000000pt;}
.ws4d_c00050{word-spacing:8.549760pt;}
.ws57_c00050{word-spacing:8.640000pt;}
.ws1b_c00050{word-spacing:8.960000pt;}
.ws4_c00050{word-spacing:10.048000pt;}
.ws1c_c00050{word-spacing:10.240000pt;}
.ws42_c00050{word-spacing:10.496000pt;}
.ws40_c00050{word-spacing:11.200000pt;}
.ws41_c00050{word-spacing:11.520000pt;}
.ws4a_c00050{word-spacing:11.776000pt;}
.ws1a_c00050{word-spacing:12.160000pt;}
.ws2f_c00050{word-spacing:12.352000pt;}
.ws31_c00050{word-spacing:12.608000pt;}
.ws30_c00050{word-spacing:12.672000pt;}
.ws53_c00050{word-spacing:12.736000pt;}
.ws2e_c00050{word-spacing:12.800000pt;}
.ws3b_c00050{word-spacing:13.312000pt;}
.ws3a_c00050{word-spacing:13.376000pt;}
.ws1e_c00050{word-spacing:13.696000pt;}
.ws1d_c00050{word-spacing:13.760000pt;}
.ws36_c00050{word-spacing:14.336000pt;}
.ws49_c00050{word-spacing:15.360000pt;}
.ws3f_c00050{word-spacing:15.616000pt;}
.ws3e_c00050{word-spacing:15.680000pt;}
.ws25_c00050{word-spacing:16.896000pt;}
.ws12_c00050{word-spacing:17.222400pt;}
.ws7_c00050{word-spacing:17.228800pt;}
.ws24_c00050{word-spacing:17.280000pt;}
.ws8_c00050{word-spacing:17.856000pt;}
.ws52_c00050{word-spacing:17.920000pt;}
.ws54_c00050{word-spacing:22.656000pt;}
.ws4f_c00050{word-spacing:25.180800pt;}
.ws50_c00050{word-spacing:25.415040pt;}
.ws10_c00050{word-spacing:32.000000pt;}
._2_c00050{margin-left:-1.280000pt;}
._0_c00050{width:0.936960pt;}
._1_c00050{width:1.920000pt;}
._4_c00050{width:3.456000pt;}
._6_c00050{width:6.137600pt;}
._7_c00050{width:13.184000pt;}
._8_c00050{width:16.640000pt;}
._3_c00050{width:19.223040pt;}
._5_c00050{width:22.400000pt;}
.fs1_c00050{font-size:58.560000pt;}
.fs0_c00050{font-size:64.000000pt;}
.y0_c00050{bottom:0.000000pt;}
.y1_c00050{bottom:54.887600pt;}
.y21_c00050{bottom:102.599467pt;}
.y30_c00050{bottom:114.119467pt;}
.y20_c00050{bottom:130.199467pt;}
.y2f_c00050{bottom:141.719467pt;}
.y1f_c00050{bottom:157.799467pt;}
.y2e_c00050{bottom:169.319467pt;}
.y1e_c00050{bottom:185.399467pt;}
.y2d_c00050{bottom:196.919467pt;}
.y1d_c00050{bottom:212.999467pt;}
.y2c_c00050{bottom:224.519467pt;}
.y1c_c00050{bottom:268.039467pt;}
.y2b_c00050{bottom:279.719467pt;}
.y2a_c00050{bottom:307.319467pt;}
.y1b_c00050{bottom:323.399467pt;}
.y29_c00050{bottom:334.919467pt;}
.y1a_c00050{bottom:350.999467pt;}
.y28_c00050{bottom:362.519467pt;}
.y19_c00050{bottom:378.599467pt;}
.y18_c00050{bottom:406.199467pt;}
.y27_c00050{bottom:416.520987pt;}
.y17_c00050{bottom:433.799467pt;}
.y26_c00050{bottom:441.716427pt;}
.y16_c00050{bottom:461.399467pt;}
.y25_c00050{bottom:466.999707pt;}
.y15_c00050{bottom:488.999467pt;}
.y24_c00050{bottom:492.282987pt;}
.y14_c00050{bottom:516.599467pt;}
.y23_c00050{bottom:517.639467pt;}
.y13_c00050{bottom:571.799467pt;}
.y12_c00050{bottom:599.399467pt;}
.y11_c00050{bottom:626.999467pt;}
.y10_c00050{bottom:654.599467pt;}
.yf_c00050{bottom:682.199467pt;}
.ye_c00050{bottom:709.719467pt;}
.yd_c00050{bottom:737.319467pt;}
.yc_c00050{bottom:764.919467pt;}
.y22_c00050{bottom:792.519467pt;}
.yb_c00050{bottom:820.119467pt;}
.ya_c00050{bottom:847.719467pt;}
.y9_c00050{bottom:875.319467pt;}
.y8_c00050{bottom:902.919467pt;}
.y7_c00050{bottom:930.519467pt;}
.y6_c00050{bottom:958.119467pt;}
.y5_c00050{bottom:985.719467pt;}
.y4_c00050{bottom:1013.319467pt;}
.y3_c00050{bottom:1043.480107pt;}
.y2_c00050{bottom:1061.399467pt;}
.h2_c00050{height:44.800000pt;}
.h3_c00050{height:48.294844pt;}
.h6_c00050{height:63.479040pt;}
.h4_c00050{height:68.288000pt;}
.h5_c00050{height:69.376000pt;}
.h0_c00050{height:1122.520000pt;}
.h1_c00050{height:1122.666667pt;}
.w2_c00050{width:0.000000pt;}
.w3_c00050{width:0.058667pt;}
.w0_c00050{width:793.701333pt;}
.w1_c00050{width:794.000000pt;}
.x1_c00050{left:-745.700800pt;}
.x2_c00050{left:-680.260800pt;}
.x3_c00050{left:-651.860800pt;}
.x0_c00050{left:0.000000pt;}
.x6_c00050{left:113.438880pt;}
.x7_c00050{left:141.840000pt;}
.x5_c00050{left:623.760000pt;}
.x4_c00050{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00051;src:url('chunks/assets/font_03ace9991c626ecb5d256014.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00051;src:url('chunks/assets/font_a4039051e421bec115048034.woff2')format("woff");}.ff3_c00051{font-family:ff3_c00051;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00051{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls4_c00051{letter-spacing:-0.360000px;}
.ls3_c00051{letter-spacing:0.000000px;}
.ls2_c00051{letter-spacing:0.072000px;}
.ls1_c00051{letter-spacing:0.144000px;}
.ls0_c00051{letter-spacing:84.024000px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00051{word-spacing:-18.072000px;}
.ws1_c00051{word-spacing:-18.000000px;}
.ws4_c00051{word-spacing:-17.640000px;}
.ws7_c00051{word-spacing:-0.131760px;}
.ws1e_c00051{word-spacing:-0.072000px;}
.ws5_c00051{word-spacing:0.000000px;}
.ws18_c00051{word-spacing:2.088000px;}
.ws17_c00051{word-spacing:2.160000px;}
.ws16_c00051{word-spacing:3.240000px;}
.ws15_c00051{word-spacing:5.400000px;}
.ws21_c00051{word-spacing:6.480000px;}
.ws12_c00051{word-spacing:8.208000px;}
.ws13_c00051{word-spacing:8.280000px;}
.ws2_c00051{word-spacing:8.380800px;}
.wsc_c00051{word-spacing:9.720000px;}
.ws1c_c00051{word-spacing:10.296000px;}
.wsd_c00051{word-spacing:10.368000px;}
.ws1b_c00051{word-spacing:10.440000px;}
.ws11_c00051{word-spacing:10.800000px;}
.ws10_c00051{word-spacing:11.160000px;}
.ws1a_c00051{word-spacing:11.520000px;}
.ws23_c00051{word-spacing:11.880000px;}
.ws8_c00051{word-spacing:12.240000px;}
.ws22_c00051{word-spacing:12.600000px;}
.ws6_c00051{word-spacing:14.774400px;}
.ws1f_c00051{word-spacing:14.832000px;}
.ws20_c00051{word-spacing:15.048000px;}
.wsf_c00051{word-spacing:15.120000px;}
.ws14_c00051{word-spacing:15.480000px;}
.wsa_c00051{word-spacing:20.376000px;}
.ws9_c00051{word-spacing:20.592000px;}
.ws0_c00051{word-spacing:20.822400px;}
.wsb_c00051{word-spacing:20.880000px;}
.ws19_c00051{word-spacing:25.560000px;}
.ws1d_c00051{word-spacing:33.120000px;}
.wse_c00051{word-spacing:55.728000px;}
._1_c00051{margin-left:-1.008000px;}
._0_c00051{width:1.054080px;}
.fc1_c00051{color:rgb(0,0,0);}
.fc0_c00051{color:rgb(35,31,32);}
.fs1_c00051{font-size:65.880000px;}
.fs0_c00051{font-size:72.000000px;}
.y0_c00051{bottom:0.000000px;}
.y1_c00051{bottom:61.748550px;}
.y20_c00051{bottom:177.524400px;}
.y1f_c00051{bottom:208.574400px;}
.y1e_c00051{bottom:239.624400px;}
.y1d_c00051{bottom:270.674400px;}
.y1c_c00051{bottom:301.724400px;}
.y1b_c00051{bottom:363.824400px;}
.y1a_c00051{bottom:394.874400px;}
.y19_c00051{bottom:425.924400px;}
.y18_c00051{bottom:456.974400px;}
.y17_c00051{bottom:488.024400px;}
.y16_c00051{bottom:519.074400px;}
.y15_c00051{bottom:581.174400px;}
.y14_c00051{bottom:612.224400px;}
.y13_c00051{bottom:643.274400px;}
.y12_c00051{bottom:674.324400px;}
.y11_c00051{bottom:705.374400px;}
.y10_c00051{bottom:736.424400px;}
.yf_c00051{bottom:767.474400px;}
.ye_c00051{bottom:798.434400px;}
.yd_c00051{bottom:829.484400px;}
.yc_c00051{bottom:860.534400px;}
.yb_c00051{bottom:891.584400px;}
.ya_c00051{bottom:922.634400px;}
.y9_c00051{bottom:953.684400px;}
.y8_c00051{bottom:984.734400px;}
.y7_c00051{bottom:1015.784400px;}
.y6_c00051{bottom:1046.834400px;}
.y5_c00051{bottom:1108.934400px;}
.y4_c00051{bottom:1139.984400px;}
.y3_c00051{bottom:1173.915120px;}
.y2_c00051{bottom:1194.074400px;}
.h2_c00051{height:50.400000px;}
.h3_c00051{height:54.331699px;}
.h4_c00051{height:76.824000px;}
.h0_c00051{height:1262.835000px;}
.h1_c00051{height:1263.000000px;}
.w0_c00051{width:892.914000px;}
.w1_c00051{width:893.250000px;}
.x0_c00051{left:0.000000px;}
.x1_c00051{left:54.000000px;}
.x2_c00051{left:127.620000px;}
.x3_c00051{left:154.620000px;}
.x5_c00051{left:159.570000px;}
.x4_c00051{left:181.620000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls4_c00051{letter-spacing:-0.320000pt;}
.ls3_c00051{letter-spacing:0.000000pt;}
.ls2_c00051{letter-spacing:0.064000pt;}
.ls1_c00051{letter-spacing:0.128000pt;}
.ls0_c00051{letter-spacing:74.688000pt;}
.ws3_c00051{word-spacing:-16.064000pt;}
.ws1_c00051{word-spacing:-16.000000pt;}
.ws4_c00051{word-spacing:-15.680000pt;}
.ws7_c00051{word-spacing:-0.117120pt;}
.ws1e_c00051{word-spacing:-0.064000pt;}
.ws5_c00051{word-spacing:0.000000pt;}
.ws18_c00051{word-spacing:1.856000pt;}
.ws17_c00051{word-spacing:1.920000pt;}
.ws16_c00051{word-spacing:2.880000pt;}
.ws15_c00051{word-spacing:4.800000pt;}
.ws21_c00051{word-spacing:5.760000pt;}
.ws12_c00051{word-spacing:7.296000pt;}
.ws13_c00051{word-spacing:7.360000pt;}
.ws2_c00051{word-spacing:7.449600pt;}
.wsc_c00051{word-spacing:8.640000pt;}
.ws1c_c00051{word-spacing:9.152000pt;}
.wsd_c00051{word-spacing:9.216000pt;}
.ws1b_c00051{word-spacing:9.280000pt;}
.ws11_c00051{word-spacing:9.600000pt;}
.ws10_c00051{word-spacing:9.920000pt;}
.ws1a_c00051{word-spacing:10.240000pt;}
.ws23_c00051{word-spacing:10.560000pt;}
.ws8_c00051{word-spacing:10.880000pt;}
.ws22_c00051{word-spacing:11.200000pt;}
.ws6_c00051{word-spacing:13.132800pt;}
.ws1f_c00051{word-spacing:13.184000pt;}
.ws20_c00051{word-spacing:13.376000pt;}
.wsf_c00051{word-spacing:13.440000pt;}
.ws14_c00051{word-spacing:13.760000pt;}
.wsa_c00051{word-spacing:18.112000pt;}
.ws9_c00051{word-spacing:18.304000pt;}
.ws0_c00051{word-spacing:18.508800pt;}
.wsb_c00051{word-spacing:18.560000pt;}
.ws19_c00051{word-spacing:22.720000pt;}
.ws1d_c00051{word-spacing:29.440000pt;}
.wse_c00051{word-spacing:49.536000pt;}
._1_c00051{margin-left:-0.896000pt;}
._0_c00051{width:0.936960pt;}
.fs1_c00051{font-size:58.560000pt;}
.fs0_c00051{font-size:64.000000pt;}
.y0_c00051{bottom:0.000000pt;}
.y1_c00051{bottom:54.887600pt;}
.y20_c00051{bottom:157.799467pt;}
.y1f_c00051{bottom:185.399467pt;}
.y1e_c00051{bottom:212.999467pt;}
.y1d_c00051{bottom:240.599467pt;}
.y1c_c00051{bottom:268.199467pt;}
.y1b_c00051{bottom:323.399467pt;}
.y1a_c00051{bottom:350.999467pt;}
.y19_c00051{bottom:378.599467pt;}
.y18_c00051{bottom:406.199467pt;}
.y17_c00051{bottom:433.799467pt;}
.y16_c00051{bottom:461.399467pt;}
.y15_c00051{bottom:516.599467pt;}
.y14_c00051{bottom:544.199467pt;}
.y13_c00051{bottom:571.799467pt;}
.y12_c00051{bottom:599.399467pt;}
.y11_c00051{bottom:626.999467pt;}
.y10_c00051{bottom:654.599467pt;}
.yf_c00051{bottom:682.199467pt;}
.ye_c00051{bottom:709.719467pt;}
.yd_c00051{bottom:737.319467pt;}
.yc_c00051{bottom:764.919467pt;}
.yb_c00051{bottom:792.519467pt;}
.ya_c00051{bottom:820.119467pt;}
.y9_c00051{bottom:847.719467pt;}
.y8_c00051{bottom:875.319467pt;}
.y7_c00051{bottom:902.919467pt;}
.y6_c00051{bottom:930.519467pt;}
.y5_c00051{bottom:985.719467pt;}
.y4_c00051{bottom:1013.319467pt;}
.y3_c00051{bottom:1043.480107pt;}
.y2_c00051{bottom:1061.399467pt;}
.h2_c00051{height:44.800000pt;}
.h3_c00051{height:48.294844pt;}
.h4_c00051{height:68.288000pt;}
.h0_c00051{height:1122.520000pt;}
.h1_c00051{height:1122.666667pt;}
.w0_c00051{width:793.701333pt;}
.w1_c00051{width:794.000000pt;}
.x0_c00051{left:0.000000pt;}
.x1_c00051{left:48.000000pt;}
.x2_c00051{left:113.440000pt;}
.x3_c00051{left:137.440000pt;}
.x5_c00051{left:141.840000pt;}
.x4_c00051{left:161.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00052;src:url('chunks/assets/font_94401a01edc86093e2916fb6.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00052;src:url('chunks/assets/font_d905fd8fddd68ceb704f925a.woff2')format("woff");}.ff3_c00052{font-family:ff3_c00052;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00052;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00052{font-family:ff4_c00052;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00052;src:url('chunks/assets/font_b0de37d5a77bf7bcc5d749e2.woff2')format("woff");}.ff5_c00052{font-family:ff5_c00052;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00052;src:url('chunks/assets/font_78089790d58e335691f8a714.woff2')format("woff");}.ff6_c00052{font-family:ff6_c00052;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00052{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls5_c00052{letter-spacing:-0.360000px;}
.ls6_c00052{letter-spacing:-0.288000px;}
.ls8_c00052{letter-spacing:-0.216000px;}
.ls7_c00052{letter-spacing:-0.072000px;}
.ls4_c00052{letter-spacing:0.000000px;}
.ls2_c00052{letter-spacing:0.072000px;}
.ls1_c00052{letter-spacing:0.144000px;}
.ls3_c00052{letter-spacing:30.600000px;}
.ls0_c00052{letter-spacing:84.024000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00052{word-spacing:-18.072000px;}
.ws1_c00052{word-spacing:-18.000000px;}
.ws4_c00052{word-spacing:-17.640000px;}
.ws34_c00052{word-spacing:-0.432000px;}
.ws45_c00052{word-spacing:-0.360000px;}
.ws13_c00052{word-spacing:-0.216000px;}
.ws4e_c00052{word-spacing:-0.144000px;}
.ws18_c00052{word-spacing:-0.131760px;}
.ws2d_c00052{word-spacing:-0.072000px;}
.ws5_c00052{word-spacing:0.000000px;}
.ws3e_c00052{word-spacing:1.080000px;}
.ws41_c00052{word-spacing:1.584000px;}
.ws7_c00052{word-spacing:1.728000px;}
.ws42_c00052{word-spacing:1.800000px;}
.ws27_c00052{word-spacing:2.088000px;}
.ws26_c00052{word-spacing:2.160000px;}
.ws43_c00052{word-spacing:2.520000px;}
.ws44_c00052{word-spacing:2.808000px;}
.ws12_c00052{word-spacing:3.240000px;}
.ws10_c00052{word-spacing:3.672000px;}
.ws3b_c00052{word-spacing:3.960000px;}
.ws3f_c00052{word-spacing:4.248000px;}
.ws40_c00052{word-spacing:4.320000px;}
.ws4f_c00052{word-spacing:4.536000px;}
.ws50_c00052{word-spacing:4.680000px;}
.ws4b_c00052{word-spacing:4.896000px;}
.ws4a_c00052{word-spacing:5.040000px;}
.ws25_c00052{word-spacing:5.400000px;}
.ws3d_c00052{word-spacing:5.544000px;}
.ws3c_c00052{word-spacing:5.616000px;}
.ws14_c00052{word-spacing:5.688000px;}
.ws11_c00052{word-spacing:5.760000px;}
.ws30_c00052{word-spacing:6.480000px;}
.ws22_c00052{word-spacing:8.208000px;}
.ws23_c00052{word-spacing:8.280000px;}
.ws2_c00052{word-spacing:8.380800px;}
.ws47_c00052{word-spacing:9.648000px;}
.ws1c_c00052{word-spacing:9.720000px;}
.ws2b_c00052{word-spacing:10.296000px;}
.ws1d_c00052{word-spacing:10.368000px;}
.ws2a_c00052{word-spacing:10.440000px;}
.ws46_c00052{word-spacing:10.728000px;}
.ws21_c00052{word-spacing:10.800000px;}
.ws17_c00052{word-spacing:10.900800px;}
.ws20_c00052{word-spacing:11.160000px;}
.ws29_c00052{word-spacing:11.520000px;}
.ws38_c00052{word-spacing:11.808000px;}
.wsb_c00052{word-spacing:11.822400px;}
.ws31_c00052{word-spacing:11.880000px;}
.wsc_c00052{word-spacing:11.952000px;}
.ws19_c00052{word-spacing:12.240000px;}
.ws32_c00052{word-spacing:12.528000px;}
.ws8_c00052{word-spacing:12.600000px;}
.ws33_c00052{word-spacing:12.960000px;}
.ws6_c00052{word-spacing:14.774400px;}
.ws2e_c00052{word-spacing:14.832000px;}
.ws2f_c00052{word-spacing:15.048000px;}
.ws1f_c00052{word-spacing:15.120000px;}
.ws15_c00052{word-spacing:15.336000px;}
.ws24_c00052{word-spacing:15.480000px;}
.ws16_c00052{word-spacing:15.552000px;}
.ws4c_c00052{word-spacing:18.648000px;}
.ws4d_c00052{word-spacing:18.720000px;}
.ws1b_c00052{word-spacing:20.376000px;}
.ws1a_c00052{word-spacing:20.592000px;}
.wsd_c00052{word-spacing:20.664000px;}
.ws3a_c00052{word-spacing:20.736000px;}
.ws39_c00052{word-spacing:20.808000px;}
.ws0_c00052{word-spacing:20.822400px;}
.wse_c00052{word-spacing:20.880000px;}
.wsf_c00052{word-spacing:20.952000px;}
.ws28_c00052{word-spacing:25.560000px;}
.ws36_c00052{word-spacing:26.568000px;}
.ws35_c00052{word-spacing:26.640000px;}
.ws48_c00052{word-spacing:26.928000px;}
.ws49_c00052{word-spacing:27.288000px;}
.ws2c_c00052{word-spacing:33.120000px;}
.wsa_c00052{word-spacing:55.238400px;}
.ws1e_c00052{word-spacing:55.728000px;}
.ws37_c00052{word-spacing:55.800000px;}
.ws9_c00052{word-spacing:56.160000px;}
._1_c00052{margin-left:-1.008000px;}
._0_c00052{width:1.054080px;}
._8_c00052{width:4.993920px;}
._2_c00052{width:12.528000px;}
._7_c00052{width:18.792000px;}
._5_c00052{width:20.448000px;}
._4_c00052{width:28.857600px;}
._3_c00052{width:72.576000px;}
._6_c00052{width:84.024000px;}
.fc2_c00052{color:transparent;}
.fc1_c00052{color:rgb(0,0,0);}
.fc0_c00052{color:rgb(35,31,32);}
.fs1_c00052{font-size:65.880000px;}
.fs0_c00052{font-size:72.000000px;}
.y0_c00052{bottom:0.000000px;}
.y1_c00052{bottom:61.748550px;}
.y25_c00052{bottom:115.424400px;}
.y24_c00052{bottom:146.474400px;}
.y20_c00052{bottom:177.524400px;}
.y1f_c00052{bottom:208.574400px;}
.y1e_c00052{bottom:239.624400px;}
.y1d_c00052{bottom:270.674400px;}
.y1c_c00052{bottom:301.724400px;}
.y23_c00052{bottom:332.774400px;}
.y1b_c00052{bottom:363.824400px;}
.y1a_c00052{bottom:394.874400px;}
.y19_c00052{bottom:425.924400px;}
.y18_c00052{bottom:456.974400px;}
.y17_c00052{bottom:488.024400px;}
.y16_c00052{bottom:519.074400px;}
.y22_c00052{bottom:550.124400px;}
.y15_c00052{bottom:581.174400px;}
.y14_c00052{bottom:612.224400px;}
.y13_c00052{bottom:643.274400px;}
.y12_c00052{bottom:674.324400px;}
.y11_c00052{bottom:705.374400px;}
.y10_c00052{bottom:736.424400px;}
.yf_c00052{bottom:767.474400px;}
.ye_c00052{bottom:798.434400px;}
.yd_c00052{bottom:829.484400px;}
.yc_c00052{bottom:860.534400px;}
.yb_c00052{bottom:891.584400px;}
.ya_c00052{bottom:922.634400px;}
.y9_c00052{bottom:953.684400px;}
.y8_c00052{bottom:984.734400px;}
.y7_c00052{bottom:1015.784400px;}
.y6_c00052{bottom:1046.834400px;}
.y21_c00052{bottom:1077.884400px;}
.y5_c00052{bottom:1108.934400px;}
.y4_c00052{bottom:1139.984400px;}
.y3_c00052{bottom:1173.915120px;}
.y2_c00052{bottom:1194.074400px;}
.h2_c00052{height:50.400000px;}
.h3_c00052{height:54.331699px;}
.h4_c00052{height:76.824000px;}
.h0_c00052{height:1262.835000px;}
.h1_c00052{height:1263.000000px;}
.w2_c00052{width:0.000000px;}
.w3_c00052{width:0.066000px;}
.w0_c00052{width:892.914000px;}
.w1_c00052{width:893.250000px;}
.x1_c00052{left:-838.913400px;}
.x2_c00052{left:-765.293400px;}
.x3_c00052{left:-738.293400px;}
.x5_c00052{left:-733.343400px;}
.x4_c00052{left:-711.293400px;}
.x0_c00052{left:0.000000px;}
.x8_c00052{left:127.618740px;}
.xa_c00052{left:154.620000px;}
.x9_c00052{left:159.570000px;}
.xb_c00052{left:181.620000px;}
.x7_c00052{left:701.730000px;}
.x6_c00052{left:804.366150px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls5_c00052{letter-spacing:-0.320000pt;}
.ls6_c00052{letter-spacing:-0.256000pt;}
.ls8_c00052{letter-spacing:-0.192000pt;}
.ls7_c00052{letter-spacing:-0.064000pt;}
.ls4_c00052{letter-spacing:0.000000pt;}
.ls2_c00052{letter-spacing:0.064000pt;}
.ls1_c00052{letter-spacing:0.128000pt;}
.ls3_c00052{letter-spacing:27.200000pt;}
.ls0_c00052{letter-spacing:74.688000pt;}
.ws3_c00052{word-spacing:-16.064000pt;}
.ws1_c00052{word-spacing:-16.000000pt;}
.ws4_c00052{word-spacing:-15.680000pt;}
.ws34_c00052{word-spacing:-0.384000pt;}
.ws45_c00052{word-spacing:-0.320000pt;}
.ws13_c00052{word-spacing:-0.192000pt;}
.ws4e_c00052{word-spacing:-0.128000pt;}
.ws18_c00052{word-spacing:-0.117120pt;}
.ws2d_c00052{word-spacing:-0.064000pt;}
.ws5_c00052{word-spacing:0.000000pt;}
.ws3e_c00052{word-spacing:0.960000pt;}
.ws41_c00052{word-spacing:1.408000pt;}
.ws7_c00052{word-spacing:1.536000pt;}
.ws42_c00052{word-spacing:1.600000pt;}
.ws27_c00052{word-spacing:1.856000pt;}
.ws26_c00052{word-spacing:1.920000pt;}
.ws43_c00052{word-spacing:2.240000pt;}
.ws44_c00052{word-spacing:2.496000pt;}
.ws12_c00052{word-spacing:2.880000pt;}
.ws10_c00052{word-spacing:3.264000pt;}
.ws3b_c00052{word-spacing:3.520000pt;}
.ws3f_c00052{word-spacing:3.776000pt;}
.ws40_c00052{word-spacing:3.840000pt;}
.ws4f_c00052{word-spacing:4.032000pt;}
.ws50_c00052{word-spacing:4.160000pt;}
.ws4b_c00052{word-spacing:4.352000pt;}
.ws4a_c00052{word-spacing:4.480000pt;}
.ws25_c00052{word-spacing:4.800000pt;}
.ws3d_c00052{word-spacing:4.928000pt;}
.ws3c_c00052{word-spacing:4.992000pt;}
.ws14_c00052{word-spacing:5.056000pt;}
.ws11_c00052{word-spacing:5.120000pt;}
.ws30_c00052{word-spacing:5.760000pt;}
.ws22_c00052{word-spacing:7.296000pt;}
.ws23_c00052{word-spacing:7.360000pt;}
.ws2_c00052{word-spacing:7.449600pt;}
.ws47_c00052{word-spacing:8.576000pt;}
.ws1c_c00052{word-spacing:8.640000pt;}
.ws2b_c00052{word-spacing:9.152000pt;}
.ws1d_c00052{word-spacing:9.216000pt;}
.ws2a_c00052{word-spacing:9.280000pt;}
.ws46_c00052{word-spacing:9.536000pt;}
.ws21_c00052{word-spacing:9.600000pt;}
.ws17_c00052{word-spacing:9.689600pt;}
.ws20_c00052{word-spacing:9.920000pt;}
.ws29_c00052{word-spacing:10.240000pt;}
.ws38_c00052{word-spacing:10.496000pt;}
.wsb_c00052{word-spacing:10.508800pt;}
.ws31_c00052{word-spacing:10.560000pt;}
.wsc_c00052{word-spacing:10.624000pt;}
.ws19_c00052{word-spacing:10.880000pt;}
.ws32_c00052{word-spacing:11.136000pt;}
.ws8_c00052{word-spacing:11.200000pt;}
.ws33_c00052{word-spacing:11.520000pt;}
.ws6_c00052{word-spacing:13.132800pt;}
.ws2e_c00052{word-spacing:13.184000pt;}
.ws2f_c00052{word-spacing:13.376000pt;}
.ws1f_c00052{word-spacing:13.440000pt;}
.ws15_c00052{word-spacing:13.632000pt;}
.ws24_c00052{word-spacing:13.760000pt;}
.ws16_c00052{word-spacing:13.824000pt;}
.ws4c_c00052{word-spacing:16.576000pt;}
.ws4d_c00052{word-spacing:16.640000pt;}
.ws1b_c00052{word-spacing:18.112000pt;}
.ws1a_c00052{word-spacing:18.304000pt;}
.wsd_c00052{word-spacing:18.368000pt;}
.ws3a_c00052{word-spacing:18.432000pt;}
.ws39_c00052{word-spacing:18.496000pt;}
.ws0_c00052{word-spacing:18.508800pt;}
.wse_c00052{word-spacing:18.560000pt;}
.wsf_c00052{word-spacing:18.624000pt;}
.ws28_c00052{word-spacing:22.720000pt;}
.ws36_c00052{word-spacing:23.616000pt;}
.ws35_c00052{word-spacing:23.680000pt;}
.ws48_c00052{word-spacing:23.936000pt;}
.ws49_c00052{word-spacing:24.256000pt;}
.ws2c_c00052{word-spacing:29.440000pt;}
.wsa_c00052{word-spacing:49.100800pt;}
.ws1e_c00052{word-spacing:49.536000pt;}
.ws37_c00052{word-spacing:49.600000pt;}
.ws9_c00052{word-spacing:49.920000pt;}
._1_c00052{margin-left:-0.896000pt;}
._0_c00052{width:0.936960pt;}
._8_c00052{width:4.439040pt;}
._2_c00052{width:11.136000pt;}
._7_c00052{width:16.704000pt;}
._5_c00052{width:18.176000pt;}
._4_c00052{width:25.651200pt;}
._3_c00052{width:64.512000pt;}
._6_c00052{width:74.688000pt;}
.fs1_c00052{font-size:58.560000pt;}
.fs0_c00052{font-size:64.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y1_c00052{bottom:54.887600pt;}
.y25_c00052{bottom:102.599467pt;}
.y24_c00052{bottom:130.199467pt;}
.y20_c00052{bottom:157.799467pt;}
.y1f_c00052{bottom:185.399467pt;}
.y1e_c00052{bottom:212.999467pt;}
.y1d_c00052{bottom:240.599467pt;}
.y1c_c00052{bottom:268.199467pt;}
.y23_c00052{bottom:295.799467pt;}
.y1b_c00052{bottom:323.399467pt;}
.y1a_c00052{bottom:350.999467pt;}
.y19_c00052{bottom:378.599467pt;}
.y18_c00052{bottom:406.199467pt;}
.y17_c00052{bottom:433.799467pt;}
.y16_c00052{bottom:461.399467pt;}
.y22_c00052{bottom:488.999467pt;}
.y15_c00052{bottom:516.599467pt;}
.y14_c00052{bottom:544.199467pt;}
.y13_c00052{bottom:571.799467pt;}
.y12_c00052{bottom:599.399467pt;}
.y11_c00052{bottom:626.999467pt;}
.y10_c00052{bottom:654.599467pt;}
.yf_c00052{bottom:682.199467pt;}
.ye_c00052{bottom:709.719467pt;}
.yd_c00052{bottom:737.319467pt;}
.yc_c00052{bottom:764.919467pt;}
.yb_c00052{bottom:792.519467pt;}
.ya_c00052{bottom:820.119467pt;}
.y9_c00052{bottom:847.719467pt;}
.y8_c00052{bottom:875.319467pt;}
.y7_c00052{bottom:902.919467pt;}
.y6_c00052{bottom:930.519467pt;}
.y21_c00052{bottom:958.119467pt;}
.y5_c00052{bottom:985.719467pt;}
.y4_c00052{bottom:1013.319467pt;}
.y3_c00052{bottom:1043.480107pt;}
.y2_c00052{bottom:1061.399467pt;}
.h2_c00052{height:44.800000pt;}
.h3_c00052{height:48.294844pt;}
.h4_c00052{height:68.288000pt;}
.h0_c00052{height:1122.520000pt;}
.h1_c00052{height:1122.666667pt;}
.w2_c00052{width:0.000000pt;}
.w3_c00052{width:0.058667pt;}
.w0_c00052{width:793.701333pt;}
.w1_c00052{width:794.000000pt;}
.x1_c00052{left:-745.700800pt;}
.x2_c00052{left:-680.260800pt;}
.x3_c00052{left:-656.260800pt;}
.x5_c00052{left:-651.860800pt;}
.x4_c00052{left:-632.260800pt;}
.x0_c00052{left:0.000000pt;}
.x8_c00052{left:113.438880pt;}
.xa_c00052{left:137.440000pt;}
.x9_c00052{left:141.840000pt;}
.xb_c00052{left:161.440000pt;}
.x7_c00052{left:623.760000pt;}
.x6_c00052{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00053;src:url('chunks/assets/font_d63c64cbe3fdb4d631b7620a.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00053;src:url('chunks/assets/font_0ca615573e7c60a63f8a9aac.woff2')format("woff");}.ff3_c00053{font-family:ff3_c00053;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00053;src:url('chunks/assets/font_a042bd35e7cefe1ae902c0b4.woff2')format("woff");}.ff4_c00053{font-family:ff4_c00053;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00053;src:url('chunks/assets/font_9adc25b3ec5ff13ca6b68b31.woff2')format("woff");}.ff5_c00053{font-family:ff5_c00053;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00053{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls3_c00053{letter-spacing:-0.288000px;}
.ls5_c00053{letter-spacing:-0.216000px;}
.ls2_c00053{letter-spacing:0.000000px;}
.ls1_c00053{letter-spacing:0.072000px;}
.ls0_c00053{letter-spacing:0.144000px;}
.ls4_c00053{letter-spacing:0.360000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00053{word-spacing:-18.072000px;}
.ws7_c00053{word-spacing:-18.000000px;}
.ws9_c00053{word-spacing:-17.784000px;}
.wsb_c00053{word-spacing:-0.360000px;}
.wsd_c00053{word-spacing:-0.131760px;}
.ws1e_c00053{word-spacing:-0.072000px;}
.wsc_c00053{word-spacing:0.000000px;}
.ws26_c00053{word-spacing:0.288000px;}
.ws1_c00053{word-spacing:1.440000px;}
.ws0_c00053{word-spacing:1.656000px;}
.ws27_c00053{word-spacing:1.728000px;}
.wse_c00053{word-spacing:1.800000px;}
.wsf_c00053{word-spacing:2.376000px;}
.ws2_c00053{word-spacing:2.736000px;}
.ws12_c00053{word-spacing:3.096000px;}
.ws10_c00053{word-spacing:3.168000px;}
.ws11_c00053{word-spacing:3.240000px;}
.ws5_c00053{word-spacing:3.312000px;}
.ws2b_c00053{word-spacing:4.968000px;}
.ws21_c00053{word-spacing:5.400000px;}
.ws20_c00053{word-spacing:5.760000px;}
.ws2c_c00053{word-spacing:6.480000px;}
.ws19_c00053{word-spacing:6.840000px;}
.ws18_c00053{word-spacing:7.848000px;}
.ws17_c00053{word-spacing:7.920000px;}
.ws22_c00053{word-spacing:8.640000px;}
.ws16_c00053{word-spacing:9.216000px;}
.ws14_c00053{word-spacing:9.288000px;}
.ws3_c00053{word-spacing:9.504000px;}
.ws13_c00053{word-spacing:9.648000px;}
.ws15_c00053{word-spacing:9.720000px;}
.ws4_c00053{word-spacing:9.792000px;}
.ws28_c00053{word-spacing:11.376000px;}
.ws1a_c00053{word-spacing:11.448000px;}
.ws29_c00053{word-spacing:11.808000px;}
.ws1b_c00053{word-spacing:15.408000px;}
.ws1c_c00053{word-spacing:15.480000px;}
.ws1d_c00053{word-spacing:17.928000px;}
.ws2d_c00053{word-spacing:18.360000px;}
.ws1f_c00053{word-spacing:19.008000px;}
.ws2f_c00053{word-spacing:24.696000px;}
.ws2e_c00053{word-spacing:24.840000px;}
.ws25_c00053{word-spacing:27.792000px;}
.wsa_c00053{word-spacing:27.864000px;}
.ws24_c00053{word-spacing:27.936000px;}
.ws23_c00053{word-spacing:28.080000px;}
.ws2a_c00053{word-spacing:30.168000px;}
.ws8_c00053{word-spacing:86.400000px;}
._1_c00053{margin-left:-1.080000px;}
._0_c00053{width:1.054080px;}
._2_c00053{width:19.399680px;}
.fc1_c00053{color:rgb(0,0,0);}
.fc0_c00053{color:rgb(35,31,32);}
.fs1_c00053{font-size:65.880000px;}
.fs0_c00053{font-size:72.000000px;}
.y0_c00053{bottom:0.000000px;}
.y1_c00053{bottom:61.748550px;}
.y20_c00053{bottom:115.424400px;}
.y1f_c00053{bottom:146.474400px;}
.y1e_c00053{bottom:177.524400px;}
.y1d_c00053{bottom:239.624400px;}
.y1c_c00053{bottom:270.674400px;}
.y1b_c00053{bottom:301.724400px;}
.y1a_c00053{bottom:332.774400px;}
.y19_c00053{bottom:363.824400px;}
.y18_c00053{bottom:394.874400px;}
.y17_c00053{bottom:425.924400px;}
.y16_c00053{bottom:488.024400px;}
.y15_c00053{bottom:519.074400px;}
.y14_c00053{bottom:550.124400px;}
.y13_c00053{bottom:581.174400px;}
.y12_c00053{bottom:612.224400px;}
.y11_c00053{bottom:643.274400px;}
.y10_c00053{bottom:705.194400px;}
.yf_c00053{bottom:767.474400px;}
.ye_c00053{bottom:798.434400px;}
.yd_c00053{bottom:829.484400px;}
.yc_c00053{bottom:860.534400px;}
.yb_c00053{bottom:891.584400px;}
.ya_c00053{bottom:922.634400px;}
.y9_c00053{bottom:953.684400px;}
.y8_c00053{bottom:984.734400px;}
.y7_c00053{bottom:1046.834400px;}
.y6_c00053{bottom:1077.884400px;}
.y5_c00053{bottom:1108.934400px;}
.y4_c00053{bottom:1139.984400px;}
.y3_c00053{bottom:1173.915120px;}
.y2_c00053{bottom:1194.074400px;}
.h2_c00053{height:50.400000px;}
.h3_c00053{height:54.331699px;}
.h4_c00053{height:76.824000px;}
.h5_c00053{height:78.048000px;}
.h0_c00053{height:1262.835000px;}
.h1_c00053{height:1263.000000px;}
.w0_c00053{width:892.914000px;}
.w1_c00053{width:893.250000px;}
.x0_c00053{left:0.000000px;}
.x1_c00053{left:54.000000px;}
.x2_c00053{left:127.620000px;}
.x3_c00053{left:159.570000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls3_c00053{letter-spacing:-0.256000pt;}
.ls5_c00053{letter-spacing:-0.192000pt;}
.ls2_c00053{letter-spacing:0.000000pt;}
.ls1_c00053{letter-spacing:0.064000pt;}
.ls0_c00053{letter-spacing:0.128000pt;}
.ls4_c00053{letter-spacing:0.320000pt;}
.ws6_c00053{word-spacing:-16.064000pt;}
.ws7_c00053{word-spacing:-16.000000pt;}
.ws9_c00053{word-spacing:-15.808000pt;}
.wsb_c00053{word-spacing:-0.320000pt;}
.wsd_c00053{word-spacing:-0.117120pt;}
.ws1e_c00053{word-spacing:-0.064000pt;}
.wsc_c00053{word-spacing:0.000000pt;}
.ws26_c00053{word-spacing:0.256000pt;}
.ws1_c00053{word-spacing:1.280000pt;}
.ws0_c00053{word-spacing:1.472000pt;}
.ws27_c00053{word-spacing:1.536000pt;}
.wse_c00053{word-spacing:1.600000pt;}
.wsf_c00053{word-spacing:2.112000pt;}
.ws2_c00053{word-spacing:2.432000pt;}
.ws12_c00053{word-spacing:2.752000pt;}
.ws10_c00053{word-spacing:2.816000pt;}
.ws11_c00053{word-spacing:2.880000pt;}
.ws5_c00053{word-spacing:2.944000pt;}
.ws2b_c00053{word-spacing:4.416000pt;}
.ws21_c00053{word-spacing:4.800000pt;}
.ws20_c00053{word-spacing:5.120000pt;}
.ws2c_c00053{word-spacing:5.760000pt;}
.ws19_c00053{word-spacing:6.080000pt;}
.ws18_c00053{word-spacing:6.976000pt;}
.ws17_c00053{word-spacing:7.040000pt;}
.ws22_c00053{word-spacing:7.680000pt;}
.ws16_c00053{word-spacing:8.192000pt;}
.ws14_c00053{word-spacing:8.256000pt;}
.ws3_c00053{word-spacing:8.448000pt;}
.ws13_c00053{word-spacing:8.576000pt;}
.ws15_c00053{word-spacing:8.640000pt;}
.ws4_c00053{word-spacing:8.704000pt;}
.ws28_c00053{word-spacing:10.112000pt;}
.ws1a_c00053{word-spacing:10.176000pt;}
.ws29_c00053{word-spacing:10.496000pt;}
.ws1b_c00053{word-spacing:13.696000pt;}
.ws1c_c00053{word-spacing:13.760000pt;}
.ws1d_c00053{word-spacing:15.936000pt;}
.ws2d_c00053{word-spacing:16.320000pt;}
.ws1f_c00053{word-spacing:16.896000pt;}
.ws2f_c00053{word-spacing:21.952000pt;}
.ws2e_c00053{word-spacing:22.080000pt;}
.ws25_c00053{word-spacing:24.704000pt;}
.wsa_c00053{word-spacing:24.768000pt;}
.ws24_c00053{word-spacing:24.832000pt;}
.ws23_c00053{word-spacing:24.960000pt;}
.ws2a_c00053{word-spacing:26.816000pt;}
.ws8_c00053{word-spacing:76.800000pt;}
._1_c00053{margin-left:-0.960000pt;}
._0_c00053{width:0.936960pt;}
._2_c00053{width:17.244160pt;}
.fs1_c00053{font-size:58.560000pt;}
.fs0_c00053{font-size:64.000000pt;}
.y0_c00053{bottom:0.000000pt;}
.y1_c00053{bottom:54.887600pt;}
.y20_c00053{bottom:102.599467pt;}
.y1f_c00053{bottom:130.199467pt;}
.y1e_c00053{bottom:157.799467pt;}
.y1d_c00053{bottom:212.999467pt;}
.y1c_c00053{bottom:240.599467pt;}
.y1b_c00053{bottom:268.199467pt;}
.y1a_c00053{bottom:295.799467pt;}
.y19_c00053{bottom:323.399467pt;}
.y18_c00053{bottom:350.999467pt;}
.y17_c00053{bottom:378.599467pt;}
.y16_c00053{bottom:433.799467pt;}
.y15_c00053{bottom:461.399467pt;}
.y14_c00053{bottom:488.999467pt;}
.y13_c00053{bottom:516.599467pt;}
.y12_c00053{bottom:544.199467pt;}
.y11_c00053{bottom:571.799467pt;}
.y10_c00053{bottom:626.839467pt;}
.yf_c00053{bottom:682.199467pt;}
.ye_c00053{bottom:709.719467pt;}
.yd_c00053{bottom:737.319467pt;}
.yc_c00053{bottom:764.919467pt;}
.yb_c00053{bottom:792.519467pt;}
.ya_c00053{bottom:820.119467pt;}
.y9_c00053{bottom:847.719467pt;}
.y8_c00053{bottom:875.319467pt;}
.y7_c00053{bottom:930.519467pt;}
.y6_c00053{bottom:958.119467pt;}
.y5_c00053{bottom:985.719467pt;}
.y4_c00053{bottom:1013.319467pt;}
.y3_c00053{bottom:1043.480107pt;}
.y2_c00053{bottom:1061.399467pt;}
.h2_c00053{height:44.800000pt;}
.h3_c00053{height:48.294844pt;}
.h4_c00053{height:68.288000pt;}
.h5_c00053{height:69.376000pt;}
.h0_c00053{height:1122.520000pt;}
.h1_c00053{height:1122.666667pt;}
.w0_c00053{width:793.701333pt;}
.w1_c00053{width:794.000000pt;}
.x0_c00053{left:0.000000pt;}
.x1_c00053{left:48.000000pt;}
.x2_c00053{left:113.440000pt;}
.x3_c00053{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00054;src:url('chunks/assets/font_c71c6ad5760f95ddc1442bba.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00054;src:url('chunks/assets/font_ee3ef8fa86e17540a8607b5c.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00054;src:url('chunks/assets/font_0cf551a8e2e70297b5d44167.woff2')format("woff");}.ff4_c00054{font-family:ff4_c00054;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00054;src:url('chunks/assets/font_76619c97f94e183237375ead.woff2')format("woff");}.ff5_c00054{font-family:ff5_c00054;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00054;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00054{font-family:ff6_c00054;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00054;src:url('chunks/assets/font_d4b1bc0462c895a18ddf6f7c.woff2')format("woff");}.ff7_c00054{font-family:ff7_c00054;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00054;src:url('chunks/assets/font_5f54d3d4f9fa58e9e6571630.woff2')format("woff");}.ff8_c00054{font-family:ff8_c00054;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00054;src:url('chunks/assets/font_1dcd225300faff4dbccab617.woff2')format("woff");}.ff9_c00054{font-family:ff9_c00054;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00054;src:url('chunks/assets/font_ad1deed156530fbf5fb3cb84.woff2')format("woff");}.ffa_c00054{font-family:ffa_c00054;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00054{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls9_c00054{letter-spacing:-0.360000px;}
.lsb_c00054{letter-spacing:-0.329400px;}
.ls6_c00054{letter-spacing:-0.288000px;}
.ls8_c00054{letter-spacing:-0.216000px;}
.lsa_c00054{letter-spacing:-0.065880px;}
.ls5_c00054{letter-spacing:0.000000px;}
.ls1_c00054{letter-spacing:0.072000px;}
.ls0_c00054{letter-spacing:0.144000px;}
.ls3_c00054{letter-spacing:0.197640px;}
.ls7_c00054{letter-spacing:0.360000px;}
.ls4_c00054{letter-spacing:22.794480px;}
.ls2_c00054{letter-spacing:23.040000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00054{word-spacing:-18.072000px;}
.ws7_c00054{word-spacing:-18.000000px;}
.ws9_c00054{word-spacing:-17.784000px;}
.wsd_c00054{word-spacing:-17.640000px;}
.ws40_c00054{word-spacing:-0.432000px;}
.wsb_c00054{word-spacing:-0.360000px;}
.ws17_c00054{word-spacing:-0.131760px;}
.ws28_c00054{word-spacing:-0.072000px;}
.wsc_c00054{word-spacing:0.000000px;}
.ws4a_c00054{word-spacing:0.065880px;}
.ws2f_c00054{word-spacing:0.288000px;}
.ws4d_c00054{word-spacing:0.329400px;}
.ws3c_c00054{word-spacing:0.360000px;}
.wse_c00054{word-spacing:0.790560px;}
.ws4b_c00054{word-spacing:0.856440px;}
.ws4c_c00054{word-spacing:0.988200px;}
.ws42_c00054{word-spacing:1.080000px;}
.ws49_c00054{word-spacing:1.251720px;}
.ws13_c00054{word-spacing:1.317600px;}
.ws1_c00054{word-spacing:1.440000px;}
.ws0_c00054{word-spacing:1.656000px;}
.ws52_c00054{word-spacing:1.712880px;}
.ws30_c00054{word-spacing:1.728000px;}
.ws14_c00054{word-spacing:1.778760px;}
.ws18_c00054{word-spacing:1.800000px;}
.ws53_c00054{word-spacing:1.976400px;}
.ws12_c00054{word-spacing:2.174040px;}
.ws19_c00054{word-spacing:2.376000px;}
.ws2_c00054{word-spacing:2.736000px;}
.ws1c_c00054{word-spacing:3.096000px;}
.ws1a_c00054{word-spacing:3.168000px;}
.ws1b_c00054{word-spacing:3.240000px;}
.ws5_c00054{word-spacing:3.312000px;}
.ws34_c00054{word-spacing:4.968000px;}
.ws41_c00054{word-spacing:5.040000px;}
.ws39_c00054{word-spacing:5.328000px;}
.ws16_c00054{word-spacing:5.400000px;}
.ws2a_c00054{word-spacing:5.760000px;}
.ws51_c00054{word-spacing:5.929200px;}
.ws50_c00054{word-spacing:5.995080px;}
.ws11_c00054{word-spacing:6.120252px;}
.ws35_c00054{word-spacing:6.480000px;}
.ws46_c00054{word-spacing:6.768000px;}
.ws23_c00054{word-spacing:6.840000px;}
.ws22_c00054{word-spacing:7.848000px;}
.ws21_c00054{word-spacing:7.920000px;}
.ws3b_c00054{word-spacing:8.208000px;}
.ws3a_c00054{word-spacing:8.280000px;}
.ws2b_c00054{word-spacing:8.640000px;}
.ws55_c00054{word-spacing:8.928000px;}
.ws56_c00054{word-spacing:9.000000px;}
.ws20_c00054{word-spacing:9.216000px;}
.ws1e_c00054{word-spacing:9.288000px;}
.ws54_c00054{word-spacing:9.360000px;}
.ws15_c00054{word-spacing:9.432000px;}
.ws3_c00054{word-spacing:9.504000px;}
.ws1d_c00054{word-spacing:9.648000px;}
.ws1f_c00054{word-spacing:9.720000px;}
.ws4_c00054{word-spacing:9.792000px;}
.ws31_c00054{word-spacing:11.376000px;}
.ws24_c00054{word-spacing:11.448000px;}
.ws32_c00054{word-spacing:11.808000px;}
.ws3d_c00054{word-spacing:14.400000px;}
.ws47_c00054{word-spacing:14.688000px;}
.ws25_c00054{word-spacing:15.408000px;}
.ws26_c00054{word-spacing:15.480000px;}
.ws43_c00054{word-spacing:16.848000px;}
.ws3e_c00054{word-spacing:17.352000px;}
.ws3f_c00054{word-spacing:17.640000px;}
.ws27_c00054{word-spacing:17.928000px;}
.ws36_c00054{word-spacing:18.360000px;}
.ws29_c00054{word-spacing:19.008000px;}
.wsf_c00054{word-spacing:20.093400px;}
.ws4f_c00054{word-spacing:20.422800px;}
.ws4e_c00054{word-spacing:20.686320px;}
.ws10_c00054{word-spacing:20.883960px;}
.ws48_c00054{word-spacing:21.168000px;}
.ws57_c00054{word-spacing:22.608000px;}
.ws44_c00054{word-spacing:24.048000px;}
.ws45_c00054{word-spacing:24.336000px;}
.ws38_c00054{word-spacing:24.696000px;}
.ws37_c00054{word-spacing:24.840000px;}
.ws2e_c00054{word-spacing:27.792000px;}
.wsa_c00054{word-spacing:27.864000px;}
.ws2d_c00054{word-spacing:27.936000px;}
.ws2c_c00054{word-spacing:28.080000px;}
.ws33_c00054{word-spacing:30.168000px;}
.ws8_c00054{word-spacing:86.400000px;}
._1_c00054{margin-left:-1.080000px;}
._0_c00054{width:1.054080px;}
._3_c00054{width:4.968000px;}
._8_c00054{width:9.288000px;}
._4_c00054{width:16.555212px;}
._2_c00054{width:19.399680px;}
._7_c00054{width:21.646440px;}
._6_c00054{width:23.723388px;}
._5_c00054{width:35.772840px;}
.fc2_c00054{color:transparent;}
.fc1_c00054{color:rgb(0,0,0);}
.fc0_c00054{color:rgb(35,31,32);}
.fs1_c00054{font-size:65.880000px;}
.fs0_c00054{font-size:72.000000px;}
.y0_c00054{bottom:0.000000px;}
.y1_c00054{bottom:61.748550px;}
.y20_c00054{bottom:115.424400px;}
.y2d_c00054{bottom:128.384400px;}
.y1f_c00054{bottom:146.474400px;}
.y2c_c00054{bottom:159.434400px;}
.y1e_c00054{bottom:177.524400px;}
.y2b_c00054{bottom:190.484400px;}
.y1d_c00054{bottom:239.624400px;}
.y2a_c00054{bottom:251.236110px;}
.y1c_c00054{bottom:270.674400px;}
.y29_c00054{bottom:279.679800px;}
.y1b_c00054{bottom:301.724400px;}
.y28_c00054{bottom:308.024670px;}
.y1a_c00054{bottom:332.774400px;}
.y27_c00054{bottom:336.550710px;}
.y19_c00054{bottom:363.824400px;}
.y26_c00054{bottom:364.994400px;}
.y18_c00054{bottom:394.874400px;}
.y17_c00054{bottom:425.924400px;}
.y25_c00054{bottom:456.974400px;}
.y16_c00054{bottom:488.024400px;}
.y15_c00054{bottom:519.074400px;}
.y14_c00054{bottom:550.124400px;}
.y13_c00054{bottom:581.174400px;}
.y12_c00054{bottom:612.224400px;}
.y11_c00054{bottom:643.274400px;}
.y24_c00054{bottom:674.324400px;}
.y10_c00054{bottom:705.194400px;}
.y23_c00054{bottom:705.374400px;}
.y22_c00054{bottom:736.424400px;}
.yf_c00054{bottom:767.474400px;}
.ye_c00054{bottom:798.434400px;}
.yd_c00054{bottom:829.484400px;}
.yc_c00054{bottom:860.534400px;}
.yb_c00054{bottom:891.584400px;}
.ya_c00054{bottom:922.634400px;}
.y9_c00054{bottom:953.684400px;}
.y8_c00054{bottom:984.734400px;}
.y21_c00054{bottom:1015.784400px;}
.y7_c00054{bottom:1046.834400px;}
.y6_c00054{bottom:1077.884400px;}
.y5_c00054{bottom:1108.934400px;}
.y4_c00054{bottom:1139.984400px;}
.y3_c00054{bottom:1173.915120px;}
.y2_c00054{bottom:1194.074400px;}
.h2_c00054{height:50.400000px;}
.h3_c00054{height:54.331699px;}
.h7_c00054{height:70.293960px;}
.h6_c00054{height:71.413920px;}
.h4_c00054{height:76.824000px;}
.h5_c00054{height:78.048000px;}
.h0_c00054{height:1262.835000px;}
.h1_c00054{height:1263.000000px;}
.w2_c00054{width:0.000000px;}
.w3_c00054{width:0.066000px;}
.w0_c00054{width:892.914000px;}
.w1_c00054{width:893.250000px;}
.x1_c00054{left:-838.913400px;}
.x2_c00054{left:-765.293400px;}
.x3_c00054{left:-733.343400px;}
.x0_c00054{left:0.000000px;}
.x6_c00054{left:127.618740px;}
.x7_c00054{left:159.570000px;}
.x5_c00054{left:701.730000px;}
.x4_c00054{left:804.366150px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls9_c00054{letter-spacing:-0.320000pt;}
.lsb_c00054{letter-spacing:-0.292800pt;}
.ls6_c00054{letter-spacing:-0.256000pt;}
.ls8_c00054{letter-spacing:-0.192000pt;}
.lsa_c00054{letter-spacing:-0.058560pt;}
.ls5_c00054{letter-spacing:0.000000pt;}
.ls1_c00054{letter-spacing:0.064000pt;}
.ls0_c00054{letter-spacing:0.128000pt;}
.ls3_c00054{letter-spacing:0.175680pt;}
.ls7_c00054{letter-spacing:0.320000pt;}
.ls4_c00054{letter-spacing:20.261760pt;}
.ls2_c00054{letter-spacing:20.480000pt;}
.ws6_c00054{word-spacing:-16.064000pt;}
.ws7_c00054{word-spacing:-16.000000pt;}
.ws9_c00054{word-spacing:-15.808000pt;}
.wsd_c00054{word-spacing:-15.680000pt;}
.ws40_c00054{word-spacing:-0.384000pt;}
.wsb_c00054{word-spacing:-0.320000pt;}
.ws17_c00054{word-spacing:-0.117120pt;}
.ws28_c00054{word-spacing:-0.064000pt;}
.wsc_c00054{word-spacing:0.000000pt;}
.ws4a_c00054{word-spacing:0.058560pt;}
.ws2f_c00054{word-spacing:0.256000pt;}
.ws4d_c00054{word-spacing:0.292800pt;}
.ws3c_c00054{word-spacing:0.320000pt;}
.wse_c00054{word-spacing:0.702720pt;}
.ws4b_c00054{word-spacing:0.761280pt;}
.ws4c_c00054{word-spacing:0.878400pt;}
.ws42_c00054{word-spacing:0.960000pt;}
.ws49_c00054{word-spacing:1.112640pt;}
.ws13_c00054{word-spacing:1.171200pt;}
.ws1_c00054{word-spacing:1.280000pt;}
.ws0_c00054{word-spacing:1.472000pt;}
.ws52_c00054{word-spacing:1.522560pt;}
.ws30_c00054{word-spacing:1.536000pt;}
.ws14_c00054{word-spacing:1.581120pt;}
.ws18_c00054{word-spacing:1.600000pt;}
.ws53_c00054{word-spacing:1.756800pt;}
.ws12_c00054{word-spacing:1.932480pt;}
.ws19_c00054{word-spacing:2.112000pt;}
.ws2_c00054{word-spacing:2.432000pt;}
.ws1c_c00054{word-spacing:2.752000pt;}
.ws1a_c00054{word-spacing:2.816000pt;}
.ws1b_c00054{word-spacing:2.880000pt;}
.ws5_c00054{word-spacing:2.944000pt;}
.ws34_c00054{word-spacing:4.416000pt;}
.ws41_c00054{word-spacing:4.480000pt;}
.ws39_c00054{word-spacing:4.736000pt;}
.ws16_c00054{word-spacing:4.800000pt;}
.ws2a_c00054{word-spacing:5.120000pt;}
.ws51_c00054{word-spacing:5.270400pt;}
.ws50_c00054{word-spacing:5.328960pt;}
.ws11_c00054{word-spacing:5.440224pt;}
.ws35_c00054{word-spacing:5.760000pt;}
.ws46_c00054{word-spacing:6.016000pt;}
.ws23_c00054{word-spacing:6.080000pt;}
.ws22_c00054{word-spacing:6.976000pt;}
.ws21_c00054{word-spacing:7.040000pt;}
.ws3b_c00054{word-spacing:7.296000pt;}
.ws3a_c00054{word-spacing:7.360000pt;}
.ws2b_c00054{word-spacing:7.680000pt;}
.ws55_c00054{word-spacing:7.936000pt;}
.ws56_c00054{word-spacing:8.000000pt;}
.ws20_c00054{word-spacing:8.192000pt;}
.ws1e_c00054{word-spacing:8.256000pt;}
.ws54_c00054{word-spacing:8.320000pt;}
.ws15_c00054{word-spacing:8.384000pt;}
.ws3_c00054{word-spacing:8.448000pt;}
.ws1d_c00054{word-spacing:8.576000pt;}
.ws1f_c00054{word-spacing:8.640000pt;}
.ws4_c00054{word-spacing:8.704000pt;}
.ws31_c00054{word-spacing:10.112000pt;}
.ws24_c00054{word-spacing:10.176000pt;}
.ws32_c00054{word-spacing:10.496000pt;}
.ws3d_c00054{word-spacing:12.800000pt;}
.ws47_c00054{word-spacing:13.056000pt;}
.ws25_c00054{word-spacing:13.696000pt;}
.ws26_c00054{word-spacing:13.760000pt;}
.ws43_c00054{word-spacing:14.976000pt;}
.ws3e_c00054{word-spacing:15.424000pt;}
.ws3f_c00054{word-spacing:15.680000pt;}
.ws27_c00054{word-spacing:15.936000pt;}
.ws36_c00054{word-spacing:16.320000pt;}
.ws29_c00054{word-spacing:16.896000pt;}
.wsf_c00054{word-spacing:17.860800pt;}
.ws4f_c00054{word-spacing:18.153600pt;}
.ws4e_c00054{word-spacing:18.387840pt;}
.ws10_c00054{word-spacing:18.563520pt;}
.ws48_c00054{word-spacing:18.816000pt;}
.ws57_c00054{word-spacing:20.096000pt;}
.ws44_c00054{word-spacing:21.376000pt;}
.ws45_c00054{word-spacing:21.632000pt;}
.ws38_c00054{word-spacing:21.952000pt;}
.ws37_c00054{word-spacing:22.080000pt;}
.ws2e_c00054{word-spacing:24.704000pt;}
.wsa_c00054{word-spacing:24.768000pt;}
.ws2d_c00054{word-spacing:24.832000pt;}
.ws2c_c00054{word-spacing:24.960000pt;}
.ws33_c00054{word-spacing:26.816000pt;}
.ws8_c00054{word-spacing:76.800000pt;}
._1_c00054{margin-left:-0.960000pt;}
._0_c00054{width:0.936960pt;}
._3_c00054{width:4.416000pt;}
._8_c00054{width:8.256000pt;}
._4_c00054{width:14.715744pt;}
._2_c00054{width:17.244160pt;}
._7_c00054{width:19.241280pt;}
._6_c00054{width:21.087456pt;}
._5_c00054{width:31.798080pt;}
.fs1_c00054{font-size:58.560000pt;}
.fs0_c00054{font-size:64.000000pt;}
.y0_c00054{bottom:0.000000pt;}
.y1_c00054{bottom:54.887600pt;}
.y20_c00054{bottom:102.599467pt;}
.y2d_c00054{bottom:114.119467pt;}
.y1f_c00054{bottom:130.199467pt;}
.y2c_c00054{bottom:141.719467pt;}
.y1e_c00054{bottom:157.799467pt;}
.y2b_c00054{bottom:169.319467pt;}
.y1d_c00054{bottom:212.999467pt;}
.y2a_c00054{bottom:223.320987pt;}
.y1c_c00054{bottom:240.599467pt;}
.y29_c00054{bottom:248.604267pt;}
.y1b_c00054{bottom:268.199467pt;}
.y28_c00054{bottom:273.799707pt;}
.y1a_c00054{bottom:295.799467pt;}
.y27_c00054{bottom:299.156187pt;}
.y19_c00054{bottom:323.399467pt;}
.y26_c00054{bottom:324.439467pt;}
.y18_c00054{bottom:350.999467pt;}
.y17_c00054{bottom:378.599467pt;}
.y25_c00054{bottom:406.199467pt;}
.y16_c00054{bottom:433.799467pt;}
.y15_c00054{bottom:461.399467pt;}
.y14_c00054{bottom:488.999467pt;}
.y13_c00054{bottom:516.599467pt;}
.y12_c00054{bottom:544.199467pt;}
.y11_c00054{bottom:571.799467pt;}
.y24_c00054{bottom:599.399467pt;}
.y10_c00054{bottom:626.839467pt;}
.y23_c00054{bottom:626.999467pt;}
.y22_c00054{bottom:654.599467pt;}
.yf_c00054{bottom:682.199467pt;}
.ye_c00054{bottom:709.719467pt;}
.yd_c00054{bottom:737.319467pt;}
.yc_c00054{bottom:764.919467pt;}
.yb_c00054{bottom:792.519467pt;}
.ya_c00054{bottom:820.119467pt;}
.y9_c00054{bottom:847.719467pt;}
.y8_c00054{bottom:875.319467pt;}
.y21_c00054{bottom:902.919467pt;}
.y7_c00054{bottom:930.519467pt;}
.y6_c00054{bottom:958.119467pt;}
.y5_c00054{bottom:985.719467pt;}
.y4_c00054{bottom:1013.319467pt;}
.y3_c00054{bottom:1043.480107pt;}
.y2_c00054{bottom:1061.399467pt;}
.h2_c00054{height:44.800000pt;}
.h3_c00054{height:48.294844pt;}
.h7_c00054{height:62.483520pt;}
.h6_c00054{height:63.479040pt;}
.h4_c00054{height:68.288000pt;}
.h5_c00054{height:69.376000pt;}
.h0_c00054{height:1122.520000pt;}
.h1_c00054{height:1122.666667pt;}
.w2_c00054{width:0.000000pt;}
.w3_c00054{width:0.058667pt;}
.w0_c00054{width:793.701333pt;}
.w1_c00054{width:794.000000pt;}
.x1_c00054{left:-745.700800pt;}
.x2_c00054{left:-680.260800pt;}
.x3_c00054{left:-651.860800pt;}
.x0_c00054{left:0.000000pt;}
.x6_c00054{left:113.438880pt;}
.x7_c00054{left:141.840000pt;}
.x5_c00054{left:623.760000pt;}
.x4_c00054{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00055;src:url('chunks/assets/font_cb317eb54161582c6915966e.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00055;src:url('chunks/assets/font_040ac0310c28d0f99ce0b9fe.woff2')format("woff");}.ff3_c00055{font-family:ff3_c00055;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00055;src:url('chunks/assets/font_02bff8bbda7d2729f44a21b2.woff2')format("woff");}.ff4_c00055{font-family:ff4_c00055;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00055{letter-spacing:-0.360000px;}
.ls4_c00055{letter-spacing:-0.072000px;}
.ls3_c00055{letter-spacing:0.000000px;}
.ls1_c00055{letter-spacing:0.072000px;}
.ls0_c00055{letter-spacing:0.144000px;}
.ls2_c00055{letter-spacing:24.480000px;}
.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:-18.000000px;}
.ws6_c00055{word-spacing:-0.131760px;}
.ws16_c00055{word-spacing:-0.072000px;}
.ws5_c00055{word-spacing:0.000000px;}
.ws1c_c00055{word-spacing:0.360000px;}
.ws15_c00055{word-spacing:1.368000px;}
.wsd_c00055{word-spacing:1.440000px;}
.ws3_c00055{word-spacing:1.663200px;}
.ws1f_c00055{word-spacing:1.728000px;}
.ws1e_c00055{word-spacing:1.800000px;}
.ws4_c00055{word-spacing:1.807200px;}
.ws1d_c00055{word-spacing:2.880000px;}
.ws14_c00055{word-spacing:3.960000px;}
.ws21_c00055{word-spacing:4.176000px;}
.ws10_c00055{word-spacing:4.320000px;}
.ws22_c00055{word-spacing:4.536000px;}
.ws20_c00055{word-spacing:4.680000px;}
.ws18_c00055{word-spacing:6.408000px;}
.ws17_c00055{word-spacing:6.480000px;}
.ws2_c00055{word-spacing:6.696000px;}
.ws9_c00055{word-spacing:7.776000px;}
.ws8_c00055{word-spacing:7.920000px;}
.ws19_c00055{word-spacing:8.640000px;}
.ws1a_c00055{word-spacing:9.648000px;}
.ws1b_c00055{word-spacing:9.720000px;}
.ws23_c00055{word-spacing:11.520000px;}
.wsc_c00055{word-spacing:11.736000px;}
.wsb_c00055{word-spacing:11.808000px;}
.wsa_c00055{word-spacing:13.680000px;}
.ws13_c00055{word-spacing:15.048000px;}
.ws11_c00055{word-spacing:15.408000px;}
.ws12_c00055{word-spacing:17.280000px;}
.wsf_c00055{word-spacing:18.360000px;}
.ws7_c00055{word-spacing:19.080000px;}
.ws24_c00055{word-spacing:20.376000px;}
.wse_c00055{word-spacing:20.448000px;}
.ws25_c00055{word-spacing:20.520000px;}
.ws1_c00055{word-spacing:36.000000px;}
._1_c00055{margin-left:-1.080000px;}
._0_c00055{width:1.054080px;}
._2_c00055{width:104.400000px;}
.fc1_c00055{color:rgb(0,0,0);}
.fc0_c00055{color:rgb(35,31,32);}
.fs1_c00055{font-size:65.880000px;}
.fs0_c00055{font-size:72.000000px;}
.y0_c00055{bottom:0.000000px;}
.y1_c00055{bottom:61.748550px;}
.y1f_c00055{bottom:146.474400px;}
.y1e_c00055{bottom:177.524400px;}
.y1d_c00055{bottom:208.574400px;}
.y1c_c00055{bottom:239.624400px;}
.y1b_c00055{bottom:270.674400px;}
.y1a_c00055{bottom:301.724400px;}
.y19_c00055{bottom:332.774400px;}
.y18_c00055{bottom:394.874400px;}
.y17_c00055{bottom:425.924400px;}
.y16_c00055{bottom:456.974400px;}
.y15_c00055{bottom:488.024400px;}
.y14_c00055{bottom:549.944400px;}
.y13_c00055{bottom:612.044400px;}
.y12_c00055{bottom:674.324400px;}
.y11_c00055{bottom:705.374400px;}
.y10_c00055{bottom:736.424400px;}
.yf_c00055{bottom:767.474400px;}
.ye_c00055{bottom:798.434400px;}
.yd_c00055{bottom:829.484400px;}
.yc_c00055{bottom:860.534400px;}
.yb_c00055{bottom:891.584400px;}
.ya_c00055{bottom:922.634400px;}
.y9_c00055{bottom:953.684400px;}
.y8_c00055{bottom:1015.784400px;}
.y7_c00055{bottom:1046.834400px;}
.y6_c00055{bottom:1077.884400px;}
.y5_c00055{bottom:1108.934400px;}
.y4_c00055{bottom:1139.984400px;}
.y3_c00055{bottom:1173.915120px;}
.y2_c00055{bottom:1194.074400px;}
.h2_c00055{height:50.400000px;}
.h3_c00055{height:54.331699px;}
.h4_c00055{height:76.824000px;}
.h0_c00055{height:1262.835000px;}
.h1_c00055{height:1263.000000px;}
.w0_c00055{width:892.914000px;}
.w1_c00055{width:893.250000px;}
.x0_c00055{left:0.000000px;}
.x1_c00055{left:54.000000px;}
.x2_c00055{left:127.620000px;}
.x3_c00055{left:159.570000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls5_c00055{letter-spacing:-0.320000pt;}
.ls4_c00055{letter-spacing:-0.064000pt;}
.ls3_c00055{letter-spacing:0.000000pt;}
.ls1_c00055{letter-spacing:0.064000pt;}
.ls0_c00055{letter-spacing:0.128000pt;}
.ls2_c00055{letter-spacing:21.760000pt;}
.ws0_c00055{word-spacing:-16.000000pt;}
.ws6_c00055{word-spacing:-0.117120pt;}
.ws16_c00055{word-spacing:-0.064000pt;}
.ws5_c00055{word-spacing:0.000000pt;}
.ws1c_c00055{word-spacing:0.320000pt;}
.ws15_c00055{word-spacing:1.216000pt;}
.wsd_c00055{word-spacing:1.280000pt;}
.ws3_c00055{word-spacing:1.478400pt;}
.ws1f_c00055{word-spacing:1.536000pt;}
.ws1e_c00055{word-spacing:1.600000pt;}
.ws4_c00055{word-spacing:1.606400pt;}
.ws1d_c00055{word-spacing:2.560000pt;}
.ws14_c00055{word-spacing:3.520000pt;}
.ws21_c00055{word-spacing:3.712000pt;}
.ws10_c00055{word-spacing:3.840000pt;}
.ws22_c00055{word-spacing:4.032000pt;}
.ws20_c00055{word-spacing:4.160000pt;}
.ws18_c00055{word-spacing:5.696000pt;}
.ws17_c00055{word-spacing:5.760000pt;}
.ws2_c00055{word-spacing:5.952000pt;}
.ws9_c00055{word-spacing:6.912000pt;}
.ws8_c00055{word-spacing:7.040000pt;}
.ws19_c00055{word-spacing:7.680000pt;}
.ws1a_c00055{word-spacing:8.576000pt;}
.ws1b_c00055{word-spacing:8.640000pt;}
.ws23_c00055{word-spacing:10.240000pt;}
.wsc_c00055{word-spacing:10.432000pt;}
.wsb_c00055{word-spacing:10.496000pt;}
.wsa_c00055{word-spacing:12.160000pt;}
.ws13_c00055{word-spacing:13.376000pt;}
.ws11_c00055{word-spacing:13.696000pt;}
.ws12_c00055{word-spacing:15.360000pt;}
.wsf_c00055{word-spacing:16.320000pt;}
.ws7_c00055{word-spacing:16.960000pt;}
.ws24_c00055{word-spacing:18.112000pt;}
.wse_c00055{word-spacing:18.176000pt;}
.ws25_c00055{word-spacing:18.240000pt;}
.ws1_c00055{word-spacing:32.000000pt;}
._1_c00055{margin-left:-0.960000pt;}
._0_c00055{width:0.936960pt;}
._2_c00055{width:92.800000pt;}
.fs1_c00055{font-size:58.560000pt;}
.fs0_c00055{font-size:64.000000pt;}
.y0_c00055{bottom:0.000000pt;}
.y1_c00055{bottom:54.887600pt;}
.y1f_c00055{bottom:130.199467pt;}
.y1e_c00055{bottom:157.799467pt;}
.y1d_c00055{bottom:185.399467pt;}
.y1c_c00055{bottom:212.999467pt;}
.y1b_c00055{bottom:240.599467pt;}
.y1a_c00055{bottom:268.199467pt;}
.y19_c00055{bottom:295.799467pt;}
.y18_c00055{bottom:350.999467pt;}
.y17_c00055{bottom:378.599467pt;}
.y16_c00055{bottom:406.199467pt;}
.y15_c00055{bottom:433.799467pt;}
.y14_c00055{bottom:488.839467pt;}
.y13_c00055{bottom:544.039467pt;}
.y12_c00055{bottom:599.399467pt;}
.y11_c00055{bottom:626.999467pt;}
.y10_c00055{bottom:654.599467pt;}
.yf_c00055{bottom:682.199467pt;}
.ye_c00055{bottom:709.719467pt;}
.yd_c00055{bottom:737.319467pt;}
.yc_c00055{bottom:764.919467pt;}
.yb_c00055{bottom:792.519467pt;}
.ya_c00055{bottom:820.119467pt;}
.y9_c00055{bottom:847.719467pt;}
.y8_c00055{bottom:902.919467pt;}
.y7_c00055{bottom:930.519467pt;}
.y6_c00055{bottom:958.119467pt;}
.y5_c00055{bottom:985.719467pt;}
.y4_c00055{bottom:1013.319467pt;}
.y3_c00055{bottom:1043.480107pt;}
.y2_c00055{bottom:1061.399467pt;}
.h2_c00055{height:44.800000pt;}
.h3_c00055{height:48.294844pt;}
.h4_c00055{height:68.288000pt;}
.h0_c00055{height:1122.520000pt;}
.h1_c00055{height:1122.666667pt;}
.w0_c00055{width:793.701333pt;}
.w1_c00055{width:794.000000pt;}
.x0_c00055{left:0.000000pt;}
.x1_c00055{left:48.000000pt;}
.x2_c00055{left:113.440000pt;}
.x3_c00055{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00056;src:url('chunks/assets/font_e5dee0cf6a33f4737f1b0b55.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00056;src:url('chunks/assets/font_cd6ea692f8a6dd0c2d58bb3b.woff2')format("woff");}.ff3_c00056{font-family:ff3_c00056;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00056;src:url('chunks/assets/font_0615c3ac0b23fbf112803d0a.woff2')format("woff");}.ff4_c00056{font-family:ff4_c00056;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00056;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00056{font-family:ff5_c00056;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00056;src:url('chunks/assets/font_b9f5df98ec48f2244d3122b4.woff2')format("woff");}.ff6_c00056{font-family:ff6_c00056;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00056;src:url('chunks/assets/font_ab486b0417d83581e1043fd6.woff2')format("woff");}.ff7_c00056{font-family:ff7_c00056;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00056;src:url('chunks/assets/font_1bc64d92438918041dde102d.woff2')format("woff");}.ff8_c00056{font-family:ff8_c00056;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00056;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff9_c00056{font-family:ff9_c00056;line-height:0.666504;font-style: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;}
.ls7_c00056{letter-spacing:-0.360000px;}
.ls8_c00056{letter-spacing:-0.288000px;}
.ls6_c00056{letter-spacing:-0.072000px;}
.ls5_c00056{letter-spacing:0.000000px;}
.ls1_c00056{letter-spacing:0.072000px;}
.ls0_c00056{letter-spacing:0.144000px;}
.ls4_c00056{letter-spacing:18.000000px;}
.ls2_c00056{letter-spacing:24.480000px;}
.ls3_c00056{letter-spacing:45.432000px;}
.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;}
}
.wse_c00056{word-spacing:-18.144000px;}
.wsc_c00056{word-spacing:-18.072000px;}
.ws0_c00056{word-spacing:-18.000000px;}
.wsb_c00056{word-spacing:-0.432000px;}
.ws3f_c00056{word-spacing:-0.144000px;}
.ws12_c00056{word-spacing:-0.131760px;}
.ws5_c00056{word-spacing:-0.072000px;}
.ws11_c00056{word-spacing:0.000000px;}
.wsf_c00056{word-spacing:0.072000px;}
.ws25_c00056{word-spacing:0.360000px;}
.ws8_c00056{word-spacing:0.720000px;}
.ws3b_c00056{word-spacing:1.008000px;}
.ws3c_c00056{word-spacing:1.080000px;}
.ws20_c00056{word-spacing:1.368000px;}
.ws19_c00056{word-spacing:1.440000px;}
.ws3_c00056{word-spacing:1.663200px;}
.ws28_c00056{word-spacing:1.728000px;}
.ws27_c00056{word-spacing:1.800000px;}
.ws4_c00056{word-spacing:1.807200px;}
.ws26_c00056{word-spacing:2.880000px;}
.ws37_c00056{word-spacing:3.528000px;}
.wsd_c00056{word-spacing:3.960000px;}
.ws2a_c00056{word-spacing:4.176000px;}
.ws39_c00056{word-spacing:4.248000px;}
.ws1c_c00056{word-spacing:4.320000px;}
.ws2b_c00056{word-spacing:4.536000px;}
.ws29_c00056{word-spacing:4.680000px;}
.ws22_c00056{word-spacing:6.408000px;}
.ws21_c00056{word-spacing:6.480000px;}
.ws2_c00056{word-spacing:6.696000px;}
.ws15_c00056{word-spacing:7.776000px;}
.ws14_c00056{word-spacing:7.920000px;}
.ws23_c00056{word-spacing:8.640000px;}
.ws30_c00056{word-spacing:8.928000px;}
.ws3a_c00056{word-spacing:9.288000px;}
.ws38_c00056{word-spacing:9.576000px;}
.wsa_c00056{word-spacing:9.648000px;}
.ws24_c00056{word-spacing:9.720000px;}
.ws9_c00056{word-spacing:9.792000px;}
.ws2c_c00056{word-spacing:11.520000px;}
.ws18_c00056{word-spacing:11.736000px;}
.ws17_c00056{word-spacing:11.808000px;}
.ws40_c00056{word-spacing:12.816000px;}
.ws3e_c00056{word-spacing:12.960000px;}
.ws16_c00056{word-spacing:13.680000px;}
.ws1f_c00056{word-spacing:15.048000px;}
.ws1d_c00056{word-spacing:15.408000px;}
.ws2f_c00056{word-spacing:16.920000px;}
.ws3d_c00056{word-spacing:17.208000px;}
.ws10_c00056{word-spacing:17.236800px;}
.ws1e_c00056{word-spacing:17.280000px;}
.ws1b_c00056{word-spacing:18.360000px;}
.ws31_c00056{word-spacing:18.648000px;}
.ws6_c00056{word-spacing:19.008000px;}
.ws13_c00056{word-spacing:19.080000px;}
.ws2d_c00056{word-spacing:20.376000px;}
.ws1a_c00056{word-spacing:20.448000px;}
.ws2e_c00056{word-spacing:20.520000px;}
.ws32_c00056{word-spacing:21.888000px;}
.ws35_c00056{word-spacing:27.216000px;}
.ws33_c00056{word-spacing:27.648000px;}
.ws34_c00056{word-spacing:27.720000px;}
.ws7_c00056{word-spacing:27.864000px;}
.ws36_c00056{word-spacing:28.296000px;}
.ws1_c00056{word-spacing:36.000000px;}
._1_c00056{margin-left:-1.080000px;}
._0_c00056{width:1.054080px;}
._3_c00056{width:9.432000px;}
._2_c00056{width:104.400000px;}
.fc2_c00056{color:transparent;}
.fc1_c00056{color:rgb(0,0,0);}
.fc0_c00056{color:rgb(35,31,32);}
.fs1_c00056{font-size:65.880000px;}
.fs0_c00056{font-size:72.000000px;}
.y0_c00056{bottom:0.000000px;}
.y1_c00056{bottom:61.748550px;}
.y1f_c00056{bottom:146.474400px;}
.y36_c00056{bottom:169.784400px;}
.y1e_c00056{bottom:177.524400px;}
.y35_c00056{bottom:200.834400px;}
.y1d_c00056{bottom:208.574400px;}
.y34_c00056{bottom:231.884400px;}
.y1c_c00056{bottom:239.624400px;}
.y33_c00056{bottom:262.934400px;}
.y1b_c00056{bottom:270.674400px;}
.y1a_c00056{bottom:301.724400px;}
.y32_c00056{bottom:325.034400px;}
.y19_c00056{bottom:332.774400px;}
.y31_c00056{bottom:356.084400px;}
.y30_c00056{bottom:387.134400px;}
.y18_c00056{bottom:394.874400px;}
.y2f_c00056{bottom:418.184400px;}
.y17_c00056{bottom:425.924400px;}
.y2e_c00056{bottom:449.234400px;}
.y16_c00056{bottom:456.974400px;}
.y15_c00056{bottom:488.024400px;}
.y2d_c00056{bottom:511.244400px;}
.y2c_c00056{bottom:543.644400px;}
.y14_c00056{bottom:549.944400px;}
.y2b_c00056{bottom:574.604400px;}
.y2a_c00056{bottom:607.004400px;}
.y13_c00056{bottom:612.044400px;}
.y29_c00056{bottom:638.054400px;}
.y28_c00056{bottom:669.104400px;}
.y12_c00056{bottom:674.324400px;}
.y27_c00056{bottom:701.504400px;}
.y11_c00056{bottom:705.374400px;}
.y26_c00056{bottom:732.464400px;}
.y10_c00056{bottom:736.424400px;}
.y25_c00056{bottom:764.864400px;}
.yf_c00056{bottom:767.474400px;}
.y24_c00056{bottom:795.824400px;}
.ye_c00056{bottom:798.434400px;}
.y23_c00056{bottom:828.224400px;}
.yd_c00056{bottom:829.484400px;}
.y22_c00056{bottom:859.274400px;}
.yc_c00056{bottom:860.534400px;}
.y21_c00056{bottom:890.234400px;}
.yb_c00056{bottom:891.584400px;}
.ya_c00056{bottom:922.634400px;}
.y9_c00056{bottom:953.684400px;}
.y20_c00056{bottom:984.734400px;}
.y8_c00056{bottom:1015.784400px;}
.y7_c00056{bottom:1046.834400px;}
.y6_c00056{bottom:1077.884400px;}
.y5_c00056{bottom:1108.934400px;}
.y4_c00056{bottom:1139.984400px;}
.y3_c00056{bottom:1173.915120px;}
.y2_c00056{bottom:1194.074400px;}
.h2_c00056{height:50.400000px;}
.h3_c00056{height:54.331699px;}
.h4_c00056{height:76.824000px;}
.h0_c00056{height:1262.835000px;}
.h1_c00056{height:1263.000000px;}
.w2_c00056{width:0.000000px;}
.w3_c00056{width:0.066000px;}
.w0_c00056{width:892.914000px;}
.w1_c00056{width:893.250000px;}
.x1_c00056{left:-838.913400px;}
.x2_c00056{left:-765.293400px;}
.x3_c00056{left:-733.343400px;}
.x0_c00056{left:0.000000px;}
.x6_c00056{left:127.618740px;}
.x8_c00056{left:148.950000px;}
.x7_c00056{left:159.570000px;}
.x9_c00056{left:170.190000px;}
.x5_c00056{left:701.730000px;}
.x4_c00056{left:804.366150px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls7_c00056{letter-spacing:-0.320000pt;}
.ls8_c00056{letter-spacing:-0.256000pt;}
.ls6_c00056{letter-spacing:-0.064000pt;}
.ls5_c00056{letter-spacing:0.000000pt;}
.ls1_c00056{letter-spacing:0.064000pt;}
.ls0_c00056{letter-spacing:0.128000pt;}
.ls4_c00056{letter-spacing:16.000000pt;}
.ls2_c00056{letter-spacing:21.760000pt;}
.ls3_c00056{letter-spacing:40.384000pt;}
.wse_c00056{word-spacing:-16.128000pt;}
.wsc_c00056{word-spacing:-16.064000pt;}
.ws0_c00056{word-spacing:-16.000000pt;}
.wsb_c00056{word-spacing:-0.384000pt;}
.ws3f_c00056{word-spacing:-0.128000pt;}
.ws12_c00056{word-spacing:-0.117120pt;}
.ws5_c00056{word-spacing:-0.064000pt;}
.ws11_c00056{word-spacing:0.000000pt;}
.wsf_c00056{word-spacing:0.064000pt;}
.ws25_c00056{word-spacing:0.320000pt;}
.ws8_c00056{word-spacing:0.640000pt;}
.ws3b_c00056{word-spacing:0.896000pt;}
.ws3c_c00056{word-spacing:0.960000pt;}
.ws20_c00056{word-spacing:1.216000pt;}
.ws19_c00056{word-spacing:1.280000pt;}
.ws3_c00056{word-spacing:1.478400pt;}
.ws28_c00056{word-spacing:1.536000pt;}
.ws27_c00056{word-spacing:1.600000pt;}
.ws4_c00056{word-spacing:1.606400pt;}
.ws26_c00056{word-spacing:2.560000pt;}
.ws37_c00056{word-spacing:3.136000pt;}
.wsd_c00056{word-spacing:3.520000pt;}
.ws2a_c00056{word-spacing:3.712000pt;}
.ws39_c00056{word-spacing:3.776000pt;}
.ws1c_c00056{word-spacing:3.840000pt;}
.ws2b_c00056{word-spacing:4.032000pt;}
.ws29_c00056{word-spacing:4.160000pt;}
.ws22_c00056{word-spacing:5.696000pt;}
.ws21_c00056{word-spacing:5.760000pt;}
.ws2_c00056{word-spacing:5.952000pt;}
.ws15_c00056{word-spacing:6.912000pt;}
.ws14_c00056{word-spacing:7.040000pt;}
.ws23_c00056{word-spacing:7.680000pt;}
.ws30_c00056{word-spacing:7.936000pt;}
.ws3a_c00056{word-spacing:8.256000pt;}
.ws38_c00056{word-spacing:8.512000pt;}
.wsa_c00056{word-spacing:8.576000pt;}
.ws24_c00056{word-spacing:8.640000pt;}
.ws9_c00056{word-spacing:8.704000pt;}
.ws2c_c00056{word-spacing:10.240000pt;}
.ws18_c00056{word-spacing:10.432000pt;}
.ws17_c00056{word-spacing:10.496000pt;}
.ws40_c00056{word-spacing:11.392000pt;}
.ws3e_c00056{word-spacing:11.520000pt;}
.ws16_c00056{word-spacing:12.160000pt;}
.ws1f_c00056{word-spacing:13.376000pt;}
.ws1d_c00056{word-spacing:13.696000pt;}
.ws2f_c00056{word-spacing:15.040000pt;}
.ws3d_c00056{word-spacing:15.296000pt;}
.ws10_c00056{word-spacing:15.321600pt;}
.ws1e_c00056{word-spacing:15.360000pt;}
.ws1b_c00056{word-spacing:16.320000pt;}
.ws31_c00056{word-spacing:16.576000pt;}
.ws6_c00056{word-spacing:16.896000pt;}
.ws13_c00056{word-spacing:16.960000pt;}
.ws2d_c00056{word-spacing:18.112000pt;}
.ws1a_c00056{word-spacing:18.176000pt;}
.ws2e_c00056{word-spacing:18.240000pt;}
.ws32_c00056{word-spacing:19.456000pt;}
.ws35_c00056{word-spacing:24.192000pt;}
.ws33_c00056{word-spacing:24.576000pt;}
.ws34_c00056{word-spacing:24.640000pt;}
.ws7_c00056{word-spacing:24.768000pt;}
.ws36_c00056{word-spacing:25.152000pt;}
.ws1_c00056{word-spacing:32.000000pt;}
._1_c00056{margin-left:-0.960000pt;}
._0_c00056{width:0.936960pt;}
._3_c00056{width:8.384000pt;}
._2_c00056{width:92.800000pt;}
.fs1_c00056{font-size:58.560000pt;}
.fs0_c00056{font-size:64.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.y1_c00056{bottom:54.887600pt;}
.y1f_c00056{bottom:130.199467pt;}
.y36_c00056{bottom:150.919467pt;}
.y1e_c00056{bottom:157.799467pt;}
.y35_c00056{bottom:178.519467pt;}
.y1d_c00056{bottom:185.399467pt;}
.y34_c00056{bottom:206.119467pt;}
.y1c_c00056{bottom:212.999467pt;}
.y33_c00056{bottom:233.719467pt;}
.y1b_c00056{bottom:240.599467pt;}
.y1a_c00056{bottom:268.199467pt;}
.y32_c00056{bottom:288.919467pt;}
.y19_c00056{bottom:295.799467pt;}
.y31_c00056{bottom:316.519467pt;}
.y30_c00056{bottom:344.119467pt;}
.y18_c00056{bottom:350.999467pt;}
.y2f_c00056{bottom:371.719467pt;}
.y17_c00056{bottom:378.599467pt;}
.y2e_c00056{bottom:399.319467pt;}
.y16_c00056{bottom:406.199467pt;}
.y15_c00056{bottom:433.799467pt;}
.y2d_c00056{bottom:454.439467pt;}
.y2c_c00056{bottom:483.239467pt;}
.y14_c00056{bottom:488.839467pt;}
.y2b_c00056{bottom:510.759467pt;}
.y2a_c00056{bottom:539.559467pt;}
.y13_c00056{bottom:544.039467pt;}
.y29_c00056{bottom:567.159467pt;}
.y28_c00056{bottom:594.759467pt;}
.y12_c00056{bottom:599.399467pt;}
.y27_c00056{bottom:623.559467pt;}
.y11_c00056{bottom:626.999467pt;}
.y26_c00056{bottom:651.079467pt;}
.y10_c00056{bottom:654.599467pt;}
.y25_c00056{bottom:679.879467pt;}
.yf_c00056{bottom:682.199467pt;}
.y24_c00056{bottom:707.399467pt;}
.ye_c00056{bottom:709.719467pt;}
.y23_c00056{bottom:736.199467pt;}
.yd_c00056{bottom:737.319467pt;}
.y22_c00056{bottom:763.799467pt;}
.yc_c00056{bottom:764.919467pt;}
.y21_c00056{bottom:791.319467pt;}
.yb_c00056{bottom:792.519467pt;}
.ya_c00056{bottom:820.119467pt;}
.y9_c00056{bottom:847.719467pt;}
.y20_c00056{bottom:875.319467pt;}
.y8_c00056{bottom:902.919467pt;}
.y7_c00056{bottom:930.519467pt;}
.y6_c00056{bottom:958.119467pt;}
.y5_c00056{bottom:985.719467pt;}
.y4_c00056{bottom:1013.319467pt;}
.y3_c00056{bottom:1043.480107pt;}
.y2_c00056{bottom:1061.399467pt;}
.h2_c00056{height:44.800000pt;}
.h3_c00056{height:48.294844pt;}
.h4_c00056{height:68.288000pt;}
.h0_c00056{height:1122.520000pt;}
.h1_c00056{height:1122.666667pt;}
.w2_c00056{width:0.000000pt;}
.w3_c00056{width:0.058667pt;}
.w0_c00056{width:793.701333pt;}
.w1_c00056{width:794.000000pt;}
.x1_c00056{left:-745.700800pt;}
.x2_c00056{left:-680.260800pt;}
.x3_c00056{left:-651.860800pt;}
.x0_c00056{left:0.000000pt;}
.x6_c00056{left:113.438880pt;}
.x8_c00056{left:132.400000pt;}
.x7_c00056{left:141.840000pt;}
.x9_c00056{left:151.280000pt;}
.x5_c00056{left:623.760000pt;}
.x4_c00056{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00057;src:url('chunks/assets/font_22e39349ba8b281cb397fc1d.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00057;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff3_c00057{font-family:ff3_c00057;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00057;src:url('chunks/assets/font_07dd7fce9c8af219a16fa16a.woff2')format("woff");}.ff4_c00057{font-family:ff4_c00057;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00057;src:url('chunks/assets/font_366cf16deb274ec2a0017e49.woff2')format("woff");}.ff5_c00057{font-family:ff5_c00057;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00057{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls7_c00057{letter-spacing:-0.360000px;}
.ls6_c00057{letter-spacing:-0.216000px;}
.ls5_c00057{letter-spacing:-0.072000px;}
.ls4_c00057{letter-spacing:0.000000px;}
.ls1_c00057{letter-spacing:0.072000px;}
.ls3_c00057{letter-spacing:0.144000px;}
.ls2_c00057{letter-spacing:18.072000px;}
.ls0_c00057{letter-spacing:45.432000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00057{word-spacing:-18.000000px;}
.ws3_c00057{word-spacing:-17.640000px;}
.ws1a_c00057{word-spacing:-0.360000px;}
.ws7_c00057{word-spacing:-0.131760px;}
.ws8_c00057{word-spacing:-0.072000px;}
.ws6_c00057{word-spacing:0.000000px;}
.ws13_c00057{word-spacing:0.072000px;}
.wsd_c00057{word-spacing:0.288000px;}
.ws24_c00057{word-spacing:0.432000px;}
.ws10_c00057{word-spacing:0.648000px;}
.wse_c00057{word-spacing:0.936000px;}
.wsf_c00057{word-spacing:1.008000px;}
.ws23_c00057{word-spacing:1.080000px;}
.ws1d_c00057{word-spacing:1.368000px;}
.ws1b_c00057{word-spacing:2.448000px;}
.ws9_c00057{word-spacing:3.960000px;}
.wsa_c00057{word-spacing:4.248000px;}
.wsb_c00057{word-spacing:4.968000px;}
.wsc_c00057{word-spacing:5.688000px;}
.ws2_c00057{word-spacing:5.760000px;}
.ws0_c00057{word-spacing:5.976000px;}
.ws19_c00057{word-spacing:6.048000px;}
.ws1_c00057{word-spacing:6.192000px;}
.ws12_c00057{word-spacing:6.480000px;}
.ws20_c00057{word-spacing:6.768000px;}
.ws18_c00057{word-spacing:7.128000px;}
.ws11_c00057{word-spacing:12.600000px;}
.ws1c_c00057{word-spacing:15.408000px;}
.ws22_c00057{word-spacing:20.088000px;}
.ws21_c00057{word-spacing:20.160000px;}
.ws1f_c00057{word-spacing:21.888000px;}
.ws15_c00057{word-spacing:22.968000px;}
.ws14_c00057{word-spacing:23.040000px;}
.ws4_c00057{word-spacing:24.552000px;}
.ws17_c00057{word-spacing:24.768000px;}
.ws16_c00057{word-spacing:24.840000px;}
.ws1e_c00057{word-spacing:25.200000px;}
._1_c00057{margin-left:-1.238400px;}
._0_c00057{width:1.054080px;}
._2_c00057{width:20.088000px;}
.fc1_c00057{color:rgb(0,0,0);}
.fc0_c00057{color:rgb(35,31,32);}
.fs1_c00057{font-size:65.880000px;}
.fs0_c00057{font-size:72.000000px;}
.y0_c00057{bottom:0.000000px;}
.y1_c00057{bottom:61.748550px;}
.y20_c00057{bottom:170.954250px;}
.y1f_c00057{bottom:202.094250px;}
.y1e_c00057{bottom:233.144250px;}
.y1d_c00057{bottom:295.244250px;}
.y1c_c00057{bottom:326.294250px;}
.y1b_c00057{bottom:357.344250px;}
.y1a_c00057{bottom:388.394250px;}
.y19_c00057{bottom:419.444250px;}
.y18_c00057{bottom:450.494250px;}
.y17_c00057{bottom:481.544250px;}
.y16_c00057{bottom:512.594250px;}
.y15_c00057{bottom:543.644250px;}
.y14_c00057{bottom:605.744250px;}
.y13_c00057{bottom:636.794250px;}
.y12_c00057{bottom:667.844250px;}
.y11_c00057{bottom:698.894250px;}
.y10_c00057{bottom:729.944250px;}
.yf_c00057{bottom:760.994250px;}
.ye_c00057{bottom:792.044250px;}
.yd_c00057{bottom:823.094250px;}
.yc_c00057{bottom:854.144250px;}
.yb_c00057{bottom:885.194250px;}
.ya_c00057{bottom:947.294250px;}
.y9_c00057{bottom:978.254250px;}
.y8_c00057{bottom:1010.654250px;}
.y7_c00057{bottom:1041.614250px;}
.y6_c00057{bottom:1074.014250px;}
.y5_c00057{bottom:1106.324250px;}
.y4_c00057{bottom:1138.634250px;}
.y3_c00057{bottom:1173.915120px;}
.y2_c00057{bottom:1194.074400px;}
.h2_c00057{height:50.400000px;}
.h3_c00057{height:54.331699px;}
.h4_c00057{height:76.824000px;}
.h5_c00057{height:78.048000px;}
.h0_c00057{height:1262.835000px;}
.h1_c00057{height:1263.000000px;}
.w0_c00057{width:892.914000px;}
.w1_c00057{width:893.250000px;}
.x0_c00057{left:0.000000px;}
.x1_c00057{left:54.000000px;}
.x2_c00057{left:127.620000px;}
.x3_c00057{left:148.950000px;}
.x5_c00057{left:159.570000px;}
.x4_c00057{left:170.190000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls7_c00057{letter-spacing:-0.320000pt;}
.ls6_c00057{letter-spacing:-0.192000pt;}
.ls5_c00057{letter-spacing:-0.064000pt;}
.ls4_c00057{letter-spacing:0.000000pt;}
.ls1_c00057{letter-spacing:0.064000pt;}
.ls3_c00057{letter-spacing:0.128000pt;}
.ls2_c00057{letter-spacing:16.064000pt;}
.ls0_c00057{letter-spacing:40.384000pt;}
.ws5_c00057{word-spacing:-16.000000pt;}
.ws3_c00057{word-spacing:-15.680000pt;}
.ws1a_c00057{word-spacing:-0.320000pt;}
.ws7_c00057{word-spacing:-0.117120pt;}
.ws8_c00057{word-spacing:-0.064000pt;}
.ws6_c00057{word-spacing:0.000000pt;}
.ws13_c00057{word-spacing:0.064000pt;}
.wsd_c00057{word-spacing:0.256000pt;}
.ws24_c00057{word-spacing:0.384000pt;}
.ws10_c00057{word-spacing:0.576000pt;}
.wse_c00057{word-spacing:0.832000pt;}
.wsf_c00057{word-spacing:0.896000pt;}
.ws23_c00057{word-spacing:0.960000pt;}
.ws1d_c00057{word-spacing:1.216000pt;}
.ws1b_c00057{word-spacing:2.176000pt;}
.ws9_c00057{word-spacing:3.520000pt;}
.wsa_c00057{word-spacing:3.776000pt;}
.wsb_c00057{word-spacing:4.416000pt;}
.wsc_c00057{word-spacing:5.056000pt;}
.ws2_c00057{word-spacing:5.120000pt;}
.ws0_c00057{word-spacing:5.312000pt;}
.ws19_c00057{word-spacing:5.376000pt;}
.ws1_c00057{word-spacing:5.504000pt;}
.ws12_c00057{word-spacing:5.760000pt;}
.ws20_c00057{word-spacing:6.016000pt;}
.ws18_c00057{word-spacing:6.336000pt;}
.ws11_c00057{word-spacing:11.200000pt;}
.ws1c_c00057{word-spacing:13.696000pt;}
.ws22_c00057{word-spacing:17.856000pt;}
.ws21_c00057{word-spacing:17.920000pt;}
.ws1f_c00057{word-spacing:19.456000pt;}
.ws15_c00057{word-spacing:20.416000pt;}
.ws14_c00057{word-spacing:20.480000pt;}
.ws4_c00057{word-spacing:21.824000pt;}
.ws17_c00057{word-spacing:22.016000pt;}
.ws16_c00057{word-spacing:22.080000pt;}
.ws1e_c00057{word-spacing:22.400000pt;}
._1_c00057{margin-left:-1.100800pt;}
._0_c00057{width:0.936960pt;}
._2_c00057{width:17.856000pt;}
.fs1_c00057{font-size:58.560000pt;}
.fs0_c00057{font-size:64.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.y1_c00057{bottom:54.887600pt;}
.y20_c00057{bottom:151.959333pt;}
.y1f_c00057{bottom:179.639333pt;}
.y1e_c00057{bottom:207.239333pt;}
.y1d_c00057{bottom:262.439333pt;}
.y1c_c00057{bottom:290.039333pt;}
.y1b_c00057{bottom:317.639333pt;}
.y1a_c00057{bottom:345.239333pt;}
.y19_c00057{bottom:372.839333pt;}
.y18_c00057{bottom:400.439333pt;}
.y17_c00057{bottom:428.039333pt;}
.y16_c00057{bottom:455.639333pt;}
.y15_c00057{bottom:483.239333pt;}
.y14_c00057{bottom:538.439333pt;}
.y13_c00057{bottom:566.039333pt;}
.y12_c00057{bottom:593.639333pt;}
.y11_c00057{bottom:621.239333pt;}
.y10_c00057{bottom:648.839333pt;}
.yf_c00057{bottom:676.439333pt;}
.ye_c00057{bottom:704.039333pt;}
.yd_c00057{bottom:731.639333pt;}
.yc_c00057{bottom:759.239333pt;}
.yb_c00057{bottom:786.839333pt;}
.ya_c00057{bottom:842.039333pt;}
.y9_c00057{bottom:869.559333pt;}
.y8_c00057{bottom:898.359333pt;}
.y7_c00057{bottom:925.879333pt;}
.y6_c00057{bottom:954.679333pt;}
.y5_c00057{bottom:983.399333pt;}
.y4_c00057{bottom:1012.119333pt;}
.y3_c00057{bottom:1043.480107pt;}
.y2_c00057{bottom:1061.399467pt;}
.h2_c00057{height:44.800000pt;}
.h3_c00057{height:48.294844pt;}
.h4_c00057{height:68.288000pt;}
.h5_c00057{height:69.376000pt;}
.h0_c00057{height:1122.520000pt;}
.h1_c00057{height:1122.666667pt;}
.w0_c00057{width:793.701333pt;}
.w1_c00057{width:794.000000pt;}
.x0_c00057{left:0.000000pt;}
.x1_c00057{left:48.000000pt;}
.x2_c00057{left:113.440000pt;}
.x3_c00057{left:132.400000pt;}
.x5_c00057{left:141.840000pt;}
.x4_c00057{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00058;src:url('chunks/assets/font_9108d712272ce3052985e0d4.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00058;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff3_c00058{font-family:ff3_c00058;line-height:0.666504;font-style:normal;font-weight:normal;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_90f3789d96d8c935b361050e.woff2')format("woff");}.ff4_c00058{font-family:ff4_c00058;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00058;src:url('chunks/assets/font_3c4b1cb2312f46e110c1933f.woff2')format("woff");}.ff5_c00058{font-family:ff5_c00058;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00058;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00058{font-family:ff6_c00058;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00058;src:url('chunks/assets/font_ce11c30d7ed1f724fd3da77e.woff2')format("woff");}.ff7_c00058{font-family:ff7_c00058;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00058;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff8_c00058{font-family:ff8_c00058;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00058;src:url('chunks/assets/font_98d69a2cd1d2b5127e210c50.woff2')format("woff");}.ff9_c00058{font-family:ff9_c00058;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00058;src:url('chunks/assets/font_92351cfe8fc4aab23ac6ce76.woff2')format("woff");}.ffa_c00058{font-family:ffa_c00058;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00058{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.lsa_c00058{letter-spacing:-0.360000px;}
.ls9_c00058{letter-spacing:-0.216000px;}
.ls8_c00058{letter-spacing:-0.072000px;}
.lsb_c00058{letter-spacing:-0.065880px;}
.ls7_c00058{letter-spacing:0.000000px;}
.ls1_c00058{letter-spacing:0.072000px;}
.ls3_c00058{letter-spacing:0.144000px;}
.ls6_c00058{letter-spacing:0.197640px;}
.ls2_c00058{letter-spacing:18.072000px;}
.ls5_c00058{letter-spacing:19.080000px;}
.ls0_c00058{letter-spacing:45.432000px;}
.ls4_c00058{letter-spacing:60.984000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00058{word-spacing:-18.072000px;}
.ws5_c00058{word-spacing:-18.000000px;}
.ws3_c00058{word-spacing:-17.640000px;}
.ws1b_c00058{word-spacing:-0.360000px;}
.ws8_c00058{word-spacing:-0.131760px;}
.ws9_c00058{word-spacing:-0.072000px;}
.ws7_c00058{word-spacing:0.000000px;}
.ws14_c00058{word-spacing:0.072000px;}
.ws3c_c00058{word-spacing:0.131760px;}
.wse_c00058{word-spacing:0.288000px;}
.ws25_c00058{word-spacing:0.432000px;}
.ws11_c00058{word-spacing:0.648000px;}
.wsf_c00058{word-spacing:0.936000px;}
.ws10_c00058{word-spacing:1.008000px;}
.ws24_c00058{word-spacing:1.080000px;}
.ws1e_c00058{word-spacing:1.368000px;}
.ws1c_c00058{word-spacing:2.448000px;}
.ws36_c00058{word-spacing:3.821040px;}
.ws26_c00058{word-spacing:3.888000px;}
.wsa_c00058{word-spacing:3.960000px;}
.ws37_c00058{word-spacing:4.084560px;}
.wsb_c00058{word-spacing:4.248000px;}
.wsc_c00058{word-spacing:4.968000px;}
.wsd_c00058{word-spacing:5.688000px;}
.ws2_c00058{word-spacing:5.760000px;}
.ws0_c00058{word-spacing:5.976000px;}
.ws1a_c00058{word-spacing:6.048000px;}
.ws33_c00058{word-spacing:6.120000px;}
.ws1_c00058{word-spacing:6.192000px;}
.ws2a_c00058{word-spacing:6.408000px;}
.ws13_c00058{word-spacing:6.480000px;}
.ws21_c00058{word-spacing:6.768000px;}
.ws19_c00058{word-spacing:7.128000px;}
.ws34_c00058{word-spacing:7.200000px;}
.ws2c_c00058{word-spacing:7.416000px;}
.ws2b_c00058{word-spacing:7.920000px;}
.ws2e_c00058{word-spacing:9.360000px;}
.ws2f_c00058{word-spacing:9.648000px;}
.ws38_c00058{word-spacing:11.331360px;}
.ws12_c00058{word-spacing:12.600000px;}
.ws1d_c00058{word-spacing:15.408000px;}
.ws23_c00058{word-spacing:20.088000px;}
.ws22_c00058{word-spacing:20.160000px;}
.ws20_c00058{word-spacing:21.888000px;}
.ws16_c00058{word-spacing:22.968000px;}
.ws15_c00058{word-spacing:23.040000px;}
.ws3d_c00058{word-spacing:23.400000px;}
.ws4_c00058{word-spacing:24.552000px;}
.ws3b_c00058{word-spacing:24.705000px;}
.ws18_c00058{word-spacing:24.768000px;}
.ws17_c00058{word-spacing:24.840000px;}
.ws3a_c00058{word-spacing:24.968520px;}
.ws1f_c00058{word-spacing:25.200000px;}
.ws39_c00058{word-spacing:26.154360px;}
.ws27_c00058{word-spacing:28.440000px;}
.ws29_c00058{word-spacing:29.736000px;}
.ws28_c00058{word-spacing:29.880000px;}
.ws35_c00058{word-spacing:30.831840px;}
.ws31_c00058{word-spacing:31.248000px;}
.ws30_c00058{word-spacing:31.320000px;}
.ws32_c00058{word-spacing:33.048000px;}
.ws2d_c00058{word-spacing:36.648000px;}
._1_c00058{margin-left:-1.238400px;}
._0_c00058{width:1.054080px;}
._2_c00058{width:20.088000px;}
._3_c00058{width:28.296000px;}
.fc2_c00058{color:transparent;}
.fc1_c00058{color:rgb(0,0,0);}
.fc0_c00058{color:rgb(35,31,32);}
.fs1_c00058{font-size:65.880000px;}
.fs0_c00058{font-size:72.000000px;}
.y0_c00058{bottom:0.000000px;}
.y1_c00058{bottom:61.748550px;}
.y3f_c00058{bottom:154.934400px;}
.y20_c00058{bottom:170.954250px;}
.y3e_c00058{bottom:185.894400px;}
.y1f_c00058{bottom:202.094250px;}
.y1e_c00058{bottom:233.144250px;}
.y3d_c00058{bottom:246.732420px;}
.y3c_c00058{bottom:275.077290px;}
.y1d_c00058{bottom:295.244250px;}
.y3b_c00058{bottom:303.520980px;}
.y1c_c00058{bottom:326.294250px;}
.y3a_c00058{bottom:331.964670px;}
.y1b_c00058{bottom:357.344250px;}
.y39_c00058{bottom:360.490710px;}
.y1a_c00058{bottom:388.394250px;}
.y38_c00058{bottom:388.934400px;}
.y19_c00058{bottom:419.444250px;}
.y37_c00058{bottom:449.864400px;}
.y18_c00058{bottom:450.494250px;}
.y36_c00058{bottom:480.914400px;}
.y17_c00058{bottom:481.544250px;}
.y35_c00058{bottom:511.964400px;}
.y16_c00058{bottom:512.594250px;}
.y34_c00058{bottom:543.014400px;}
.y15_c00058{bottom:543.644250px;}
.y33_c00058{bottom:574.064400px;}
.y14_c00058{bottom:605.744250px;}
.y32_c00058{bottom:613.124250px;}
.y13_c00058{bottom:636.794250px;}
.y31_c00058{bottom:643.274400px;}
.y12_c00058{bottom:667.844250px;}
.y30_c00058{bottom:674.324400px;}
.y11_c00058{bottom:698.894250px;}
.y2f_c00058{bottom:705.374400px;}
.y10_c00058{bottom:729.944250px;}
.y2e_c00058{bottom:736.424400px;}
.yf_c00058{bottom:760.994250px;}
.y2d_c00058{bottom:767.474400px;}
.ye_c00058{bottom:792.044250px;}
.y2c_c00058{bottom:798.434400px;}
.yd_c00058{bottom:823.094250px;}
.y2b_c00058{bottom:829.484400px;}
.yc_c00058{bottom:854.144250px;}
.y2a_c00058{bottom:860.534400px;}
.yb_c00058{bottom:885.194250px;}
.y29_c00058{bottom:891.584400px;}
.y28_c00058{bottom:922.634400px;}
.ya_c00058{bottom:947.294250px;}
.y27_c00058{bottom:953.684400px;}
.y9_c00058{bottom:978.254250px;}
.y26_c00058{bottom:984.734400px;}
.y8_c00058{bottom:1010.654250px;}
.y25_c00058{bottom:1015.784400px;}
.y7_c00058{bottom:1041.614250px;}
.y24_c00058{bottom:1046.834400px;}
.y6_c00058{bottom:1074.014250px;}
.y23_c00058{bottom:1077.884400px;}
.y5_c00058{bottom:1106.324250px;}
.y22_c00058{bottom:1108.934400px;}
.y4_c00058{bottom:1138.634250px;}
.y21_c00058{bottom:1139.984400px;}
.y3_c00058{bottom:1173.915120px;}
.y2_c00058{bottom:1194.074400px;}
.h2_c00058{height:50.400000px;}
.h3_c00058{height:54.331699px;}
.h6_c00058{height:71.413920px;}
.h4_c00058{height:76.824000px;}
.h5_c00058{height:78.048000px;}
.h0_c00058{height:1262.835000px;}
.h1_c00058{height:1263.000000px;}
.w2_c00058{width:0.000000px;}
.w3_c00058{width:0.066000px;}
.w0_c00058{width:892.914000px;}
.w1_c00058{width:893.250000px;}
.x1_c00058{left:-838.913400px;}
.x2_c00058{left:-765.293400px;}
.x3_c00058{left:-743.963400px;}
.x5_c00058{left:-733.343400px;}
.x4_c00058{left:-722.723400px;}
.x0_c00058{left:0.000000px;}
.x8_c00058{left:127.618740px;}
.x9_c00058{left:148.950000px;}
.xb_c00058{left:159.570000px;}
.xa_c00058{left:170.190000px;}
.x7_c00058{left:701.730000px;}
.x6_c00058{left:804.366150px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.lsa_c00058{letter-spacing:-0.320000pt;}
.ls9_c00058{letter-spacing:-0.192000pt;}
.ls8_c00058{letter-spacing:-0.064000pt;}
.lsb_c00058{letter-spacing:-0.058560pt;}
.ls7_c00058{letter-spacing:0.000000pt;}
.ls1_c00058{letter-spacing:0.064000pt;}
.ls3_c00058{letter-spacing:0.128000pt;}
.ls6_c00058{letter-spacing:0.175680pt;}
.ls2_c00058{letter-spacing:16.064000pt;}
.ls5_c00058{letter-spacing:16.960000pt;}
.ls0_c00058{letter-spacing:40.384000pt;}
.ls4_c00058{letter-spacing:54.208000pt;}
.ws6_c00058{word-spacing:-16.064000pt;}
.ws5_c00058{word-spacing:-16.000000pt;}
.ws3_c00058{word-spacing:-15.680000pt;}
.ws1b_c00058{word-spacing:-0.320000pt;}
.ws8_c00058{word-spacing:-0.117120pt;}
.ws9_c00058{word-spacing:-0.064000pt;}
.ws7_c00058{word-spacing:0.000000pt;}
.ws14_c00058{word-spacing:0.064000pt;}
.ws3c_c00058{word-spacing:0.117120pt;}
.wse_c00058{word-spacing:0.256000pt;}
.ws25_c00058{word-spacing:0.384000pt;}
.ws11_c00058{word-spacing:0.576000pt;}
.wsf_c00058{word-spacing:0.832000pt;}
.ws10_c00058{word-spacing:0.896000pt;}
.ws24_c00058{word-spacing:0.960000pt;}
.ws1e_c00058{word-spacing:1.216000pt;}
.ws1c_c00058{word-spacing:2.176000pt;}
.ws36_c00058{word-spacing:3.396480pt;}
.ws26_c00058{word-spacing:3.456000pt;}
.wsa_c00058{word-spacing:3.520000pt;}
.ws37_c00058{word-spacing:3.630720pt;}
.wsb_c00058{word-spacing:3.776000pt;}
.wsc_c00058{word-spacing:4.416000pt;}
.wsd_c00058{word-spacing:5.056000pt;}
.ws2_c00058{word-spacing:5.120000pt;}
.ws0_c00058{word-spacing:5.312000pt;}
.ws1a_c00058{word-spacing:5.376000pt;}
.ws33_c00058{word-spacing:5.440000pt;}
.ws1_c00058{word-spacing:5.504000pt;}
.ws2a_c00058{word-spacing:5.696000pt;}
.ws13_c00058{word-spacing:5.760000pt;}
.ws21_c00058{word-spacing:6.016000pt;}
.ws19_c00058{word-spacing:6.336000pt;}
.ws34_c00058{word-spacing:6.400000pt;}
.ws2c_c00058{word-spacing:6.592000pt;}
.ws2b_c00058{word-spacing:7.040000pt;}
.ws2e_c00058{word-spacing:8.320000pt;}
.ws2f_c00058{word-spacing:8.576000pt;}
.ws38_c00058{word-spacing:10.072320pt;}
.ws12_c00058{word-spacing:11.200000pt;}
.ws1d_c00058{word-spacing:13.696000pt;}
.ws23_c00058{word-spacing:17.856000pt;}
.ws22_c00058{word-spacing:17.920000pt;}
.ws20_c00058{word-spacing:19.456000pt;}
.ws16_c00058{word-spacing:20.416000pt;}
.ws15_c00058{word-spacing:20.480000pt;}
.ws3d_c00058{word-spacing:20.800000pt;}
.ws4_c00058{word-spacing:21.824000pt;}
.ws3b_c00058{word-spacing:21.960000pt;}
.ws18_c00058{word-spacing:22.016000pt;}
.ws17_c00058{word-spacing:22.080000pt;}
.ws3a_c00058{word-spacing:22.194240pt;}
.ws1f_c00058{word-spacing:22.400000pt;}
.ws39_c00058{word-spacing:23.248320pt;}
.ws27_c00058{word-spacing:25.280000pt;}
.ws29_c00058{word-spacing:26.432000pt;}
.ws28_c00058{word-spacing:26.560000pt;}
.ws35_c00058{word-spacing:27.406080pt;}
.ws31_c00058{word-spacing:27.776000pt;}
.ws30_c00058{word-spacing:27.840000pt;}
.ws32_c00058{word-spacing:29.376000pt;}
.ws2d_c00058{word-spacing:32.576000pt;}
._1_c00058{margin-left:-1.100800pt;}
._0_c00058{width:0.936960pt;}
._2_c00058{width:17.856000pt;}
._3_c00058{width:25.152000pt;}
.fs1_c00058{font-size:58.560000pt;}
.fs0_c00058{font-size:64.000000pt;}
.y0_c00058{bottom:0.000000pt;}
.y1_c00058{bottom:54.887600pt;}
.y3f_c00058{bottom:137.719467pt;}
.y20_c00058{bottom:151.959333pt;}
.y3e_c00058{bottom:165.239467pt;}
.y1f_c00058{bottom:179.639333pt;}
.y1e_c00058{bottom:207.239333pt;}
.y3d_c00058{bottom:219.317707pt;}
.y3c_c00058{bottom:244.513147pt;}
.y1d_c00058{bottom:262.439333pt;}
.y3b_c00058{bottom:269.796427pt;}
.y1c_c00058{bottom:290.039333pt;}
.y3a_c00058{bottom:295.079707pt;}
.y1b_c00058{bottom:317.639333pt;}
.y39_c00058{bottom:320.436187pt;}
.y1a_c00058{bottom:345.239333pt;}
.y38_c00058{bottom:345.719467pt;}
.y19_c00058{bottom:372.839333pt;}
.y37_c00058{bottom:399.879467pt;}
.y18_c00058{bottom:400.439333pt;}
.y36_c00058{bottom:427.479467pt;}
.y17_c00058{bottom:428.039333pt;}
.y35_c00058{bottom:455.079467pt;}
.y16_c00058{bottom:455.639333pt;}
.y34_c00058{bottom:482.679467pt;}
.y15_c00058{bottom:483.239333pt;}
.y33_c00058{bottom:510.279467pt;}
.y14_c00058{bottom:538.439333pt;}
.y32_c00058{bottom:544.999333pt;}
.y13_c00058{bottom:566.039333pt;}
.y31_c00058{bottom:571.799467pt;}
.y12_c00058{bottom:593.639333pt;}
.y30_c00058{bottom:599.399467pt;}
.y11_c00058{bottom:621.239333pt;}
.y2f_c00058{bottom:626.999467pt;}
.y10_c00058{bottom:648.839333pt;}
.y2e_c00058{bottom:654.599467pt;}
.yf_c00058{bottom:676.439333pt;}
.y2d_c00058{bottom:682.199467pt;}
.ye_c00058{bottom:704.039333pt;}
.y2c_c00058{bottom:709.719467pt;}
.yd_c00058{bottom:731.639333pt;}
.y2b_c00058{bottom:737.319467pt;}
.yc_c00058{bottom:759.239333pt;}
.y2a_c00058{bottom:764.919467pt;}
.yb_c00058{bottom:786.839333pt;}
.y29_c00058{bottom:792.519467pt;}
.y28_c00058{bottom:820.119467pt;}
.ya_c00058{bottom:842.039333pt;}
.y27_c00058{bottom:847.719467pt;}
.y9_c00058{bottom:869.559333pt;}
.y26_c00058{bottom:875.319467pt;}
.y8_c00058{bottom:898.359333pt;}
.y25_c00058{bottom:902.919467pt;}
.y7_c00058{bottom:925.879333pt;}
.y24_c00058{bottom:930.519467pt;}
.y6_c00058{bottom:954.679333pt;}
.y23_c00058{bottom:958.119467pt;}
.y5_c00058{bottom:983.399333pt;}
.y22_c00058{bottom:985.719467pt;}
.y4_c00058{bottom:1012.119333pt;}
.y21_c00058{bottom:1013.319467pt;}
.y3_c00058{bottom:1043.480107pt;}
.y2_c00058{bottom:1061.399467pt;}
.h2_c00058{height:44.800000pt;}
.h3_c00058{height:48.294844pt;}
.h6_c00058{height:63.479040pt;}
.h4_c00058{height:68.288000pt;}
.h5_c00058{height:69.376000pt;}
.h0_c00058{height:1122.520000pt;}
.h1_c00058{height:1122.666667pt;}
.w2_c00058{width:0.000000pt;}
.w3_c00058{width:0.058667pt;}
.w0_c00058{width:793.701333pt;}
.w1_c00058{width:794.000000pt;}
.x1_c00058{left:-745.700800pt;}
.x2_c00058{left:-680.260800pt;}
.x3_c00058{left:-661.300800pt;}
.x5_c00058{left:-651.860800pt;}
.x4_c00058{left:-642.420800pt;}
.x0_c00058{left:0.000000pt;}
.x8_c00058{left:113.438880pt;}
.x9_c00058{left:132.400000pt;}
.xb_c00058{left:141.840000pt;}
.xa_c00058{left:151.280000pt;}
.x7_c00058{left:623.760000pt;}
.x6_c00058{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00059;src:url('chunks/assets/font_57a10cf40c1dee6aeff6d793.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00059;src:url('chunks/assets/font_64042f7dc9024089e24ca402.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.575000;font-style:normal;font-weight:normal;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_e4fdef0c72e276339aebcd9d.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;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls4_c00059{letter-spacing:0.000000px;}
.ls1_c00059{letter-spacing:0.072000px;}
.ls0_c00059{letter-spacing:0.144000px;}
.ls3_c00059{letter-spacing:29.520000px;}
.ls2_c00059{letter-spacing:45.432000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00059{word-spacing:-18.000000px;}
.wse_c00059{word-spacing:-0.432000px;}
.ws3_c00059{word-spacing:-0.131760px;}
.ws6_c00059{word-spacing:-0.072000px;}
.ws2_c00059{word-spacing:0.000000px;}
.ws8_c00059{word-spacing:1.008000px;}
.ws9_c00059{word-spacing:1.080000px;}
.ws7_c00059{word-spacing:2.448000px;}
.ws14_c00059{word-spacing:4.536000px;}
.wsf_c00059{word-spacing:5.328000px;}
.ws18_c00059{word-spacing:6.408000px;}
.wsc_c00059{word-spacing:6.840000px;}
.ws13_c00059{word-spacing:7.488000px;}
.ws5_c00059{word-spacing:8.640000px;}
.ws4_c00059{word-spacing:9.000000px;}
.ws0_c00059{word-spacing:9.072000px;}
.ws19_c00059{word-spacing:10.800000px;}
.ws17_c00059{word-spacing:11.448000px;}
.ws16_c00059{word-spacing:11.520000px;}
.wsd_c00059{word-spacing:12.888000px;}
.ws15_c00059{word-spacing:14.400000px;}
.ws11_c00059{word-spacing:16.200000px;}
.wsb_c00059{word-spacing:17.280000px;}
.ws10_c00059{word-spacing:18.720000px;}
.wsa_c00059{word-spacing:23.040000px;}
.ws12_c00059{word-spacing:23.328000px;}
._1_c00059{margin-left:-1.094400px;}
._0_c00059{width:1.054080px;}
._2_c00059{width:3.873600px;}
.fc1_c00059{color:rgb(0,0,0);}
.fc0_c00059{color:rgb(35,31,32);}
.fs1_c00059{font-size:65.880000px;}
.fs0_c00059{font-size:72.000000px;}
.y0_c00059{bottom:0.000000px;}
.y1_c00059{bottom:61.748550px;}
.y21_c00059{bottom:131.624400px;}
.y20_c00059{bottom:162.674400px;}
.y1f_c00059{bottom:193.724400px;}
.y1e_c00059{bottom:224.774400px;}
.y1d_c00059{bottom:286.874400px;}
.y1c_c00059{bottom:317.924400px;}
.y1b_c00059{bottom:348.974400px;}
.y1a_c00059{bottom:380.024400px;}
.y19_c00059{bottom:411.074400px;}
.y18_c00059{bottom:442.124400px;}
.y17_c00059{bottom:473.174400px;}
.y16_c00059{bottom:504.224400px;}
.y15_c00059{bottom:543.284250px;}
.y14_c00059{bottom:573.434400px;}
.y13_c00059{bottom:604.394400px;}
.y12_c00059{bottom:636.794400px;}
.y11_c00059{bottom:667.754400px;}
.y10_c00059{bottom:700.154400px;}
.yf_c00059{bottom:731.114400px;}
.ye_c00059{bottom:763.514400px;}
.yd_c00059{bottom:825.614400px;}
.yc_c00059{bottom:856.664400px;}
.yb_c00059{bottom:889.064400px;}
.ya_c00059{bottom:920.024400px;}
.y9_c00059{bottom:952.424400px;}
.y8_c00059{bottom:983.474400px;}
.y7_c00059{bottom:1014.434400px;}
.y6_c00059{bottom:1046.834400px;}
.y5_c00059{bottom:1108.934400px;}
.y4_c00059{bottom:1139.984400px;}
.y3_c00059{bottom:1173.915120px;}
.y2_c00059{bottom:1194.074400px;}
.h2_c00059{height:50.400000px;}
.h3_c00059{height:54.331699px;}
.h4_c00059{height:76.824000px;}
.h0_c00059{height:1262.835000px;}
.h1_c00059{height:1263.000000px;}
.w0_c00059{width:892.914000px;}
.w1_c00059{width:893.250000px;}
.x0_c00059{left:0.000000px;}
.x1_c00059{left:54.000000px;}
.x2_c00059{left:127.620000px;}
.x3_c00059{left:148.950000px;}
.x5_c00059{left:159.570000px;}
.x4_c00059{left:170.190000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls4_c00059{letter-spacing:0.000000pt;}
.ls1_c00059{letter-spacing:0.064000pt;}
.ls0_c00059{letter-spacing:0.128000pt;}
.ls3_c00059{letter-spacing:26.240000pt;}
.ls2_c00059{letter-spacing:40.384000pt;}
.ws1_c00059{word-spacing:-16.000000pt;}
.wse_c00059{word-spacing:-0.384000pt;}
.ws3_c00059{word-spacing:-0.117120pt;}
.ws6_c00059{word-spacing:-0.064000pt;}
.ws2_c00059{word-spacing:0.000000pt;}
.ws8_c00059{word-spacing:0.896000pt;}
.ws9_c00059{word-spacing:0.960000pt;}
.ws7_c00059{word-spacing:2.176000pt;}
.ws14_c00059{word-spacing:4.032000pt;}
.wsf_c00059{word-spacing:4.736000pt;}
.ws18_c00059{word-spacing:5.696000pt;}
.wsc_c00059{word-spacing:6.080000pt;}
.ws13_c00059{word-spacing:6.656000pt;}
.ws5_c00059{word-spacing:7.680000pt;}
.ws4_c00059{word-spacing:8.000000pt;}
.ws0_c00059{word-spacing:8.064000pt;}
.ws19_c00059{word-spacing:9.600000pt;}
.ws17_c00059{word-spacing:10.176000pt;}
.ws16_c00059{word-spacing:10.240000pt;}
.wsd_c00059{word-spacing:11.456000pt;}
.ws15_c00059{word-spacing:12.800000pt;}
.ws11_c00059{word-spacing:14.400000pt;}
.wsb_c00059{word-spacing:15.360000pt;}
.ws10_c00059{word-spacing:16.640000pt;}
.wsa_c00059{word-spacing:20.480000pt;}
.ws12_c00059{word-spacing:20.736000pt;}
._1_c00059{margin-left:-0.972800pt;}
._0_c00059{width:0.936960pt;}
._2_c00059{width:3.443200pt;}
.fs1_c00059{font-size:58.560000pt;}
.fs0_c00059{font-size:64.000000pt;}
.y0_c00059{bottom:0.000000pt;}
.y1_c00059{bottom:54.887600pt;}
.y21_c00059{bottom:116.999467pt;}
.y20_c00059{bottom:144.599467pt;}
.y1f_c00059{bottom:172.199467pt;}
.y1e_c00059{bottom:199.799467pt;}
.y1d_c00059{bottom:254.999467pt;}
.y1c_c00059{bottom:282.599467pt;}
.y1b_c00059{bottom:310.199467pt;}
.y1a_c00059{bottom:337.799467pt;}
.y19_c00059{bottom:365.399467pt;}
.y18_c00059{bottom:392.999467pt;}
.y17_c00059{bottom:420.599467pt;}
.y16_c00059{bottom:448.199467pt;}
.y15_c00059{bottom:482.919333pt;}
.y14_c00059{bottom:509.719467pt;}
.y13_c00059{bottom:537.239467pt;}
.y12_c00059{bottom:566.039467pt;}
.y11_c00059{bottom:593.559467pt;}
.y10_c00059{bottom:622.359467pt;}
.yf_c00059{bottom:649.879467pt;}
.ye_c00059{bottom:678.679467pt;}
.yd_c00059{bottom:733.879467pt;}
.yc_c00059{bottom:761.479467pt;}
.yb_c00059{bottom:790.279467pt;}
.ya_c00059{bottom:817.799467pt;}
.y9_c00059{bottom:846.599467pt;}
.y8_c00059{bottom:874.199467pt;}
.y7_c00059{bottom:901.719467pt;}
.y6_c00059{bottom:930.519467pt;}
.y5_c00059{bottom:985.719467pt;}
.y4_c00059{bottom:1013.319467pt;}
.y3_c00059{bottom:1043.480107pt;}
.y2_c00059{bottom:1061.399467pt;}
.h2_c00059{height:44.800000pt;}
.h3_c00059{height:48.294844pt;}
.h4_c00059{height:68.288000pt;}
.h0_c00059{height:1122.520000pt;}
.h1_c00059{height:1122.666667pt;}
.w0_c00059{width:793.701333pt;}
.w1_c00059{width:794.000000pt;}
.x0_c00059{left:0.000000pt;}
.x1_c00059{left:48.000000pt;}
.x2_c00059{left:113.440000pt;}
.x3_c00059{left:132.400000pt;}
.x5_c00059{left:141.840000pt;}
.x4_c00059{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00060;src:url('chunks/assets/font_2cb7e0daaf7babf9896fb2a6.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00060;src:url('chunks/assets/font_ab1443101392ad753a295a7c.woff2')format("woff");}.ff3_c00060{font-family:ff3_c00060;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00060;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff4_c00060{font-family:ff4_c00060;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00060;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00060{font-family:ff5_c00060;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00060;src:url('chunks/assets/font_66e379a5a7e3dab9d7a75ab3.woff2')format("woff");}.ff6_c00060{font-family:ff6_c00060;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00060;src:url('chunks/assets/font_d8b41e19048da79dfb8784cb.woff2')format("woff");}.ff7_c00060{font-family:ff7_c00060;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00060;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff8_c00060{font-family:ff8_c00060;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00060;src:url('chunks/assets/font_1b617c2f8d557346ca4ba985.woff2')format("woff");}.ff9_c00060{font-family:ff9_c00060;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00060;src:url('chunks/assets/font_2c34f7ff3d7020308f2a5120.woff2')format("woff");}.ffa_c00060{font-family:ffa_c00060;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls7_c00060{letter-spacing:-0.576000px;}
.lsa_c00060{letter-spacing:-0.432000px;}
.ls8_c00060{letter-spacing:-0.360000px;}
.ls9_c00060{letter-spacing:-0.288000px;}
.ls6_c00060{letter-spacing:-0.072000px;}
.ls5_c00060{letter-spacing:0.000000px;}
.ls1_c00060{letter-spacing:0.072000px;}
.ls0_c00060{letter-spacing:0.144000px;}
.ls4_c00060{letter-spacing:24.120000px;}
.ls3_c00060{letter-spacing:29.520000px;}
.ls2_c00060{letter-spacing:45.432000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00060{word-spacing:-18.144000px;}
.wsd_c00060{word-spacing:-18.072000px;}
.ws1_c00060{word-spacing:-18.000000px;}
.ws1e_c00060{word-spacing:-0.432000px;}
.wsc_c00060{word-spacing:-0.216000px;}
.ws13_c00060{word-spacing:-0.131760px;}
.ws16_c00060{word-spacing:-0.072000px;}
.ws12_c00060{word-spacing:0.000000px;}
.ws44_c00060{word-spacing:0.288000px;}
.ws29_c00060{word-spacing:0.648000px;}
.ws18_c00060{word-spacing:1.008000px;}
.ws19_c00060{word-spacing:1.080000px;}
.ws47_c00060{word-spacing:1.728000px;}
.ws46_c00060{word-spacing:1.800000px;}
.wsa_c00060{word-spacing:2.232000px;}
.ws17_c00060{word-spacing:2.448000px;}
.ws10_c00060{word-spacing:2.808000px;}
.ws23_c00060{word-spacing:4.536000px;}
.ws1f_c00060{word-spacing:5.328000px;}
.ws32_c00060{word-spacing:5.400000px;}
.ws4_c00060{word-spacing:5.472000px;}
.ws2e_c00060{word-spacing:5.616000px;}
.ws2d_c00060{word-spacing:5.760000px;}
.ws8_c00060{word-spacing:5.904000px;}
.ws3c_c00060{word-spacing:6.048000px;}
.ws11_c00060{word-spacing:6.120000px;}
.ws27_c00060{word-spacing:6.408000px;}
.ws31_c00060{word-spacing:6.480000px;}
.ws1c_c00060{word-spacing:6.840000px;}
.ws40_c00060{word-spacing:7.128000px;}
.ws3f_c00060{word-spacing:7.416000px;}
.ws22_c00060{word-spacing:7.488000px;}
.wse_c00060{word-spacing:7.632000px;}
.ws15_c00060{word-spacing:8.640000px;}
.ws14_c00060{word-spacing:9.000000px;}
.ws0_c00060{word-spacing:9.072000px;}
.ws41_c00060{word-spacing:10.368000px;}
.ws28_c00060{word-spacing:10.800000px;}
.ws26_c00060{word-spacing:11.448000px;}
.ws25_c00060{word-spacing:11.520000px;}
.ws34_c00060{word-spacing:11.880000px;}
.ws33_c00060{word-spacing:12.168000px;}
.ws1d_c00060{word-spacing:12.888000px;}
.ws39_c00060{word-spacing:13.176000px;}
.ws3b_c00060{word-spacing:13.248000px;}
.ws3a_c00060{word-spacing:13.320000px;}
.ws7_c00060{word-spacing:13.392000px;}
.wsf_c00060{word-spacing:14.040000px;}
.ws24_c00060{word-spacing:14.400000px;}
.ws36_c00060{word-spacing:14.976000px;}
.ws35_c00060{word-spacing:15.120000px;}
.ws2a_c00060{word-spacing:15.192000px;}
.ws2b_c00060{word-spacing:15.552000px;}
.ws42_c00060{word-spacing:15.840000px;}
.ws21_c00060{word-spacing:16.200000px;}
.ws1b_c00060{word-spacing:17.280000px;}
.ws3d_c00060{word-spacing:17.568000px;}
.ws3e_c00060{word-spacing:17.640000px;}
.wsb_c00060{word-spacing:18.079200px;}
.ws20_c00060{word-spacing:18.720000px;}
.ws45_c00060{word-spacing:19.080000px;}
.ws38_c00060{word-spacing:19.440000px;}
.ws37_c00060{word-spacing:19.800000px;}
.ws2f_c00060{word-spacing:22.896000px;}
.ws30_c00060{word-spacing:22.968000px;}
.ws1a_c00060{word-spacing:23.040000px;}
.ws5_c00060{word-spacing:23.112000px;}
.ws6_c00060{word-spacing:23.328000px;}
.ws43_c00060{word-spacing:24.048000px;}
.ws2c_c00060{word-spacing:38.880000px;}
.ws3_c00060{word-spacing:38.952000px;}
.ws2_c00060{word-spacing:86.400000px;}
._1_c00060{margin-left:-1.094400px;}
._0_c00060{width:1.054080px;}
._2_c00060{width:3.873600px;}
._3_c00060{width:6.480000px;}
._5_c00060{width:23.788800px;}
._4_c00060{width:31.996800px;}
.fc2_c00060{color:transparent;}
.fc1_c00060{color:rgb(0,0,0);}
.fc0_c00060{color:rgb(35,31,32);}
.fs1_c00060{font-size:65.880000px;}
.fs0_c00060{font-size:72.000000px;}
.y0_c00060{bottom:0.000000px;}
.y1_c00060{bottom:61.748550px;}
.y3d_c00060{bottom:115.424400px;}
.y21_c00060{bottom:131.624400px;}
.y3c_c00060{bottom:146.474400px;}
.y20_c00060{bottom:162.674400px;}
.y3b_c00060{bottom:177.524400px;}
.y1f_c00060{bottom:193.724400px;}
.y3a_c00060{bottom:208.574400px;}
.y1e_c00060{bottom:224.774400px;}
.y39_c00060{bottom:239.624400px;}
.y38_c00060{bottom:270.674400px;}
.y1d_c00060{bottom:286.874400px;}
.y37_c00060{bottom:301.724400px;}
.y1c_c00060{bottom:317.924400px;}
.y1b_c00060{bottom:348.974400px;}
.y36_c00060{bottom:363.824400px;}
.y1a_c00060{bottom:380.024400px;}
.y35_c00060{bottom:394.874400px;}
.y19_c00060{bottom:411.074400px;}
.y34_c00060{bottom:425.924400px;}
.y18_c00060{bottom:442.124400px;}
.y33_c00060{bottom:456.974400px;}
.y17_c00060{bottom:473.174400px;}
.y32_c00060{bottom:488.024400px;}
.y16_c00060{bottom:504.224400px;}
.y15_c00060{bottom:543.284250px;}
.y31_c00060{bottom:550.124400px;}
.y14_c00060{bottom:573.434400px;}
.y30_c00060{bottom:581.174400px;}
.y13_c00060{bottom:604.394400px;}
.y2f_c00060{bottom:612.224400px;}
.y12_c00060{bottom:636.794400px;}
.y2e_c00060{bottom:643.274400px;}
.y11_c00060{bottom:667.754400px;}
.y2d_c00060{bottom:674.324400px;}
.y10_c00060{bottom:700.154400px;}
.y2c_c00060{bottom:705.374400px;}
.yf_c00060{bottom:731.114400px;}
.y2b_c00060{bottom:736.424400px;}
.ye_c00060{bottom:763.514400px;}
.y2a_c00060{bottom:767.474400px;}
.y29_c00060{bottom:798.434400px;}
.yd_c00060{bottom:825.614400px;}
.y28_c00060{bottom:829.484400px;}
.yc_c00060{bottom:856.664400px;}
.y27_c00060{bottom:860.534400px;}
.yb_c00060{bottom:889.064400px;}
.y26_c00060{bottom:891.584400px;}
.ya_c00060{bottom:920.024400px;}
.y25_c00060{bottom:922.634400px;}
.y9_c00060{bottom:952.424400px;}
.y24_c00060{bottom:953.684400px;}
.y8_c00060{bottom:983.474400px;}
.y7_c00060{bottom:1014.434400px;}
.y23_c00060{bottom:1015.604400px;}
.y22_c00060{bottom:1046.654400px;}
.y6_c00060{bottom:1046.834400px;}
.y5_c00060{bottom:1108.934400px;}
.y4_c00060{bottom:1139.984400px;}
.y3_c00060{bottom:1173.915120px;}
.y2_c00060{bottom:1194.074400px;}
.h2_c00060{height:50.400000px;}
.h3_c00060{height:54.331699px;}
.h4_c00060{height:76.824000px;}
.h5_c00060{height:78.048000px;}
.h0_c00060{height:1262.835000px;}
.h1_c00060{height:1263.000000px;}
.w2_c00060{width:0.000000px;}
.w3_c00060{width:0.066000px;}
.w0_c00060{width:892.914000px;}
.w1_c00060{width:893.250000px;}
.x1_c00060{left:-838.913400px;}
.x2_c00060{left:-765.293400px;}
.x3_c00060{left:-743.963400px;}
.x5_c00060{left:-733.343400px;}
.x4_c00060{left:-722.723400px;}
.x0_c00060{left:0.000000px;}
.x8_c00060{left:127.618740px;}
.x9_c00060{left:159.570000px;}
.x7_c00060{left:701.730000px;}
.x6_c00060{left:804.366150px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls7_c00060{letter-spacing:-0.512000pt;}
.lsa_c00060{letter-spacing:-0.384000pt;}
.ls8_c00060{letter-spacing:-0.320000pt;}
.ls9_c00060{letter-spacing:-0.256000pt;}
.ls6_c00060{letter-spacing:-0.064000pt;}
.ls5_c00060{letter-spacing:0.000000pt;}
.ls1_c00060{letter-spacing:0.064000pt;}
.ls0_c00060{letter-spacing:0.128000pt;}
.ls4_c00060{letter-spacing:21.440000pt;}
.ls3_c00060{letter-spacing:26.240000pt;}
.ls2_c00060{letter-spacing:40.384000pt;}
.ws9_c00060{word-spacing:-16.128000pt;}
.wsd_c00060{word-spacing:-16.064000pt;}
.ws1_c00060{word-spacing:-16.000000pt;}
.ws1e_c00060{word-spacing:-0.384000pt;}
.wsc_c00060{word-spacing:-0.192000pt;}
.ws13_c00060{word-spacing:-0.117120pt;}
.ws16_c00060{word-spacing:-0.064000pt;}
.ws12_c00060{word-spacing:0.000000pt;}
.ws44_c00060{word-spacing:0.256000pt;}
.ws29_c00060{word-spacing:0.576000pt;}
.ws18_c00060{word-spacing:0.896000pt;}
.ws19_c00060{word-spacing:0.960000pt;}
.ws47_c00060{word-spacing:1.536000pt;}
.ws46_c00060{word-spacing:1.600000pt;}
.wsa_c00060{word-spacing:1.984000pt;}
.ws17_c00060{word-spacing:2.176000pt;}
.ws10_c00060{word-spacing:2.496000pt;}
.ws23_c00060{word-spacing:4.032000pt;}
.ws1f_c00060{word-spacing:4.736000pt;}
.ws32_c00060{word-spacing:4.800000pt;}
.ws4_c00060{word-spacing:4.864000pt;}
.ws2e_c00060{word-spacing:4.992000pt;}
.ws2d_c00060{word-spacing:5.120000pt;}
.ws8_c00060{word-spacing:5.248000pt;}
.ws3c_c00060{word-spacing:5.376000pt;}
.ws11_c00060{word-spacing:5.440000pt;}
.ws27_c00060{word-spacing:5.696000pt;}
.ws31_c00060{word-spacing:5.760000pt;}
.ws1c_c00060{word-spacing:6.080000pt;}
.ws40_c00060{word-spacing:6.336000pt;}
.ws3f_c00060{word-spacing:6.592000pt;}
.ws22_c00060{word-spacing:6.656000pt;}
.wse_c00060{word-spacing:6.784000pt;}
.ws15_c00060{word-spacing:7.680000pt;}
.ws14_c00060{word-spacing:8.000000pt;}
.ws0_c00060{word-spacing:8.064000pt;}
.ws41_c00060{word-spacing:9.216000pt;}
.ws28_c00060{word-spacing:9.600000pt;}
.ws26_c00060{word-spacing:10.176000pt;}
.ws25_c00060{word-spacing:10.240000pt;}
.ws34_c00060{word-spacing:10.560000pt;}
.ws33_c00060{word-spacing:10.816000pt;}
.ws1d_c00060{word-spacing:11.456000pt;}
.ws39_c00060{word-spacing:11.712000pt;}
.ws3b_c00060{word-spacing:11.776000pt;}
.ws3a_c00060{word-spacing:11.840000pt;}
.ws7_c00060{word-spacing:11.904000pt;}
.wsf_c00060{word-spacing:12.480000pt;}
.ws24_c00060{word-spacing:12.800000pt;}
.ws36_c00060{word-spacing:13.312000pt;}
.ws35_c00060{word-spacing:13.440000pt;}
.ws2a_c00060{word-spacing:13.504000pt;}
.ws2b_c00060{word-spacing:13.824000pt;}
.ws42_c00060{word-spacing:14.080000pt;}
.ws21_c00060{word-spacing:14.400000pt;}
.ws1b_c00060{word-spacing:15.360000pt;}
.ws3d_c00060{word-spacing:15.616000pt;}
.ws3e_c00060{word-spacing:15.680000pt;}
.wsb_c00060{word-spacing:16.070400pt;}
.ws20_c00060{word-spacing:16.640000pt;}
.ws45_c00060{word-spacing:16.960000pt;}
.ws38_c00060{word-spacing:17.280000pt;}
.ws37_c00060{word-spacing:17.600000pt;}
.ws2f_c00060{word-spacing:20.352000pt;}
.ws30_c00060{word-spacing:20.416000pt;}
.ws1a_c00060{word-spacing:20.480000pt;}
.ws5_c00060{word-spacing:20.544000pt;}
.ws6_c00060{word-spacing:20.736000pt;}
.ws43_c00060{word-spacing:21.376000pt;}
.ws2c_c00060{word-spacing:34.560000pt;}
.ws3_c00060{word-spacing:34.624000pt;}
.ws2_c00060{word-spacing:76.800000pt;}
._1_c00060{margin-left:-0.972800pt;}
._0_c00060{width:0.936960pt;}
._2_c00060{width:3.443200pt;}
._3_c00060{width:5.760000pt;}
._5_c00060{width:21.145600pt;}
._4_c00060{width:28.441600pt;}
.fs1_c00060{font-size:58.560000pt;}
.fs0_c00060{font-size:64.000000pt;}
.y0_c00060{bottom:0.000000pt;}
.y1_c00060{bottom:54.887600pt;}
.y3d_c00060{bottom:102.599467pt;}
.y21_c00060{bottom:116.999467pt;}
.y3c_c00060{bottom:130.199467pt;}
.y20_c00060{bottom:144.599467pt;}
.y3b_c00060{bottom:157.799467pt;}
.y1f_c00060{bottom:172.199467pt;}
.y3a_c00060{bottom:185.399467pt;}
.y1e_c00060{bottom:199.799467pt;}
.y39_c00060{bottom:212.999467pt;}
.y38_c00060{bottom:240.599467pt;}
.y1d_c00060{bottom:254.999467pt;}
.y37_c00060{bottom:268.199467pt;}
.y1c_c00060{bottom:282.599467pt;}
.y1b_c00060{bottom:310.199467pt;}
.y36_c00060{bottom:323.399467pt;}
.y1a_c00060{bottom:337.799467pt;}
.y35_c00060{bottom:350.999467pt;}
.y19_c00060{bottom:365.399467pt;}
.y34_c00060{bottom:378.599467pt;}
.y18_c00060{bottom:392.999467pt;}
.y33_c00060{bottom:406.199467pt;}
.y17_c00060{bottom:420.599467pt;}
.y32_c00060{bottom:433.799467pt;}
.y16_c00060{bottom:448.199467pt;}
.y15_c00060{bottom:482.919333pt;}
.y31_c00060{bottom:488.999467pt;}
.y14_c00060{bottom:509.719467pt;}
.y30_c00060{bottom:516.599467pt;}
.y13_c00060{bottom:537.239467pt;}
.y2f_c00060{bottom:544.199467pt;}
.y12_c00060{bottom:566.039467pt;}
.y2e_c00060{bottom:571.799467pt;}
.y11_c00060{bottom:593.559467pt;}
.y2d_c00060{bottom:599.399467pt;}
.y10_c00060{bottom:622.359467pt;}
.y2c_c00060{bottom:626.999467pt;}
.yf_c00060{bottom:649.879467pt;}
.y2b_c00060{bottom:654.599467pt;}
.ye_c00060{bottom:678.679467pt;}
.y2a_c00060{bottom:682.199467pt;}
.y29_c00060{bottom:709.719467pt;}
.yd_c00060{bottom:733.879467pt;}
.y28_c00060{bottom:737.319467pt;}
.yc_c00060{bottom:761.479467pt;}
.y27_c00060{bottom:764.919467pt;}
.yb_c00060{bottom:790.279467pt;}
.y26_c00060{bottom:792.519467pt;}
.ya_c00060{bottom:817.799467pt;}
.y25_c00060{bottom:820.119467pt;}
.y9_c00060{bottom:846.599467pt;}
.y24_c00060{bottom:847.719467pt;}
.y8_c00060{bottom:874.199467pt;}
.y7_c00060{bottom:901.719467pt;}
.y23_c00060{bottom:902.759467pt;}
.y22_c00060{bottom:930.359467pt;}
.y6_c00060{bottom:930.519467pt;}
.y5_c00060{bottom:985.719467pt;}
.y4_c00060{bottom:1013.319467pt;}
.y3_c00060{bottom:1043.480107pt;}
.y2_c00060{bottom:1061.399467pt;}
.h2_c00060{height:44.800000pt;}
.h3_c00060{height:48.294844pt;}
.h4_c00060{height:68.288000pt;}
.h5_c00060{height:69.376000pt;}
.h0_c00060{height:1122.520000pt;}
.h1_c00060{height:1122.666667pt;}
.w2_c00060{width:0.000000pt;}
.w3_c00060{width:0.058667pt;}
.w0_c00060{width:793.701333pt;}
.w1_c00060{width:794.000000pt;}
.x1_c00060{left:-745.700800pt;}
.x2_c00060{left:-680.260800pt;}
.x3_c00060{left:-661.300800pt;}
.x5_c00060{left:-651.860800pt;}
.x4_c00060{left:-642.420800pt;}
.x0_c00060{left:0.000000pt;}
.x8_c00060{left:113.438880pt;}
.x9_c00060{left:141.840000pt;}
.x7_c00060{left:623.760000pt;}
.x6_c00060{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00061;src:url('chunks/assets/font_818a7c6044f221c543fb33d1.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00061;src:url('chunks/assets/font_6fd0e9811da57ca9e12c35ec.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00061;src:url('chunks/assets/font_b3dfa23f24712e889c0a32a1.woff2')format("woff");}.ff4_c00061{font-family:ff4_c00061;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls7_c00061{letter-spacing:-0.144000px;}
.ls8_c00061{letter-spacing:-0.065880px;}
.ls6_c00061{letter-spacing:0.000000px;}
.ls3_c00061{letter-spacing:0.065880px;}
.ls0_c00061{letter-spacing:0.072000px;}
.ls1_c00061{letter-spacing:0.144000px;}
.ls5_c00061{letter-spacing:0.197640px;}
.ls2_c00061{letter-spacing:21.621600px;}
.ls4_c00061{letter-spacing:30.291624px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:-18.000000px;}
.ws1_c00061{word-spacing:-17.856000px;}
.ws13_c00061{word-spacing:-0.432000px;}
.ws3_c00061{word-spacing:-0.131760px;}
.ws4_c00061{word-spacing:-0.072000px;}
.ws2_c00061{word-spacing:0.000000px;}
.ws19_c00061{word-spacing:0.131760px;}
.ws8_c00061{word-spacing:0.288000px;}
.ws7_c00061{word-spacing:1.008000px;}
.ws17_c00061{word-spacing:2.305800px;}
.ws18_c00061{word-spacing:3.359880px;}
.wsb_c00061{word-spacing:3.456000px;}
.wsc_c00061{word-spacing:3.528000px;}
.wsd_c00061{word-spacing:3.600000px;}
.ws1b_c00061{word-spacing:3.960000px;}
.ws10_c00061{word-spacing:4.320000px;}
.wse_c00061{word-spacing:5.328000px;}
.ws14_c00061{word-spacing:5.760000px;}
.ws1a_c00061{word-spacing:8.208000px;}
.ws11_c00061{word-spacing:8.928000px;}
.wsf_c00061{word-spacing:11.520000px;}
.ws12_c00061{word-spacing:13.248000px;}
.ws16_c00061{word-spacing:13.900680px;}
.ws15_c00061{word-spacing:14.164200px;}
.ws5_c00061{word-spacing:17.856000px;}
.ws6_c00061{word-spacing:18.000000px;}
.wsa_c00061{word-spacing:20.736000px;}
.ws9_c00061{word-spacing:20.880000px;}
._1_c00061{margin-left:-1.022400px;}
._0_c00061{width:1.054080px;}
._2_c00061{width:16.992000px;}
._3_c00061{width:34.963200px;}
.fc1_c00061{color:rgb(0,0,0);}
.fc0_c00061{color:rgb(35,31,32);}
.fs1_c00061{font-size:65.880000px;}
.fs0_c00061{font-size:72.000000px;}
.y0_c00061{bottom:0.000000px;}
.y1_c00061{bottom:61.748550px;}
.y1e_c00061{bottom:190.484400px;}
.y1d_c00061{bottom:221.534400px;}
.y1c_c00061{bottom:252.584400px;}
.y1b_c00061{bottom:283.634400px;}
.y1a_c00061{bottom:344.386110px;}
.y19_c00061{bottom:372.829800px;}
.y18_c00061{bottom:401.174670px;}
.y17_c00061{bottom:429.700710px;}
.y16_c00061{bottom:458.144400px;}
.y15_c00061{bottom:519.074400px;}
.y14_c00061{bottom:550.124400px;}
.y13_c00061{bottom:581.174400px;}
.y12_c00061{bottom:643.274400px;}
.y11_c00061{bottom:674.324400px;}
.y10_c00061{bottom:705.374400px;}
.yf_c00061{bottom:736.424400px;}
.ye_c00061{bottom:767.474400px;}
.yd_c00061{bottom:829.484400px;}
.yc_c00061{bottom:860.534400px;}
.yb_c00061{bottom:891.584400px;}
.ya_c00061{bottom:922.634400px;}
.y9_c00061{bottom:953.684400px;}
.y8_c00061{bottom:984.734400px;}
.y7_c00061{bottom:1015.784400px;}
.y6_c00061{bottom:1046.834400px;}
.y5_c00061{bottom:1108.934400px;}
.y4_c00061{bottom:1139.984400px;}
.y3_c00061{bottom:1173.915120px;}
.y2_c00061{bottom:1194.074400px;}
.h2_c00061{height:50.400000px;}
.h3_c00061{height:54.331699px;}
.h6_c00061{height:70.293960px;}
.h5_c00061{height:71.413920px;}
.h4_c00061{height:76.824000px;}
.h0_c00061{height:1262.835000px;}
.h1_c00061{height:1263.000000px;}
.w0_c00061{width:892.914000px;}
.w1_c00061{width:893.250000px;}
.x0_c00061{left:0.000000px;}
.x1_c00061{left:54.000000px;}
.x2_c00061{left:127.620000px;}
.x3_c00061{left:159.570000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls7_c00061{letter-spacing:-0.128000pt;}
.ls8_c00061{letter-spacing:-0.058560pt;}
.ls6_c00061{letter-spacing:0.000000pt;}
.ls3_c00061{letter-spacing:0.058560pt;}
.ls0_c00061{letter-spacing:0.064000pt;}
.ls1_c00061{letter-spacing:0.128000pt;}
.ls5_c00061{letter-spacing:0.175680pt;}
.ls2_c00061{letter-spacing:19.219200pt;}
.ls4_c00061{letter-spacing:26.925888pt;}
.ws0_c00061{word-spacing:-16.000000pt;}
.ws1_c00061{word-spacing:-15.872000pt;}
.ws13_c00061{word-spacing:-0.384000pt;}
.ws3_c00061{word-spacing:-0.117120pt;}
.ws4_c00061{word-spacing:-0.064000pt;}
.ws2_c00061{word-spacing:0.000000pt;}
.ws19_c00061{word-spacing:0.117120pt;}
.ws8_c00061{word-spacing:0.256000pt;}
.ws7_c00061{word-spacing:0.896000pt;}
.ws17_c00061{word-spacing:2.049600pt;}
.ws18_c00061{word-spacing:2.986560pt;}
.wsb_c00061{word-spacing:3.072000pt;}
.wsc_c00061{word-spacing:3.136000pt;}
.wsd_c00061{word-spacing:3.200000pt;}
.ws1b_c00061{word-spacing:3.520000pt;}
.ws10_c00061{word-spacing:3.840000pt;}
.wse_c00061{word-spacing:4.736000pt;}
.ws14_c00061{word-spacing:5.120000pt;}
.ws1a_c00061{word-spacing:7.296000pt;}
.ws11_c00061{word-spacing:7.936000pt;}
.wsf_c00061{word-spacing:10.240000pt;}
.ws12_c00061{word-spacing:11.776000pt;}
.ws16_c00061{word-spacing:12.356160pt;}
.ws15_c00061{word-spacing:12.590400pt;}
.ws5_c00061{word-spacing:15.872000pt;}
.ws6_c00061{word-spacing:16.000000pt;}
.wsa_c00061{word-spacing:18.432000pt;}
.ws9_c00061{word-spacing:18.560000pt;}
._1_c00061{margin-left:-0.908800pt;}
._0_c00061{width:0.936960pt;}
._2_c00061{width:15.104000pt;}
._3_c00061{width:31.078400pt;}
.fs1_c00061{font-size:58.560000pt;}
.fs0_c00061{font-size:64.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y1_c00061{bottom:54.887600pt;}
.y1e_c00061{bottom:169.319467pt;}
.y1d_c00061{bottom:196.919467pt;}
.y1c_c00061{bottom:224.519467pt;}
.y1b_c00061{bottom:252.119467pt;}
.y1a_c00061{bottom:306.120987pt;}
.y19_c00061{bottom:331.404267pt;}
.y18_c00061{bottom:356.599707pt;}
.y17_c00061{bottom:381.956187pt;}
.y16_c00061{bottom:407.239467pt;}
.y15_c00061{bottom:461.399467pt;}
.y14_c00061{bottom:488.999467pt;}
.y13_c00061{bottom:516.599467pt;}
.y12_c00061{bottom:571.799467pt;}
.y11_c00061{bottom:599.399467pt;}
.y10_c00061{bottom:626.999467pt;}
.yf_c00061{bottom:654.599467pt;}
.ye_c00061{bottom:682.199467pt;}
.yd_c00061{bottom:737.319467pt;}
.yc_c00061{bottom:764.919467pt;}
.yb_c00061{bottom:792.519467pt;}
.ya_c00061{bottom:820.119467pt;}
.y9_c00061{bottom:847.719467pt;}
.y8_c00061{bottom:875.319467pt;}
.y7_c00061{bottom:902.919467pt;}
.y6_c00061{bottom:930.519467pt;}
.y5_c00061{bottom:985.719467pt;}
.y4_c00061{bottom:1013.319467pt;}
.y3_c00061{bottom:1043.480107pt;}
.y2_c00061{bottom:1061.399467pt;}
.h2_c00061{height:44.800000pt;}
.h3_c00061{height:48.294844pt;}
.h6_c00061{height:62.483520pt;}
.h5_c00061{height:63.479040pt;}
.h4_c00061{height:68.288000pt;}
.h0_c00061{height:1122.520000pt;}
.h1_c00061{height:1122.666667pt;}
.w0_c00061{width:793.701333pt;}
.w1_c00061{width:794.000000pt;}
.x0_c00061{left:0.000000pt;}
.x1_c00061{left:48.000000pt;}
.x2_c00061{left:113.440000pt;}
.x3_c00061{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00062;src:url('chunks/assets/font_a514c63d66b94d4472782261.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00062;src:url('chunks/assets/font_f3e4aca927b19850385203a0.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00062;src:url('chunks/assets/font_cfb1d582e7fb1f0a621fcd99.woff2')format("woff");}.ff4_c00062{font-family:ff4_c00062;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00062;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00062{font-family:ff5_c00062;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00062;src:url('chunks/assets/font_f7adcafb2f730ef988c4f763.woff2')format("woff");}.ff6_c00062{font-family:ff6_c00062;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00062;src:url('chunks/assets/font_6496669b58ec6ca1de38a5d8.woff2')format("woff");}.ff7_c00062{font-family:ff7_c00062;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00062;src:url('chunks/assets/font_260ceb2991edfa0622cd6cc9.woff2')format("woff");}.ff8_c00062{font-family:ff8_c00062;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.lsd_c00062{letter-spacing:-0.288000px;}
.lsb_c00062{letter-spacing:-0.144000px;}
.lse_c00062{letter-spacing:-0.072000px;}
.lsc_c00062{letter-spacing:-0.065880px;}
.lsa_c00062{letter-spacing:0.000000px;}
.ls3_c00062{letter-spacing:0.065880px;}
.ls0_c00062{letter-spacing:0.072000px;}
.ls1_c00062{letter-spacing:0.144000px;}
.ls5_c00062{letter-spacing:0.197640px;}
.ls2_c00062{letter-spacing:21.621600px;}
.ls6_c00062{letter-spacing:21.628800px;}
.ls9_c00062{letter-spacing:22.032000px;}
.ls7_c00062{letter-spacing:25.560000px;}
.ls4_c00062{letter-spacing:30.291624px;}
.ls8_c00062{letter-spacing:60.984000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00062{word-spacing:-18.000000px;}
.ws1_c00062{word-spacing:-17.856000px;}
.wsa_c00062{word-spacing:-17.712000px;}
.ws1e_c00062{word-spacing:-0.432000px;}
.ws39_c00062{word-spacing:-0.144000px;}
.wse_c00062{word-spacing:-0.131760px;}
.wsf_c00062{word-spacing:-0.072000px;}
.wsd_c00062{word-spacing:0.000000px;}
.ws35_c00062{word-spacing:0.072000px;}
.ws24_c00062{word-spacing:0.131760px;}
.ws13_c00062{word-spacing:0.288000px;}
.ws41_c00062{word-spacing:0.360000px;}
.wsc_c00062{word-spacing:0.576000px;}
.ws40_c00062{word-spacing:0.648000px;}
.ws12_c00062{word-spacing:1.008000px;}
.ws27_c00062{word-spacing:1.656000px;}
.ws22_c00062{word-spacing:2.305800px;}
.ws2f_c00062{word-spacing:2.880000px;}
.ws28_c00062{word-spacing:3.240000px;}
.ws23_c00062{word-spacing:3.359880px;}
.ws16_c00062{word-spacing:3.456000px;}
.ws17_c00062{word-spacing:3.528000px;}
.ws18_c00062{word-spacing:3.600000px;}
.ws9_c00062{word-spacing:3.744000px;}
.ws8_c00062{word-spacing:3.888000px;}
.ws26_c00062{word-spacing:3.960000px;}
.ws1b_c00062{word-spacing:4.320000px;}
.ws2a_c00062{word-spacing:4.608000px;}
.ws2b_c00062{word-spacing:4.680000px;}
.ws19_c00062{word-spacing:5.328000px;}
.ws4_c00062{word-spacing:5.472000px;}
.ws38_c00062{word-spacing:5.688000px;}
.ws1f_c00062{word-spacing:5.760000px;}
.ws30_c00062{word-spacing:6.408000px;}
.ws33_c00062{word-spacing:7.560000px;}
.ws42_c00062{word-spacing:7.848000px;}
.ws25_c00062{word-spacing:8.208000px;}
.ws1c_c00062{word-spacing:8.928000px;}
.ws2c_c00062{word-spacing:9.648000px;}
.ws2d_c00062{word-spacing:9.720000px;}
.ws31_c00062{word-spacing:9.792000px;}
.ws32_c00062{word-spacing:10.008000px;}
.ws2e_c00062{word-spacing:10.440000px;}
.ws3c_c00062{word-spacing:11.016000px;}
.ws1a_c00062{word-spacing:11.520000px;}
.ws29_c00062{word-spacing:11.808000px;}
.ws5_c00062{word-spacing:12.816000px;}
.ws7_c00062{word-spacing:13.104000px;}
.ws1d_c00062{word-spacing:13.248000px;}
.ws3a_c00062{word-spacing:13.320000px;}
.ws6_c00062{word-spacing:13.464000px;}
.ws21_c00062{word-spacing:13.900680px;}
.ws20_c00062{word-spacing:14.164200px;}
.ws10_c00062{word-spacing:17.856000px;}
.ws34_c00062{word-spacing:17.928000px;}
.ws11_c00062{word-spacing:18.000000px;}
.ws15_c00062{word-spacing:20.736000px;}
.ws14_c00062{word-spacing:20.880000px;}
.ws37_c00062{word-spacing:24.696000px;}
.ws36_c00062{word-spacing:24.768000px;}
.ws2_c00062{word-spacing:24.840000px;}
.wsb_c00062{word-spacing:25.920000px;}
.ws3b_c00062{word-spacing:26.208000px;}
.ws3d_c00062{word-spacing:26.856000px;}
.ws3e_c00062{word-spacing:26.928000px;}
.ws3f_c00062{word-spacing:27.000000px;}
.ws3_c00062{word-spacing:67.752000px;}
._1_c00062{margin-left:-1.022400px;}
._0_c00062{width:1.054080px;}
._4_c00062{width:3.456000px;}
._7_c00062{width:5.976000px;}
._8_c00062{width:13.536000px;}
._2_c00062{width:16.992000px;}
._5_c00062{width:21.657600px;}
._9_c00062{width:22.968000px;}
._6_c00062{width:24.984000px;}
._a_c00062{width:26.424000px;}
._3_c00062{width:34.963200px;}
.fc2_c00062{color:transparent;}
.fc1_c00062{color:rgb(0,0,0);}
.fc0_c00062{color:rgb(35,31,32);}
.fs1_c00062{font-size:65.880000px;}
.fs0_c00062{font-size:72.000000px;}
.y0_c00062{bottom:0.000000px;}
.y1_c00062{bottom:61.748550px;}
.y2d_c00062{bottom:115.424400px;}
.y2c_c00062{bottom:146.474400px;}
.y2b_c00062{bottom:177.524400px;}
.y1e_c00062{bottom:190.484400px;}
.y2a_c00062{bottom:208.574400px;}
.y1d_c00062{bottom:221.534400px;}
.y1c_c00062{bottom:252.584400px;}
.y29_c00062{bottom:270.674400px;}
.y1b_c00062{bottom:283.634400px;}
.y28_c00062{bottom:301.724400px;}
.y27_c00062{bottom:332.774400px;}
.y1a_c00062{bottom:344.386110px;}
.y26_c00062{bottom:363.824400px;}
.y19_c00062{bottom:372.829800px;}
.y25_c00062{bottom:394.874400px;}
.y18_c00062{bottom:401.174670px;}
.y24_c00062{bottom:425.924400px;}
.y17_c00062{bottom:429.700710px;}
.y23_c00062{bottom:456.974400px;}
.y16_c00062{bottom:458.144400px;}
.y22_c00062{bottom:488.024400px;}
.y15_c00062{bottom:519.074400px;}
.y14_c00062{bottom:550.124400px;}
.y13_c00062{bottom:581.174400px;}
.y21_c00062{bottom:612.224400px;}
.y12_c00062{bottom:643.274400px;}
.y11_c00062{bottom:674.324400px;}
.y10_c00062{bottom:705.374400px;}
.yf_c00062{bottom:736.424400px;}
.ye_c00062{bottom:767.474400px;}
.y20_c00062{bottom:798.434400px;}
.yd_c00062{bottom:829.484400px;}
.yc_c00062{bottom:860.534400px;}
.yb_c00062{bottom:891.584400px;}
.ya_c00062{bottom:922.634400px;}
.y9_c00062{bottom:953.684400px;}
.y8_c00062{bottom:984.734400px;}
.y7_c00062{bottom:1015.784400px;}
.y6_c00062{bottom:1046.834400px;}
.y1f_c00062{bottom:1077.884400px;}
.y5_c00062{bottom:1108.934400px;}
.y4_c00062{bottom:1139.984400px;}
.y3_c00062{bottom:1173.915120px;}
.y2_c00062{bottom:1194.074400px;}
.h2_c00062{height:50.400000px;}
.h3_c00062{height:54.331699px;}
.h6_c00062{height:70.293960px;}
.h5_c00062{height:71.413920px;}
.h4_c00062{height:76.824000px;}
.h7_c00062{height:78.048000px;}
.h0_c00062{height:1262.835000px;}
.h1_c00062{height:1263.000000px;}
.w2_c00062{width:0.000000px;}
.w3_c00062{width:0.066000px;}
.w0_c00062{width:892.914000px;}
.w1_c00062{width:893.250000px;}
.x1_c00062{left:-838.913400px;}
.x2_c00062{left:-765.293400px;}
.x3_c00062{left:-733.343400px;}
.x0_c00062{left:0.000000px;}
.x6_c00062{left:127.618740px;}
.x8_c00062{left:148.950000px;}
.x7_c00062{left:159.570000px;}
.x9_c00062{left:170.190000px;}
.x5_c00062{left:701.730000px;}
.x4_c00062{left:804.366150px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.lsd_c00062{letter-spacing:-0.256000pt;}
.lsb_c00062{letter-spacing:-0.128000pt;}
.lse_c00062{letter-spacing:-0.064000pt;}
.lsc_c00062{letter-spacing:-0.058560pt;}
.lsa_c00062{letter-spacing:0.000000pt;}
.ls3_c00062{letter-spacing:0.058560pt;}
.ls0_c00062{letter-spacing:0.064000pt;}
.ls1_c00062{letter-spacing:0.128000pt;}
.ls5_c00062{letter-spacing:0.175680pt;}
.ls2_c00062{letter-spacing:19.219200pt;}
.ls6_c00062{letter-spacing:19.225600pt;}
.ls9_c00062{letter-spacing:19.584000pt;}
.ls7_c00062{letter-spacing:22.720000pt;}
.ls4_c00062{letter-spacing:26.925888pt;}
.ls8_c00062{letter-spacing:54.208000pt;}
.ws0_c00062{word-spacing:-16.000000pt;}
.ws1_c00062{word-spacing:-15.872000pt;}
.wsa_c00062{word-spacing:-15.744000pt;}
.ws1e_c00062{word-spacing:-0.384000pt;}
.ws39_c00062{word-spacing:-0.128000pt;}
.wse_c00062{word-spacing:-0.117120pt;}
.wsf_c00062{word-spacing:-0.064000pt;}
.wsd_c00062{word-spacing:0.000000pt;}
.ws35_c00062{word-spacing:0.064000pt;}
.ws24_c00062{word-spacing:0.117120pt;}
.ws13_c00062{word-spacing:0.256000pt;}
.ws41_c00062{word-spacing:0.320000pt;}
.wsc_c00062{word-spacing:0.512000pt;}
.ws40_c00062{word-spacing:0.576000pt;}
.ws12_c00062{word-spacing:0.896000pt;}
.ws27_c00062{word-spacing:1.472000pt;}
.ws22_c00062{word-spacing:2.049600pt;}
.ws2f_c00062{word-spacing:2.560000pt;}
.ws28_c00062{word-spacing:2.880000pt;}
.ws23_c00062{word-spacing:2.986560pt;}
.ws16_c00062{word-spacing:3.072000pt;}
.ws17_c00062{word-spacing:3.136000pt;}
.ws18_c00062{word-spacing:3.200000pt;}
.ws9_c00062{word-spacing:3.328000pt;}
.ws8_c00062{word-spacing:3.456000pt;}
.ws26_c00062{word-spacing:3.520000pt;}
.ws1b_c00062{word-spacing:3.840000pt;}
.ws2a_c00062{word-spacing:4.096000pt;}
.ws2b_c00062{word-spacing:4.160000pt;}
.ws19_c00062{word-spacing:4.736000pt;}
.ws4_c00062{word-spacing:4.864000pt;}
.ws38_c00062{word-spacing:5.056000pt;}
.ws1f_c00062{word-spacing:5.120000pt;}
.ws30_c00062{word-spacing:5.696000pt;}
.ws33_c00062{word-spacing:6.720000pt;}
.ws42_c00062{word-spacing:6.976000pt;}
.ws25_c00062{word-spacing:7.296000pt;}
.ws1c_c00062{word-spacing:7.936000pt;}
.ws2c_c00062{word-spacing:8.576000pt;}
.ws2d_c00062{word-spacing:8.640000pt;}
.ws31_c00062{word-spacing:8.704000pt;}
.ws32_c00062{word-spacing:8.896000pt;}
.ws2e_c00062{word-spacing:9.280000pt;}
.ws3c_c00062{word-spacing:9.792000pt;}
.ws1a_c00062{word-spacing:10.240000pt;}
.ws29_c00062{word-spacing:10.496000pt;}
.ws5_c00062{word-spacing:11.392000pt;}
.ws7_c00062{word-spacing:11.648000pt;}
.ws1d_c00062{word-spacing:11.776000pt;}
.ws3a_c00062{word-spacing:11.840000pt;}
.ws6_c00062{word-spacing:11.968000pt;}
.ws21_c00062{word-spacing:12.356160pt;}
.ws20_c00062{word-spacing:12.590400pt;}
.ws10_c00062{word-spacing:15.872000pt;}
.ws34_c00062{word-spacing:15.936000pt;}
.ws11_c00062{word-spacing:16.000000pt;}
.ws15_c00062{word-spacing:18.432000pt;}
.ws14_c00062{word-spacing:18.560000pt;}
.ws37_c00062{word-spacing:21.952000pt;}
.ws36_c00062{word-spacing:22.016000pt;}
.ws2_c00062{word-spacing:22.080000pt;}
.wsb_c00062{word-spacing:23.040000pt;}
.ws3b_c00062{word-spacing:23.296000pt;}
.ws3d_c00062{word-spacing:23.872000pt;}
.ws3e_c00062{word-spacing:23.936000pt;}
.ws3f_c00062{word-spacing:24.000000pt;}
.ws3_c00062{word-spacing:60.224000pt;}
._1_c00062{margin-left:-0.908800pt;}
._0_c00062{width:0.936960pt;}
._4_c00062{width:3.072000pt;}
._7_c00062{width:5.312000pt;}
._8_c00062{width:12.032000pt;}
._2_c00062{width:15.104000pt;}
._5_c00062{width:19.251200pt;}
._9_c00062{width:20.416000pt;}
._6_c00062{width:22.208000pt;}
._a_c00062{width:23.488000pt;}
._3_c00062{width:31.078400pt;}
.fs1_c00062{font-size:58.560000pt;}
.fs0_c00062{font-size:64.000000pt;}
.y0_c00062{bottom:0.000000pt;}
.y1_c00062{bottom:54.887600pt;}
.y2d_c00062{bottom:102.599467pt;}
.y2c_c00062{bottom:130.199467pt;}
.y2b_c00062{bottom:157.799467pt;}
.y1e_c00062{bottom:169.319467pt;}
.y2a_c00062{bottom:185.399467pt;}
.y1d_c00062{bottom:196.919467pt;}
.y1c_c00062{bottom:224.519467pt;}
.y29_c00062{bottom:240.599467pt;}
.y1b_c00062{bottom:252.119467pt;}
.y28_c00062{bottom:268.199467pt;}
.y27_c00062{bottom:295.799467pt;}
.y1a_c00062{bottom:306.120987pt;}
.y26_c00062{bottom:323.399467pt;}
.y19_c00062{bottom:331.404267pt;}
.y25_c00062{bottom:350.999467pt;}
.y18_c00062{bottom:356.599707pt;}
.y24_c00062{bottom:378.599467pt;}
.y17_c00062{bottom:381.956187pt;}
.y23_c00062{bottom:406.199467pt;}
.y16_c00062{bottom:407.239467pt;}
.y22_c00062{bottom:433.799467pt;}
.y15_c00062{bottom:461.399467pt;}
.y14_c00062{bottom:488.999467pt;}
.y13_c00062{bottom:516.599467pt;}
.y21_c00062{bottom:544.199467pt;}
.y12_c00062{bottom:571.799467pt;}
.y11_c00062{bottom:599.399467pt;}
.y10_c00062{bottom:626.999467pt;}
.yf_c00062{bottom:654.599467pt;}
.ye_c00062{bottom:682.199467pt;}
.y20_c00062{bottom:709.719467pt;}
.yd_c00062{bottom:737.319467pt;}
.yc_c00062{bottom:764.919467pt;}
.yb_c00062{bottom:792.519467pt;}
.ya_c00062{bottom:820.119467pt;}
.y9_c00062{bottom:847.719467pt;}
.y8_c00062{bottom:875.319467pt;}
.y7_c00062{bottom:902.919467pt;}
.y6_c00062{bottom:930.519467pt;}
.y1f_c00062{bottom:958.119467pt;}
.y5_c00062{bottom:985.719467pt;}
.y4_c00062{bottom:1013.319467pt;}
.y3_c00062{bottom:1043.480107pt;}
.y2_c00062{bottom:1061.399467pt;}
.h2_c00062{height:44.800000pt;}
.h3_c00062{height:48.294844pt;}
.h6_c00062{height:62.483520pt;}
.h5_c00062{height:63.479040pt;}
.h4_c00062{height:68.288000pt;}
.h7_c00062{height:69.376000pt;}
.h0_c00062{height:1122.520000pt;}
.h1_c00062{height:1122.666667pt;}
.w2_c00062{width:0.000000pt;}
.w3_c00062{width:0.058667pt;}
.w0_c00062{width:793.701333pt;}
.w1_c00062{width:794.000000pt;}
.x1_c00062{left:-745.700800pt;}
.x2_c00062{left:-680.260800pt;}
.x3_c00062{left:-651.860800pt;}
.x0_c00062{left:0.000000pt;}
.x6_c00062{left:113.438880pt;}
.x8_c00062{left:132.400000pt;}
.x7_c00062{left:141.840000pt;}
.x9_c00062{left:151.280000pt;}
.x5_c00062{left:623.760000pt;}
.x4_c00062{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00063;src:url('chunks/assets/font_3af547f3ea825abaeed492d8.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00063;src:url('chunks/assets/font_24d3521397dc465f4660af30.woff2')format("woff");}.ff3_c00063{font-family:ff3_c00063;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00063;src:url('chunks/assets/font_2c7fcc0b65b56c68c0173b97.woff2')format("woff");}.ff4_c00063{font-family:ff4_c00063;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00063;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff5_c00063{font-family:ff5_c00063;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls9_c00063{letter-spacing:-0.576000px;}
.ls8_c00063{letter-spacing:-0.288000px;}
.ls6_c00063{letter-spacing:-0.197640px;}
.lsc_c00063{letter-spacing:-0.162000px;}
.lsa_c00063{letter-spacing:-0.108000px;}
.ls7_c00063{letter-spacing:-0.065880px;}
.ls3_c00063{letter-spacing:0.000000px;}
.lsb_c00063{letter-spacing:0.054000px;}
.ls4_c00063{letter-spacing:0.065880px;}
.ls0_c00063{letter-spacing:0.072000px;}
.ls1_c00063{letter-spacing:0.144000px;}
.ls5_c00063{letter-spacing:0.197640px;}
.ls2_c00063{letter-spacing:45.432000px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00063{word-spacing:-18.072000px;}
.ws7_c00063{word-spacing:-18.000000px;}
.ws9_c00063{word-spacing:-15.696000px;}
.wsa_c00063{word-spacing:-12.096000px;}
.wsb_c00063{word-spacing:-12.042000px;}
.ws1f_c00063{word-spacing:-0.432000px;}
.wsc_c00063{word-spacing:-0.131760px;}
.wse_c00063{word-spacing:-0.072000px;}
.ws21_c00063{word-spacing:-0.054000px;}
.ws6_c00063{word-spacing:0.000000px;}
.ws22_c00063{word-spacing:0.162000px;}
.ws4_c00063{word-spacing:0.329400px;}
.wsd_c00063{word-spacing:1.080000px;}
.ws1c_c00063{word-spacing:1.368000px;}
.ws20_c00063{word-spacing:1.440000px;}
.ws5_c00063{word-spacing:3.024000px;}
.ws16_c00063{word-spacing:3.168000px;}
.ws15_c00063{word-spacing:3.240000px;}
.ws0_c00063{word-spacing:3.359880px;}
.ws14_c00063{word-spacing:3.425760px;}
.ws2_c00063{word-spacing:3.570696px;}
.ws3_c00063{word-spacing:3.623400px;}
.ws13_c00063{word-spacing:3.755160px;}
.ws1_c00063{word-spacing:4.216320px;}
.ws1d_c00063{word-spacing:6.048000px;}
.ws1e_c00063{word-spacing:6.120000px;}
.ws1b_c00063{word-spacing:7.848000px;}
.ws1a_c00063{word-spacing:7.920000px;}
.ws12_c00063{word-spacing:9.000000px;}
.ws10_c00063{word-spacing:12.096000px;}
.ws11_c00063{word-spacing:12.168000px;}
.wsf_c00063{word-spacing:12.240000px;}
.ws17_c00063{word-spacing:23.688000px;}
.ws18_c00063{word-spacing:34.560000px;}
.ws19_c00063{word-spacing:35.208000px;}
._1_c00063{margin-left:-1.296000px;}
._0_c00063{width:1.054080px;}
.fc2_c00063{color:rgb(255,255,255);}
.fc1_c00063{color:rgb(0,0,0);}
.fc0_c00063{color:rgb(35,31,32);}
.fs2_c00063{font-size:54.000000px;}
.fs1_c00063{font-size:65.880000px;}
.fs0_c00063{font-size:72.000000px;}
.y0_c00063{bottom:0.000000px;}
.y1_c00063{bottom:61.748550px;}
.y17_c00063{bottom:150.884400px;}
.y16_c00063{bottom:181.934400px;}
.y15_c00063{bottom:214.334400px;}
.y14_c00063{bottom:245.294400px;}
.y13_c00063{bottom:277.694400px;}
.y12_c00063{bottom:308.654400px;}
.y11_c00063{bottom:341.054400px;}
.y10_c00063{bottom:372.104400px;}
.yf_c00063{bottom:404.504400px;}
.ye_c00063{bottom:435.554400px;}
.yd_c00063{bottom:466.514400px;}
.yc_c00063{bottom:529.964400px;}
.yb_c00063{bottom:561.014400px;}
.ya_c00063{bottom:592.064400px;}
.y9_c00063{bottom:652.806960px;}
.y8_c00063{bottom:681.250650px;}
.y1d_c00063{bottom:762.927000px;}
.y19_c00063{bottom:862.109700px;}
.y1c_c00063{bottom:865.894050px;}
.y1b_c00063{bottom:880.649550px;}
.y18_c00063{bottom:881.909700px;}
.y1a_c00063{bottom:983.544750px;}
.y7_c00063{bottom:1046.834400px;}
.y6_c00063{bottom:1077.884400px;}
.y5_c00063{bottom:1108.934400px;}
.y4_c00063{bottom:1139.984400px;}
.y3_c00063{bottom:1173.915120px;}
.y2_c00063{bottom:1194.074400px;}
.h9_c00063{height:44.534180px;}
.h2_c00063{height:50.400000px;}
.h3_c00063{height:54.331699px;}
.h8_c00063{height:59.378906px;}
.h7_c00063{height:70.293960px;}
.h6_c00063{height:71.413920px;}
.h5_c00063{height:76.824000px;}
.h4_c00063{height:78.048000px;}
.h0_c00063{height:1262.835000px;}
.h1_c00063{height:1263.000000px;}
.w0_c00063{width:892.914000px;}
.w1_c00063{width:893.250000px;}
.x0_c00063{left:0.000000px;}
.x1_c00063{left:54.000000px;}
.x2_c00063{left:127.620000px;}
.x4_c00063{left:148.950000px;}
.x3_c00063{left:159.570000px;}
.x5_c00063{left:170.190000px;}
.xb_c00063{left:305.311050px;}
.xc_c00063{left:308.996550px;}
.x7_c00063{left:405.183750px;}
.x6_c00063{left:414.453750px;}
.x8_c00063{left:416.969850px;}
.x9_c00063{left:525.842400px;}
.xa_c00063{left:532.052400px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls9_c00063{letter-spacing:-0.512000pt;}
.ls8_c00063{letter-spacing:-0.256000pt;}
.ls6_c00063{letter-spacing:-0.175680pt;}
.lsc_c00063{letter-spacing:-0.144000pt;}
.lsa_c00063{letter-spacing:-0.096000pt;}
.ls7_c00063{letter-spacing:-0.058560pt;}
.ls3_c00063{letter-spacing:0.000000pt;}
.lsb_c00063{letter-spacing:0.048000pt;}
.ls4_c00063{letter-spacing:0.058560pt;}
.ls0_c00063{letter-spacing:0.064000pt;}
.ls1_c00063{letter-spacing:0.128000pt;}
.ls5_c00063{letter-spacing:0.175680pt;}
.ls2_c00063{letter-spacing:40.384000pt;}
.ws8_c00063{word-spacing:-16.064000pt;}
.ws7_c00063{word-spacing:-16.000000pt;}
.ws9_c00063{word-spacing:-13.952000pt;}
.wsa_c00063{word-spacing:-10.752000pt;}
.wsb_c00063{word-spacing:-10.704000pt;}
.ws1f_c00063{word-spacing:-0.384000pt;}
.wsc_c00063{word-spacing:-0.117120pt;}
.wse_c00063{word-spacing:-0.064000pt;}
.ws21_c00063{word-spacing:-0.048000pt;}
.ws6_c00063{word-spacing:0.000000pt;}
.ws22_c00063{word-spacing:0.144000pt;}
.ws4_c00063{word-spacing:0.292800pt;}
.wsd_c00063{word-spacing:0.960000pt;}
.ws1c_c00063{word-spacing:1.216000pt;}
.ws20_c00063{word-spacing:1.280000pt;}
.ws5_c00063{word-spacing:2.688000pt;}
.ws16_c00063{word-spacing:2.816000pt;}
.ws15_c00063{word-spacing:2.880000pt;}
.ws0_c00063{word-spacing:2.986560pt;}
.ws14_c00063{word-spacing:3.045120pt;}
.ws2_c00063{word-spacing:3.173952pt;}
.ws3_c00063{word-spacing:3.220800pt;}
.ws13_c00063{word-spacing:3.337920pt;}
.ws1_c00063{word-spacing:3.747840pt;}
.ws1d_c00063{word-spacing:5.376000pt;}
.ws1e_c00063{word-spacing:5.440000pt;}
.ws1b_c00063{word-spacing:6.976000pt;}
.ws1a_c00063{word-spacing:7.040000pt;}
.ws12_c00063{word-spacing:8.000000pt;}
.ws10_c00063{word-spacing:10.752000pt;}
.ws11_c00063{word-spacing:10.816000pt;}
.wsf_c00063{word-spacing:10.880000pt;}
.ws17_c00063{word-spacing:21.056000pt;}
.ws18_c00063{word-spacing:30.720000pt;}
.ws19_c00063{word-spacing:31.296000pt;}
._1_c00063{margin-left:-1.152000pt;}
._0_c00063{width:0.936960pt;}
.fs2_c00063{font-size:48.000000pt;}
.fs1_c00063{font-size:58.560000pt;}
.fs0_c00063{font-size:64.000000pt;}
.y0_c00063{bottom:0.000000pt;}
.y1_c00063{bottom:54.887600pt;}
.y17_c00063{bottom:134.119467pt;}
.y16_c00063{bottom:161.719467pt;}
.y15_c00063{bottom:190.519467pt;}
.y14_c00063{bottom:218.039467pt;}
.y13_c00063{bottom:246.839467pt;}
.y12_c00063{bottom:274.359467pt;}
.y11_c00063{bottom:303.159467pt;}
.y10_c00063{bottom:330.759467pt;}
.yf_c00063{bottom:359.559467pt;}
.ye_c00063{bottom:387.159467pt;}
.yd_c00063{bottom:414.679467pt;}
.yc_c00063{bottom:471.079467pt;}
.yb_c00063{bottom:498.679467pt;}
.ya_c00063{bottom:526.279467pt;}
.y9_c00063{bottom:580.272853pt;}
.y8_c00063{bottom:605.556133pt;}
.y1d_c00063{bottom:678.157333pt;}
.y19_c00063{bottom:766.319733pt;}
.y1c_c00063{bottom:769.683600pt;}
.y1b_c00063{bottom:782.799600pt;}
.y18_c00063{bottom:783.919733pt;}
.y1a_c00063{bottom:874.262000pt;}
.y7_c00063{bottom:930.519467pt;}
.y6_c00063{bottom:958.119467pt;}
.y5_c00063{bottom:985.719467pt;}
.y4_c00063{bottom:1013.319467pt;}
.y3_c00063{bottom:1043.480107pt;}
.y2_c00063{bottom:1061.399467pt;}
.h9_c00063{height:39.585938pt;}
.h2_c00063{height:44.800000pt;}
.h3_c00063{height:48.294844pt;}
.h8_c00063{height:52.781250pt;}
.h7_c00063{height:62.483520pt;}
.h6_c00063{height:63.479040pt;}
.h5_c00063{height:68.288000pt;}
.h4_c00063{height:69.376000pt;}
.h0_c00063{height:1122.520000pt;}
.h1_c00063{height:1122.666667pt;}
.w0_c00063{width:793.701333pt;}
.w1_c00063{width:794.000000pt;}
.x0_c00063{left:0.000000pt;}
.x1_c00063{left:48.000000pt;}
.x2_c00063{left:113.440000pt;}
.x4_c00063{left:132.400000pt;}
.x3_c00063{left:141.840000pt;}
.x5_c00063{left:151.280000pt;}
.xb_c00063{left:271.387600pt;}
.xc_c00063{left:274.663600pt;}
.x7_c00063{left:360.163333pt;}
.x6_c00063{left:368.403333pt;}
.x8_c00063{left:370.639867pt;}
.x9_c00063{left:467.415467pt;}
.xa_c00063{left:472.935467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00064;src:url('chunks/assets/font_14a6ef8b1aadb8ab63772f0f.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00064;src:url('chunks/assets/font_a3c917bf5c902057d4f90b67.woff2')format("woff");}.ff3_c00064{font-family:ff3_c00064;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00064;src:url('chunks/assets/font_b2320d5aeeb413adc16951bd.woff2')format("woff");}.ff4_c00064{font-family:ff4_c00064;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00064;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff5_c00064{font-family:ff5_c00064;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00064;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00064{font-family:ff6_c00064;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00064;src:url('chunks/assets/font_966a492d361ea7cad38d497b.woff2')format("woff");}.ff7_c00064{font-family:ff7_c00064;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00064;src:url('chunks/assets/font_3325341cc8078c542a016a96.woff2')format("woff");}.ff8_c00064{font-family:ff8_c00064;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00064;src:url('chunks/assets/font_08ea00dd35ddc5b637db8934.woff2')format("woff");}.ff9_c00064{font-family:ff9_c00064;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00064;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ffa_c00064{font-family:ffa_c00064;line-height:0.666504;font-style:normal;font-weight: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_c00064;src:url('chunks/assets/font_b10ab1b05c8f12d0081266db.woff2')format("woff");}.ffb_c00064{font-family:ffb_c00064;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.lsb_c00064{letter-spacing:-0.576000px;}
.lsf_c00064{letter-spacing:-0.360000px;}
.lsa_c00064{letter-spacing:-0.288000px;}
.ls10_c00064{letter-spacing:-0.216000px;}
.ls8_c00064{letter-spacing:-0.197640px;}
.lse_c00064{letter-spacing:-0.162000px;}
.lsc_c00064{letter-spacing:-0.108000px;}
.ls11_c00064{letter-spacing:-0.072000px;}
.ls9_c00064{letter-spacing:-0.065880px;}
.ls5_c00064{letter-spacing:0.000000px;}
.lsd_c00064{letter-spacing:0.054000px;}
.ls6_c00064{letter-spacing:0.065880px;}
.ls0_c00064{letter-spacing:0.072000px;}
.ls1_c00064{letter-spacing:0.144000px;}
.ls7_c00064{letter-spacing:0.197640px;}
.ls3_c00064{letter-spacing:18.720000px;}
.ls4_c00064{letter-spacing:19.440000px;}
.ls2_c00064{letter-spacing:45.432000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12_c00064{word-spacing:-18.144000px;}
.ws8_c00064{word-spacing:-18.072000px;}
.ws7_c00064{word-spacing:-18.000000px;}
.ws13_c00064{word-spacing:-17.784000px;}
.wse_c00064{word-spacing:-17.424000px;}
.ws9_c00064{word-spacing:-15.696000px;}
.wsa_c00064{word-spacing:-12.096000px;}
.wsb_c00064{word-spacing:-12.042000px;}
.ws2a_c00064{word-spacing:-0.432000px;}
.ws14_c00064{word-spacing:-0.144000px;}
.ws17_c00064{word-spacing:-0.131760px;}
.ws19_c00064{word-spacing:-0.072000px;}
.ws2c_c00064{word-spacing:-0.054000px;}
.ws6_c00064{word-spacing:0.000000px;}
.ws2d_c00064{word-spacing:0.162000px;}
.ws39_c00064{word-spacing:0.216000px;}
.ws4_c00064{word-spacing:0.329400px;}
.ws34_c00064{word-spacing:0.360000px;}
.ws44_c00064{word-spacing:0.648000px;}
.ws31_c00064{word-spacing:0.720000px;}
.wsf_c00064{word-spacing:0.864000px;}
.ws15_c00064{word-spacing:0.936000px;}
.wsd_c00064{word-spacing:1.008000px;}
.ws18_c00064{word-spacing:1.080000px;}
.ws45_c00064{word-spacing:1.296000px;}
.ws27_c00064{word-spacing:1.368000px;}
.ws2b_c00064{word-spacing:1.440000px;}
.ws49_c00064{word-spacing:2.808000px;}
.ws5_c00064{word-spacing:3.024000px;}
.ws21_c00064{word-spacing:3.168000px;}
.ws20_c00064{word-spacing:3.240000px;}
.ws0_c00064{word-spacing:3.359880px;}
.ws1f_c00064{word-spacing:3.425760px;}
.ws4a_c00064{word-spacing:3.528000px;}
.wsc_c00064{word-spacing:3.564108px;}
.ws2_c00064{word-spacing:3.570696px;}
.ws16_c00064{word-spacing:3.600000px;}
.ws3_c00064{word-spacing:3.623400px;}
.ws1e_c00064{word-spacing:3.755160px;}
.ws4c_c00064{word-spacing:3.816000px;}
.ws1_c00064{word-spacing:4.216320px;}
.ws28_c00064{word-spacing:6.048000px;}
.ws29_c00064{word-spacing:6.120000px;}
.ws4d_c00064{word-spacing:6.408000px;}
.ws36_c00064{word-spacing:6.696000px;}
.ws37_c00064{word-spacing:7.128000px;}
.ws35_c00064{word-spacing:7.200000px;}
.ws26_c00064{word-spacing:7.848000px;}
.ws25_c00064{word-spacing:7.920000px;}
.ws3d_c00064{word-spacing:8.136000px;}
.ws3c_c00064{word-spacing:8.208000px;}
.ws38_c00064{word-spacing:8.568000px;}
.ws3e_c00064{word-spacing:8.640000px;}
.ws1d_c00064{word-spacing:9.000000px;}
.ws47_c00064{word-spacing:9.936000px;}
.ws48_c00064{word-spacing:10.008000px;}
.ws1b_c00064{word-spacing:12.096000px;}
.ws1c_c00064{word-spacing:12.168000px;}
.ws1a_c00064{word-spacing:12.240000px;}
.ws43_c00064{word-spacing:12.816000px;}
.ws41_c00064{word-spacing:12.888000px;}
.ws42_c00064{word-spacing:12.960000px;}
.ws2e_c00064{word-spacing:13.248000px;}
.ws2f_c00064{word-spacing:16.920000px;}
.ws3f_c00064{word-spacing:17.928000px;}
.ws40_c00064{word-spacing:18.000000px;}
.ws3a_c00064{word-spacing:20.808000px;}
.ws3b_c00064{word-spacing:20.880000px;}
.ws11_c00064{word-spacing:21.168000px;}
.ws33_c00064{word-spacing:22.320000px;}
.ws30_c00064{word-spacing:23.400000px;}
.ws22_c00064{word-spacing:23.688000px;}
.ws32_c00064{word-spacing:24.120000px;}
.ws46_c00064{word-spacing:27.648000px;}
.ws4b_c00064{word-spacing:29.160000px;}
.ws10_c00064{word-spacing:32.400000px;}
.ws23_c00064{word-spacing:34.560000px;}
.ws24_c00064{word-spacing:35.208000px;}
._1_c00064{margin-left:-1.296000px;}
._0_c00064{width:1.054080px;}
._4_c00064{width:20.448000px;}
._2_c00064{width:24.336000px;}
._3_c00064{width:42.048000px;}
.fc3_c00064{color:transparent;}
.fc2_c00064{color:rgb(255,255,255);}
.fc1_c00064{color:rgb(0,0,0);}
.fc0_c00064{color:rgb(35,31,32);}
.fs2_c00064{font-size:54.000000px;}
.fs1_c00064{font-size:65.880000px;}
.fs0_c00064{font-size:72.000000px;}
.y0_c00064{bottom:0.000000px;}
.y1_c00064{bottom:61.748550px;}
.y17_c00064{bottom:150.884400px;}
.y39_c00064{bottom:176.264250px;}
.y16_c00064{bottom:181.934400px;}
.y38_c00064{bottom:207.314250px;}
.y15_c00064{bottom:214.334400px;}
.y37_c00064{bottom:238.364250px;}
.y14_c00064{bottom:245.294400px;}
.y36_c00064{bottom:269.414250px;}
.y13_c00064{bottom:277.694400px;}
.y35_c00064{bottom:300.464250px;}
.y12_c00064{bottom:308.654400px;}
.y34_c00064{bottom:331.514250px;}
.y11_c00064{bottom:341.054400px;}
.y33_c00064{bottom:362.564250px;}
.y10_c00064{bottom:372.104400px;}
.y32_c00064{bottom:393.614250px;}
.yf_c00064{bottom:404.504400px;}
.y31_c00064{bottom:424.574250px;}
.ye_c00064{bottom:435.554400px;}
.y30_c00064{bottom:455.624250px;}
.yd_c00064{bottom:466.514400px;}
.y2f_c00064{bottom:517.724250px;}
.yc_c00064{bottom:529.964400px;}
.y2e_c00064{bottom:548.774250px;}
.yb_c00064{bottom:561.014400px;}
.y2d_c00064{bottom:579.824250px;}
.ya_c00064{bottom:592.064400px;}
.y2c_c00064{bottom:610.874250px;}
.y2b_c00064{bottom:641.924250px;}
.y9_c00064{bottom:652.806960px;}
.y2a_c00064{bottom:672.974250px;}
.y8_c00064{bottom:681.250650px;}
.y29_c00064{bottom:734.894250px;}
.y1d_c00064{bottom:762.927000px;}
.y28_c00064{bottom:797.174250px;}
.y27_c00064{bottom:828.224250px;}
.y26_c00064{bottom:859.274250px;}
.y19_c00064{bottom:862.109700px;}
.y1c_c00064{bottom:865.894050px;}
.y1b_c00064{bottom:880.649550px;}
.y18_c00064{bottom:881.909700px;}
.y25_c00064{bottom:890.324250px;}
.y24_c00064{bottom:921.374250px;}
.y23_c00064{bottom:952.424250px;}
.y22_c00064{bottom:983.474250px;}
.y1a_c00064{bottom:983.544750px;}
.y21_c00064{bottom:1014.524250px;}
.y20_c00064{bottom:1045.574250px;}
.y7_c00064{bottom:1046.834400px;}
.y6_c00064{bottom:1077.884400px;}
.y1f_c00064{bottom:1107.674250px;}
.y5_c00064{bottom:1108.934400px;}
.y1e_c00064{bottom:1138.634250px;}
.y4_c00064{bottom:1139.984400px;}
.y3_c00064{bottom:1173.915120px;}
.y2_c00064{bottom:1194.074400px;}
.h9_c00064{height:44.534180px;}
.h2_c00064{height:50.400000px;}
.h3_c00064{height:54.331699px;}
.h8_c00064{height:59.378906px;}
.h7_c00064{height:70.293960px;}
.h6_c00064{height:71.413920px;}
.h5_c00064{height:76.824000px;}
.h4_c00064{height:78.048000px;}
.h0_c00064{height:1262.835000px;}
.h1_c00064{height:1263.000000px;}
.w2_c00064{width:0.000000px;}
.w3_c00064{width:0.066000px;}
.w0_c00064{width:892.914000px;}
.w1_c00064{width:893.250000px;}
.x1_c00064{left:-838.913400px;}
.x2_c00064{left:-765.293400px;}
.x4_c00064{left:-743.963400px;}
.x3_c00064{left:-733.343400px;}
.x5_c00064{left:-722.723400px;}
.xb_c00064{left:-587.602350px;}
.xc_c00064{left:-583.916850px;}
.x7_c00064{left:-487.729650px;}
.x6_c00064{left:-478.459650px;}
.x8_c00064{left:-475.943550px;}
.x9_c00064{left:-367.071000px;}
.xa_c00064{left:-360.861000px;}
.x0_c00064{left:0.000000px;}
.xf_c00064{left:127.618740px;}
.x10_c00064{left:148.950000px;}
.x12_c00064{left:159.570000px;}
.x11_c00064{left:170.190000px;}
.xe_c00064{left:701.730000px;}
.xd_c00064{left:804.366150px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.lsb_c00064{letter-spacing:-0.512000pt;}
.lsf_c00064{letter-spacing:-0.320000pt;}
.lsa_c00064{letter-spacing:-0.256000pt;}
.ls10_c00064{letter-spacing:-0.192000pt;}
.ls8_c00064{letter-spacing:-0.175680pt;}
.lse_c00064{letter-spacing:-0.144000pt;}
.lsc_c00064{letter-spacing:-0.096000pt;}
.ls11_c00064{letter-spacing:-0.064000pt;}
.ls9_c00064{letter-spacing:-0.058560pt;}
.ls5_c00064{letter-spacing:0.000000pt;}
.lsd_c00064{letter-spacing:0.048000pt;}
.ls6_c00064{letter-spacing:0.058560pt;}
.ls0_c00064{letter-spacing:0.064000pt;}
.ls1_c00064{letter-spacing:0.128000pt;}
.ls7_c00064{letter-spacing:0.175680pt;}
.ls3_c00064{letter-spacing:16.640000pt;}
.ls4_c00064{letter-spacing:17.280000pt;}
.ls2_c00064{letter-spacing:40.384000pt;}
.ws12_c00064{word-spacing:-16.128000pt;}
.ws8_c00064{word-spacing:-16.064000pt;}
.ws7_c00064{word-spacing:-16.000000pt;}
.ws13_c00064{word-spacing:-15.808000pt;}
.wse_c00064{word-spacing:-15.488000pt;}
.ws9_c00064{word-spacing:-13.952000pt;}
.wsa_c00064{word-spacing:-10.752000pt;}
.wsb_c00064{word-spacing:-10.704000pt;}
.ws2a_c00064{word-spacing:-0.384000pt;}
.ws14_c00064{word-spacing:-0.128000pt;}
.ws17_c00064{word-spacing:-0.117120pt;}
.ws19_c00064{word-spacing:-0.064000pt;}
.ws2c_c00064{word-spacing:-0.048000pt;}
.ws6_c00064{word-spacing:0.000000pt;}
.ws2d_c00064{word-spacing:0.144000pt;}
.ws39_c00064{word-spacing:0.192000pt;}
.ws4_c00064{word-spacing:0.292800pt;}
.ws34_c00064{word-spacing:0.320000pt;}
.ws44_c00064{word-spacing:0.576000pt;}
.ws31_c00064{word-spacing:0.640000pt;}
.wsf_c00064{word-spacing:0.768000pt;}
.ws15_c00064{word-spacing:0.832000pt;}
.wsd_c00064{word-spacing:0.896000pt;}
.ws18_c00064{word-spacing:0.960000pt;}
.ws45_c00064{word-spacing:1.152000pt;}
.ws27_c00064{word-spacing:1.216000pt;}
.ws2b_c00064{word-spacing:1.280000pt;}
.ws49_c00064{word-spacing:2.496000pt;}
.ws5_c00064{word-spacing:2.688000pt;}
.ws21_c00064{word-spacing:2.816000pt;}
.ws20_c00064{word-spacing:2.880000pt;}
.ws0_c00064{word-spacing:2.986560pt;}
.ws1f_c00064{word-spacing:3.045120pt;}
.ws4a_c00064{word-spacing:3.136000pt;}
.wsc_c00064{word-spacing:3.168096pt;}
.ws2_c00064{word-spacing:3.173952pt;}
.ws16_c00064{word-spacing:3.200000pt;}
.ws3_c00064{word-spacing:3.220800pt;}
.ws1e_c00064{word-spacing:3.337920pt;}
.ws4c_c00064{word-spacing:3.392000pt;}
.ws1_c00064{word-spacing:3.747840pt;}
.ws28_c00064{word-spacing:5.376000pt;}
.ws29_c00064{word-spacing:5.440000pt;}
.ws4d_c00064{word-spacing:5.696000pt;}
.ws36_c00064{word-spacing:5.952000pt;}
.ws37_c00064{word-spacing:6.336000pt;}
.ws35_c00064{word-spacing:6.400000pt;}
.ws26_c00064{word-spacing:6.976000pt;}
.ws25_c00064{word-spacing:7.040000pt;}
.ws3d_c00064{word-spacing:7.232000pt;}
.ws3c_c00064{word-spacing:7.296000pt;}
.ws38_c00064{word-spacing:7.616000pt;}
.ws3e_c00064{word-spacing:7.680000pt;}
.ws1d_c00064{word-spacing:8.000000pt;}
.ws47_c00064{word-spacing:8.832000pt;}
.ws48_c00064{word-spacing:8.896000pt;}
.ws1b_c00064{word-spacing:10.752000pt;}
.ws1c_c00064{word-spacing:10.816000pt;}
.ws1a_c00064{word-spacing:10.880000pt;}
.ws43_c00064{word-spacing:11.392000pt;}
.ws41_c00064{word-spacing:11.456000pt;}
.ws42_c00064{word-spacing:11.520000pt;}
.ws2e_c00064{word-spacing:11.776000pt;}
.ws2f_c00064{word-spacing:15.040000pt;}
.ws3f_c00064{word-spacing:15.936000pt;}
.ws40_c00064{word-spacing:16.000000pt;}
.ws3a_c00064{word-spacing:18.496000pt;}
.ws3b_c00064{word-spacing:18.560000pt;}
.ws11_c00064{word-spacing:18.816000pt;}
.ws33_c00064{word-spacing:19.840000pt;}
.ws30_c00064{word-spacing:20.800000pt;}
.ws22_c00064{word-spacing:21.056000pt;}
.ws32_c00064{word-spacing:21.440000pt;}
.ws46_c00064{word-spacing:24.576000pt;}
.ws4b_c00064{word-spacing:25.920000pt;}
.ws10_c00064{word-spacing:28.800000pt;}
.ws23_c00064{word-spacing:30.720000pt;}
.ws24_c00064{word-spacing:31.296000pt;}
._1_c00064{margin-left:-1.152000pt;}
._0_c00064{width:0.936960pt;}
._4_c00064{width:18.176000pt;}
._2_c00064{width:21.632000pt;}
._3_c00064{width:37.376000pt;}
.fs2_c00064{font-size:48.000000pt;}
.fs1_c00064{font-size:58.560000pt;}
.fs0_c00064{font-size:64.000000pt;}
.y0_c00064{bottom:0.000000pt;}
.y1_c00064{bottom:54.887600pt;}
.y17_c00064{bottom:134.119467pt;}
.y39_c00064{bottom:156.679333pt;}
.y16_c00064{bottom:161.719467pt;}
.y38_c00064{bottom:184.279333pt;}
.y15_c00064{bottom:190.519467pt;}
.y37_c00064{bottom:211.879333pt;}
.y14_c00064{bottom:218.039467pt;}
.y36_c00064{bottom:239.479333pt;}
.y13_c00064{bottom:246.839467pt;}
.y35_c00064{bottom:267.079333pt;}
.y12_c00064{bottom:274.359467pt;}
.y34_c00064{bottom:294.679333pt;}
.y11_c00064{bottom:303.159467pt;}
.y33_c00064{bottom:322.279333pt;}
.y10_c00064{bottom:330.759467pt;}
.y32_c00064{bottom:349.879333pt;}
.yf_c00064{bottom:359.559467pt;}
.y31_c00064{bottom:377.399333pt;}
.ye_c00064{bottom:387.159467pt;}
.y30_c00064{bottom:404.999333pt;}
.yd_c00064{bottom:414.679467pt;}
.y2f_c00064{bottom:460.199333pt;}
.yc_c00064{bottom:471.079467pt;}
.y2e_c00064{bottom:487.799333pt;}
.yb_c00064{bottom:498.679467pt;}
.y2d_c00064{bottom:515.399333pt;}
.ya_c00064{bottom:526.279467pt;}
.y2c_c00064{bottom:542.999333pt;}
.y2b_c00064{bottom:570.599333pt;}
.y9_c00064{bottom:580.272853pt;}
.y2a_c00064{bottom:598.199333pt;}
.y8_c00064{bottom:605.556133pt;}
.y29_c00064{bottom:653.239333pt;}
.y1d_c00064{bottom:678.157333pt;}
.y28_c00064{bottom:708.599333pt;}
.y27_c00064{bottom:736.199333pt;}
.y26_c00064{bottom:763.799333pt;}
.y19_c00064{bottom:766.319733pt;}
.y1c_c00064{bottom:769.683600pt;}
.y1b_c00064{bottom:782.799600pt;}
.y18_c00064{bottom:783.919733pt;}
.y25_c00064{bottom:791.399333pt;}
.y24_c00064{bottom:818.999333pt;}
.y23_c00064{bottom:846.599333pt;}
.y22_c00064{bottom:874.199333pt;}
.y1a_c00064{bottom:874.262000pt;}
.y21_c00064{bottom:901.799333pt;}
.y20_c00064{bottom:929.399333pt;}
.y7_c00064{bottom:930.519467pt;}
.y6_c00064{bottom:958.119467pt;}
.y1f_c00064{bottom:984.599333pt;}
.y5_c00064{bottom:985.719467pt;}
.y1e_c00064{bottom:1012.119333pt;}
.y4_c00064{bottom:1013.319467pt;}
.y3_c00064{bottom:1043.480107pt;}
.y2_c00064{bottom:1061.399467pt;}
.h9_c00064{height:39.585938pt;}
.h2_c00064{height:44.800000pt;}
.h3_c00064{height:48.294844pt;}
.h8_c00064{height:52.781250pt;}
.h7_c00064{height:62.483520pt;}
.h6_c00064{height:63.479040pt;}
.h5_c00064{height:68.288000pt;}
.h4_c00064{height:69.376000pt;}
.h0_c00064{height:1122.520000pt;}
.h1_c00064{height:1122.666667pt;}
.w2_c00064{width:0.000000pt;}
.w3_c00064{width:0.058667pt;}
.w0_c00064{width:793.701333pt;}
.w1_c00064{width:794.000000pt;}
.x1_c00064{left:-745.700800pt;}
.x2_c00064{left:-680.260800pt;}
.x4_c00064{left:-661.300800pt;}
.x3_c00064{left:-651.860800pt;}
.x5_c00064{left:-642.420800pt;}
.xb_c00064{left:-522.313200pt;}
.xc_c00064{left:-519.037200pt;}
.x7_c00064{left:-433.537467pt;}
.x6_c00064{left:-425.297467pt;}
.x8_c00064{left:-423.060933pt;}
.x9_c00064{left:-326.285333pt;}
.xa_c00064{left:-320.765333pt;}
.x0_c00064{left:0.000000pt;}
.xf_c00064{left:113.438880pt;}
.x10_c00064{left:132.400000pt;}
.x12_c00064{left:141.840000pt;}
.x11_c00064{left:151.280000pt;}
.xe_c00064{left:623.760000pt;}
.xd_c00064{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00065;src:url('chunks/assets/font_9facf25192a18de2938504fd.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00065;src:url('chunks/assets/font_09e4368d0afafaf2da86bedf.woff2')format("woff");}.ff3_c00065{font-family:ff3_c00065;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00065;src:url('chunks/assets/font_e7f062fc75c0cd3f5b679632.woff2')format("woff");}.ff4_c00065{font-family:ff4_c00065;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls5_c00065{letter-spacing:-0.576000px;}
.ls7_c00065{letter-spacing:-0.288000px;}
.ls6_c00065{letter-spacing:-0.216000px;}
.ls4_c00065{letter-spacing:-0.072000px;}
.ls3_c00065{letter-spacing:0.000000px;}
.ls0_c00065{letter-spacing:0.072000px;}
.ls1_c00065{letter-spacing:0.144000px;}
.ls2_c00065{letter-spacing:19.800000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00065{word-spacing:-18.072000px;}
.ws4_c00065{word-spacing:-18.000000px;}
.ws1_c00065{word-spacing:-0.360000px;}
.ws17_c00065{word-spacing:-0.144000px;}
.wsa_c00065{word-spacing:-0.131760px;}
.ws13_c00065{word-spacing:-0.072000px;}
.ws9_c00065{word-spacing:0.000000px;}
.ws3_c00065{word-spacing:0.144000px;}
.ws20_c00065{word-spacing:0.216000px;}
.wsb_c00065{word-spacing:0.288000px;}
.wsc_c00065{word-spacing:0.360000px;}
.ws0_c00065{word-spacing:0.648000px;}
.ws1c_c00065{word-spacing:1.080000px;}
.ws1a_c00065{word-spacing:1.368000px;}
.ws30_c00065{word-spacing:1.440000px;}
.ws2b_c00065{word-spacing:1.728000px;}
.ws1b_c00065{word-spacing:1.800000px;}
.ws8_c00065{word-spacing:2.016000px;}
.ws2d_c00065{word-spacing:2.088000px;}
.ws2c_c00065{word-spacing:2.160000px;}
.wsf_c00065{word-spacing:2.376000px;}
.wse_c00065{word-spacing:2.448000px;}
.wsd_c00065{word-spacing:2.520000px;}
.ws1e_c00065{word-spacing:2.736000px;}
.ws2f_c00065{word-spacing:2.808000px;}
.ws2e_c00065{word-spacing:2.880000px;}
.ws14_c00065{word-spacing:3.168000px;}
.ws1d_c00065{word-spacing:3.240000px;}
.ws26_c00065{word-spacing:3.888000px;}
.ws29_c00065{word-spacing:4.320000px;}
.ws28_c00065{word-spacing:4.680000px;}
.ws2a_c00065{word-spacing:4.896000px;}
.ws11_c00065{word-spacing:4.968000px;}
.ws12_c00065{word-spacing:5.040000px;}
.ws1f_c00065{word-spacing:7.200000px;}
.ws24_c00065{word-spacing:8.928000px;}
.ws19_c00065{word-spacing:9.648000px;}
.ws18_c00065{word-spacing:9.720000px;}
.ws21_c00065{word-spacing:11.808000px;}
.ws23_c00065{word-spacing:11.880000px;}
.ws22_c00065{word-spacing:12.168000px;}
.ws27_c00065{word-spacing:12.240000px;}
.ws6_c00065{word-spacing:12.528000px;}
.ws5_c00065{word-spacing:14.328000px;}
.ws25_c00065{word-spacing:14.400000px;}
.ws15_c00065{word-spacing:19.368000px;}
.ws16_c00065{word-spacing:19.440000px;}
.ws2_c00065{word-spacing:20.592000px;}
.ws10_c00065{word-spacing:29.880000px;}
._1_c00065{margin-left:-1.152000px;}
._0_c00065{width:1.054080px;}
._3_c00065{width:9.072000px;}
._2_c00065{width:17.352000px;}
.fc1_c00065{color:rgb(0,0,0);}
.fc0_c00065{color:rgb(35,31,32);}
.fs1_c00065{font-size:65.880000px;}
.fs0_c00065{font-size:72.000000px;}
.y0_c00065{bottom:0.000000px;}
.y1_c00065{bottom:61.748550px;}
.y21_c00065{bottom:115.424400px;}
.y20_c00065{bottom:146.474400px;}
.y1f_c00065{bottom:177.524400px;}
.y1e_c00065{bottom:208.574400px;}
.y1d_c00065{bottom:239.624400px;}
.y1c_c00065{bottom:270.674400px;}
.y1b_c00065{bottom:301.724400px;}
.y1a_c00065{bottom:332.774400px;}
.y19_c00065{bottom:394.874400px;}
.y18_c00065{bottom:425.924400px;}
.y17_c00065{bottom:456.974400px;}
.y16_c00065{bottom:488.024400px;}
.y15_c00065{bottom:519.074400px;}
.y14_c00065{bottom:550.124400px;}
.y13_c00065{bottom:612.224400px;}
.y12_c00065{bottom:643.274400px;}
.y11_c00065{bottom:674.324400px;}
.y10_c00065{bottom:705.374400px;}
.yf_c00065{bottom:767.474400px;}
.ye_c00065{bottom:798.344400px;}
.yd_c00065{bottom:829.394400px;}
.yc_c00065{bottom:860.534400px;}
.yb_c00065{bottom:891.584400px;}
.ya_c00065{bottom:922.634400px;}
.y9_c00065{bottom:953.684400px;}
.y8_c00065{bottom:1015.784400px;}
.y7_c00065{bottom:1046.834400px;}
.y6_c00065{bottom:1077.884400px;}
.y5_c00065{bottom:1108.934400px;}
.y4_c00065{bottom:1139.984400px;}
.y3_c00065{bottom:1173.915120px;}
.y2_c00065{bottom:1194.074400px;}
.h2_c00065{height:50.400000px;}
.h3_c00065{height:54.331699px;}
.h4_c00065{height:76.824000px;}
.h5_c00065{height:78.048000px;}
.h0_c00065{height:1262.835000px;}
.h1_c00065{height:1263.000000px;}
.w0_c00065{width:892.914000px;}
.w1_c00065{width:893.250000px;}
.x0_c00065{left:0.000000px;}
.x1_c00065{left:54.000000px;}
.x2_c00065{left:127.620000px;}
.x3_c00065{left:159.570000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls5_c00065{letter-spacing:-0.512000pt;}
.ls7_c00065{letter-spacing:-0.256000pt;}
.ls6_c00065{letter-spacing:-0.192000pt;}
.ls4_c00065{letter-spacing:-0.064000pt;}
.ls3_c00065{letter-spacing:0.000000pt;}
.ls0_c00065{letter-spacing:0.064000pt;}
.ls1_c00065{letter-spacing:0.128000pt;}
.ls2_c00065{letter-spacing:17.600000pt;}
.ws7_c00065{word-spacing:-16.064000pt;}
.ws4_c00065{word-spacing:-16.000000pt;}
.ws1_c00065{word-spacing:-0.320000pt;}
.ws17_c00065{word-spacing:-0.128000pt;}
.wsa_c00065{word-spacing:-0.117120pt;}
.ws13_c00065{word-spacing:-0.064000pt;}
.ws9_c00065{word-spacing:0.000000pt;}
.ws3_c00065{word-spacing:0.128000pt;}
.ws20_c00065{word-spacing:0.192000pt;}
.wsb_c00065{word-spacing:0.256000pt;}
.wsc_c00065{word-spacing:0.320000pt;}
.ws0_c00065{word-spacing:0.576000pt;}
.ws1c_c00065{word-spacing:0.960000pt;}
.ws1a_c00065{word-spacing:1.216000pt;}
.ws30_c00065{word-spacing:1.280000pt;}
.ws2b_c00065{word-spacing:1.536000pt;}
.ws1b_c00065{word-spacing:1.600000pt;}
.ws8_c00065{word-spacing:1.792000pt;}
.ws2d_c00065{word-spacing:1.856000pt;}
.ws2c_c00065{word-spacing:1.920000pt;}
.wsf_c00065{word-spacing:2.112000pt;}
.wse_c00065{word-spacing:2.176000pt;}
.wsd_c00065{word-spacing:2.240000pt;}
.ws1e_c00065{word-spacing:2.432000pt;}
.ws2f_c00065{word-spacing:2.496000pt;}
.ws2e_c00065{word-spacing:2.560000pt;}
.ws14_c00065{word-spacing:2.816000pt;}
.ws1d_c00065{word-spacing:2.880000pt;}
.ws26_c00065{word-spacing:3.456000pt;}
.ws29_c00065{word-spacing:3.840000pt;}
.ws28_c00065{word-spacing:4.160000pt;}
.ws2a_c00065{word-spacing:4.352000pt;}
.ws11_c00065{word-spacing:4.416000pt;}
.ws12_c00065{word-spacing:4.480000pt;}
.ws1f_c00065{word-spacing:6.400000pt;}
.ws24_c00065{word-spacing:7.936000pt;}
.ws19_c00065{word-spacing:8.576000pt;}
.ws18_c00065{word-spacing:8.640000pt;}
.ws21_c00065{word-spacing:10.496000pt;}
.ws23_c00065{word-spacing:10.560000pt;}
.ws22_c00065{word-spacing:10.816000pt;}
.ws27_c00065{word-spacing:10.880000pt;}
.ws6_c00065{word-spacing:11.136000pt;}
.ws5_c00065{word-spacing:12.736000pt;}
.ws25_c00065{word-spacing:12.800000pt;}
.ws15_c00065{word-spacing:17.216000pt;}
.ws16_c00065{word-spacing:17.280000pt;}
.ws2_c00065{word-spacing:18.304000pt;}
.ws10_c00065{word-spacing:26.560000pt;}
._1_c00065{margin-left:-1.024000pt;}
._0_c00065{width:0.936960pt;}
._3_c00065{width:8.064000pt;}
._2_c00065{width:15.424000pt;}
.fs1_c00065{font-size:58.560000pt;}
.fs0_c00065{font-size:64.000000pt;}
.y0_c00065{bottom:0.000000pt;}
.y1_c00065{bottom:54.887600pt;}
.y21_c00065{bottom:102.599467pt;}
.y20_c00065{bottom:130.199467pt;}
.y1f_c00065{bottom:157.799467pt;}
.y1e_c00065{bottom:185.399467pt;}
.y1d_c00065{bottom:212.999467pt;}
.y1c_c00065{bottom:240.599467pt;}
.y1b_c00065{bottom:268.199467pt;}
.y1a_c00065{bottom:295.799467pt;}
.y19_c00065{bottom:350.999467pt;}
.y18_c00065{bottom:378.599467pt;}
.y17_c00065{bottom:406.199467pt;}
.y16_c00065{bottom:433.799467pt;}
.y15_c00065{bottom:461.399467pt;}
.y14_c00065{bottom:488.999467pt;}
.y13_c00065{bottom:544.199467pt;}
.y12_c00065{bottom:571.799467pt;}
.y11_c00065{bottom:599.399467pt;}
.y10_c00065{bottom:626.999467pt;}
.yf_c00065{bottom:682.199467pt;}
.ye_c00065{bottom:709.639467pt;}
.yd_c00065{bottom:737.239467pt;}
.yc_c00065{bottom:764.919467pt;}
.yb_c00065{bottom:792.519467pt;}
.ya_c00065{bottom:820.119467pt;}
.y9_c00065{bottom:847.719467pt;}
.y8_c00065{bottom:902.919467pt;}
.y7_c00065{bottom:930.519467pt;}
.y6_c00065{bottom:958.119467pt;}
.y5_c00065{bottom:985.719467pt;}
.y4_c00065{bottom:1013.319467pt;}
.y3_c00065{bottom:1043.480107pt;}
.y2_c00065{bottom:1061.399467pt;}
.h2_c00065{height:44.800000pt;}
.h3_c00065{height:48.294844pt;}
.h4_c00065{height:68.288000pt;}
.h5_c00065{height:69.376000pt;}
.h0_c00065{height:1122.520000pt;}
.h1_c00065{height:1122.666667pt;}
.w0_c00065{width:793.701333pt;}
.w1_c00065{width:794.000000pt;}
.x0_c00065{left:0.000000pt;}
.x1_c00065{left:48.000000pt;}
.x2_c00065{left:113.440000pt;}
.x3_c00065{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00066;src:url('chunks/assets/font_5f4568e6ff485479f6e227c1.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00066;src:url('chunks/assets/font_2e384338ec7e62426603ecfa.woff2')format("woff");}.ff3_c00066{font-family:ff3_c00066;line-height:1.575000;font-style:normal;font-weight:normal;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_f96a286548c756f2dffa4220.woff2')format("woff");}.ff4_c00066{font-family:ff4_c00066;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00066;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00066{font-family:ff5_c00066;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00066;src:url('chunks/assets/font_69883ef8bb28e360fd32487a.woff2')format("woff");}.ff6_c00066{font-family:ff6_c00066;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00066;src:url('chunks/assets/font_9eb43001cdf0a293eee928dc.woff2')format("woff");}.ff7_c00066{font-family:ff7_c00066;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00066;src:url('chunks/assets/font_d21a16a2c1bd94b28550fb95.woff2')format("woff");}.ff8_c00066{font-family:ff8_c00066;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb_c00066{letter-spacing:-0.576000px;}
.lsd_c00066{letter-spacing:-0.288000px;}
.lsc_c00066{letter-spacing:-0.216000px;}
.lsa_c00066{letter-spacing:-0.072000px;}
.ls9_c00066{letter-spacing:0.000000px;}
.ls0_c00066{letter-spacing:0.072000px;}
.ls1_c00066{letter-spacing:0.144000px;}
.ls3_c00066{letter-spacing:18.720000px;}
.ls5_c00066{letter-spacing:19.080000px;}
.ls4_c00066{letter-spacing:19.440000px;}
.ls2_c00066{letter-spacing:19.800000px;}
.ls8_c00066{letter-spacing:29.160000px;}
.ls7_c00066{letter-spacing:39.607200px;}
.ls6_c00066{letter-spacing:41.040000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00066{word-spacing:-18.072000px;}
.ws4_c00066{word-spacing:-18.000000px;}
.ws9_c00066{word-spacing:-17.784000px;}
.ws1_c00066{word-spacing:-0.360000px;}
.ws1a_c00066{word-spacing:-0.144000px;}
.wsd_c00066{word-spacing:-0.131760px;}
.ws16_c00066{word-spacing:-0.072000px;}
.wsc_c00066{word-spacing:0.000000px;}
.ws45_c00066{word-spacing:0.072000px;}
.ws3_c00066{word-spacing:0.144000px;}
.ws23_c00066{word-spacing:0.216000px;}
.wse_c00066{word-spacing:0.288000px;}
.wsf_c00066{word-spacing:0.360000px;}
.ws0_c00066{word-spacing:0.648000px;}
.ws33_c00066{word-spacing:0.720000px;}
.ws3b_c00066{word-spacing:1.008000px;}
.ws1f_c00066{word-spacing:1.080000px;}
.ws1d_c00066{word-spacing:1.368000px;}
.ws32_c00066{word-spacing:1.440000px;}
.ws2e_c00066{word-spacing:1.728000px;}
.ws1e_c00066{word-spacing:1.800000px;}
.ws8_c00066{word-spacing:2.016000px;}
.ws2f_c00066{word-spacing:2.088000px;}
.wsa_c00066{word-spacing:2.160000px;}
.ws12_c00066{word-spacing:2.376000px;}
.ws11_c00066{word-spacing:2.448000px;}
.ws10_c00066{word-spacing:2.520000px;}
.ws21_c00066{word-spacing:2.736000px;}
.ws31_c00066{word-spacing:2.808000px;}
.ws30_c00066{word-spacing:2.880000px;}
.ws17_c00066{word-spacing:3.168000px;}
.ws20_c00066{word-spacing:3.240000px;}
.ws29_c00066{word-spacing:3.888000px;}
.ws47_c00066{word-spacing:4.248000px;}
.ws2c_c00066{word-spacing:4.320000px;}
.ws35_c00066{word-spacing:4.608000px;}
.ws2b_c00066{word-spacing:4.680000px;}
.ws2d_c00066{word-spacing:4.896000px;}
.ws14_c00066{word-spacing:4.968000px;}
.ws15_c00066{word-spacing:5.040000px;}
.ws3d_c00066{word-spacing:5.760000px;}
.ws3c_c00066{word-spacing:6.048000px;}
.ws3e_c00066{word-spacing:6.120000px;}
.ws40_c00066{word-spacing:6.768000px;}
.ws3f_c00066{word-spacing:6.840000px;}
.ws22_c00066{word-spacing:7.200000px;}
.ws3a_c00066{word-spacing:8.208000px;}
.ws27_c00066{word-spacing:8.928000px;}
.ws1c_c00066{word-spacing:9.648000px;}
.ws1b_c00066{word-spacing:9.720000px;}
.ws39_c00066{word-spacing:10.368000px;}
.wsb_c00066{word-spacing:11.160000px;}
.ws46_c00066{word-spacing:11.520000px;}
.ws24_c00066{word-spacing:11.808000px;}
.ws26_c00066{word-spacing:11.880000px;}
.ws25_c00066{word-spacing:12.168000px;}
.ws2a_c00066{word-spacing:12.240000px;}
.ws6_c00066{word-spacing:12.528000px;}
.ws37_c00066{word-spacing:13.248000px;}
.ws38_c00066{word-spacing:13.320000px;}
.ws5_c00066{word-spacing:14.328000px;}
.ws28_c00066{word-spacing:14.400000px;}
.ws18_c00066{word-spacing:19.368000px;}
.ws19_c00066{word-spacing:19.440000px;}
.ws2_c00066{word-spacing:20.592000px;}
.ws43_c00066{word-spacing:21.888000px;}
.ws44_c00066{word-spacing:21.960000px;}
.ws36_c00066{word-spacing:22.248000px;}
.ws34_c00066{word-spacing:22.680000px;}
.ws42_c00066{word-spacing:22.968000px;}
.ws41_c00066{word-spacing:23.040000px;}
.ws13_c00066{word-spacing:29.880000px;}
._1_c00066{margin-left:-1.152000px;}
._0_c00066{width:1.054080px;}
._3_c00066{width:9.072000px;}
._5_c00066{width:11.664000px;}
._2_c00066{width:17.352000px;}
._4_c00066{width:22.608000px;}
.fc2_c00066{color:transparent;}
.fc1_c00066{color:rgb(0,0,0);}
.fc0_c00066{color:rgb(35,31,32);}
.fs1_c00066{font-size:65.880000px;}
.fs0_c00066{font-size:72.000000px;}
.y0_c00066{bottom:0.000000px;}
.y1_c00066{bottom:61.748550px;}
.y21_c00066{bottom:115.424400px;}
.y20_c00066{bottom:146.474400px;}
.y1f_c00066{bottom:177.524400px;}
.y1e_c00066{bottom:208.574400px;}
.y1d_c00066{bottom:239.624400px;}
.y1c_c00066{bottom:270.674400px;}
.y1b_c00066{bottom:301.724400px;}
.y1a_c00066{bottom:332.774400px;}
.y27_c00066{bottom:363.824400px;}
.y19_c00066{bottom:394.874400px;}
.y18_c00066{bottom:425.924400px;}
.y17_c00066{bottom:456.974400px;}
.y16_c00066{bottom:488.024400px;}
.y15_c00066{bottom:519.074400px;}
.y14_c00066{bottom:550.124400px;}
.y26_c00066{bottom:581.174400px;}
.y13_c00066{bottom:612.224400px;}
.y12_c00066{bottom:643.274400px;}
.y11_c00066{bottom:674.324400px;}
.y10_c00066{bottom:705.374400px;}
.y25_c00066{bottom:736.424400px;}
.yf_c00066{bottom:767.474400px;}
.ye_c00066{bottom:798.344400px;}
.y24_c00066{bottom:798.434400px;}
.yd_c00066{bottom:829.394400px;}
.y23_c00066{bottom:829.484400px;}
.yc_c00066{bottom:860.534400px;}
.yb_c00066{bottom:891.584400px;}
.ya_c00066{bottom:922.634400px;}
.y9_c00066{bottom:953.684400px;}
.y22_c00066{bottom:984.734400px;}
.y8_c00066{bottom:1015.784400px;}
.y7_c00066{bottom:1046.834400px;}
.y6_c00066{bottom:1077.884400px;}
.y5_c00066{bottom:1108.934400px;}
.y4_c00066{bottom:1139.984400px;}
.y3_c00066{bottom:1173.915120px;}
.y2_c00066{bottom:1194.074400px;}
.h2_c00066{height:50.400000px;}
.h3_c00066{height:54.331699px;}
.h4_c00066{height:76.824000px;}
.h5_c00066{height:78.048000px;}
.h0_c00066{height:1262.835000px;}
.h1_c00066{height:1263.000000px;}
.w2_c00066{width:0.000000px;}
.w3_c00066{width:0.066000px;}
.w0_c00066{width:892.914000px;}
.w1_c00066{width:893.250000px;}
.x1_c00066{left:-838.913400px;}
.x2_c00066{left:-765.293400px;}
.x3_c00066{left:-733.343400px;}
.x0_c00066{left:0.000000px;}
.x6_c00066{left:127.618740px;}
.x7_c00066{left:159.570000px;}
.x5_c00066{left:701.730000px;}
.x4_c00066{left:804.366150px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.lsb_c00066{letter-spacing:-0.512000pt;}
.lsd_c00066{letter-spacing:-0.256000pt;}
.lsc_c00066{letter-spacing:-0.192000pt;}
.lsa_c00066{letter-spacing:-0.064000pt;}
.ls9_c00066{letter-spacing:0.000000pt;}
.ls0_c00066{letter-spacing:0.064000pt;}
.ls1_c00066{letter-spacing:0.128000pt;}
.ls3_c00066{letter-spacing:16.640000pt;}
.ls5_c00066{letter-spacing:16.960000pt;}
.ls4_c00066{letter-spacing:17.280000pt;}
.ls2_c00066{letter-spacing:17.600000pt;}
.ls8_c00066{letter-spacing:25.920000pt;}
.ls7_c00066{letter-spacing:35.206400pt;}
.ls6_c00066{letter-spacing:36.480000pt;}
.ws7_c00066{word-spacing:-16.064000pt;}
.ws4_c00066{word-spacing:-16.000000pt;}
.ws9_c00066{word-spacing:-15.808000pt;}
.ws1_c00066{word-spacing:-0.320000pt;}
.ws1a_c00066{word-spacing:-0.128000pt;}
.wsd_c00066{word-spacing:-0.117120pt;}
.ws16_c00066{word-spacing:-0.064000pt;}
.wsc_c00066{word-spacing:0.000000pt;}
.ws45_c00066{word-spacing:0.064000pt;}
.ws3_c00066{word-spacing:0.128000pt;}
.ws23_c00066{word-spacing:0.192000pt;}
.wse_c00066{word-spacing:0.256000pt;}
.wsf_c00066{word-spacing:0.320000pt;}
.ws0_c00066{word-spacing:0.576000pt;}
.ws33_c00066{word-spacing:0.640000pt;}
.ws3b_c00066{word-spacing:0.896000pt;}
.ws1f_c00066{word-spacing:0.960000pt;}
.ws1d_c00066{word-spacing:1.216000pt;}
.ws32_c00066{word-spacing:1.280000pt;}
.ws2e_c00066{word-spacing:1.536000pt;}
.ws1e_c00066{word-spacing:1.600000pt;}
.ws8_c00066{word-spacing:1.792000pt;}
.ws2f_c00066{word-spacing:1.856000pt;}
.wsa_c00066{word-spacing:1.920000pt;}
.ws12_c00066{word-spacing:2.112000pt;}
.ws11_c00066{word-spacing:2.176000pt;}
.ws10_c00066{word-spacing:2.240000pt;}
.ws21_c00066{word-spacing:2.432000pt;}
.ws31_c00066{word-spacing:2.496000pt;}
.ws30_c00066{word-spacing:2.560000pt;}
.ws17_c00066{word-spacing:2.816000pt;}
.ws20_c00066{word-spacing:2.880000pt;}
.ws29_c00066{word-spacing:3.456000pt;}
.ws47_c00066{word-spacing:3.776000pt;}
.ws2c_c00066{word-spacing:3.840000pt;}
.ws35_c00066{word-spacing:4.096000pt;}
.ws2b_c00066{word-spacing:4.160000pt;}
.ws2d_c00066{word-spacing:4.352000pt;}
.ws14_c00066{word-spacing:4.416000pt;}
.ws15_c00066{word-spacing:4.480000pt;}
.ws3d_c00066{word-spacing:5.120000pt;}
.ws3c_c00066{word-spacing:5.376000pt;}
.ws3e_c00066{word-spacing:5.440000pt;}
.ws40_c00066{word-spacing:6.016000pt;}
.ws3f_c00066{word-spacing:6.080000pt;}
.ws22_c00066{word-spacing:6.400000pt;}
.ws3a_c00066{word-spacing:7.296000pt;}
.ws27_c00066{word-spacing:7.936000pt;}
.ws1c_c00066{word-spacing:8.576000pt;}
.ws1b_c00066{word-spacing:8.640000pt;}
.ws39_c00066{word-spacing:9.216000pt;}
.wsb_c00066{word-spacing:9.920000pt;}
.ws46_c00066{word-spacing:10.240000pt;}
.ws24_c00066{word-spacing:10.496000pt;}
.ws26_c00066{word-spacing:10.560000pt;}
.ws25_c00066{word-spacing:10.816000pt;}
.ws2a_c00066{word-spacing:10.880000pt;}
.ws6_c00066{word-spacing:11.136000pt;}
.ws37_c00066{word-spacing:11.776000pt;}
.ws38_c00066{word-spacing:11.840000pt;}
.ws5_c00066{word-spacing:12.736000pt;}
.ws28_c00066{word-spacing:12.800000pt;}
.ws18_c00066{word-spacing:17.216000pt;}
.ws19_c00066{word-spacing:17.280000pt;}
.ws2_c00066{word-spacing:18.304000pt;}
.ws43_c00066{word-spacing:19.456000pt;}
.ws44_c00066{word-spacing:19.520000pt;}
.ws36_c00066{word-spacing:19.776000pt;}
.ws34_c00066{word-spacing:20.160000pt;}
.ws42_c00066{word-spacing:20.416000pt;}
.ws41_c00066{word-spacing:20.480000pt;}
.ws13_c00066{word-spacing:26.560000pt;}
._1_c00066{margin-left:-1.024000pt;}
._0_c00066{width:0.936960pt;}
._3_c00066{width:8.064000pt;}
._5_c00066{width:10.368000pt;}
._2_c00066{width:15.424000pt;}
._4_c00066{width:20.096000pt;}
.fs1_c00066{font-size:58.560000pt;}
.fs0_c00066{font-size:64.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y1_c00066{bottom:54.887600pt;}
.y21_c00066{bottom:102.599467pt;}
.y20_c00066{bottom:130.199467pt;}
.y1f_c00066{bottom:157.799467pt;}
.y1e_c00066{bottom:185.399467pt;}
.y1d_c00066{bottom:212.999467pt;}
.y1c_c00066{bottom:240.599467pt;}
.y1b_c00066{bottom:268.199467pt;}
.y1a_c00066{bottom:295.799467pt;}
.y27_c00066{bottom:323.399467pt;}
.y19_c00066{bottom:350.999467pt;}
.y18_c00066{bottom:378.599467pt;}
.y17_c00066{bottom:406.199467pt;}
.y16_c00066{bottom:433.799467pt;}
.y15_c00066{bottom:461.399467pt;}
.y14_c00066{bottom:488.999467pt;}
.y26_c00066{bottom:516.599467pt;}
.y13_c00066{bottom:544.199467pt;}
.y12_c00066{bottom:571.799467pt;}
.y11_c00066{bottom:599.399467pt;}
.y10_c00066{bottom:626.999467pt;}
.y25_c00066{bottom:654.599467pt;}
.yf_c00066{bottom:682.199467pt;}
.ye_c00066{bottom:709.639467pt;}
.y24_c00066{bottom:709.719467pt;}
.yd_c00066{bottom:737.239467pt;}
.y23_c00066{bottom:737.319467pt;}
.yc_c00066{bottom:764.919467pt;}
.yb_c00066{bottom:792.519467pt;}
.ya_c00066{bottom:820.119467pt;}
.y9_c00066{bottom:847.719467pt;}
.y22_c00066{bottom:875.319467pt;}
.y8_c00066{bottom:902.919467pt;}
.y7_c00066{bottom:930.519467pt;}
.y6_c00066{bottom:958.119467pt;}
.y5_c00066{bottom:985.719467pt;}
.y4_c00066{bottom:1013.319467pt;}
.y3_c00066{bottom:1043.480107pt;}
.y2_c00066{bottom:1061.399467pt;}
.h2_c00066{height:44.800000pt;}
.h3_c00066{height:48.294844pt;}
.h4_c00066{height:68.288000pt;}
.h5_c00066{height:69.376000pt;}
.h0_c00066{height:1122.520000pt;}
.h1_c00066{height:1122.666667pt;}
.w2_c00066{width:0.000000pt;}
.w3_c00066{width:0.058667pt;}
.w0_c00066{width:793.701333pt;}
.w1_c00066{width:794.000000pt;}
.x1_c00066{left:-745.700800pt;}
.x2_c00066{left:-680.260800pt;}
.x3_c00066{left:-651.860800pt;}
.x0_c00066{left:0.000000pt;}
.x6_c00066{left:113.438880pt;}
.x7_c00066{left:141.840000pt;}
.x5_c00066{left:623.760000pt;}
.x4_c00066{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00067;src:url('chunks/assets/font_abdd3f7171069680cbff3201.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00067;src:url('chunks/assets/font_1b47d6ea4b1f3a3d19e1010d.woff2')format("woff");}.ff3_c00067{font-family:ff3_c00067;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00067;src:url('chunks/assets/font_a164e66ab9667b03af6b963c.woff2')format("woff");}.ff4_c00067{font-family:ff4_c00067;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls6_c00067{letter-spacing:-0.576000px;}
.ls7_c00067{letter-spacing:-0.288000px;}
.ls5_c00067{letter-spacing:-0.072000px;}
.ls4_c00067{letter-spacing:0.000000px;}
.ls1_c00067{letter-spacing:0.072000px;}
.ls3_c00067{letter-spacing:0.144000px;}
.ls0_c00067{letter-spacing:18.432000px;}
.ls2_c00067{letter-spacing:27.381600px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00067{word-spacing:-18.144000px;}
.ws6_c00067{word-spacing:-18.072000px;}
.ws3_c00067{word-spacing:-18.000000px;}
.ws5_c00067{word-spacing:-17.424000px;}
.ws10_c00067{word-spacing:-0.131760px;}
.ws14_c00067{word-spacing:-0.072000px;}
.wsf_c00067{word-spacing:0.000000px;}
.ws11_c00067{word-spacing:0.072000px;}
.ws12_c00067{word-spacing:0.360000px;}
.ws1e_c00067{word-spacing:0.576000px;}
.ws1f_c00067{word-spacing:0.648000px;}
.ws1d_c00067{word-spacing:0.720000px;}
.ws17_c00067{word-spacing:1.656000px;}
.ws27_c00067{word-spacing:1.728000px;}
.ws16_c00067{word-spacing:2.160000px;}
.ws29_c00067{word-spacing:2.448000px;}
.ws2c_c00067{word-spacing:3.096000px;}
.ws28_c00067{word-spacing:3.528000px;}
.wsb_c00067{word-spacing:3.600000px;}
.ws2d_c00067{word-spacing:4.320000px;}
.wsc_c00067{word-spacing:4.392000px;}
.ws1a_c00067{word-spacing:5.040000px;}
.wse_c00067{word-spacing:5.616000px;}
.ws30_c00067{word-spacing:6.120000px;}
.ws1c_c00067{word-spacing:9.288000px;}
.ws4_c00067{word-spacing:9.432000px;}
.ws22_c00067{word-spacing:9.576000px;}
.ws21_c00067{word-spacing:9.648000px;}
.ws20_c00067{word-spacing:9.720000px;}
.ws2f_c00067{word-spacing:10.800000px;}
.ws13_c00067{word-spacing:11.088000px;}
.ws2e_c00067{word-spacing:11.160000px;}
.wsd_c00067{word-spacing:11.304000px;}
.ws1b_c00067{word-spacing:11.448000px;}
.ws2b_c00067{word-spacing:14.400000px;}
.ws25_c00067{word-spacing:15.768000px;}
.ws26_c00067{word-spacing:15.840000px;}
.ws0_c00067{word-spacing:18.288000px;}
.ws2a_c00067{word-spacing:22.320000px;}
.ws15_c00067{word-spacing:24.048000px;}
.ws23_c00067{word-spacing:25.560000px;}
.ws18_c00067{word-spacing:26.568000px;}
.ws2_c00067{word-spacing:26.589600px;}
.ws19_c00067{word-spacing:26.640000px;}
.ws9_c00067{word-spacing:32.551200px;}
.ws24_c00067{word-spacing:33.120000px;}
.ws8_c00067{word-spacing:33.192000px;}
.ws7_c00067{word-spacing:33.696000px;}
.ws1_c00067{word-spacing:42.048000px;}
._1_c00067{margin-left:-1.022400px;}
._0_c00067{width:1.054080px;}
._3_c00067{width:4.262400px;}
._2_c00067{width:24.264000px;}
.fc1_c00067{color:rgb(0,0,0);}
.fc0_c00067{color:rgb(35,31,32);}
.fs1_c00067{font-size:65.880000px;}
.fs0_c00067{font-size:72.000000px;}
.y0_c00067{bottom:0.000000px;}
.y1_c00067{bottom:61.748550px;}
.y21_c00067{bottom:115.424400px;}
.y20_c00067{bottom:146.474400px;}
.y1f_c00067{bottom:177.524400px;}
.y1e_c00067{bottom:208.574400px;}
.y1d_c00067{bottom:239.624400px;}
.y1c_c00067{bottom:270.674400px;}
.y1b_c00067{bottom:301.724400px;}
.y1a_c00067{bottom:332.774400px;}
.y19_c00067{bottom:363.824400px;}
.y18_c00067{bottom:425.924400px;}
.y17_c00067{bottom:456.974400px;}
.y16_c00067{bottom:488.024400px;}
.y15_c00067{bottom:519.074400px;}
.y14_c00067{bottom:550.124400px;}
.y13_c00067{bottom:581.174400px;}
.y12_c00067{bottom:612.224400px;}
.y11_c00067{bottom:643.274400px;}
.y10_c00067{bottom:674.324400px;}
.yf_c00067{bottom:736.424400px;}
.ye_c00067{bottom:767.474400px;}
.yd_c00067{bottom:798.434400px;}
.yc_c00067{bottom:829.484400px;}
.yb_c00067{bottom:860.534400px;}
.ya_c00067{bottom:891.584400px;}
.y9_c00067{bottom:953.684400px;}
.y8_c00067{bottom:984.734400px;}
.y7_c00067{bottom:1015.784400px;}
.y6_c00067{bottom:1077.884400px;}
.y5_c00067{bottom:1108.934400px;}
.y4_c00067{bottom:1139.984400px;}
.y3_c00067{bottom:1173.915120px;}
.y2_c00067{bottom:1194.074400px;}
.h2_c00067{height:50.400000px;}
.h3_c00067{height:54.331699px;}
.h5_c00067{height:76.824000px;}
.h4_c00067{height:78.048000px;}
.h0_c00067{height:1262.835000px;}
.h1_c00067{height:1263.000000px;}
.w0_c00067{width:892.914000px;}
.w1_c00067{width:893.250000px;}
.x0_c00067{left:0.000000px;}
.x1_c00067{left:54.000000px;}
.x2_c00067{left:127.620000px;}
.x3_c00067{left:159.570000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls6_c00067{letter-spacing:-0.512000pt;}
.ls7_c00067{letter-spacing:-0.256000pt;}
.ls5_c00067{letter-spacing:-0.064000pt;}
.ls4_c00067{letter-spacing:0.000000pt;}
.ls1_c00067{letter-spacing:0.064000pt;}
.ls3_c00067{letter-spacing:0.128000pt;}
.ls0_c00067{letter-spacing:16.384000pt;}
.ls2_c00067{letter-spacing:24.339200pt;}
.wsa_c00067{word-spacing:-16.128000pt;}
.ws6_c00067{word-spacing:-16.064000pt;}
.ws3_c00067{word-spacing:-16.000000pt;}
.ws5_c00067{word-spacing:-15.488000pt;}
.ws10_c00067{word-spacing:-0.117120pt;}
.ws14_c00067{word-spacing:-0.064000pt;}
.wsf_c00067{word-spacing:0.000000pt;}
.ws11_c00067{word-spacing:0.064000pt;}
.ws12_c00067{word-spacing:0.320000pt;}
.ws1e_c00067{word-spacing:0.512000pt;}
.ws1f_c00067{word-spacing:0.576000pt;}
.ws1d_c00067{word-spacing:0.640000pt;}
.ws17_c00067{word-spacing:1.472000pt;}
.ws27_c00067{word-spacing:1.536000pt;}
.ws16_c00067{word-spacing:1.920000pt;}
.ws29_c00067{word-spacing:2.176000pt;}
.ws2c_c00067{word-spacing:2.752000pt;}
.ws28_c00067{word-spacing:3.136000pt;}
.wsb_c00067{word-spacing:3.200000pt;}
.ws2d_c00067{word-spacing:3.840000pt;}
.wsc_c00067{word-spacing:3.904000pt;}
.ws1a_c00067{word-spacing:4.480000pt;}
.wse_c00067{word-spacing:4.992000pt;}
.ws30_c00067{word-spacing:5.440000pt;}
.ws1c_c00067{word-spacing:8.256000pt;}
.ws4_c00067{word-spacing:8.384000pt;}
.ws22_c00067{word-spacing:8.512000pt;}
.ws21_c00067{word-spacing:8.576000pt;}
.ws20_c00067{word-spacing:8.640000pt;}
.ws2f_c00067{word-spacing:9.600000pt;}
.ws13_c00067{word-spacing:9.856000pt;}
.ws2e_c00067{word-spacing:9.920000pt;}
.wsd_c00067{word-spacing:10.048000pt;}
.ws1b_c00067{word-spacing:10.176000pt;}
.ws2b_c00067{word-spacing:12.800000pt;}
.ws25_c00067{word-spacing:14.016000pt;}
.ws26_c00067{word-spacing:14.080000pt;}
.ws0_c00067{word-spacing:16.256000pt;}
.ws2a_c00067{word-spacing:19.840000pt;}
.ws15_c00067{word-spacing:21.376000pt;}
.ws23_c00067{word-spacing:22.720000pt;}
.ws18_c00067{word-spacing:23.616000pt;}
.ws2_c00067{word-spacing:23.635200pt;}
.ws19_c00067{word-spacing:23.680000pt;}
.ws9_c00067{word-spacing:28.934400pt;}
.ws24_c00067{word-spacing:29.440000pt;}
.ws8_c00067{word-spacing:29.504000pt;}
.ws7_c00067{word-spacing:29.952000pt;}
.ws1_c00067{word-spacing:37.376000pt;}
._1_c00067{margin-left:-0.908800pt;}
._0_c00067{width:0.936960pt;}
._3_c00067{width:3.788800pt;}
._2_c00067{width:21.568000pt;}
.fs1_c00067{font-size:58.560000pt;}
.fs0_c00067{font-size:64.000000pt;}
.y0_c00067{bottom:0.000000pt;}
.y1_c00067{bottom:54.887600pt;}
.y21_c00067{bottom:102.599467pt;}
.y20_c00067{bottom:130.199467pt;}
.y1f_c00067{bottom:157.799467pt;}
.y1e_c00067{bottom:185.399467pt;}
.y1d_c00067{bottom:212.999467pt;}
.y1c_c00067{bottom:240.599467pt;}
.y1b_c00067{bottom:268.199467pt;}
.y1a_c00067{bottom:295.799467pt;}
.y19_c00067{bottom:323.399467pt;}
.y18_c00067{bottom:378.599467pt;}
.y17_c00067{bottom:406.199467pt;}
.y16_c00067{bottom:433.799467pt;}
.y15_c00067{bottom:461.399467pt;}
.y14_c00067{bottom:488.999467pt;}
.y13_c00067{bottom:516.599467pt;}
.y12_c00067{bottom:544.199467pt;}
.y11_c00067{bottom:571.799467pt;}
.y10_c00067{bottom:599.399467pt;}
.yf_c00067{bottom:654.599467pt;}
.ye_c00067{bottom:682.199467pt;}
.yd_c00067{bottom:709.719467pt;}
.yc_c00067{bottom:737.319467pt;}
.yb_c00067{bottom:764.919467pt;}
.ya_c00067{bottom:792.519467pt;}
.y9_c00067{bottom:847.719467pt;}
.y8_c00067{bottom:875.319467pt;}
.y7_c00067{bottom:902.919467pt;}
.y6_c00067{bottom:958.119467pt;}
.y5_c00067{bottom:985.719467pt;}
.y4_c00067{bottom:1013.319467pt;}
.y3_c00067{bottom:1043.480107pt;}
.y2_c00067{bottom:1061.399467pt;}
.h2_c00067{height:44.800000pt;}
.h3_c00067{height:48.294844pt;}
.h5_c00067{height:68.288000pt;}
.h4_c00067{height:69.376000pt;}
.h0_c00067{height:1122.520000pt;}
.h1_c00067{height:1122.666667pt;}
.w0_c00067{width:793.701333pt;}
.w1_c00067{width:794.000000pt;}
.x0_c00067{left:0.000000pt;}
.x1_c00067{left:48.000000pt;}
.x2_c00067{left:113.440000pt;}
.x3_c00067{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00068;src:url('chunks/assets/font_c79d7e9ede847ce546a4be37.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00068;src:url('chunks/assets/font_3c2fa4629923a5896ca58c02.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00068;src:url('chunks/assets/font_998aacf847f5baece27cbbdd.woff2')format("woff");}.ff4_c00068{font-family:ff4_c00068;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00068;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00068{font-family:ff5_c00068;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00068;src:url('chunks/assets/font_fdd08d2a87531666f566fac3.woff2')format("woff");}.ff6_c00068{font-family:ff6_c00068;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00068;src:url('chunks/assets/font_1b4e26b533b406101e0ab5a9.woff2')format("woff");}.ff7_c00068{font-family:ff7_c00068;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00068;src:url('chunks/assets/font_58a2a141a2e75a7b31d09f8b.woff2')format("woff");}.ff8_c00068{font-family:ff8_c00068;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls8_c00068{letter-spacing:-0.576000px;}
.ls9_c00068{letter-spacing:-0.288000px;}
.ls7_c00068{letter-spacing:-0.072000px;}
.ls6_c00068{letter-spacing:0.000000px;}
.ls1_c00068{letter-spacing:0.072000px;}
.ls3_c00068{letter-spacing:0.144000px;}
.ls0_c00068{letter-spacing:18.432000px;}
.ls2_c00068{letter-spacing:27.381600px;}
.ls5_c00068{letter-spacing:39.600000px;}
.ls4_c00068{letter-spacing:60.984000px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00068{word-spacing:-18.144000px;}
.ws6_c00068{word-spacing:-18.072000px;}
.ws3_c00068{word-spacing:-18.000000px;}
.ws5_c00068{word-spacing:-17.424000px;}
.ws17_c00068{word-spacing:-0.131760px;}
.ws1a_c00068{word-spacing:-0.072000px;}
.ws16_c00068{word-spacing:0.000000px;}
.ws18_c00068{word-spacing:0.072000px;}
.wsf_c00068{word-spacing:0.360000px;}
.ws24_c00068{word-spacing:0.576000px;}
.ws25_c00068{word-spacing:0.648000px;}
.ws23_c00068{word-spacing:0.720000px;}
.ws39_c00068{word-spacing:1.008000px;}
.ws38_c00068{word-spacing:1.080000px;}
.ws11_c00068{word-spacing:1.296000px;}
.ws1d_c00068{word-spacing:1.656000px;}
.ws2d_c00068{word-spacing:1.728000px;}
.ws1c_c00068{word-spacing:2.160000px;}
.ws2f_c00068{word-spacing:2.448000px;}
.ws48_c00068{word-spacing:2.808000px;}
.ws14_c00068{word-spacing:2.880000px;}
.ws32_c00068{word-spacing:3.096000px;}
.ws3c_c00068{word-spacing:3.240000px;}
.ws13_c00068{word-spacing:3.456000px;}
.ws2e_c00068{word-spacing:3.528000px;}
.wsb_c00068{word-spacing:3.600000px;}
.ws33_c00068{word-spacing:4.320000px;}
.wsc_c00068{word-spacing:4.392000px;}
.ws20_c00068{word-spacing:5.040000px;}
.wse_c00068{word-spacing:5.616000px;}
.ws36_c00068{word-spacing:6.120000px;}
.ws15_c00068{word-spacing:7.056000px;}
.ws44_c00068{word-spacing:7.128000px;}
.ws43_c00068{word-spacing:7.560000px;}
.ws40_c00068{word-spacing:7.920000px;}
.ws42_c00068{word-spacing:8.208000px;}
.ws22_c00068{word-spacing:9.288000px;}
.ws4_c00068{word-spacing:9.432000px;}
.ws28_c00068{word-spacing:9.576000px;}
.ws27_c00068{word-spacing:9.648000px;}
.ws26_c00068{word-spacing:9.720000px;}
.ws47_c00068{word-spacing:10.008000px;}
.ws46_c00068{word-spacing:10.080000px;}
.ws35_c00068{word-spacing:10.800000px;}
.ws19_c00068{word-spacing:11.088000px;}
.ws34_c00068{word-spacing:11.160000px;}
.wsd_c00068{word-spacing:11.304000px;}
.ws21_c00068{word-spacing:11.448000px;}
.ws45_c00068{word-spacing:12.240000px;}
.ws31_c00068{word-spacing:14.400000px;}
.ws2b_c00068{word-spacing:15.768000px;}
.ws2c_c00068{word-spacing:15.840000px;}
.ws3d_c00068{word-spacing:15.912000px;}
.ws3e_c00068{word-spacing:16.200000px;}
.ws4a_c00068{word-spacing:17.568000px;}
.ws0_c00068{word-spacing:18.288000px;}
.ws41_c00068{word-spacing:21.600000px;}
.ws30_c00068{word-spacing:22.320000px;}
.ws3b_c00068{word-spacing:23.328000px;}
.ws3a_c00068{word-spacing:23.400000px;}
.ws12_c00068{word-spacing:23.688000px;}
.ws1b_c00068{word-spacing:24.048000px;}
.ws10_c00068{word-spacing:24.120000px;}
.ws29_c00068{word-spacing:25.560000px;}
.ws3f_c00068{word-spacing:26.280000px;}
.ws1e_c00068{word-spacing:26.568000px;}
.ws2_c00068{word-spacing:26.589600px;}
.ws1f_c00068{word-spacing:26.640000px;}
.ws49_c00068{word-spacing:27.000000px;}
.ws9_c00068{word-spacing:32.551200px;}
.ws2a_c00068{word-spacing:33.120000px;}
.ws8_c00068{word-spacing:33.192000px;}
.ws7_c00068{word-spacing:33.696000px;}
.ws37_c00068{word-spacing:35.928000px;}
.ws1_c00068{word-spacing:42.048000px;}
._1_c00068{margin-left:-1.022400px;}
._0_c00068{width:1.054080px;}
._3_c00068{width:4.262400px;}
._2_c00068{width:24.264000px;}
.fc2_c00068{color:transparent;}
.fc1_c00068{color:rgb(0,0,0);}
.fc0_c00068{color:rgb(35,31,32);}
.fs1_c00068{font-size:65.880000px;}
.fs0_c00068{font-size:72.000000px;}
.y0_c00068{bottom:0.000000px;}
.y1_c00068{bottom:61.748550px;}
.y21_c00068{bottom:115.424400px;}
.y20_c00068{bottom:146.474400px;}
.y1f_c00068{bottom:177.524400px;}
.y1e_c00068{bottom:208.574400px;}
.y1d_c00068{bottom:239.624400px;}
.y1c_c00068{bottom:270.674400px;}
.y1b_c00068{bottom:301.724400px;}
.y1a_c00068{bottom:332.774400px;}
.y19_c00068{bottom:363.824400px;}
.y24_c00068{bottom:394.874400px;}
.y18_c00068{bottom:425.924400px;}
.y17_c00068{bottom:456.974400px;}
.y16_c00068{bottom:488.024400px;}
.y15_c00068{bottom:519.074400px;}
.y14_c00068{bottom:550.124400px;}
.y13_c00068{bottom:581.174400px;}
.y12_c00068{bottom:612.224400px;}
.y11_c00068{bottom:643.274400px;}
.y10_c00068{bottom:674.324400px;}
.y23_c00068{bottom:705.374400px;}
.yf_c00068{bottom:736.424400px;}
.ye_c00068{bottom:767.474400px;}
.yd_c00068{bottom:798.434400px;}
.yc_c00068{bottom:829.484400px;}
.yb_c00068{bottom:860.534400px;}
.ya_c00068{bottom:891.584400px;}
.y22_c00068{bottom:922.634400px;}
.y9_c00068{bottom:953.684400px;}
.y8_c00068{bottom:984.734400px;}
.y7_c00068{bottom:1015.784400px;}
.y6_c00068{bottom:1077.884400px;}
.y5_c00068{bottom:1108.934400px;}
.y4_c00068{bottom:1139.984400px;}
.y3_c00068{bottom:1173.915120px;}
.y2_c00068{bottom:1194.074400px;}
.h2_c00068{height:50.400000px;}
.h3_c00068{height:54.331699px;}
.h5_c00068{height:76.824000px;}
.h4_c00068{height:78.048000px;}
.h0_c00068{height:1262.835000px;}
.h1_c00068{height:1263.000000px;}
.w2_c00068{width:0.000000px;}
.w3_c00068{width:0.066000px;}
.w0_c00068{width:892.914000px;}
.w1_c00068{width:893.250000px;}
.x1_c00068{left:-838.913400px;}
.x2_c00068{left:-765.293400px;}
.x3_c00068{left:-733.343400px;}
.x0_c00068{left:0.000000px;}
.x6_c00068{left:127.618740px;}
.x7_c00068{left:148.950000px;}
.x8_c00068{left:170.190000px;}
.x5_c00068{left:701.730000px;}
.x4_c00068{left:804.366150px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls8_c00068{letter-spacing:-0.512000pt;}
.ls9_c00068{letter-spacing:-0.256000pt;}
.ls7_c00068{letter-spacing:-0.064000pt;}
.ls6_c00068{letter-spacing:0.000000pt;}
.ls1_c00068{letter-spacing:0.064000pt;}
.ls3_c00068{letter-spacing:0.128000pt;}
.ls0_c00068{letter-spacing:16.384000pt;}
.ls2_c00068{letter-spacing:24.339200pt;}
.ls5_c00068{letter-spacing:35.200000pt;}
.ls4_c00068{letter-spacing:54.208000pt;}
.wsa_c00068{word-spacing:-16.128000pt;}
.ws6_c00068{word-spacing:-16.064000pt;}
.ws3_c00068{word-spacing:-16.000000pt;}
.ws5_c00068{word-spacing:-15.488000pt;}
.ws17_c00068{word-spacing:-0.117120pt;}
.ws1a_c00068{word-spacing:-0.064000pt;}
.ws16_c00068{word-spacing:0.000000pt;}
.ws18_c00068{word-spacing:0.064000pt;}
.wsf_c00068{word-spacing:0.320000pt;}
.ws24_c00068{word-spacing:0.512000pt;}
.ws25_c00068{word-spacing:0.576000pt;}
.ws23_c00068{word-spacing:0.640000pt;}
.ws39_c00068{word-spacing:0.896000pt;}
.ws38_c00068{word-spacing:0.960000pt;}
.ws11_c00068{word-spacing:1.152000pt;}
.ws1d_c00068{word-spacing:1.472000pt;}
.ws2d_c00068{word-spacing:1.536000pt;}
.ws1c_c00068{word-spacing:1.920000pt;}
.ws2f_c00068{word-spacing:2.176000pt;}
.ws48_c00068{word-spacing:2.496000pt;}
.ws14_c00068{word-spacing:2.560000pt;}
.ws32_c00068{word-spacing:2.752000pt;}
.ws3c_c00068{word-spacing:2.880000pt;}
.ws13_c00068{word-spacing:3.072000pt;}
.ws2e_c00068{word-spacing:3.136000pt;}
.wsb_c00068{word-spacing:3.200000pt;}
.ws33_c00068{word-spacing:3.840000pt;}
.wsc_c00068{word-spacing:3.904000pt;}
.ws20_c00068{word-spacing:4.480000pt;}
.wse_c00068{word-spacing:4.992000pt;}
.ws36_c00068{word-spacing:5.440000pt;}
.ws15_c00068{word-spacing:6.272000pt;}
.ws44_c00068{word-spacing:6.336000pt;}
.ws43_c00068{word-spacing:6.720000pt;}
.ws40_c00068{word-spacing:7.040000pt;}
.ws42_c00068{word-spacing:7.296000pt;}
.ws22_c00068{word-spacing:8.256000pt;}
.ws4_c00068{word-spacing:8.384000pt;}
.ws28_c00068{word-spacing:8.512000pt;}
.ws27_c00068{word-spacing:8.576000pt;}
.ws26_c00068{word-spacing:8.640000pt;}
.ws47_c00068{word-spacing:8.896000pt;}
.ws46_c00068{word-spacing:8.960000pt;}
.ws35_c00068{word-spacing:9.600000pt;}
.ws19_c00068{word-spacing:9.856000pt;}
.ws34_c00068{word-spacing:9.920000pt;}
.wsd_c00068{word-spacing:10.048000pt;}
.ws21_c00068{word-spacing:10.176000pt;}
.ws45_c00068{word-spacing:10.880000pt;}
.ws31_c00068{word-spacing:12.800000pt;}
.ws2b_c00068{word-spacing:14.016000pt;}
.ws2c_c00068{word-spacing:14.080000pt;}
.ws3d_c00068{word-spacing:14.144000pt;}
.ws3e_c00068{word-spacing:14.400000pt;}
.ws4a_c00068{word-spacing:15.616000pt;}
.ws0_c00068{word-spacing:16.256000pt;}
.ws41_c00068{word-spacing:19.200000pt;}
.ws30_c00068{word-spacing:19.840000pt;}
.ws3b_c00068{word-spacing:20.736000pt;}
.ws3a_c00068{word-spacing:20.800000pt;}
.ws12_c00068{word-spacing:21.056000pt;}
.ws1b_c00068{word-spacing:21.376000pt;}
.ws10_c00068{word-spacing:21.440000pt;}
.ws29_c00068{word-spacing:22.720000pt;}
.ws3f_c00068{word-spacing:23.360000pt;}
.ws1e_c00068{word-spacing:23.616000pt;}
.ws2_c00068{word-spacing:23.635200pt;}
.ws1f_c00068{word-spacing:23.680000pt;}
.ws49_c00068{word-spacing:24.000000pt;}
.ws9_c00068{word-spacing:28.934400pt;}
.ws2a_c00068{word-spacing:29.440000pt;}
.ws8_c00068{word-spacing:29.504000pt;}
.ws7_c00068{word-spacing:29.952000pt;}
.ws37_c00068{word-spacing:31.936000pt;}
.ws1_c00068{word-spacing:37.376000pt;}
._1_c00068{margin-left:-0.908800pt;}
._0_c00068{width:0.936960pt;}
._3_c00068{width:3.788800pt;}
._2_c00068{width:21.568000pt;}
.fs1_c00068{font-size:58.560000pt;}
.fs0_c00068{font-size:64.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y1_c00068{bottom:54.887600pt;}
.y21_c00068{bottom:102.599467pt;}
.y20_c00068{bottom:130.199467pt;}
.y1f_c00068{bottom:157.799467pt;}
.y1e_c00068{bottom:185.399467pt;}
.y1d_c00068{bottom:212.999467pt;}
.y1c_c00068{bottom:240.599467pt;}
.y1b_c00068{bottom:268.199467pt;}
.y1a_c00068{bottom:295.799467pt;}
.y19_c00068{bottom:323.399467pt;}
.y24_c00068{bottom:350.999467pt;}
.y18_c00068{bottom:378.599467pt;}
.y17_c00068{bottom:406.199467pt;}
.y16_c00068{bottom:433.799467pt;}
.y15_c00068{bottom:461.399467pt;}
.y14_c00068{bottom:488.999467pt;}
.y13_c00068{bottom:516.599467pt;}
.y12_c00068{bottom:544.199467pt;}
.y11_c00068{bottom:571.799467pt;}
.y10_c00068{bottom:599.399467pt;}
.y23_c00068{bottom:626.999467pt;}
.yf_c00068{bottom:654.599467pt;}
.ye_c00068{bottom:682.199467pt;}
.yd_c00068{bottom:709.719467pt;}
.yc_c00068{bottom:737.319467pt;}
.yb_c00068{bottom:764.919467pt;}
.ya_c00068{bottom:792.519467pt;}
.y22_c00068{bottom:820.119467pt;}
.y9_c00068{bottom:847.719467pt;}
.y8_c00068{bottom:875.319467pt;}
.y7_c00068{bottom:902.919467pt;}
.y6_c00068{bottom:958.119467pt;}
.y5_c00068{bottom:985.719467pt;}
.y4_c00068{bottom:1013.319467pt;}
.y3_c00068{bottom:1043.480107pt;}
.y2_c00068{bottom:1061.399467pt;}
.h2_c00068{height:44.800000pt;}
.h3_c00068{height:48.294844pt;}
.h5_c00068{height:68.288000pt;}
.h4_c00068{height:69.376000pt;}
.h0_c00068{height:1122.520000pt;}
.h1_c00068{height:1122.666667pt;}
.w2_c00068{width:0.000000pt;}
.w3_c00068{width:0.058667pt;}
.w0_c00068{width:793.701333pt;}
.w1_c00068{width:794.000000pt;}
.x1_c00068{left:-745.700800pt;}
.x2_c00068{left:-680.260800pt;}
.x3_c00068{left:-651.860800pt;}
.x0_c00068{left:0.000000pt;}
.x6_c00068{left:113.438880pt;}
.x7_c00068{left:132.400000pt;}
.x8_c00068{left:151.280000pt;}
.x5_c00068{left:623.760000pt;}
.x4_c00068{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00069;src:url('chunks/assets/font_7ac0427be8bdefdfaed7bcf1.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00069;src:url('chunks/assets/font_2228ff610a00693ce3f80164.woff2')format("woff");}.ff3_c00069{font-family:ff3_c00069;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00069;src:url('chunks/assets/font_1df1de9824b62c312e76d79c.woff2')format("woff");}.ff4_c00069{font-family:ff4_c00069;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00069;src:url('chunks/assets/font_d974f2b7efd177a4e12cf983.woff2')format("woff");}.ff5_c00069{font-family:ff5_c00069;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00069{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls6_c00069{letter-spacing:-0.360000px;}
.ls3_c00069{letter-spacing:-0.288000px;}
.ls5_c00069{letter-spacing:-0.144000px;}
.ls2_c00069{letter-spacing:0.000000px;}
.ls0_c00069{letter-spacing:0.072000px;}
.ls4_c00069{letter-spacing:0.144000px;}
.ls1_c00069{letter-spacing:18.360000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00069{word-spacing:-18.144000px;}
.ws3_c00069{word-spacing:-18.072000px;}
.ws1_c00069{word-spacing:-17.856000px;}
.ws2_c00069{word-spacing:-17.640000px;}
.ws7_c00069{word-spacing:-0.360000px;}
.ws0_c00069{word-spacing:-0.288000px;}
.ws2e_c00069{word-spacing:-0.144000px;}
.wsf_c00069{word-spacing:-0.131760px;}
.ws11_c00069{word-spacing:-0.072000px;}
.wse_c00069{word-spacing:0.000000px;}
.ws13_c00069{word-spacing:0.288000px;}
.ws21_c00069{word-spacing:1.008000px;}
.ws27_c00069{word-spacing:1.728000px;}
.ws29_c00069{word-spacing:2.520000px;}
.ws14_c00069{word-spacing:3.168000px;}
.ws16_c00069{word-spacing:3.240000px;}
.ws15_c00069{word-spacing:3.528000px;}
.ws17_c00069{word-spacing:3.600000px;}
.ws2d_c00069{word-spacing:6.048000px;}
.ws2c_c00069{word-spacing:6.480000px;}
.ws31_c00069{word-spacing:6.840000px;}
.ws12_c00069{word-spacing:7.848000px;}
.ws2a_c00069{word-spacing:7.920000px;}
.ws30_c00069{word-spacing:9.288000px;}
.wsc_c00069{word-spacing:9.360000px;}
.ws4_c00069{word-spacing:9.792000px;}
.wsd_c00069{word-spacing:9.936000px;}
.ws1d_c00069{word-spacing:10.008000px;}
.ws1e_c00069{word-spacing:10.080000px;}
.ws1b_c00069{word-spacing:10.368000px;}
.ws9_c00069{word-spacing:12.888000px;}
.ws1c_c00069{word-spacing:12.960000px;}
.ws2f_c00069{word-spacing:13.176000px;}
.ws26_c00069{word-spacing:13.248000px;}
.ws25_c00069{word-spacing:13.320000px;}
.ws10_c00069{word-spacing:15.048000px;}
.ws28_c00069{word-spacing:16.560000px;}
.ws5_c00069{word-spacing:16.704000px;}
.ws1f_c00069{word-spacing:17.208000px;}
.ws20_c00069{word-spacing:17.280000px;}
.ws6_c00069{word-spacing:18.187200px;}
.ws19_c00069{word-spacing:20.880000px;}
.ws1a_c00069{word-spacing:21.168000px;}
.ws8_c00069{word-spacing:25.344000px;}
.ws23_c00069{word-spacing:25.776000px;}
.ws24_c00069{word-spacing:25.848000px;}
.ws22_c00069{word-spacing:26.568000px;}
.wsa_c00069{word-spacing:32.400000px;}
.ws18_c00069{word-spacing:33.480000px;}
.ws2b_c00069{word-spacing:35.280000px;}
._1_c00069{margin-left:-1.094400px;}
._0_c00069{width:1.054080px;}
._3_c00069{width:2.318400px;}
._2_c00069{width:6.768000px;}
._4_c00069{width:31.968000px;}
.fc1_c00069{color:rgb(0,0,0);}
.fc0_c00069{color:rgb(35,31,32);}
.fs1_c00069{font-size:65.880000px;}
.fs0_c00069{font-size:72.000000px;}
.y0_c00069{bottom:0.000000px;}
.y1_c00069{bottom:61.748550px;}
.y22_c00069{bottom:115.424400px;}
.y21_c00069{bottom:146.474400px;}
.y20_c00069{bottom:177.524400px;}
.y1f_c00069{bottom:208.574400px;}
.y1e_c00069{bottom:239.624400px;}
.y1d_c00069{bottom:270.674400px;}
.y1c_c00069{bottom:301.634400px;}
.y1b_c00069{bottom:332.774400px;}
.y1a_c00069{bottom:363.824400px;}
.y19_c00069{bottom:394.874400px;}
.y18_c00069{bottom:456.794400px;}
.y17_c00069{bottom:519.074400px;}
.y16_c00069{bottom:550.124400px;}
.y15_c00069{bottom:581.174400px;}
.y14_c00069{bottom:612.224400px;}
.y13_c00069{bottom:643.274400px;}
.y12_c00069{bottom:674.324400px;}
.y11_c00069{bottom:705.374400px;}
.y10_c00069{bottom:736.424400px;}
.yf_c00069{bottom:767.474400px;}
.ye_c00069{bottom:798.434400px;}
.yd_c00069{bottom:829.484400px;}
.yc_c00069{bottom:860.534400px;}
.yb_c00069{bottom:891.584400px;}
.ya_c00069{bottom:922.634400px;}
.y9_c00069{bottom:953.684400px;}
.y8_c00069{bottom:984.734400px;}
.y7_c00069{bottom:1015.784400px;}
.y6_c00069{bottom:1046.834400px;}
.y5_c00069{bottom:1108.934400px;}
.y4_c00069{bottom:1139.984400px;}
.y3_c00069{bottom:1173.915120px;}
.y2_c00069{bottom:1194.074400px;}
.h2_c00069{height:50.400000px;}
.h3_c00069{height:54.331699px;}
.h4_c00069{height:76.824000px;}
.h5_c00069{height:78.048000px;}
.h0_c00069{height:1262.835000px;}
.h1_c00069{height:1263.000000px;}
.w0_c00069{width:892.914000px;}
.w1_c00069{width:893.250000px;}
.x0_c00069{left:0.000000px;}
.x1_c00069{left:54.000000px;}
.x2_c00069{left:127.620000px;}
.x4_c00069{left:159.570000px;}
.x3_c00069{left:170.190000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls6_c00069{letter-spacing:-0.320000pt;}
.ls3_c00069{letter-spacing:-0.256000pt;}
.ls5_c00069{letter-spacing:-0.128000pt;}
.ls2_c00069{letter-spacing:0.000000pt;}
.ls0_c00069{letter-spacing:0.064000pt;}
.ls4_c00069{letter-spacing:0.128000pt;}
.ls1_c00069{letter-spacing:16.320000pt;}
.wsb_c00069{word-spacing:-16.128000pt;}
.ws3_c00069{word-spacing:-16.064000pt;}
.ws1_c00069{word-spacing:-15.872000pt;}
.ws2_c00069{word-spacing:-15.680000pt;}
.ws7_c00069{word-spacing:-0.320000pt;}
.ws0_c00069{word-spacing:-0.256000pt;}
.ws2e_c00069{word-spacing:-0.128000pt;}
.wsf_c00069{word-spacing:-0.117120pt;}
.ws11_c00069{word-spacing:-0.064000pt;}
.wse_c00069{word-spacing:0.000000pt;}
.ws13_c00069{word-spacing:0.256000pt;}
.ws21_c00069{word-spacing:0.896000pt;}
.ws27_c00069{word-spacing:1.536000pt;}
.ws29_c00069{word-spacing:2.240000pt;}
.ws14_c00069{word-spacing:2.816000pt;}
.ws16_c00069{word-spacing:2.880000pt;}
.ws15_c00069{word-spacing:3.136000pt;}
.ws17_c00069{word-spacing:3.200000pt;}
.ws2d_c00069{word-spacing:5.376000pt;}
.ws2c_c00069{word-spacing:5.760000pt;}
.ws31_c00069{word-spacing:6.080000pt;}
.ws12_c00069{word-spacing:6.976000pt;}
.ws2a_c00069{word-spacing:7.040000pt;}
.ws30_c00069{word-spacing:8.256000pt;}
.wsc_c00069{word-spacing:8.320000pt;}
.ws4_c00069{word-spacing:8.704000pt;}
.wsd_c00069{word-spacing:8.832000pt;}
.ws1d_c00069{word-spacing:8.896000pt;}
.ws1e_c00069{word-spacing:8.960000pt;}
.ws1b_c00069{word-spacing:9.216000pt;}
.ws9_c00069{word-spacing:11.456000pt;}
.ws1c_c00069{word-spacing:11.520000pt;}
.ws2f_c00069{word-spacing:11.712000pt;}
.ws26_c00069{word-spacing:11.776000pt;}
.ws25_c00069{word-spacing:11.840000pt;}
.ws10_c00069{word-spacing:13.376000pt;}
.ws28_c00069{word-spacing:14.720000pt;}
.ws5_c00069{word-spacing:14.848000pt;}
.ws1f_c00069{word-spacing:15.296000pt;}
.ws20_c00069{word-spacing:15.360000pt;}
.ws6_c00069{word-spacing:16.166400pt;}
.ws19_c00069{word-spacing:18.560000pt;}
.ws1a_c00069{word-spacing:18.816000pt;}
.ws8_c00069{word-spacing:22.528000pt;}
.ws23_c00069{word-spacing:22.912000pt;}
.ws24_c00069{word-spacing:22.976000pt;}
.ws22_c00069{word-spacing:23.616000pt;}
.wsa_c00069{word-spacing:28.800000pt;}
.ws18_c00069{word-spacing:29.760000pt;}
.ws2b_c00069{word-spacing:31.360000pt;}
._1_c00069{margin-left:-0.972800pt;}
._0_c00069{width:0.936960pt;}
._3_c00069{width:2.060800pt;}
._2_c00069{width:6.016000pt;}
._4_c00069{width:28.416000pt;}
.fs1_c00069{font-size:58.560000pt;}
.fs0_c00069{font-size:64.000000pt;}
.y0_c00069{bottom:0.000000pt;}
.y1_c00069{bottom:54.887600pt;}
.y22_c00069{bottom:102.599467pt;}
.y21_c00069{bottom:130.199467pt;}
.y20_c00069{bottom:157.799467pt;}
.y1f_c00069{bottom:185.399467pt;}
.y1e_c00069{bottom:212.999467pt;}
.y1d_c00069{bottom:240.599467pt;}
.y1c_c00069{bottom:268.119467pt;}
.y1b_c00069{bottom:295.799467pt;}
.y1a_c00069{bottom:323.399467pt;}
.y19_c00069{bottom:350.999467pt;}
.y18_c00069{bottom:406.039467pt;}
.y17_c00069{bottom:461.399467pt;}
.y16_c00069{bottom:488.999467pt;}
.y15_c00069{bottom:516.599467pt;}
.y14_c00069{bottom:544.199467pt;}
.y13_c00069{bottom:571.799467pt;}
.y12_c00069{bottom:599.399467pt;}
.y11_c00069{bottom:626.999467pt;}
.y10_c00069{bottom:654.599467pt;}
.yf_c00069{bottom:682.199467pt;}
.ye_c00069{bottom:709.719467pt;}
.yd_c00069{bottom:737.319467pt;}
.yc_c00069{bottom:764.919467pt;}
.yb_c00069{bottom:792.519467pt;}
.ya_c00069{bottom:820.119467pt;}
.y9_c00069{bottom:847.719467pt;}
.y8_c00069{bottom:875.319467pt;}
.y7_c00069{bottom:902.919467pt;}
.y6_c00069{bottom:930.519467pt;}
.y5_c00069{bottom:985.719467pt;}
.y4_c00069{bottom:1013.319467pt;}
.y3_c00069{bottom:1043.480107pt;}
.y2_c00069{bottom:1061.399467pt;}
.h2_c00069{height:44.800000pt;}
.h3_c00069{height:48.294844pt;}
.h4_c00069{height:68.288000pt;}
.h5_c00069{height:69.376000pt;}
.h0_c00069{height:1122.520000pt;}
.h1_c00069{height:1122.666667pt;}
.w0_c00069{width:793.701333pt;}
.w1_c00069{width:794.000000pt;}
.x0_c00069{left:0.000000pt;}
.x1_c00069{left:48.000000pt;}
.x2_c00069{left:113.440000pt;}
.x4_c00069{left:141.840000pt;}
.x3_c00069{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00070;src:url('chunks/assets/font_bd8414df4a03263717dc7d9d.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00070;src:url('chunks/assets/font_5ed0145a0e65866b62f52524.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00070;src:url('chunks/assets/font_efcd59ccc6d43e2b6d5634d6.woff2')format("woff");}.ff4_c00070{font-family:ff4_c00070;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00070;src:url('chunks/assets/font_63c148d30b2e44f08c2a6616.woff2')format("woff");}.ff5_c00070{font-family:ff5_c00070;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00070;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00070{font-family:ff6_c00070;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00070;src:url('chunks/assets/font_390d6049951bb7d71880d93e.woff2')format("woff");}.ff7_c00070{font-family:ff7_c00070;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00070;src:url('chunks/assets/font_843a9dfdb213b6233db117fe.woff2')format("woff");}.ff8_c00070{font-family:ff8_c00070;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00070;src:url('chunks/assets/font_d793a4eb2e7dbb9cba66dd96.woff2')format("woff");}.ff9_c00070{font-family:ff9_c00070;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00070;src:url('chunks/assets/font_ae1c6bee47a39510e8c97c5e.woff2')format("woff");}.ffa_c00070{font-family:ffa_c00070;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00070{letter-spacing:-0.360000px;}
.ls6_c00070{letter-spacing:-0.288000px;}
.lsa_c00070{letter-spacing:-0.216000px;}
.ls7_c00070{letter-spacing:-0.144000px;}
.ls9_c00070{letter-spacing:-0.072000px;}
.ls5_c00070{letter-spacing:0.000000px;}
.ls0_c00070{letter-spacing:0.072000px;}
.ls2_c00070{letter-spacing:0.144000px;}
.ls1_c00070{letter-spacing:18.360000px;}
.ls3_c00070{letter-spacing:18.403200px;}
.ls4_c00070{letter-spacing:25.920000px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00070{word-spacing:-18.144000px;}
.ws3_c00070{word-spacing:-18.072000px;}
.ws16_c00070{word-spacing:-18.000000px;}
.ws1_c00070{word-spacing:-17.856000px;}
.ws2_c00070{word-spacing:-17.640000px;}
.ws7_c00070{word-spacing:-0.360000px;}
.ws0_c00070{word-spacing:-0.288000px;}
.ws18_c00070{word-spacing:-0.216000px;}
.ws38_c00070{word-spacing:-0.144000px;}
.ws1a_c00070{word-spacing:-0.131760px;}
.ws1c_c00070{word-spacing:-0.072000px;}
.ws19_c00070{word-spacing:0.000000px;}
.ws51_c00070{word-spacing:0.072000px;}
.ws4b_c00070{word-spacing:0.216000px;}
.ws1e_c00070{word-spacing:0.288000px;}
.ws56_c00070{word-spacing:0.360000px;}
.ws2b_c00070{word-spacing:1.008000px;}
.ws4d_c00070{word-spacing:1.080000px;}
.ws4f_c00070{word-spacing:1.368000px;}
.ws4e_c00070{word-spacing:1.440000px;}
.ws31_c00070{word-spacing:1.728000px;}
.ws50_c00070{word-spacing:1.800000px;}
.ws3d_c00070{word-spacing:2.088000px;}
.ws33_c00070{word-spacing:2.520000px;}
.ws55_c00070{word-spacing:2.880000px;}
.ws1f_c00070{word-spacing:3.168000px;}
.ws21_c00070{word-spacing:3.240000px;}
.ws20_c00070{word-spacing:3.528000px;}
.ws22_c00070{word-spacing:3.600000px;}
.ws47_c00070{word-spacing:3.816000px;}
.ws45_c00070{word-spacing:3.888000px;}
.ws46_c00070{word-spacing:4.392000px;}
.ws44_c00070{word-spacing:4.608000px;}
.ws10_c00070{word-spacing:4.680000px;}
.ws37_c00070{word-spacing:6.048000px;}
.ws36_c00070{word-spacing:6.480000px;}
.ws3b_c00070{word-spacing:6.840000px;}
.ws41_c00070{word-spacing:7.488000px;}
.ws1d_c00070{word-spacing:7.848000px;}
.ws34_c00070{word-spacing:7.920000px;}
.ws3a_c00070{word-spacing:9.288000px;}
.wsc_c00070{word-spacing:9.360000px;}
.ws4_c00070{word-spacing:9.792000px;}
.wsd_c00070{word-spacing:9.936000px;}
.ws27_c00070{word-spacing:10.008000px;}
.ws28_c00070{word-spacing:10.080000px;}
.ws26_c00070{word-spacing:10.368000px;}
.ws49_c00070{word-spacing:11.016000px;}
.ws54_c00070{word-spacing:11.088000px;}
.ws13_c00070{word-spacing:11.152800px;}
.ws4a_c00070{word-spacing:11.160000px;}
.ws42_c00070{word-spacing:11.520000px;}
.ws48_c00070{word-spacing:12.528000px;}
.ws9_c00070{word-spacing:12.888000px;}
.ws12_c00070{word-spacing:12.960000px;}
.ws39_c00070{word-spacing:13.176000px;}
.ws30_c00070{word-spacing:13.248000px;}
.ws2f_c00070{word-spacing:13.320000px;}
.ws14_c00070{word-spacing:13.680000px;}
.ws4c_c00070{word-spacing:13.896000px;}
.ws15_c00070{word-spacing:14.040000px;}
.ws1b_c00070{word-spacing:15.048000px;}
.ws3e_c00070{word-spacing:15.408000px;}
.ws3f_c00070{word-spacing:15.480000px;}
.ws43_c00070{word-spacing:16.128000px;}
.ws11_c00070{word-spacing:16.200000px;}
.ws32_c00070{word-spacing:16.560000px;}
.ws5_c00070{word-spacing:16.704000px;}
.ws29_c00070{word-spacing:17.208000px;}
.ws2a_c00070{word-spacing:17.280000px;}
.wse_c00070{word-spacing:18.180000px;}
.ws6_c00070{word-spacing:18.187200px;}
.ws52_c00070{word-spacing:19.008000px;}
.ws53_c00070{word-spacing:19.080000px;}
.ws17_c00070{word-spacing:19.094400px;}
.ws24_c00070{word-spacing:20.880000px;}
.ws25_c00070{word-spacing:21.168000px;}
.ws3c_c00070{word-spacing:24.480000px;}
.wsf_c00070{word-spacing:24.696000px;}
.ws40_c00070{word-spacing:25.056000px;}
.ws8_c00070{word-spacing:25.344000px;}
.ws2d_c00070{word-spacing:25.776000px;}
.ws2e_c00070{word-spacing:25.848000px;}
.ws2c_c00070{word-spacing:26.568000px;}
.wsa_c00070{word-spacing:32.400000px;}
.ws23_c00070{word-spacing:33.480000px;}
.ws35_c00070{word-spacing:35.280000px;}
._1_c00070{margin-left:-1.094400px;}
._0_c00070{width:1.054080px;}
._3_c00070{width:2.318400px;}
._2_c00070{width:6.768000px;}
._6_c00070{width:14.065920px;}
._5_c00070{width:23.256000px;}
._4_c00070{width:31.968000px;}
.fc2_c00070{color:transparent;}
.fc1_c00070{color:rgb(0,0,0);}
.fc0_c00070{color:rgb(35,31,32);}
.fs1_c00070{font-size:65.880000px;}
.fs0_c00070{font-size:72.000000px;}
.y0_c00070{bottom:0.000000px;}
.y1_c00070{bottom:61.748550px;}
.y22_c00070{bottom:115.424400px;}
.y21_c00070{bottom:146.474400px;}
.y20_c00070{bottom:177.524400px;}
.y1f_c00070{bottom:208.574400px;}
.y1e_c00070{bottom:239.624400px;}
.y1d_c00070{bottom:270.674400px;}
.y1c_c00070{bottom:301.634400px;}
.y27_c00070{bottom:301.724400px;}
.y1b_c00070{bottom:332.774400px;}
.y1a_c00070{bottom:363.824400px;}
.y19_c00070{bottom:394.874400px;}
.y26_c00070{bottom:425.924400px;}
.y18_c00070{bottom:456.794400px;}
.y25_c00070{bottom:456.974400px;}
.y24_c00070{bottom:488.024400px;}
.y17_c00070{bottom:519.074400px;}
.y16_c00070{bottom:550.124400px;}
.y15_c00070{bottom:581.174400px;}
.y14_c00070{bottom:612.224400px;}
.y13_c00070{bottom:643.274400px;}
.y12_c00070{bottom:674.324400px;}
.y11_c00070{bottom:705.374400px;}
.y10_c00070{bottom:736.424400px;}
.yf_c00070{bottom:767.474400px;}
.ye_c00070{bottom:798.434400px;}
.yd_c00070{bottom:829.484400px;}
.yc_c00070{bottom:860.534400px;}
.yb_c00070{bottom:891.584400px;}
.ya_c00070{bottom:922.634400px;}
.y9_c00070{bottom:953.684400px;}
.y8_c00070{bottom:984.734400px;}
.y7_c00070{bottom:1015.784400px;}
.y6_c00070{bottom:1046.834400px;}
.y23_c00070{bottom:1077.884400px;}
.y5_c00070{bottom:1108.934400px;}
.y4_c00070{bottom:1139.984400px;}
.y3_c00070{bottom:1173.915120px;}
.y2_c00070{bottom:1194.074400px;}
.h2_c00070{height:50.400000px;}
.h3_c00070{height:54.331699px;}
.h4_c00070{height:76.824000px;}
.h5_c00070{height:78.048000px;}
.h0_c00070{height:1262.835000px;}
.h1_c00070{height:1263.000000px;}
.w2_c00070{width:0.000000px;}
.w3_c00070{width:0.066000px;}
.w0_c00070{width:892.914000px;}
.w1_c00070{width:893.250000px;}
.x1_c00070{left:-838.913400px;}
.x2_c00070{left:-765.293400px;}
.x4_c00070{left:-733.343400px;}
.x3_c00070{left:-722.723400px;}
.x0_c00070{left:0.000000px;}
.x7_c00070{left:127.618740px;}
.x8_c00070{left:159.570000px;}
.x6_c00070{left:701.730000px;}
.x5_c00070{left:804.366150px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls8_c00070{letter-spacing:-0.320000pt;}
.ls6_c00070{letter-spacing:-0.256000pt;}
.lsa_c00070{letter-spacing:-0.192000pt;}
.ls7_c00070{letter-spacing:-0.128000pt;}
.ls9_c00070{letter-spacing:-0.064000pt;}
.ls5_c00070{letter-spacing:0.000000pt;}
.ls0_c00070{letter-spacing:0.064000pt;}
.ls2_c00070{letter-spacing:0.128000pt;}
.ls1_c00070{letter-spacing:16.320000pt;}
.ls3_c00070{letter-spacing:16.358400pt;}
.ls4_c00070{letter-spacing:23.040000pt;}
.wsb_c00070{word-spacing:-16.128000pt;}
.ws3_c00070{word-spacing:-16.064000pt;}
.ws16_c00070{word-spacing:-16.000000pt;}
.ws1_c00070{word-spacing:-15.872000pt;}
.ws2_c00070{word-spacing:-15.680000pt;}
.ws7_c00070{word-spacing:-0.320000pt;}
.ws0_c00070{word-spacing:-0.256000pt;}
.ws18_c00070{word-spacing:-0.192000pt;}
.ws38_c00070{word-spacing:-0.128000pt;}
.ws1a_c00070{word-spacing:-0.117120pt;}
.ws1c_c00070{word-spacing:-0.064000pt;}
.ws19_c00070{word-spacing:0.000000pt;}
.ws51_c00070{word-spacing:0.064000pt;}
.ws4b_c00070{word-spacing:0.192000pt;}
.ws1e_c00070{word-spacing:0.256000pt;}
.ws56_c00070{word-spacing:0.320000pt;}
.ws2b_c00070{word-spacing:0.896000pt;}
.ws4d_c00070{word-spacing:0.960000pt;}
.ws4f_c00070{word-spacing:1.216000pt;}
.ws4e_c00070{word-spacing:1.280000pt;}
.ws31_c00070{word-spacing:1.536000pt;}
.ws50_c00070{word-spacing:1.600000pt;}
.ws3d_c00070{word-spacing:1.856000pt;}
.ws33_c00070{word-spacing:2.240000pt;}
.ws55_c00070{word-spacing:2.560000pt;}
.ws1f_c00070{word-spacing:2.816000pt;}
.ws21_c00070{word-spacing:2.880000pt;}
.ws20_c00070{word-spacing:3.136000pt;}
.ws22_c00070{word-spacing:3.200000pt;}
.ws47_c00070{word-spacing:3.392000pt;}
.ws45_c00070{word-spacing:3.456000pt;}
.ws46_c00070{word-spacing:3.904000pt;}
.ws44_c00070{word-spacing:4.096000pt;}
.ws10_c00070{word-spacing:4.160000pt;}
.ws37_c00070{word-spacing:5.376000pt;}
.ws36_c00070{word-spacing:5.760000pt;}
.ws3b_c00070{word-spacing:6.080000pt;}
.ws41_c00070{word-spacing:6.656000pt;}
.ws1d_c00070{word-spacing:6.976000pt;}
.ws34_c00070{word-spacing:7.040000pt;}
.ws3a_c00070{word-spacing:8.256000pt;}
.wsc_c00070{word-spacing:8.320000pt;}
.ws4_c00070{word-spacing:8.704000pt;}
.wsd_c00070{word-spacing:8.832000pt;}
.ws27_c00070{word-spacing:8.896000pt;}
.ws28_c00070{word-spacing:8.960000pt;}
.ws26_c00070{word-spacing:9.216000pt;}
.ws49_c00070{word-spacing:9.792000pt;}
.ws54_c00070{word-spacing:9.856000pt;}
.ws13_c00070{word-spacing:9.913600pt;}
.ws4a_c00070{word-spacing:9.920000pt;}
.ws42_c00070{word-spacing:10.240000pt;}
.ws48_c00070{word-spacing:11.136000pt;}
.ws9_c00070{word-spacing:11.456000pt;}
.ws12_c00070{word-spacing:11.520000pt;}
.ws39_c00070{word-spacing:11.712000pt;}
.ws30_c00070{word-spacing:11.776000pt;}
.ws2f_c00070{word-spacing:11.840000pt;}
.ws14_c00070{word-spacing:12.160000pt;}
.ws4c_c00070{word-spacing:12.352000pt;}
.ws15_c00070{word-spacing:12.480000pt;}
.ws1b_c00070{word-spacing:13.376000pt;}
.ws3e_c00070{word-spacing:13.696000pt;}
.ws3f_c00070{word-spacing:13.760000pt;}
.ws43_c00070{word-spacing:14.336000pt;}
.ws11_c00070{word-spacing:14.400000pt;}
.ws32_c00070{word-spacing:14.720000pt;}
.ws5_c00070{word-spacing:14.848000pt;}
.ws29_c00070{word-spacing:15.296000pt;}
.ws2a_c00070{word-spacing:15.360000pt;}
.wse_c00070{word-spacing:16.160000pt;}
.ws6_c00070{word-spacing:16.166400pt;}
.ws52_c00070{word-spacing:16.896000pt;}
.ws53_c00070{word-spacing:16.960000pt;}
.ws17_c00070{word-spacing:16.972800pt;}
.ws24_c00070{word-spacing:18.560000pt;}
.ws25_c00070{word-spacing:18.816000pt;}
.ws3c_c00070{word-spacing:21.760000pt;}
.wsf_c00070{word-spacing:21.952000pt;}
.ws40_c00070{word-spacing:22.272000pt;}
.ws8_c00070{word-spacing:22.528000pt;}
.ws2d_c00070{word-spacing:22.912000pt;}
.ws2e_c00070{word-spacing:22.976000pt;}
.ws2c_c00070{word-spacing:23.616000pt;}
.wsa_c00070{word-spacing:28.800000pt;}
.ws23_c00070{word-spacing:29.760000pt;}
.ws35_c00070{word-spacing:31.360000pt;}
._1_c00070{margin-left:-0.972800pt;}
._0_c00070{width:0.936960pt;}
._3_c00070{width:2.060800pt;}
._2_c00070{width:6.016000pt;}
._6_c00070{width:12.503040pt;}
._5_c00070{width:20.672000pt;}
._4_c00070{width:28.416000pt;}
.fs1_c00070{font-size:58.560000pt;}
.fs0_c00070{font-size:64.000000pt;}
.y0_c00070{bottom:0.000000pt;}
.y1_c00070{bottom:54.887600pt;}
.y22_c00070{bottom:102.599467pt;}
.y21_c00070{bottom:130.199467pt;}
.y20_c00070{bottom:157.799467pt;}
.y1f_c00070{bottom:185.399467pt;}
.y1e_c00070{bottom:212.999467pt;}
.y1d_c00070{bottom:240.599467pt;}
.y1c_c00070{bottom:268.119467pt;}
.y27_c00070{bottom:268.199467pt;}
.y1b_c00070{bottom:295.799467pt;}
.y1a_c00070{bottom:323.399467pt;}
.y19_c00070{bottom:350.999467pt;}
.y26_c00070{bottom:378.599467pt;}
.y18_c00070{bottom:406.039467pt;}
.y25_c00070{bottom:406.199467pt;}
.y24_c00070{bottom:433.799467pt;}
.y17_c00070{bottom:461.399467pt;}
.y16_c00070{bottom:488.999467pt;}
.y15_c00070{bottom:516.599467pt;}
.y14_c00070{bottom:544.199467pt;}
.y13_c00070{bottom:571.799467pt;}
.y12_c00070{bottom:599.399467pt;}
.y11_c00070{bottom:626.999467pt;}
.y10_c00070{bottom:654.599467pt;}
.yf_c00070{bottom:682.199467pt;}
.ye_c00070{bottom:709.719467pt;}
.yd_c00070{bottom:737.319467pt;}
.yc_c00070{bottom:764.919467pt;}
.yb_c00070{bottom:792.519467pt;}
.ya_c00070{bottom:820.119467pt;}
.y9_c00070{bottom:847.719467pt;}
.y8_c00070{bottom:875.319467pt;}
.y7_c00070{bottom:902.919467pt;}
.y6_c00070{bottom:930.519467pt;}
.y23_c00070{bottom:958.119467pt;}
.y5_c00070{bottom:985.719467pt;}
.y4_c00070{bottom:1013.319467pt;}
.y3_c00070{bottom:1043.480107pt;}
.y2_c00070{bottom:1061.399467pt;}
.h2_c00070{height:44.800000pt;}
.h3_c00070{height:48.294844pt;}
.h4_c00070{height:68.288000pt;}
.h5_c00070{height:69.376000pt;}
.h0_c00070{height:1122.520000pt;}
.h1_c00070{height:1122.666667pt;}
.w2_c00070{width:0.000000pt;}
.w3_c00070{width:0.058667pt;}
.w0_c00070{width:793.701333pt;}
.w1_c00070{width:794.000000pt;}
.x1_c00070{left:-745.700800pt;}
.x2_c00070{left:-680.260800pt;}
.x4_c00070{left:-651.860800pt;}
.x3_c00070{left:-642.420800pt;}
.x0_c00070{left:0.000000pt;}
.x7_c00070{left:113.438880pt;}
.x8_c00070{left:141.840000pt;}
.x6_c00070{left:623.760000pt;}
.x5_c00070{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00071;src:url('chunks/assets/font_0c538bda54c30e14e3745891.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00071;src:url('chunks/assets/font_4b93e5e8161feae11aaaa48b.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00071;src:url('chunks/assets/font_dd412a548707e4a87a04232b.woff2')format("woff");}.ff4_c00071{font-family:ff4_c00071;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c00071{letter-spacing:-0.541080px;}
.lsa_c00071{letter-spacing:-0.360720px;}
.ls7_c00071{letter-spacing:-0.240480px;}
.ls8_c00071{letter-spacing:-0.180360px;}
.ls5_c00071{letter-spacing:-0.072000px;}
.ls4_c00071{letter-spacing:0.000000px;}
.ls0_c00071{letter-spacing:0.072000px;}
.ls6_c00071{letter-spacing:0.120240px;}
.ls1_c00071{letter-spacing:0.144000px;}
.ls3_c00071{letter-spacing:28.152000px;}
.ls2_c00071{letter-spacing:61.344000px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00071{word-spacing:-18.000000px;}
.wse_c00071{word-spacing:-15.150240px;}
.ws10_c00071{word-spacing:-14.669280px;}
.ws25_c00071{word-spacing:-0.504000px;}
.ws35_c00071{word-spacing:-0.360000px;}
.ws17_c00071{word-spacing:-0.144000px;}
.ws13_c00071{word-spacing:-0.131760px;}
.ws2e_c00071{word-spacing:-0.120240px;}
.ws21_c00071{word-spacing:-0.072000px;}
.ws32_c00071{word-spacing:-0.060120px;}
.ws12_c00071{word-spacing:0.000000px;}
.ws31_c00071{word-spacing:0.060120px;}
.ws23_c00071{word-spacing:0.072000px;}
.ws30_c00071{word-spacing:0.240480px;}
.ws2c_c00071{word-spacing:1.080000px;}
.ws2b_c00071{word-spacing:1.368000px;}
.ws22_c00071{word-spacing:2.088000px;}
.ws24_c00071{word-spacing:2.736000px;}
.ws33_c00071{word-spacing:3.168000px;}
.ws34_c00071{word-spacing:3.240000px;}
.ws16_c00071{word-spacing:3.528000px;}
.ws15_c00071{word-spacing:3.816000px;}
.ws0_c00071{word-spacing:4.104000px;}
.ws7_c00071{word-spacing:4.176000px;}
.ws20_c00071{word-spacing:4.968000px;}
.ws2a_c00071{word-spacing:5.328000px;}
.ws29_c00071{word-spacing:5.760000px;}
.ws5_c00071{word-spacing:7.056000px;}
.ws14_c00071{word-spacing:8.280000px;}
.ws2d_c00071{word-spacing:10.080000px;}
.wsc_c00071{word-spacing:11.052000px;}
.ws28_c00071{word-spacing:11.088000px;}
.ws1b_c00071{word-spacing:11.808000px;}
.ws1a_c00071{word-spacing:11.880000px;}
.ws19_c00071{word-spacing:13.248000px;}
.ws2_c00071{word-spacing:13.896000px;}
.ws1c_c00071{word-spacing:15.048000px;}
.ws8_c00071{word-spacing:20.088000px;}
.ws9_c00071{word-spacing:20.808000px;}
.ws11_c00071{word-spacing:21.168000px;}
.ws26_c00071{word-spacing:21.528000px;}
.ws27_c00071{word-spacing:21.960000px;}
.wsa_c00071{word-spacing:22.248000px;}
.ws6_c00071{word-spacing:22.968000px;}
.wsd_c00071{word-spacing:23.551200px;}
.ws1e_c00071{word-spacing:24.480000px;}
.ws1f_c00071{word-spacing:24.768000px;}
.ws1d_c00071{word-spacing:24.840000px;}
.ws18_c00071{word-spacing:30.960000px;}
.ws3_c00071{word-spacing:31.248000px;}
.wsb_c00071{word-spacing:39.744000px;}
.ws4_c00071{word-spacing:42.408000px;}
.ws2f_c00071{word-spacing:51.102000px;}
.wsf_c00071{word-spacing:527.613120px;}
._1_c00071{margin-left:-1.008000px;}
._0_c00071{width:1.054080px;}
._2_c00071{width:3.024000px;}
._3_c00071{width:19.728000px;}
.fc1_c00071{color:rgb(0,0,0);}
.fc0_c00071{color:rgb(35,31,32);}
.fs2_c00071{font-size:60.120000px;}
.fs1_c00071{font-size:65.880000px;}
.fs0_c00071{font-size:72.000000px;}
.y0_c00071{bottom:0.000000px;}
.y1_c00071{bottom:61.748550px;}
.y1f_c00071{bottom:63.810750px;}
.y1d_c00071{bottom:115.560750px;}
.y25_c00071{bottom:141.344400px;}
.y24_c00071{bottom:172.394400px;}
.y1c_c00071{bottom:220.003500px;}
.y21_c00071{bottom:232.057830px;}
.y23_c00071{bottom:257.879370px;}
.y20_c00071{bottom:257.894400px;}
.y22_c00071{bottom:283.806120px;}
.y1e_c00071{bottom:309.644400px;}
.y1b_c00071{bottom:394.874400px;}
.y1a_c00071{bottom:425.924400px;}
.y19_c00071{bottom:456.974400px;}
.y18_c00071{bottom:488.024400px;}
.y17_c00071{bottom:519.074400px;}
.y16_c00071{bottom:550.124400px;}
.y15_c00071{bottom:581.174400px;}
.y14_c00071{bottom:612.224400px;}
.y13_c00071{bottom:643.274400px;}
.y12_c00071{bottom:674.324400px;}
.y11_c00071{bottom:705.374400px;}
.y10_c00071{bottom:736.424400px;}
.yf_c00071{bottom:767.474400px;}
.ye_c00071{bottom:798.434400px;}
.yd_c00071{bottom:829.484400px;}
.yc_c00071{bottom:860.534400px;}
.yb_c00071{bottom:891.584400px;}
.ya_c00071{bottom:922.634400px;}
.y9_c00071{bottom:953.684400px;}
.y8_c00071{bottom:984.734400px;}
.y7_c00071{bottom:1046.834400px;}
.y6_c00071{bottom:1077.884400px;}
.y5_c00071{bottom:1108.934400px;}
.y4_c00071{bottom:1139.984400px;}
.y3_c00071{bottom:1173.915120px;}
.y2_c00071{bottom:1194.074400px;}
.h2_c00071{height:50.400000px;}
.h3_c00071{height:54.331699px;}
.h7_c00071{height:64.148040px;}
.h4_c00071{height:76.824000px;}
.h5_c00071{height:78.048000px;}
.h6_c00071{height:129.330000px;}
.h0_c00071{height:1262.835000px;}
.h1_c00071{height:1263.000000px;}
.w2_c00071{width:215.643000px;}
.w0_c00071{width:892.914000px;}
.w1_c00071{width:893.250000px;}
.x0_c00071{left:0.000000px;}
.x6_c00071{left:8.100000px;}
.x1_c00071{left:54.000000px;}
.x5_c00071{left:119.520000px;}
.x2_c00071{left:127.620000px;}
.x3_c00071{left:148.860000px;}
.x4_c00071{left:170.190000px;}
.x7_c00071{left:343.616130px;}
.x8_c00071{left:619.642080px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls9_c00071{letter-spacing:-0.480960pt;}
.lsa_c00071{letter-spacing:-0.320640pt;}
.ls7_c00071{letter-spacing:-0.213760pt;}
.ls8_c00071{letter-spacing:-0.160320pt;}
.ls5_c00071{letter-spacing:-0.064000pt;}
.ls4_c00071{letter-spacing:0.000000pt;}
.ls0_c00071{letter-spacing:0.064000pt;}
.ls6_c00071{letter-spacing:0.106880pt;}
.ls1_c00071{letter-spacing:0.128000pt;}
.ls3_c00071{letter-spacing:25.024000pt;}
.ls2_c00071{letter-spacing:54.528000pt;}
.ws1_c00071{word-spacing:-16.000000pt;}
.wse_c00071{word-spacing:-13.466880pt;}
.ws10_c00071{word-spacing:-13.039360pt;}
.ws25_c00071{word-spacing:-0.448000pt;}
.ws35_c00071{word-spacing:-0.320000pt;}
.ws17_c00071{word-spacing:-0.128000pt;}
.ws13_c00071{word-spacing:-0.117120pt;}
.ws2e_c00071{word-spacing:-0.106880pt;}
.ws21_c00071{word-spacing:-0.064000pt;}
.ws32_c00071{word-spacing:-0.053440pt;}
.ws12_c00071{word-spacing:0.000000pt;}
.ws31_c00071{word-spacing:0.053440pt;}
.ws23_c00071{word-spacing:0.064000pt;}
.ws30_c00071{word-spacing:0.213760pt;}
.ws2c_c00071{word-spacing:0.960000pt;}
.ws2b_c00071{word-spacing:1.216000pt;}
.ws22_c00071{word-spacing:1.856000pt;}
.ws24_c00071{word-spacing:2.432000pt;}
.ws33_c00071{word-spacing:2.816000pt;}
.ws34_c00071{word-spacing:2.880000pt;}
.ws16_c00071{word-spacing:3.136000pt;}
.ws15_c00071{word-spacing:3.392000pt;}
.ws0_c00071{word-spacing:3.648000pt;}
.ws7_c00071{word-spacing:3.712000pt;}
.ws20_c00071{word-spacing:4.416000pt;}
.ws2a_c00071{word-spacing:4.736000pt;}
.ws29_c00071{word-spacing:5.120000pt;}
.ws5_c00071{word-spacing:6.272000pt;}
.ws14_c00071{word-spacing:7.360000pt;}
.ws2d_c00071{word-spacing:8.960000pt;}
.wsc_c00071{word-spacing:9.824000pt;}
.ws28_c00071{word-spacing:9.856000pt;}
.ws1b_c00071{word-spacing:10.496000pt;}
.ws1a_c00071{word-spacing:10.560000pt;}
.ws19_c00071{word-spacing:11.776000pt;}
.ws2_c00071{word-spacing:12.352000pt;}
.ws1c_c00071{word-spacing:13.376000pt;}
.ws8_c00071{word-spacing:17.856000pt;}
.ws9_c00071{word-spacing:18.496000pt;}
.ws11_c00071{word-spacing:18.816000pt;}
.ws26_c00071{word-spacing:19.136000pt;}
.ws27_c00071{word-spacing:19.520000pt;}
.wsa_c00071{word-spacing:19.776000pt;}
.ws6_c00071{word-spacing:20.416000pt;}
.wsd_c00071{word-spacing:20.934400pt;}
.ws1e_c00071{word-spacing:21.760000pt;}
.ws1f_c00071{word-spacing:22.016000pt;}
.ws1d_c00071{word-spacing:22.080000pt;}
.ws18_c00071{word-spacing:27.520000pt;}
.ws3_c00071{word-spacing:27.776000pt;}
.wsb_c00071{word-spacing:35.328000pt;}
.ws4_c00071{word-spacing:37.696000pt;}
.ws2f_c00071{word-spacing:45.424000pt;}
.wsf_c00071{word-spacing:468.989440pt;}
._1_c00071{margin-left:-0.896000pt;}
._0_c00071{width:0.936960pt;}
._2_c00071{width:2.688000pt;}
._3_c00071{width:17.536000pt;}
.fs2_c00071{font-size:53.440000pt;}
.fs1_c00071{font-size:58.560000pt;}
.fs0_c00071{font-size:64.000000pt;}
.y0_c00071{bottom:0.000000pt;}
.y1_c00071{bottom:54.887600pt;}
.y1f_c00071{bottom:56.720667pt;}
.y1d_c00071{bottom:102.720667pt;}
.y25_c00071{bottom:125.639467pt;}
.y24_c00071{bottom:153.239467pt;}
.y1c_c00071{bottom:195.558667pt;}
.y21_c00071{bottom:206.273627pt;}
.y23_c00071{bottom:229.226107pt;}
.y20_c00071{bottom:229.239467pt;}
.y22_c00071{bottom:252.272107pt;}
.y1e_c00071{bottom:275.239467pt;}
.y1b_c00071{bottom:350.999467pt;}
.y1a_c00071{bottom:378.599467pt;}
.y19_c00071{bottom:406.199467pt;}
.y18_c00071{bottom:433.799467pt;}
.y17_c00071{bottom:461.399467pt;}
.y16_c00071{bottom:488.999467pt;}
.y15_c00071{bottom:516.599467pt;}
.y14_c00071{bottom:544.199467pt;}
.y13_c00071{bottom:571.799467pt;}
.y12_c00071{bottom:599.399467pt;}
.y11_c00071{bottom:626.999467pt;}
.y10_c00071{bottom:654.599467pt;}
.yf_c00071{bottom:682.199467pt;}
.ye_c00071{bottom:709.719467pt;}
.yd_c00071{bottom:737.319467pt;}
.yc_c00071{bottom:764.919467pt;}
.yb_c00071{bottom:792.519467pt;}
.ya_c00071{bottom:820.119467pt;}
.y9_c00071{bottom:847.719467pt;}
.y8_c00071{bottom:875.319467pt;}
.y7_c00071{bottom:930.519467pt;}
.y6_c00071{bottom:958.119467pt;}
.y5_c00071{bottom:985.719467pt;}
.y4_c00071{bottom:1013.319467pt;}
.y3_c00071{bottom:1043.480107pt;}
.y2_c00071{bottom:1061.399467pt;}
.h2_c00071{height:44.800000pt;}
.h3_c00071{height:48.294844pt;}
.h7_c00071{height:57.020480pt;}
.h4_c00071{height:68.288000pt;}
.h5_c00071{height:69.376000pt;}
.h6_c00071{height:114.960000pt;}
.h0_c00071{height:1122.520000pt;}
.h1_c00071{height:1122.666667pt;}
.w2_c00071{width:191.682667pt;}
.w0_c00071{width:793.701333pt;}
.w1_c00071{width:794.000000pt;}
.x0_c00071{left:0.000000pt;}
.x6_c00071{left:7.200000pt;}
.x1_c00071{left:48.000000pt;}
.x5_c00071{left:106.240000pt;}
.x2_c00071{left:113.440000pt;}
.x3_c00071{left:132.320000pt;}
.x4_c00071{left:151.280000pt;}
.x7_c00071{left:305.436560pt;}
.x8_c00071{left:550.792960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00072;src:url('chunks/assets/font_7b3635a759fe9e40461b694f.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00072;src:url('chunks/assets/font_87c27d528c1da0f4c6350eec.woff2')format("woff");}.ff3_c00072{font-family:ff3_c00072;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00072;src:url('chunks/assets/font_5d0138cbcdfdab3fbdaf1c3a.woff2')format("woff");}.ff4_c00072{font-family:ff4_c00072;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00072;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00072{font-family:ff5_c00072;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00072;src:url('chunks/assets/font_823f1fed30ef848f675a57e6.woff2')format("woff");}.ff6_c00072{font-family:ff6_c00072;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00072;src:url('chunks/assets/font_f4f9b8a692519e1998d4114d.woff2')format("woff");}.ff7_c00072{font-family:ff7_c00072;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00072;src:url('chunks/assets/font_5d0138cbcdfdab3fbdaf1c3a.woff2')format("woff");}.ff8_c00072{font-family:ff8_c00072;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00072;src:url('chunks/assets/font_f5d8d8a7f635e27ad37c9b2e.woff2')format("woff");}.ff9_c00072{font-family:ff9_c00072;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.lsa_c00072{letter-spacing:-0.541080px;}
.lsb_c00072{letter-spacing:-0.360720px;}
.lsc_c00072{letter-spacing:-0.360000px;}
.ls8_c00072{letter-spacing:-0.240480px;}
.ls9_c00072{letter-spacing:-0.180360px;}
.ls6_c00072{letter-spacing:-0.072000px;}
.ls5_c00072{letter-spacing:0.000000px;}
.ls0_c00072{letter-spacing:0.072000px;}
.ls7_c00072{letter-spacing:0.120240px;}
.ls1_c00072{letter-spacing:0.144000px;}
.ls3_c00072{letter-spacing:28.152000px;}
.ls4_c00072{letter-spacing:29.880000px;}
.ls2_c00072{letter-spacing:61.344000px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00072{word-spacing:-18.000000px;}
.ws15_c00072{word-spacing:-17.640000px;}
.wse_c00072{word-spacing:-15.150240px;}
.ws10_c00072{word-spacing:-14.669280px;}
.ws13_c00072{word-spacing:-0.792000px;}
.ws2a_c00072{word-spacing:-0.504000px;}
.ws3a_c00072{word-spacing:-0.360000px;}
.ws1c_c00072{word-spacing:-0.144000px;}
.ws18_c00072{word-spacing:-0.131760px;}
.ws33_c00072{word-spacing:-0.120240px;}
.ws26_c00072{word-spacing:-0.072000px;}
.ws37_c00072{word-spacing:-0.060120px;}
.ws17_c00072{word-spacing:0.000000px;}
.ws36_c00072{word-spacing:0.060120px;}
.ws28_c00072{word-spacing:0.072000px;}
.ws35_c00072{word-spacing:0.240480px;}
.ws47_c00072{word-spacing:0.360000px;}
.ws31_c00072{word-spacing:1.080000px;}
.ws30_c00072{word-spacing:1.368000px;}
.ws41_c00072{word-spacing:2.016000px;}
.ws27_c00072{word-spacing:2.088000px;}
.ws46_c00072{word-spacing:2.448000px;}
.ws51_c00072{word-spacing:2.520000px;}
.ws29_c00072{word-spacing:2.736000px;}
.ws4e_c00072{word-spacing:2.880000px;}
.ws38_c00072{word-spacing:3.168000px;}
.ws39_c00072{word-spacing:3.240000px;}
.ws1b_c00072{word-spacing:3.528000px;}
.ws1a_c00072{word-spacing:3.816000px;}
.ws0_c00072{word-spacing:4.104000px;}
.ws7_c00072{word-spacing:4.176000px;}
.ws25_c00072{word-spacing:4.968000px;}
.ws2f_c00072{word-spacing:5.328000px;}
.ws44_c00072{word-spacing:5.688000px;}
.ws2e_c00072{word-spacing:5.760000px;}
.ws43_c00072{word-spacing:6.048000px;}
.ws3f_c00072{word-spacing:6.408000px;}
.ws4c_c00072{word-spacing:6.696000px;}
.ws4b_c00072{word-spacing:6.768000px;}
.ws4d_c00072{word-spacing:6.840000px;}
.ws5_c00072{word-spacing:7.056000px;}
.ws4f_c00072{word-spacing:7.128000px;}
.ws50_c00072{word-spacing:7.200000px;}
.ws4a_c00072{word-spacing:7.560000px;}
.ws19_c00072{word-spacing:8.280000px;}
.ws3e_c00072{word-spacing:9.288000px;}
.ws3d_c00072{word-spacing:9.360000px;}
.ws3b_c00072{word-spacing:9.648000px;}
.ws3c_c00072{word-spacing:9.720000px;}
.ws32_c00072{word-spacing:10.080000px;}
.ws53_c00072{word-spacing:10.800000px;}
.wsc_c00072{word-spacing:11.052000px;}
.ws2d_c00072{word-spacing:11.088000px;}
.ws14_c00072{word-spacing:11.664000px;}
.ws20_c00072{word-spacing:11.808000px;}
.ws1f_c00072{word-spacing:11.880000px;}
.ws52_c00072{word-spacing:12.888000px;}
.ws1e_c00072{word-spacing:13.248000px;}
.ws2_c00072{word-spacing:13.896000px;}
.ws40_c00072{word-spacing:13.968000px;}
.ws21_c00072{word-spacing:15.048000px;}
.ws48_c00072{word-spacing:15.768000px;}
.ws49_c00072{word-spacing:15.840000px;}
.ws45_c00072{word-spacing:16.848000px;}
.ws42_c00072{word-spacing:19.800000px;}
.ws8_c00072{word-spacing:20.088000px;}
.ws9_c00072{word-spacing:20.808000px;}
.ws11_c00072{word-spacing:21.168000px;}
.ws2b_c00072{word-spacing:21.528000px;}
.ws2c_c00072{word-spacing:21.960000px;}
.wsa_c00072{word-spacing:22.248000px;}
.ws6_c00072{word-spacing:22.968000px;}
.wsd_c00072{word-spacing:23.551200px;}
.ws23_c00072{word-spacing:24.480000px;}
.ws24_c00072{word-spacing:24.768000px;}
.ws22_c00072{word-spacing:24.840000px;}
.ws1d_c00072{word-spacing:30.960000px;}
.ws3_c00072{word-spacing:31.248000px;}
.ws12_c00072{word-spacing:39.744000px;}
.wsb_c00072{word-spacing:39.751200px;}
.ws4_c00072{word-spacing:42.408000px;}
.ws34_c00072{word-spacing:51.102000px;}
.ws16_c00072{word-spacing:140.400000px;}
.wsf_c00072{word-spacing:527.613120px;}
._1_c00072{margin-left:-1.008000px;}
._0_c00072{width:1.054080px;}
._2_c00072{width:3.024000px;}
._3_c00072{width:19.728000px;}
.fc2_c00072{color:transparent;}
.fc1_c00072{color:rgb(0,0,0);}
.fc0_c00072{color:rgb(35,31,32);}
.fs2_c00072{font-size:60.120000px;}
.fs1_c00072{font-size:65.880000px;}
.fs0_c00072{font-size:72.000000px;}
.y0_c00072{bottom:0.000000px;}
.y1_c00072{bottom:61.748550px;}
.y28_c00072{bottom:63.809250px;}
.y1f_c00072{bottom:63.810750px;}
.y31_c00072{bottom:115.424400px;}
.y27_c00072{bottom:115.559250px;}
.y1d_c00072{bottom:115.560750px;}
.y25_c00072{bottom:141.344400px;}
.y30_c00072{bottom:146.474400px;}
.y24_c00072{bottom:172.394400px;}
.y2f_c00072{bottom:208.574400px;}
.y1c_c00072{bottom:220.003500px;}
.y26_c00072{bottom:220.005000px;}
.y21_c00072{bottom:232.057830px;}
.y2e_c00072{bottom:239.624400px;}
.y23_c00072{bottom:257.879370px;}
.y20_c00072{bottom:257.894400px;}
.y2d_c00072{bottom:270.674400px;}
.y22_c00072{bottom:283.806120px;}
.y2c_c00072{bottom:301.724400px;}
.y1e_c00072{bottom:309.644400px;}
.y2b_c00072{bottom:332.774400px;}
.y1b_c00072{bottom:394.874400px;}
.y1a_c00072{bottom:425.924400px;}
.y19_c00072{bottom:456.974400px;}
.y18_c00072{bottom:488.024400px;}
.y17_c00072{bottom:519.074400px;}
.y16_c00072{bottom:550.124400px;}
.y15_c00072{bottom:581.174400px;}
.y2a_c00072{bottom:612.044400px;}
.y14_c00072{bottom:612.224400px;}
.y13_c00072{bottom:643.274400px;}
.y12_c00072{bottom:674.324400px;}
.y11_c00072{bottom:705.374400px;}
.y10_c00072{bottom:736.424400px;}
.yf_c00072{bottom:767.474400px;}
.ye_c00072{bottom:798.434400px;}
.yd_c00072{bottom:829.484400px;}
.yc_c00072{bottom:860.534400px;}
.yb_c00072{bottom:891.584400px;}
.ya_c00072{bottom:922.634400px;}
.y9_c00072{bottom:953.684400px;}
.y8_c00072{bottom:984.734400px;}
.y29_c00072{bottom:1015.784400px;}
.y7_c00072{bottom:1046.834400px;}
.y6_c00072{bottom:1077.884400px;}
.y5_c00072{bottom:1108.934400px;}
.y4_c00072{bottom:1139.984400px;}
.y3_c00072{bottom:1173.915120px;}
.y2_c00072{bottom:1194.074400px;}
.h2_c00072{height:50.400000px;}
.h3_c00072{height:54.331699px;}
.h7_c00072{height:64.148040px;}
.h4_c00072{height:76.824000px;}
.h5_c00072{height:78.048000px;}
.h6_c00072{height:129.330000px;}
.h0_c00072{height:1262.835000px;}
.h1_c00072{height:1263.000000px;}
.w5_c00072{width:-557.752500px;}
.w3_c00072{width:-557.751000px;}
.w2_c00072{width:0.000000px;}
.w4_c00072{width:0.066000px;}
.w0_c00072{width:892.914000px;}
.w1_c00072{width:893.250000px;}
.x1_c00072{left:-838.913400px;}
.x2_c00072{left:-765.293400px;}
.x3_c00072{left:-744.053400px;}
.x4_c00072{left:-722.723400px;}
.x5_c00072{left:-549.297270px;}
.x6_c00072{left:-273.271320px;}
.x0_c00072{left:0.000000px;}
.x9_c00072{left:127.618740px;}
.xa_c00072{left:159.570000px;}
.x8_c00072{left:701.730000px;}
.x7_c00072{left:804.366150px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.lsa_c00072{letter-spacing:-0.480960pt;}
.lsb_c00072{letter-spacing:-0.320640pt;}
.lsc_c00072{letter-spacing:-0.320000pt;}
.ls8_c00072{letter-spacing:-0.213760pt;}
.ls9_c00072{letter-spacing:-0.160320pt;}
.ls6_c00072{letter-spacing:-0.064000pt;}
.ls5_c00072{letter-spacing:0.000000pt;}
.ls0_c00072{letter-spacing:0.064000pt;}
.ls7_c00072{letter-spacing:0.106880pt;}
.ls1_c00072{letter-spacing:0.128000pt;}
.ls3_c00072{letter-spacing:25.024000pt;}
.ls4_c00072{letter-spacing:26.560000pt;}
.ls2_c00072{letter-spacing:54.528000pt;}
.ws1_c00072{word-spacing:-16.000000pt;}
.ws15_c00072{word-spacing:-15.680000pt;}
.wse_c00072{word-spacing:-13.466880pt;}
.ws10_c00072{word-spacing:-13.039360pt;}
.ws13_c00072{word-spacing:-0.704000pt;}
.ws2a_c00072{word-spacing:-0.448000pt;}
.ws3a_c00072{word-spacing:-0.320000pt;}
.ws1c_c00072{word-spacing:-0.128000pt;}
.ws18_c00072{word-spacing:-0.117120pt;}
.ws33_c00072{word-spacing:-0.106880pt;}
.ws26_c00072{word-spacing:-0.064000pt;}
.ws37_c00072{word-spacing:-0.053440pt;}
.ws17_c00072{word-spacing:0.000000pt;}
.ws36_c00072{word-spacing:0.053440pt;}
.ws28_c00072{word-spacing:0.064000pt;}
.ws35_c00072{word-spacing:0.213760pt;}
.ws47_c00072{word-spacing:0.320000pt;}
.ws31_c00072{word-spacing:0.960000pt;}
.ws30_c00072{word-spacing:1.216000pt;}
.ws41_c00072{word-spacing:1.792000pt;}
.ws27_c00072{word-spacing:1.856000pt;}
.ws46_c00072{word-spacing:2.176000pt;}
.ws51_c00072{word-spacing:2.240000pt;}
.ws29_c00072{word-spacing:2.432000pt;}
.ws4e_c00072{word-spacing:2.560000pt;}
.ws38_c00072{word-spacing:2.816000pt;}
.ws39_c00072{word-spacing:2.880000pt;}
.ws1b_c00072{word-spacing:3.136000pt;}
.ws1a_c00072{word-spacing:3.392000pt;}
.ws0_c00072{word-spacing:3.648000pt;}
.ws7_c00072{word-spacing:3.712000pt;}
.ws25_c00072{word-spacing:4.416000pt;}
.ws2f_c00072{word-spacing:4.736000pt;}
.ws44_c00072{word-spacing:5.056000pt;}
.ws2e_c00072{word-spacing:5.120000pt;}
.ws43_c00072{word-spacing:5.376000pt;}
.ws3f_c00072{word-spacing:5.696000pt;}
.ws4c_c00072{word-spacing:5.952000pt;}
.ws4b_c00072{word-spacing:6.016000pt;}
.ws4d_c00072{word-spacing:6.080000pt;}
.ws5_c00072{word-spacing:6.272000pt;}
.ws4f_c00072{word-spacing:6.336000pt;}
.ws50_c00072{word-spacing:6.400000pt;}
.ws4a_c00072{word-spacing:6.720000pt;}
.ws19_c00072{word-spacing:7.360000pt;}
.ws3e_c00072{word-spacing:8.256000pt;}
.ws3d_c00072{word-spacing:8.320000pt;}
.ws3b_c00072{word-spacing:8.576000pt;}
.ws3c_c00072{word-spacing:8.640000pt;}
.ws32_c00072{word-spacing:8.960000pt;}
.ws53_c00072{word-spacing:9.600000pt;}
.wsc_c00072{word-spacing:9.824000pt;}
.ws2d_c00072{word-spacing:9.856000pt;}
.ws14_c00072{word-spacing:10.368000pt;}
.ws20_c00072{word-spacing:10.496000pt;}
.ws1f_c00072{word-spacing:10.560000pt;}
.ws52_c00072{word-spacing:11.456000pt;}
.ws1e_c00072{word-spacing:11.776000pt;}
.ws2_c00072{word-spacing:12.352000pt;}
.ws40_c00072{word-spacing:12.416000pt;}
.ws21_c00072{word-spacing:13.376000pt;}
.ws48_c00072{word-spacing:14.016000pt;}
.ws49_c00072{word-spacing:14.080000pt;}
.ws45_c00072{word-spacing:14.976000pt;}
.ws42_c00072{word-spacing:17.600000pt;}
.ws8_c00072{word-spacing:17.856000pt;}
.ws9_c00072{word-spacing:18.496000pt;}
.ws11_c00072{word-spacing:18.816000pt;}
.ws2b_c00072{word-spacing:19.136000pt;}
.ws2c_c00072{word-spacing:19.520000pt;}
.wsa_c00072{word-spacing:19.776000pt;}
.ws6_c00072{word-spacing:20.416000pt;}
.wsd_c00072{word-spacing:20.934400pt;}
.ws23_c00072{word-spacing:21.760000pt;}
.ws24_c00072{word-spacing:22.016000pt;}
.ws22_c00072{word-spacing:22.080000pt;}
.ws1d_c00072{word-spacing:27.520000pt;}
.ws3_c00072{word-spacing:27.776000pt;}
.ws12_c00072{word-spacing:35.328000pt;}
.wsb_c00072{word-spacing:35.334400pt;}
.ws4_c00072{word-spacing:37.696000pt;}
.ws34_c00072{word-spacing:45.424000pt;}
.ws16_c00072{word-spacing:124.800000pt;}
.wsf_c00072{word-spacing:468.989440pt;}
._1_c00072{margin-left:-0.896000pt;}
._0_c00072{width:0.936960pt;}
._2_c00072{width:2.688000pt;}
._3_c00072{width:17.536000pt;}
.fs2_c00072{font-size:53.440000pt;}
.fs1_c00072{font-size:58.560000pt;}
.fs0_c00072{font-size:64.000000pt;}
.y0_c00072{bottom:0.000000pt;}
.y1_c00072{bottom:54.887600pt;}
.y28_c00072{bottom:56.719333pt;}
.y1f_c00072{bottom:56.720667pt;}
.y31_c00072{bottom:102.599467pt;}
.y27_c00072{bottom:102.719333pt;}
.y1d_c00072{bottom:102.720667pt;}
.y25_c00072{bottom:125.639467pt;}
.y30_c00072{bottom:130.199467pt;}
.y24_c00072{bottom:153.239467pt;}
.y2f_c00072{bottom:185.399467pt;}
.y1c_c00072{bottom:195.558667pt;}
.y26_c00072{bottom:195.560000pt;}
.y21_c00072{bottom:206.273627pt;}
.y2e_c00072{bottom:212.999467pt;}
.y23_c00072{bottom:229.226107pt;}
.y20_c00072{bottom:229.239467pt;}
.y2d_c00072{bottom:240.599467pt;}
.y22_c00072{bottom:252.272107pt;}
.y2c_c00072{bottom:268.199467pt;}
.y1e_c00072{bottom:275.239467pt;}
.y2b_c00072{bottom:295.799467pt;}
.y1b_c00072{bottom:350.999467pt;}
.y1a_c00072{bottom:378.599467pt;}
.y19_c00072{bottom:406.199467pt;}
.y18_c00072{bottom:433.799467pt;}
.y17_c00072{bottom:461.399467pt;}
.y16_c00072{bottom:488.999467pt;}
.y15_c00072{bottom:516.599467pt;}
.y2a_c00072{bottom:544.039467pt;}
.y14_c00072{bottom:544.199467pt;}
.y13_c00072{bottom:571.799467pt;}
.y12_c00072{bottom:599.399467pt;}
.y11_c00072{bottom:626.999467pt;}
.y10_c00072{bottom:654.599467pt;}
.yf_c00072{bottom:682.199467pt;}
.ye_c00072{bottom:709.719467pt;}
.yd_c00072{bottom:737.319467pt;}
.yc_c00072{bottom:764.919467pt;}
.yb_c00072{bottom:792.519467pt;}
.ya_c00072{bottom:820.119467pt;}
.y9_c00072{bottom:847.719467pt;}
.y8_c00072{bottom:875.319467pt;}
.y29_c00072{bottom:902.919467pt;}
.y7_c00072{bottom:930.519467pt;}
.y6_c00072{bottom:958.119467pt;}
.y5_c00072{bottom:985.719467pt;}
.y4_c00072{bottom:1013.319467pt;}
.y3_c00072{bottom:1043.480107pt;}
.y2_c00072{bottom:1061.399467pt;}
.h2_c00072{height:44.800000pt;}
.h3_c00072{height:48.294844pt;}
.h7_c00072{height:57.020480pt;}
.h4_c00072{height:68.288000pt;}
.h5_c00072{height:69.376000pt;}
.h6_c00072{height:114.960000pt;}
.h0_c00072{height:1122.520000pt;}
.h1_c00072{height:1122.666667pt;}
.w5_c00072{width:-495.780000pt;}
.w3_c00072{width:-495.778667pt;}
.w2_c00072{width:0.000000pt;}
.w4_c00072{width:0.058667pt;}
.w0_c00072{width:793.701333pt;}
.w1_c00072{width:794.000000pt;}
.x1_c00072{left:-745.700800pt;}
.x2_c00072{left:-680.260800pt;}
.x3_c00072{left:-661.380800pt;}
.x4_c00072{left:-642.420800pt;}
.x5_c00072{left:-488.264240pt;}
.x6_c00072{left:-242.907840pt;}
.x0_c00072{left:0.000000pt;}
.x9_c00072{left:113.438880pt;}
.xa_c00072{left:141.840000pt;}
.x8_c00072{left:623.760000pt;}
.x7_c00072{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00073;src:url('chunks/assets/font_09e7adb43f8f5c942f44eea1.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00073;src:url('chunks/assets/font_c5456a09891e0c7b633301b5.woff2')format("woff");}.ff3_c00073{font-family:ff3_c00073;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00073;src:url('chunks/assets/font_cedd0e2e9a2808236022411a.woff2')format("woff");}.ff4_c00073{font-family:ff4_c00073;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.360000px;}
.ls5_c00073{letter-spacing:-0.072000px;}
.ls4_c00073{letter-spacing:0.000000px;}
.ls0_c00073{letter-spacing:0.072000px;}
.ls3_c00073{letter-spacing:0.144000px;}
.ls1_c00073{letter-spacing:19.440000px;}
.ls2_c00073{letter-spacing:21.240000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00073{word-spacing:-18.144000px;}
.ws3_c00073{word-spacing:-0.576000px;}
.ws5_c00073{word-spacing:-0.131760px;}
.ws7_c00073{word-spacing:-0.072000px;}
.ws4_c00073{word-spacing:0.000000px;}
.wsd_c00073{word-spacing:1.296000px;}
.wsc_c00073{word-spacing:1.440000px;}
.ws1_c00073{word-spacing:2.232000px;}
.wsf_c00073{word-spacing:2.808000px;}
.wse_c00073{word-spacing:3.240000px;}
.ws8_c00073{word-spacing:8.928000px;}
.wsa_c00073{word-spacing:11.592000px;}
.ws0_c00073{word-spacing:11.736000px;}
.wsb_c00073{word-spacing:11.808000px;}
.ws9_c00073{word-spacing:11.880000px;}
.ws6_c00073{word-spacing:20.160000px;}
._1_c00073{margin-left:-1.022400px;}
._0_c00073{width:1.054080px;}
._2_c00073{width:3.121920px;}
.fc1_c00073{color:rgb(0,0,0);}
.fc0_c00073{color:rgb(35,31,32);}
.fs1_c00073{font-size:65.880000px;}
.fs0_c00073{font-size:72.000000px;}
.y0_c00073{bottom:0.000000px;}
.y1_c00073{bottom:61.748550px;}
.ya_c00073{bottom:922.634400px;}
.y9_c00073{bottom:953.684400px;}
.y8_c00073{bottom:984.734400px;}
.y7_c00073{bottom:1015.784400px;}
.y6_c00073{bottom:1046.834400px;}
.y5_c00073{bottom:1108.934400px;}
.y4_c00073{bottom:1139.984400px;}
.y3_c00073{bottom:1173.915120px;}
.y2_c00073{bottom:1194.074400px;}
.h2_c00073{height:50.400000px;}
.h3_c00073{height:54.331699px;}
.h4_c00073{height:76.824000px;}
.h5_c00073{height:78.048000px;}
.h0_c00073{height:1262.835000px;}
.h1_c00073{height:1263.000000px;}
.w0_c00073{width:892.914000px;}
.w1_c00073{width:893.250000px;}
.x0_c00073{left:0.000000px;}
.x1_c00073{left:54.000000px;}
.x2_c00073{left:127.620000px;}
.x3_c00073{left:159.570000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls6_c00073{letter-spacing:-0.320000pt;}
.ls5_c00073{letter-spacing:-0.064000pt;}
.ls4_c00073{letter-spacing:0.000000pt;}
.ls0_c00073{letter-spacing:0.064000pt;}
.ls3_c00073{letter-spacing:0.128000pt;}
.ls1_c00073{letter-spacing:17.280000pt;}
.ls2_c00073{letter-spacing:18.880000pt;}
.ws2_c00073{word-spacing:-16.128000pt;}
.ws3_c00073{word-spacing:-0.512000pt;}
.ws5_c00073{word-spacing:-0.117120pt;}
.ws7_c00073{word-spacing:-0.064000pt;}
.ws4_c00073{word-spacing:0.000000pt;}
.wsd_c00073{word-spacing:1.152000pt;}
.wsc_c00073{word-spacing:1.280000pt;}
.ws1_c00073{word-spacing:1.984000pt;}
.wsf_c00073{word-spacing:2.496000pt;}
.wse_c00073{word-spacing:2.880000pt;}
.ws8_c00073{word-spacing:7.936000pt;}
.wsa_c00073{word-spacing:10.304000pt;}
.ws0_c00073{word-spacing:10.432000pt;}
.wsb_c00073{word-spacing:10.496000pt;}
.ws9_c00073{word-spacing:10.560000pt;}
.ws6_c00073{word-spacing:17.920000pt;}
._1_c00073{margin-left:-0.908800pt;}
._0_c00073{width:0.936960pt;}
._2_c00073{width:2.775040pt;}
.fs1_c00073{font-size:58.560000pt;}
.fs0_c00073{font-size:64.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y1_c00073{bottom:54.887600pt;}
.ya_c00073{bottom:820.119467pt;}
.y9_c00073{bottom:847.719467pt;}
.y8_c00073{bottom:875.319467pt;}
.y7_c00073{bottom:902.919467pt;}
.y6_c00073{bottom:930.519467pt;}
.y5_c00073{bottom:985.719467pt;}
.y4_c00073{bottom:1013.319467pt;}
.y3_c00073{bottom:1043.480107pt;}
.y2_c00073{bottom:1061.399467pt;}
.h2_c00073{height:44.800000pt;}
.h3_c00073{height:48.294844pt;}
.h4_c00073{height:68.288000pt;}
.h5_c00073{height:69.376000pt;}
.h0_c00073{height:1122.520000pt;}
.h1_c00073{height:1122.666667pt;}
.w0_c00073{width:793.701333pt;}
.w1_c00073{width:794.000000pt;}
.x0_c00073{left:0.000000pt;}
.x1_c00073{left:48.000000pt;}
.x2_c00073{left:113.440000pt;}
.x3_c00073{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00074;src:url('chunks/assets/font_175f5b36f2be00c843d8e433.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00074;src:url('chunks/assets/font_0f687dd1f1d21d8f82a49cfa.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.575000;font-style:normal;font-weight:normal;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_5abc44062021fbd4c83c099a.woff2')format("woff");}.ff4_c00074{font-family:ff4_c00074;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00074;src:url('chunks/assets/font_175f5b36f2be00c843d8e433.woff2')format("woff");}.ff5_c00074{font-family:ff5_c00074;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00074;src:url('chunks/assets/font_0f687dd1f1d21d8f82a49cfa.woff2')format("woff");}.ff6_c00074{font-family:ff6_c00074;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00074;src:url('chunks/assets/font_59ecafcba316f3bf061d00eb.woff2')format("woff");}.ff7_c00074{font-family:ff7_c00074;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls6_c00074{letter-spacing:-0.360000px;}
.ls5_c00074{letter-spacing:-0.072000px;}
.ls4_c00074{letter-spacing:0.000000px;}
.ls0_c00074{letter-spacing:0.072000px;}
.ls3_c00074{letter-spacing:0.144000px;}
.ls1_c00074{letter-spacing:19.440000px;}
.ls2_c00074{letter-spacing:21.240000px;}
.sc__c00074{text-shadow:none;}
.sc0_c00074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00074{-webkit-text-stroke:0px transparent;}
.sc0_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00074{word-spacing:-18.144000px;}
.ws3_c00074{word-spacing:-0.576000px;}
.ws5_c00074{word-spacing:-0.131760px;}
.ws7_c00074{word-spacing:-0.072000px;}
.ws4_c00074{word-spacing:0.000000px;}
.wsd_c00074{word-spacing:1.296000px;}
.wsc_c00074{word-spacing:1.440000px;}
.ws1_c00074{word-spacing:2.232000px;}
.wsf_c00074{word-spacing:2.808000px;}
.wse_c00074{word-spacing:3.240000px;}
.ws8_c00074{word-spacing:8.928000px;}
.wsa_c00074{word-spacing:11.592000px;}
.ws0_c00074{word-spacing:11.736000px;}
.wsb_c00074{word-spacing:11.808000px;}
.ws9_c00074{word-spacing:11.880000px;}
.ws6_c00074{word-spacing:20.160000px;}
._1_c00074{margin-left:-1.022400px;}
._0_c00074{width:1.054080px;}
._2_c00074{width:3.121920px;}
.fc2_c00074{color:transparent;}
.fc1_c00074{color:rgb(0,0,0);}
.fc0_c00074{color:rgb(35,31,32);}
.fs1_c00074{font-size:65.880000px;}
.fs0_c00074{font-size:72.000000px;}
.y0_c00074{bottom:0.000000px;}
.y1_c00074{bottom:61.748550px;}
.ya_c00074{bottom:922.634400px;}
.y9_c00074{bottom:953.684400px;}
.y8_c00074{bottom:984.734400px;}
.y7_c00074{bottom:1015.784400px;}
.y6_c00074{bottom:1046.834400px;}
.y5_c00074{bottom:1108.934400px;}
.y4_c00074{bottom:1139.984400px;}
.y3_c00074{bottom:1173.915120px;}
.y2_c00074{bottom:1194.074400px;}
.h2_c00074{height:50.400000px;}
.h3_c00074{height:54.331699px;}
.h4_c00074{height:76.824000px;}
.h5_c00074{height:78.048000px;}
.h0_c00074{height:1262.835000px;}
.h1_c00074{height:1263.000000px;}
.w2_c00074{width:0.000000px;}
.w3_c00074{width:0.066000px;}
.w0_c00074{width:892.914000px;}
.w1_c00074{width:893.250000px;}
.x1_c00074{left:-838.913400px;}
.x2_c00074{left:-765.293400px;}
.x3_c00074{left:-733.343400px;}
.x0_c00074{left:0.000000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls6_c00074{letter-spacing:-0.320000pt;}
.ls5_c00074{letter-spacing:-0.064000pt;}
.ls4_c00074{letter-spacing:0.000000pt;}
.ls0_c00074{letter-spacing:0.064000pt;}
.ls3_c00074{letter-spacing:0.128000pt;}
.ls1_c00074{letter-spacing:17.280000pt;}
.ls2_c00074{letter-spacing:18.880000pt;}
.ws2_c00074{word-spacing:-16.128000pt;}
.ws3_c00074{word-spacing:-0.512000pt;}
.ws5_c00074{word-spacing:-0.117120pt;}
.ws7_c00074{word-spacing:-0.064000pt;}
.ws4_c00074{word-spacing:0.000000pt;}
.wsd_c00074{word-spacing:1.152000pt;}
.wsc_c00074{word-spacing:1.280000pt;}
.ws1_c00074{word-spacing:1.984000pt;}
.wsf_c00074{word-spacing:2.496000pt;}
.wse_c00074{word-spacing:2.880000pt;}
.ws8_c00074{word-spacing:7.936000pt;}
.wsa_c00074{word-spacing:10.304000pt;}
.ws0_c00074{word-spacing:10.432000pt;}
.wsb_c00074{word-spacing:10.496000pt;}
.ws9_c00074{word-spacing:10.560000pt;}
.ws6_c00074{word-spacing:17.920000pt;}
._1_c00074{margin-left:-0.908800pt;}
._0_c00074{width:0.936960pt;}
._2_c00074{width:2.775040pt;}
.fs1_c00074{font-size:58.560000pt;}
.fs0_c00074{font-size:64.000000pt;}
.y0_c00074{bottom:0.000000pt;}
.y1_c00074{bottom:54.887600pt;}
.ya_c00074{bottom:820.119467pt;}
.y9_c00074{bottom:847.719467pt;}
.y8_c00074{bottom:875.319467pt;}
.y7_c00074{bottom:902.919467pt;}
.y6_c00074{bottom:930.519467pt;}
.y5_c00074{bottom:985.719467pt;}
.y4_c00074{bottom:1013.319467pt;}
.y3_c00074{bottom:1043.480107pt;}
.y2_c00074{bottom:1061.399467pt;}
.h2_c00074{height:44.800000pt;}
.h3_c00074{height:48.294844pt;}
.h4_c00074{height:68.288000pt;}
.h5_c00074{height:69.376000pt;}
.h0_c00074{height:1122.520000pt;}
.h1_c00074{height:1122.666667pt;}
.w2_c00074{width:0.000000pt;}
.w3_c00074{width:0.058667pt;}
.w0_c00074{width:793.701333pt;}
.w1_c00074{width:794.000000pt;}
.x1_c00074{left:-745.700800pt;}
.x2_c00074{left:-680.260800pt;}
.x3_c00074{left:-651.860800pt;}
.x0_c00074{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_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;}
.sc__c00075{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
}
.y0_c00075{bottom:0.000000px;}
.h0_c00075{height:1262.835000px;}
.h1_c00075{height:1263.000000px;}
.w0_c00075{width:892.914000px;}
.w1_c00075{width:893.250000px;}
.x0_c00075{left:0.000000px;}
@media print{
.y0_c00075{bottom:0.000000pt;}
.h0_c00075{height:1122.520000pt;}
.h1_c00075{height:1122.666667pt;}
.w0_c00075{width:793.701333pt;}
.w1_c00075{width:794.000000pt;}
.x0_c00075{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_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_a655416a9f8dba910e14159a.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.ls6_c00076{letter-spacing:-0.576000px;}
.ls7_c00076{letter-spacing:-0.216000px;}
.ls4_c00076{letter-spacing:-0.144000px;}
.ls3_c00076{letter-spacing:-0.065880px;}
.ls5_c00076{letter-spacing:0.000000px;}
.ls2_c00076{letter-spacing:0.065880px;}
.ls0_c00076{letter-spacing:0.072000px;}
.ls8_c00076{letter-spacing:0.144000px;}
.ls1_c00076{letter-spacing:22.680000px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00076{word-spacing:-18.072000px;}
.ws5_c00076{word-spacing:-18.000000px;}
.ws1_c00076{word-spacing:-17.856000px;}
.ws7_c00076{word-spacing:-17.784000px;}
.ws3_c00076{word-spacing:-17.424000px;}
.ws0_c00076{word-spacing:-16.404120px;}
.ws17_c00076{word-spacing:-0.432000px;}
.ws13_c00076{word-spacing:-0.072000px;}
.ws9_c00076{word-spacing:0.000000px;}
.wse_c00076{word-spacing:0.648000px;}
.ws4_c00076{word-spacing:0.712800px;}
.ws2_c00076{word-spacing:0.720000px;}
.ws1a_c00076{word-spacing:2.736000px;}
.ws1b_c00076{word-spacing:2.808000px;}
.ws11_c00076{word-spacing:4.248000px;}
.ws10_c00076{word-spacing:4.608000px;}
.wsb_c00076{word-spacing:4.680000px;}
.ws15_c00076{word-spacing:4.968000px;}
.ws6_c00076{word-spacing:5.040000px;}
.wsa_c00076{word-spacing:5.328000px;}
.wsf_c00076{word-spacing:5.400000px;}
.ws14_c00076{word-spacing:6.840000px;}
.wsd_c00076{word-spacing:7.848000px;}
.ws12_c00076{word-spacing:8.280000px;}
.ws19_c00076{word-spacing:12.240000px;}
.ws1d_c00076{word-spacing:13.608000px;}
.ws1c_c00076{word-spacing:14.760000px;}
.ws18_c00076{word-spacing:15.480000px;}
.wsc_c00076{word-spacing:17.568000px;}
.ws16_c00076{word-spacing:19.800000px;}
._1_c00076{margin-left:-1.008000px;}
._0_c00076{width:1.080000px;}
._2_c00076{width:4.608000px;}
.fc0_c00076{color:rgb(0,0,0);}
.fs0_c00076{font-size:65.880000px;}
.fs1_c00076{font-size:72.000000px;}
.y0_c00076{bottom:0.000000px;}
.y1b_c00076{bottom:180.134250px;}
.y1a_c00076{bottom:211.184250px;}
.y19_c00076{bottom:242.234250px;}
.y18_c00076{bottom:273.284250px;}
.y17_c00076{bottom:304.334250px;}
.y16_c00076{bottom:366.434250px;}
.y15_c00076{bottom:397.484250px;}
.y14_c00076{bottom:428.534250px;}
.y13_c00076{bottom:459.584250px;}
.y12_c00076{bottom:490.634250px;}
.y11_c00076{bottom:521.594250px;}
.y10_c00076{bottom:552.644250px;}
.yf_c00076{bottom:614.744250px;}
.ye_c00076{bottom:645.794250px;}
.yd_c00076{bottom:676.844250px;}
.yc_c00076{bottom:707.894250px;}
.yb_c00076{bottom:738.944250px;}
.ya_c00076{bottom:801.044250px;}
.y9_c00076{bottom:832.094250px;}
.y8_c00076{bottom:863.144250px;}
.y7_c00076{bottom:894.194250px;}
.y6_c00076{bottom:925.244250px;}
.y5_c00076{bottom:956.294250px;}
.y4_c00076{bottom:987.344250px;}
.y3_c00076{bottom:1018.394250px;}
.y2_c00076{bottom:1080.494250px;}
.y1_c00076{bottom:1141.244250px;}
.h2_c00076{height:70.293960px;}
.h3_c00076{height:76.824000px;}
.h0_c00076{height:1262.835000px;}
.h1_c00076{height:1263.000000px;}
.w0_c00076{width:892.914000px;}
.w1_c00076{width:893.250000px;}
.x0_c00076{left:0.000000px;}
.x1_c00076{left:127.620000px;}
.x2_c00076{left:159.570000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls6_c00076{letter-spacing:-0.512000pt;}
.ls7_c00076{letter-spacing:-0.192000pt;}
.ls4_c00076{letter-spacing:-0.128000pt;}
.ls3_c00076{letter-spacing:-0.058560pt;}
.ls5_c00076{letter-spacing:0.000000pt;}
.ls2_c00076{letter-spacing:0.058560pt;}
.ls0_c00076{letter-spacing:0.064000pt;}
.ls8_c00076{letter-spacing:0.128000pt;}
.ls1_c00076{letter-spacing:20.160000pt;}
.ws8_c00076{word-spacing:-16.064000pt;}
.ws5_c00076{word-spacing:-16.000000pt;}
.ws1_c00076{word-spacing:-15.872000pt;}
.ws7_c00076{word-spacing:-15.808000pt;}
.ws3_c00076{word-spacing:-15.488000pt;}
.ws0_c00076{word-spacing:-14.581440pt;}
.ws17_c00076{word-spacing:-0.384000pt;}
.ws13_c00076{word-spacing:-0.064000pt;}
.ws9_c00076{word-spacing:0.000000pt;}
.wse_c00076{word-spacing:0.576000pt;}
.ws4_c00076{word-spacing:0.633600pt;}
.ws2_c00076{word-spacing:0.640000pt;}
.ws1a_c00076{word-spacing:2.432000pt;}
.ws1b_c00076{word-spacing:2.496000pt;}
.ws11_c00076{word-spacing:3.776000pt;}
.ws10_c00076{word-spacing:4.096000pt;}
.wsb_c00076{word-spacing:4.160000pt;}
.ws15_c00076{word-spacing:4.416000pt;}
.ws6_c00076{word-spacing:4.480000pt;}
.wsa_c00076{word-spacing:4.736000pt;}
.wsf_c00076{word-spacing:4.800000pt;}
.ws14_c00076{word-spacing:6.080000pt;}
.wsd_c00076{word-spacing:6.976000pt;}
.ws12_c00076{word-spacing:7.360000pt;}
.ws19_c00076{word-spacing:10.880000pt;}
.ws1d_c00076{word-spacing:12.096000pt;}
.ws1c_c00076{word-spacing:13.120000pt;}
.ws18_c00076{word-spacing:13.760000pt;}
.wsc_c00076{word-spacing:15.616000pt;}
.ws16_c00076{word-spacing:17.600000pt;}
._1_c00076{margin-left:-0.896000pt;}
._0_c00076{width:0.960000pt;}
._2_c00076{width:4.096000pt;}
.fs0_c00076{font-size:58.560000pt;}
.fs1_c00076{font-size:64.000000pt;}
.y0_c00076{bottom:0.000000pt;}
.y1b_c00076{bottom:160.119333pt;}
.y1a_c00076{bottom:187.719333pt;}
.y19_c00076{bottom:215.319333pt;}
.y18_c00076{bottom:242.919333pt;}
.y17_c00076{bottom:270.519333pt;}
.y16_c00076{bottom:325.719333pt;}
.y15_c00076{bottom:353.319333pt;}
.y14_c00076{bottom:380.919333pt;}
.y13_c00076{bottom:408.519333pt;}
.y12_c00076{bottom:436.119333pt;}
.y11_c00076{bottom:463.639333pt;}
.y10_c00076{bottom:491.239333pt;}
.yf_c00076{bottom:546.439333pt;}
.ye_c00076{bottom:574.039333pt;}
.yd_c00076{bottom:601.639333pt;}
.yc_c00076{bottom:629.239333pt;}
.yb_c00076{bottom:656.839333pt;}
.ya_c00076{bottom:712.039333pt;}
.y9_c00076{bottom:739.639333pt;}
.y8_c00076{bottom:767.239333pt;}
.y7_c00076{bottom:794.839333pt;}
.y6_c00076{bottom:822.439333pt;}
.y5_c00076{bottom:850.039333pt;}
.y4_c00076{bottom:877.639333pt;}
.y3_c00076{bottom:905.239333pt;}
.y2_c00076{bottom:960.439333pt;}
.y1_c00076{bottom:1014.439333pt;}
.h2_c00076{height:62.483520pt;}
.h3_c00076{height:68.288000pt;}
.h0_c00076{height:1122.520000pt;}
.h1_c00076{height:1122.666667pt;}
.w0_c00076{width:793.701333pt;}
.w1_c00076{width:794.000000pt;}
.x0_c00076{left:0.000000pt;}
.x1_c00076{left:113.440000pt;}
.x2_c00076{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00077{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
}
.y0_c00077{bottom:0.000000px;}
.h0_c00077{height:1262.835000px;}
.h1_c00077{height:1263.000000px;}
.w0_c00077{width:892.914000px;}
.w1_c00077{width:893.250000px;}
.x0_c00077{left:0.000000px;}
@media print{
.y0_c00077{bottom:0.000000pt;}
.h0_c00077{height:1122.520000pt;}
.h1_c00077{height:1122.666667pt;}
.w0_c00077{width:793.701333pt;}
.w1_c00077{width:794.000000pt;}
.x0_c00077{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_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00078;src:url('chunks/assets/font_e168a2def39329eb02e436aa.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00078;src:url('chunks/assets/font_3b56c115e8a1e82cb593f11b.woff2')format("woff");}.ff3_c00078{font-family:ff3_c00078;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00078;src:url('chunks/assets/font_211fc571a6f011feec430ad6.woff2')format("woff");}.ff4_c00078{font-family:ff4_c00078;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00078;src:url('chunks/assets/font_4cd89ad05f9831626b488a2a.woff2')format("woff");}.ff5_c00078{font-family:ff5_c00078;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00078{letter-spacing:-0.072000px;}
.ls4_c00078{letter-spacing:0.000000px;}
.ls0_c00078{letter-spacing:0.072000px;}
.ls1_c00078{letter-spacing:0.129600px;}
.ls2_c00078{letter-spacing:0.144000px;}
.ls3_c00078{letter-spacing:21.960000px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00078{word-spacing:-18.072000px;}
.ws1_c00078{word-spacing:-18.000000px;}
.ws9_c00078{word-spacing:-0.131760px;}
.wsa_c00078{word-spacing:-0.072000px;}
.ws8_c00078{word-spacing:0.000000px;}
.ws3_c00078{word-spacing:0.144000px;}
.ws1f_c00078{word-spacing:0.648000px;}
.ws18_c00078{word-spacing:1.080000px;}
.ws25_c00078{word-spacing:1.368000px;}
.ws15_c00078{word-spacing:1.656000px;}
.ws14_c00078{word-spacing:1.800000px;}
.ws1e_c00078{word-spacing:2.088000px;}
.wse_c00078{word-spacing:2.448000px;}
.wsd_c00078{word-spacing:2.520000px;}
.ws1b_c00078{word-spacing:3.528000px;}
.ws1c_c00078{word-spacing:3.888000px;}
.ws1d_c00078{word-spacing:3.960000px;}
.wsc_c00078{word-spacing:4.248000px;}
.ws10_c00078{word-spacing:4.320000px;}
.ws2_c00078{word-spacing:4.392000px;}
.wsf_c00078{word-spacing:4.608000px;}
.wsb_c00078{word-spacing:4.968000px;}
.ws26_c00078{word-spacing:5.544000px;}
.ws27_c00078{word-spacing:5.760000px;}
.ws22_c00078{word-spacing:7.848000px;}
.ws23_c00078{word-spacing:7.920000px;}
.ws24_c00078{word-spacing:11.880000px;}
.ws1a_c00078{word-spacing:12.528000px;}
.ws19_c00078{word-spacing:12.888000px;}
.ws6_c00078{word-spacing:13.032000px;}
.ws11_c00078{word-spacing:15.480000px;}
.ws17_c00078{word-spacing:15.768000px;}
.ws20_c00078{word-spacing:17.208000px;}
.ws7_c00078{word-spacing:19.800000px;}
.ws16_c00078{word-spacing:24.048000px;}
.ws4_c00078{word-spacing:24.552000px;}
.ws12_c00078{word-spacing:24.696000px;}
.ws13_c00078{word-spacing:24.768000px;}
.ws21_c00078{word-spacing:25.128000px;}
.ws0_c00078{word-spacing:55.800000px;}
._0_c00078{margin-left:-1.094400px;}
._3_c00078{width:1.080000px;}
._1_c00078{width:2.678400px;}
._2_c00078{width:4.176000px;}
.fc1_c00078{color:rgb(0,0,0);}
.fc0_c00078{color:rgb(35,31,32);}
.fs1_c00078{font-size:65.880000px;}
.fs0_c00078{font-size:72.000000px;}
.y0_c00078{bottom:0.000000px;}
.y1_c00078{bottom:61.748550px;}
.y1d_c00078{bottom:182.744400px;}
.y1c_c00078{bottom:213.794400px;}
.y1b_c00078{bottom:244.844400px;}
.y1a_c00078{bottom:275.804400px;}
.y19_c00078{bottom:306.854400px;}
.y18_c00078{bottom:337.904400px;}
.y17_c00078{bottom:368.954400px;}
.y16_c00078{bottom:400.004400px;}
.y15_c00078{bottom:461.924400px;}
.y14_c00078{bottom:524.204400px;}
.y13_c00078{bottom:555.254400px;}
.y12_c00078{bottom:586.304400px;}
.y11_c00078{bottom:617.354400px;}
.y10_c00078{bottom:648.404400px;}
.yf_c00078{bottom:710.504400px;}
.ye_c00078{bottom:741.554400px;}
.yd_c00078{bottom:772.604400px;}
.yc_c00078{bottom:803.654400px;}
.yb_c00078{bottom:834.704400px;}
.ya_c00078{bottom:896.804400px;}
.y9_c00078{bottom:927.764400px;}
.y8_c00078{bottom:958.904400px;}
.y7_c00078{bottom:989.954400px;}
.y6_c00078{bottom:1021.004400px;}
.y5_c00078{bottom:1052.054400px;}
.y4_c00078{bottom:1083.104400px;}
.y3_c00078{bottom:1139.804400px;}
.y2_c00078{bottom:1194.074400px;}
.h2_c00078{height:50.400000px;}
.h3_c00078{height:54.331699px;}
.h4_c00078{height:76.824000px;}
.h5_c00078{height:78.048000px;}
.h0_c00078{height:1262.835000px;}
.h1_c00078{height:1263.000000px;}
.w0_c00078{width:892.914000px;}
.w1_c00078{width:893.250000px;}
.x0_c00078{left:0.000000px;}
.x3_c00078{left:127.620000px;}
.x4_c00078{left:159.570000px;}
.x2_c00078{left:697.590000px;}
.x1_c00078{left:804.366150px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls5_c00078{letter-spacing:-0.064000pt;}
.ls4_c00078{letter-spacing:0.000000pt;}
.ls0_c00078{letter-spacing:0.064000pt;}
.ls1_c00078{letter-spacing:0.115200pt;}
.ls2_c00078{letter-spacing:0.128000pt;}
.ls3_c00078{letter-spacing:19.520000pt;}
.ws5_c00078{word-spacing:-16.064000pt;}
.ws1_c00078{word-spacing:-16.000000pt;}
.ws9_c00078{word-spacing:-0.117120pt;}
.wsa_c00078{word-spacing:-0.064000pt;}
.ws8_c00078{word-spacing:0.000000pt;}
.ws3_c00078{word-spacing:0.128000pt;}
.ws1f_c00078{word-spacing:0.576000pt;}
.ws18_c00078{word-spacing:0.960000pt;}
.ws25_c00078{word-spacing:1.216000pt;}
.ws15_c00078{word-spacing:1.472000pt;}
.ws14_c00078{word-spacing:1.600000pt;}
.ws1e_c00078{word-spacing:1.856000pt;}
.wse_c00078{word-spacing:2.176000pt;}
.wsd_c00078{word-spacing:2.240000pt;}
.ws1b_c00078{word-spacing:3.136000pt;}
.ws1c_c00078{word-spacing:3.456000pt;}
.ws1d_c00078{word-spacing:3.520000pt;}
.wsc_c00078{word-spacing:3.776000pt;}
.ws10_c00078{word-spacing:3.840000pt;}
.ws2_c00078{word-spacing:3.904000pt;}
.wsf_c00078{word-spacing:4.096000pt;}
.wsb_c00078{word-spacing:4.416000pt;}
.ws26_c00078{word-spacing:4.928000pt;}
.ws27_c00078{word-spacing:5.120000pt;}
.ws22_c00078{word-spacing:6.976000pt;}
.ws23_c00078{word-spacing:7.040000pt;}
.ws24_c00078{word-spacing:10.560000pt;}
.ws1a_c00078{word-spacing:11.136000pt;}
.ws19_c00078{word-spacing:11.456000pt;}
.ws6_c00078{word-spacing:11.584000pt;}
.ws11_c00078{word-spacing:13.760000pt;}
.ws17_c00078{word-spacing:14.016000pt;}
.ws20_c00078{word-spacing:15.296000pt;}
.ws7_c00078{word-spacing:17.600000pt;}
.ws16_c00078{word-spacing:21.376000pt;}
.ws4_c00078{word-spacing:21.824000pt;}
.ws12_c00078{word-spacing:21.952000pt;}
.ws13_c00078{word-spacing:22.016000pt;}
.ws21_c00078{word-spacing:22.336000pt;}
.ws0_c00078{word-spacing:49.600000pt;}
._0_c00078{margin-left:-0.972800pt;}
._3_c00078{width:0.960000pt;}
._1_c00078{width:2.380800pt;}
._2_c00078{width:3.712000pt;}
.fs1_c00078{font-size:58.560000pt;}
.fs0_c00078{font-size:64.000000pt;}
.y0_c00078{bottom:0.000000pt;}
.y1_c00078{bottom:54.887600pt;}
.y1d_c00078{bottom:162.439467pt;}
.y1c_c00078{bottom:190.039467pt;}
.y1b_c00078{bottom:217.639467pt;}
.y1a_c00078{bottom:245.159467pt;}
.y19_c00078{bottom:272.759467pt;}
.y18_c00078{bottom:300.359467pt;}
.y17_c00078{bottom:327.959467pt;}
.y16_c00078{bottom:355.559467pt;}
.y15_c00078{bottom:410.599467pt;}
.y14_c00078{bottom:465.959467pt;}
.y13_c00078{bottom:493.559467pt;}
.y12_c00078{bottom:521.159467pt;}
.y11_c00078{bottom:548.759467pt;}
.y10_c00078{bottom:576.359467pt;}
.yf_c00078{bottom:631.559467pt;}
.ye_c00078{bottom:659.159467pt;}
.yd_c00078{bottom:686.759467pt;}
.yc_c00078{bottom:714.359467pt;}
.yb_c00078{bottom:741.959467pt;}
.ya_c00078{bottom:797.159467pt;}
.y9_c00078{bottom:824.679467pt;}
.y8_c00078{bottom:852.359467pt;}
.y7_c00078{bottom:879.959467pt;}
.y6_c00078{bottom:907.559467pt;}
.y5_c00078{bottom:935.159467pt;}
.y4_c00078{bottom:962.759467pt;}
.y3_c00078{bottom:1013.159467pt;}
.y2_c00078{bottom:1061.399467pt;}
.h2_c00078{height:44.800000pt;}
.h3_c00078{height:48.294844pt;}
.h4_c00078{height:68.288000pt;}
.h5_c00078{height:69.376000pt;}
.h0_c00078{height:1122.520000pt;}
.h1_c00078{height:1122.666667pt;}
.w0_c00078{width:793.701333pt;}
.w1_c00078{width:794.000000pt;}
.x0_c00078{left:0.000000pt;}
.x3_c00078{left:113.440000pt;}
.x4_c00078{left:141.840000pt;}
.x2_c00078{left:620.080000pt;}
.x1_c00078{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00079;src:url('chunks/assets/font_d320a63fc503a01781269499.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00079;src:url('chunks/assets/font_2abe3f9eda4a5cc1bb6fc154.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00079{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.ls4_c00079{letter-spacing:0.000000px;}
.ls0_c00079{letter-spacing:0.072000px;}
.ls3_c00079{letter-spacing:0.144000px;}
.ls1_c00079{letter-spacing:18.360000px;}
.ls2_c00079{letter-spacing:29.908800px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00079{word-spacing:-18.000000px;}
.ws13_c00079{word-spacing:-0.144000px;}
.ws3_c00079{word-spacing:-0.131760px;}
.ws7_c00079{word-spacing:-0.072000px;}
.ws2_c00079{word-spacing:0.000000px;}
.ws8_c00079{word-spacing:0.360000px;}
.ws21_c00079{word-spacing:0.720000px;}
.wsf_c00079{word-spacing:1.008000px;}
.wse_c00079{word-spacing:1.080000px;}
.ws10_c00079{word-spacing:1.440000px;}
.ws28_c00079{word-spacing:1.800000px;}
.ws19_c00079{word-spacing:2.088000px;}
.ws1a_c00079{word-spacing:2.520000px;}
.ws15_c00079{word-spacing:3.168000px;}
.ws14_c00079{word-spacing:3.240000px;}
.ws29_c00079{word-spacing:4.248000px;}
.ws26_c00079{word-spacing:4.320000px;}
.ws1f_c00079{word-spacing:5.328000px;}
.ws20_c00079{word-spacing:5.400000px;}
.ws2a_c00079{word-spacing:6.840000px;}
.ws0_c00079{word-spacing:7.920000px;}
.ws11_c00079{word-spacing:8.208000px;}
.ws12_c00079{word-spacing:8.280000px;}
.ws25_c00079{word-spacing:9.648000px;}
.ws24_c00079{word-spacing:9.720000px;}
.ws22_c00079{word-spacing:11.808000px;}
.ws23_c00079{word-spacing:11.880000px;}
.ws5_c00079{word-spacing:13.320000px;}
.wsc_c00079{word-spacing:14.328000px;}
.wsd_c00079{word-spacing:14.400000px;}
.ws4_c00079{word-spacing:16.488000px;}
.ws9_c00079{word-spacing:16.776000px;}
.wsa_c00079{word-spacing:16.920000px;}
.ws18_c00079{word-spacing:17.208000px;}
.ws17_c00079{word-spacing:17.280000px;}
.ws27_c00079{word-spacing:18.288000px;}
.ws1e_c00079{word-spacing:18.720000px;}
.ws16_c00079{word-spacing:20.160000px;}
.ws1b_c00079{word-spacing:20.520000px;}
.ws1c_c00079{word-spacing:20.808000px;}
.ws1d_c00079{word-spacing:20.880000px;}
.wsb_c00079{word-spacing:22.608000px;}
.ws6_c00079{word-spacing:34.128000px;}
._1_c00079{margin-left:-1.022400px;}
._0_c00079{width:1.185840px;}
._3_c00079{width:7.387200px;}
._2_c00079{width:14.616000px;}
.fc1_c00079{color:rgb(0,0,0);}
.fc0_c00079{color:rgb(35,31,32);}
.fs1_c00079{font-size:65.880000px;}
.fs0_c00079{font-size:72.000000px;}
.y0_c00079{bottom:0.000000px;}
.y1_c00079{bottom:61.748550px;}
.y21_c00079{bottom:146.474400px;}
.y20_c00079{bottom:177.524400px;}
.y1f_c00079{bottom:208.574400px;}
.y1e_c00079{bottom:239.624400px;}
.y1d_c00079{bottom:270.674400px;}
.y1c_c00079{bottom:301.724400px;}
.y1b_c00079{bottom:332.774400px;}
.y1a_c00079{bottom:363.824400px;}
.y19_c00079{bottom:394.874400px;}
.y18_c00079{bottom:456.974400px;}
.y17_c00079{bottom:488.024400px;}
.y16_c00079{bottom:519.074400px;}
.y15_c00079{bottom:550.124400px;}
.y14_c00079{bottom:581.174400px;}
.y13_c00079{bottom:612.224400px;}
.y12_c00079{bottom:643.274400px;}
.y11_c00079{bottom:674.324400px;}
.y10_c00079{bottom:705.374400px;}
.yf_c00079{bottom:736.424400px;}
.ye_c00079{bottom:767.474400px;}
.yd_c00079{bottom:798.434400px;}
.yc_c00079{bottom:860.534400px;}
.yb_c00079{bottom:891.584400px;}
.ya_c00079{bottom:922.634400px;}
.y9_c00079{bottom:953.684400px;}
.y8_c00079{bottom:984.734400px;}
.y7_c00079{bottom:1015.784400px;}
.y6_c00079{bottom:1046.834400px;}
.y5_c00079{bottom:1077.884400px;}
.y4_c00079{bottom:1108.934400px;}
.y3_c00079{bottom:1139.984400px;}
.y2_c00079{bottom:1194.074400px;}
.h2_c00079{height:50.400000px;}
.h3_c00079{height:54.331699px;}
.h4_c00079{height:76.824000px;}
.h0_c00079{height:1262.835000px;}
.h1_c00079{height:1263.000000px;}
.w0_c00079{width:892.914000px;}
.w1_c00079{width:893.250000px;}
.x0_c00079{left:0.000000px;}
.x1_c00079{left:54.000000px;}
.x2_c00079{left:127.620000px;}
.x3_c00079{left:159.570000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls4_c00079{letter-spacing:0.000000pt;}
.ls0_c00079{letter-spacing:0.064000pt;}
.ls3_c00079{letter-spacing:0.128000pt;}
.ls1_c00079{letter-spacing:16.320000pt;}
.ls2_c00079{letter-spacing:26.585600pt;}
.ws1_c00079{word-spacing:-16.000000pt;}
.ws13_c00079{word-spacing:-0.128000pt;}
.ws3_c00079{word-spacing:-0.117120pt;}
.ws7_c00079{word-spacing:-0.064000pt;}
.ws2_c00079{word-spacing:0.000000pt;}
.ws8_c00079{word-spacing:0.320000pt;}
.ws21_c00079{word-spacing:0.640000pt;}
.wsf_c00079{word-spacing:0.896000pt;}
.wse_c00079{word-spacing:0.960000pt;}
.ws10_c00079{word-spacing:1.280000pt;}
.ws28_c00079{word-spacing:1.600000pt;}
.ws19_c00079{word-spacing:1.856000pt;}
.ws1a_c00079{word-spacing:2.240000pt;}
.ws15_c00079{word-spacing:2.816000pt;}
.ws14_c00079{word-spacing:2.880000pt;}
.ws29_c00079{word-spacing:3.776000pt;}
.ws26_c00079{word-spacing:3.840000pt;}
.ws1f_c00079{word-spacing:4.736000pt;}
.ws20_c00079{word-spacing:4.800000pt;}
.ws2a_c00079{word-spacing:6.080000pt;}
.ws0_c00079{word-spacing:7.040000pt;}
.ws11_c00079{word-spacing:7.296000pt;}
.ws12_c00079{word-spacing:7.360000pt;}
.ws25_c00079{word-spacing:8.576000pt;}
.ws24_c00079{word-spacing:8.640000pt;}
.ws22_c00079{word-spacing:10.496000pt;}
.ws23_c00079{word-spacing:10.560000pt;}
.ws5_c00079{word-spacing:11.840000pt;}
.wsc_c00079{word-spacing:12.736000pt;}
.wsd_c00079{word-spacing:12.800000pt;}
.ws4_c00079{word-spacing:14.656000pt;}
.ws9_c00079{word-spacing:14.912000pt;}
.wsa_c00079{word-spacing:15.040000pt;}
.ws18_c00079{word-spacing:15.296000pt;}
.ws17_c00079{word-spacing:15.360000pt;}
.ws27_c00079{word-spacing:16.256000pt;}
.ws1e_c00079{word-spacing:16.640000pt;}
.ws16_c00079{word-spacing:17.920000pt;}
.ws1b_c00079{word-spacing:18.240000pt;}
.ws1c_c00079{word-spacing:18.496000pt;}
.ws1d_c00079{word-spacing:18.560000pt;}
.wsb_c00079{word-spacing:20.096000pt;}
.ws6_c00079{word-spacing:30.336000pt;}
._1_c00079{margin-left:-0.908800pt;}
._0_c00079{width:1.054080pt;}
._3_c00079{width:6.566400pt;}
._2_c00079{width:12.992000pt;}
.fs1_c00079{font-size:58.560000pt;}
.fs0_c00079{font-size:64.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.y1_c00079{bottom:54.887600pt;}
.y21_c00079{bottom:130.199467pt;}
.y20_c00079{bottom:157.799467pt;}
.y1f_c00079{bottom:185.399467pt;}
.y1e_c00079{bottom:212.999467pt;}
.y1d_c00079{bottom:240.599467pt;}
.y1c_c00079{bottom:268.199467pt;}
.y1b_c00079{bottom:295.799467pt;}
.y1a_c00079{bottom:323.399467pt;}
.y19_c00079{bottom:350.999467pt;}
.y18_c00079{bottom:406.199467pt;}
.y17_c00079{bottom:433.799467pt;}
.y16_c00079{bottom:461.399467pt;}
.y15_c00079{bottom:488.999467pt;}
.y14_c00079{bottom:516.599467pt;}
.y13_c00079{bottom:544.199467pt;}
.y12_c00079{bottom:571.799467pt;}
.y11_c00079{bottom:599.399467pt;}
.y10_c00079{bottom:626.999467pt;}
.yf_c00079{bottom:654.599467pt;}
.ye_c00079{bottom:682.199467pt;}
.yd_c00079{bottom:709.719467pt;}
.yc_c00079{bottom:764.919467pt;}
.yb_c00079{bottom:792.519467pt;}
.ya_c00079{bottom:820.119467pt;}
.y9_c00079{bottom:847.719467pt;}
.y8_c00079{bottom:875.319467pt;}
.y7_c00079{bottom:902.919467pt;}
.y6_c00079{bottom:930.519467pt;}
.y5_c00079{bottom:958.119467pt;}
.y4_c00079{bottom:985.719467pt;}
.y3_c00079{bottom:1013.319467pt;}
.y2_c00079{bottom:1061.399467pt;}
.h2_c00079{height:44.800000pt;}
.h3_c00079{height:48.294844pt;}
.h4_c00079{height:68.288000pt;}
.h0_c00079{height:1122.520000pt;}
.h1_c00079{height:1122.666667pt;}
.w0_c00079{width:793.701333pt;}
.w1_c00079{width:794.000000pt;}
.x0_c00079{left:0.000000pt;}
.x1_c00079{left:48.000000pt;}
.x2_c00079{left:113.440000pt;}
.x3_c00079{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00080;src:url('chunks/assets/font_cf849116eacc29c40506144c.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00080;src:url('chunks/assets/font_59d3ee58ef4fb679a34c3cbd.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00080;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00080;src:url('chunks/assets/font_e4ab793adc8bee083e89e06c.woff2')format("woff");}.ff5_c00080{font-family:ff5_c00080;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00080;src:url('chunks/assets/font_608681e7c7ffce32b171c273.woff2')format("woff");}.ff6_c00080{font-family:ff6_c00080;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00080;src:url('chunks/assets/font_c4bd8e2eed8e922cdaf2e714.woff2')format("woff");}.ff7_c00080{font-family:ff7_c00080;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c00080{letter-spacing:-0.576000px;}
.lsb_c00080{letter-spacing:-0.288000px;}
.lsa_c00080{letter-spacing:0.000000px;}
.ls0_c00080{letter-spacing:0.072000px;}
.ls3_c00080{letter-spacing:0.144000px;}
.ls1_c00080{letter-spacing:18.360000px;}
.ls9_c00080{letter-spacing:18.374400px;}
.ls8_c00080{letter-spacing:18.720000px;}
.ls6_c00080{letter-spacing:27.000000px;}
.ls2_c00080{letter-spacing:29.908800px;}
.ls4_c00080{letter-spacing:30.600000px;}
.ls7_c00080{letter-spacing:30.628800px;}
.ls5_c00080{letter-spacing:61.344000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00080{word-spacing:-18.144000px;}
.ws4_c00080{word-spacing:-18.072000px;}
.ws1_c00080{word-spacing:-18.000000px;}
.ws19_c00080{word-spacing:-0.144000px;}
.ws9_c00080{word-spacing:-0.131760px;}
.wsd_c00080{word-spacing:-0.072000px;}
.ws8_c00080{word-spacing:0.000000px;}
.ws38_c00080{word-spacing:0.288000px;}
.wse_c00080{word-spacing:0.360000px;}
.ws4a_c00080{word-spacing:0.648000px;}
.ws26_c00080{word-spacing:0.720000px;}
.ws15_c00080{word-spacing:1.008000px;}
.ws14_c00080{word-spacing:1.080000px;}
.ws49_c00080{word-spacing:1.296000px;}
.ws16_c00080{word-spacing:1.440000px;}
.ws2d_c00080{word-spacing:1.800000px;}
.ws1e_c00080{word-spacing:2.088000px;}
.ws1f_c00080{word-spacing:2.520000px;}
.ws34_c00080{word-spacing:2.736000px;}
.ws33_c00080{word-spacing:2.808000px;}
.ws35_c00080{word-spacing:2.880000px;}
.ws1b_c00080{word-spacing:3.168000px;}
.ws1a_c00080{word-spacing:3.240000px;}
.ws48_c00080{word-spacing:3.888000px;}
.ws36_c00080{word-spacing:3.960000px;}
.ws2e_c00080{word-spacing:4.248000px;}
.ws2b_c00080{word-spacing:4.320000px;}
.ws24_c00080{word-spacing:5.328000px;}
.ws25_c00080{word-spacing:5.400000px;}
.ws2f_c00080{word-spacing:6.840000px;}
.ws0_c00080{word-spacing:7.920000px;}
.ws17_c00080{word-spacing:8.208000px;}
.ws18_c00080{word-spacing:8.280000px;}
.ws41_c00080{word-spacing:8.496000px;}
.ws3f_c00080{word-spacing:8.568000px;}
.ws42_c00080{word-spacing:8.928000px;}
.ws40_c00080{word-spacing:9.000000px;}
.ws2a_c00080{word-spacing:9.648000px;}
.ws29_c00080{word-spacing:9.720000px;}
.ws3d_c00080{word-spacing:10.296000px;}
.ws3e_c00080{word-spacing:10.368000px;}
.ws27_c00080{word-spacing:11.808000px;}
.ws28_c00080{word-spacing:11.880000px;}
.ws31_c00080{word-spacing:12.456000px;}
.ws30_c00080{word-spacing:12.528000px;}
.ws45_c00080{word-spacing:12.600000px;}
.ws6_c00080{word-spacing:12.816000px;}
.ws43_c00080{word-spacing:12.888000px;}
.ws44_c00080{word-spacing:12.960000px;}
.wsb_c00080{word-spacing:13.320000px;}
.ws12_c00080{word-spacing:14.328000px;}
.ws13_c00080{word-spacing:14.400000px;}
.ws32_c00080{word-spacing:14.760000px;}
.wsa_c00080{word-spacing:16.488000px;}
.wsf_c00080{word-spacing:16.776000px;}
.ws10_c00080{word-spacing:16.920000px;}
.ws1d_c00080{word-spacing:17.208000px;}
.ws7_c00080{word-spacing:17.280000px;}
.ws2c_c00080{word-spacing:18.288000px;}
.ws23_c00080{word-spacing:18.720000px;}
.ws39_c00080{word-spacing:19.728000px;}
.ws1c_c00080{word-spacing:20.160000px;}
.ws20_c00080{word-spacing:20.520000px;}
.ws21_c00080{word-spacing:20.808000px;}
.ws22_c00080{word-spacing:20.880000px;}
.ws11_c00080{word-spacing:22.608000px;}
.ws3c_c00080{word-spacing:31.968000px;}
.ws3b_c00080{word-spacing:32.040000px;}
.ws37_c00080{word-spacing:33.048000px;}
.wsc_c00080{word-spacing:34.128000px;}
.ws46_c00080{word-spacing:36.288000px;}
.ws47_c00080{word-spacing:36.360000px;}
.ws3a_c00080{word-spacing:37.368000px;}
.ws5_c00080{word-spacing:43.344000px;}
.ws2_c00080{word-spacing:50.400000px;}
._1_c00080{margin-left:-1.022400px;}
._0_c00080{width:1.185840px;}
._8_c00080{width:3.758400px;}
._3_c00080{width:7.387200px;}
._2_c00080{width:14.616000px;}
._7_c00080{width:31.464000px;}
._4_c00080{width:37.512000px;}
._6_c00080{width:54.352800px;}
._5_c00080{width:55.512000px;}
.fc2_c00080{color:transparent;}
.fc1_c00080{color:rgb(0,0,0);}
.fc0_c00080{color:rgb(35,31,32);}
.fs1_c00080{font-size:65.880000px;}
.fs0_c00080{font-size:72.000000px;}
.y0_c00080{bottom:0.000000px;}
.y1_c00080{bottom:61.748550px;}
.y26_c00080{bottom:115.424400px;}
.y21_c00080{bottom:146.474400px;}
.y20_c00080{bottom:177.524400px;}
.y1f_c00080{bottom:208.574400px;}
.y1e_c00080{bottom:239.624400px;}
.y1d_c00080{bottom:270.674400px;}
.y1c_c00080{bottom:301.724400px;}
.y1b_c00080{bottom:332.774400px;}
.y1a_c00080{bottom:363.824400px;}
.y19_c00080{bottom:394.874400px;}
.y25_c00080{bottom:425.924400px;}
.y18_c00080{bottom:456.974400px;}
.y17_c00080{bottom:488.024400px;}
.y16_c00080{bottom:519.074400px;}
.y15_c00080{bottom:550.124400px;}
.y14_c00080{bottom:581.174400px;}
.y13_c00080{bottom:612.224400px;}
.y12_c00080{bottom:643.274400px;}
.y11_c00080{bottom:674.324400px;}
.y10_c00080{bottom:705.374400px;}
.yf_c00080{bottom:736.424400px;}
.ye_c00080{bottom:767.474400px;}
.yd_c00080{bottom:798.434400px;}
.y24_c00080{bottom:829.484400px;}
.yc_c00080{bottom:860.534400px;}
.yb_c00080{bottom:891.584400px;}
.ya_c00080{bottom:922.634400px;}
.y9_c00080{bottom:953.684400px;}
.y8_c00080{bottom:984.734400px;}
.y7_c00080{bottom:1015.784400px;}
.y6_c00080{bottom:1046.834400px;}
.y5_c00080{bottom:1077.884400px;}
.y23_c00080{bottom:1108.754400px;}
.y4_c00080{bottom:1108.934400px;}
.y22_c00080{bottom:1139.804400px;}
.y3_c00080{bottom:1139.984400px;}
.y2_c00080{bottom:1194.074400px;}
.h2_c00080{height:50.400000px;}
.h3_c00080{height:54.331699px;}
.h4_c00080{height:76.824000px;}
.h0_c00080{height:1262.835000px;}
.h1_c00080{height:1263.000000px;}
.w2_c00080{width:0.000000px;}
.w3_c00080{width:0.066000px;}
.w0_c00080{width:892.914000px;}
.w1_c00080{width:893.250000px;}
.x1_c00080{left:-838.913400px;}
.x2_c00080{left:-765.293400px;}
.x3_c00080{left:-733.343400px;}
.x0_c00080{left:0.000000px;}
.x6_c00080{left:127.620000px;}
.x8_c00080{left:148.860000px;}
.x7_c00080{left:159.570000px;}
.x9_c00080{left:170.190000px;}
.x5_c00080{left:697.590000px;}
.x4_c00080{left:804.366150px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.lsc_c00080{letter-spacing:-0.512000pt;}
.lsb_c00080{letter-spacing:-0.256000pt;}
.lsa_c00080{letter-spacing:0.000000pt;}
.ls0_c00080{letter-spacing:0.064000pt;}
.ls3_c00080{letter-spacing:0.128000pt;}
.ls1_c00080{letter-spacing:16.320000pt;}
.ls9_c00080{letter-spacing:16.332800pt;}
.ls8_c00080{letter-spacing:16.640000pt;}
.ls6_c00080{letter-spacing:24.000000pt;}
.ls2_c00080{letter-spacing:26.585600pt;}
.ls4_c00080{letter-spacing:27.200000pt;}
.ls7_c00080{letter-spacing:27.225600pt;}
.ls5_c00080{letter-spacing:54.528000pt;}
.ws3_c00080{word-spacing:-16.128000pt;}
.ws4_c00080{word-spacing:-16.064000pt;}
.ws1_c00080{word-spacing:-16.000000pt;}
.ws19_c00080{word-spacing:-0.128000pt;}
.ws9_c00080{word-spacing:-0.117120pt;}
.wsd_c00080{word-spacing:-0.064000pt;}
.ws8_c00080{word-spacing:0.000000pt;}
.ws38_c00080{word-spacing:0.256000pt;}
.wse_c00080{word-spacing:0.320000pt;}
.ws4a_c00080{word-spacing:0.576000pt;}
.ws26_c00080{word-spacing:0.640000pt;}
.ws15_c00080{word-spacing:0.896000pt;}
.ws14_c00080{word-spacing:0.960000pt;}
.ws49_c00080{word-spacing:1.152000pt;}
.ws16_c00080{word-spacing:1.280000pt;}
.ws2d_c00080{word-spacing:1.600000pt;}
.ws1e_c00080{word-spacing:1.856000pt;}
.ws1f_c00080{word-spacing:2.240000pt;}
.ws34_c00080{word-spacing:2.432000pt;}
.ws33_c00080{word-spacing:2.496000pt;}
.ws35_c00080{word-spacing:2.560000pt;}
.ws1b_c00080{word-spacing:2.816000pt;}
.ws1a_c00080{word-spacing:2.880000pt;}
.ws48_c00080{word-spacing:3.456000pt;}
.ws36_c00080{word-spacing:3.520000pt;}
.ws2e_c00080{word-spacing:3.776000pt;}
.ws2b_c00080{word-spacing:3.840000pt;}
.ws24_c00080{word-spacing:4.736000pt;}
.ws25_c00080{word-spacing:4.800000pt;}
.ws2f_c00080{word-spacing:6.080000pt;}
.ws0_c00080{word-spacing:7.040000pt;}
.ws17_c00080{word-spacing:7.296000pt;}
.ws18_c00080{word-spacing:7.360000pt;}
.ws41_c00080{word-spacing:7.552000pt;}
.ws3f_c00080{word-spacing:7.616000pt;}
.ws42_c00080{word-spacing:7.936000pt;}
.ws40_c00080{word-spacing:8.000000pt;}
.ws2a_c00080{word-spacing:8.576000pt;}
.ws29_c00080{word-spacing:8.640000pt;}
.ws3d_c00080{word-spacing:9.152000pt;}
.ws3e_c00080{word-spacing:9.216000pt;}
.ws27_c00080{word-spacing:10.496000pt;}
.ws28_c00080{word-spacing:10.560000pt;}
.ws31_c00080{word-spacing:11.072000pt;}
.ws30_c00080{word-spacing:11.136000pt;}
.ws45_c00080{word-spacing:11.200000pt;}
.ws6_c00080{word-spacing:11.392000pt;}
.ws43_c00080{word-spacing:11.456000pt;}
.ws44_c00080{word-spacing:11.520000pt;}
.wsb_c00080{word-spacing:11.840000pt;}
.ws12_c00080{word-spacing:12.736000pt;}
.ws13_c00080{word-spacing:12.800000pt;}
.ws32_c00080{word-spacing:13.120000pt;}
.wsa_c00080{word-spacing:14.656000pt;}
.wsf_c00080{word-spacing:14.912000pt;}
.ws10_c00080{word-spacing:15.040000pt;}
.ws1d_c00080{word-spacing:15.296000pt;}
.ws7_c00080{word-spacing:15.360000pt;}
.ws2c_c00080{word-spacing:16.256000pt;}
.ws23_c00080{word-spacing:16.640000pt;}
.ws39_c00080{word-spacing:17.536000pt;}
.ws1c_c00080{word-spacing:17.920000pt;}
.ws20_c00080{word-spacing:18.240000pt;}
.ws21_c00080{word-spacing:18.496000pt;}
.ws22_c00080{word-spacing:18.560000pt;}
.ws11_c00080{word-spacing:20.096000pt;}
.ws3c_c00080{word-spacing:28.416000pt;}
.ws3b_c00080{word-spacing:28.480000pt;}
.ws37_c00080{word-spacing:29.376000pt;}
.wsc_c00080{word-spacing:30.336000pt;}
.ws46_c00080{word-spacing:32.256000pt;}
.ws47_c00080{word-spacing:32.320000pt;}
.ws3a_c00080{word-spacing:33.216000pt;}
.ws5_c00080{word-spacing:38.528000pt;}
.ws2_c00080{word-spacing:44.800000pt;}
._1_c00080{margin-left:-0.908800pt;}
._0_c00080{width:1.054080pt;}
._8_c00080{width:3.340800pt;}
._3_c00080{width:6.566400pt;}
._2_c00080{width:12.992000pt;}
._7_c00080{width:27.968000pt;}
._4_c00080{width:33.344000pt;}
._6_c00080{width:48.313600pt;}
._5_c00080{width:49.344000pt;}
.fs1_c00080{font-size:58.560000pt;}
.fs0_c00080{font-size:64.000000pt;}
.y0_c00080{bottom:0.000000pt;}
.y1_c00080{bottom:54.887600pt;}
.y26_c00080{bottom:102.599467pt;}
.y21_c00080{bottom:130.199467pt;}
.y20_c00080{bottom:157.799467pt;}
.y1f_c00080{bottom:185.399467pt;}
.y1e_c00080{bottom:212.999467pt;}
.y1d_c00080{bottom:240.599467pt;}
.y1c_c00080{bottom:268.199467pt;}
.y1b_c00080{bottom:295.799467pt;}
.y1a_c00080{bottom:323.399467pt;}
.y19_c00080{bottom:350.999467pt;}
.y25_c00080{bottom:378.599467pt;}
.y18_c00080{bottom:406.199467pt;}
.y17_c00080{bottom:433.799467pt;}
.y16_c00080{bottom:461.399467pt;}
.y15_c00080{bottom:488.999467pt;}
.y14_c00080{bottom:516.599467pt;}
.y13_c00080{bottom:544.199467pt;}
.y12_c00080{bottom:571.799467pt;}
.y11_c00080{bottom:599.399467pt;}
.y10_c00080{bottom:626.999467pt;}
.yf_c00080{bottom:654.599467pt;}
.ye_c00080{bottom:682.199467pt;}
.yd_c00080{bottom:709.719467pt;}
.y24_c00080{bottom:737.319467pt;}
.yc_c00080{bottom:764.919467pt;}
.yb_c00080{bottom:792.519467pt;}
.ya_c00080{bottom:820.119467pt;}
.y9_c00080{bottom:847.719467pt;}
.y8_c00080{bottom:875.319467pt;}
.y7_c00080{bottom:902.919467pt;}
.y6_c00080{bottom:930.519467pt;}
.y5_c00080{bottom:958.119467pt;}
.y23_c00080{bottom:985.559467pt;}
.y4_c00080{bottom:985.719467pt;}
.y22_c00080{bottom:1013.159467pt;}
.y3_c00080{bottom:1013.319467pt;}
.y2_c00080{bottom:1061.399467pt;}
.h2_c00080{height:44.800000pt;}
.h3_c00080{height:48.294844pt;}
.h4_c00080{height:68.288000pt;}
.h0_c00080{height:1122.520000pt;}
.h1_c00080{height:1122.666667pt;}
.w2_c00080{width:0.000000pt;}
.w3_c00080{width:0.058667pt;}
.w0_c00080{width:793.701333pt;}
.w1_c00080{width:794.000000pt;}
.x1_c00080{left:-745.700800pt;}
.x2_c00080{left:-680.260800pt;}
.x3_c00080{left:-651.860800pt;}
.x0_c00080{left:0.000000pt;}
.x6_c00080{left:113.440000pt;}
.x8_c00080{left:132.320000pt;}
.x7_c00080{left:141.840000pt;}
.x9_c00080{left:151.280000pt;}
.x5_c00080{left:620.080000pt;}
.x4_c00080{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00081;src:url('chunks/assets/font_6c3fe111d0e000e97504fd1d.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00081;src:url('chunks/assets/font_88955443abfeee5c2a74d931.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00081{letter-spacing:-0.072000px;}
.ls4_c00081{letter-spacing:0.000000px;}
.ls1_c00081{letter-spacing:0.072000px;}
.ls2_c00081{letter-spacing:0.144000px;}
.ls3_c00081{letter-spacing:28.800000px;}
.ls0_c00081{letter-spacing:61.344000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00081{word-spacing:-18.072000px;}
.ws6_c00081{word-spacing:-0.131760px;}
.wsb_c00081{word-spacing:-0.072000px;}
.ws5_c00081{word-spacing:0.000000px;}
.wsc_c00081{word-spacing:1.656000px;}
.ws10_c00081{word-spacing:3.168000px;}
.wsa_c00081{word-spacing:3.528000px;}
.ws14_c00081{word-spacing:3.960000px;}
.ws15_c00081{word-spacing:4.176000px;}
.ws16_c00081{word-spacing:4.248000px;}
.ws19_c00081{word-spacing:4.320000px;}
.ws17_c00081{word-spacing:4.680000px;}
.ws13_c00081{word-spacing:7.128000px;}
.ws9_c00081{word-spacing:8.208000px;}
.ws8_c00081{word-spacing:8.280000px;}
.ws4_c00081{word-spacing:9.144000px;}
.ws2_c00081{word-spacing:9.360000px;}
.ws7_c00081{word-spacing:9.720000px;}
.ws3_c00081{word-spacing:9.864000px;}
.ws18_c00081{word-spacing:10.368000px;}
.ws20_c00081{word-spacing:11.016000px;}
.ws1f_c00081{word-spacing:11.088000px;}
.ws1c_c00081{word-spacing:11.880000px;}
.ws11_c00081{word-spacing:12.168000px;}
.ws12_c00081{word-spacing:12.240000px;}
.wsf_c00081{word-spacing:14.688000px;}
.ws0_c00081{word-spacing:14.760000px;}
.ws1a_c00081{word-spacing:18.288000px;}
.ws1b_c00081{word-spacing:20.808000px;}
.ws1e_c00081{word-spacing:23.616000px;}
.ws1d_c00081{word-spacing:23.688000px;}
.wse_c00081{word-spacing:29.808000px;}
.wsd_c00081{word-spacing:29.880000px;}
._1_c00081{margin-left:-1.008000px;}
._0_c00081{width:1.185840px;}
.fc1_c00081{color:rgb(0,0,0);}
.fc0_c00081{color:rgb(35,31,32);}
.fs1_c00081{font-size:65.880000px;}
.fs0_c00081{font-size:72.000000px;}
.y0_c00081{bottom:0.000000px;}
.y1_c00081{bottom:61.748550px;}
.y1f_c00081{bottom:208.574400px;}
.y1e_c00081{bottom:239.624400px;}
.y1d_c00081{bottom:301.724400px;}
.y1c_c00081{bottom:332.774400px;}
.y1b_c00081{bottom:363.824400px;}
.y1a_c00081{bottom:394.874400px;}
.y19_c00081{bottom:425.924400px;}
.y18_c00081{bottom:488.024400px;}
.y17_c00081{bottom:519.074400px;}
.y16_c00081{bottom:550.124400px;}
.y15_c00081{bottom:581.174400px;}
.y14_c00081{bottom:612.224400px;}
.y13_c00081{bottom:643.274400px;}
.y12_c00081{bottom:674.324400px;}
.y11_c00081{bottom:705.374400px;}
.y10_c00081{bottom:736.424400px;}
.yf_c00081{bottom:767.474400px;}
.ye_c00081{bottom:798.434400px;}
.yd_c00081{bottom:829.484400px;}
.yc_c00081{bottom:860.534400px;}
.yb_c00081{bottom:891.584400px;}
.ya_c00081{bottom:922.634400px;}
.y9_c00081{bottom:953.684400px;}
.y8_c00081{bottom:984.734400px;}
.y7_c00081{bottom:1015.784400px;}
.y6_c00081{bottom:1046.834400px;}
.y5_c00081{bottom:1077.884400px;}
.y4_c00081{bottom:1108.934400px;}
.y3_c00081{bottom:1139.984400px;}
.y2_c00081{bottom:1194.074400px;}
.h2_c00081{height:50.400000px;}
.h3_c00081{height:54.331699px;}
.h4_c00081{height:76.824000px;}
.h0_c00081{height:1262.835000px;}
.h1_c00081{height:1263.000000px;}
.w0_c00081{width:892.914000px;}
.w1_c00081{width:893.250000px;}
.x0_c00081{left:0.000000px;}
.x1_c00081{left:54.000000px;}
.x2_c00081{left:127.620000px;}
.x3_c00081{left:148.860000px;}
.x5_c00081{left:159.570000px;}
.x4_c00081{left:170.190000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls5_c00081{letter-spacing:-0.064000pt;}
.ls4_c00081{letter-spacing:0.000000pt;}
.ls1_c00081{letter-spacing:0.064000pt;}
.ls2_c00081{letter-spacing:0.128000pt;}
.ls3_c00081{letter-spacing:25.600000pt;}
.ls0_c00081{letter-spacing:54.528000pt;}
.ws1_c00081{word-spacing:-16.064000pt;}
.ws6_c00081{word-spacing:-0.117120pt;}
.wsb_c00081{word-spacing:-0.064000pt;}
.ws5_c00081{word-spacing:0.000000pt;}
.wsc_c00081{word-spacing:1.472000pt;}
.ws10_c00081{word-spacing:2.816000pt;}
.wsa_c00081{word-spacing:3.136000pt;}
.ws14_c00081{word-spacing:3.520000pt;}
.ws15_c00081{word-spacing:3.712000pt;}
.ws16_c00081{word-spacing:3.776000pt;}
.ws19_c00081{word-spacing:3.840000pt;}
.ws17_c00081{word-spacing:4.160000pt;}
.ws13_c00081{word-spacing:6.336000pt;}
.ws9_c00081{word-spacing:7.296000pt;}
.ws8_c00081{word-spacing:7.360000pt;}
.ws4_c00081{word-spacing:8.128000pt;}
.ws2_c00081{word-spacing:8.320000pt;}
.ws7_c00081{word-spacing:8.640000pt;}
.ws3_c00081{word-spacing:8.768000pt;}
.ws18_c00081{word-spacing:9.216000pt;}
.ws20_c00081{word-spacing:9.792000pt;}
.ws1f_c00081{word-spacing:9.856000pt;}
.ws1c_c00081{word-spacing:10.560000pt;}
.ws11_c00081{word-spacing:10.816000pt;}
.ws12_c00081{word-spacing:10.880000pt;}
.wsf_c00081{word-spacing:13.056000pt;}
.ws0_c00081{word-spacing:13.120000pt;}
.ws1a_c00081{word-spacing:16.256000pt;}
.ws1b_c00081{word-spacing:18.496000pt;}
.ws1e_c00081{word-spacing:20.992000pt;}
.ws1d_c00081{word-spacing:21.056000pt;}
.wse_c00081{word-spacing:26.496000pt;}
.wsd_c00081{word-spacing:26.560000pt;}
._1_c00081{margin-left:-0.896000pt;}
._0_c00081{width:1.054080pt;}
.fs1_c00081{font-size:58.560000pt;}
.fs0_c00081{font-size:64.000000pt;}
.y0_c00081{bottom:0.000000pt;}
.y1_c00081{bottom:54.887600pt;}
.y1f_c00081{bottom:185.399467pt;}
.y1e_c00081{bottom:212.999467pt;}
.y1d_c00081{bottom:268.199467pt;}
.y1c_c00081{bottom:295.799467pt;}
.y1b_c00081{bottom:323.399467pt;}
.y1a_c00081{bottom:350.999467pt;}
.y19_c00081{bottom:378.599467pt;}
.y18_c00081{bottom:433.799467pt;}
.y17_c00081{bottom:461.399467pt;}
.y16_c00081{bottom:488.999467pt;}
.y15_c00081{bottom:516.599467pt;}
.y14_c00081{bottom:544.199467pt;}
.y13_c00081{bottom:571.799467pt;}
.y12_c00081{bottom:599.399467pt;}
.y11_c00081{bottom:626.999467pt;}
.y10_c00081{bottom:654.599467pt;}
.yf_c00081{bottom:682.199467pt;}
.ye_c00081{bottom:709.719467pt;}
.yd_c00081{bottom:737.319467pt;}
.yc_c00081{bottom:764.919467pt;}
.yb_c00081{bottom:792.519467pt;}
.ya_c00081{bottom:820.119467pt;}
.y9_c00081{bottom:847.719467pt;}
.y8_c00081{bottom:875.319467pt;}
.y7_c00081{bottom:902.919467pt;}
.y6_c00081{bottom:930.519467pt;}
.y5_c00081{bottom:958.119467pt;}
.y4_c00081{bottom:985.719467pt;}
.y3_c00081{bottom:1013.319467pt;}
.y2_c00081{bottom:1061.399467pt;}
.h2_c00081{height:44.800000pt;}
.h3_c00081{height:48.294844pt;}
.h4_c00081{height:68.288000pt;}
.h0_c00081{height:1122.520000pt;}
.h1_c00081{height:1122.666667pt;}
.w0_c00081{width:793.701333pt;}
.w1_c00081{width:794.000000pt;}
.x0_c00081{left:0.000000pt;}
.x1_c00081{left:48.000000pt;}
.x2_c00081{left:113.440000pt;}
.x3_c00081{left:132.320000pt;}
.x5_c00081{left:141.840000pt;}
.x4_c00081{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00082;src:url('chunks/assets/font_3d23ad58da21e07e2261158f.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00082;src:url('chunks/assets/font_788690b54ac4f98c9dcae679.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00082;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00082{font-family:ff4_c00082;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00082;src:url('chunks/assets/font_b1d2e1708d30311a207094cd.woff2')format("woff");}.ff5_c00082{font-family:ff5_c00082;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00082;src:url('chunks/assets/font_d6590570f1892a3dda5205fb.woff2')format("woff");}.ff6_c00082{font-family:ff6_c00082;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00082;src:url('chunks/assets/font_171151a99a3531a8fae1da6c.woff2')format("woff");}.ff7_c00082{font-family:ff7_c00082;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.lsa_c00082{letter-spacing:-0.360000px;}
.ls9_c00082{letter-spacing:-0.072000px;}
.ls8_c00082{letter-spacing:0.000000px;}
.ls1_c00082{letter-spacing:0.072000px;}
.ls2_c00082{letter-spacing:0.144000px;}
.ls7_c00082{letter-spacing:21.240000px;}
.ls6_c00082{letter-spacing:21.600000px;}
.ls4_c00082{letter-spacing:23.760000px;}
.ls3_c00082{letter-spacing:28.800000px;}
.ls5_c00082{letter-spacing:60.984000px;}
.ls0_c00082{letter-spacing:61.344000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00082{word-spacing:-18.072000px;}
.ws7_c00082{word-spacing:-18.000000px;}
.ws30_c00082{word-spacing:-0.144000px;}
.ws9_c00082{word-spacing:-0.131760px;}
.wse_c00082{word-spacing:-0.072000px;}
.ws8_c00082{word-spacing:0.000000px;}
.ws2a_c00082{word-spacing:1.368000px;}
.wsf_c00082{word-spacing:1.656000px;}
.ws25_c00082{word-spacing:1.728000px;}
.ws26_c00082{word-spacing:2.088000px;}
.ws5_c00082{word-spacing:2.160000px;}
.ws13_c00082{word-spacing:3.168000px;}
.wsd_c00082{word-spacing:3.528000px;}
.ws31_c00082{word-spacing:3.600000px;}
.ws17_c00082{word-spacing:3.960000px;}
.ws18_c00082{word-spacing:4.176000px;}
.ws19_c00082{word-spacing:4.248000px;}
.ws1c_c00082{word-spacing:4.320000px;}
.ws1a_c00082{word-spacing:4.680000px;}
.ws6_c00082{word-spacing:5.544000px;}
.ws28_c00082{word-spacing:5.616000px;}
.ws27_c00082{word-spacing:5.760000px;}
.ws2b_c00082{word-spacing:5.976000px;}
.ws2c_c00082{word-spacing:6.048000px;}
.ws2e_c00082{word-spacing:6.336000px;}
.ws2f_c00082{word-spacing:6.480000px;}
.ws2d_c00082{word-spacing:6.840000px;}
.ws16_c00082{word-spacing:7.128000px;}
.wsc_c00082{word-spacing:8.208000px;}
.wsb_c00082{word-spacing:8.280000px;}
.ws4_c00082{word-spacing:9.144000px;}
.ws2_c00082{word-spacing:9.360000px;}
.wsa_c00082{word-spacing:9.720000px;}
.ws3_c00082{word-spacing:9.864000px;}
.ws1b_c00082{word-spacing:10.368000px;}
.ws23_c00082{word-spacing:11.016000px;}
.ws22_c00082{word-spacing:11.088000px;}
.ws1f_c00082{word-spacing:11.880000px;}
.ws14_c00082{word-spacing:12.168000px;}
.ws15_c00082{word-spacing:12.240000px;}
.ws24_c00082{word-spacing:13.608000px;}
.ws12_c00082{word-spacing:14.688000px;}
.ws0_c00082{word-spacing:14.760000px;}
.ws1d_c00082{word-spacing:18.288000px;}
.ws1e_c00082{word-spacing:20.808000px;}
.ws21_c00082{word-spacing:23.616000px;}
.ws20_c00082{word-spacing:23.688000px;}
.ws29_c00082{word-spacing:27.360000px;}
.ws11_c00082{word-spacing:29.808000px;}
.ws10_c00082{word-spacing:29.880000px;}
._1_c00082{margin-left:-1.008000px;}
._0_c00082{width:1.185840px;}
._2_c00082{width:5.760000px;}
.fc2_c00082{color:transparent;}
.fc1_c00082{color:rgb(0,0,0);}
.fc0_c00082{color:rgb(35,31,32);}
.fs1_c00082{font-size:65.880000px;}
.fs0_c00082{font-size:72.000000px;}
.y0_c00082{bottom:0.000000px;}
.y2f_c00082{bottom:14.489250px;}
.y2d_c00082{bottom:14.489400px;}
.y34_c00082{bottom:14.492250px;}
.y3e_c00082{bottom:14.492400px;}
.y31_c00082{bottom:45.539250px;}
.y3b_c00082{bottom:45.539400px;}
.y36_c00082{bottom:45.542250px;}
.y40_c00082{bottom:45.542400px;}
.y1_c00082{bottom:61.748550px;}
.y2b_c00082{bottom:134.774400px;}
.y2a_c00082{bottom:165.824400px;}
.y29_c00082{bottom:196.874400px;}
.y1f_c00082{bottom:208.574400px;}
.y1e_c00082{bottom:239.624400px;}
.y28_c00082{bottom:258.974400px;}
.y27_c00082{bottom:290.024400px;}
.y1d_c00082{bottom:301.724400px;}
.y26_c00082{bottom:321.074400px;}
.y1c_c00082{bottom:332.774400px;}
.y1b_c00082{bottom:363.824400px;}
.y25_c00082{bottom:383.174400px;}
.y1a_c00082{bottom:394.874400px;}
.y24_c00082{bottom:414.224400px;}
.y19_c00082{bottom:425.924400px;}
.y23_c00082{bottom:445.274400px;}
.y22_c00082{bottom:476.324400px;}
.y18_c00082{bottom:488.024400px;}
.y21_c00082{bottom:507.374400px;}
.y17_c00082{bottom:519.074400px;}
.y16_c00082{bottom:550.124400px;}
.y42_c00082{bottom:555.705000px;}
.y43_c00082{bottom:570.194250px;}
.y15_c00082{bottom:581.174400px;}
.y14_c00082{bottom:612.224400px;}
.y3f_c00082{bottom:618.522000px;}
.y41_c00082{bottom:633.014400px;}
.y13_c00082{bottom:643.274400px;}
.y12_c00082{bottom:674.324400px;}
.y3d_c00082{bottom:681.432000px;}
.y11_c00082{bottom:705.374400px;}
.y3a_c00082{bottom:713.205000px;}
.y3c_c00082{bottom:727.694250px;}
.y10_c00082{bottom:736.424400px;}
.yf_c00082{bottom:767.474400px;}
.y38_c00082{bottom:776.025000px;}
.y39_c00082{bottom:790.514400px;}
.ye_c00082{bottom:798.434400px;}
.yd_c00082{bottom:829.484400px;}
.y35_c00082{bottom:838.842000px;}
.y37_c00082{bottom:853.334250px;}
.yc_c00082{bottom:860.534400px;}
.yb_c00082{bottom:891.584400px;}
.y33_c00082{bottom:901.752000px;}
.ya_c00082{bottom:922.634400px;}
.y30_c00082{bottom:933.525000px;}
.y32_c00082{bottom:948.014400px;}
.y9_c00082{bottom:953.684400px;}
.y8_c00082{bottom:984.734400px;}
.y2e_c00082{bottom:996.345000px;}
.y7_c00082{bottom:1015.784400px;}
.y2c_c00082{bottom:1028.205000px;}
.y6_c00082{bottom:1046.834400px;}
.y5_c00082{bottom:1077.884400px;}
.y20_c00082{bottom:1108.844400px;}
.y4_c00082{bottom:1108.934400px;}
.y3_c00082{bottom:1139.984400px;}
.y2_c00082{bottom:1194.074400px;}
.h6_c00082{height:31.050000px;}
.h2_c00082{height:50.400000px;}
.h3_c00082{height:54.331699px;}
.h7_c00082{height:62.100000px;}
.h4_c00082{height:76.824000px;}
.h5_c00082{height:78.048000px;}
.h0_c00082{height:1262.835000px;}
.h1_c00082{height:1263.000000px;}
.w2_c00082{width:0.000000px;}
.w3_c00082{width:0.066000px;}
.w4_c00082{width:648.270000px;}
.w0_c00082{width:892.914000px;}
.w1_c00082{width:893.250000px;}
.x1_c00082{left:-838.913400px;}
.x2_c00082{left:-765.293400px;}
.x3_c00082{left:-744.053400px;}
.x5_c00082{left:-733.343400px;}
.x4_c00082{left:-722.723400px;}
.x0_c00082{left:0.000000px;}
.xd_c00082{left:8.100000px;}
.xc_c00082{left:119.520000px;}
.x8_c00082{left:127.620000px;}
.xa_c00082{left:148.950000px;}
.x9_c00082{left:159.570000px;}
.xb_c00082{left:170.190000px;}
.x7_c00082{left:697.590000px;}
.x6_c00082{left:804.366150px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.lsa_c00082{letter-spacing:-0.320000pt;}
.ls9_c00082{letter-spacing:-0.064000pt;}
.ls8_c00082{letter-spacing:0.000000pt;}
.ls1_c00082{letter-spacing:0.064000pt;}
.ls2_c00082{letter-spacing:0.128000pt;}
.ls7_c00082{letter-spacing:18.880000pt;}
.ls6_c00082{letter-spacing:19.200000pt;}
.ls4_c00082{letter-spacing:21.120000pt;}
.ls3_c00082{letter-spacing:25.600000pt;}
.ls5_c00082{letter-spacing:54.208000pt;}
.ls0_c00082{letter-spacing:54.528000pt;}
.ws1_c00082{word-spacing:-16.064000pt;}
.ws7_c00082{word-spacing:-16.000000pt;}
.ws30_c00082{word-spacing:-0.128000pt;}
.ws9_c00082{word-spacing:-0.117120pt;}
.wse_c00082{word-spacing:-0.064000pt;}
.ws8_c00082{word-spacing:0.000000pt;}
.ws2a_c00082{word-spacing:1.216000pt;}
.wsf_c00082{word-spacing:1.472000pt;}
.ws25_c00082{word-spacing:1.536000pt;}
.ws26_c00082{word-spacing:1.856000pt;}
.ws5_c00082{word-spacing:1.920000pt;}
.ws13_c00082{word-spacing:2.816000pt;}
.wsd_c00082{word-spacing:3.136000pt;}
.ws31_c00082{word-spacing:3.200000pt;}
.ws17_c00082{word-spacing:3.520000pt;}
.ws18_c00082{word-spacing:3.712000pt;}
.ws19_c00082{word-spacing:3.776000pt;}
.ws1c_c00082{word-spacing:3.840000pt;}
.ws1a_c00082{word-spacing:4.160000pt;}
.ws6_c00082{word-spacing:4.928000pt;}
.ws28_c00082{word-spacing:4.992000pt;}
.ws27_c00082{word-spacing:5.120000pt;}
.ws2b_c00082{word-spacing:5.312000pt;}
.ws2c_c00082{word-spacing:5.376000pt;}
.ws2e_c00082{word-spacing:5.632000pt;}
.ws2f_c00082{word-spacing:5.760000pt;}
.ws2d_c00082{word-spacing:6.080000pt;}
.ws16_c00082{word-spacing:6.336000pt;}
.wsc_c00082{word-spacing:7.296000pt;}
.wsb_c00082{word-spacing:7.360000pt;}
.ws4_c00082{word-spacing:8.128000pt;}
.ws2_c00082{word-spacing:8.320000pt;}
.wsa_c00082{word-spacing:8.640000pt;}
.ws3_c00082{word-spacing:8.768000pt;}
.ws1b_c00082{word-spacing:9.216000pt;}
.ws23_c00082{word-spacing:9.792000pt;}
.ws22_c00082{word-spacing:9.856000pt;}
.ws1f_c00082{word-spacing:10.560000pt;}
.ws14_c00082{word-spacing:10.816000pt;}
.ws15_c00082{word-spacing:10.880000pt;}
.ws24_c00082{word-spacing:12.096000pt;}
.ws12_c00082{word-spacing:13.056000pt;}
.ws0_c00082{word-spacing:13.120000pt;}
.ws1d_c00082{word-spacing:16.256000pt;}
.ws1e_c00082{word-spacing:18.496000pt;}
.ws21_c00082{word-spacing:20.992000pt;}
.ws20_c00082{word-spacing:21.056000pt;}
.ws29_c00082{word-spacing:24.320000pt;}
.ws11_c00082{word-spacing:26.496000pt;}
.ws10_c00082{word-spacing:26.560000pt;}
._1_c00082{margin-left:-0.896000pt;}
._0_c00082{width:1.054080pt;}
._2_c00082{width:5.120000pt;}
.fs1_c00082{font-size:58.560000pt;}
.fs0_c00082{font-size:64.000000pt;}
.y0_c00082{bottom:0.000000pt;}
.y2f_c00082{bottom:12.879333pt;}
.y2d_c00082{bottom:12.879467pt;}
.y34_c00082{bottom:12.882000pt;}
.y3e_c00082{bottom:12.882133pt;}
.y31_c00082{bottom:40.479333pt;}
.y3b_c00082{bottom:40.479467pt;}
.y36_c00082{bottom:40.482000pt;}
.y40_c00082{bottom:40.482133pt;}
.y1_c00082{bottom:54.887600pt;}
.y2b_c00082{bottom:119.799467pt;}
.y2a_c00082{bottom:147.399467pt;}
.y29_c00082{bottom:174.999467pt;}
.y1f_c00082{bottom:185.399467pt;}
.y1e_c00082{bottom:212.999467pt;}
.y28_c00082{bottom:230.199467pt;}
.y27_c00082{bottom:257.799467pt;}
.y1d_c00082{bottom:268.199467pt;}
.y26_c00082{bottom:285.399467pt;}
.y1c_c00082{bottom:295.799467pt;}
.y1b_c00082{bottom:323.399467pt;}
.y25_c00082{bottom:340.599467pt;}
.y1a_c00082{bottom:350.999467pt;}
.y24_c00082{bottom:368.199467pt;}
.y19_c00082{bottom:378.599467pt;}
.y23_c00082{bottom:395.799467pt;}
.y22_c00082{bottom:423.399467pt;}
.y18_c00082{bottom:433.799467pt;}
.y21_c00082{bottom:450.999467pt;}
.y17_c00082{bottom:461.399467pt;}
.y16_c00082{bottom:488.999467pt;}
.y42_c00082{bottom:493.960000pt;}
.y43_c00082{bottom:506.839333pt;}
.y15_c00082{bottom:516.599467pt;}
.y14_c00082{bottom:544.199467pt;}
.y3f_c00082{bottom:549.797333pt;}
.y41_c00082{bottom:562.679467pt;}
.y13_c00082{bottom:571.799467pt;}
.y12_c00082{bottom:599.399467pt;}
.y3d_c00082{bottom:605.717333pt;}
.y11_c00082{bottom:626.999467pt;}
.y3a_c00082{bottom:633.960000pt;}
.y3c_c00082{bottom:646.839333pt;}
.y10_c00082{bottom:654.599467pt;}
.yf_c00082{bottom:682.199467pt;}
.y38_c00082{bottom:689.800000pt;}
.y39_c00082{bottom:702.679467pt;}
.ye_c00082{bottom:709.719467pt;}
.yd_c00082{bottom:737.319467pt;}
.y35_c00082{bottom:745.637333pt;}
.y37_c00082{bottom:758.519333pt;}
.yc_c00082{bottom:764.919467pt;}
.yb_c00082{bottom:792.519467pt;}
.y33_c00082{bottom:801.557333pt;}
.ya_c00082{bottom:820.119467pt;}
.y30_c00082{bottom:829.800000pt;}
.y32_c00082{bottom:842.679467pt;}
.y9_c00082{bottom:847.719467pt;}
.y8_c00082{bottom:875.319467pt;}
.y2e_c00082{bottom:885.640000pt;}
.y7_c00082{bottom:902.919467pt;}
.y2c_c00082{bottom:913.960000pt;}
.y6_c00082{bottom:930.519467pt;}
.y5_c00082{bottom:958.119467pt;}
.y20_c00082{bottom:985.639467pt;}
.y4_c00082{bottom:985.719467pt;}
.y3_c00082{bottom:1013.319467pt;}
.y2_c00082{bottom:1061.399467pt;}
.h6_c00082{height:27.600000pt;}
.h2_c00082{height:44.800000pt;}
.h3_c00082{height:48.294844pt;}
.h7_c00082{height:55.200000pt;}
.h4_c00082{height:68.288000pt;}
.h5_c00082{height:69.376000pt;}
.h0_c00082{height:1122.520000pt;}
.h1_c00082{height:1122.666667pt;}
.w2_c00082{width:0.000000pt;}
.w3_c00082{width:0.058667pt;}
.w4_c00082{width:576.240000pt;}
.w0_c00082{width:793.701333pt;}
.w1_c00082{width:794.000000pt;}
.x1_c00082{left:-745.700800pt;}
.x2_c00082{left:-680.260800pt;}
.x3_c00082{left:-661.380800pt;}
.x5_c00082{left:-651.860800pt;}
.x4_c00082{left:-642.420800pt;}
.x0_c00082{left:0.000000pt;}
.xd_c00082{left:7.200000pt;}
.xc_c00082{left:106.240000pt;}
.x8_c00082{left:113.440000pt;}
.xa_c00082{left:132.400000pt;}
.x9_c00082{left:141.840000pt;}
.xb_c00082{left:151.280000pt;}
.x7_c00082{left:620.080000pt;}
.x6_c00082{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00083;src:url('chunks/assets/font_da08f8da53740cf7e1c0c7f9.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00083;src:url('chunks/assets/font_0728c2fb89f4af15627150ec.woff2')format("woff");}.ff3_c00083{font-family:ff3_c00083;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00083;src:url('chunks/assets/font_72ff37b67771bef84032d8b1.woff2')format("woff");}.ff4_c00083{font-family:ff4_c00083;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls6_c00083{letter-spacing:-0.144000px;}
.ls5_c00083{letter-spacing:0.000000px;}
.ls0_c00083{letter-spacing:0.072000px;}
.ls1_c00083{letter-spacing:0.144000px;}
.ls3_c00083{letter-spacing:23.400000px;}
.ls4_c00083{letter-spacing:30.974400px;}
.ls2_c00083{letter-spacing:60.984000px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00083{word-spacing:-18.144000px;}
.ws1_c00083{word-spacing:-18.000000px;}
.ws6_c00083{word-spacing:-0.144000px;}
.ws3_c00083{word-spacing:-0.131760px;}
.wse_c00083{word-spacing:-0.072000px;}
.ws2_c00083{word-spacing:0.000000px;}
.ws22_c00083{word-spacing:0.144000px;}
.ws21_c00083{word-spacing:0.648000px;}
.ws1f_c00083{word-spacing:1.656000px;}
.wsb_c00083{word-spacing:1.728000px;}
.wsa_c00083{word-spacing:1.800000px;}
.ws1a_c00083{word-spacing:2.808000px;}
.ws1b_c00083{word-spacing:2.880000px;}
.ws1c_c00083{word-spacing:3.168000px;}
.ws5_c00083{word-spacing:3.600000px;}
.ws8_c00083{word-spacing:4.608000px;}
.ws11_c00083{word-spacing:4.680000px;}
.ws19_c00083{word-spacing:5.328000px;}
.ws4_c00083{word-spacing:6.408000px;}
.wsf_c00083{word-spacing:7.848000px;}
.ws10_c00083{word-spacing:7.920000px;}
.ws7_c00083{word-spacing:9.000000px;}
.ws15_c00083{word-spacing:9.648000px;}
.ws14_c00083{word-spacing:9.720000px;}
.ws16_c00083{word-spacing:10.080000px;}
.ws24_c00083{word-spacing:11.520000px;}
.ws23_c00083{word-spacing:11.808000px;}
.ws25_c00083{word-spacing:11.880000px;}
.ws9_c00083{word-spacing:12.240000px;}
.ws1d_c00083{word-spacing:13.248000px;}
.ws1e_c00083{word-spacing:13.320000px;}
.wsd_c00083{word-spacing:14.328000px;}
.ws12_c00083{word-spacing:14.760000px;}
.ws13_c00083{word-spacing:17.208000px;}
.wsc_c00083{word-spacing:23.328000px;}
.ws17_c00083{word-spacing:29.520000px;}
.ws18_c00083{word-spacing:29.808000px;}
.ws20_c00083{word-spacing:39.240000px;}
._1_c00083{margin-left:-1.080000px;}
._0_c00083{width:1.185840px;}
._3_c00083{width:10.800000px;}
._2_c00083{width:26.424000px;}
.fc1_c00083{color:rgb(0,0,0);}
.fc0_c00083{color:rgb(35,31,32);}
.fs1_c00083{font-size:65.880000px;}
.fs0_c00083{font-size:72.000000px;}
.y0_c00083{bottom:0.000000px;}
.y1_c00083{bottom:61.748550px;}
.y1f_c00083{bottom:115.424400px;}
.y1e_c00083{bottom:146.474400px;}
.y1d_c00083{bottom:208.574400px;}
.y1c_c00083{bottom:239.624400px;}
.y1b_c00083{bottom:270.674400px;}
.y1a_c00083{bottom:301.724400px;}
.y19_c00083{bottom:332.774400px;}
.y18_c00083{bottom:363.824400px;}
.y17_c00083{bottom:394.874400px;}
.y16_c00083{bottom:456.974400px;}
.y15_c00083{bottom:488.024400px;}
.y14_c00083{bottom:519.074400px;}
.y13_c00083{bottom:550.124400px;}
.y12_c00083{bottom:581.174400px;}
.y11_c00083{bottom:612.224400px;}
.y10_c00083{bottom:643.274400px;}
.yf_c00083{bottom:674.324400px;}
.ye_c00083{bottom:705.374400px;}
.yd_c00083{bottom:767.474400px;}
.yc_c00083{bottom:798.434400px;}
.yb_c00083{bottom:829.484400px;}
.ya_c00083{bottom:860.534400px;}
.y9_c00083{bottom:891.584400px;}
.y8_c00083{bottom:922.634400px;}
.y7_c00083{bottom:953.684400px;}
.y6_c00083{bottom:1015.784400px;}
.y5_c00083{bottom:1046.834400px;}
.y4_c00083{bottom:1108.934400px;}
.y3_c00083{bottom:1139.984400px;}
.y2_c00083{bottom:1194.074400px;}
.h2_c00083{height:50.400000px;}
.h3_c00083{height:54.331699px;}
.h4_c00083{height:76.824000px;}
.h5_c00083{height:78.048000px;}
.h0_c00083{height:1262.835000px;}
.h1_c00083{height:1263.000000px;}
.w0_c00083{width:892.914000px;}
.w1_c00083{width:893.250000px;}
.x0_c00083{left:0.000000px;}
.x1_c00083{left:54.000000px;}
.x2_c00083{left:127.620000px;}
.x5_c00083{left:148.950000px;}
.x4_c00083{left:159.570000px;}
.x3_c00083{left:170.190000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls6_c00083{letter-spacing:-0.128000pt;}
.ls5_c00083{letter-spacing:0.000000pt;}
.ls0_c00083{letter-spacing:0.064000pt;}
.ls1_c00083{letter-spacing:0.128000pt;}
.ls3_c00083{letter-spacing:20.800000pt;}
.ls4_c00083{letter-spacing:27.532800pt;}
.ls2_c00083{letter-spacing:54.208000pt;}
.ws0_c00083{word-spacing:-16.128000pt;}
.ws1_c00083{word-spacing:-16.000000pt;}
.ws6_c00083{word-spacing:-0.128000pt;}
.ws3_c00083{word-spacing:-0.117120pt;}
.wse_c00083{word-spacing:-0.064000pt;}
.ws2_c00083{word-spacing:0.000000pt;}
.ws22_c00083{word-spacing:0.128000pt;}
.ws21_c00083{word-spacing:0.576000pt;}
.ws1f_c00083{word-spacing:1.472000pt;}
.wsb_c00083{word-spacing:1.536000pt;}
.wsa_c00083{word-spacing:1.600000pt;}
.ws1a_c00083{word-spacing:2.496000pt;}
.ws1b_c00083{word-spacing:2.560000pt;}
.ws1c_c00083{word-spacing:2.816000pt;}
.ws5_c00083{word-spacing:3.200000pt;}
.ws8_c00083{word-spacing:4.096000pt;}
.ws11_c00083{word-spacing:4.160000pt;}
.ws19_c00083{word-spacing:4.736000pt;}
.ws4_c00083{word-spacing:5.696000pt;}
.wsf_c00083{word-spacing:6.976000pt;}
.ws10_c00083{word-spacing:7.040000pt;}
.ws7_c00083{word-spacing:8.000000pt;}
.ws15_c00083{word-spacing:8.576000pt;}
.ws14_c00083{word-spacing:8.640000pt;}
.ws16_c00083{word-spacing:8.960000pt;}
.ws24_c00083{word-spacing:10.240000pt;}
.ws23_c00083{word-spacing:10.496000pt;}
.ws25_c00083{word-spacing:10.560000pt;}
.ws9_c00083{word-spacing:10.880000pt;}
.ws1d_c00083{word-spacing:11.776000pt;}
.ws1e_c00083{word-spacing:11.840000pt;}
.wsd_c00083{word-spacing:12.736000pt;}
.ws12_c00083{word-spacing:13.120000pt;}
.ws13_c00083{word-spacing:15.296000pt;}
.wsc_c00083{word-spacing:20.736000pt;}
.ws17_c00083{word-spacing:26.240000pt;}
.ws18_c00083{word-spacing:26.496000pt;}
.ws20_c00083{word-spacing:34.880000pt;}
._1_c00083{margin-left:-0.960000pt;}
._0_c00083{width:1.054080pt;}
._3_c00083{width:9.600000pt;}
._2_c00083{width:23.488000pt;}
.fs1_c00083{font-size:58.560000pt;}
.fs0_c00083{font-size:64.000000pt;}
.y0_c00083{bottom:0.000000pt;}
.y1_c00083{bottom:54.887600pt;}
.y1f_c00083{bottom:102.599467pt;}
.y1e_c00083{bottom:130.199467pt;}
.y1d_c00083{bottom:185.399467pt;}
.y1c_c00083{bottom:212.999467pt;}
.y1b_c00083{bottom:240.599467pt;}
.y1a_c00083{bottom:268.199467pt;}
.y19_c00083{bottom:295.799467pt;}
.y18_c00083{bottom:323.399467pt;}
.y17_c00083{bottom:350.999467pt;}
.y16_c00083{bottom:406.199467pt;}
.y15_c00083{bottom:433.799467pt;}
.y14_c00083{bottom:461.399467pt;}
.y13_c00083{bottom:488.999467pt;}
.y12_c00083{bottom:516.599467pt;}
.y11_c00083{bottom:544.199467pt;}
.y10_c00083{bottom:571.799467pt;}
.yf_c00083{bottom:599.399467pt;}
.ye_c00083{bottom:626.999467pt;}
.yd_c00083{bottom:682.199467pt;}
.yc_c00083{bottom:709.719467pt;}
.yb_c00083{bottom:737.319467pt;}
.ya_c00083{bottom:764.919467pt;}
.y9_c00083{bottom:792.519467pt;}
.y8_c00083{bottom:820.119467pt;}
.y7_c00083{bottom:847.719467pt;}
.y6_c00083{bottom:902.919467pt;}
.y5_c00083{bottom:930.519467pt;}
.y4_c00083{bottom:985.719467pt;}
.y3_c00083{bottom:1013.319467pt;}
.y2_c00083{bottom:1061.399467pt;}
.h2_c00083{height:44.800000pt;}
.h3_c00083{height:48.294844pt;}
.h4_c00083{height:68.288000pt;}
.h5_c00083{height:69.376000pt;}
.h0_c00083{height:1122.520000pt;}
.h1_c00083{height:1122.666667pt;}
.w0_c00083{width:793.701333pt;}
.w1_c00083{width:794.000000pt;}
.x0_c00083{left:0.000000pt;}
.x1_c00083{left:48.000000pt;}
.x2_c00083{left:113.440000pt;}
.x5_c00083{left:132.400000pt;}
.x4_c00083{left:141.840000pt;}
.x3_c00083{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00084;src:url('chunks/assets/font_6169496f9bae86d2d19fb1df.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00084;src:url('chunks/assets/font_67a8d3459cb46ef3f45afd84.woff2')format("woff");}.ff3_c00084{font-family:ff3_c00084;line-height:1.575000;font-style:normal;font-weight:normal;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_35dbe7652825cc7e5d50b648.woff2')format("woff");}.ff4_c00084{font-family:ff4_c00084;line-height:1.592000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00084{font-family:ff5_c00084;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00084;src:url('chunks/assets/font_6d4a8f494c424eb20e3d4eef.woff2')format("woff");}.ff6_c00084{font-family:ff6_c00084;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00084;src:url('chunks/assets/font_136e22b664761c6351a49c86.woff2')format("woff");}.ff7_c00084{font-family:ff7_c00084;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00084;src:url('chunks/assets/font_8cd38a16ab4e62bc8d2fe98d.woff2')format("woff");}.ff8_c00084{font-family:ff8_c00084;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00084;src:url('chunks/assets/font_c58882fb1c4699a21c9f359c.woff2')format("woff");}.ff9_c00084{font-family:ff9_c00084;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00084{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.lsc_c00084{letter-spacing:-0.288000px;}
.lsb_c00084{letter-spacing:-0.144000px;}
.lsd_c00084{letter-spacing:-0.072000px;}
.lsa_c00084{letter-spacing:0.000000px;}
.ls0_c00084{letter-spacing:0.072000px;}
.ls1_c00084{letter-spacing:0.144000px;}
.ls5_c00084{letter-spacing:21.996000px;}
.ls9_c00084{letter-spacing:22.687200px;}
.ls3_c00084{letter-spacing:23.400000px;}
.ls8_c00084{letter-spacing:23.472000px;}
.ls6_c00084{letter-spacing:23.760000px;}
.ls4_c00084{letter-spacing:30.974400px;}
.ls7_c00084{letter-spacing:48.240000px;}
.ls2_c00084{letter-spacing:60.984000px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00084{word-spacing:-18.144000px;}
.ws3_c00084{word-spacing:-18.072000px;}
.ws1_c00084{word-spacing:-18.000000px;}
.ws3d_c00084{word-spacing:-0.360000px;}
.wsc_c00084{word-spacing:-0.144000px;}
.ws9_c00084{word-spacing:-0.131760px;}
.ws14_c00084{word-spacing:-0.072000px;}
.ws8_c00084{word-spacing:0.000000px;}
.ws36_c00084{word-spacing:0.072000px;}
.ws28_c00084{word-spacing:0.144000px;}
.ws27_c00084{word-spacing:0.648000px;}
.ws35_c00084{word-spacing:1.008000px;}
.ws25_c00084{word-spacing:1.656000px;}
.ws11_c00084{word-spacing:1.728000px;}
.ws10_c00084{word-spacing:1.800000px;}
.ws3e_c00084{word-spacing:2.160000px;}
.ws7_c00084{word-spacing:2.304000px;}
.ws20_c00084{word-spacing:2.808000px;}
.ws21_c00084{word-spacing:2.880000px;}
.ws22_c00084{word-spacing:3.168000px;}
.ws2d_c00084{word-spacing:3.528000px;}
.wsb_c00084{word-spacing:3.600000px;}
.ws2f_c00084{word-spacing:3.888000px;}
.ws38_c00084{word-spacing:4.248000px;}
.ws37_c00084{word-spacing:4.320000px;}
.wse_c00084{word-spacing:4.608000px;}
.ws17_c00084{word-spacing:4.680000px;}
.ws3a_c00084{word-spacing:4.968000px;}
.ws6_c00084{word-spacing:5.040000px;}
.ws1f_c00084{word-spacing:5.328000px;}
.ws31_c00084{word-spacing:5.688000px;}
.ws30_c00084{word-spacing:5.760000px;}
.wsa_c00084{word-spacing:6.408000px;}
.ws4_c00084{word-spacing:6.422400px;}
.ws33_c00084{word-spacing:6.480000px;}
.ws34_c00084{word-spacing:6.624000px;}
.ws15_c00084{word-spacing:7.848000px;}
.ws16_c00084{word-spacing:7.920000px;}
.ws3b_c00084{word-spacing:8.928000px;}
.wsd_c00084{word-spacing:9.000000px;}
.ws1b_c00084{word-spacing:9.648000px;}
.ws1a_c00084{word-spacing:9.720000px;}
.ws1c_c00084{word-spacing:10.080000px;}
.ws39_c00084{word-spacing:11.448000px;}
.ws5_c00084{word-spacing:11.498400px;}
.ws2a_c00084{word-spacing:11.520000px;}
.ws29_c00084{word-spacing:11.808000px;}
.ws2b_c00084{word-spacing:11.880000px;}
.wsf_c00084{word-spacing:12.240000px;}
.ws23_c00084{word-spacing:13.248000px;}
.ws24_c00084{word-spacing:13.320000px;}
.ws13_c00084{word-spacing:14.328000px;}
.ws18_c00084{word-spacing:14.760000px;}
.ws3c_c00084{word-spacing:15.408000px;}
.ws3f_c00084{word-spacing:16.776000px;}
.ws40_c00084{word-spacing:16.848000px;}
.ws19_c00084{word-spacing:17.208000px;}
.ws2e_c00084{word-spacing:18.720000px;}
.ws2c_c00084{word-spacing:22.536000px;}
.ws12_c00084{word-spacing:23.328000px;}
.ws32_c00084{word-spacing:27.648000px;}
.ws1d_c00084{word-spacing:29.520000px;}
.ws1e_c00084{word-spacing:29.808000px;}
.ws26_c00084{word-spacing:39.240000px;}
.ws2_c00084{word-spacing:50.400000px;}
._1_c00084{margin-left:-1.080000px;}
._0_c00084{width:1.185840px;}
._4_c00084{width:3.816000px;}
._3_c00084{width:10.800000px;}
._2_c00084{width:26.424000px;}
.fc2_c00084{color:transparent;}
.fc1_c00084{color:rgb(0,0,0);}
.fc0_c00084{color:rgb(35,31,32);}
.fs1_c00084{font-size:65.880000px;}
.fs0_c00084{font-size:72.000000px;}
.y0_c00084{bottom:0.000000px;}
.y1_c00084{bottom:61.748550px;}
.y1f_c00084{bottom:115.424400px;}
.y1e_c00084{bottom:146.474400px;}
.y25_c00084{bottom:177.524400px;}
.y1d_c00084{bottom:208.574400px;}
.y1c_c00084{bottom:239.624400px;}
.y1b_c00084{bottom:270.674400px;}
.y1a_c00084{bottom:301.724400px;}
.y19_c00084{bottom:332.774400px;}
.y18_c00084{bottom:363.824400px;}
.y17_c00084{bottom:394.874400px;}
.y24_c00084{bottom:425.924400px;}
.y16_c00084{bottom:456.974400px;}
.y15_c00084{bottom:488.024400px;}
.y14_c00084{bottom:519.074400px;}
.y13_c00084{bottom:550.124400px;}
.y12_c00084{bottom:581.174400px;}
.y11_c00084{bottom:612.224400px;}
.y10_c00084{bottom:643.274400px;}
.yf_c00084{bottom:674.324400px;}
.ye_c00084{bottom:705.374400px;}
.y23_c00084{bottom:736.424400px;}
.yd_c00084{bottom:767.474400px;}
.yc_c00084{bottom:798.434400px;}
.yb_c00084{bottom:829.484400px;}
.ya_c00084{bottom:860.534400px;}
.y9_c00084{bottom:891.584400px;}
.y8_c00084{bottom:922.634400px;}
.y22_c00084{bottom:953.504400px;}
.y7_c00084{bottom:953.684400px;}
.y21_c00084{bottom:984.554400px;}
.y6_c00084{bottom:1015.784400px;}
.y5_c00084{bottom:1046.834400px;}
.y20_c00084{bottom:1077.884400px;}
.y4_c00084{bottom:1108.934400px;}
.y3_c00084{bottom:1139.984400px;}
.y2_c00084{bottom:1194.074400px;}
.h2_c00084{height:50.400000px;}
.h3_c00084{height:54.331699px;}
.h4_c00084{height:76.824000px;}
.h5_c00084{height:78.048000px;}
.h0_c00084{height:1262.835000px;}
.h1_c00084{height:1263.000000px;}
.w2_c00084{width:0.000000px;}
.w3_c00084{width:0.066000px;}
.w0_c00084{width:892.914000px;}
.w1_c00084{width:893.250000px;}
.x1_c00084{left:-838.913400px;}
.x2_c00084{left:-765.293400px;}
.x5_c00084{left:-743.963400px;}
.x4_c00084{left:-733.343400px;}
.x3_c00084{left:-722.723400px;}
.x0_c00084{left:0.000000px;}
.x8_c00084{left:127.620000px;}
.x9_c00084{left:159.570000px;}
.x7_c00084{left:697.590000px;}
.x6_c00084{left:804.366150px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.lsc_c00084{letter-spacing:-0.256000pt;}
.lsb_c00084{letter-spacing:-0.128000pt;}
.lsd_c00084{letter-spacing:-0.064000pt;}
.lsa_c00084{letter-spacing:0.000000pt;}
.ls0_c00084{letter-spacing:0.064000pt;}
.ls1_c00084{letter-spacing:0.128000pt;}
.ls5_c00084{letter-spacing:19.552000pt;}
.ls9_c00084{letter-spacing:20.166400pt;}
.ls3_c00084{letter-spacing:20.800000pt;}
.ls8_c00084{letter-spacing:20.864000pt;}
.ls6_c00084{letter-spacing:21.120000pt;}
.ls4_c00084{letter-spacing:27.532800pt;}
.ls7_c00084{letter-spacing:42.880000pt;}
.ls2_c00084{letter-spacing:54.208000pt;}
.ws0_c00084{word-spacing:-16.128000pt;}
.ws3_c00084{word-spacing:-16.064000pt;}
.ws1_c00084{word-spacing:-16.000000pt;}
.ws3d_c00084{word-spacing:-0.320000pt;}
.wsc_c00084{word-spacing:-0.128000pt;}
.ws9_c00084{word-spacing:-0.117120pt;}
.ws14_c00084{word-spacing:-0.064000pt;}
.ws8_c00084{word-spacing:0.000000pt;}
.ws36_c00084{word-spacing:0.064000pt;}
.ws28_c00084{word-spacing:0.128000pt;}
.ws27_c00084{word-spacing:0.576000pt;}
.ws35_c00084{word-spacing:0.896000pt;}
.ws25_c00084{word-spacing:1.472000pt;}
.ws11_c00084{word-spacing:1.536000pt;}
.ws10_c00084{word-spacing:1.600000pt;}
.ws3e_c00084{word-spacing:1.920000pt;}
.ws7_c00084{word-spacing:2.048000pt;}
.ws20_c00084{word-spacing:2.496000pt;}
.ws21_c00084{word-spacing:2.560000pt;}
.ws22_c00084{word-spacing:2.816000pt;}
.ws2d_c00084{word-spacing:3.136000pt;}
.wsb_c00084{word-spacing:3.200000pt;}
.ws2f_c00084{word-spacing:3.456000pt;}
.ws38_c00084{word-spacing:3.776000pt;}
.ws37_c00084{word-spacing:3.840000pt;}
.wse_c00084{word-spacing:4.096000pt;}
.ws17_c00084{word-spacing:4.160000pt;}
.ws3a_c00084{word-spacing:4.416000pt;}
.ws6_c00084{word-spacing:4.480000pt;}
.ws1f_c00084{word-spacing:4.736000pt;}
.ws31_c00084{word-spacing:5.056000pt;}
.ws30_c00084{word-spacing:5.120000pt;}
.wsa_c00084{word-spacing:5.696000pt;}
.ws4_c00084{word-spacing:5.708800pt;}
.ws33_c00084{word-spacing:5.760000pt;}
.ws34_c00084{word-spacing:5.888000pt;}
.ws15_c00084{word-spacing:6.976000pt;}
.ws16_c00084{word-spacing:7.040000pt;}
.ws3b_c00084{word-spacing:7.936000pt;}
.wsd_c00084{word-spacing:8.000000pt;}
.ws1b_c00084{word-spacing:8.576000pt;}
.ws1a_c00084{word-spacing:8.640000pt;}
.ws1c_c00084{word-spacing:8.960000pt;}
.ws39_c00084{word-spacing:10.176000pt;}
.ws5_c00084{word-spacing:10.220800pt;}
.ws2a_c00084{word-spacing:10.240000pt;}
.ws29_c00084{word-spacing:10.496000pt;}
.ws2b_c00084{word-spacing:10.560000pt;}
.wsf_c00084{word-spacing:10.880000pt;}
.ws23_c00084{word-spacing:11.776000pt;}
.ws24_c00084{word-spacing:11.840000pt;}
.ws13_c00084{word-spacing:12.736000pt;}
.ws18_c00084{word-spacing:13.120000pt;}
.ws3c_c00084{word-spacing:13.696000pt;}
.ws3f_c00084{word-spacing:14.912000pt;}
.ws40_c00084{word-spacing:14.976000pt;}
.ws19_c00084{word-spacing:15.296000pt;}
.ws2e_c00084{word-spacing:16.640000pt;}
.ws2c_c00084{word-spacing:20.032000pt;}
.ws12_c00084{word-spacing:20.736000pt;}
.ws32_c00084{word-spacing:24.576000pt;}
.ws1d_c00084{word-spacing:26.240000pt;}
.ws1e_c00084{word-spacing:26.496000pt;}
.ws26_c00084{word-spacing:34.880000pt;}
.ws2_c00084{word-spacing:44.800000pt;}
._1_c00084{margin-left:-0.960000pt;}
._0_c00084{width:1.054080pt;}
._4_c00084{width:3.392000pt;}
._3_c00084{width:9.600000pt;}
._2_c00084{width:23.488000pt;}
.fs1_c00084{font-size:58.560000pt;}
.fs0_c00084{font-size:64.000000pt;}
.y0_c00084{bottom:0.000000pt;}
.y1_c00084{bottom:54.887600pt;}
.y1f_c00084{bottom:102.599467pt;}
.y1e_c00084{bottom:130.199467pt;}
.y25_c00084{bottom:157.799467pt;}
.y1d_c00084{bottom:185.399467pt;}
.y1c_c00084{bottom:212.999467pt;}
.y1b_c00084{bottom:240.599467pt;}
.y1a_c00084{bottom:268.199467pt;}
.y19_c00084{bottom:295.799467pt;}
.y18_c00084{bottom:323.399467pt;}
.y17_c00084{bottom:350.999467pt;}
.y24_c00084{bottom:378.599467pt;}
.y16_c00084{bottom:406.199467pt;}
.y15_c00084{bottom:433.799467pt;}
.y14_c00084{bottom:461.399467pt;}
.y13_c00084{bottom:488.999467pt;}
.y12_c00084{bottom:516.599467pt;}
.y11_c00084{bottom:544.199467pt;}
.y10_c00084{bottom:571.799467pt;}
.yf_c00084{bottom:599.399467pt;}
.ye_c00084{bottom:626.999467pt;}
.y23_c00084{bottom:654.599467pt;}
.yd_c00084{bottom:682.199467pt;}
.yc_c00084{bottom:709.719467pt;}
.yb_c00084{bottom:737.319467pt;}
.ya_c00084{bottom:764.919467pt;}
.y9_c00084{bottom:792.519467pt;}
.y8_c00084{bottom:820.119467pt;}
.y22_c00084{bottom:847.559467pt;}
.y7_c00084{bottom:847.719467pt;}
.y21_c00084{bottom:875.159467pt;}
.y6_c00084{bottom:902.919467pt;}
.y5_c00084{bottom:930.519467pt;}
.y20_c00084{bottom:958.119467pt;}
.y4_c00084{bottom:985.719467pt;}
.y3_c00084{bottom:1013.319467pt;}
.y2_c00084{bottom:1061.399467pt;}
.h2_c00084{height:44.800000pt;}
.h3_c00084{height:48.294844pt;}
.h4_c00084{height:68.288000pt;}
.h5_c00084{height:69.376000pt;}
.h0_c00084{height:1122.520000pt;}
.h1_c00084{height:1122.666667pt;}
.w2_c00084{width:0.000000pt;}
.w3_c00084{width:0.058667pt;}
.w0_c00084{width:793.701333pt;}
.w1_c00084{width:794.000000pt;}
.x1_c00084{left:-745.700800pt;}
.x2_c00084{left:-680.260800pt;}
.x5_c00084{left:-661.300800pt;}
.x4_c00084{left:-651.860800pt;}
.x3_c00084{left:-642.420800pt;}
.x0_c00084{left:0.000000pt;}
.x8_c00084{left:113.440000pt;}
.x9_c00084{left:141.840000pt;}
.x7_c00084{left:620.080000pt;}
.x6_c00084{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00085;src:url('chunks/assets/font_f95f276d9c74fbacfd7cec04.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00085;src:url('chunks/assets/font_8311ce0b43452e52cf00beab.woff2')format("woff");}.ff3_c00085{font-family:ff3_c00085;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00085{letter-spacing:-0.360000px;}
.ls6_c00085{letter-spacing:-0.288000px;}
.ls5_c00085{letter-spacing:0.000000px;}
.ls0_c00085{letter-spacing:0.072000px;}
.ls2_c00085{letter-spacing:0.144000px;}
.ls4_c00085{letter-spacing:21.600000px;}
.ls3_c00085{letter-spacing:28.440000px;}
.ls1_c00085{letter-spacing:31.680000px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00085{word-spacing:-18.144000px;}
.ws3_c00085{word-spacing:-18.072000px;}
.ws0_c00085{word-spacing:-18.000000px;}
.ws20_c00085{word-spacing:-0.504000px;}
.ws5_c00085{word-spacing:-0.131760px;}
.ws11_c00085{word-spacing:-0.072000px;}
.ws4_c00085{word-spacing:0.000000px;}
.ws23_c00085{word-spacing:0.288000px;}
.ws28_c00085{word-spacing:0.360000px;}
.ws17_c00085{word-spacing:0.720000px;}
.ws22_c00085{word-spacing:2.520000px;}
.ws1d_c00085{word-spacing:2.808000px;}
.ws10_c00085{word-spacing:3.168000px;}
.wsf_c00085{word-spacing:3.240000px;}
.ws7_c00085{word-spacing:3.744000px;}
.ws24_c00085{word-spacing:3.816000px;}
.ws1b_c00085{word-spacing:3.960000px;}
.ws8_c00085{word-spacing:4.248000px;}
.ws6_c00085{word-spacing:4.320000px;}
.ws1a_c00085{word-spacing:5.040000px;}
.ws1e_c00085{word-spacing:6.768000px;}
.ws1c_c00085{word-spacing:8.208000px;}
.ws26_c00085{word-spacing:9.288000px;}
.ws25_c00085{word-spacing:9.360000px;}
.ws12_c00085{word-spacing:10.296000px;}
.ws13_c00085{word-spacing:10.440000px;}
.ws14_c00085{word-spacing:10.800000px;}
.ws19_c00085{word-spacing:12.888000px;}
.ws18_c00085{word-spacing:12.960000px;}
.wse_c00085{word-spacing:13.968000px;}
.ws16_c00085{word-spacing:16.128000px;}
.ws15_c00085{word-spacing:16.200000px;}
.ws1f_c00085{word-spacing:16.920000px;}
.ws9_c00085{word-spacing:22.968000px;}
.wsb_c00085{word-spacing:24.048000px;}
.ws1_c00085{word-spacing:24.076800px;}
.ws29_c00085{word-spacing:24.120000px;}
.wsc_c00085{word-spacing:24.840000px;}
.ws27_c00085{word-spacing:26.208000px;}
.wsa_c00085{word-spacing:29.808000px;}
.wsd_c00085{word-spacing:34.128000px;}
.ws21_c00085{word-spacing:34.488000px;}
._1_c00085{margin-left:-1.080000px;}
._0_c00085{width:1.185840px;}
._3_c00085{width:8.280000px;}
._2_c00085{width:24.307200px;}
.fc1_c00085{color:rgb(0,0,0);}
.fc0_c00085{color:rgb(35,31,32);}
.fs1_c00085{font-size:65.880000px;}
.fs0_c00085{font-size:72.000000px;}
.y0_c00085{bottom:0.000000px;}
.y1_c00085{bottom:61.748550px;}
.y1f_c00085{bottom:177.524400px;}
.y1e_c00085{bottom:208.574400px;}
.y1d_c00085{bottom:239.624400px;}
.y1c_c00085{bottom:270.674400px;}
.y1b_c00085{bottom:301.724400px;}
.y1a_c00085{bottom:332.774400px;}
.y19_c00085{bottom:363.824400px;}
.y18_c00085{bottom:425.924400px;}
.y17_c00085{bottom:456.974400px;}
.y16_c00085{bottom:488.024400px;}
.y15_c00085{bottom:519.074400px;}
.y14_c00085{bottom:550.124400px;}
.y13_c00085{bottom:581.174400px;}
.y12_c00085{bottom:612.224400px;}
.y11_c00085{bottom:643.274400px;}
.y10_c00085{bottom:674.324400px;}
.yf_c00085{bottom:736.424400px;}
.ye_c00085{bottom:767.474400px;}
.yd_c00085{bottom:798.434400px;}
.yc_c00085{bottom:829.484400px;}
.yb_c00085{bottom:891.584400px;}
.ya_c00085{bottom:922.634400px;}
.y9_c00085{bottom:953.684400px;}
.y8_c00085{bottom:984.734400px;}
.y7_c00085{bottom:1015.784400px;}
.y6_c00085{bottom:1046.834400px;}
.y5_c00085{bottom:1077.884400px;}
.y4_c00085{bottom:1108.934400px;}
.y3_c00085{bottom:1139.984400px;}
.y2_c00085{bottom:1194.074400px;}
.h2_c00085{height:50.400000px;}
.h3_c00085{height:54.331699px;}
.h4_c00085{height:76.824000px;}
.h0_c00085{height:1262.835000px;}
.h1_c00085{height:1263.000000px;}
.w0_c00085{width:892.914000px;}
.w1_c00085{width:893.250000px;}
.x0_c00085{left:0.000000px;}
.x1_c00085{left:54.000000px;}
.x2_c00085{left:127.620000px;}
.x4_c00085{left:148.950000px;}
.x3_c00085{left:159.570000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls7_c00085{letter-spacing:-0.320000pt;}
.ls6_c00085{letter-spacing:-0.256000pt;}
.ls5_c00085{letter-spacing:0.000000pt;}
.ls0_c00085{letter-spacing:0.064000pt;}
.ls2_c00085{letter-spacing:0.128000pt;}
.ls4_c00085{letter-spacing:19.200000pt;}
.ls3_c00085{letter-spacing:25.280000pt;}
.ls1_c00085{letter-spacing:28.160000pt;}
.ws2_c00085{word-spacing:-16.128000pt;}
.ws3_c00085{word-spacing:-16.064000pt;}
.ws0_c00085{word-spacing:-16.000000pt;}
.ws20_c00085{word-spacing:-0.448000pt;}
.ws5_c00085{word-spacing:-0.117120pt;}
.ws11_c00085{word-spacing:-0.064000pt;}
.ws4_c00085{word-spacing:0.000000pt;}
.ws23_c00085{word-spacing:0.256000pt;}
.ws28_c00085{word-spacing:0.320000pt;}
.ws17_c00085{word-spacing:0.640000pt;}
.ws22_c00085{word-spacing:2.240000pt;}
.ws1d_c00085{word-spacing:2.496000pt;}
.ws10_c00085{word-spacing:2.816000pt;}
.wsf_c00085{word-spacing:2.880000pt;}
.ws7_c00085{word-spacing:3.328000pt;}
.ws24_c00085{word-spacing:3.392000pt;}
.ws1b_c00085{word-spacing:3.520000pt;}
.ws8_c00085{word-spacing:3.776000pt;}
.ws6_c00085{word-spacing:3.840000pt;}
.ws1a_c00085{word-spacing:4.480000pt;}
.ws1e_c00085{word-spacing:6.016000pt;}
.ws1c_c00085{word-spacing:7.296000pt;}
.ws26_c00085{word-spacing:8.256000pt;}
.ws25_c00085{word-spacing:8.320000pt;}
.ws12_c00085{word-spacing:9.152000pt;}
.ws13_c00085{word-spacing:9.280000pt;}
.ws14_c00085{word-spacing:9.600000pt;}
.ws19_c00085{word-spacing:11.456000pt;}
.ws18_c00085{word-spacing:11.520000pt;}
.wse_c00085{word-spacing:12.416000pt;}
.ws16_c00085{word-spacing:14.336000pt;}
.ws15_c00085{word-spacing:14.400000pt;}
.ws1f_c00085{word-spacing:15.040000pt;}
.ws9_c00085{word-spacing:20.416000pt;}
.wsb_c00085{word-spacing:21.376000pt;}
.ws1_c00085{word-spacing:21.401600pt;}
.ws29_c00085{word-spacing:21.440000pt;}
.wsc_c00085{word-spacing:22.080000pt;}
.ws27_c00085{word-spacing:23.296000pt;}
.wsa_c00085{word-spacing:26.496000pt;}
.wsd_c00085{word-spacing:30.336000pt;}
.ws21_c00085{word-spacing:30.656000pt;}
._1_c00085{margin-left:-0.960000pt;}
._0_c00085{width:1.054080pt;}
._3_c00085{width:7.360000pt;}
._2_c00085{width:21.606400pt;}
.fs1_c00085{font-size:58.560000pt;}
.fs0_c00085{font-size:64.000000pt;}
.y0_c00085{bottom:0.000000pt;}
.y1_c00085{bottom:54.887600pt;}
.y1f_c00085{bottom:157.799467pt;}
.y1e_c00085{bottom:185.399467pt;}
.y1d_c00085{bottom:212.999467pt;}
.y1c_c00085{bottom:240.599467pt;}
.y1b_c00085{bottom:268.199467pt;}
.y1a_c00085{bottom:295.799467pt;}
.y19_c00085{bottom:323.399467pt;}
.y18_c00085{bottom:378.599467pt;}
.y17_c00085{bottom:406.199467pt;}
.y16_c00085{bottom:433.799467pt;}
.y15_c00085{bottom:461.399467pt;}
.y14_c00085{bottom:488.999467pt;}
.y13_c00085{bottom:516.599467pt;}
.y12_c00085{bottom:544.199467pt;}
.y11_c00085{bottom:571.799467pt;}
.y10_c00085{bottom:599.399467pt;}
.yf_c00085{bottom:654.599467pt;}
.ye_c00085{bottom:682.199467pt;}
.yd_c00085{bottom:709.719467pt;}
.yc_c00085{bottom:737.319467pt;}
.yb_c00085{bottom:792.519467pt;}
.ya_c00085{bottom:820.119467pt;}
.y9_c00085{bottom:847.719467pt;}
.y8_c00085{bottom:875.319467pt;}
.y7_c00085{bottom:902.919467pt;}
.y6_c00085{bottom:930.519467pt;}
.y5_c00085{bottom:958.119467pt;}
.y4_c00085{bottom:985.719467pt;}
.y3_c00085{bottom:1013.319467pt;}
.y2_c00085{bottom:1061.399467pt;}
.h2_c00085{height:44.800000pt;}
.h3_c00085{height:48.294844pt;}
.h4_c00085{height:68.288000pt;}
.h0_c00085{height:1122.520000pt;}
.h1_c00085{height:1122.666667pt;}
.w0_c00085{width:793.701333pt;}
.w1_c00085{width:794.000000pt;}
.x0_c00085{left:0.000000pt;}
.x1_c00085{left:48.000000pt;}
.x2_c00085{left:113.440000pt;}
.x4_c00085{left:132.400000pt;}
.x3_c00085{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00086;src:url('chunks/assets/font_21733c758269af91943c8d6e.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00086;src:url('chunks/assets/font_5e386b8240f2e15ede2b8dd8.woff2')format("woff");}.ff3_c00086{font-family:ff3_c00086;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00086;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00086{font-family:ff4_c00086;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00086;src:url('chunks/assets/font_bd32c9bace65bf966a100c88.woff2')format("woff");}.ff5_c00086{font-family:ff5_c00086;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00086;src:url('chunks/assets/font_aa01e2dcb4db126776122231.woff2')format("woff");}.ff6_c00086{font-family:ff6_c00086;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00086;src:url('chunks/assets/font_f6f5c30756bca4c3baa410b2.woff2')format("woff");}.ff7_c00086{font-family:ff7_c00086;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00086;src:url('chunks/assets/font_2a7bb03de1e15be88514a97f.woff2')format("woff");}.ff8_c00086{font-family:ff8_c00086;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls9_c00086{letter-spacing:-0.360000px;}
.ls8_c00086{letter-spacing:-0.288000px;}
.lsa_c00086{letter-spacing:-0.072000px;}
.ls7_c00086{letter-spacing:0.000000px;}
.ls0_c00086{letter-spacing:0.072000px;}
.ls2_c00086{letter-spacing:0.144000px;}
.ls4_c00086{letter-spacing:21.600000px;}
.ls3_c00086{letter-spacing:28.440000px;}
.ls5_c00086{letter-spacing:28.800000px;}
.ls1_c00086{letter-spacing:31.680000px;}
.ls6_c00086{letter-spacing:35.280000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00086{word-spacing:-18.144000px;}
.ws3_c00086{word-spacing:-18.072000px;}
.ws0_c00086{word-spacing:-18.000000px;}
.ws5_c00086{word-spacing:-17.928000px;}
.ws24_c00086{word-spacing:-0.504000px;}
.wsb_c00086{word-spacing:-0.131760px;}
.ws16_c00086{word-spacing:-0.072000px;}
.wsa_c00086{word-spacing:0.000000px;}
.ws8_c00086{word-spacing:0.072000px;}
.ws27_c00086{word-spacing:0.288000px;}
.ws2c_c00086{word-spacing:0.360000px;}
.ws1b_c00086{word-spacing:0.720000px;}
.ws42_c00086{word-spacing:1.008000px;}
.ws37_c00086{word-spacing:1.080000px;}
.ws9_c00086{word-spacing:1.152000px;}
.ws32_c00086{word-spacing:2.160000px;}
.ws33_c00086{word-spacing:2.448000px;}
.ws26_c00086{word-spacing:2.520000px;}
.ws30_c00086{word-spacing:2.736000px;}
.ws21_c00086{word-spacing:2.808000px;}
.ws31_c00086{word-spacing:2.880000px;}
.ws15_c00086{word-spacing:3.168000px;}
.ws14_c00086{word-spacing:3.240000px;}
.ws3a_c00086{word-spacing:3.600000px;}
.wsd_c00086{word-spacing:3.744000px;}
.ws28_c00086{word-spacing:3.816000px;}
.ws1f_c00086{word-spacing:3.960000px;}
.wse_c00086{word-spacing:4.248000px;}
.wsc_c00086{word-spacing:4.320000px;}
.ws38_c00086{word-spacing:4.968000px;}
.ws1e_c00086{word-spacing:5.040000px;}
.ws22_c00086{word-spacing:6.768000px;}
.ws20_c00086{word-spacing:8.208000px;}
.ws3b_c00086{word-spacing:9.000000px;}
.ws2a_c00086{word-spacing:9.288000px;}
.ws29_c00086{word-spacing:9.360000px;}
.ws41_c00086{word-spacing:9.648000px;}
.ws7_c00086{word-spacing:10.296000px;}
.ws17_c00086{word-spacing:10.440000px;}
.ws18_c00086{word-spacing:10.800000px;}
.ws35_c00086{word-spacing:11.160000px;}
.ws34_c00086{word-spacing:11.520000px;}
.ws36_c00086{word-spacing:11.880000px;}
.ws1d_c00086{word-spacing:12.888000px;}
.ws1c_c00086{word-spacing:12.960000px;}
.ws13_c00086{word-spacing:13.968000px;}
.ws39_c00086{word-spacing:15.768000px;}
.ws1a_c00086{word-spacing:16.128000px;}
.ws19_c00086{word-spacing:16.200000px;}
.ws23_c00086{word-spacing:16.920000px;}
.ws3d_c00086{word-spacing:17.208000px;}
.ws3c_c00086{word-spacing:17.280000px;}
.wsf_c00086{word-spacing:22.968000px;}
.ws2e_c00086{word-spacing:23.760000px;}
.ws11_c00086{word-spacing:24.048000px;}
.ws1_c00086{word-spacing:24.076800px;}
.ws2d_c00086{word-spacing:24.120000px;}
.ws6_c00086{word-spacing:24.840000px;}
.ws2f_c00086{word-spacing:25.560000px;}
.ws2b_c00086{word-spacing:26.208000px;}
.ws3e_c00086{word-spacing:26.928000px;}
.ws3f_c00086{word-spacing:27.000000px;}
.ws10_c00086{word-spacing:29.808000px;}
.ws40_c00086{word-spacing:33.048000px;}
.ws12_c00086{word-spacing:34.128000px;}
.ws25_c00086{word-spacing:34.488000px;}
.ws4_c00086{word-spacing:50.400000px;}
._1_c00086{margin-left:-1.080000px;}
._0_c00086{width:1.185840px;}
._3_c00086{width:8.280000px;}
._2_c00086{width:24.307200px;}
._4_c00086{width:26.208000px;}
.fc2_c00086{color:transparent;}
.fc1_c00086{color:rgb(0,0,0);}
.fc0_c00086{color:rgb(35,31,32);}
.fs1_c00086{font-size:65.880000px;}
.fs0_c00086{font-size:72.000000px;}
.y0_c00086{bottom:0.000000px;}
.y1_c00086{bottom:61.748550px;}
.y29_c00086{bottom:115.424400px;}
.y28_c00086{bottom:146.474400px;}
.y1f_c00086{bottom:177.524400px;}
.y1e_c00086{bottom:208.574400px;}
.y1d_c00086{bottom:239.624400px;}
.y1c_c00086{bottom:270.674400px;}
.y1b_c00086{bottom:301.724400px;}
.y1a_c00086{bottom:332.774400px;}
.y19_c00086{bottom:363.824400px;}
.y27_c00086{bottom:394.874400px;}
.y18_c00086{bottom:425.924400px;}
.y17_c00086{bottom:456.974400px;}
.y16_c00086{bottom:488.024400px;}
.y15_c00086{bottom:519.074400px;}
.y14_c00086{bottom:550.124400px;}
.y13_c00086{bottom:581.174400px;}
.y12_c00086{bottom:612.224400px;}
.y11_c00086{bottom:643.274400px;}
.y10_c00086{bottom:674.324400px;}
.y26_c00086{bottom:705.374400px;}
.yf_c00086{bottom:736.424400px;}
.ye_c00086{bottom:767.474400px;}
.yd_c00086{bottom:798.434400px;}
.yc_c00086{bottom:829.484400px;}
.y25_c00086{bottom:860.534400px;}
.yb_c00086{bottom:891.584400px;}
.ya_c00086{bottom:922.634400px;}
.y24_c00086{bottom:953.594400px;}
.y9_c00086{bottom:953.684400px;}
.y23_c00086{bottom:984.644400px;}
.y8_c00086{bottom:984.734400px;}
.y22_c00086{bottom:1015.694400px;}
.y7_c00086{bottom:1015.784400px;}
.y6_c00086{bottom:1046.834400px;}
.y5_c00086{bottom:1077.884400px;}
.y21_c00086{bottom:1108.754400px;}
.y4_c00086{bottom:1108.934400px;}
.y20_c00086{bottom:1139.804400px;}
.y3_c00086{bottom:1139.984400px;}
.y2_c00086{bottom:1194.074400px;}
.h2_c00086{height:50.400000px;}
.h3_c00086{height:54.331699px;}
.h4_c00086{height:76.824000px;}
.h5_c00086{height:78.048000px;}
.h0_c00086{height:1262.835000px;}
.h1_c00086{height:1263.000000px;}
.w2_c00086{width:0.000000px;}
.w3_c00086{width:0.066000px;}
.w0_c00086{width:892.914000px;}
.w1_c00086{width:893.250000px;}
.x1_c00086{left:-838.913400px;}
.x2_c00086{left:-765.293400px;}
.x4_c00086{left:-743.963400px;}
.x3_c00086{left:-733.343400px;}
.x0_c00086{left:0.000000px;}
.x7_c00086{left:127.620000px;}
.x8_c00086{left:159.570000px;}
.x6_c00086{left:697.590000px;}
.x5_c00086{left:804.366150px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls9_c00086{letter-spacing:-0.320000pt;}
.ls8_c00086{letter-spacing:-0.256000pt;}
.lsa_c00086{letter-spacing:-0.064000pt;}
.ls7_c00086{letter-spacing:0.000000pt;}
.ls0_c00086{letter-spacing:0.064000pt;}
.ls2_c00086{letter-spacing:0.128000pt;}
.ls4_c00086{letter-spacing:19.200000pt;}
.ls3_c00086{letter-spacing:25.280000pt;}
.ls5_c00086{letter-spacing:25.600000pt;}
.ls1_c00086{letter-spacing:28.160000pt;}
.ls6_c00086{letter-spacing:31.360000pt;}
.ws2_c00086{word-spacing:-16.128000pt;}
.ws3_c00086{word-spacing:-16.064000pt;}
.ws0_c00086{word-spacing:-16.000000pt;}
.ws5_c00086{word-spacing:-15.936000pt;}
.ws24_c00086{word-spacing:-0.448000pt;}
.wsb_c00086{word-spacing:-0.117120pt;}
.ws16_c00086{word-spacing:-0.064000pt;}
.wsa_c00086{word-spacing:0.000000pt;}
.ws8_c00086{word-spacing:0.064000pt;}
.ws27_c00086{word-spacing:0.256000pt;}
.ws2c_c00086{word-spacing:0.320000pt;}
.ws1b_c00086{word-spacing:0.640000pt;}
.ws42_c00086{word-spacing:0.896000pt;}
.ws37_c00086{word-spacing:0.960000pt;}
.ws9_c00086{word-spacing:1.024000pt;}
.ws32_c00086{word-spacing:1.920000pt;}
.ws33_c00086{word-spacing:2.176000pt;}
.ws26_c00086{word-spacing:2.240000pt;}
.ws30_c00086{word-spacing:2.432000pt;}
.ws21_c00086{word-spacing:2.496000pt;}
.ws31_c00086{word-spacing:2.560000pt;}
.ws15_c00086{word-spacing:2.816000pt;}
.ws14_c00086{word-spacing:2.880000pt;}
.ws3a_c00086{word-spacing:3.200000pt;}
.wsd_c00086{word-spacing:3.328000pt;}
.ws28_c00086{word-spacing:3.392000pt;}
.ws1f_c00086{word-spacing:3.520000pt;}
.wse_c00086{word-spacing:3.776000pt;}
.wsc_c00086{word-spacing:3.840000pt;}
.ws38_c00086{word-spacing:4.416000pt;}
.ws1e_c00086{word-spacing:4.480000pt;}
.ws22_c00086{word-spacing:6.016000pt;}
.ws20_c00086{word-spacing:7.296000pt;}
.ws3b_c00086{word-spacing:8.000000pt;}
.ws2a_c00086{word-spacing:8.256000pt;}
.ws29_c00086{word-spacing:8.320000pt;}
.ws41_c00086{word-spacing:8.576000pt;}
.ws7_c00086{word-spacing:9.152000pt;}
.ws17_c00086{word-spacing:9.280000pt;}
.ws18_c00086{word-spacing:9.600000pt;}
.ws35_c00086{word-spacing:9.920000pt;}
.ws34_c00086{word-spacing:10.240000pt;}
.ws36_c00086{word-spacing:10.560000pt;}
.ws1d_c00086{word-spacing:11.456000pt;}
.ws1c_c00086{word-spacing:11.520000pt;}
.ws13_c00086{word-spacing:12.416000pt;}
.ws39_c00086{word-spacing:14.016000pt;}
.ws1a_c00086{word-spacing:14.336000pt;}
.ws19_c00086{word-spacing:14.400000pt;}
.ws23_c00086{word-spacing:15.040000pt;}
.ws3d_c00086{word-spacing:15.296000pt;}
.ws3c_c00086{word-spacing:15.360000pt;}
.wsf_c00086{word-spacing:20.416000pt;}
.ws2e_c00086{word-spacing:21.120000pt;}
.ws11_c00086{word-spacing:21.376000pt;}
.ws1_c00086{word-spacing:21.401600pt;}
.ws2d_c00086{word-spacing:21.440000pt;}
.ws6_c00086{word-spacing:22.080000pt;}
.ws2f_c00086{word-spacing:22.720000pt;}
.ws2b_c00086{word-spacing:23.296000pt;}
.ws3e_c00086{word-spacing:23.936000pt;}
.ws3f_c00086{word-spacing:24.000000pt;}
.ws10_c00086{word-spacing:26.496000pt;}
.ws40_c00086{word-spacing:29.376000pt;}
.ws12_c00086{word-spacing:30.336000pt;}
.ws25_c00086{word-spacing:30.656000pt;}
.ws4_c00086{word-spacing:44.800000pt;}
._1_c00086{margin-left:-0.960000pt;}
._0_c00086{width:1.054080pt;}
._3_c00086{width:7.360000pt;}
._2_c00086{width:21.606400pt;}
._4_c00086{width:23.296000pt;}
.fs1_c00086{font-size:58.560000pt;}
.fs0_c00086{font-size:64.000000pt;}
.y0_c00086{bottom:0.000000pt;}
.y1_c00086{bottom:54.887600pt;}
.y29_c00086{bottom:102.599467pt;}
.y28_c00086{bottom:130.199467pt;}
.y1f_c00086{bottom:157.799467pt;}
.y1e_c00086{bottom:185.399467pt;}
.y1d_c00086{bottom:212.999467pt;}
.y1c_c00086{bottom:240.599467pt;}
.y1b_c00086{bottom:268.199467pt;}
.y1a_c00086{bottom:295.799467pt;}
.y19_c00086{bottom:323.399467pt;}
.y27_c00086{bottom:350.999467pt;}
.y18_c00086{bottom:378.599467pt;}
.y17_c00086{bottom:406.199467pt;}
.y16_c00086{bottom:433.799467pt;}
.y15_c00086{bottom:461.399467pt;}
.y14_c00086{bottom:488.999467pt;}
.y13_c00086{bottom:516.599467pt;}
.y12_c00086{bottom:544.199467pt;}
.y11_c00086{bottom:571.799467pt;}
.y10_c00086{bottom:599.399467pt;}
.y26_c00086{bottom:626.999467pt;}
.yf_c00086{bottom:654.599467pt;}
.ye_c00086{bottom:682.199467pt;}
.yd_c00086{bottom:709.719467pt;}
.yc_c00086{bottom:737.319467pt;}
.y25_c00086{bottom:764.919467pt;}
.yb_c00086{bottom:792.519467pt;}
.ya_c00086{bottom:820.119467pt;}
.y24_c00086{bottom:847.639467pt;}
.y9_c00086{bottom:847.719467pt;}
.y23_c00086{bottom:875.239467pt;}
.y8_c00086{bottom:875.319467pt;}
.y22_c00086{bottom:902.839467pt;}
.y7_c00086{bottom:902.919467pt;}
.y6_c00086{bottom:930.519467pt;}
.y5_c00086{bottom:958.119467pt;}
.y21_c00086{bottom:985.559467pt;}
.y4_c00086{bottom:985.719467pt;}
.y20_c00086{bottom:1013.159467pt;}
.y3_c00086{bottom:1013.319467pt;}
.y2_c00086{bottom:1061.399467pt;}
.h2_c00086{height:44.800000pt;}
.h3_c00086{height:48.294844pt;}
.h4_c00086{height:68.288000pt;}
.h5_c00086{height:69.376000pt;}
.h0_c00086{height:1122.520000pt;}
.h1_c00086{height:1122.666667pt;}
.w2_c00086{width:0.000000pt;}
.w3_c00086{width:0.058667pt;}
.w0_c00086{width:793.701333pt;}
.w1_c00086{width:794.000000pt;}
.x1_c00086{left:-745.700800pt;}
.x2_c00086{left:-680.260800pt;}
.x4_c00086{left:-661.300800pt;}
.x3_c00086{left:-651.860800pt;}
.x0_c00086{left:0.000000pt;}
.x7_c00086{left:113.440000pt;}
.x8_c00086{left:141.840000pt;}
.x6_c00086{left:620.080000pt;}
.x5_c00086{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00087;src:url('chunks/assets/font_96d2d23941a61013a50af04e.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00087;src:url('chunks/assets/font_995d4a6fc5ca0a34bdd256bd.woff2')format("woff");}.ff3_c00087{font-family:ff3_c00087;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00087;src:url('chunks/assets/font_2d5ac1b248d9f75e8c489d4b.woff2')format("woff");}.ff4_c00087{font-family:ff4_c00087;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00087{letter-spacing:-0.288000px;}
.ls6_c00087{letter-spacing:-0.072000px;}
.ls4_c00087{letter-spacing:0.000000px;}
.ls1_c00087{letter-spacing:0.072000px;}
.ls0_c00087{letter-spacing:0.144000px;}
.ls2_c00087{letter-spacing:24.120000px;}
.ls3_c00087{letter-spacing:30.600000px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00087{word-spacing:-18.072000px;}
.ws6_c00087{word-spacing:-0.131760px;}
.ws1c_c00087{word-spacing:-0.072000px;}
.ws5_c00087{word-spacing:0.000000px;}
.ws1d_c00087{word-spacing:0.072000px;}
.ws19_c00087{word-spacing:0.288000px;}
.ws0_c00087{word-spacing:0.720000px;}
.ws15_c00087{word-spacing:1.368000px;}
.ws11_c00087{word-spacing:2.088000px;}
.ws12_c00087{word-spacing:2.160000px;}
.ws4_c00087{word-spacing:2.232000px;}
.ws1f_c00087{word-spacing:2.448000px;}
.ws20_c00087{word-spacing:2.520000px;}
.ws7_c00087{word-spacing:2.736000px;}
.ws8_c00087{word-spacing:2.880000px;}
.ws1b_c00087{word-spacing:3.096000px;}
.ws2_c00087{word-spacing:3.240000px;}
.ws18_c00087{word-spacing:3.456000px;}
.ws17_c00087{word-spacing:3.600000px;}
.wsf_c00087{word-spacing:5.400000px;}
.ws10_c00087{word-spacing:5.760000px;}
.ws1e_c00087{word-spacing:6.120000px;}
.wse_c00087{word-spacing:10.872000px;}
.wsb_c00087{word-spacing:11.088000px;}
.wsc_c00087{word-spacing:11.160000px;}
.wsd_c00087{word-spacing:11.448000px;}
.ws13_c00087{word-spacing:11.520000px;}
.ws24_c00087{word-spacing:12.528000px;}
.ws23_c00087{word-spacing:12.960000px;}
.ws14_c00087{word-spacing:13.320000px;}
.ws22_c00087{word-spacing:13.608000px;}
.ws21_c00087{word-spacing:13.680000px;}
.ws1a_c00087{word-spacing:15.768000px;}
.ws1_c00087{word-spacing:15.840000px;}
.ws9_c00087{word-spacing:21.240000px;}
.ws16_c00087{word-spacing:22.320000px;}
.wsa_c00087{word-spacing:25.920000px;}
._1_c00087{margin-left:-1.080000px;}
._0_c00087{width:1.185840px;}
._4_c00087{width:5.184000px;}
._5_c00087{width:6.336000px;}
._2_c00087{width:11.088000px;}
._3_c00087{width:24.480000px;}
.fc1_c00087{color:rgb(0,0,0);}
.fc0_c00087{color:rgb(35,31,32);}
.fs1_c00087{font-size:65.880000px;}
.fs0_c00087{font-size:72.000000px;}
.y0_c00087{bottom:0.000000px;}
.y1_c00087{bottom:61.748550px;}
.y17_c00087{bottom:123.524400px;}
.y16_c00087{bottom:550.124400px;}
.y15_c00087{bottom:581.174400px;}
.y14_c00087{bottom:612.224400px;}
.y13_c00087{bottom:643.274400px;}
.y12_c00087{bottom:674.324400px;}
.y11_c00087{bottom:705.374400px;}
.y10_c00087{bottom:736.424400px;}
.yf_c00087{bottom:767.474400px;}
.ye_c00087{bottom:798.434400px;}
.yd_c00087{bottom:829.484400px;}
.yc_c00087{bottom:860.534400px;}
.yb_c00087{bottom:891.584400px;}
.ya_c00087{bottom:922.634400px;}
.y9_c00087{bottom:953.684400px;}
.y8_c00087{bottom:984.734400px;}
.y7_c00087{bottom:1015.784400px;}
.y6_c00087{bottom:1046.834400px;}
.y5_c00087{bottom:1077.884400px;}
.y4_c00087{bottom:1108.934400px;}
.y3_c00087{bottom:1139.984400px;}
.y2_c00087{bottom:1194.074400px;}
.h2_c00087{height:50.400000px;}
.h3_c00087{height:54.331699px;}
.h4_c00087{height:76.824000px;}
.h5_c00087{height:78.048000px;}
.h0_c00087{height:1262.835000px;}
.h1_c00087{height:1263.000000px;}
.w0_c00087{width:892.914000px;}
.w1_c00087{width:893.250000px;}
.x0_c00087{left:0.000000px;}
.x1_c00087{left:54.000000px;}
.x2_c00087{left:127.620000px;}
.x3_c00087{left:159.570000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls5_c00087{letter-spacing:-0.256000pt;}
.ls6_c00087{letter-spacing:-0.064000pt;}
.ls4_c00087{letter-spacing:0.000000pt;}
.ls1_c00087{letter-spacing:0.064000pt;}
.ls0_c00087{letter-spacing:0.128000pt;}
.ls2_c00087{letter-spacing:21.440000pt;}
.ls3_c00087{letter-spacing:27.200000pt;}
.ws3_c00087{word-spacing:-16.064000pt;}
.ws6_c00087{word-spacing:-0.117120pt;}
.ws1c_c00087{word-spacing:-0.064000pt;}
.ws5_c00087{word-spacing:0.000000pt;}
.ws1d_c00087{word-spacing:0.064000pt;}
.ws19_c00087{word-spacing:0.256000pt;}
.ws0_c00087{word-spacing:0.640000pt;}
.ws15_c00087{word-spacing:1.216000pt;}
.ws11_c00087{word-spacing:1.856000pt;}
.ws12_c00087{word-spacing:1.920000pt;}
.ws4_c00087{word-spacing:1.984000pt;}
.ws1f_c00087{word-spacing:2.176000pt;}
.ws20_c00087{word-spacing:2.240000pt;}
.ws7_c00087{word-spacing:2.432000pt;}
.ws8_c00087{word-spacing:2.560000pt;}
.ws1b_c00087{word-spacing:2.752000pt;}
.ws2_c00087{word-spacing:2.880000pt;}
.ws18_c00087{word-spacing:3.072000pt;}
.ws17_c00087{word-spacing:3.200000pt;}
.wsf_c00087{word-spacing:4.800000pt;}
.ws10_c00087{word-spacing:5.120000pt;}
.ws1e_c00087{word-spacing:5.440000pt;}
.wse_c00087{word-spacing:9.664000pt;}
.wsb_c00087{word-spacing:9.856000pt;}
.wsc_c00087{word-spacing:9.920000pt;}
.wsd_c00087{word-spacing:10.176000pt;}
.ws13_c00087{word-spacing:10.240000pt;}
.ws24_c00087{word-spacing:11.136000pt;}
.ws23_c00087{word-spacing:11.520000pt;}
.ws14_c00087{word-spacing:11.840000pt;}
.ws22_c00087{word-spacing:12.096000pt;}
.ws21_c00087{word-spacing:12.160000pt;}
.ws1a_c00087{word-spacing:14.016000pt;}
.ws1_c00087{word-spacing:14.080000pt;}
.ws9_c00087{word-spacing:18.880000pt;}
.ws16_c00087{word-spacing:19.840000pt;}
.wsa_c00087{word-spacing:23.040000pt;}
._1_c00087{margin-left:-0.960000pt;}
._0_c00087{width:1.054080pt;}
._4_c00087{width:4.608000pt;}
._5_c00087{width:5.632000pt;}
._2_c00087{width:9.856000pt;}
._3_c00087{width:21.760000pt;}
.fs1_c00087{font-size:58.560000pt;}
.fs0_c00087{font-size:64.000000pt;}
.y0_c00087{bottom:0.000000pt;}
.y1_c00087{bottom:54.887600pt;}
.y17_c00087{bottom:109.799467pt;}
.y16_c00087{bottom:488.999467pt;}
.y15_c00087{bottom:516.599467pt;}
.y14_c00087{bottom:544.199467pt;}
.y13_c00087{bottom:571.799467pt;}
.y12_c00087{bottom:599.399467pt;}
.y11_c00087{bottom:626.999467pt;}
.y10_c00087{bottom:654.599467pt;}
.yf_c00087{bottom:682.199467pt;}
.ye_c00087{bottom:709.719467pt;}
.yd_c00087{bottom:737.319467pt;}
.yc_c00087{bottom:764.919467pt;}
.yb_c00087{bottom:792.519467pt;}
.ya_c00087{bottom:820.119467pt;}
.y9_c00087{bottom:847.719467pt;}
.y8_c00087{bottom:875.319467pt;}
.y7_c00087{bottom:902.919467pt;}
.y6_c00087{bottom:930.519467pt;}
.y5_c00087{bottom:958.119467pt;}
.y4_c00087{bottom:985.719467pt;}
.y3_c00087{bottom:1013.319467pt;}
.y2_c00087{bottom:1061.399467pt;}
.h2_c00087{height:44.800000pt;}
.h3_c00087{height:48.294844pt;}
.h4_c00087{height:68.288000pt;}
.h5_c00087{height:69.376000pt;}
.h0_c00087{height:1122.520000pt;}
.h1_c00087{height:1122.666667pt;}
.w0_c00087{width:793.701333pt;}
.w1_c00087{width:794.000000pt;}
.x0_c00087{left:0.000000pt;}
.x1_c00087{left:48.000000pt;}
.x2_c00087{left:113.440000pt;}
.x3_c00087{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00088;src:url('chunks/assets/font_72f1b86948cc5391645db099.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00088;src:url('chunks/assets/font_d536f4d3bbd07c9575bcf476.woff2')format("woff");}.ff3_c00088{font-family:ff3_c00088;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00088;src:url('chunks/assets/font_f991d5539db7470e6584c152.woff2')format("woff");}.ff4_c00088{font-family:ff4_c00088;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00088;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00088{font-family:ff5_c00088;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00088;src:url('chunks/assets/font_821dc1724e4b260859b7ad13.woff2')format("woff");}.ff6_c00088{font-family:ff6_c00088;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00088;src:url('chunks/assets/font_26369d92029da58074e3e171.woff2')format("woff");}.ff7_c00088{font-family:ff7_c00088;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00088;src:url('chunks/assets/font_f03f9724c7373dd9adbd1265.woff2')format("woff");}.ff8_c00088{font-family:ff8_c00088;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.lsb_c00088{letter-spacing:-0.576000px;}
.ls9_c00088{letter-spacing:-0.288000px;}
.lsa_c00088{letter-spacing:-0.072000px;}
.ls8_c00088{letter-spacing:0.000000px;}
.ls1_c00088{letter-spacing:0.072000px;}
.ls0_c00088{letter-spacing:0.144000px;}
.ls2_c00088{letter-spacing:24.120000px;}
.ls7_c00088{letter-spacing:24.624000px;}
.ls6_c00088{letter-spacing:28.440000px;}
.ls5_c00088{letter-spacing:28.800000px;}
.ls3_c00088{letter-spacing:30.600000px;}
.ls4_c00088{letter-spacing:40.824000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00088{word-spacing:-18.072000px;}
.ws7_c00088{word-spacing:-17.424000px;}
.ws8_c00088{word-spacing:-0.131760px;}
.ws1e_c00088{word-spacing:-0.072000px;}
.ws5_c00088{word-spacing:0.000000px;}
.ws1f_c00088{word-spacing:0.072000px;}
.ws1b_c00088{word-spacing:0.288000px;}
.ws0_c00088{word-spacing:0.720000px;}
.ws17_c00088{word-spacing:1.368000px;}
.ws27_c00088{word-spacing:1.440000px;}
.ws13_c00088{word-spacing:2.088000px;}
.ws14_c00088{word-spacing:2.160000px;}
.ws4_c00088{word-spacing:2.232000px;}
.ws21_c00088{word-spacing:2.448000px;}
.ws22_c00088{word-spacing:2.520000px;}
.ws9_c00088{word-spacing:2.736000px;}
.wsa_c00088{word-spacing:2.880000px;}
.ws1d_c00088{word-spacing:3.096000px;}
.ws36_c00088{word-spacing:3.168000px;}
.ws2_c00088{word-spacing:3.240000px;}
.ws1a_c00088{word-spacing:3.456000px;}
.ws19_c00088{word-spacing:3.600000px;}
.ws39_c00088{word-spacing:4.248000px;}
.ws38_c00088{word-spacing:4.320000px;}
.ws3a_c00088{word-spacing:4.968000px;}
.ws11_c00088{word-spacing:5.400000px;}
.ws32_c00088{word-spacing:5.688000px;}
.ws12_c00088{word-spacing:5.760000px;}
.ws20_c00088{word-spacing:6.120000px;}
.ws34_c00088{word-spacing:6.408000px;}
.ws33_c00088{word-spacing:6.480000px;}
.ws2f_c00088{word-spacing:8.208000px;}
.ws2e_c00088{word-spacing:8.568000px;}
.ws29_c00088{word-spacing:8.640000px;}
.ws30_c00088{word-spacing:10.440000px;}
.ws31_c00088{word-spacing:10.800000px;}
.ws10_c00088{word-spacing:10.872000px;}
.wsd_c00088{word-spacing:11.088000px;}
.wse_c00088{word-spacing:11.160000px;}
.wsf_c00088{word-spacing:11.448000px;}
.ws15_c00088{word-spacing:11.520000px;}
.ws2d_c00088{word-spacing:12.168000px;}
.ws26_c00088{word-spacing:12.528000px;}
.ws2c_c00088{word-spacing:12.600000px;}
.ws25_c00088{word-spacing:12.960000px;}
.ws16_c00088{word-spacing:13.320000px;}
.ws24_c00088{word-spacing:13.608000px;}
.ws23_c00088{word-spacing:13.680000px;}
.ws1c_c00088{word-spacing:15.768000px;}
.ws1_c00088{word-spacing:15.840000px;}
.wsb_c00088{word-spacing:21.240000px;}
.ws35_c00088{word-spacing:21.600000px;}
.ws18_c00088{word-spacing:22.320000px;}
.ws28_c00088{word-spacing:23.040000px;}
.wsc_c00088{word-spacing:25.920000px;}
.ws37_c00088{word-spacing:28.008000px;}
.ws6_c00088{word-spacing:37.656000px;}
.ws2b_c00088{word-spacing:37.728000px;}
.ws2a_c00088{word-spacing:37.800000px;}
._1_c00088{margin-left:-1.080000px;}
._0_c00088{width:1.185840px;}
._4_c00088{width:5.184000px;}
._5_c00088{width:6.336000px;}
._2_c00088{width:11.088000px;}
._3_c00088{width:24.480000px;}
._6_c00088{width:29.448000px;}
.fc2_c00088{color:transparent;}
.fc1_c00088{color:rgb(0,0,0);}
.fc0_c00088{color:rgb(35,31,32);}
.fs1_c00088{font-size:65.880000px;}
.fs0_c00088{font-size:72.000000px;}
.y0_c00088{bottom:0.000000px;}
.y1_c00088{bottom:61.748550px;}
.y17_c00088{bottom:123.524400px;}
.y21_c00088{bottom:177.524400px;}
.y20_c00088{bottom:208.574400px;}
.y1f_c00088{bottom:239.624400px;}
.y1e_c00088{bottom:301.724400px;}
.y1d_c00088{bottom:332.774400px;}
.y1c_c00088{bottom:363.824400px;}
.y1b_c00088{bottom:394.874400px;}
.y1a_c00088{bottom:425.924400px;}
.y19_c00088{bottom:456.974400px;}
.y18_c00088{bottom:519.074400px;}
.y16_c00088{bottom:550.124400px;}
.y15_c00088{bottom:581.174400px;}
.y14_c00088{bottom:612.224400px;}
.y13_c00088{bottom:643.274400px;}
.y12_c00088{bottom:674.324400px;}
.y11_c00088{bottom:705.374400px;}
.y10_c00088{bottom:736.424400px;}
.yf_c00088{bottom:767.474400px;}
.ye_c00088{bottom:798.434400px;}
.yd_c00088{bottom:829.484400px;}
.yc_c00088{bottom:860.534400px;}
.yb_c00088{bottom:891.584400px;}
.ya_c00088{bottom:922.634400px;}
.y9_c00088{bottom:953.684400px;}
.y8_c00088{bottom:984.734400px;}
.y7_c00088{bottom:1015.784400px;}
.y6_c00088{bottom:1046.834400px;}
.y5_c00088{bottom:1077.884400px;}
.y4_c00088{bottom:1108.934400px;}
.y3_c00088{bottom:1139.984400px;}
.y2_c00088{bottom:1194.074400px;}
.h2_c00088{height:50.400000px;}
.h3_c00088{height:54.331699px;}
.h4_c00088{height:76.824000px;}
.h5_c00088{height:78.048000px;}
.h0_c00088{height:1262.835000px;}
.h1_c00088{height:1263.000000px;}
.w2_c00088{width:0.000000px;}
.w3_c00088{width:0.066000px;}
.w0_c00088{width:892.914000px;}
.w1_c00088{width:893.250000px;}
.x1_c00088{left:-838.913400px;}
.x2_c00088{left:-765.293400px;}
.x3_c00088{left:-733.343400px;}
.x0_c00088{left:0.000000px;}
.x7_c00088{left:127.620000px;}
.x6_c00088{left:159.570000px;}
.x5_c00088{left:697.590000px;}
.x4_c00088{left:804.366150px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.lsb_c00088{letter-spacing:-0.512000pt;}
.ls9_c00088{letter-spacing:-0.256000pt;}
.lsa_c00088{letter-spacing:-0.064000pt;}
.ls8_c00088{letter-spacing:0.000000pt;}
.ls1_c00088{letter-spacing:0.064000pt;}
.ls0_c00088{letter-spacing:0.128000pt;}
.ls2_c00088{letter-spacing:21.440000pt;}
.ls7_c00088{letter-spacing:21.888000pt;}
.ls6_c00088{letter-spacing:25.280000pt;}
.ls5_c00088{letter-spacing:25.600000pt;}
.ls3_c00088{letter-spacing:27.200000pt;}
.ls4_c00088{letter-spacing:36.288000pt;}
.ws3_c00088{word-spacing:-16.064000pt;}
.ws7_c00088{word-spacing:-15.488000pt;}
.ws8_c00088{word-spacing:-0.117120pt;}
.ws1e_c00088{word-spacing:-0.064000pt;}
.ws5_c00088{word-spacing:0.000000pt;}
.ws1f_c00088{word-spacing:0.064000pt;}
.ws1b_c00088{word-spacing:0.256000pt;}
.ws0_c00088{word-spacing:0.640000pt;}
.ws17_c00088{word-spacing:1.216000pt;}
.ws27_c00088{word-spacing:1.280000pt;}
.ws13_c00088{word-spacing:1.856000pt;}
.ws14_c00088{word-spacing:1.920000pt;}
.ws4_c00088{word-spacing:1.984000pt;}
.ws21_c00088{word-spacing:2.176000pt;}
.ws22_c00088{word-spacing:2.240000pt;}
.ws9_c00088{word-spacing:2.432000pt;}
.wsa_c00088{word-spacing:2.560000pt;}
.ws1d_c00088{word-spacing:2.752000pt;}
.ws36_c00088{word-spacing:2.816000pt;}
.ws2_c00088{word-spacing:2.880000pt;}
.ws1a_c00088{word-spacing:3.072000pt;}
.ws19_c00088{word-spacing:3.200000pt;}
.ws39_c00088{word-spacing:3.776000pt;}
.ws38_c00088{word-spacing:3.840000pt;}
.ws3a_c00088{word-spacing:4.416000pt;}
.ws11_c00088{word-spacing:4.800000pt;}
.ws32_c00088{word-spacing:5.056000pt;}
.ws12_c00088{word-spacing:5.120000pt;}
.ws20_c00088{word-spacing:5.440000pt;}
.ws34_c00088{word-spacing:5.696000pt;}
.ws33_c00088{word-spacing:5.760000pt;}
.ws2f_c00088{word-spacing:7.296000pt;}
.ws2e_c00088{word-spacing:7.616000pt;}
.ws29_c00088{word-spacing:7.680000pt;}
.ws30_c00088{word-spacing:9.280000pt;}
.ws31_c00088{word-spacing:9.600000pt;}
.ws10_c00088{word-spacing:9.664000pt;}
.wsd_c00088{word-spacing:9.856000pt;}
.wse_c00088{word-spacing:9.920000pt;}
.wsf_c00088{word-spacing:10.176000pt;}
.ws15_c00088{word-spacing:10.240000pt;}
.ws2d_c00088{word-spacing:10.816000pt;}
.ws26_c00088{word-spacing:11.136000pt;}
.ws2c_c00088{word-spacing:11.200000pt;}
.ws25_c00088{word-spacing:11.520000pt;}
.ws16_c00088{word-spacing:11.840000pt;}
.ws24_c00088{word-spacing:12.096000pt;}
.ws23_c00088{word-spacing:12.160000pt;}
.ws1c_c00088{word-spacing:14.016000pt;}
.ws1_c00088{word-spacing:14.080000pt;}
.wsb_c00088{word-spacing:18.880000pt;}
.ws35_c00088{word-spacing:19.200000pt;}
.ws18_c00088{word-spacing:19.840000pt;}
.ws28_c00088{word-spacing:20.480000pt;}
.wsc_c00088{word-spacing:23.040000pt;}
.ws37_c00088{word-spacing:24.896000pt;}
.ws6_c00088{word-spacing:33.472000pt;}
.ws2b_c00088{word-spacing:33.536000pt;}
.ws2a_c00088{word-spacing:33.600000pt;}
._1_c00088{margin-left:-0.960000pt;}
._0_c00088{width:1.054080pt;}
._4_c00088{width:4.608000pt;}
._5_c00088{width:5.632000pt;}
._2_c00088{width:9.856000pt;}
._3_c00088{width:21.760000pt;}
._6_c00088{width:26.176000pt;}
.fs1_c00088{font-size:58.560000pt;}
.fs0_c00088{font-size:64.000000pt;}
.y0_c00088{bottom:0.000000pt;}
.y1_c00088{bottom:54.887600pt;}
.y17_c00088{bottom:109.799467pt;}
.y21_c00088{bottom:157.799467pt;}
.y20_c00088{bottom:185.399467pt;}
.y1f_c00088{bottom:212.999467pt;}
.y1e_c00088{bottom:268.199467pt;}
.y1d_c00088{bottom:295.799467pt;}
.y1c_c00088{bottom:323.399467pt;}
.y1b_c00088{bottom:350.999467pt;}
.y1a_c00088{bottom:378.599467pt;}
.y19_c00088{bottom:406.199467pt;}
.y18_c00088{bottom:461.399467pt;}
.y16_c00088{bottom:488.999467pt;}
.y15_c00088{bottom:516.599467pt;}
.y14_c00088{bottom:544.199467pt;}
.y13_c00088{bottom:571.799467pt;}
.y12_c00088{bottom:599.399467pt;}
.y11_c00088{bottom:626.999467pt;}
.y10_c00088{bottom:654.599467pt;}
.yf_c00088{bottom:682.199467pt;}
.ye_c00088{bottom:709.719467pt;}
.yd_c00088{bottom:737.319467pt;}
.yc_c00088{bottom:764.919467pt;}
.yb_c00088{bottom:792.519467pt;}
.ya_c00088{bottom:820.119467pt;}
.y9_c00088{bottom:847.719467pt;}
.y8_c00088{bottom:875.319467pt;}
.y7_c00088{bottom:902.919467pt;}
.y6_c00088{bottom:930.519467pt;}
.y5_c00088{bottom:958.119467pt;}
.y4_c00088{bottom:985.719467pt;}
.y3_c00088{bottom:1013.319467pt;}
.y2_c00088{bottom:1061.399467pt;}
.h2_c00088{height:44.800000pt;}
.h3_c00088{height:48.294844pt;}
.h4_c00088{height:68.288000pt;}
.h5_c00088{height:69.376000pt;}
.h0_c00088{height:1122.520000pt;}
.h1_c00088{height:1122.666667pt;}
.w2_c00088{width:0.000000pt;}
.w3_c00088{width:0.058667pt;}
.w0_c00088{width:793.701333pt;}
.w1_c00088{width:794.000000pt;}
.x1_c00088{left:-745.700800pt;}
.x2_c00088{left:-680.260800pt;}
.x3_c00088{left:-651.860800pt;}
.x0_c00088{left:0.000000pt;}
.x7_c00088{left:113.440000pt;}
.x6_c00088{left:141.840000pt;}
.x5_c00088{left:620.080000pt;}
.x4_c00088{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00089;src:url('chunks/assets/font_268130fdfb28dbb032d6776b.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00089;src:url('chunks/assets/font_fb694a19c334394443ae005a.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00089;src:url('chunks/assets/font_4d4cf499e0c2f122bdd0e393.woff2')format("woff");}.ff4_c00089{font-family:ff4_c00089;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00089;src:url('chunks/assets/font_6d2364554bd32e20c7af92f9.woff2')format("woff");}.ff5_c00089{font-family:ff5_c00089;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.ls6_c00089{letter-spacing:-0.360000px;}
.ls5_c00089{letter-spacing:-0.072000px;}
.ls4_c00089{letter-spacing:0.000000px;}
.ls1_c00089{letter-spacing:0.072000px;}
.ls2_c00089{letter-spacing:0.144000px;}
.ls0_c00089{letter-spacing:18.720000px;}
.ls3_c00089{letter-spacing:34.228800px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00089{word-spacing:-18.144000px;}
.ws6_c00089{word-spacing:-18.000000px;}
.ws5_c00089{word-spacing:-17.928000px;}
.ws8_c00089{word-spacing:-0.131760px;}
.wsb_c00089{word-spacing:-0.072000px;}
.ws7_c00089{word-spacing:0.000000px;}
.ws24_c00089{word-spacing:0.648000px;}
.ws9_c00089{word-spacing:1.080000px;}
.ws20_c00089{word-spacing:1.368000px;}
.ws1b_c00089{word-spacing:2.088000px;}
.ws1c_c00089{word-spacing:2.160000px;}
.ws0_c00089{word-spacing:2.304000px;}
.ws2_c00089{word-spacing:2.592000px;}
.wsa_c00089{word-spacing:2.880000px;}
.ws15_c00089{word-spacing:4.248000px;}
.ws14_c00089{word-spacing:6.048000px;}
.ws13_c00089{word-spacing:6.120000px;}
.ws12_c00089{word-spacing:6.480000px;}
.ws21_c00089{word-spacing:7.128000px;}
.ws19_c00089{word-spacing:8.928000px;}
.ws18_c00089{word-spacing:9.000000px;}
.ws22_c00089{word-spacing:9.648000px;}
.ws23_c00089{word-spacing:10.728000px;}
.ws17_c00089{word-spacing:11.520000px;}
.ws16_c00089{word-spacing:11.808000px;}
.ws1f_c00089{word-spacing:11.880000px;}
.wse_c00089{word-spacing:12.528000px;}
.wsd_c00089{word-spacing:12.600000px;}
.wsc_c00089{word-spacing:12.744000px;}
.ws10_c00089{word-spacing:14.688000px;}
.wsf_c00089{word-spacing:14.760000px;}
.ws25_c00089{word-spacing:16.056000px;}
.ws27_c00089{word-spacing:16.128000px;}
.ws26_c00089{word-spacing:16.200000px;}
.ws11_c00089{word-spacing:19.800000px;}
.ws1a_c00089{word-spacing:20.160000px;}
.ws1e_c00089{word-spacing:26.208000px;}
.ws1d_c00089{word-spacing:26.280000px;}
.ws3_c00089{word-spacing:27.072000px;}
.ws4_c00089{word-spacing:104.400000px;}
._1_c00089{margin-left:-1.000800px;}
._0_c00089{width:1.185840px;}
.fc1_c00089{color:rgb(0,0,0);}
.fc0_c00089{color:rgb(35,31,32);}
.fs1_c00089{font-size:65.880000px;}
.fs0_c00089{font-size:72.000000px;}
.y0_c00089{bottom:0.000000px;}
.y1_c00089{bottom:61.748550px;}
.y1e_c00089{bottom:115.424400px;}
.y1d_c00089{bottom:146.474400px;}
.y1c_c00089{bottom:177.524400px;}
.y1b_c00089{bottom:208.574400px;}
.y1a_c00089{bottom:270.494400px;}
.y19_c00089{bottom:301.544400px;}
.y18_c00089{bottom:363.824400px;}
.y17_c00089{bottom:394.874400px;}
.y16_c00089{bottom:425.924400px;}
.y15_c00089{bottom:456.974400px;}
.y14_c00089{bottom:488.024400px;}
.y13_c00089{bottom:519.074400px;}
.y12_c00089{bottom:550.124400px;}
.y11_c00089{bottom:612.224400px;}
.y10_c00089{bottom:643.274400px;}
.yf_c00089{bottom:674.324400px;}
.ye_c00089{bottom:705.374400px;}
.yd_c00089{bottom:736.424400px;}
.yc_c00089{bottom:798.434400px;}
.yb_c00089{bottom:829.484400px;}
.ya_c00089{bottom:891.584400px;}
.y9_c00089{bottom:922.634400px;}
.y8_c00089{bottom:953.684400px;}
.y7_c00089{bottom:984.734400px;}
.y6_c00089{bottom:1015.784400px;}
.y5_c00089{bottom:1077.884400px;}
.y4_c00089{bottom:1108.934400px;}
.y3_c00089{bottom:1139.984400px;}
.y2_c00089{bottom:1194.074400px;}
.h2_c00089{height:50.400000px;}
.h3_c00089{height:54.331699px;}
.h5_c00089{height:76.824000px;}
.h4_c00089{height:78.048000px;}
.h0_c00089{height:1262.835000px;}
.h1_c00089{height:1263.000000px;}
.w0_c00089{width:892.914000px;}
.w1_c00089{width:893.250000px;}
.x0_c00089{left:0.000000px;}
.x1_c00089{left:54.000000px;}
.x2_c00089{left:127.620000px;}
.x3_c00089{left:159.570000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls6_c00089{letter-spacing:-0.320000pt;}
.ls5_c00089{letter-spacing:-0.064000pt;}
.ls4_c00089{letter-spacing:0.000000pt;}
.ls1_c00089{letter-spacing:0.064000pt;}
.ls2_c00089{letter-spacing:0.128000pt;}
.ls0_c00089{letter-spacing:16.640000pt;}
.ls3_c00089{letter-spacing:30.425600pt;}
.ws1_c00089{word-spacing:-16.128000pt;}
.ws6_c00089{word-spacing:-16.000000pt;}
.ws5_c00089{word-spacing:-15.936000pt;}
.ws8_c00089{word-spacing:-0.117120pt;}
.wsb_c00089{word-spacing:-0.064000pt;}
.ws7_c00089{word-spacing:0.000000pt;}
.ws24_c00089{word-spacing:0.576000pt;}
.ws9_c00089{word-spacing:0.960000pt;}
.ws20_c00089{word-spacing:1.216000pt;}
.ws1b_c00089{word-spacing:1.856000pt;}
.ws1c_c00089{word-spacing:1.920000pt;}
.ws0_c00089{word-spacing:2.048000pt;}
.ws2_c00089{word-spacing:2.304000pt;}
.wsa_c00089{word-spacing:2.560000pt;}
.ws15_c00089{word-spacing:3.776000pt;}
.ws14_c00089{word-spacing:5.376000pt;}
.ws13_c00089{word-spacing:5.440000pt;}
.ws12_c00089{word-spacing:5.760000pt;}
.ws21_c00089{word-spacing:6.336000pt;}
.ws19_c00089{word-spacing:7.936000pt;}
.ws18_c00089{word-spacing:8.000000pt;}
.ws22_c00089{word-spacing:8.576000pt;}
.ws23_c00089{word-spacing:9.536000pt;}
.ws17_c00089{word-spacing:10.240000pt;}
.ws16_c00089{word-spacing:10.496000pt;}
.ws1f_c00089{word-spacing:10.560000pt;}
.wse_c00089{word-spacing:11.136000pt;}
.wsd_c00089{word-spacing:11.200000pt;}
.wsc_c00089{word-spacing:11.328000pt;}
.ws10_c00089{word-spacing:13.056000pt;}
.wsf_c00089{word-spacing:13.120000pt;}
.ws25_c00089{word-spacing:14.272000pt;}
.ws27_c00089{word-spacing:14.336000pt;}
.ws26_c00089{word-spacing:14.400000pt;}
.ws11_c00089{word-spacing:17.600000pt;}
.ws1a_c00089{word-spacing:17.920000pt;}
.ws1e_c00089{word-spacing:23.296000pt;}
.ws1d_c00089{word-spacing:23.360000pt;}
.ws3_c00089{word-spacing:24.064000pt;}
.ws4_c00089{word-spacing:92.800000pt;}
._1_c00089{margin-left:-0.889600pt;}
._0_c00089{width:1.054080pt;}
.fs1_c00089{font-size:58.560000pt;}
.fs0_c00089{font-size:64.000000pt;}
.y0_c00089{bottom:0.000000pt;}
.y1_c00089{bottom:54.887600pt;}
.y1e_c00089{bottom:102.599467pt;}
.y1d_c00089{bottom:130.199467pt;}
.y1c_c00089{bottom:157.799467pt;}
.y1b_c00089{bottom:185.399467pt;}
.y1a_c00089{bottom:240.439467pt;}
.y19_c00089{bottom:268.039467pt;}
.y18_c00089{bottom:323.399467pt;}
.y17_c00089{bottom:350.999467pt;}
.y16_c00089{bottom:378.599467pt;}
.y15_c00089{bottom:406.199467pt;}
.y14_c00089{bottom:433.799467pt;}
.y13_c00089{bottom:461.399467pt;}
.y12_c00089{bottom:488.999467pt;}
.y11_c00089{bottom:544.199467pt;}
.y10_c00089{bottom:571.799467pt;}
.yf_c00089{bottom:599.399467pt;}
.ye_c00089{bottom:626.999467pt;}
.yd_c00089{bottom:654.599467pt;}
.yc_c00089{bottom:709.719467pt;}
.yb_c00089{bottom:737.319467pt;}
.ya_c00089{bottom:792.519467pt;}
.y9_c00089{bottom:820.119467pt;}
.y8_c00089{bottom:847.719467pt;}
.y7_c00089{bottom:875.319467pt;}
.y6_c00089{bottom:902.919467pt;}
.y5_c00089{bottom:958.119467pt;}
.y4_c00089{bottom:985.719467pt;}
.y3_c00089{bottom:1013.319467pt;}
.y2_c00089{bottom:1061.399467pt;}
.h2_c00089{height:44.800000pt;}
.h3_c00089{height:48.294844pt;}
.h5_c00089{height:68.288000pt;}
.h4_c00089{height:69.376000pt;}
.h0_c00089{height:1122.520000pt;}
.h1_c00089{height:1122.666667pt;}
.w0_c00089{width:793.701333pt;}
.w1_c00089{width:794.000000pt;}
.x0_c00089{left:0.000000pt;}
.x1_c00089{left:48.000000pt;}
.x2_c00089{left:113.440000pt;}
.x3_c00089{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00090;src:url('chunks/assets/font_224f4a4308a1d22e5475131a.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00090;src:url('chunks/assets/font_e698ad78228d241bc378ba48.woff2')format("woff");}.ff3_c00090{font-family:ff3_c00090;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00090;src:url('chunks/assets/font_1c5d7b4db31858e6e1aed432.woff2')format("woff");}.ff4_c00090{font-family:ff4_c00090;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00090;src:url('chunks/assets/font_f2751fcfceee89291f5dc22d.woff2')format("woff");}.ff5_c00090{font-family:ff5_c00090;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00090;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00090{font-family:ff6_c00090;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00090;src:url('chunks/assets/font_22a4af1d2815ed6f8aca8e5c.woff2')format("woff");}.ff7_c00090{font-family:ff7_c00090;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00090;src:url('chunks/assets/font_8dd607a9667cbbf1d5caea0a.woff2')format("woff");}.ff8_c00090{font-family:ff8_c00090;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00090;src:url('chunks/assets/font_4c6ef4f5e33654597b17f96a.woff2')format("woff");}.ff9_c00090{font-family:ff9_c00090;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00090;src:url('chunks/assets/font_51e0bdd4c1cecb15c3d58b66.woff2')format("woff");}.ffa_c00090{font-family:ffa_c00090;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00090{letter-spacing:-0.360000px;}
.ls7_c00090{letter-spacing:-0.072000px;}
.ls6_c00090{letter-spacing:0.000000px;}
.ls1_c00090{letter-spacing:0.072000px;}
.ls2_c00090{letter-spacing:0.144000px;}
.ls0_c00090{letter-spacing:18.720000px;}
.ls5_c00090{letter-spacing:28.440000px;}
.ls3_c00090{letter-spacing:34.228800px;}
.ls4_c00090{letter-spacing:46.800000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00090{word-spacing:-18.144000px;}
.ws9_c00090{word-spacing:-18.072000px;}
.ws6_c00090{word-spacing:-18.000000px;}
.ws5_c00090{word-spacing:-17.928000px;}
.ws7_c00090{word-spacing:-17.640000px;}
.ws36_c00090{word-spacing:-0.144000px;}
.wsc_c00090{word-spacing:-0.131760px;}
.wsf_c00090{word-spacing:-0.072000px;}
.wsb_c00090{word-spacing:0.000000px;}
.ws27_c00090{word-spacing:0.648000px;}
.wsd_c00090{word-spacing:1.080000px;}
.ws23_c00090{word-spacing:1.368000px;}
.ws3e_c00090{word-spacing:1.440000px;}
.ws1e_c00090{word-spacing:2.088000px;}
.ws1f_c00090{word-spacing:2.160000px;}
.ws0_c00090{word-spacing:2.304000px;}
.ws32_c00090{word-spacing:2.448000px;}
.ws2_c00090{word-spacing:2.592000px;}
.wse_c00090{word-spacing:2.880000px;}
.ws34_c00090{word-spacing:3.528000px;}
.ws37_c00090{word-spacing:3.600000px;}
.ws18_c00090{word-spacing:4.248000px;}
.ws2e_c00090{word-spacing:5.328000px;}
.ws2d_c00090{word-spacing:5.400000px;}
.ws17_c00090{word-spacing:6.048000px;}
.ws16_c00090{word-spacing:6.120000px;}
.ws33_c00090{word-spacing:6.408000px;}
.ws8_c00090{word-spacing:6.480000px;}
.ws3a_c00090{word-spacing:6.840000px;}
.ws24_c00090{word-spacing:7.128000px;}
.ws39_c00090{word-spacing:7.200000px;}
.ws35_c00090{word-spacing:8.280000px;}
.ws1c_c00090{word-spacing:8.928000px;}
.ws1b_c00090{word-spacing:9.000000px;}
.ws25_c00090{word-spacing:9.648000px;}
.ws26_c00090{word-spacing:10.728000px;}
.ws3b_c00090{word-spacing:10.800000px;}
.ws3c_c00090{word-spacing:11.088000px;}
.ws3d_c00090{word-spacing:11.160000px;}
.ws1a_c00090{word-spacing:11.520000px;}
.ws19_c00090{word-spacing:11.808000px;}
.ws22_c00090{word-spacing:11.880000px;}
.ws3f_c00090{word-spacing:12.240000px;}
.ws12_c00090{word-spacing:12.528000px;}
.ws11_c00090{word-spacing:12.600000px;}
.ws10_c00090{word-spacing:12.744000px;}
.ws14_c00090{word-spacing:14.688000px;}
.ws13_c00090{word-spacing:14.760000px;}
.ws2b_c00090{word-spacing:15.408000px;}
.ws2c_c00090{word-spacing:15.768000px;}
.ws28_c00090{word-spacing:16.056000px;}
.ws2a_c00090{word-spacing:16.128000px;}
.ws29_c00090{word-spacing:16.200000px;}
.ws15_c00090{word-spacing:19.800000px;}
.ws1d_c00090{word-spacing:20.160000px;}
.ws21_c00090{word-spacing:26.208000px;}
.ws20_c00090{word-spacing:26.280000px;}
.ws3_c00090{word-spacing:27.072000px;}
.ws38_c00090{word-spacing:33.768000px;}
.ws31_c00090{word-spacing:35.640000px;}
.ws30_c00090{word-spacing:44.208000px;}
.ws2f_c00090{word-spacing:44.280000px;}
.wsa_c00090{word-spacing:50.400000px;}
.ws4_c00090{word-spacing:104.400000px;}
._1_c00090{margin-left:-1.000800px;}
._0_c00090{width:1.185840px;}
._3_c00090{width:10.872000px;}
._2_c00090{width:35.534160px;}
.fc2_c00090{color:transparent;}
.fc1_c00090{color:rgb(0,0,0);}
.fc0_c00090{color:rgb(35,31,32);}
.fs1_c00090{font-size:65.880000px;}
.fs0_c00090{font-size:72.000000px;}
.y0_c00090{bottom:0.000000px;}
.y1_c00090{bottom:61.748550px;}
.y1e_c00090{bottom:115.424400px;}
.y1d_c00090{bottom:146.474400px;}
.y1c_c00090{bottom:177.524400px;}
.y1b_c00090{bottom:208.574400px;}
.y25_c00090{bottom:239.624400px;}
.y1a_c00090{bottom:270.494400px;}
.y19_c00090{bottom:301.544400px;}
.y24_c00090{bottom:301.724400px;}
.y23_c00090{bottom:332.774400px;}
.y18_c00090{bottom:363.824400px;}
.y17_c00090{bottom:394.874400px;}
.y16_c00090{bottom:425.924400px;}
.y15_c00090{bottom:456.974400px;}
.y14_c00090{bottom:488.024400px;}
.y13_c00090{bottom:519.074400px;}
.y12_c00090{bottom:550.124400px;}
.y22_c00090{bottom:581.174400px;}
.y11_c00090{bottom:612.224400px;}
.y10_c00090{bottom:643.274400px;}
.yf_c00090{bottom:674.324400px;}
.ye_c00090{bottom:705.374400px;}
.y21_c00090{bottom:736.244400px;}
.yd_c00090{bottom:736.424400px;}
.yc_c00090{bottom:798.434400px;}
.yb_c00090{bottom:829.484400px;}
.y20_c00090{bottom:860.534400px;}
.ya_c00090{bottom:891.584400px;}
.y9_c00090{bottom:922.634400px;}
.y8_c00090{bottom:953.684400px;}
.y7_c00090{bottom:984.734400px;}
.y6_c00090{bottom:1015.784400px;}
.y1f_c00090{bottom:1046.834400px;}
.y5_c00090{bottom:1077.884400px;}
.y4_c00090{bottom:1108.934400px;}
.y3_c00090{bottom:1139.984400px;}
.y2_c00090{bottom:1194.074400px;}
.h2_c00090{height:50.400000px;}
.h3_c00090{height:54.331699px;}
.h5_c00090{height:76.824000px;}
.h4_c00090{height:78.048000px;}
.h0_c00090{height:1262.835000px;}
.h1_c00090{height:1263.000000px;}
.w2_c00090{width:0.000000px;}
.w3_c00090{width:0.066000px;}
.w0_c00090{width:892.914000px;}
.w1_c00090{width:893.250000px;}
.x1_c00090{left:-838.913400px;}
.x2_c00090{left:-765.293400px;}
.x3_c00090{left:-733.343400px;}
.x0_c00090{left:0.000000px;}
.x6_c00090{left:127.620000px;}
.x7_c00090{left:159.570000px;}
.x5_c00090{left:697.590000px;}
.x4_c00090{left:804.366150px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls8_c00090{letter-spacing:-0.320000pt;}
.ls7_c00090{letter-spacing:-0.064000pt;}
.ls6_c00090{letter-spacing:0.000000pt;}
.ls1_c00090{letter-spacing:0.064000pt;}
.ls2_c00090{letter-spacing:0.128000pt;}
.ls0_c00090{letter-spacing:16.640000pt;}
.ls5_c00090{letter-spacing:25.280000pt;}
.ls3_c00090{letter-spacing:30.425600pt;}
.ls4_c00090{letter-spacing:41.600000pt;}
.ws1_c00090{word-spacing:-16.128000pt;}
.ws9_c00090{word-spacing:-16.064000pt;}
.ws6_c00090{word-spacing:-16.000000pt;}
.ws5_c00090{word-spacing:-15.936000pt;}
.ws7_c00090{word-spacing:-15.680000pt;}
.ws36_c00090{word-spacing:-0.128000pt;}
.wsc_c00090{word-spacing:-0.117120pt;}
.wsf_c00090{word-spacing:-0.064000pt;}
.wsb_c00090{word-spacing:0.000000pt;}
.ws27_c00090{word-spacing:0.576000pt;}
.wsd_c00090{word-spacing:0.960000pt;}
.ws23_c00090{word-spacing:1.216000pt;}
.ws3e_c00090{word-spacing:1.280000pt;}
.ws1e_c00090{word-spacing:1.856000pt;}
.ws1f_c00090{word-spacing:1.920000pt;}
.ws0_c00090{word-spacing:2.048000pt;}
.ws32_c00090{word-spacing:2.176000pt;}
.ws2_c00090{word-spacing:2.304000pt;}
.wse_c00090{word-spacing:2.560000pt;}
.ws34_c00090{word-spacing:3.136000pt;}
.ws37_c00090{word-spacing:3.200000pt;}
.ws18_c00090{word-spacing:3.776000pt;}
.ws2e_c00090{word-spacing:4.736000pt;}
.ws2d_c00090{word-spacing:4.800000pt;}
.ws17_c00090{word-spacing:5.376000pt;}
.ws16_c00090{word-spacing:5.440000pt;}
.ws33_c00090{word-spacing:5.696000pt;}
.ws8_c00090{word-spacing:5.760000pt;}
.ws3a_c00090{word-spacing:6.080000pt;}
.ws24_c00090{word-spacing:6.336000pt;}
.ws39_c00090{word-spacing:6.400000pt;}
.ws35_c00090{word-spacing:7.360000pt;}
.ws1c_c00090{word-spacing:7.936000pt;}
.ws1b_c00090{word-spacing:8.000000pt;}
.ws25_c00090{word-spacing:8.576000pt;}
.ws26_c00090{word-spacing:9.536000pt;}
.ws3b_c00090{word-spacing:9.600000pt;}
.ws3c_c00090{word-spacing:9.856000pt;}
.ws3d_c00090{word-spacing:9.920000pt;}
.ws1a_c00090{word-spacing:10.240000pt;}
.ws19_c00090{word-spacing:10.496000pt;}
.ws22_c00090{word-spacing:10.560000pt;}
.ws3f_c00090{word-spacing:10.880000pt;}
.ws12_c00090{word-spacing:11.136000pt;}
.ws11_c00090{word-spacing:11.200000pt;}
.ws10_c00090{word-spacing:11.328000pt;}
.ws14_c00090{word-spacing:13.056000pt;}
.ws13_c00090{word-spacing:13.120000pt;}
.ws2b_c00090{word-spacing:13.696000pt;}
.ws2c_c00090{word-spacing:14.016000pt;}
.ws28_c00090{word-spacing:14.272000pt;}
.ws2a_c00090{word-spacing:14.336000pt;}
.ws29_c00090{word-spacing:14.400000pt;}
.ws15_c00090{word-spacing:17.600000pt;}
.ws1d_c00090{word-spacing:17.920000pt;}
.ws21_c00090{word-spacing:23.296000pt;}
.ws20_c00090{word-spacing:23.360000pt;}
.ws3_c00090{word-spacing:24.064000pt;}
.ws38_c00090{word-spacing:30.016000pt;}
.ws31_c00090{word-spacing:31.680000pt;}
.ws30_c00090{word-spacing:39.296000pt;}
.ws2f_c00090{word-spacing:39.360000pt;}
.wsa_c00090{word-spacing:44.800000pt;}
.ws4_c00090{word-spacing:92.800000pt;}
._1_c00090{margin-left:-0.889600pt;}
._0_c00090{width:1.054080pt;}
._3_c00090{width:9.664000pt;}
._2_c00090{width:31.585920pt;}
.fs1_c00090{font-size:58.560000pt;}
.fs0_c00090{font-size:64.000000pt;}
.y0_c00090{bottom:0.000000pt;}
.y1_c00090{bottom:54.887600pt;}
.y1e_c00090{bottom:102.599467pt;}
.y1d_c00090{bottom:130.199467pt;}
.y1c_c00090{bottom:157.799467pt;}
.y1b_c00090{bottom:185.399467pt;}
.y25_c00090{bottom:212.999467pt;}
.y1a_c00090{bottom:240.439467pt;}
.y19_c00090{bottom:268.039467pt;}
.y24_c00090{bottom:268.199467pt;}
.y23_c00090{bottom:295.799467pt;}
.y18_c00090{bottom:323.399467pt;}
.y17_c00090{bottom:350.999467pt;}
.y16_c00090{bottom:378.599467pt;}
.y15_c00090{bottom:406.199467pt;}
.y14_c00090{bottom:433.799467pt;}
.y13_c00090{bottom:461.399467pt;}
.y12_c00090{bottom:488.999467pt;}
.y22_c00090{bottom:516.599467pt;}
.y11_c00090{bottom:544.199467pt;}
.y10_c00090{bottom:571.799467pt;}
.yf_c00090{bottom:599.399467pt;}
.ye_c00090{bottom:626.999467pt;}
.y21_c00090{bottom:654.439467pt;}
.yd_c00090{bottom:654.599467pt;}
.yc_c00090{bottom:709.719467pt;}
.yb_c00090{bottom:737.319467pt;}
.y20_c00090{bottom:764.919467pt;}
.ya_c00090{bottom:792.519467pt;}
.y9_c00090{bottom:820.119467pt;}
.y8_c00090{bottom:847.719467pt;}
.y7_c00090{bottom:875.319467pt;}
.y6_c00090{bottom:902.919467pt;}
.y1f_c00090{bottom:930.519467pt;}
.y5_c00090{bottom:958.119467pt;}
.y4_c00090{bottom:985.719467pt;}
.y3_c00090{bottom:1013.319467pt;}
.y2_c00090{bottom:1061.399467pt;}
.h2_c00090{height:44.800000pt;}
.h3_c00090{height:48.294844pt;}
.h5_c00090{height:68.288000pt;}
.h4_c00090{height:69.376000pt;}
.h0_c00090{height:1122.520000pt;}
.h1_c00090{height:1122.666667pt;}
.w2_c00090{width:0.000000pt;}
.w3_c00090{width:0.058667pt;}
.w0_c00090{width:793.701333pt;}
.w1_c00090{width:794.000000pt;}
.x1_c00090{left:-745.700800pt;}
.x2_c00090{left:-680.260800pt;}
.x3_c00090{left:-651.860800pt;}
.x0_c00090{left:0.000000pt;}
.x6_c00090{left:113.440000pt;}
.x7_c00090{left:141.840000pt;}
.x5_c00090{left:620.080000pt;}
.x4_c00090{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00091;src:url('chunks/assets/font_82258a64f4f56e6830c78e84.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00091;src:url('chunks/assets/font_67b92dba759d29c785c6553a.woff2')format("woff");}.ff3_c00091{font-family:ff3_c00091;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00091;src:url('chunks/assets/font_c2964cd38c5a16b770c03cc7.woff2')format("woff");}.ff4_c00091{font-family:ff4_c00091;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00091;src:url('chunks/assets/font_8c98ecaa69b23b764255c0eb.woff2')format("woff");}.ff5_c00091{font-family:ff5_c00091;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls8_c00091{letter-spacing:-0.288000px;}
.ls6_c00091{letter-spacing:-0.072000px;}
.ls5_c00091{letter-spacing:0.000000px;}
.ls0_c00091{letter-spacing:0.072000px;}
.ls4_c00091{letter-spacing:0.144000px;}
.ls7_c00091{letter-spacing:0.360000px;}
.ls2_c00091{letter-spacing:18.072000px;}
.ls1_c00091{letter-spacing:32.472000px;}
.ls3_c00091{letter-spacing:36.014400px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00091{word-spacing:-18.072000px;}
.ws1_c00091{word-spacing:-18.000000px;}
.ws0_c00091{word-spacing:-17.928000px;}
.ws9_c00091{word-spacing:-0.360000px;}
.ws7_c00091{word-spacing:-0.131760px;}
.ws12_c00091{word-spacing:-0.072000px;}
.ws6_c00091{word-spacing:0.000000px;}
.ws1d_c00091{word-spacing:1.008000px;}
.wsc_c00091{word-spacing:1.080000px;}
.ws1c_c00091{word-spacing:1.368000px;}
.ws10_c00091{word-spacing:1.440000px;}
.ws4_c00091{word-spacing:1.656000px;}
.ws11_c00091{word-spacing:3.168000px;}
.ws2_c00091{word-spacing:3.384000px;}
.wsf_c00091{word-spacing:3.888000px;}
.ws19_c00091{word-spacing:3.960000px;}
.ws1a_c00091{word-spacing:4.536000px;}
.ws1b_c00091{word-spacing:4.680000px;}
.ws20_c00091{word-spacing:6.840000px;}
.ws15_c00091{word-spacing:8.208000px;}
.ws16_c00091{word-spacing:8.568000px;}
.ws17_c00091{word-spacing:8.640000px;}
.wsa_c00091{word-spacing:14.400000px;}
.wsb_c00091{word-spacing:14.688000px;}
.ws14_c00091{word-spacing:15.120000px;}
.wsd_c00091{word-spacing:18.288000px;}
.wse_c00091{word-spacing:18.360000px;}
.ws8_c00091{word-spacing:25.848000px;}
.ws1e_c00091{word-spacing:27.288000px;}
.ws1f_c00091{word-spacing:27.360000px;}
.ws18_c00091{word-spacing:28.368000px;}
.ws13_c00091{word-spacing:29.880000px;}
.ws5_c00091{word-spacing:50.400000px;}
._1_c00091{margin-left:-1.224000px;}
._0_c00091{width:1.185840px;}
._4_c00091{width:4.608000px;}
._3_c00091{width:8.208000px;}
._2_c00091{width:18.720000px;}
.fc1_c00091{color:rgb(0,0,0);}
.fc0_c00091{color:rgb(35,31,32);}
.fs1_c00091{font-size:65.880000px;}
.fs0_c00091{font-size:72.000000px;}
.y0_c00091{bottom:0.000000px;}
.y1_c00091{bottom:61.748550px;}
.y1e_c00091{bottom:146.384400px;}
.y1d_c00091{bottom:177.524400px;}
.y1c_c00091{bottom:208.574400px;}
.y1b_c00091{bottom:239.624400px;}
.y1a_c00091{bottom:270.674400px;}
.y19_c00091{bottom:301.724400px;}
.y18_c00091{bottom:332.774400px;}
.y17_c00091{bottom:394.694400px;}
.y16_c00091{bottom:456.974400px;}
.y15_c00091{bottom:488.024400px;}
.y14_c00091{bottom:519.074400px;}
.y13_c00091{bottom:550.124400px;}
.y12_c00091{bottom:581.174400px;}
.y11_c00091{bottom:612.224400px;}
.y10_c00091{bottom:674.324400px;}
.yf_c00091{bottom:705.374400px;}
.ye_c00091{bottom:736.424400px;}
.yd_c00091{bottom:767.474400px;}
.yc_c00091{bottom:829.484400px;}
.yb_c00091{bottom:860.534400px;}
.ya_c00091{bottom:891.584400px;}
.y9_c00091{bottom:922.634400px;}
.y8_c00091{bottom:953.684400px;}
.y7_c00091{bottom:984.734400px;}
.y6_c00091{bottom:1015.784400px;}
.y5_c00091{bottom:1046.834400px;}
.y4_c00091{bottom:1108.934400px;}
.y3_c00091{bottom:1139.984400px;}
.y2_c00091{bottom:1194.074400px;}
.h2_c00091{height:50.400000px;}
.h3_c00091{height:54.331699px;}
.h4_c00091{height:76.824000px;}
.h5_c00091{height:78.048000px;}
.h0_c00091{height:1262.835000px;}
.h1_c00091{height:1263.000000px;}
.w0_c00091{width:892.914000px;}
.w1_c00091{width:893.250000px;}
.x0_c00091{left:0.000000px;}
.x1_c00091{left:54.000000px;}
.x2_c00091{left:127.620000px;}
.x3_c00091{left:159.570000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls8_c00091{letter-spacing:-0.256000pt;}
.ls6_c00091{letter-spacing:-0.064000pt;}
.ls5_c00091{letter-spacing:0.000000pt;}
.ls0_c00091{letter-spacing:0.064000pt;}
.ls4_c00091{letter-spacing:0.128000pt;}
.ls7_c00091{letter-spacing:0.320000pt;}
.ls2_c00091{letter-spacing:16.064000pt;}
.ls1_c00091{letter-spacing:28.864000pt;}
.ls3_c00091{letter-spacing:32.012800pt;}
.ws3_c00091{word-spacing:-16.064000pt;}
.ws1_c00091{word-spacing:-16.000000pt;}
.ws0_c00091{word-spacing:-15.936000pt;}
.ws9_c00091{word-spacing:-0.320000pt;}
.ws7_c00091{word-spacing:-0.117120pt;}
.ws12_c00091{word-spacing:-0.064000pt;}
.ws6_c00091{word-spacing:0.000000pt;}
.ws1d_c00091{word-spacing:0.896000pt;}
.wsc_c00091{word-spacing:0.960000pt;}
.ws1c_c00091{word-spacing:1.216000pt;}
.ws10_c00091{word-spacing:1.280000pt;}
.ws4_c00091{word-spacing:1.472000pt;}
.ws11_c00091{word-spacing:2.816000pt;}
.ws2_c00091{word-spacing:3.008000pt;}
.wsf_c00091{word-spacing:3.456000pt;}
.ws19_c00091{word-spacing:3.520000pt;}
.ws1a_c00091{word-spacing:4.032000pt;}
.ws1b_c00091{word-spacing:4.160000pt;}
.ws20_c00091{word-spacing:6.080000pt;}
.ws15_c00091{word-spacing:7.296000pt;}
.ws16_c00091{word-spacing:7.616000pt;}
.ws17_c00091{word-spacing:7.680000pt;}
.wsa_c00091{word-spacing:12.800000pt;}
.wsb_c00091{word-spacing:13.056000pt;}
.ws14_c00091{word-spacing:13.440000pt;}
.wsd_c00091{word-spacing:16.256000pt;}
.wse_c00091{word-spacing:16.320000pt;}
.ws8_c00091{word-spacing:22.976000pt;}
.ws1e_c00091{word-spacing:24.256000pt;}
.ws1f_c00091{word-spacing:24.320000pt;}
.ws18_c00091{word-spacing:25.216000pt;}
.ws13_c00091{word-spacing:26.560000pt;}
.ws5_c00091{word-spacing:44.800000pt;}
._1_c00091{margin-left:-1.088000pt;}
._0_c00091{width:1.054080pt;}
._4_c00091{width:4.096000pt;}
._3_c00091{width:7.296000pt;}
._2_c00091{width:16.640000pt;}
.fs1_c00091{font-size:58.560000pt;}
.fs0_c00091{font-size:64.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y1_c00091{bottom:54.887600pt;}
.y1e_c00091{bottom:130.119467pt;}
.y1d_c00091{bottom:157.799467pt;}
.y1c_c00091{bottom:185.399467pt;}
.y1b_c00091{bottom:212.999467pt;}
.y1a_c00091{bottom:240.599467pt;}
.y19_c00091{bottom:268.199467pt;}
.y18_c00091{bottom:295.799467pt;}
.y17_c00091{bottom:350.839467pt;}
.y16_c00091{bottom:406.199467pt;}
.y15_c00091{bottom:433.799467pt;}
.y14_c00091{bottom:461.399467pt;}
.y13_c00091{bottom:488.999467pt;}
.y12_c00091{bottom:516.599467pt;}
.y11_c00091{bottom:544.199467pt;}
.y10_c00091{bottom:599.399467pt;}
.yf_c00091{bottom:626.999467pt;}
.ye_c00091{bottom:654.599467pt;}
.yd_c00091{bottom:682.199467pt;}
.yc_c00091{bottom:737.319467pt;}
.yb_c00091{bottom:764.919467pt;}
.ya_c00091{bottom:792.519467pt;}
.y9_c00091{bottom:820.119467pt;}
.y8_c00091{bottom:847.719467pt;}
.y7_c00091{bottom:875.319467pt;}
.y6_c00091{bottom:902.919467pt;}
.y5_c00091{bottom:930.519467pt;}
.y4_c00091{bottom:985.719467pt;}
.y3_c00091{bottom:1013.319467pt;}
.y2_c00091{bottom:1061.399467pt;}
.h2_c00091{height:44.800000pt;}
.h3_c00091{height:48.294844pt;}
.h4_c00091{height:68.288000pt;}
.h5_c00091{height:69.376000pt;}
.h0_c00091{height:1122.520000pt;}
.h1_c00091{height:1122.666667pt;}
.w0_c00091{width:793.701333pt;}
.w1_c00091{width:794.000000pt;}
.x0_c00091{left:0.000000pt;}
.x1_c00091{left:48.000000pt;}
.x2_c00091{left:113.440000pt;}
.x3_c00091{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00092;src:url('chunks/assets/font_575f29867642420d6b969b00.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00092;src:url('chunks/assets/font_aca66d5e2e443ed9052ad1f1.woff2')format("woff");}.ff3_c00092{font-family:ff3_c00092;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00092;src:url('chunks/assets/font_33148b57c0a53a02e8df3d4f.woff2')format("woff");}.ff4_c00092{font-family:ff4_c00092;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00092;src:url('chunks/assets/font_74c8ab8928991182204a3980.woff2')format("woff");}.ff5_c00092{font-family:ff5_c00092;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00092;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00092{font-family:ff6_c00092;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00092;src:url('chunks/assets/font_c5555ca501f8dcac005a0b21.woff2')format("woff");}.ff7_c00092{font-family:ff7_c00092;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00092;src:url('chunks/assets/font_bf2db81f2db92c4fb2041a6d.woff2')format("woff");}.ff8_c00092{font-family:ff8_c00092;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00092;src:url('chunks/assets/font_33148b57c0a53a02e8df3d4f.woff2')format("woff");}.ff9_c00092{font-family:ff9_c00092;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00092;src:url('chunks/assets/font_50c9aecbb3b1eb20df6ecc52.woff2')format("woff");}.ffa_c00092{font-family:ffa_c00092;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsf_c00092{letter-spacing:-0.576000px;}
.lse_c00092{letter-spacing:-0.288000px;}
.lsc_c00092{letter-spacing:-0.072000px;}
.lsb_c00092{letter-spacing:0.000000px;}
.ls0_c00092{letter-spacing:0.072000px;}
.ls6_c00092{letter-spacing:0.129600px;}
.ls4_c00092{letter-spacing:0.144000px;}
.lsd_c00092{letter-spacing:0.360000px;}
.ls2_c00092{letter-spacing:18.072000px;}
.ls9_c00092{letter-spacing:20.952000px;}
.ls7_c00092{letter-spacing:23.400000px;}
.ls8_c00092{letter-spacing:23.760000px;}
.lsa_c00092{letter-spacing:24.480000px;}
.ls1_c00092{letter-spacing:32.472000px;}
.ls5_c00092{letter-spacing:36.007200px;}
.ls3_c00092{letter-spacing:36.014400px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00092{word-spacing:-18.072000px;}
.ws1_c00092{word-spacing:-18.000000px;}
.ws0_c00092{word-spacing:-17.928000px;}
.wsd_c00092{word-spacing:-0.360000px;}
.ws2d_c00092{word-spacing:-0.144000px;}
.wsb_c00092{word-spacing:-0.131760px;}
.ws16_c00092{word-spacing:-0.072000px;}
.ws8_c00092{word-spacing:0.000000px;}
.ws6_c00092{word-spacing:0.144000px;}
.wsa_c00092{word-spacing:0.216000px;}
.ws41_c00092{word-spacing:0.288000px;}
.ws42_c00092{word-spacing:0.360000px;}
.ws37_c00092{word-spacing:0.648000px;}
.ws43_c00092{word-spacing:0.720000px;}
.ws21_c00092{word-spacing:1.008000px;}
.ws10_c00092{word-spacing:1.080000px;}
.ws20_c00092{word-spacing:1.368000px;}
.ws14_c00092{word-spacing:1.440000px;}
.ws4_c00092{word-spacing:1.656000px;}
.ws2b_c00092{word-spacing:1.728000px;}
.ws2a_c00092{word-spacing:1.800000px;}
.ws38_c00092{word-spacing:2.808000px;}
.ws39_c00092{word-spacing:2.880000px;}
.ws15_c00092{word-spacing:3.168000px;}
.ws2_c00092{word-spacing:3.384000px;}
.ws13_c00092{word-spacing:3.888000px;}
.ws1d_c00092{word-spacing:3.960000px;}
.ws29_c00092{word-spacing:4.248000px;}
.ws1e_c00092{word-spacing:4.536000px;}
.ws1f_c00092{word-spacing:4.680000px;}
.ws27_c00092{word-spacing:5.328000px;}
.ws26_c00092{word-spacing:5.400000px;}
.ws2f_c00092{word-spacing:5.544000px;}
.ws31_c00092{word-spacing:5.688000px;}
.ws30_c00092{word-spacing:5.760000px;}
.ws2e_c00092{word-spacing:5.976000px;}
.ws3d_c00092{word-spacing:6.048000px;}
.ws28_c00092{word-spacing:6.120000px;}
.ws3e_c00092{word-spacing:6.480000px;}
.ws24_c00092{word-spacing:6.840000px;}
.ws7_c00092{word-spacing:7.704000px;}
.ws32_c00092{word-spacing:7.848000px;}
.ws33_c00092{word-spacing:7.920000px;}
.ws3b_c00092{word-spacing:8.064000px;}
.ws19_c00092{word-spacing:8.208000px;}
.ws3a_c00092{word-spacing:8.280000px;}
.ws1a_c00092{word-spacing:8.568000px;}
.ws1b_c00092{word-spacing:8.640000px;}
.ws34_c00092{word-spacing:10.296000px;}
.ws35_c00092{word-spacing:10.440000px;}
.wse_c00092{word-spacing:14.400000px;}
.wsf_c00092{word-spacing:14.688000px;}
.ws2c_c00092{word-spacing:15.048000px;}
.ws18_c00092{word-spacing:15.120000px;}
.ws36_c00092{word-spacing:17.208000px;}
.ws9_c00092{word-spacing:17.496000px;}
.ws11_c00092{word-spacing:18.288000px;}
.ws12_c00092{word-spacing:18.360000px;}
.ws25_c00092{word-spacing:18.720000px;}
.wsc_c00092{word-spacing:25.848000px;}
.ws22_c00092{word-spacing:27.288000px;}
.ws23_c00092{word-spacing:27.360000px;}
.ws3f_c00092{word-spacing:28.008000px;}
.ws40_c00092{word-spacing:28.080000px;}
.ws1c_c00092{word-spacing:28.368000px;}
.ws17_c00092{word-spacing:29.880000px;}
.ws3c_c00092{word-spacing:34.128000px;}
.ws5_c00092{word-spacing:50.400000px;}
._1_c00092{margin-left:-1.224000px;}
._0_c00092{width:1.185840px;}
._4_c00092{width:4.608000px;}
._3_c00092{width:8.208000px;}
._2_c00092{width:18.720000px;}
.fc2_c00092{color:transparent;}
.fc1_c00092{color:rgb(0,0,0);}
.fc0_c00092{color:rgb(35,31,32);}
.fs1_c00092{font-size:65.880000px;}
.fs0_c00092{font-size:72.000000px;}
.y0_c00092{bottom:0.000000px;}
.y1_c00092{bottom:61.748550px;}
.y1e_c00092{bottom:146.384400px;}
.y1d_c00092{bottom:177.524400px;}
.y1c_c00092{bottom:208.574400px;}
.y1b_c00092{bottom:239.624400px;}
.y1a_c00092{bottom:270.674400px;}
.y19_c00092{bottom:301.724400px;}
.y18_c00092{bottom:332.774400px;}
.y23_c00092{bottom:363.824400px;}
.y17_c00092{bottom:394.694400px;}
.y22_c00092{bottom:394.874400px;}
.y21_c00092{bottom:425.924400px;}
.y16_c00092{bottom:456.974400px;}
.y15_c00092{bottom:488.024400px;}
.y14_c00092{bottom:519.074400px;}
.y13_c00092{bottom:550.124400px;}
.y12_c00092{bottom:581.174400px;}
.y11_c00092{bottom:612.224400px;}
.y20_c00092{bottom:643.274400px;}
.y10_c00092{bottom:674.324400px;}
.yf_c00092{bottom:705.374400px;}
.ye_c00092{bottom:736.424400px;}
.yd_c00092{bottom:767.474400px;}
.yc_c00092{bottom:829.484400px;}
.yb_c00092{bottom:860.534400px;}
.ya_c00092{bottom:891.584400px;}
.y9_c00092{bottom:922.634400px;}
.y8_c00092{bottom:953.684400px;}
.y7_c00092{bottom:984.734400px;}
.y6_c00092{bottom:1015.784400px;}
.y5_c00092{bottom:1046.834400px;}
.y4_c00092{bottom:1108.934400px;}
.y1f_c00092{bottom:1139.894400px;}
.y3_c00092{bottom:1139.984400px;}
.y2_c00092{bottom:1194.074400px;}
.h2_c00092{height:50.400000px;}
.h3_c00092{height:54.331699px;}
.h4_c00092{height:76.824000px;}
.h5_c00092{height:78.048000px;}
.h0_c00092{height:1262.835000px;}
.h1_c00092{height:1263.000000px;}
.w2_c00092{width:0.000000px;}
.w3_c00092{width:0.066000px;}
.w0_c00092{width:892.914000px;}
.w1_c00092{width:893.250000px;}
.x1_c00092{left:-838.913400px;}
.x2_c00092{left:-765.293400px;}
.x3_c00092{left:-733.343400px;}
.x0_c00092{left:0.000000px;}
.x6_c00092{left:127.620000px;}
.x7_c00092{left:159.570000px;}
.x5_c00092{left:697.590000px;}
.x4_c00092{left:804.366150px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.lsf_c00092{letter-spacing:-0.512000pt;}
.lse_c00092{letter-spacing:-0.256000pt;}
.lsc_c00092{letter-spacing:-0.064000pt;}
.lsb_c00092{letter-spacing:0.000000pt;}
.ls0_c00092{letter-spacing:0.064000pt;}
.ls6_c00092{letter-spacing:0.115200pt;}
.ls4_c00092{letter-spacing:0.128000pt;}
.lsd_c00092{letter-spacing:0.320000pt;}
.ls2_c00092{letter-spacing:16.064000pt;}
.ls9_c00092{letter-spacing:18.624000pt;}
.ls7_c00092{letter-spacing:20.800000pt;}
.ls8_c00092{letter-spacing:21.120000pt;}
.lsa_c00092{letter-spacing:21.760000pt;}
.ls1_c00092{letter-spacing:28.864000pt;}
.ls5_c00092{letter-spacing:32.006400pt;}
.ls3_c00092{letter-spacing:32.012800pt;}
.ws3_c00092{word-spacing:-16.064000pt;}
.ws1_c00092{word-spacing:-16.000000pt;}
.ws0_c00092{word-spacing:-15.936000pt;}
.wsd_c00092{word-spacing:-0.320000pt;}
.ws2d_c00092{word-spacing:-0.128000pt;}
.wsb_c00092{word-spacing:-0.117120pt;}
.ws16_c00092{word-spacing:-0.064000pt;}
.ws8_c00092{word-spacing:0.000000pt;}
.ws6_c00092{word-spacing:0.128000pt;}
.wsa_c00092{word-spacing:0.192000pt;}
.ws41_c00092{word-spacing:0.256000pt;}
.ws42_c00092{word-spacing:0.320000pt;}
.ws37_c00092{word-spacing:0.576000pt;}
.ws43_c00092{word-spacing:0.640000pt;}
.ws21_c00092{word-spacing:0.896000pt;}
.ws10_c00092{word-spacing:0.960000pt;}
.ws20_c00092{word-spacing:1.216000pt;}
.ws14_c00092{word-spacing:1.280000pt;}
.ws4_c00092{word-spacing:1.472000pt;}
.ws2b_c00092{word-spacing:1.536000pt;}
.ws2a_c00092{word-spacing:1.600000pt;}
.ws38_c00092{word-spacing:2.496000pt;}
.ws39_c00092{word-spacing:2.560000pt;}
.ws15_c00092{word-spacing:2.816000pt;}
.ws2_c00092{word-spacing:3.008000pt;}
.ws13_c00092{word-spacing:3.456000pt;}
.ws1d_c00092{word-spacing:3.520000pt;}
.ws29_c00092{word-spacing:3.776000pt;}
.ws1e_c00092{word-spacing:4.032000pt;}
.ws1f_c00092{word-spacing:4.160000pt;}
.ws27_c00092{word-spacing:4.736000pt;}
.ws26_c00092{word-spacing:4.800000pt;}
.ws2f_c00092{word-spacing:4.928000pt;}
.ws31_c00092{word-spacing:5.056000pt;}
.ws30_c00092{word-spacing:5.120000pt;}
.ws2e_c00092{word-spacing:5.312000pt;}
.ws3d_c00092{word-spacing:5.376000pt;}
.ws28_c00092{word-spacing:5.440000pt;}
.ws3e_c00092{word-spacing:5.760000pt;}
.ws24_c00092{word-spacing:6.080000pt;}
.ws7_c00092{word-spacing:6.848000pt;}
.ws32_c00092{word-spacing:6.976000pt;}
.ws33_c00092{word-spacing:7.040000pt;}
.ws3b_c00092{word-spacing:7.168000pt;}
.ws19_c00092{word-spacing:7.296000pt;}
.ws3a_c00092{word-spacing:7.360000pt;}
.ws1a_c00092{word-spacing:7.616000pt;}
.ws1b_c00092{word-spacing:7.680000pt;}
.ws34_c00092{word-spacing:9.152000pt;}
.ws35_c00092{word-spacing:9.280000pt;}
.wse_c00092{word-spacing:12.800000pt;}
.wsf_c00092{word-spacing:13.056000pt;}
.ws2c_c00092{word-spacing:13.376000pt;}
.ws18_c00092{word-spacing:13.440000pt;}
.ws36_c00092{word-spacing:15.296000pt;}
.ws9_c00092{word-spacing:15.552000pt;}
.ws11_c00092{word-spacing:16.256000pt;}
.ws12_c00092{word-spacing:16.320000pt;}
.ws25_c00092{word-spacing:16.640000pt;}
.wsc_c00092{word-spacing:22.976000pt;}
.ws22_c00092{word-spacing:24.256000pt;}
.ws23_c00092{word-spacing:24.320000pt;}
.ws3f_c00092{word-spacing:24.896000pt;}
.ws40_c00092{word-spacing:24.960000pt;}
.ws1c_c00092{word-spacing:25.216000pt;}
.ws17_c00092{word-spacing:26.560000pt;}
.ws3c_c00092{word-spacing:30.336000pt;}
.ws5_c00092{word-spacing:44.800000pt;}
._1_c00092{margin-left:-1.088000pt;}
._0_c00092{width:1.054080pt;}
._4_c00092{width:4.096000pt;}
._3_c00092{width:7.296000pt;}
._2_c00092{width:16.640000pt;}
.fs1_c00092{font-size:58.560000pt;}
.fs0_c00092{font-size:64.000000pt;}
.y0_c00092{bottom:0.000000pt;}
.y1_c00092{bottom:54.887600pt;}
.y1e_c00092{bottom:130.119467pt;}
.y1d_c00092{bottom:157.799467pt;}
.y1c_c00092{bottom:185.399467pt;}
.y1b_c00092{bottom:212.999467pt;}
.y1a_c00092{bottom:240.599467pt;}
.y19_c00092{bottom:268.199467pt;}
.y18_c00092{bottom:295.799467pt;}
.y23_c00092{bottom:323.399467pt;}
.y17_c00092{bottom:350.839467pt;}
.y22_c00092{bottom:350.999467pt;}
.y21_c00092{bottom:378.599467pt;}
.y16_c00092{bottom:406.199467pt;}
.y15_c00092{bottom:433.799467pt;}
.y14_c00092{bottom:461.399467pt;}
.y13_c00092{bottom:488.999467pt;}
.y12_c00092{bottom:516.599467pt;}
.y11_c00092{bottom:544.199467pt;}
.y20_c00092{bottom:571.799467pt;}
.y10_c00092{bottom:599.399467pt;}
.yf_c00092{bottom:626.999467pt;}
.ye_c00092{bottom:654.599467pt;}
.yd_c00092{bottom:682.199467pt;}
.yc_c00092{bottom:737.319467pt;}
.yb_c00092{bottom:764.919467pt;}
.ya_c00092{bottom:792.519467pt;}
.y9_c00092{bottom:820.119467pt;}
.y8_c00092{bottom:847.719467pt;}
.y7_c00092{bottom:875.319467pt;}
.y6_c00092{bottom:902.919467pt;}
.y5_c00092{bottom:930.519467pt;}
.y4_c00092{bottom:985.719467pt;}
.y1f_c00092{bottom:1013.239467pt;}
.y3_c00092{bottom:1013.319467pt;}
.y2_c00092{bottom:1061.399467pt;}
.h2_c00092{height:44.800000pt;}
.h3_c00092{height:48.294844pt;}
.h4_c00092{height:68.288000pt;}
.h5_c00092{height:69.376000pt;}
.h0_c00092{height:1122.520000pt;}
.h1_c00092{height:1122.666667pt;}
.w2_c00092{width:0.000000pt;}
.w3_c00092{width:0.058667pt;}
.w0_c00092{width:793.701333pt;}
.w1_c00092{width:794.000000pt;}
.x1_c00092{left:-745.700800pt;}
.x2_c00092{left:-680.260800pt;}
.x3_c00092{left:-651.860800pt;}
.x0_c00092{left:0.000000pt;}
.x6_c00092{left:113.440000pt;}
.x7_c00092{left:141.840000pt;}
.x5_c00092{left:620.080000pt;}
.x4_c00092{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00093;src:url('chunks/assets/font_e7a821514be529e49783406b.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00093;src:url('chunks/assets/font_0f4f9a5748128056cf002dcc.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00093;src:url('chunks/assets/font_855db5652a3e78ef86dbceae.woff2')format("woff");}.ff4_c00093{font-family:ff4_c00093;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls4_c00093{letter-spacing:0.000000px;}
.ls0_c00093{letter-spacing:0.072000px;}
.ls1_c00093{letter-spacing:0.144000px;}
.ls2_c00093{letter-spacing:30.600000px;}
.ls3_c00093{letter-spacing:38.592000px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00093{word-spacing:-18.144000px;}
.ws1_c00093{word-spacing:-18.000000px;}
.ws4_c00093{word-spacing:-0.131760px;}
.ws1f_c00093{word-spacing:-0.072000px;}
.ws3_c00093{word-spacing:0.000000px;}
.ws9_c00093{word-spacing:1.440000px;}
.ws1c_c00093{word-spacing:1.800000px;}
.ws12_c00093{word-spacing:2.088000px;}
.ws14_c00093{word-spacing:3.888000px;}
.ws13_c00093{word-spacing:3.960000px;}
.ws16_c00093{word-spacing:4.320000px;}
.ws15_c00093{word-spacing:5.040000px;}
.ws21_c00093{word-spacing:6.408000px;}
.ws20_c00093{word-spacing:6.480000px;}
.wsc_c00093{word-spacing:6.768000px;}
.wsd_c00093{word-spacing:6.840000px;}
.wsa_c00093{word-spacing:7.848000px;}
.wsb_c00093{word-spacing:7.920000px;}
.ws17_c00093{word-spacing:8.208000px;}
.wse_c00093{word-spacing:8.928000px;}
.ws18_c00093{word-spacing:9.000000px;}
.ws19_c00093{word-spacing:12.888000px;}
.ws1a_c00093{word-spacing:12.960000px;}
.ws1b_c00093{word-spacing:13.608000px;}
.ws7_c00093{word-spacing:15.768000px;}
.ws8_c00093{word-spacing:15.840000px;}
.ws24_c00093{word-spacing:16.200000px;}
.ws23_c00093{word-spacing:16.560000px;}
.ws2_c00093{word-spacing:16.632000px;}
.ws10_c00093{word-spacing:18.216000px;}
.ws11_c00093{word-spacing:18.360000px;}
.ws25_c00093{word-spacing:18.648000px;}
.ws6_c00093{word-spacing:19.080000px;}
.ws1d_c00093{word-spacing:20.088000px;}
.ws1e_c00093{word-spacing:20.520000px;}
.ws5_c00093{word-spacing:21.168000px;}
.ws26_c00093{word-spacing:27.720000px;}
.ws22_c00093{word-spacing:29.520000px;}
.wsf_c00093{word-spacing:33.408000px;}
._2_c00093{margin-left:-1.022400px;}
._0_c00093{width:1.185840px;}
._3_c00093{width:6.984000px;}
._1_c00093{width:68.400000px;}
.fc1_c00093{color:rgb(0,0,0);}
.fc0_c00093{color:rgb(35,31,32);}
.fs1_c00093{font-size:65.880000px;}
.fs0_c00093{font-size:72.000000px;}
.y0_c00093{bottom:0.000000px;}
.y1_c00093{bottom:61.748550px;}
.y20_c00093{bottom:115.424400px;}
.y1f_c00093{bottom:146.474400px;}
.y1e_c00093{bottom:177.524400px;}
.y1d_c00093{bottom:208.574400px;}
.y1c_c00093{bottom:239.624400px;}
.y1b_c00093{bottom:270.674400px;}
.y1a_c00093{bottom:301.724400px;}
.y19_c00093{bottom:363.824400px;}
.y18_c00093{bottom:394.874400px;}
.y17_c00093{bottom:425.924400px;}
.y16_c00093{bottom:456.974400px;}
.y15_c00093{bottom:488.024400px;}
.y14_c00093{bottom:519.074400px;}
.y13_c00093{bottom:550.124400px;}
.y12_c00093{bottom:612.224400px;}
.y11_c00093{bottom:643.274400px;}
.y10_c00093{bottom:674.324400px;}
.yf_c00093{bottom:705.374400px;}
.ye_c00093{bottom:767.474400px;}
.yd_c00093{bottom:798.434400px;}
.yc_c00093{bottom:829.484400px;}
.yb_c00093{bottom:860.534400px;}
.ya_c00093{bottom:891.584400px;}
.y9_c00093{bottom:922.634400px;}
.y8_c00093{bottom:953.684400px;}
.y7_c00093{bottom:984.734400px;}
.y6_c00093{bottom:1015.784400px;}
.y5_c00093{bottom:1046.834400px;}
.y4_c00093{bottom:1077.884400px;}
.y3_c00093{bottom:1139.804400px;}
.y2_c00093{bottom:1194.074400px;}
.h2_c00093{height:50.400000px;}
.h3_c00093{height:54.331699px;}
.h4_c00093{height:76.824000px;}
.h0_c00093{height:1262.835000px;}
.h1_c00093{height:1263.000000px;}
.w0_c00093{width:892.914000px;}
.w1_c00093{width:893.250000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:54.000000px;}
.x2_c00093{left:127.620000px;}
.x3_c00093{left:159.570000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls4_c00093{letter-spacing:0.000000pt;}
.ls0_c00093{letter-spacing:0.064000pt;}
.ls1_c00093{letter-spacing:0.128000pt;}
.ls2_c00093{letter-spacing:27.200000pt;}
.ls3_c00093{letter-spacing:34.304000pt;}
.ws0_c00093{word-spacing:-16.128000pt;}
.ws1_c00093{word-spacing:-16.000000pt;}
.ws4_c00093{word-spacing:-0.117120pt;}
.ws1f_c00093{word-spacing:-0.064000pt;}
.ws3_c00093{word-spacing:0.000000pt;}
.ws9_c00093{word-spacing:1.280000pt;}
.ws1c_c00093{word-spacing:1.600000pt;}
.ws12_c00093{word-spacing:1.856000pt;}
.ws14_c00093{word-spacing:3.456000pt;}
.ws13_c00093{word-spacing:3.520000pt;}
.ws16_c00093{word-spacing:3.840000pt;}
.ws15_c00093{word-spacing:4.480000pt;}
.ws21_c00093{word-spacing:5.696000pt;}
.ws20_c00093{word-spacing:5.760000pt;}
.wsc_c00093{word-spacing:6.016000pt;}
.wsd_c00093{word-spacing:6.080000pt;}
.wsa_c00093{word-spacing:6.976000pt;}
.wsb_c00093{word-spacing:7.040000pt;}
.ws17_c00093{word-spacing:7.296000pt;}
.wse_c00093{word-spacing:7.936000pt;}
.ws18_c00093{word-spacing:8.000000pt;}
.ws19_c00093{word-spacing:11.456000pt;}
.ws1a_c00093{word-spacing:11.520000pt;}
.ws1b_c00093{word-spacing:12.096000pt;}
.ws7_c00093{word-spacing:14.016000pt;}
.ws8_c00093{word-spacing:14.080000pt;}
.ws24_c00093{word-spacing:14.400000pt;}
.ws23_c00093{word-spacing:14.720000pt;}
.ws2_c00093{word-spacing:14.784000pt;}
.ws10_c00093{word-spacing:16.192000pt;}
.ws11_c00093{word-spacing:16.320000pt;}
.ws25_c00093{word-spacing:16.576000pt;}
.ws6_c00093{word-spacing:16.960000pt;}
.ws1d_c00093{word-spacing:17.856000pt;}
.ws1e_c00093{word-spacing:18.240000pt;}
.ws5_c00093{word-spacing:18.816000pt;}
.ws26_c00093{word-spacing:24.640000pt;}
.ws22_c00093{word-spacing:26.240000pt;}
.wsf_c00093{word-spacing:29.696000pt;}
._2_c00093{margin-left:-0.908800pt;}
._0_c00093{width:1.054080pt;}
._3_c00093{width:6.208000pt;}
._1_c00093{width:60.800000pt;}
.fs1_c00093{font-size:58.560000pt;}
.fs0_c00093{font-size:64.000000pt;}
.y0_c00093{bottom:0.000000pt;}
.y1_c00093{bottom:54.887600pt;}
.y20_c00093{bottom:102.599467pt;}
.y1f_c00093{bottom:130.199467pt;}
.y1e_c00093{bottom:157.799467pt;}
.y1d_c00093{bottom:185.399467pt;}
.y1c_c00093{bottom:212.999467pt;}
.y1b_c00093{bottom:240.599467pt;}
.y1a_c00093{bottom:268.199467pt;}
.y19_c00093{bottom:323.399467pt;}
.y18_c00093{bottom:350.999467pt;}
.y17_c00093{bottom:378.599467pt;}
.y16_c00093{bottom:406.199467pt;}
.y15_c00093{bottom:433.799467pt;}
.y14_c00093{bottom:461.399467pt;}
.y13_c00093{bottom:488.999467pt;}
.y12_c00093{bottom:544.199467pt;}
.y11_c00093{bottom:571.799467pt;}
.y10_c00093{bottom:599.399467pt;}
.yf_c00093{bottom:626.999467pt;}
.ye_c00093{bottom:682.199467pt;}
.yd_c00093{bottom:709.719467pt;}
.yc_c00093{bottom:737.319467pt;}
.yb_c00093{bottom:764.919467pt;}
.ya_c00093{bottom:792.519467pt;}
.y9_c00093{bottom:820.119467pt;}
.y8_c00093{bottom:847.719467pt;}
.y7_c00093{bottom:875.319467pt;}
.y6_c00093{bottom:902.919467pt;}
.y5_c00093{bottom:930.519467pt;}
.y4_c00093{bottom:958.119467pt;}
.y3_c00093{bottom:1013.159467pt;}
.y2_c00093{bottom:1061.399467pt;}
.h2_c00093{height:44.800000pt;}
.h3_c00093{height:48.294844pt;}
.h4_c00093{height:68.288000pt;}
.h0_c00093{height:1122.520000pt;}
.h1_c00093{height:1122.666667pt;}
.w0_c00093{width:793.701333pt;}
.w1_c00093{width:794.000000pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:48.000000pt;}
.x2_c00093{left:113.440000pt;}
.x3_c00093{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00094;src:url('chunks/assets/font_2b12aa135c4695114d454987.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00094;src:url('chunks/assets/font_491168b216702e27d1218d1a.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00094;src:url('chunks/assets/font_c41080cbd76d300db28b9df8.woff2')format("woff");}.ff4_c00094{font-family:ff4_c00094;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00094;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00094{font-family:ff5_c00094;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00094;src:url('chunks/assets/font_f890149b136d89bc72afbb76.woff2')format("woff");}.ff6_c00094{font-family:ff6_c00094;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00094;src:url('chunks/assets/font_3ecd849b9791cd38621afcba.woff2')format("woff");}.ff7_c00094{font-family:ff7_c00094;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00094;src:url('chunks/assets/font_8ed6dc18428aadf82b14f5cc.woff2')format("woff");}.ff8_c00094{font-family:ff8_c00094;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls7_c00094{letter-spacing:-0.576000px;}
.ls6_c00094{letter-spacing:-0.288000px;}
.ls5_c00094{letter-spacing:-0.072000px;}
.ls4_c00094{letter-spacing:0.000000px;}
.ls0_c00094{letter-spacing:0.072000px;}
.ls1_c00094{letter-spacing:0.144000px;}
.ls2_c00094{letter-spacing:30.600000px;}
.ls3_c00094{letter-spacing:38.592000px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00094{word-spacing:-18.144000px;}
.ws1_c00094{word-spacing:-18.000000px;}
.ws4_c00094{word-spacing:-17.424000px;}
.ws30_c00094{word-spacing:-0.432000px;}
.ws40_c00094{word-spacing:-0.360000px;}
.ws31_c00094{word-spacing:-0.144000px;}
.ws6_c00094{word-spacing:-0.131760px;}
.ws21_c00094{word-spacing:-0.072000px;}
.ws5_c00094{word-spacing:0.000000px;}
.ws3_c00094{word-spacing:0.216000px;}
.ws35_c00094{word-spacing:0.288000px;}
.ws3f_c00094{word-spacing:0.720000px;}
.wsb_c00094{word-spacing:1.440000px;}
.ws1e_c00094{word-spacing:1.800000px;}
.ws14_c00094{word-spacing:2.088000px;}
.ws32_c00094{word-spacing:2.448000px;}
.ws3c_c00094{word-spacing:3.168000px;}
.ws3b_c00094{word-spacing:3.240000px;}
.ws2f_c00094{word-spacing:3.384000px;}
.ws2e_c00094{word-spacing:3.600000px;}
.ws16_c00094{word-spacing:3.888000px;}
.ws15_c00094{word-spacing:3.960000px;}
.ws18_c00094{word-spacing:4.320000px;}
.ws3d_c00094{word-spacing:4.680000px;}
.ws38_c00094{word-spacing:4.896000px;}
.ws37_c00094{word-spacing:4.968000px;}
.ws17_c00094{word-spacing:5.040000px;}
.ws23_c00094{word-spacing:6.408000px;}
.ws22_c00094{word-spacing:6.480000px;}
.wse_c00094{word-spacing:6.768000px;}
.wsf_c00094{word-spacing:6.840000px;}
.wsc_c00094{word-spacing:7.848000px;}
.wsd_c00094{word-spacing:7.920000px;}
.ws19_c00094{word-spacing:8.208000px;}
.ws10_c00094{word-spacing:8.928000px;}
.ws1a_c00094{word-spacing:9.000000px;}
.ws2d_c00094{word-spacing:9.360000px;}
.ws2b_c00094{word-spacing:9.720000px;}
.ws29_c00094{word-spacing:11.448000px;}
.ws2a_c00094{word-spacing:11.520000px;}
.ws1b_c00094{word-spacing:12.888000px;}
.ws1c_c00094{word-spacing:12.960000px;}
.ws1d_c00094{word-spacing:13.608000px;}
.ws39_c00094{word-spacing:15.408000px;}
.ws3a_c00094{word-spacing:15.696000px;}
.ws9_c00094{word-spacing:15.768000px;}
.wsa_c00094{word-spacing:15.840000px;}
.ws26_c00094{word-spacing:16.200000px;}
.ws25_c00094{word-spacing:16.560000px;}
.ws2_c00094{word-spacing:16.632000px;}
.ws3e_c00094{word-spacing:17.208000px;}
.ws34_c00094{word-spacing:17.568000px;}
.ws12_c00094{word-spacing:18.216000px;}
.ws13_c00094{word-spacing:18.360000px;}
.ws27_c00094{word-spacing:18.648000px;}
.ws8_c00094{word-spacing:19.080000px;}
.ws1f_c00094{word-spacing:20.088000px;}
.ws20_c00094{word-spacing:20.520000px;}
.ws7_c00094{word-spacing:21.168000px;}
.ws33_c00094{word-spacing:21.240000px;}
.ws36_c00094{word-spacing:22.248000px;}
.ws2c_c00094{word-spacing:24.768000px;}
.ws28_c00094{word-spacing:27.720000px;}
.ws24_c00094{word-spacing:29.520000px;}
.ws11_c00094{word-spacing:33.408000px;}
._2_c00094{margin-left:-1.022400px;}
._0_c00094{width:1.185840px;}
._3_c00094{width:6.984000px;}
._1_c00094{width:68.400000px;}
.fc2_c00094{color:transparent;}
.fc1_c00094{color:rgb(0,0,0);}
.fc0_c00094{color:rgb(35,31,32);}
.fs1_c00094{font-size:65.880000px;}
.fs0_c00094{font-size:72.000000px;}
.y0_c00094{bottom:0.000000px;}
.y1_c00094{bottom:61.748550px;}
.y20_c00094{bottom:115.424400px;}
.y1f_c00094{bottom:146.474400px;}
.y1e_c00094{bottom:177.524400px;}
.y1d_c00094{bottom:208.574400px;}
.y1c_c00094{bottom:239.624400px;}
.y1b_c00094{bottom:270.674400px;}
.y1a_c00094{bottom:301.724400px;}
.y25_c00094{bottom:332.774400px;}
.y19_c00094{bottom:363.824400px;}
.y18_c00094{bottom:394.874400px;}
.y17_c00094{bottom:425.924400px;}
.y16_c00094{bottom:456.974400px;}
.y15_c00094{bottom:488.024400px;}
.y14_c00094{bottom:519.074400px;}
.y13_c00094{bottom:550.124400px;}
.y24_c00094{bottom:581.174400px;}
.y12_c00094{bottom:612.224400px;}
.y11_c00094{bottom:643.274400px;}
.y10_c00094{bottom:674.324400px;}
.yf_c00094{bottom:705.374400px;}
.y23_c00094{bottom:736.424400px;}
.ye_c00094{bottom:767.474400px;}
.yd_c00094{bottom:798.434400px;}
.yc_c00094{bottom:829.484400px;}
.yb_c00094{bottom:860.534400px;}
.ya_c00094{bottom:891.584400px;}
.y9_c00094{bottom:922.634400px;}
.y8_c00094{bottom:953.684400px;}
.y7_c00094{bottom:984.734400px;}
.y6_c00094{bottom:1015.784400px;}
.y5_c00094{bottom:1046.834400px;}
.y4_c00094{bottom:1077.884400px;}
.y22_c00094{bottom:1108.934400px;}
.y3_c00094{bottom:1139.804400px;}
.y21_c00094{bottom:1139.984400px;}
.y2_c00094{bottom:1194.074400px;}
.h2_c00094{height:50.400000px;}
.h3_c00094{height:54.331699px;}
.h4_c00094{height:76.824000px;}
.h0_c00094{height:1262.835000px;}
.h1_c00094{height:1263.000000px;}
.w2_c00094{width:0.000000px;}
.w3_c00094{width:0.066000px;}
.w0_c00094{width:892.914000px;}
.w1_c00094{width:893.250000px;}
.x1_c00094{left:-838.913400px;}
.x2_c00094{left:-765.293400px;}
.x3_c00094{left:-733.343400px;}
.x0_c00094{left:0.000000px;}
.x6_c00094{left:127.620000px;}
.x7_c00094{left:159.570000px;}
.x5_c00094{left:697.590000px;}
.x4_c00094{left:804.366150px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls7_c00094{letter-spacing:-0.512000pt;}
.ls6_c00094{letter-spacing:-0.256000pt;}
.ls5_c00094{letter-spacing:-0.064000pt;}
.ls4_c00094{letter-spacing:0.000000pt;}
.ls0_c00094{letter-spacing:0.064000pt;}
.ls1_c00094{letter-spacing:0.128000pt;}
.ls2_c00094{letter-spacing:27.200000pt;}
.ls3_c00094{letter-spacing:34.304000pt;}
.ws0_c00094{word-spacing:-16.128000pt;}
.ws1_c00094{word-spacing:-16.000000pt;}
.ws4_c00094{word-spacing:-15.488000pt;}
.ws30_c00094{word-spacing:-0.384000pt;}
.ws40_c00094{word-spacing:-0.320000pt;}
.ws31_c00094{word-spacing:-0.128000pt;}
.ws6_c00094{word-spacing:-0.117120pt;}
.ws21_c00094{word-spacing:-0.064000pt;}
.ws5_c00094{word-spacing:0.000000pt;}
.ws3_c00094{word-spacing:0.192000pt;}
.ws35_c00094{word-spacing:0.256000pt;}
.ws3f_c00094{word-spacing:0.640000pt;}
.wsb_c00094{word-spacing:1.280000pt;}
.ws1e_c00094{word-spacing:1.600000pt;}
.ws14_c00094{word-spacing:1.856000pt;}
.ws32_c00094{word-spacing:2.176000pt;}
.ws3c_c00094{word-spacing:2.816000pt;}
.ws3b_c00094{word-spacing:2.880000pt;}
.ws2f_c00094{word-spacing:3.008000pt;}
.ws2e_c00094{word-spacing:3.200000pt;}
.ws16_c00094{word-spacing:3.456000pt;}
.ws15_c00094{word-spacing:3.520000pt;}
.ws18_c00094{word-spacing:3.840000pt;}
.ws3d_c00094{word-spacing:4.160000pt;}
.ws38_c00094{word-spacing:4.352000pt;}
.ws37_c00094{word-spacing:4.416000pt;}
.ws17_c00094{word-spacing:4.480000pt;}
.ws23_c00094{word-spacing:5.696000pt;}
.ws22_c00094{word-spacing:5.760000pt;}
.wse_c00094{word-spacing:6.016000pt;}
.wsf_c00094{word-spacing:6.080000pt;}
.wsc_c00094{word-spacing:6.976000pt;}
.wsd_c00094{word-spacing:7.040000pt;}
.ws19_c00094{word-spacing:7.296000pt;}
.ws10_c00094{word-spacing:7.936000pt;}
.ws1a_c00094{word-spacing:8.000000pt;}
.ws2d_c00094{word-spacing:8.320000pt;}
.ws2b_c00094{word-spacing:8.640000pt;}
.ws29_c00094{word-spacing:10.176000pt;}
.ws2a_c00094{word-spacing:10.240000pt;}
.ws1b_c00094{word-spacing:11.456000pt;}
.ws1c_c00094{word-spacing:11.520000pt;}
.ws1d_c00094{word-spacing:12.096000pt;}
.ws39_c00094{word-spacing:13.696000pt;}
.ws3a_c00094{word-spacing:13.952000pt;}
.ws9_c00094{word-spacing:14.016000pt;}
.wsa_c00094{word-spacing:14.080000pt;}
.ws26_c00094{word-spacing:14.400000pt;}
.ws25_c00094{word-spacing:14.720000pt;}
.ws2_c00094{word-spacing:14.784000pt;}
.ws3e_c00094{word-spacing:15.296000pt;}
.ws34_c00094{word-spacing:15.616000pt;}
.ws12_c00094{word-spacing:16.192000pt;}
.ws13_c00094{word-spacing:16.320000pt;}
.ws27_c00094{word-spacing:16.576000pt;}
.ws8_c00094{word-spacing:16.960000pt;}
.ws1f_c00094{word-spacing:17.856000pt;}
.ws20_c00094{word-spacing:18.240000pt;}
.ws7_c00094{word-spacing:18.816000pt;}
.ws33_c00094{word-spacing:18.880000pt;}
.ws36_c00094{word-spacing:19.776000pt;}
.ws2c_c00094{word-spacing:22.016000pt;}
.ws28_c00094{word-spacing:24.640000pt;}
.ws24_c00094{word-spacing:26.240000pt;}
.ws11_c00094{word-spacing:29.696000pt;}
._2_c00094{margin-left:-0.908800pt;}
._0_c00094{width:1.054080pt;}
._3_c00094{width:6.208000pt;}
._1_c00094{width:60.800000pt;}
.fs1_c00094{font-size:58.560000pt;}
.fs0_c00094{font-size:64.000000pt;}
.y0_c00094{bottom:0.000000pt;}
.y1_c00094{bottom:54.887600pt;}
.y20_c00094{bottom:102.599467pt;}
.y1f_c00094{bottom:130.199467pt;}
.y1e_c00094{bottom:157.799467pt;}
.y1d_c00094{bottom:185.399467pt;}
.y1c_c00094{bottom:212.999467pt;}
.y1b_c00094{bottom:240.599467pt;}
.y1a_c00094{bottom:268.199467pt;}
.y25_c00094{bottom:295.799467pt;}
.y19_c00094{bottom:323.399467pt;}
.y18_c00094{bottom:350.999467pt;}
.y17_c00094{bottom:378.599467pt;}
.y16_c00094{bottom:406.199467pt;}
.y15_c00094{bottom:433.799467pt;}
.y14_c00094{bottom:461.399467pt;}
.y13_c00094{bottom:488.999467pt;}
.y24_c00094{bottom:516.599467pt;}
.y12_c00094{bottom:544.199467pt;}
.y11_c00094{bottom:571.799467pt;}
.y10_c00094{bottom:599.399467pt;}
.yf_c00094{bottom:626.999467pt;}
.y23_c00094{bottom:654.599467pt;}
.ye_c00094{bottom:682.199467pt;}
.yd_c00094{bottom:709.719467pt;}
.yc_c00094{bottom:737.319467pt;}
.yb_c00094{bottom:764.919467pt;}
.ya_c00094{bottom:792.519467pt;}
.y9_c00094{bottom:820.119467pt;}
.y8_c00094{bottom:847.719467pt;}
.y7_c00094{bottom:875.319467pt;}
.y6_c00094{bottom:902.919467pt;}
.y5_c00094{bottom:930.519467pt;}
.y4_c00094{bottom:958.119467pt;}
.y22_c00094{bottom:985.719467pt;}
.y3_c00094{bottom:1013.159467pt;}
.y21_c00094{bottom:1013.319467pt;}
.y2_c00094{bottom:1061.399467pt;}
.h2_c00094{height:44.800000pt;}
.h3_c00094{height:48.294844pt;}
.h4_c00094{height:68.288000pt;}
.h0_c00094{height:1122.520000pt;}
.h1_c00094{height:1122.666667pt;}
.w2_c00094{width:0.000000pt;}
.w3_c00094{width:0.058667pt;}
.w0_c00094{width:793.701333pt;}
.w1_c00094{width:794.000000pt;}
.x1_c00094{left:-745.700800pt;}
.x2_c00094{left:-680.260800pt;}
.x3_c00094{left:-651.860800pt;}
.x0_c00094{left:0.000000pt;}
.x6_c00094{left:113.440000pt;}
.x7_c00094{left:141.840000pt;}
.x5_c00094{left:620.080000pt;}
.x4_c00094{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00095;src:url('chunks/assets/font_6b47e20d949f2ce394b0aca2.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00095;src:url('chunks/assets/font_c633086dba2c7ce0827210a5.woff2')format("woff");}.ff3_c00095{font-family:ff3_c00095;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00095;src:url('chunks/assets/font_3591ded70383a16512dd5283.woff2')format("woff");}.ff4_c00095{font-family:ff4_c00095;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00095{letter-spacing:0.000000px;}
.ls1_c00095{letter-spacing:0.072000px;}
.ls2_c00095{letter-spacing:0.144000px;}
.ls0_c00095{letter-spacing:37.800000px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00095{word-spacing:-18.072000px;}
.ws4_c00095{word-spacing:-18.000000px;}
.wsa_c00095{word-spacing:-0.131760px;}
.wsb_c00095{word-spacing:-0.072000px;}
.ws9_c00095{word-spacing:0.000000px;}
.ws19_c00095{word-spacing:0.216000px;}
.ws1a_c00095{word-spacing:0.288000px;}
.ws6_c00095{word-spacing:0.360000px;}
.ws3_c00095{word-spacing:0.432000px;}
.ws25_c00095{word-spacing:1.008000px;}
.ws12_c00095{word-spacing:1.080000px;}
.ws1e_c00095{word-spacing:1.368000px;}
.ws14_c00095{word-spacing:2.016000px;}
.ws15_c00095{word-spacing:2.088000px;}
.ws5_c00095{word-spacing:2.160000px;}
.ws16_c00095{word-spacing:2.448000px;}
.wsf_c00095{word-spacing:4.896000px;}
.wse_c00095{word-spacing:4.968000px;}
.wsd_c00095{word-spacing:5.040000px;}
.ws2_c00095{word-spacing:5.112000px;}
.ws13_c00095{word-spacing:5.688000px;}
.ws11_c00095{word-spacing:6.048000px;}
.ws1d_c00095{word-spacing:6.408000px;}
.ws23_c00095{word-spacing:7.128000px;}
.ws22_c00095{word-spacing:7.200000px;}
.ws20_c00095{word-spacing:8.568000px;}
.ws1f_c00095{word-spacing:8.928000px;}
.ws27_c00095{word-spacing:10.008000px;}
.ws24_c00095{word-spacing:10.440000px;}
.ws7_c00095{word-spacing:10.512000px;}
.ws10_c00095{word-spacing:11.880000px;}
.ws1_c00095{word-spacing:13.248000px;}
.ws21_c00095{word-spacing:14.328000px;}
.ws18_c00095{word-spacing:16.416000px;}
.ws17_c00095{word-spacing:16.560000px;}
.ws26_c00095{word-spacing:19.008000px;}
.wsc_c00095{word-spacing:20.160000px;}
.ws1c_c00095{word-spacing:21.168000px;}
.ws1b_c00095{word-spacing:23.040000px;}
.ws0_c00095{word-spacing:50.400000px;}
._1_c00095{margin-left:-1.008000px;}
._0_c00095{width:1.185840px;}
._4_c00095{width:7.200000px;}
._3_c00095{width:13.248000px;}
._2_c00095{width:20.088000px;}
.fc1_c00095{color:rgb(0,0,0);}
.fc0_c00095{color:rgb(35,31,32);}
.fs1_c00095{font-size:65.880000px;}
.fs0_c00095{font-size:72.000000px;}
.y0_c00095{bottom:0.000000px;}
.y1_c00095{bottom:61.748550px;}
.y20_c00095{bottom:115.424400px;}
.y1f_c00095{bottom:146.474400px;}
.y1e_c00095{bottom:177.524400px;}
.y1d_c00095{bottom:208.574400px;}
.y1c_c00095{bottom:270.674400px;}
.y1b_c00095{bottom:301.724400px;}
.y1a_c00095{bottom:332.774400px;}
.y19_c00095{bottom:363.824400px;}
.y18_c00095{bottom:394.874400px;}
.y17_c00095{bottom:425.924400px;}
.y16_c00095{bottom:488.024400px;}
.y15_c00095{bottom:519.074400px;}
.y14_c00095{bottom:550.124400px;}
.y13_c00095{bottom:581.174400px;}
.y12_c00095{bottom:612.224400px;}
.y11_c00095{bottom:643.274400px;}
.y10_c00095{bottom:674.324400px;}
.yf_c00095{bottom:705.374400px;}
.ye_c00095{bottom:736.424400px;}
.yd_c00095{bottom:767.474400px;}
.yc_c00095{bottom:829.484400px;}
.yb_c00095{bottom:860.534400px;}
.ya_c00095{bottom:891.584400px;}
.y9_c00095{bottom:922.634400px;}
.y8_c00095{bottom:953.684400px;}
.y7_c00095{bottom:984.734400px;}
.y6_c00095{bottom:1015.784400px;}
.y5_c00095{bottom:1046.834400px;}
.y4_c00095{bottom:1077.884400px;}
.y3_c00095{bottom:1139.804400px;}
.y2_c00095{bottom:1194.074400px;}
.h2_c00095{height:50.400000px;}
.h3_c00095{height:54.331699px;}
.h4_c00095{height:76.824000px;}
.h0_c00095{height:1262.835000px;}
.h1_c00095{height:1263.000000px;}
.w0_c00095{width:892.914000px;}
.w1_c00095{width:893.250000px;}
.x0_c00095{left:0.000000px;}
.x1_c00095{left:54.000000px;}
.x2_c00095{left:127.620000px;}
.x3_c00095{left:159.570000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls3_c00095{letter-spacing:0.000000pt;}
.ls1_c00095{letter-spacing:0.064000pt;}
.ls2_c00095{letter-spacing:0.128000pt;}
.ls0_c00095{letter-spacing:33.600000pt;}
.ws8_c00095{word-spacing:-16.064000pt;}
.ws4_c00095{word-spacing:-16.000000pt;}
.wsa_c00095{word-spacing:-0.117120pt;}
.wsb_c00095{word-spacing:-0.064000pt;}
.ws9_c00095{word-spacing:0.000000pt;}
.ws19_c00095{word-spacing:0.192000pt;}
.ws1a_c00095{word-spacing:0.256000pt;}
.ws6_c00095{word-spacing:0.320000pt;}
.ws3_c00095{word-spacing:0.384000pt;}
.ws25_c00095{word-spacing:0.896000pt;}
.ws12_c00095{word-spacing:0.960000pt;}
.ws1e_c00095{word-spacing:1.216000pt;}
.ws14_c00095{word-spacing:1.792000pt;}
.ws15_c00095{word-spacing:1.856000pt;}
.ws5_c00095{word-spacing:1.920000pt;}
.ws16_c00095{word-spacing:2.176000pt;}
.wsf_c00095{word-spacing:4.352000pt;}
.wse_c00095{word-spacing:4.416000pt;}
.wsd_c00095{word-spacing:4.480000pt;}
.ws2_c00095{word-spacing:4.544000pt;}
.ws13_c00095{word-spacing:5.056000pt;}
.ws11_c00095{word-spacing:5.376000pt;}
.ws1d_c00095{word-spacing:5.696000pt;}
.ws23_c00095{word-spacing:6.336000pt;}
.ws22_c00095{word-spacing:6.400000pt;}
.ws20_c00095{word-spacing:7.616000pt;}
.ws1f_c00095{word-spacing:7.936000pt;}
.ws27_c00095{word-spacing:8.896000pt;}
.ws24_c00095{word-spacing:9.280000pt;}
.ws7_c00095{word-spacing:9.344000pt;}
.ws10_c00095{word-spacing:10.560000pt;}
.ws1_c00095{word-spacing:11.776000pt;}
.ws21_c00095{word-spacing:12.736000pt;}
.ws18_c00095{word-spacing:14.592000pt;}
.ws17_c00095{word-spacing:14.720000pt;}
.ws26_c00095{word-spacing:16.896000pt;}
.wsc_c00095{word-spacing:17.920000pt;}
.ws1c_c00095{word-spacing:18.816000pt;}
.ws1b_c00095{word-spacing:20.480000pt;}
.ws0_c00095{word-spacing:44.800000pt;}
._1_c00095{margin-left:-0.896000pt;}
._0_c00095{width:1.054080pt;}
._4_c00095{width:6.400000pt;}
._3_c00095{width:11.776000pt;}
._2_c00095{width:17.856000pt;}
.fs1_c00095{font-size:58.560000pt;}
.fs0_c00095{font-size:64.000000pt;}
.y0_c00095{bottom:0.000000pt;}
.y1_c00095{bottom:54.887600pt;}
.y20_c00095{bottom:102.599467pt;}
.y1f_c00095{bottom:130.199467pt;}
.y1e_c00095{bottom:157.799467pt;}
.y1d_c00095{bottom:185.399467pt;}
.y1c_c00095{bottom:240.599467pt;}
.y1b_c00095{bottom:268.199467pt;}
.y1a_c00095{bottom:295.799467pt;}
.y19_c00095{bottom:323.399467pt;}
.y18_c00095{bottom:350.999467pt;}
.y17_c00095{bottom:378.599467pt;}
.y16_c00095{bottom:433.799467pt;}
.y15_c00095{bottom:461.399467pt;}
.y14_c00095{bottom:488.999467pt;}
.y13_c00095{bottom:516.599467pt;}
.y12_c00095{bottom:544.199467pt;}
.y11_c00095{bottom:571.799467pt;}
.y10_c00095{bottom:599.399467pt;}
.yf_c00095{bottom:626.999467pt;}
.ye_c00095{bottom:654.599467pt;}
.yd_c00095{bottom:682.199467pt;}
.yc_c00095{bottom:737.319467pt;}
.yb_c00095{bottom:764.919467pt;}
.ya_c00095{bottom:792.519467pt;}
.y9_c00095{bottom:820.119467pt;}
.y8_c00095{bottom:847.719467pt;}
.y7_c00095{bottom:875.319467pt;}
.y6_c00095{bottom:902.919467pt;}
.y5_c00095{bottom:930.519467pt;}
.y4_c00095{bottom:958.119467pt;}
.y3_c00095{bottom:1013.159467pt;}
.y2_c00095{bottom:1061.399467pt;}
.h2_c00095{height:44.800000pt;}
.h3_c00095{height:48.294844pt;}
.h4_c00095{height:68.288000pt;}
.h0_c00095{height:1122.520000pt;}
.h1_c00095{height:1122.666667pt;}
.w0_c00095{width:793.701333pt;}
.w1_c00095{width:794.000000pt;}
.x0_c00095{left:0.000000pt;}
.x1_c00095{left:48.000000pt;}
.x2_c00095{left:113.440000pt;}
.x3_c00095{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00096;src:url('chunks/assets/font_6ff12df54cf28eb5a8f963bd.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00096;src:url('chunks/assets/font_db3ffdc6516e33197d9915b7.woff2')format("woff");}.ff3_c00096{font-family:ff3_c00096;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00096;src:url('chunks/assets/font_873fc07d7c9984105018172f.woff2')format("woff");}.ff4_c00096{font-family:ff4_c00096;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00096;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00096{font-family:ff5_c00096;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00096;src:url('chunks/assets/font_ddcbf0056e80302066d6f912.woff2')format("woff");}.ff6_c00096{font-family:ff6_c00096;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00096;src:url('chunks/assets/font_7f96a11f9ddf08b8ba1f17e9.woff2')format("woff");}.ff7_c00096{font-family:ff7_c00096;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00096;src:url('chunks/assets/font_8fd7f10161db6e7daf739284.woff2')format("woff");}.ff8_c00096{font-family:ff8_c00096;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls7_c00096{letter-spacing:-0.360000px;}
.ls8_c00096{letter-spacing:-0.288000px;}
.ls5_c00096{letter-spacing:-0.216000px;}
.ls6_c00096{letter-spacing:-0.072000px;}
.ls4_c00096{letter-spacing:0.000000px;}
.ls1_c00096{letter-spacing:0.072000px;}
.ls2_c00096{letter-spacing:0.144000px;}
.ls3_c00096{letter-spacing:28.800000px;}
.ls0_c00096{letter-spacing:37.800000px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00096{word-spacing:-18.072000px;}
.ws4_c00096{word-spacing:-18.000000px;}
.ws9_c00096{word-spacing:-17.784000px;}
.wsc_c00096{word-spacing:-0.417600px;}
.wsf_c00096{word-spacing:-0.131760px;}
.ws10_c00096{word-spacing:-0.072000px;}
.wse_c00096{word-spacing:0.000000px;}
.ws1d_c00096{word-spacing:0.216000px;}
.ws1e_c00096{word-spacing:0.288000px;}
.ws6_c00096{word-spacing:0.360000px;}
.ws3_c00096{word-spacing:0.432000px;}
.ws31_c00096{word-spacing:0.720000px;}
.ws29_c00096{word-spacing:1.008000px;}
.ws17_c00096{word-spacing:1.080000px;}
.ws22_c00096{word-spacing:1.368000px;}
.ws18_c00096{word-spacing:2.016000px;}
.ws19_c00096{word-spacing:2.088000px;}
.ws5_c00096{word-spacing:2.160000px;}
.ws3f_c00096{word-spacing:2.232000px;}
.ws1a_c00096{word-spacing:2.448000px;}
.ws3e_c00096{word-spacing:2.520000px;}
.wsd_c00096{word-spacing:2.592000px;}
.ws3d_c00096{word-spacing:3.600000px;}
.ws14_c00096{word-spacing:4.896000px;}
.ws13_c00096{word-spacing:4.968000px;}
.ws12_c00096{word-spacing:5.040000px;}
.ws2_c00096{word-spacing:5.112000px;}
.ws35_c00096{word-spacing:5.328000px;}
.wsb_c00096{word-spacing:5.688000px;}
.ws16_c00096{word-spacing:6.048000px;}
.ws21_c00096{word-spacing:6.408000px;}
.ws39_c00096{word-spacing:6.840000px;}
.ws27_c00096{word-spacing:7.128000px;}
.ws26_c00096{word-spacing:7.200000px;}
.ws24_c00096{word-spacing:8.568000px;}
.ws23_c00096{word-spacing:8.928000px;}
.ws2b_c00096{word-spacing:10.008000px;}
.ws30_c00096{word-spacing:10.224000px;}
.ws28_c00096{word-spacing:10.440000px;}
.ws7_c00096{word-spacing:10.512000px;}
.ws2f_c00096{word-spacing:10.800000px;}
.ws15_c00096{word-spacing:11.880000px;}
.ws34_c00096{word-spacing:12.960000px;}
.ws1_c00096{word-spacing:13.248000px;}
.ws25_c00096{word-spacing:14.328000px;}
.ws3a_c00096{word-spacing:15.048000px;}
.ws3b_c00096{word-spacing:15.408000px;}
.ws1c_c00096{word-spacing:16.416000px;}
.ws1b_c00096{word-spacing:16.560000px;}
.ws2d_c00096{word-spacing:17.928000px;}
.ws2a_c00096{word-spacing:19.008000px;}
.ws11_c00096{word-spacing:20.160000px;}
.wsa_c00096{word-spacing:20.304000px;}
.ws33_c00096{word-spacing:20.448000px;}
.ws32_c00096{word-spacing:20.520000px;}
.ws20_c00096{word-spacing:21.168000px;}
.ws2c_c00096{word-spacing:22.608000px;}
.ws1f_c00096{word-spacing:23.040000px;}
.ws41_c00096{word-spacing:24.408000px;}
.ws36_c00096{word-spacing:25.200000px;}
.ws38_c00096{word-spacing:25.488000px;}
.ws37_c00096{word-spacing:25.560000px;}
.ws40_c00096{word-spacing:28.368000px;}
.ws3c_c00096{word-spacing:32.040000px;}
.ws2e_c00096{word-spacing:33.480000px;}
.ws0_c00096{word-spacing:50.400000px;}
._1_c00096{margin-left:-1.008000px;}
._0_c00096{width:1.185840px;}
._4_c00096{width:7.200000px;}
._3_c00096{width:13.248000px;}
._2_c00096{width:20.088000px;}
.fc2_c00096{color:transparent;}
.fc1_c00096{color:rgb(0,0,0);}
.fc0_c00096{color:rgb(35,31,32);}
.fs1_c00096{font-size:65.880000px;}
.fs0_c00096{font-size:72.000000px;}
.y0_c00096{bottom:0.000000px;}
.y1_c00096{bottom:61.748550px;}
.y20_c00096{bottom:115.424400px;}
.y1f_c00096{bottom:146.474400px;}
.y1e_c00096{bottom:177.524400px;}
.y1d_c00096{bottom:208.574400px;}
.y25_c00096{bottom:239.624400px;}
.y1c_c00096{bottom:270.674400px;}
.y1b_c00096{bottom:301.724400px;}
.y1a_c00096{bottom:332.774400px;}
.y19_c00096{bottom:363.824400px;}
.y18_c00096{bottom:394.874400px;}
.y17_c00096{bottom:425.924400px;}
.y24_c00096{bottom:456.974400px;}
.y16_c00096{bottom:488.024400px;}
.y15_c00096{bottom:519.074400px;}
.y14_c00096{bottom:550.124400px;}
.y13_c00096{bottom:581.174400px;}
.y12_c00096{bottom:612.224400px;}
.y11_c00096{bottom:643.274400px;}
.y10_c00096{bottom:674.324400px;}
.yf_c00096{bottom:705.374400px;}
.ye_c00096{bottom:736.424400px;}
.yd_c00096{bottom:767.474400px;}
.y23_c00096{bottom:798.434400px;}
.yc_c00096{bottom:829.484400px;}
.yb_c00096{bottom:860.534400px;}
.ya_c00096{bottom:891.584400px;}
.y9_c00096{bottom:922.634400px;}
.y8_c00096{bottom:953.684400px;}
.y7_c00096{bottom:984.734400px;}
.y6_c00096{bottom:1015.784400px;}
.y5_c00096{bottom:1046.834400px;}
.y4_c00096{bottom:1077.884400px;}
.y22_c00096{bottom:1108.934400px;}
.y3_c00096{bottom:1139.804400px;}
.y21_c00096{bottom:1139.984400px;}
.y2_c00096{bottom:1194.074400px;}
.h2_c00096{height:50.400000px;}
.h3_c00096{height:54.331699px;}
.h4_c00096{height:76.824000px;}
.h0_c00096{height:1262.835000px;}
.h1_c00096{height:1263.000000px;}
.w2_c00096{width:0.000000px;}
.w3_c00096{width:0.066000px;}
.w0_c00096{width:892.914000px;}
.w1_c00096{width:893.250000px;}
.x1_c00096{left:-838.913400px;}
.x2_c00096{left:-765.293400px;}
.x3_c00096{left:-733.343400px;}
.x0_c00096{left:0.000000px;}
.x6_c00096{left:127.620000px;}
.x7_c00096{left:159.570000px;}
.x5_c00096{left:697.590000px;}
.x4_c00096{left:804.366150px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls7_c00096{letter-spacing:-0.320000pt;}
.ls8_c00096{letter-spacing:-0.256000pt;}
.ls5_c00096{letter-spacing:-0.192000pt;}
.ls6_c00096{letter-spacing:-0.064000pt;}
.ls4_c00096{letter-spacing:0.000000pt;}
.ls1_c00096{letter-spacing:0.064000pt;}
.ls2_c00096{letter-spacing:0.128000pt;}
.ls3_c00096{letter-spacing:25.600000pt;}
.ls0_c00096{letter-spacing:33.600000pt;}
.ws8_c00096{word-spacing:-16.064000pt;}
.ws4_c00096{word-spacing:-16.000000pt;}
.ws9_c00096{word-spacing:-15.808000pt;}
.wsc_c00096{word-spacing:-0.371200pt;}
.wsf_c00096{word-spacing:-0.117120pt;}
.ws10_c00096{word-spacing:-0.064000pt;}
.wse_c00096{word-spacing:0.000000pt;}
.ws1d_c00096{word-spacing:0.192000pt;}
.ws1e_c00096{word-spacing:0.256000pt;}
.ws6_c00096{word-spacing:0.320000pt;}
.ws3_c00096{word-spacing:0.384000pt;}
.ws31_c00096{word-spacing:0.640000pt;}
.ws29_c00096{word-spacing:0.896000pt;}
.ws17_c00096{word-spacing:0.960000pt;}
.ws22_c00096{word-spacing:1.216000pt;}
.ws18_c00096{word-spacing:1.792000pt;}
.ws19_c00096{word-spacing:1.856000pt;}
.ws5_c00096{word-spacing:1.920000pt;}
.ws3f_c00096{word-spacing:1.984000pt;}
.ws1a_c00096{word-spacing:2.176000pt;}
.ws3e_c00096{word-spacing:2.240000pt;}
.wsd_c00096{word-spacing:2.304000pt;}
.ws3d_c00096{word-spacing:3.200000pt;}
.ws14_c00096{word-spacing:4.352000pt;}
.ws13_c00096{word-spacing:4.416000pt;}
.ws12_c00096{word-spacing:4.480000pt;}
.ws2_c00096{word-spacing:4.544000pt;}
.ws35_c00096{word-spacing:4.736000pt;}
.wsb_c00096{word-spacing:5.056000pt;}
.ws16_c00096{word-spacing:5.376000pt;}
.ws21_c00096{word-spacing:5.696000pt;}
.ws39_c00096{word-spacing:6.080000pt;}
.ws27_c00096{word-spacing:6.336000pt;}
.ws26_c00096{word-spacing:6.400000pt;}
.ws24_c00096{word-spacing:7.616000pt;}
.ws23_c00096{word-spacing:7.936000pt;}
.ws2b_c00096{word-spacing:8.896000pt;}
.ws30_c00096{word-spacing:9.088000pt;}
.ws28_c00096{word-spacing:9.280000pt;}
.ws7_c00096{word-spacing:9.344000pt;}
.ws2f_c00096{word-spacing:9.600000pt;}
.ws15_c00096{word-spacing:10.560000pt;}
.ws34_c00096{word-spacing:11.520000pt;}
.ws1_c00096{word-spacing:11.776000pt;}
.ws25_c00096{word-spacing:12.736000pt;}
.ws3a_c00096{word-spacing:13.376000pt;}
.ws3b_c00096{word-spacing:13.696000pt;}
.ws1c_c00096{word-spacing:14.592000pt;}
.ws1b_c00096{word-spacing:14.720000pt;}
.ws2d_c00096{word-spacing:15.936000pt;}
.ws2a_c00096{word-spacing:16.896000pt;}
.ws11_c00096{word-spacing:17.920000pt;}
.wsa_c00096{word-spacing:18.048000pt;}
.ws33_c00096{word-spacing:18.176000pt;}
.ws32_c00096{word-spacing:18.240000pt;}
.ws20_c00096{word-spacing:18.816000pt;}
.ws2c_c00096{word-spacing:20.096000pt;}
.ws1f_c00096{word-spacing:20.480000pt;}
.ws41_c00096{word-spacing:21.696000pt;}
.ws36_c00096{word-spacing:22.400000pt;}
.ws38_c00096{word-spacing:22.656000pt;}
.ws37_c00096{word-spacing:22.720000pt;}
.ws40_c00096{word-spacing:25.216000pt;}
.ws3c_c00096{word-spacing:28.480000pt;}
.ws2e_c00096{word-spacing:29.760000pt;}
.ws0_c00096{word-spacing:44.800000pt;}
._1_c00096{margin-left:-0.896000pt;}
._0_c00096{width:1.054080pt;}
._4_c00096{width:6.400000pt;}
._3_c00096{width:11.776000pt;}
._2_c00096{width:17.856000pt;}
.fs1_c00096{font-size:58.560000pt;}
.fs0_c00096{font-size:64.000000pt;}
.y0_c00096{bottom:0.000000pt;}
.y1_c00096{bottom:54.887600pt;}
.y20_c00096{bottom:102.599467pt;}
.y1f_c00096{bottom:130.199467pt;}
.y1e_c00096{bottom:157.799467pt;}
.y1d_c00096{bottom:185.399467pt;}
.y25_c00096{bottom:212.999467pt;}
.y1c_c00096{bottom:240.599467pt;}
.y1b_c00096{bottom:268.199467pt;}
.y1a_c00096{bottom:295.799467pt;}
.y19_c00096{bottom:323.399467pt;}
.y18_c00096{bottom:350.999467pt;}
.y17_c00096{bottom:378.599467pt;}
.y24_c00096{bottom:406.199467pt;}
.y16_c00096{bottom:433.799467pt;}
.y15_c00096{bottom:461.399467pt;}
.y14_c00096{bottom:488.999467pt;}
.y13_c00096{bottom:516.599467pt;}
.y12_c00096{bottom:544.199467pt;}
.y11_c00096{bottom:571.799467pt;}
.y10_c00096{bottom:599.399467pt;}
.yf_c00096{bottom:626.999467pt;}
.ye_c00096{bottom:654.599467pt;}
.yd_c00096{bottom:682.199467pt;}
.y23_c00096{bottom:709.719467pt;}
.yc_c00096{bottom:737.319467pt;}
.yb_c00096{bottom:764.919467pt;}
.ya_c00096{bottom:792.519467pt;}
.y9_c00096{bottom:820.119467pt;}
.y8_c00096{bottom:847.719467pt;}
.y7_c00096{bottom:875.319467pt;}
.y6_c00096{bottom:902.919467pt;}
.y5_c00096{bottom:930.519467pt;}
.y4_c00096{bottom:958.119467pt;}
.y22_c00096{bottom:985.719467pt;}
.y3_c00096{bottom:1013.159467pt;}
.y21_c00096{bottom:1013.319467pt;}
.y2_c00096{bottom:1061.399467pt;}
.h2_c00096{height:44.800000pt;}
.h3_c00096{height:48.294844pt;}
.h4_c00096{height:68.288000pt;}
.h0_c00096{height:1122.520000pt;}
.h1_c00096{height:1122.666667pt;}
.w2_c00096{width:0.000000pt;}
.w3_c00096{width:0.058667pt;}
.w0_c00096{width:793.701333pt;}
.w1_c00096{width:794.000000pt;}
.x1_c00096{left:-745.700800pt;}
.x2_c00096{left:-680.260800pt;}
.x3_c00096{left:-651.860800pt;}
.x0_c00096{left:0.000000pt;}
.x6_c00096{left:113.440000pt;}
.x7_c00096{left:141.840000pt;}
.x5_c00096{left:620.080000pt;}
.x4_c00096{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00097;src:url('chunks/assets/font_02eee8fc79555f78b5729d90.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00097;src:url('chunks/assets/font_407282297dfc80da13460696.woff2')format("woff");}.ff3_c00097{font-family:ff3_c00097;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.ls4_c00097{letter-spacing:-0.144000px;}
.ls3_c00097{letter-spacing:0.000000px;}
.ls0_c00097{letter-spacing:0.072000px;}
.ls1_c00097{letter-spacing:0.144000px;}
.ls2_c00097{letter-spacing:39.628800px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00097{word-spacing:-18.000000px;}
.ws2_c00097{word-spacing:-17.856000px;}
.ws6_c00097{word-spacing:-0.131760px;}
.ws8_c00097{word-spacing:-0.072000px;}
.ws5_c00097{word-spacing:0.000000px;}
.ws1_c00097{word-spacing:0.360000px;}
.wsf_c00097{word-spacing:0.648000px;}
.ws13_c00097{word-spacing:0.720000px;}
.wse_c00097{word-spacing:1.008000px;}
.wsd_c00097{word-spacing:1.080000px;}
.ws7_c00097{word-spacing:1.728000px;}
.ws18_c00097{word-spacing:2.520000px;}
.ws1e_c00097{word-spacing:3.816000px;}
.ws20_c00097{word-spacing:3.888000px;}
.ws1f_c00097{word-spacing:3.960000px;}
.ws4_c00097{word-spacing:5.760000px;}
.wsb_c00097{word-spacing:5.976000px;}
.wsc_c00097{word-spacing:6.048000px;}
.wsa_c00097{word-spacing:6.120000px;}
.ws14_c00097{word-spacing:6.408000px;}
.ws15_c00097{word-spacing:6.480000px;}
.ws1b_c00097{word-spacing:7.200000px;}
.ws21_c00097{word-spacing:9.000000px;}
.ws17_c00097{word-spacing:10.800000px;}
.ws9_c00097{word-spacing:11.088000px;}
.ws16_c00097{word-spacing:11.160000px;}
.ws3_c00097{word-spacing:11.520000px;}
.ws11_c00097{word-spacing:11.808000px;}
.ws10_c00097{word-spacing:11.880000px;}
.ws1d_c00097{word-spacing:21.528000px;}
.ws1c_c00097{word-spacing:21.888000px;}
.ws25_c00097{word-spacing:21.960000px;}
.ws24_c00097{word-spacing:22.176000px;}
.ws23_c00097{word-spacing:30.888000px;}
.ws22_c00097{word-spacing:30.960000px;}
.ws19_c00097{word-spacing:35.496000px;}
.ws1a_c00097{word-spacing:35.640000px;}
.ws12_c00097{word-spacing:37.008000px;}
._1_c00097{margin-left:-1.022400px;}
._0_c00097{width:1.185840px;}
._2_c00097{width:11.808000px;}
.fc1_c00097{color:rgb(0,0,0);}
.fc0_c00097{color:rgb(35,31,32);}
.fs1_c00097{font-size:65.880000px;}
.fs0_c00097{font-size:72.000000px;}
.y0_c00097{bottom:0.000000px;}
.y1_c00097{bottom:61.748550px;}
.y1e_c00097{bottom:208.574400px;}
.y1d_c00097{bottom:239.624400px;}
.y1c_c00097{bottom:270.674400px;}
.y1b_c00097{bottom:301.724400px;}
.y1a_c00097{bottom:332.774400px;}
.y19_c00097{bottom:363.824400px;}
.y18_c00097{bottom:394.874400px;}
.y17_c00097{bottom:425.924400px;}
.y16_c00097{bottom:456.974400px;}
.y15_c00097{bottom:488.024400px;}
.y14_c00097{bottom:519.074400px;}
.y13_c00097{bottom:550.124400px;}
.y12_c00097{bottom:612.224400px;}
.y11_c00097{bottom:643.274400px;}
.y10_c00097{bottom:674.324400px;}
.yf_c00097{bottom:705.374400px;}
.ye_c00097{bottom:736.424400px;}
.yd_c00097{bottom:767.474400px;}
.yc_c00097{bottom:798.434400px;}
.yb_c00097{bottom:829.484400px;}
.ya_c00097{bottom:860.534400px;}
.y9_c00097{bottom:922.634400px;}
.y8_c00097{bottom:953.684400px;}
.y7_c00097{bottom:984.734400px;}
.y6_c00097{bottom:1015.784400px;}
.y5_c00097{bottom:1046.834400px;}
.y4_c00097{bottom:1108.934400px;}
.y3_c00097{bottom:1139.984400px;}
.y2_c00097{bottom:1194.074400px;}
.h2_c00097{height:50.400000px;}
.h3_c00097{height:54.331699px;}
.h4_c00097{height:76.824000px;}
.h0_c00097{height:1262.835000px;}
.h1_c00097{height:1263.000000px;}
.w0_c00097{width:892.914000px;}
.w1_c00097{width:893.250000px;}
.x0_c00097{left:0.000000px;}
.x1_c00097{left:54.000000px;}
.x2_c00097{left:127.620000px;}
.x3_c00097{left:159.570000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls4_c00097{letter-spacing:-0.128000pt;}
.ls3_c00097{letter-spacing:0.000000pt;}
.ls0_c00097{letter-spacing:0.064000pt;}
.ls1_c00097{letter-spacing:0.128000pt;}
.ls2_c00097{letter-spacing:35.225600pt;}
.ws0_c00097{word-spacing:-16.000000pt;}
.ws2_c00097{word-spacing:-15.872000pt;}
.ws6_c00097{word-spacing:-0.117120pt;}
.ws8_c00097{word-spacing:-0.064000pt;}
.ws5_c00097{word-spacing:0.000000pt;}
.ws1_c00097{word-spacing:0.320000pt;}
.wsf_c00097{word-spacing:0.576000pt;}
.ws13_c00097{word-spacing:0.640000pt;}
.wse_c00097{word-spacing:0.896000pt;}
.wsd_c00097{word-spacing:0.960000pt;}
.ws7_c00097{word-spacing:1.536000pt;}
.ws18_c00097{word-spacing:2.240000pt;}
.ws1e_c00097{word-spacing:3.392000pt;}
.ws20_c00097{word-spacing:3.456000pt;}
.ws1f_c00097{word-spacing:3.520000pt;}
.ws4_c00097{word-spacing:5.120000pt;}
.wsb_c00097{word-spacing:5.312000pt;}
.wsc_c00097{word-spacing:5.376000pt;}
.wsa_c00097{word-spacing:5.440000pt;}
.ws14_c00097{word-spacing:5.696000pt;}
.ws15_c00097{word-spacing:5.760000pt;}
.ws1b_c00097{word-spacing:6.400000pt;}
.ws21_c00097{word-spacing:8.000000pt;}
.ws17_c00097{word-spacing:9.600000pt;}
.ws9_c00097{word-spacing:9.856000pt;}
.ws16_c00097{word-spacing:9.920000pt;}
.ws3_c00097{word-spacing:10.240000pt;}
.ws11_c00097{word-spacing:10.496000pt;}
.ws10_c00097{word-spacing:10.560000pt;}
.ws1d_c00097{word-spacing:19.136000pt;}
.ws1c_c00097{word-spacing:19.456000pt;}
.ws25_c00097{word-spacing:19.520000pt;}
.ws24_c00097{word-spacing:19.712000pt;}
.ws23_c00097{word-spacing:27.456000pt;}
.ws22_c00097{word-spacing:27.520000pt;}
.ws19_c00097{word-spacing:31.552000pt;}
.ws1a_c00097{word-spacing:31.680000pt;}
.ws12_c00097{word-spacing:32.896000pt;}
._1_c00097{margin-left:-0.908800pt;}
._0_c00097{width:1.054080pt;}
._2_c00097{width:10.496000pt;}
.fs1_c00097{font-size:58.560000pt;}
.fs0_c00097{font-size:64.000000pt;}
.y0_c00097{bottom:0.000000pt;}
.y1_c00097{bottom:54.887600pt;}
.y1e_c00097{bottom:185.399467pt;}
.y1d_c00097{bottom:212.999467pt;}
.y1c_c00097{bottom:240.599467pt;}
.y1b_c00097{bottom:268.199467pt;}
.y1a_c00097{bottom:295.799467pt;}
.y19_c00097{bottom:323.399467pt;}
.y18_c00097{bottom:350.999467pt;}
.y17_c00097{bottom:378.599467pt;}
.y16_c00097{bottom:406.199467pt;}
.y15_c00097{bottom:433.799467pt;}
.y14_c00097{bottom:461.399467pt;}
.y13_c00097{bottom:488.999467pt;}
.y12_c00097{bottom:544.199467pt;}
.y11_c00097{bottom:571.799467pt;}
.y10_c00097{bottom:599.399467pt;}
.yf_c00097{bottom:626.999467pt;}
.ye_c00097{bottom:654.599467pt;}
.yd_c00097{bottom:682.199467pt;}
.yc_c00097{bottom:709.719467pt;}
.yb_c00097{bottom:737.319467pt;}
.ya_c00097{bottom:764.919467pt;}
.y9_c00097{bottom:820.119467pt;}
.y8_c00097{bottom:847.719467pt;}
.y7_c00097{bottom:875.319467pt;}
.y6_c00097{bottom:902.919467pt;}
.y5_c00097{bottom:930.519467pt;}
.y4_c00097{bottom:985.719467pt;}
.y3_c00097{bottom:1013.319467pt;}
.y2_c00097{bottom:1061.399467pt;}
.h2_c00097{height:44.800000pt;}
.h3_c00097{height:48.294844pt;}
.h4_c00097{height:68.288000pt;}
.h0_c00097{height:1122.520000pt;}
.h1_c00097{height:1122.666667pt;}
.w0_c00097{width:793.701333pt;}
.w1_c00097{width:794.000000pt;}
.x0_c00097{left:0.000000pt;}
.x1_c00097{left:48.000000pt;}
.x2_c00097{left:113.440000pt;}
.x3_c00097{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00098;src:url('chunks/assets/font_a1c8607b87243905e543487b.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00098;src:url('chunks/assets/font_b566832990c182fac83f097f.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00098;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00098{font-family:ff4_c00098;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00098;src:url('chunks/assets/font_964bd670d9c0bbb547ecc8ad.woff2')format("woff");}.ff5_c00098{font-family:ff5_c00098;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00098;src:url('chunks/assets/font_d568a6ae6858722e8c577b44.woff2')format("woff");}.ff6_c00098{font-family:ff6_c00098;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00098;src:url('chunks/assets/font_03b59d0ed36324f1c5ea5c6b.woff2')format("woff");}.ff7_c00098{font-family:ff7_c00098;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.144000px;}
.ls5_c00098{letter-spacing:0.000000px;}
.ls0_c00098{letter-spacing:0.072000px;}
.ls1_c00098{letter-spacing:0.144000px;}
.ls4_c00098{letter-spacing:38.160000px;}
.ls3_c00098{letter-spacing:39.621600px;}
.ls2_c00098{letter-spacing:39.628800px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00098{word-spacing:-18.000000px;}
.ws2_c00098{word-spacing:-17.856000px;}
.ws37_c00098{word-spacing:-0.432000px;}
.ws9_c00098{word-spacing:-0.131760px;}
.wsb_c00098{word-spacing:-0.072000px;}
.ws8_c00098{word-spacing:0.000000px;}
.ws38_c00098{word-spacing:0.288000px;}
.ws1_c00098{word-spacing:0.360000px;}
.ws12_c00098{word-spacing:0.648000px;}
.ws16_c00098{word-spacing:0.720000px;}
.ws11_c00098{word-spacing:1.008000px;}
.ws10_c00098{word-spacing:1.080000px;}
.wsa_c00098{word-spacing:1.728000px;}
.ws2a_c00098{word-spacing:1.800000px;}
.ws1b_c00098{word-spacing:2.520000px;}
.ws33_c00098{word-spacing:2.880000px;}
.ws21_c00098{word-spacing:3.816000px;}
.ws23_c00098{word-spacing:3.888000px;}
.ws22_c00098{word-spacing:3.960000px;}
.ws36_c00098{word-spacing:4.680000px;}
.ws39_c00098{word-spacing:5.328000px;}
.ws3a_c00098{word-spacing:5.400000px;}
.ws4_c00098{word-spacing:5.760000px;}
.wse_c00098{word-spacing:5.976000px;}
.wsf_c00098{word-spacing:6.048000px;}
.wsd_c00098{word-spacing:6.120000px;}
.ws17_c00098{word-spacing:6.408000px;}
.ws18_c00098{word-spacing:6.480000px;}
.ws35_c00098{word-spacing:6.840000px;}
.ws1e_c00098{word-spacing:7.200000px;}
.ws2e_c00098{word-spacing:7.560000px;}
.ws24_c00098{word-spacing:9.000000px;}
.ws1a_c00098{word-spacing:10.800000px;}
.wsc_c00098{word-spacing:11.088000px;}
.ws19_c00098{word-spacing:11.160000px;}
.ws2b_c00098{word-spacing:11.448000px;}
.ws3_c00098{word-spacing:11.520000px;}
.ws6_c00098{word-spacing:11.592000px;}
.ws14_c00098{word-spacing:11.808000px;}
.ws13_c00098{word-spacing:11.880000px;}
.ws2c_c00098{word-spacing:12.240000px;}
.ws29_c00098{word-spacing:14.688000px;}
.ws34_c00098{word-spacing:18.720000px;}
.ws32_c00098{word-spacing:20.088000px;}
.ws31_c00098{word-spacing:20.160000px;}
.ws20_c00098{word-spacing:21.528000px;}
.ws1f_c00098{word-spacing:21.888000px;}
.ws28_c00098{word-spacing:21.960000px;}
.ws27_c00098{word-spacing:22.176000px;}
.ws2d_c00098{word-spacing:23.688000px;}
.ws7_c00098{word-spacing:23.904000px;}
.ws2f_c00098{word-spacing:25.416000px;}
.ws30_c00098{word-spacing:25.488000px;}
.ws26_c00098{word-spacing:30.888000px;}
.ws25_c00098{word-spacing:30.960000px;}
.ws1c_c00098{word-spacing:35.496000px;}
.ws1d_c00098{word-spacing:35.640000px;}
.ws15_c00098{word-spacing:37.008000px;}
.ws5_c00098{word-spacing:140.400000px;}
._1_c00098{margin-left:-1.022400px;}
._0_c00098{width:1.185840px;}
._2_c00098{width:11.808000px;}
.fc2_c00098{color:transparent;}
.fc1_c00098{color:rgb(0,0,0);}
.fc0_c00098{color:rgb(35,31,32);}
.fs1_c00098{font-size:65.880000px;}
.fs0_c00098{font-size:72.000000px;}
.y0_c00098{bottom:0.000000px;}
.y1_c00098{bottom:61.748550px;}
.y25_c00098{bottom:115.424400px;}
.y24_c00098{bottom:146.474400px;}
.y23_c00098{bottom:177.524400px;}
.y1e_c00098{bottom:208.574400px;}
.y1d_c00098{bottom:239.624400px;}
.y1c_c00098{bottom:270.674400px;}
.y1b_c00098{bottom:301.724400px;}
.y1a_c00098{bottom:332.774400px;}
.y19_c00098{bottom:363.824400px;}
.y18_c00098{bottom:394.874400px;}
.y17_c00098{bottom:425.924400px;}
.y16_c00098{bottom:456.974400px;}
.y15_c00098{bottom:488.024400px;}
.y14_c00098{bottom:519.074400px;}
.y13_c00098{bottom:550.124400px;}
.y22_c00098{bottom:581.174400px;}
.y12_c00098{bottom:612.224400px;}
.y11_c00098{bottom:643.274400px;}
.y10_c00098{bottom:674.324400px;}
.yf_c00098{bottom:705.374400px;}
.ye_c00098{bottom:736.424400px;}
.yd_c00098{bottom:767.474400px;}
.yc_c00098{bottom:798.434400px;}
.yb_c00098{bottom:829.484400px;}
.ya_c00098{bottom:860.534400px;}
.y21_c00098{bottom:891.584400px;}
.y9_c00098{bottom:922.634400px;}
.y8_c00098{bottom:953.684400px;}
.y7_c00098{bottom:984.734400px;}
.y6_c00098{bottom:1015.784400px;}
.y5_c00098{bottom:1046.834400px;}
.y20_c00098{bottom:1077.884400px;}
.y4_c00098{bottom:1108.934400px;}
.y1f_c00098{bottom:1139.804400px;}
.y3_c00098{bottom:1139.984400px;}
.y2_c00098{bottom:1194.074400px;}
.h2_c00098{height:50.400000px;}
.h3_c00098{height:54.331699px;}
.h4_c00098{height:76.824000px;}
.h0_c00098{height:1262.835000px;}
.h1_c00098{height:1263.000000px;}
.w2_c00098{width:0.000000px;}
.w3_c00098{width:0.066000px;}
.w0_c00098{width:892.914000px;}
.w1_c00098{width:893.250000px;}
.x1_c00098{left:-838.913400px;}
.x2_c00098{left:-765.293400px;}
.x3_c00098{left:-733.343400px;}
.x0_c00098{left:0.000000px;}
.x6_c00098{left:127.620000px;}
.x8_c00098{left:148.950000px;}
.x7_c00098{left:159.570000px;}
.x5_c00098{left:697.590000px;}
.x4_c00098{left:804.366150px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls6_c00098{letter-spacing:-0.128000pt;}
.ls5_c00098{letter-spacing:0.000000pt;}
.ls0_c00098{letter-spacing:0.064000pt;}
.ls1_c00098{letter-spacing:0.128000pt;}
.ls4_c00098{letter-spacing:33.920000pt;}
.ls3_c00098{letter-spacing:35.219200pt;}
.ls2_c00098{letter-spacing:35.225600pt;}
.ws0_c00098{word-spacing:-16.000000pt;}
.ws2_c00098{word-spacing:-15.872000pt;}
.ws37_c00098{word-spacing:-0.384000pt;}
.ws9_c00098{word-spacing:-0.117120pt;}
.wsb_c00098{word-spacing:-0.064000pt;}
.ws8_c00098{word-spacing:0.000000pt;}
.ws38_c00098{word-spacing:0.256000pt;}
.ws1_c00098{word-spacing:0.320000pt;}
.ws12_c00098{word-spacing:0.576000pt;}
.ws16_c00098{word-spacing:0.640000pt;}
.ws11_c00098{word-spacing:0.896000pt;}
.ws10_c00098{word-spacing:0.960000pt;}
.wsa_c00098{word-spacing:1.536000pt;}
.ws2a_c00098{word-spacing:1.600000pt;}
.ws1b_c00098{word-spacing:2.240000pt;}
.ws33_c00098{word-spacing:2.560000pt;}
.ws21_c00098{word-spacing:3.392000pt;}
.ws23_c00098{word-spacing:3.456000pt;}
.ws22_c00098{word-spacing:3.520000pt;}
.ws36_c00098{word-spacing:4.160000pt;}
.ws39_c00098{word-spacing:4.736000pt;}
.ws3a_c00098{word-spacing:4.800000pt;}
.ws4_c00098{word-spacing:5.120000pt;}
.wse_c00098{word-spacing:5.312000pt;}
.wsf_c00098{word-spacing:5.376000pt;}
.wsd_c00098{word-spacing:5.440000pt;}
.ws17_c00098{word-spacing:5.696000pt;}
.ws18_c00098{word-spacing:5.760000pt;}
.ws35_c00098{word-spacing:6.080000pt;}
.ws1e_c00098{word-spacing:6.400000pt;}
.ws2e_c00098{word-spacing:6.720000pt;}
.ws24_c00098{word-spacing:8.000000pt;}
.ws1a_c00098{word-spacing:9.600000pt;}
.wsc_c00098{word-spacing:9.856000pt;}
.ws19_c00098{word-spacing:9.920000pt;}
.ws2b_c00098{word-spacing:10.176000pt;}
.ws3_c00098{word-spacing:10.240000pt;}
.ws6_c00098{word-spacing:10.304000pt;}
.ws14_c00098{word-spacing:10.496000pt;}
.ws13_c00098{word-spacing:10.560000pt;}
.ws2c_c00098{word-spacing:10.880000pt;}
.ws29_c00098{word-spacing:13.056000pt;}
.ws34_c00098{word-spacing:16.640000pt;}
.ws32_c00098{word-spacing:17.856000pt;}
.ws31_c00098{word-spacing:17.920000pt;}
.ws20_c00098{word-spacing:19.136000pt;}
.ws1f_c00098{word-spacing:19.456000pt;}
.ws28_c00098{word-spacing:19.520000pt;}
.ws27_c00098{word-spacing:19.712000pt;}
.ws2d_c00098{word-spacing:21.056000pt;}
.ws7_c00098{word-spacing:21.248000pt;}
.ws2f_c00098{word-spacing:22.592000pt;}
.ws30_c00098{word-spacing:22.656000pt;}
.ws26_c00098{word-spacing:27.456000pt;}
.ws25_c00098{word-spacing:27.520000pt;}
.ws1c_c00098{word-spacing:31.552000pt;}
.ws1d_c00098{word-spacing:31.680000pt;}
.ws15_c00098{word-spacing:32.896000pt;}
.ws5_c00098{word-spacing:124.800000pt;}
._1_c00098{margin-left:-0.908800pt;}
._0_c00098{width:1.054080pt;}
._2_c00098{width:10.496000pt;}
.fs1_c00098{font-size:58.560000pt;}
.fs0_c00098{font-size:64.000000pt;}
.y0_c00098{bottom:0.000000pt;}
.y1_c00098{bottom:54.887600pt;}
.y25_c00098{bottom:102.599467pt;}
.y24_c00098{bottom:130.199467pt;}
.y23_c00098{bottom:157.799467pt;}
.y1e_c00098{bottom:185.399467pt;}
.y1d_c00098{bottom:212.999467pt;}
.y1c_c00098{bottom:240.599467pt;}
.y1b_c00098{bottom:268.199467pt;}
.y1a_c00098{bottom:295.799467pt;}
.y19_c00098{bottom:323.399467pt;}
.y18_c00098{bottom:350.999467pt;}
.y17_c00098{bottom:378.599467pt;}
.y16_c00098{bottom:406.199467pt;}
.y15_c00098{bottom:433.799467pt;}
.y14_c00098{bottom:461.399467pt;}
.y13_c00098{bottom:488.999467pt;}
.y22_c00098{bottom:516.599467pt;}
.y12_c00098{bottom:544.199467pt;}
.y11_c00098{bottom:571.799467pt;}
.y10_c00098{bottom:599.399467pt;}
.yf_c00098{bottom:626.999467pt;}
.ye_c00098{bottom:654.599467pt;}
.yd_c00098{bottom:682.199467pt;}
.yc_c00098{bottom:709.719467pt;}
.yb_c00098{bottom:737.319467pt;}
.ya_c00098{bottom:764.919467pt;}
.y21_c00098{bottom:792.519467pt;}
.y9_c00098{bottom:820.119467pt;}
.y8_c00098{bottom:847.719467pt;}
.y7_c00098{bottom:875.319467pt;}
.y6_c00098{bottom:902.919467pt;}
.y5_c00098{bottom:930.519467pt;}
.y20_c00098{bottom:958.119467pt;}
.y4_c00098{bottom:985.719467pt;}
.y1f_c00098{bottom:1013.159467pt;}
.y3_c00098{bottom:1013.319467pt;}
.y2_c00098{bottom:1061.399467pt;}
.h2_c00098{height:44.800000pt;}
.h3_c00098{height:48.294844pt;}
.h4_c00098{height:68.288000pt;}
.h0_c00098{height:1122.520000pt;}
.h1_c00098{height:1122.666667pt;}
.w2_c00098{width:0.000000pt;}
.w3_c00098{width:0.058667pt;}
.w0_c00098{width:793.701333pt;}
.w1_c00098{width:794.000000pt;}
.x1_c00098{left:-745.700800pt;}
.x2_c00098{left:-680.260800pt;}
.x3_c00098{left:-651.860800pt;}
.x0_c00098{left:0.000000pt;}
.x6_c00098{left:113.440000pt;}
.x8_c00098{left:132.400000pt;}
.x7_c00098{left:141.840000pt;}
.x5_c00098{left:620.080000pt;}
.x4_c00098{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00099;src:url('chunks/assets/font_80f8ef2261c3f68d09f46347.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00099;src:url('chunks/assets/font_6332af0d4b18563f10606063.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls6_c00099{letter-spacing:-0.360000px;}
.ls7_c00099{letter-spacing:-0.288000px;}
.ls5_c00099{letter-spacing:0.000000px;}
.ls0_c00099{letter-spacing:0.072000px;}
.ls2_c00099{letter-spacing:0.144000px;}
.ls3_c00099{letter-spacing:33.120000px;}
.ls4_c00099{letter-spacing:35.640000px;}
.ls1_c00099{letter-spacing:46.224000px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00099{word-spacing:-17.640000px;}
.wsc_c00099{word-spacing:-0.144000px;}
.ws5_c00099{word-spacing:-0.131760px;}
.wsa_c00099{word-spacing:-0.072000px;}
.ws4_c00099{word-spacing:0.000000px;}
.ws9_c00099{word-spacing:1.728000px;}
.ws8_c00099{word-spacing:2.088000px;}
.wsd_c00099{word-spacing:2.160000px;}
.ws10_c00099{word-spacing:3.600000px;}
.wsf_c00099{word-spacing:3.960000px;}
.ws14_c00099{word-spacing:4.248000px;}
.ws18_c00099{word-spacing:4.320000px;}
.ws11_c00099{word-spacing:4.608000px;}
.ws1_c00099{word-spacing:4.968000px;}
.ws1e_c00099{word-spacing:7.848000px;}
.ws13_c00099{word-spacing:9.360000px;}
.ws19_c00099{word-spacing:9.576000px;}
.ws17_c00099{word-spacing:9.648000px;}
.ws2_c00099{word-spacing:9.720000px;}
.ws1b_c00099{word-spacing:12.528000px;}
.ws7_c00099{word-spacing:13.680000px;}
.ws16_c00099{word-spacing:15.048000px;}
.ws15_c00099{word-spacing:15.120000px;}
.ws1c_c00099{word-spacing:15.408000px;}
.ws1d_c00099{word-spacing:15.840000px;}
.ws1a_c00099{word-spacing:17.928000px;}
.ws3_c00099{word-spacing:18.000000px;}
.ws12_c00099{word-spacing:18.720000px;}
.ws6_c00099{word-spacing:22.680000px;}
.wsb_c00099{word-spacing:28.440000px;}
.wse_c00099{word-spacing:36.000000px;}
._1_c00099{margin-left:-1.008000px;}
._0_c00099{width:1.185840px;}
._2_c00099{width:26.568000px;}
.fc1_c00099{color:rgb(0,0,0);}
.fc0_c00099{color:rgb(35,31,32);}
.fs1_c00099{font-size:65.880000px;}
.fs0_c00099{font-size:72.000000px;}
.y0_c00099{bottom:0.000000px;}
.y1_c00099{bottom:61.748550px;}
.y1e_c00099{bottom:115.424400px;}
.y1d_c00099{bottom:146.474400px;}
.y1c_c00099{bottom:177.524400px;}
.y1b_c00099{bottom:208.574400px;}
.y1a_c00099{bottom:239.624400px;}
.y19_c00099{bottom:270.674400px;}
.y18_c00099{bottom:301.724400px;}
.y17_c00099{bottom:363.824400px;}
.y16_c00099{bottom:394.874400px;}
.y15_c00099{bottom:425.924400px;}
.y14_c00099{bottom:456.974400px;}
.y13_c00099{bottom:488.024400px;}
.y12_c00099{bottom:519.074400px;}
.y11_c00099{bottom:550.124400px;}
.y10_c00099{bottom:581.174400px;}
.yf_c00099{bottom:612.224400px;}
.ye_c00099{bottom:674.324400px;}
.yd_c00099{bottom:736.424400px;}
.yc_c00099{bottom:767.474400px;}
.yb_c00099{bottom:798.434400px;}
.ya_c00099{bottom:860.534400px;}
.y9_c00099{bottom:891.584400px;}
.y8_c00099{bottom:922.634400px;}
.y7_c00099{bottom:984.734400px;}
.y6_c00099{bottom:1015.784400px;}
.y5_c00099{bottom:1046.834400px;}
.y4_c00099{bottom:1077.884400px;}
.y3_c00099{bottom:1108.934400px;}
.y2_c00099{bottom:1194.074400px;}
.h2_c00099{height:50.400000px;}
.h3_c00099{height:54.331699px;}
.h4_c00099{height:76.824000px;}
.h0_c00099{height:1262.835000px;}
.h1_c00099{height:1263.000000px;}
.w0_c00099{width:892.914000px;}
.w1_c00099{width:893.250000px;}
.x0_c00099{left:0.000000px;}
.x1_c00099{left:54.000000px;}
.x2_c00099{left:127.620000px;}
.x3_c00099{left:148.950000px;}
.x4_c00099{left:159.570000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls6_c00099{letter-spacing:-0.320000pt;}
.ls7_c00099{letter-spacing:-0.256000pt;}
.ls5_c00099{letter-spacing:0.000000pt;}
.ls0_c00099{letter-spacing:0.064000pt;}
.ls2_c00099{letter-spacing:0.128000pt;}
.ls3_c00099{letter-spacing:29.440000pt;}
.ls4_c00099{letter-spacing:31.680000pt;}
.ls1_c00099{letter-spacing:41.088000pt;}
.ws0_c00099{word-spacing:-15.680000pt;}
.wsc_c00099{word-spacing:-0.128000pt;}
.ws5_c00099{word-spacing:-0.117120pt;}
.wsa_c00099{word-spacing:-0.064000pt;}
.ws4_c00099{word-spacing:0.000000pt;}
.ws9_c00099{word-spacing:1.536000pt;}
.ws8_c00099{word-spacing:1.856000pt;}
.wsd_c00099{word-spacing:1.920000pt;}
.ws10_c00099{word-spacing:3.200000pt;}
.wsf_c00099{word-spacing:3.520000pt;}
.ws14_c00099{word-spacing:3.776000pt;}
.ws18_c00099{word-spacing:3.840000pt;}
.ws11_c00099{word-spacing:4.096000pt;}
.ws1_c00099{word-spacing:4.416000pt;}
.ws1e_c00099{word-spacing:6.976000pt;}
.ws13_c00099{word-spacing:8.320000pt;}
.ws19_c00099{word-spacing:8.512000pt;}
.ws17_c00099{word-spacing:8.576000pt;}
.ws2_c00099{word-spacing:8.640000pt;}
.ws1b_c00099{word-spacing:11.136000pt;}
.ws7_c00099{word-spacing:12.160000pt;}
.ws16_c00099{word-spacing:13.376000pt;}
.ws15_c00099{word-spacing:13.440000pt;}
.ws1c_c00099{word-spacing:13.696000pt;}
.ws1d_c00099{word-spacing:14.080000pt;}
.ws1a_c00099{word-spacing:15.936000pt;}
.ws3_c00099{word-spacing:16.000000pt;}
.ws12_c00099{word-spacing:16.640000pt;}
.ws6_c00099{word-spacing:20.160000pt;}
.wsb_c00099{word-spacing:25.280000pt;}
.wse_c00099{word-spacing:32.000000pt;}
._1_c00099{margin-left:-0.896000pt;}
._0_c00099{width:1.054080pt;}
._2_c00099{width:23.616000pt;}
.fs1_c00099{font-size:58.560000pt;}
.fs0_c00099{font-size:64.000000pt;}
.y0_c00099{bottom:0.000000pt;}
.y1_c00099{bottom:54.887600pt;}
.y1e_c00099{bottom:102.599467pt;}
.y1d_c00099{bottom:130.199467pt;}
.y1c_c00099{bottom:157.799467pt;}
.y1b_c00099{bottom:185.399467pt;}
.y1a_c00099{bottom:212.999467pt;}
.y19_c00099{bottom:240.599467pt;}
.y18_c00099{bottom:268.199467pt;}
.y17_c00099{bottom:323.399467pt;}
.y16_c00099{bottom:350.999467pt;}
.y15_c00099{bottom:378.599467pt;}
.y14_c00099{bottom:406.199467pt;}
.y13_c00099{bottom:433.799467pt;}
.y12_c00099{bottom:461.399467pt;}
.y11_c00099{bottom:488.999467pt;}
.y10_c00099{bottom:516.599467pt;}
.yf_c00099{bottom:544.199467pt;}
.ye_c00099{bottom:599.399467pt;}
.yd_c00099{bottom:654.599467pt;}
.yc_c00099{bottom:682.199467pt;}
.yb_c00099{bottom:709.719467pt;}
.ya_c00099{bottom:764.919467pt;}
.y9_c00099{bottom:792.519467pt;}
.y8_c00099{bottom:820.119467pt;}
.y7_c00099{bottom:875.319467pt;}
.y6_c00099{bottom:902.919467pt;}
.y5_c00099{bottom:930.519467pt;}
.y4_c00099{bottom:958.119467pt;}
.y3_c00099{bottom:985.719467pt;}
.y2_c00099{bottom:1061.399467pt;}
.h2_c00099{height:44.800000pt;}
.h3_c00099{height:48.294844pt;}
.h4_c00099{height:68.288000pt;}
.h0_c00099{height:1122.520000pt;}
.h1_c00099{height:1122.666667pt;}
.w0_c00099{width:793.701333pt;}
.w1_c00099{width:794.000000pt;}
.x0_c00099{left:0.000000pt;}
.x1_c00099{left:48.000000pt;}
.x2_c00099{left:113.440000pt;}
.x3_c00099{left:132.400000pt;}
.x4_c00099{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00100;src:url('chunks/assets/font_e740b9fcc8fc0b1db39aacca.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00100;src:url('chunks/assets/font_62c292c2d7bf9cda3951ea5e.woff2')format("woff");}.ff3_c00100{font-family:ff3_c00100;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00100;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00100{font-family:ff4_c00100;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00100;src:url('chunks/assets/font_53c6b62bdea209902c31c26f.woff2')format("woff");}.ff5_c00100{font-family:ff5_c00100;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00100;src:url('chunks/assets/font_8518b7c97000d777fb91aba1.woff2')format("woff");}.ff6_c00100{font-family:ff6_c00100;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.lsc_c00100{letter-spacing:-0.360000px;}
.lsd_c00100{letter-spacing:-0.288000px;}
.lsb_c00100{letter-spacing:0.000000px;}
.ls0_c00100{letter-spacing:0.072000px;}
.ls2_c00100{letter-spacing:0.144000px;}
.lsa_c00100{letter-spacing:18.360000px;}
.ls5_c00100{letter-spacing:21.024000px;}
.ls7_c00100{letter-spacing:21.960000px;}
.ls6_c00100{letter-spacing:30.297600px;}
.ls3_c00100{letter-spacing:33.120000px;}
.ls4_c00100{letter-spacing:35.640000px;}
.ls8_c00100{letter-spacing:35.712000px;}
.ls1_c00100{letter-spacing:46.224000px;}
.ls9_c00100{letter-spacing:60.984000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00100{word-spacing:-18.000000px;}
.ws0_c00100{word-spacing:-17.640000px;}
.ws10_c00100{word-spacing:-0.144000px;}
.ws9_c00100{word-spacing:-0.131760px;}
.wse_c00100{word-spacing:-0.072000px;}
.ws8_c00100{word-spacing:0.000000px;}
.ws2d_c00100{word-spacing:0.288000px;}
.ws32_c00100{word-spacing:0.360000px;}
.ws33_c00100{word-spacing:1.440000px;}
.wsd_c00100{word-spacing:1.728000px;}
.ws2f_c00100{word-spacing:1.800000px;}
.wsc_c00100{word-spacing:2.088000px;}
.ws11_c00100{word-spacing:2.160000px;}
.ws23_c00100{word-spacing:3.096000px;}
.ws26_c00100{word-spacing:3.168000px;}
.ws24_c00100{word-spacing:3.240000px;}
.ws14_c00100{word-spacing:3.600000px;}
.ws13_c00100{word-spacing:3.960000px;}
.ws18_c00100{word-spacing:4.248000px;}
.ws1c_c00100{word-spacing:4.320000px;}
.ws15_c00100{word-spacing:4.608000px;}
.ws1_c00100{word-spacing:4.968000px;}
.ws25_c00100{word-spacing:7.200000px;}
.ws22_c00100{word-spacing:7.848000px;}
.ws17_c00100{word-spacing:9.360000px;}
.ws1d_c00100{word-spacing:9.576000px;}
.ws1b_c00100{word-spacing:9.648000px;}
.ws2_c00100{word-spacing:9.720000px;}
.ws2b_c00100{word-spacing:12.168000px;}
.ws1f_c00100{word-spacing:12.528000px;}
.wsb_c00100{word-spacing:13.680000px;}
.ws1a_c00100{word-spacing:15.048000px;}
.ws19_c00100{word-spacing:15.120000px;}
.ws20_c00100{word-spacing:15.408000px;}
.ws21_c00100{word-spacing:15.840000px;}
.ws30_c00100{word-spacing:16.128000px;}
.ws2a_c00100{word-spacing:17.208000px;}
.ws5_c00100{word-spacing:17.352000px;}
.ws29_c00100{word-spacing:17.640000px;}
.ws4_c00100{word-spacing:17.712000px;}
.ws1e_c00100{word-spacing:17.928000px;}
.ws3_c00100{word-spacing:18.000000px;}
.ws2c_c00100{word-spacing:18.288000px;}
.ws16_c00100{word-spacing:18.720000px;}
.ws27_c00100{word-spacing:19.008000px;}
.ws28_c00100{word-spacing:19.080000px;}
.ws6_c00100{word-spacing:19.800000px;}
.ws31_c00100{word-spacing:20.088000px;}
.wsa_c00100{word-spacing:22.680000px;}
.ws2e_c00100{word-spacing:24.048000px;}
.wsf_c00100{word-spacing:28.440000px;}
.ws12_c00100{word-spacing:36.000000px;}
._1_c00100{margin-left:-1.008000px;}
._0_c00100{width:1.185840px;}
._3_c00100{width:4.248000px;}
._5_c00100{width:15.912000px;}
._2_c00100{width:26.568000px;}
._4_c00100{width:60.984000px;}
.fc2_c00100{color:transparent;}
.fc1_c00100{color:rgb(0,0,0);}
.fc0_c00100{color:rgb(35,31,32);}
.fs1_c00100{font-size:65.880000px;}
.fs0_c00100{font-size:72.000000px;}
.y0_c00100{bottom:0.000000px;}
.y1_c00100{bottom:61.748550px;}
.y1e_c00100{bottom:115.424400px;}
.y1d_c00100{bottom:146.474400px;}
.y1c_c00100{bottom:177.524400px;}
.y1b_c00100{bottom:208.574400px;}
.y1a_c00100{bottom:239.624400px;}
.y19_c00100{bottom:270.674400px;}
.y18_c00100{bottom:301.724400px;}
.y24_c00100{bottom:332.774400px;}
.y17_c00100{bottom:363.824400px;}
.y16_c00100{bottom:394.874400px;}
.y15_c00100{bottom:425.924400px;}
.y14_c00100{bottom:456.974400px;}
.y13_c00100{bottom:488.024400px;}
.y12_c00100{bottom:519.074400px;}
.y11_c00100{bottom:550.124400px;}
.y10_c00100{bottom:581.174400px;}
.yf_c00100{bottom:612.224400px;}
.y23_c00100{bottom:643.274400px;}
.ye_c00100{bottom:674.324400px;}
.y22_c00100{bottom:705.374400px;}
.yd_c00100{bottom:736.424400px;}
.yc_c00100{bottom:767.474400px;}
.yb_c00100{bottom:798.434400px;}
.y21_c00100{bottom:829.484400px;}
.ya_c00100{bottom:860.534400px;}
.y9_c00100{bottom:891.584400px;}
.y8_c00100{bottom:922.634400px;}
.y20_c00100{bottom:953.684400px;}
.y7_c00100{bottom:984.734400px;}
.y6_c00100{bottom:1015.784400px;}
.y5_c00100{bottom:1046.834400px;}
.y4_c00100{bottom:1077.884400px;}
.y3_c00100{bottom:1108.934400px;}
.y1f_c00100{bottom:1139.984400px;}
.y2_c00100{bottom:1194.074400px;}
.h2_c00100{height:50.400000px;}
.h3_c00100{height:54.331699px;}
.h4_c00100{height:76.824000px;}
.h0_c00100{height:1262.835000px;}
.h1_c00100{height:1263.000000px;}
.w2_c00100{width:0.000000px;}
.w3_c00100{width:0.066000px;}
.w0_c00100{width:892.914000px;}
.w1_c00100{width:893.250000px;}
.x1_c00100{left:-838.913400px;}
.x2_c00100{left:-765.293400px;}
.x3_c00100{left:-743.963400px;}
.x4_c00100{left:-733.343400px;}
.x0_c00100{left:0.000000px;}
.x8_c00100{left:127.620000px;}
.x9_c00100{left:148.950000px;}
.x7_c00100{left:159.570000px;}
.xa_c00100{left:170.190000px;}
.x6_c00100{left:697.590000px;}
.x5_c00100{left:804.366150px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.lsc_c00100{letter-spacing:-0.320000pt;}
.lsd_c00100{letter-spacing:-0.256000pt;}
.lsb_c00100{letter-spacing:0.000000pt;}
.ls0_c00100{letter-spacing:0.064000pt;}
.ls2_c00100{letter-spacing:0.128000pt;}
.lsa_c00100{letter-spacing:16.320000pt;}
.ls5_c00100{letter-spacing:18.688000pt;}
.ls7_c00100{letter-spacing:19.520000pt;}
.ls6_c00100{letter-spacing:26.931200pt;}
.ls3_c00100{letter-spacing:29.440000pt;}
.ls4_c00100{letter-spacing:31.680000pt;}
.ls8_c00100{letter-spacing:31.744000pt;}
.ls1_c00100{letter-spacing:41.088000pt;}
.ls9_c00100{letter-spacing:54.208000pt;}
.ws7_c00100{word-spacing:-16.000000pt;}
.ws0_c00100{word-spacing:-15.680000pt;}
.ws10_c00100{word-spacing:-0.128000pt;}
.ws9_c00100{word-spacing:-0.117120pt;}
.wse_c00100{word-spacing:-0.064000pt;}
.ws8_c00100{word-spacing:0.000000pt;}
.ws2d_c00100{word-spacing:0.256000pt;}
.ws32_c00100{word-spacing:0.320000pt;}
.ws33_c00100{word-spacing:1.280000pt;}
.wsd_c00100{word-spacing:1.536000pt;}
.ws2f_c00100{word-spacing:1.600000pt;}
.wsc_c00100{word-spacing:1.856000pt;}
.ws11_c00100{word-spacing:1.920000pt;}
.ws23_c00100{word-spacing:2.752000pt;}
.ws26_c00100{word-spacing:2.816000pt;}
.ws24_c00100{word-spacing:2.880000pt;}
.ws14_c00100{word-spacing:3.200000pt;}
.ws13_c00100{word-spacing:3.520000pt;}
.ws18_c00100{word-spacing:3.776000pt;}
.ws1c_c00100{word-spacing:3.840000pt;}
.ws15_c00100{word-spacing:4.096000pt;}
.ws1_c00100{word-spacing:4.416000pt;}
.ws25_c00100{word-spacing:6.400000pt;}
.ws22_c00100{word-spacing:6.976000pt;}
.ws17_c00100{word-spacing:8.320000pt;}
.ws1d_c00100{word-spacing:8.512000pt;}
.ws1b_c00100{word-spacing:8.576000pt;}
.ws2_c00100{word-spacing:8.640000pt;}
.ws2b_c00100{word-spacing:10.816000pt;}
.ws1f_c00100{word-spacing:11.136000pt;}
.wsb_c00100{word-spacing:12.160000pt;}
.ws1a_c00100{word-spacing:13.376000pt;}
.ws19_c00100{word-spacing:13.440000pt;}
.ws20_c00100{word-spacing:13.696000pt;}
.ws21_c00100{word-spacing:14.080000pt;}
.ws30_c00100{word-spacing:14.336000pt;}
.ws2a_c00100{word-spacing:15.296000pt;}
.ws5_c00100{word-spacing:15.424000pt;}
.ws29_c00100{word-spacing:15.680000pt;}
.ws4_c00100{word-spacing:15.744000pt;}
.ws1e_c00100{word-spacing:15.936000pt;}
.ws3_c00100{word-spacing:16.000000pt;}
.ws2c_c00100{word-spacing:16.256000pt;}
.ws16_c00100{word-spacing:16.640000pt;}
.ws27_c00100{word-spacing:16.896000pt;}
.ws28_c00100{word-spacing:16.960000pt;}
.ws6_c00100{word-spacing:17.600000pt;}
.ws31_c00100{word-spacing:17.856000pt;}
.wsa_c00100{word-spacing:20.160000pt;}
.ws2e_c00100{word-spacing:21.376000pt;}
.wsf_c00100{word-spacing:25.280000pt;}
.ws12_c00100{word-spacing:32.000000pt;}
._1_c00100{margin-left:-0.896000pt;}
._0_c00100{width:1.054080pt;}
._3_c00100{width:3.776000pt;}
._5_c00100{width:14.144000pt;}
._2_c00100{width:23.616000pt;}
._4_c00100{width:54.208000pt;}
.fs1_c00100{font-size:58.560000pt;}
.fs0_c00100{font-size:64.000000pt;}
.y0_c00100{bottom:0.000000pt;}
.y1_c00100{bottom:54.887600pt;}
.y1e_c00100{bottom:102.599467pt;}
.y1d_c00100{bottom:130.199467pt;}
.y1c_c00100{bottom:157.799467pt;}
.y1b_c00100{bottom:185.399467pt;}
.y1a_c00100{bottom:212.999467pt;}
.y19_c00100{bottom:240.599467pt;}
.y18_c00100{bottom:268.199467pt;}
.y24_c00100{bottom:295.799467pt;}
.y17_c00100{bottom:323.399467pt;}
.y16_c00100{bottom:350.999467pt;}
.y15_c00100{bottom:378.599467pt;}
.y14_c00100{bottom:406.199467pt;}
.y13_c00100{bottom:433.799467pt;}
.y12_c00100{bottom:461.399467pt;}
.y11_c00100{bottom:488.999467pt;}
.y10_c00100{bottom:516.599467pt;}
.yf_c00100{bottom:544.199467pt;}
.y23_c00100{bottom:571.799467pt;}
.ye_c00100{bottom:599.399467pt;}
.y22_c00100{bottom:626.999467pt;}
.yd_c00100{bottom:654.599467pt;}
.yc_c00100{bottom:682.199467pt;}
.yb_c00100{bottom:709.719467pt;}
.y21_c00100{bottom:737.319467pt;}
.ya_c00100{bottom:764.919467pt;}
.y9_c00100{bottom:792.519467pt;}
.y8_c00100{bottom:820.119467pt;}
.y20_c00100{bottom:847.719467pt;}
.y7_c00100{bottom:875.319467pt;}
.y6_c00100{bottom:902.919467pt;}
.y5_c00100{bottom:930.519467pt;}
.y4_c00100{bottom:958.119467pt;}
.y3_c00100{bottom:985.719467pt;}
.y1f_c00100{bottom:1013.319467pt;}
.y2_c00100{bottom:1061.399467pt;}
.h2_c00100{height:44.800000pt;}
.h3_c00100{height:48.294844pt;}
.h4_c00100{height:68.288000pt;}
.h0_c00100{height:1122.520000pt;}
.h1_c00100{height:1122.666667pt;}
.w2_c00100{width:0.000000pt;}
.w3_c00100{width:0.058667pt;}
.w0_c00100{width:793.701333pt;}
.w1_c00100{width:794.000000pt;}
.x1_c00100{left:-745.700800pt;}
.x2_c00100{left:-680.260800pt;}
.x3_c00100{left:-661.300800pt;}
.x4_c00100{left:-651.860800pt;}
.x0_c00100{left:0.000000pt;}
.x8_c00100{left:113.440000pt;}
.x9_c00100{left:132.400000pt;}
.x7_c00100{left:141.840000pt;}
.xa_c00100{left:151.280000pt;}
.x6_c00100{left:620.080000pt;}
.x5_c00100{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00101;src:url('chunks/assets/font_b14fb9c6b27339b46483fd0b.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00101;src:url('chunks/assets/font_57c96af190d06f262e9311da.woff2')format("woff");}.ff3_c00101{font-family:ff3_c00101;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00101;src:url('chunks/assets/font_91616d2037f2d2255d1c063a.woff2')format("woff");}.ff4_c00101{font-family:ff4_c00101;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls4_c00101{letter-spacing:-0.360000px;}
.ls3_c00101{letter-spacing:-0.288000px;}
.ls5_c00101{letter-spacing:-0.072000px;}
.ls2_c00101{letter-spacing:0.000000px;}
.ls0_c00101{letter-spacing:0.072000px;}
.ls1_c00101{letter-spacing:0.144000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00101{word-spacing:-18.072000px;}
.ws4_c00101{word-spacing:-18.000000px;}
.ws17_c00101{word-spacing:-0.144000px;}
.wsa_c00101{word-spacing:-0.131760px;}
.ws18_c00101{word-spacing:-0.072000px;}
.ws9_c00101{word-spacing:0.000000px;}
.ws21_c00101{word-spacing:0.072000px;}
.ws11_c00101{word-spacing:0.288000px;}
.ws20_c00101{word-spacing:0.648000px;}
.ws1e_c00101{word-spacing:3.096000px;}
.ws1c_c00101{word-spacing:3.168000px;}
.ws1d_c00101{word-spacing:3.240000px;}
.ws1b_c00101{word-spacing:3.528000px;}
.ws13_c00101{word-spacing:3.888000px;}
.wsc_c00101{word-spacing:4.248000px;}
.ws12_c00101{word-spacing:4.320000px;}
.ws15_c00101{word-spacing:5.688000px;}
.ws16_c00101{word-spacing:5.760000px;}
.ws14_c00101{word-spacing:5.976000px;}
.ws5_c00101{word-spacing:6.048000px;}
.ws6_c00101{word-spacing:6.120000px;}
.wse_c00101{word-spacing:6.192000px;}
.ws3_c00101{word-spacing:6.336000px;}
.wsf_c00101{word-spacing:6.408000px;}
.ws10_c00101{word-spacing:6.480000px;}
.ws2_c00101{word-spacing:7.920000px;}
.ws0_c00101{word-spacing:8.136000px;}
.wsb_c00101{word-spacing:8.208000px;}
.wsd_c00101{word-spacing:8.280000px;}
.ws1a_c00101{word-spacing:9.360000px;}
.ws23_c00101{word-spacing:9.576000px;}
.ws8_c00101{word-spacing:9.720000px;}
.ws24_c00101{word-spacing:11.520000px;}
.ws27_c00101{word-spacing:13.896000px;}
.ws19_c00101{word-spacing:13.968000px;}
.ws26_c00101{word-spacing:14.040000px;}
.ws22_c00101{word-spacing:16.560000px;}
.ws25_c00101{word-spacing:25.488000px;}
.ws1f_c00101{word-spacing:34.200000px;}
.ws7_c00101{word-spacing:104.400000px;}
._1_c00101{margin-left:-1.080000px;}
._0_c00101{width:1.185840px;}
._2_c00101{width:3.096000px;}
.fc1_c00101{color:rgb(0,0,0);}
.fc0_c00101{color:rgb(35,31,32);}
.fs1_c00101{font-size:65.880000px;}
.fs0_c00101{font-size:72.000000px;}
.y0_c00101{bottom:0.000000px;}
.y1_c00101{bottom:61.748550px;}
.y1d_c00101{bottom:177.524400px;}
.y1c_c00101{bottom:208.574400px;}
.y1b_c00101{bottom:239.624400px;}
.y1a_c00101{bottom:270.674400px;}
.y19_c00101{bottom:332.774400px;}
.y18_c00101{bottom:363.824400px;}
.y17_c00101{bottom:394.874400px;}
.y16_c00101{bottom:425.924400px;}
.y15_c00101{bottom:456.974400px;}
.y14_c00101{bottom:518.894400px;}
.y13_c00101{bottom:581.174400px;}
.y12_c00101{bottom:612.224400px;}
.y11_c00101{bottom:674.324400px;}
.y10_c00101{bottom:705.374400px;}
.yf_c00101{bottom:736.424400px;}
.ye_c00101{bottom:767.474400px;}
.yd_c00101{bottom:798.434400px;}
.yc_c00101{bottom:829.484400px;}
.yb_c00101{bottom:860.534400px;}
.ya_c00101{bottom:891.584400px;}
.y9_c00101{bottom:953.684400px;}
.y8_c00101{bottom:984.734400px;}
.y7_c00101{bottom:1015.784400px;}
.y6_c00101{bottom:1046.834400px;}
.y5_c00101{bottom:1077.884400px;}
.y4_c00101{bottom:1108.934400px;}
.y3_c00101{bottom:1139.984400px;}
.y2_c00101{bottom:1194.074400px;}
.h2_c00101{height:50.400000px;}
.h3_c00101{height:54.331699px;}
.h4_c00101{height:76.824000px;}
.h0_c00101{height:1262.835000px;}
.h1_c00101{height:1263.000000px;}
.w0_c00101{width:892.914000px;}
.w1_c00101{width:893.250000px;}
.x0_c00101{left:0.000000px;}
.x1_c00101{left:54.000000px;}
.x2_c00101{left:127.620000px;}
.x3_c00101{left:159.570000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls4_c00101{letter-spacing:-0.320000pt;}
.ls3_c00101{letter-spacing:-0.256000pt;}
.ls5_c00101{letter-spacing:-0.064000pt;}
.ls2_c00101{letter-spacing:0.000000pt;}
.ls0_c00101{letter-spacing:0.064000pt;}
.ls1_c00101{letter-spacing:0.128000pt;}
.ws1_c00101{word-spacing:-16.064000pt;}
.ws4_c00101{word-spacing:-16.000000pt;}
.ws17_c00101{word-spacing:-0.128000pt;}
.wsa_c00101{word-spacing:-0.117120pt;}
.ws18_c00101{word-spacing:-0.064000pt;}
.ws9_c00101{word-spacing:0.000000pt;}
.ws21_c00101{word-spacing:0.064000pt;}
.ws11_c00101{word-spacing:0.256000pt;}
.ws20_c00101{word-spacing:0.576000pt;}
.ws1e_c00101{word-spacing:2.752000pt;}
.ws1c_c00101{word-spacing:2.816000pt;}
.ws1d_c00101{word-spacing:2.880000pt;}
.ws1b_c00101{word-spacing:3.136000pt;}
.ws13_c00101{word-spacing:3.456000pt;}
.wsc_c00101{word-spacing:3.776000pt;}
.ws12_c00101{word-spacing:3.840000pt;}
.ws15_c00101{word-spacing:5.056000pt;}
.ws16_c00101{word-spacing:5.120000pt;}
.ws14_c00101{word-spacing:5.312000pt;}
.ws5_c00101{word-spacing:5.376000pt;}
.ws6_c00101{word-spacing:5.440000pt;}
.wse_c00101{word-spacing:5.504000pt;}
.ws3_c00101{word-spacing:5.632000pt;}
.wsf_c00101{word-spacing:5.696000pt;}
.ws10_c00101{word-spacing:5.760000pt;}
.ws2_c00101{word-spacing:7.040000pt;}
.ws0_c00101{word-spacing:7.232000pt;}
.wsb_c00101{word-spacing:7.296000pt;}
.wsd_c00101{word-spacing:7.360000pt;}
.ws1a_c00101{word-spacing:8.320000pt;}
.ws23_c00101{word-spacing:8.512000pt;}
.ws8_c00101{word-spacing:8.640000pt;}
.ws24_c00101{word-spacing:10.240000pt;}
.ws27_c00101{word-spacing:12.352000pt;}
.ws19_c00101{word-spacing:12.416000pt;}
.ws26_c00101{word-spacing:12.480000pt;}
.ws22_c00101{word-spacing:14.720000pt;}
.ws25_c00101{word-spacing:22.656000pt;}
.ws1f_c00101{word-spacing:30.400000pt;}
.ws7_c00101{word-spacing:92.800000pt;}
._1_c00101{margin-left:-0.960000pt;}
._0_c00101{width:1.054080pt;}
._2_c00101{width:2.752000pt;}
.fs1_c00101{font-size:58.560000pt;}
.fs0_c00101{font-size:64.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y1_c00101{bottom:54.887600pt;}
.y1d_c00101{bottom:157.799467pt;}
.y1c_c00101{bottom:185.399467pt;}
.y1b_c00101{bottom:212.999467pt;}
.y1a_c00101{bottom:240.599467pt;}
.y19_c00101{bottom:295.799467pt;}
.y18_c00101{bottom:323.399467pt;}
.y17_c00101{bottom:350.999467pt;}
.y16_c00101{bottom:378.599467pt;}
.y15_c00101{bottom:406.199467pt;}
.y14_c00101{bottom:461.239467pt;}
.y13_c00101{bottom:516.599467pt;}
.y12_c00101{bottom:544.199467pt;}
.y11_c00101{bottom:599.399467pt;}
.y10_c00101{bottom:626.999467pt;}
.yf_c00101{bottom:654.599467pt;}
.ye_c00101{bottom:682.199467pt;}
.yd_c00101{bottom:709.719467pt;}
.yc_c00101{bottom:737.319467pt;}
.yb_c00101{bottom:764.919467pt;}
.ya_c00101{bottom:792.519467pt;}
.y9_c00101{bottom:847.719467pt;}
.y8_c00101{bottom:875.319467pt;}
.y7_c00101{bottom:902.919467pt;}
.y6_c00101{bottom:930.519467pt;}
.y5_c00101{bottom:958.119467pt;}
.y4_c00101{bottom:985.719467pt;}
.y3_c00101{bottom:1013.319467pt;}
.y2_c00101{bottom:1061.399467pt;}
.h2_c00101{height:44.800000pt;}
.h3_c00101{height:48.294844pt;}
.h4_c00101{height:68.288000pt;}
.h0_c00101{height:1122.520000pt;}
.h1_c00101{height:1122.666667pt;}
.w0_c00101{width:793.701333pt;}
.w1_c00101{width:794.000000pt;}
.x0_c00101{left:0.000000pt;}
.x1_c00101{left:48.000000pt;}
.x2_c00101{left:113.440000pt;}
.x3_c00101{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00102;src:url('chunks/assets/font_b104e34751f88084a1925231.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00102;src:url('chunks/assets/font_b84ab4f650fabedf71f0aabd.woff2')format("woff");}.ff3_c00102{font-family:ff3_c00102;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00102;src:url('chunks/assets/font_312180713c89d6db53eeda9a.woff2')format("woff");}.ff4_c00102{font-family:ff4_c00102;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00102;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00102{font-family:ff5_c00102;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00102;src:url('chunks/assets/font_6a235a8e6d60998b21195168.woff2')format("woff");}.ff6_c00102{font-family:ff6_c00102;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00102;src:url('chunks/assets/font_67876cadf88871ba52a1a1f9.woff2')format("woff");}.ff7_c00102{font-family:ff7_c00102;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00102;src:url('chunks/assets/font_c56a31631420cead2b51a0ae.woff2')format("woff");}.ff8_c00102{font-family:ff8_c00102;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00102;src:url('chunks/assets/font_78a2f740d46c7d7feae68d5a.woff2')format("woff");}.ff9_c00102{font-family:ff9_c00102;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls8_c00102{letter-spacing:-0.360000px;}
.ls7_c00102{letter-spacing:-0.288000px;}
.ls9_c00102{letter-spacing:-0.072000px;}
.ls6_c00102{letter-spacing:0.000000px;}
.ls0_c00102{letter-spacing:0.072000px;}
.ls1_c00102{letter-spacing:0.144000px;}
.ls5_c00102{letter-spacing:19.800000px;}
.ls2_c00102{letter-spacing:21.067200px;}
.ls4_c00102{letter-spacing:36.432000px;}
.ls3_c00102{letter-spacing:50.760000px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00102{word-spacing:-18.072000px;}
.ws4_c00102{word-spacing:-18.000000px;}
.ws1a_c00102{word-spacing:-0.144000px;}
.wse_c00102{word-spacing:-0.131760px;}
.ws1b_c00102{word-spacing:-0.072000px;}
.wsd_c00102{word-spacing:0.000000px;}
.ws24_c00102{word-spacing:0.072000px;}
.ws15_c00102{word-spacing:0.288000px;}
.ws23_c00102{word-spacing:0.648000px;}
.ws3b_c00102{word-spacing:0.720000px;}
.ws30_c00102{word-spacing:1.008000px;}
.ws2f_c00102{word-spacing:1.080000px;}
.ws3a_c00102{word-spacing:1.800000px;}
.wsb_c00102{word-spacing:2.088000px;}
.ws21_c00102{word-spacing:3.096000px;}
.ws1f_c00102{word-spacing:3.168000px;}
.ws20_c00102{word-spacing:3.240000px;}
.ws1e_c00102{word-spacing:3.528000px;}
.ws36_c00102{word-spacing:3.744000px;}
.ws35_c00102{word-spacing:3.816000px;}
.ws9_c00102{word-spacing:3.888000px;}
.wsa_c00102{word-spacing:4.032000px;}
.ws10_c00102{word-spacing:4.248000px;}
.ws16_c00102{word-spacing:4.320000px;}
.ws32_c00102{word-spacing:4.608000px;}
.ws33_c00102{word-spacing:5.328000px;}
.ws34_c00102{word-spacing:5.400000px;}
.ws18_c00102{word-spacing:5.688000px;}
.ws19_c00102{word-spacing:5.760000px;}
.ws17_c00102{word-spacing:5.976000px;}
.ws5_c00102{word-spacing:6.048000px;}
.ws6_c00102{word-spacing:6.120000px;}
.ws12_c00102{word-spacing:6.192000px;}
.ws3_c00102{word-spacing:6.336000px;}
.ws13_c00102{word-spacing:6.408000px;}
.ws14_c00102{word-spacing:6.480000px;}
.ws2_c00102{word-spacing:7.920000px;}
.ws0_c00102{word-spacing:8.136000px;}
.wsf_c00102{word-spacing:8.208000px;}
.ws11_c00102{word-spacing:8.280000px;}
.ws40_c00102{word-spacing:8.496000px;}
.ws41_c00102{word-spacing:8.640000px;}
.ws1d_c00102{word-spacing:9.360000px;}
.ws26_c00102{word-spacing:9.576000px;}
.ws8_c00102{word-spacing:9.720000px;}
.ws27_c00102{word-spacing:11.520000px;}
.ws3f_c00102{word-spacing:12.960000px;}
.ws3d_c00102{word-spacing:13.248000px;}
.wsc_c00102{word-spacing:13.320000px;}
.ws3e_c00102{word-spacing:13.608000px;}
.ws2a_c00102{word-spacing:13.896000px;}
.ws1c_c00102{word-spacing:13.968000px;}
.ws29_c00102{word-spacing:14.040000px;}
.ws25_c00102{word-spacing:16.560000px;}
.ws2c_c00102{word-spacing:17.568000px;}
.ws2b_c00102{word-spacing:17.640000px;}
.ws39_c00102{word-spacing:17.928000px;}
.ws37_c00102{word-spacing:18.216000px;}
.ws38_c00102{word-spacing:18.288000px;}
.ws3c_c00102{word-spacing:18.720000px;}
.ws2d_c00102{word-spacing:22.608000px;}
.ws2e_c00102{word-spacing:22.680000px;}
.ws28_c00102{word-spacing:25.488000px;}
.ws43_c00102{word-spacing:27.648000px;}
.ws42_c00102{word-spacing:29.448000px;}
.ws31_c00102{word-spacing:32.976000px;}
.ws22_c00102{word-spacing:34.200000px;}
.ws7_c00102{word-spacing:104.400000px;}
._1_c00102{margin-left:-1.080000px;}
._0_c00102{width:1.185840px;}
._2_c00102{width:3.096000px;}
._5_c00102{width:23.104800px;}
._4_c00102{width:33.048000px;}
._3_c00102{width:34.776000px;}
.fc2_c00102{color:transparent;}
.fc1_c00102{color:rgb(0,0,0);}
.fc0_c00102{color:rgb(35,31,32);}
.fs1_c00102{font-size:65.880000px;}
.fs0_c00102{font-size:72.000000px;}
.y0_c00102{bottom:0.000000px;}
.y1_c00102{bottom:61.748550px;}
.y25_c00102{bottom:115.424400px;}
.y24_c00102{bottom:146.474400px;}
.y1d_c00102{bottom:177.524400px;}
.y1c_c00102{bottom:208.574400px;}
.y1b_c00102{bottom:239.624400px;}
.y1a_c00102{bottom:270.674400px;}
.y23_c00102{bottom:301.724400px;}
.y19_c00102{bottom:332.774400px;}
.y18_c00102{bottom:363.824400px;}
.y17_c00102{bottom:394.874400px;}
.y16_c00102{bottom:425.924400px;}
.y15_c00102{bottom:456.974400px;}
.y22_c00102{bottom:488.024400px;}
.y14_c00102{bottom:518.894400px;}
.y21_c00102{bottom:519.074400px;}
.y20_c00102{bottom:550.124400px;}
.y13_c00102{bottom:581.174400px;}
.y12_c00102{bottom:612.224400px;}
.y1f_c00102{bottom:643.274400px;}
.y11_c00102{bottom:674.324400px;}
.y10_c00102{bottom:705.374400px;}
.yf_c00102{bottom:736.424400px;}
.ye_c00102{bottom:767.474400px;}
.yd_c00102{bottom:798.434400px;}
.yc_c00102{bottom:829.484400px;}
.yb_c00102{bottom:860.534400px;}
.ya_c00102{bottom:891.584400px;}
.y1e_c00102{bottom:922.634400px;}
.y9_c00102{bottom:953.684400px;}
.y8_c00102{bottom:984.734400px;}
.y7_c00102{bottom:1015.784400px;}
.y6_c00102{bottom:1046.834400px;}
.y5_c00102{bottom:1077.884400px;}
.y4_c00102{bottom:1108.934400px;}
.y3_c00102{bottom:1139.984400px;}
.y2_c00102{bottom:1194.074400px;}
.h2_c00102{height:50.400000px;}
.h3_c00102{height:54.331699px;}
.h4_c00102{height:76.824000px;}
.h5_c00102{height:78.048000px;}
.h0_c00102{height:1262.835000px;}
.h1_c00102{height:1263.000000px;}
.w2_c00102{width:0.000000px;}
.w3_c00102{width:0.066000px;}
.w0_c00102{width:892.914000px;}
.w1_c00102{width:893.250000px;}
.x1_c00102{left:-838.913400px;}
.x2_c00102{left:-765.293400px;}
.x3_c00102{left:-733.343400px;}
.x0_c00102{left:0.000000px;}
.x7_c00102{left:127.620000px;}
.x6_c00102{left:159.570000px;}
.x5_c00102{left:697.590000px;}
.x4_c00102{left:804.366150px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls8_c00102{letter-spacing:-0.320000pt;}
.ls7_c00102{letter-spacing:-0.256000pt;}
.ls9_c00102{letter-spacing:-0.064000pt;}
.ls6_c00102{letter-spacing:0.000000pt;}
.ls0_c00102{letter-spacing:0.064000pt;}
.ls1_c00102{letter-spacing:0.128000pt;}
.ls5_c00102{letter-spacing:17.600000pt;}
.ls2_c00102{letter-spacing:18.726400pt;}
.ls4_c00102{letter-spacing:32.384000pt;}
.ls3_c00102{letter-spacing:45.120000pt;}
.ws1_c00102{word-spacing:-16.064000pt;}
.ws4_c00102{word-spacing:-16.000000pt;}
.ws1a_c00102{word-spacing:-0.128000pt;}
.wse_c00102{word-spacing:-0.117120pt;}
.ws1b_c00102{word-spacing:-0.064000pt;}
.wsd_c00102{word-spacing:0.000000pt;}
.ws24_c00102{word-spacing:0.064000pt;}
.ws15_c00102{word-spacing:0.256000pt;}
.ws23_c00102{word-spacing:0.576000pt;}
.ws3b_c00102{word-spacing:0.640000pt;}
.ws30_c00102{word-spacing:0.896000pt;}
.ws2f_c00102{word-spacing:0.960000pt;}
.ws3a_c00102{word-spacing:1.600000pt;}
.wsb_c00102{word-spacing:1.856000pt;}
.ws21_c00102{word-spacing:2.752000pt;}
.ws1f_c00102{word-spacing:2.816000pt;}
.ws20_c00102{word-spacing:2.880000pt;}
.ws1e_c00102{word-spacing:3.136000pt;}
.ws36_c00102{word-spacing:3.328000pt;}
.ws35_c00102{word-spacing:3.392000pt;}
.ws9_c00102{word-spacing:3.456000pt;}
.wsa_c00102{word-spacing:3.584000pt;}
.ws10_c00102{word-spacing:3.776000pt;}
.ws16_c00102{word-spacing:3.840000pt;}
.ws32_c00102{word-spacing:4.096000pt;}
.ws33_c00102{word-spacing:4.736000pt;}
.ws34_c00102{word-spacing:4.800000pt;}
.ws18_c00102{word-spacing:5.056000pt;}
.ws19_c00102{word-spacing:5.120000pt;}
.ws17_c00102{word-spacing:5.312000pt;}
.ws5_c00102{word-spacing:5.376000pt;}
.ws6_c00102{word-spacing:5.440000pt;}
.ws12_c00102{word-spacing:5.504000pt;}
.ws3_c00102{word-spacing:5.632000pt;}
.ws13_c00102{word-spacing:5.696000pt;}
.ws14_c00102{word-spacing:5.760000pt;}
.ws2_c00102{word-spacing:7.040000pt;}
.ws0_c00102{word-spacing:7.232000pt;}
.wsf_c00102{word-spacing:7.296000pt;}
.ws11_c00102{word-spacing:7.360000pt;}
.ws40_c00102{word-spacing:7.552000pt;}
.ws41_c00102{word-spacing:7.680000pt;}
.ws1d_c00102{word-spacing:8.320000pt;}
.ws26_c00102{word-spacing:8.512000pt;}
.ws8_c00102{word-spacing:8.640000pt;}
.ws27_c00102{word-spacing:10.240000pt;}
.ws3f_c00102{word-spacing:11.520000pt;}
.ws3d_c00102{word-spacing:11.776000pt;}
.wsc_c00102{word-spacing:11.840000pt;}
.ws3e_c00102{word-spacing:12.096000pt;}
.ws2a_c00102{word-spacing:12.352000pt;}
.ws1c_c00102{word-spacing:12.416000pt;}
.ws29_c00102{word-spacing:12.480000pt;}
.ws25_c00102{word-spacing:14.720000pt;}
.ws2c_c00102{word-spacing:15.616000pt;}
.ws2b_c00102{word-spacing:15.680000pt;}
.ws39_c00102{word-spacing:15.936000pt;}
.ws37_c00102{word-spacing:16.192000pt;}
.ws38_c00102{word-spacing:16.256000pt;}
.ws3c_c00102{word-spacing:16.640000pt;}
.ws2d_c00102{word-spacing:20.096000pt;}
.ws2e_c00102{word-spacing:20.160000pt;}
.ws28_c00102{word-spacing:22.656000pt;}
.ws43_c00102{word-spacing:24.576000pt;}
.ws42_c00102{word-spacing:26.176000pt;}
.ws31_c00102{word-spacing:29.312000pt;}
.ws22_c00102{word-spacing:30.400000pt;}
.ws7_c00102{word-spacing:92.800000pt;}
._1_c00102{margin-left:-0.960000pt;}
._0_c00102{width:1.054080pt;}
._2_c00102{width:2.752000pt;}
._5_c00102{width:20.537600pt;}
._4_c00102{width:29.376000pt;}
._3_c00102{width:30.912000pt;}
.fs1_c00102{font-size:58.560000pt;}
.fs0_c00102{font-size:64.000000pt;}
.y0_c00102{bottom:0.000000pt;}
.y1_c00102{bottom:54.887600pt;}
.y25_c00102{bottom:102.599467pt;}
.y24_c00102{bottom:130.199467pt;}
.y1d_c00102{bottom:157.799467pt;}
.y1c_c00102{bottom:185.399467pt;}
.y1b_c00102{bottom:212.999467pt;}
.y1a_c00102{bottom:240.599467pt;}
.y23_c00102{bottom:268.199467pt;}
.y19_c00102{bottom:295.799467pt;}
.y18_c00102{bottom:323.399467pt;}
.y17_c00102{bottom:350.999467pt;}
.y16_c00102{bottom:378.599467pt;}
.y15_c00102{bottom:406.199467pt;}
.y22_c00102{bottom:433.799467pt;}
.y14_c00102{bottom:461.239467pt;}
.y21_c00102{bottom:461.399467pt;}
.y20_c00102{bottom:488.999467pt;}
.y13_c00102{bottom:516.599467pt;}
.y12_c00102{bottom:544.199467pt;}
.y1f_c00102{bottom:571.799467pt;}
.y11_c00102{bottom:599.399467pt;}
.y10_c00102{bottom:626.999467pt;}
.yf_c00102{bottom:654.599467pt;}
.ye_c00102{bottom:682.199467pt;}
.yd_c00102{bottom:709.719467pt;}
.yc_c00102{bottom:737.319467pt;}
.yb_c00102{bottom:764.919467pt;}
.ya_c00102{bottom:792.519467pt;}
.y1e_c00102{bottom:820.119467pt;}
.y9_c00102{bottom:847.719467pt;}
.y8_c00102{bottom:875.319467pt;}
.y7_c00102{bottom:902.919467pt;}
.y6_c00102{bottom:930.519467pt;}
.y5_c00102{bottom:958.119467pt;}
.y4_c00102{bottom:985.719467pt;}
.y3_c00102{bottom:1013.319467pt;}
.y2_c00102{bottom:1061.399467pt;}
.h2_c00102{height:44.800000pt;}
.h3_c00102{height:48.294844pt;}
.h4_c00102{height:68.288000pt;}
.h5_c00102{height:69.376000pt;}
.h0_c00102{height:1122.520000pt;}
.h1_c00102{height:1122.666667pt;}
.w2_c00102{width:0.000000pt;}
.w3_c00102{width:0.058667pt;}
.w0_c00102{width:793.701333pt;}
.w1_c00102{width:794.000000pt;}
.x1_c00102{left:-745.700800pt;}
.x2_c00102{left:-680.260800pt;}
.x3_c00102{left:-651.860800pt;}
.x0_c00102{left:0.000000pt;}
.x7_c00102{left:113.440000pt;}
.x6_c00102{left:141.840000pt;}
.x5_c00102{left:620.080000pt;}
.x4_c00102{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00103;src:url('chunks/assets/font_4e3406a611aeb8f58002532f.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00103;src:url('chunks/assets/font_2d837effd73ed060699b68cc.woff2')format("woff");}.ff3_c00103{font-family:ff3_c00103;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00103;src:url('chunks/assets/font_c63b39342f3edafeedae13da.woff2')format("woff");}.ff4_c00103{font-family:ff4_c00103;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls6_c00103{letter-spacing:-0.216000px;}
.ls5_c00103{letter-spacing:-0.072000px;}
.ls4_c00103{letter-spacing:0.000000px;}
.ls0_c00103{letter-spacing:0.072000px;}
.ls1_c00103{letter-spacing:0.144000px;}
.ls3_c00103{letter-spacing:19.440000px;}
.ls2_c00103{letter-spacing:19.872000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00103{word-spacing:-18.144000px;}
.ws1_c00103{word-spacing:-18.000000px;}
.ws5_c00103{word-spacing:-17.784000px;}
.ws2_c00103{word-spacing:-0.648000px;}
.ws23_c00103{word-spacing:-0.144000px;}
.ws8_c00103{word-spacing:-0.131760px;}
.wsf_c00103{word-spacing:-0.072000px;}
.ws7_c00103{word-spacing:0.000000px;}
.wsb_c00103{word-spacing:0.072000px;}
.ws18_c00103{word-spacing:0.216000px;}
.ws19_c00103{word-spacing:1.728000px;}
.ws4_c00103{word-spacing:1.742400px;}
.ws1a_c00103{word-spacing:1.800000px;}
.ws3_c00103{word-spacing:1.944000px;}
.ws29_c00103{word-spacing:2.376000px;}
.ws28_c00103{word-spacing:2.448000px;}
.ws2a_c00103{word-spacing:2.520000px;}
.ws15_c00103{word-spacing:3.168000px;}
.ws14_c00103{word-spacing:3.240000px;}
.ws1c_c00103{word-spacing:3.888000px;}
.ws6_c00103{word-spacing:3.960000px;}
.ws1f_c00103{word-spacing:4.248000px;}
.ws26_c00103{word-spacing:6.408000px;}
.ws25_c00103{word-spacing:6.840000px;}
.ws17_c00103{word-spacing:7.128000px;}
.wse_c00103{word-spacing:7.848000px;}
.ws10_c00103{word-spacing:7.920000px;}
.ws1b_c00103{word-spacing:8.208000px;}
.ws24_c00103{word-spacing:8.640000px;}
.ws16_c00103{word-spacing:11.448000px;}
.ws9_c00103{word-spacing:11.880000px;}
.ws13_c00103{word-spacing:12.528000px;}
.ws12_c00103{word-spacing:12.600000px;}
.ws22_c00103{word-spacing:14.040000px;}
.wsd_c00103{word-spacing:16.776000px;}
.wsc_c00103{word-spacing:16.920000px;}
.ws11_c00103{word-spacing:19.008000px;}
.ws27_c00103{word-spacing:19.080000px;}
.ws1e_c00103{word-spacing:19.368000px;}
.ws1d_c00103{word-spacing:19.656000px;}
.ws20_c00103{word-spacing:28.368000px;}
.ws21_c00103{word-spacing:28.728000px;}
.wsa_c00103{word-spacing:35.568000px;}
._1_c00103{margin-left:-1.375200px;}
._0_c00103{width:1.185840px;}
._2_c00103{width:7.358400px;}
._3_c00103{width:28.872000px;}
._5_c00103{width:36.288000px;}
._4_c00103{width:37.296000px;}
.fc1_c00103{color:rgb(0,0,0);}
.fc0_c00103{color:rgb(35,31,32);}
.fs1_c00103{font-size:65.880000px;}
.fs0_c00103{font-size:72.000000px;}
.y0_c00103{bottom:0.000000px;}
.y1_c00103{bottom:61.748550px;}
.y1f_c00103{bottom:115.424400px;}
.y1e_c00103{bottom:146.474400px;}
.y1d_c00103{bottom:177.524400px;}
.y1c_c00103{bottom:208.574400px;}
.y1b_c00103{bottom:239.624400px;}
.y1a_c00103{bottom:301.724400px;}
.y19_c00103{bottom:332.774400px;}
.y18_c00103{bottom:363.824400px;}
.y17_c00103{bottom:394.874400px;}
.y16_c00103{bottom:456.974400px;}
.y15_c00103{bottom:488.024400px;}
.y14_c00103{bottom:519.074400px;}
.y13_c00103{bottom:550.124400px;}
.y12_c00103{bottom:581.174400px;}
.y11_c00103{bottom:612.224400px;}
.y10_c00103{bottom:674.324400px;}
.yf_c00103{bottom:705.374400px;}
.ye_c00103{bottom:736.424400px;}
.yd_c00103{bottom:767.474400px;}
.yc_c00103{bottom:829.484400px;}
.yb_c00103{bottom:860.534400px;}
.ya_c00103{bottom:891.584400px;}
.y9_c00103{bottom:922.634400px;}
.y8_c00103{bottom:953.684400px;}
.y7_c00103{bottom:984.734400px;}
.y6_c00103{bottom:1046.834400px;}
.y5_c00103{bottom:1077.884400px;}
.y4_c00103{bottom:1108.934400px;}
.y3_c00103{bottom:1139.984400px;}
.y2_c00103{bottom:1194.074400px;}
.h2_c00103{height:50.400000px;}
.h3_c00103{height:54.331699px;}
.h4_c00103{height:76.824000px;}
.h5_c00103{height:78.048000px;}
.h0_c00103{height:1262.835000px;}
.h1_c00103{height:1263.000000px;}
.w0_c00103{width:892.914000px;}
.w1_c00103{width:893.250000px;}
.x0_c00103{left:0.000000px;}
.x1_c00103{left:54.000000px;}
.x2_c00103{left:127.620000px;}
.x3_c00103{left:159.570000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls6_c00103{letter-spacing:-0.192000pt;}
.ls5_c00103{letter-spacing:-0.064000pt;}
.ls4_c00103{letter-spacing:0.000000pt;}
.ls0_c00103{letter-spacing:0.064000pt;}
.ls1_c00103{letter-spacing:0.128000pt;}
.ls3_c00103{letter-spacing:17.280000pt;}
.ls2_c00103{letter-spacing:17.664000pt;}
.ws0_c00103{word-spacing:-16.128000pt;}
.ws1_c00103{word-spacing:-16.000000pt;}
.ws5_c00103{word-spacing:-15.808000pt;}
.ws2_c00103{word-spacing:-0.576000pt;}
.ws23_c00103{word-spacing:-0.128000pt;}
.ws8_c00103{word-spacing:-0.117120pt;}
.wsf_c00103{word-spacing:-0.064000pt;}
.ws7_c00103{word-spacing:0.000000pt;}
.wsb_c00103{word-spacing:0.064000pt;}
.ws18_c00103{word-spacing:0.192000pt;}
.ws19_c00103{word-spacing:1.536000pt;}
.ws4_c00103{word-spacing:1.548800pt;}
.ws1a_c00103{word-spacing:1.600000pt;}
.ws3_c00103{word-spacing:1.728000pt;}
.ws29_c00103{word-spacing:2.112000pt;}
.ws28_c00103{word-spacing:2.176000pt;}
.ws2a_c00103{word-spacing:2.240000pt;}
.ws15_c00103{word-spacing:2.816000pt;}
.ws14_c00103{word-spacing:2.880000pt;}
.ws1c_c00103{word-spacing:3.456000pt;}
.ws6_c00103{word-spacing:3.520000pt;}
.ws1f_c00103{word-spacing:3.776000pt;}
.ws26_c00103{word-spacing:5.696000pt;}
.ws25_c00103{word-spacing:6.080000pt;}
.ws17_c00103{word-spacing:6.336000pt;}
.wse_c00103{word-spacing:6.976000pt;}
.ws10_c00103{word-spacing:7.040000pt;}
.ws1b_c00103{word-spacing:7.296000pt;}
.ws24_c00103{word-spacing:7.680000pt;}
.ws16_c00103{word-spacing:10.176000pt;}
.ws9_c00103{word-spacing:10.560000pt;}
.ws13_c00103{word-spacing:11.136000pt;}
.ws12_c00103{word-spacing:11.200000pt;}
.ws22_c00103{word-spacing:12.480000pt;}
.wsd_c00103{word-spacing:14.912000pt;}
.wsc_c00103{word-spacing:15.040000pt;}
.ws11_c00103{word-spacing:16.896000pt;}
.ws27_c00103{word-spacing:16.960000pt;}
.ws1e_c00103{word-spacing:17.216000pt;}
.ws1d_c00103{word-spacing:17.472000pt;}
.ws20_c00103{word-spacing:25.216000pt;}
.ws21_c00103{word-spacing:25.536000pt;}
.wsa_c00103{word-spacing:31.616000pt;}
._1_c00103{margin-left:-1.222400pt;}
._0_c00103{width:1.054080pt;}
._2_c00103{width:6.540800pt;}
._3_c00103{width:25.664000pt;}
._5_c00103{width:32.256000pt;}
._4_c00103{width:33.152000pt;}
.fs1_c00103{font-size:58.560000pt;}
.fs0_c00103{font-size:64.000000pt;}
.y0_c00103{bottom:0.000000pt;}
.y1_c00103{bottom:54.887600pt;}
.y1f_c00103{bottom:102.599467pt;}
.y1e_c00103{bottom:130.199467pt;}
.y1d_c00103{bottom:157.799467pt;}
.y1c_c00103{bottom:185.399467pt;}
.y1b_c00103{bottom:212.999467pt;}
.y1a_c00103{bottom:268.199467pt;}
.y19_c00103{bottom:295.799467pt;}
.y18_c00103{bottom:323.399467pt;}
.y17_c00103{bottom:350.999467pt;}
.y16_c00103{bottom:406.199467pt;}
.y15_c00103{bottom:433.799467pt;}
.y14_c00103{bottom:461.399467pt;}
.y13_c00103{bottom:488.999467pt;}
.y12_c00103{bottom:516.599467pt;}
.y11_c00103{bottom:544.199467pt;}
.y10_c00103{bottom:599.399467pt;}
.yf_c00103{bottom:626.999467pt;}
.ye_c00103{bottom:654.599467pt;}
.yd_c00103{bottom:682.199467pt;}
.yc_c00103{bottom:737.319467pt;}
.yb_c00103{bottom:764.919467pt;}
.ya_c00103{bottom:792.519467pt;}
.y9_c00103{bottom:820.119467pt;}
.y8_c00103{bottom:847.719467pt;}
.y7_c00103{bottom:875.319467pt;}
.y6_c00103{bottom:930.519467pt;}
.y5_c00103{bottom:958.119467pt;}
.y4_c00103{bottom:985.719467pt;}
.y3_c00103{bottom:1013.319467pt;}
.y2_c00103{bottom:1061.399467pt;}
.h2_c00103{height:44.800000pt;}
.h3_c00103{height:48.294844pt;}
.h4_c00103{height:68.288000pt;}
.h5_c00103{height:69.376000pt;}
.h0_c00103{height:1122.520000pt;}
.h1_c00103{height:1122.666667pt;}
.w0_c00103{width:793.701333pt;}
.w1_c00103{width:794.000000pt;}
.x0_c00103{left:0.000000pt;}
.x1_c00103{left:48.000000pt;}
.x2_c00103{left:113.440000pt;}
.x3_c00103{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00104;src:url('chunks/assets/font_4261ff5ca01ebde9a635d465.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00104;src:url('chunks/assets/font_8e2b900f28e71900e853be63.woff2')format("woff");}.ff3_c00104{font-family:ff3_c00104;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00104;src:url('chunks/assets/font_996b27bee2c767cf4e0771f5.woff2')format("woff");}.ff4_c00104{font-family:ff4_c00104;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00104;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00104{font-family:ff5_c00104;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00104;src:url('chunks/assets/font_d889044015efb93508a84ceb.woff2')format("woff");}.ff6_c00104{font-family:ff6_c00104;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00104;src:url('chunks/assets/font_35c0a437baf1ec0574ef1f39.woff2')format("woff");}.ff7_c00104{font-family:ff7_c00104;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00104;src:url('chunks/assets/font_d30414a36e8a1d0e22328c39.woff2')format("woff");}.ff8_c00104{font-family:ff8_c00104;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c00104{letter-spacing:-0.360000px;}
.ls8_c00104{letter-spacing:-0.216000px;}
.ls7_c00104{letter-spacing:-0.072000px;}
.ls6_c00104{letter-spacing:0.000000px;}
.ls0_c00104{letter-spacing:0.072000px;}
.ls1_c00104{letter-spacing:0.144000px;}
.ls3_c00104{letter-spacing:19.440000px;}
.ls2_c00104{letter-spacing:19.872000px;}
.ls4_c00104{letter-spacing:30.240000px;}
.ls5_c00104{letter-spacing:34.920000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00104{word-spacing:-18.144000px;}
.ws1_c00104{word-spacing:-18.000000px;}
.ws5_c00104{word-spacing:-17.784000px;}
.ws2_c00104{word-spacing:-0.648000px;}
.ws26_c00104{word-spacing:-0.144000px;}
.wsb_c00104{word-spacing:-0.131760px;}
.ws12_c00104{word-spacing:-0.072000px;}
.wsa_c00104{word-spacing:0.000000px;}
.wse_c00104{word-spacing:0.072000px;}
.ws1b_c00104{word-spacing:0.216000px;}
.ws37_c00104{word-spacing:0.360000px;}
.ws40_c00104{word-spacing:0.720000px;}
.ws2f_c00104{word-spacing:1.008000px;}
.ws1c_c00104{word-spacing:1.728000px;}
.ws4_c00104{word-spacing:1.742400px;}
.ws1d_c00104{word-spacing:1.800000px;}
.ws3_c00104{word-spacing:1.944000px;}
.ws41_c00104{word-spacing:2.160000px;}
.ws2c_c00104{word-spacing:2.376000px;}
.ws2b_c00104{word-spacing:2.448000px;}
.ws2d_c00104{word-spacing:2.520000px;}
.ws18_c00104{word-spacing:3.168000px;}
.ws17_c00104{word-spacing:3.240000px;}
.ws1f_c00104{word-spacing:3.888000px;}
.ws6_c00104{word-spacing:3.960000px;}
.ws22_c00104{word-spacing:4.248000px;}
.ws2e_c00104{word-spacing:4.680000px;}
.ws36_c00104{word-spacing:5.616000px;}
.ws32_c00104{word-spacing:5.688000px;}
.ws31_c00104{word-spacing:5.760000px;}
.ws9_c00104{word-spacing:5.832000px;}
.ws35_c00104{word-spacing:6.120000px;}
.ws8_c00104{word-spacing:6.336000px;}
.ws29_c00104{word-spacing:6.408000px;}
.ws7_c00104{word-spacing:6.480000px;}
.ws28_c00104{word-spacing:6.840000px;}
.ws1a_c00104{word-spacing:7.128000px;}
.ws11_c00104{word-spacing:7.848000px;}
.ws13_c00104{word-spacing:7.920000px;}
.ws1e_c00104{word-spacing:8.208000px;}
.ws27_c00104{word-spacing:8.640000px;}
.ws3c_c00104{word-spacing:9.000000px;}
.ws3f_c00104{word-spacing:9.648000px;}
.ws3e_c00104{word-spacing:9.936000px;}
.ws3b_c00104{word-spacing:11.160000px;}
.ws19_c00104{word-spacing:11.448000px;}
.ws3a_c00104{word-spacing:11.520000px;}
.ws30_c00104{word-spacing:11.808000px;}
.wsc_c00104{word-spacing:11.880000px;}
.ws34_c00104{word-spacing:12.312000px;}
.ws16_c00104{word-spacing:12.528000px;}
.ws15_c00104{word-spacing:12.600000px;}
.ws25_c00104{word-spacing:14.040000px;}
.ws3d_c00104{word-spacing:15.120000px;}
.ws10_c00104{word-spacing:16.776000px;}
.wsf_c00104{word-spacing:16.920000px;}
.ws38_c00104{word-spacing:18.072000px;}
.ws39_c00104{word-spacing:18.648000px;}
.ws14_c00104{word-spacing:19.008000px;}
.ws2a_c00104{word-spacing:19.080000px;}
.ws21_c00104{word-spacing:19.368000px;}
.ws20_c00104{word-spacing:19.656000px;}
.ws33_c00104{word-spacing:24.480000px;}
.ws23_c00104{word-spacing:28.368000px;}
.ws24_c00104{word-spacing:28.728000px;}
.wsd_c00104{word-spacing:35.568000px;}
._1_c00104{margin-left:-1.375200px;}
._0_c00104{width:1.185840px;}
._2_c00104{width:7.358400px;}
._6_c00104{width:25.344000px;}
._3_c00104{width:28.872000px;}
._5_c00104{width:36.288000px;}
._4_c00104{width:37.296000px;}
.fc2_c00104{color:transparent;}
.fc1_c00104{color:rgb(0,0,0);}
.fc0_c00104{color:rgb(35,31,32);}
.fs1_c00104{font-size:65.880000px;}
.fs0_c00104{font-size:72.000000px;}
.y0_c00104{bottom:0.000000px;}
.y1_c00104{bottom:61.748550px;}
.y1f_c00104{bottom:115.424400px;}
.y1e_c00104{bottom:146.474400px;}
.y1d_c00104{bottom:177.524400px;}
.y1c_c00104{bottom:208.574400px;}
.y1b_c00104{bottom:239.624400px;}
.y24_c00104{bottom:270.674400px;}
.y1a_c00104{bottom:301.724400px;}
.y19_c00104{bottom:332.774400px;}
.y18_c00104{bottom:363.824400px;}
.y17_c00104{bottom:394.874400px;}
.y23_c00104{bottom:425.924400px;}
.y16_c00104{bottom:456.974400px;}
.y15_c00104{bottom:488.024400px;}
.y14_c00104{bottom:519.074400px;}
.y13_c00104{bottom:550.124400px;}
.y12_c00104{bottom:581.174400px;}
.y11_c00104{bottom:612.224400px;}
.y22_c00104{bottom:643.274400px;}
.y10_c00104{bottom:674.324400px;}
.yf_c00104{bottom:705.374400px;}
.ye_c00104{bottom:736.424400px;}
.yd_c00104{bottom:767.474400px;}
.y21_c00104{bottom:798.434400px;}
.yc_c00104{bottom:829.484400px;}
.yb_c00104{bottom:860.534400px;}
.ya_c00104{bottom:891.584400px;}
.y9_c00104{bottom:922.634400px;}
.y8_c00104{bottom:953.684400px;}
.y7_c00104{bottom:984.734400px;}
.y20_c00104{bottom:1015.784400px;}
.y6_c00104{bottom:1046.834400px;}
.y5_c00104{bottom:1077.884400px;}
.y4_c00104{bottom:1108.934400px;}
.y3_c00104{bottom:1139.984400px;}
.y2_c00104{bottom:1194.074400px;}
.h2_c00104{height:50.400000px;}
.h3_c00104{height:54.331699px;}
.h4_c00104{height:76.824000px;}
.h5_c00104{height:78.048000px;}
.h0_c00104{height:1262.835000px;}
.h1_c00104{height:1263.000000px;}
.w2_c00104{width:0.000000px;}
.w3_c00104{width:0.066000px;}
.w0_c00104{width:892.914000px;}
.w1_c00104{width:893.250000px;}
.x1_c00104{left:-838.913400px;}
.x2_c00104{left:-765.293400px;}
.x3_c00104{left:-733.343400px;}
.x0_c00104{left:0.000000px;}
.x6_c00104{left:127.620000px;}
.x7_c00104{left:159.570000px;}
.x5_c00104{left:697.590000px;}
.x4_c00104{left:804.366150px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls9_c00104{letter-spacing:-0.320000pt;}
.ls8_c00104{letter-spacing:-0.192000pt;}
.ls7_c00104{letter-spacing:-0.064000pt;}
.ls6_c00104{letter-spacing:0.000000pt;}
.ls0_c00104{letter-spacing:0.064000pt;}
.ls1_c00104{letter-spacing:0.128000pt;}
.ls3_c00104{letter-spacing:17.280000pt;}
.ls2_c00104{letter-spacing:17.664000pt;}
.ls4_c00104{letter-spacing:26.880000pt;}
.ls5_c00104{letter-spacing:31.040000pt;}
.ws0_c00104{word-spacing:-16.128000pt;}
.ws1_c00104{word-spacing:-16.000000pt;}
.ws5_c00104{word-spacing:-15.808000pt;}
.ws2_c00104{word-spacing:-0.576000pt;}
.ws26_c00104{word-spacing:-0.128000pt;}
.wsb_c00104{word-spacing:-0.117120pt;}
.ws12_c00104{word-spacing:-0.064000pt;}
.wsa_c00104{word-spacing:0.000000pt;}
.wse_c00104{word-spacing:0.064000pt;}
.ws1b_c00104{word-spacing:0.192000pt;}
.ws37_c00104{word-spacing:0.320000pt;}
.ws40_c00104{word-spacing:0.640000pt;}
.ws2f_c00104{word-spacing:0.896000pt;}
.ws1c_c00104{word-spacing:1.536000pt;}
.ws4_c00104{word-spacing:1.548800pt;}
.ws1d_c00104{word-spacing:1.600000pt;}
.ws3_c00104{word-spacing:1.728000pt;}
.ws41_c00104{word-spacing:1.920000pt;}
.ws2c_c00104{word-spacing:2.112000pt;}
.ws2b_c00104{word-spacing:2.176000pt;}
.ws2d_c00104{word-spacing:2.240000pt;}
.ws18_c00104{word-spacing:2.816000pt;}
.ws17_c00104{word-spacing:2.880000pt;}
.ws1f_c00104{word-spacing:3.456000pt;}
.ws6_c00104{word-spacing:3.520000pt;}
.ws22_c00104{word-spacing:3.776000pt;}
.ws2e_c00104{word-spacing:4.160000pt;}
.ws36_c00104{word-spacing:4.992000pt;}
.ws32_c00104{word-spacing:5.056000pt;}
.ws31_c00104{word-spacing:5.120000pt;}
.ws9_c00104{word-spacing:5.184000pt;}
.ws35_c00104{word-spacing:5.440000pt;}
.ws8_c00104{word-spacing:5.632000pt;}
.ws29_c00104{word-spacing:5.696000pt;}
.ws7_c00104{word-spacing:5.760000pt;}
.ws28_c00104{word-spacing:6.080000pt;}
.ws1a_c00104{word-spacing:6.336000pt;}
.ws11_c00104{word-spacing:6.976000pt;}
.ws13_c00104{word-spacing:7.040000pt;}
.ws1e_c00104{word-spacing:7.296000pt;}
.ws27_c00104{word-spacing:7.680000pt;}
.ws3c_c00104{word-spacing:8.000000pt;}
.ws3f_c00104{word-spacing:8.576000pt;}
.ws3e_c00104{word-spacing:8.832000pt;}
.ws3b_c00104{word-spacing:9.920000pt;}
.ws19_c00104{word-spacing:10.176000pt;}
.ws3a_c00104{word-spacing:10.240000pt;}
.ws30_c00104{word-spacing:10.496000pt;}
.wsc_c00104{word-spacing:10.560000pt;}
.ws34_c00104{word-spacing:10.944000pt;}
.ws16_c00104{word-spacing:11.136000pt;}
.ws15_c00104{word-spacing:11.200000pt;}
.ws25_c00104{word-spacing:12.480000pt;}
.ws3d_c00104{word-spacing:13.440000pt;}
.ws10_c00104{word-spacing:14.912000pt;}
.wsf_c00104{word-spacing:15.040000pt;}
.ws38_c00104{word-spacing:16.064000pt;}
.ws39_c00104{word-spacing:16.576000pt;}
.ws14_c00104{word-spacing:16.896000pt;}
.ws2a_c00104{word-spacing:16.960000pt;}
.ws21_c00104{word-spacing:17.216000pt;}
.ws20_c00104{word-spacing:17.472000pt;}
.ws33_c00104{word-spacing:21.760000pt;}
.ws23_c00104{word-spacing:25.216000pt;}
.ws24_c00104{word-spacing:25.536000pt;}
.wsd_c00104{word-spacing:31.616000pt;}
._1_c00104{margin-left:-1.222400pt;}
._0_c00104{width:1.054080pt;}
._2_c00104{width:6.540800pt;}
._6_c00104{width:22.528000pt;}
._3_c00104{width:25.664000pt;}
._5_c00104{width:32.256000pt;}
._4_c00104{width:33.152000pt;}
.fs1_c00104{font-size:58.560000pt;}
.fs0_c00104{font-size:64.000000pt;}
.y0_c00104{bottom:0.000000pt;}
.y1_c00104{bottom:54.887600pt;}
.y1f_c00104{bottom:102.599467pt;}
.y1e_c00104{bottom:130.199467pt;}
.y1d_c00104{bottom:157.799467pt;}
.y1c_c00104{bottom:185.399467pt;}
.y1b_c00104{bottom:212.999467pt;}
.y24_c00104{bottom:240.599467pt;}
.y1a_c00104{bottom:268.199467pt;}
.y19_c00104{bottom:295.799467pt;}
.y18_c00104{bottom:323.399467pt;}
.y17_c00104{bottom:350.999467pt;}
.y23_c00104{bottom:378.599467pt;}
.y16_c00104{bottom:406.199467pt;}
.y15_c00104{bottom:433.799467pt;}
.y14_c00104{bottom:461.399467pt;}
.y13_c00104{bottom:488.999467pt;}
.y12_c00104{bottom:516.599467pt;}
.y11_c00104{bottom:544.199467pt;}
.y22_c00104{bottom:571.799467pt;}
.y10_c00104{bottom:599.399467pt;}
.yf_c00104{bottom:626.999467pt;}
.ye_c00104{bottom:654.599467pt;}
.yd_c00104{bottom:682.199467pt;}
.y21_c00104{bottom:709.719467pt;}
.yc_c00104{bottom:737.319467pt;}
.yb_c00104{bottom:764.919467pt;}
.ya_c00104{bottom:792.519467pt;}
.y9_c00104{bottom:820.119467pt;}
.y8_c00104{bottom:847.719467pt;}
.y7_c00104{bottom:875.319467pt;}
.y20_c00104{bottom:902.919467pt;}
.y6_c00104{bottom:930.519467pt;}
.y5_c00104{bottom:958.119467pt;}
.y4_c00104{bottom:985.719467pt;}
.y3_c00104{bottom:1013.319467pt;}
.y2_c00104{bottom:1061.399467pt;}
.h2_c00104{height:44.800000pt;}
.h3_c00104{height:48.294844pt;}
.h4_c00104{height:68.288000pt;}
.h5_c00104{height:69.376000pt;}
.h0_c00104{height:1122.520000pt;}
.h1_c00104{height:1122.666667pt;}
.w2_c00104{width:0.000000pt;}
.w3_c00104{width:0.058667pt;}
.w0_c00104{width:793.701333pt;}
.w1_c00104{width:794.000000pt;}
.x1_c00104{left:-745.700800pt;}
.x2_c00104{left:-680.260800pt;}
.x3_c00104{left:-651.860800pt;}
.x0_c00104{left:0.000000pt;}
.x6_c00104{left:113.440000pt;}
.x7_c00104{left:141.840000pt;}
.x5_c00104{left:620.080000pt;}
.x4_c00104{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00105;src:url('chunks/assets/font_98812fa068b8c58772d6f201.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00105;src:url('chunks/assets/font_4cec03790f75f8a19e9aba3b.woff2')format("woff");}.ff3_c00105{font-family:ff3_c00105;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00105;src:url('chunks/assets/font_613de505f086b61a67431be2.woff2')format("woff");}.ff4_c00105{font-family:ff4_c00105;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00105;src:url('chunks/assets/font_5334f25eedc2bf3604e2a8ee.woff2')format("woff");}.ff5_c00105{font-family:ff5_c00105;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.ls8_c00105{letter-spacing:-0.360000px;}
.ls9_c00105{letter-spacing:-0.288000px;}
.ls6_c00105{letter-spacing:0.000000px;}
.ls0_c00105{letter-spacing:0.072000px;}
.ls7_c00105{letter-spacing:0.144000px;}
.ls4_c00105{letter-spacing:19.584000px;}
.ls1_c00105{letter-spacing:21.960000px;}
.ls2_c00105{letter-spacing:27.720000px;}
.ls5_c00105{letter-spacing:44.690400px;}
.ls3_c00105{letter-spacing:48.240000px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00105{word-spacing:-18.000000px;}
.ws1_c00105{word-spacing:-17.640000px;}
.wsd_c00105{word-spacing:-0.144000px;}
.ws8_c00105{word-spacing:-0.131760px;}
.ws9_c00105{word-spacing:-0.072000px;}
.ws7_c00105{word-spacing:0.000000px;}
.ws1f_c00105{word-spacing:0.360000px;}
.ws25_c00105{word-spacing:1.440000px;}
.ws24_c00105{word-spacing:1.800000px;}
.ws1a_c00105{word-spacing:2.088000px;}
.ws1b_c00105{word-spacing:2.448000px;}
.wsc_c00105{word-spacing:2.520000px;}
.ws1c_c00105{word-spacing:3.888000px;}
.ws5_c00105{word-spacing:3.960000px;}
.ws4_c00105{word-spacing:4.320000px;}
.ws12_c00105{word-spacing:4.608000px;}
.ws23_c00105{word-spacing:4.680000px;}
.ws20_c00105{word-spacing:7.848000px;}
.ws21_c00105{word-spacing:7.920000px;}
.ws1e_c00105{word-spacing:9.648000px;}
.ws1d_c00105{word-spacing:9.720000px;}
.ws15_c00105{word-spacing:10.080000px;}
.ws14_c00105{word-spacing:10.368000px;}
.ws11_c00105{word-spacing:10.440000px;}
.ws10_c00105{word-spacing:10.800000px;}
.wsf_c00105{word-spacing:11.448000px;}
.wse_c00105{word-spacing:13.320000px;}
.wsa_c00105{word-spacing:16.488000px;}
.ws18_c00105{word-spacing:18.144000px;}
.ws3_c00105{word-spacing:18.288000px;}
.wsb_c00105{word-spacing:18.648000px;}
.ws19_c00105{word-spacing:20.880000px;}
.ws6_c00105{word-spacing:21.168000px;}
.ws16_c00105{word-spacing:25.560000px;}
.ws17_c00105{word-spacing:25.920000px;}
.ws26_c00105{word-spacing:26.568000px;}
.ws27_c00105{word-spacing:26.640000px;}
.ws13_c00105{word-spacing:28.080000px;}
.ws22_c00105{word-spacing:30.240000px;}
.ws0_c00105{word-spacing:104.400000px;}
._1_c00105{margin-left:-1.094400px;}
._0_c00105{width:1.185840px;}
.fc1_c00105{color:rgb(0,0,0);}
.fc0_c00105{color:rgb(35,31,32);}
.fs1_c00105{font-size:65.880000px;}
.fs0_c00105{font-size:72.000000px;}
.y0_c00105{bottom:0.000000px;}
.y1_c00105{bottom:61.748550px;}
.y1f_c00105{bottom:115.424400px;}
.y1e_c00105{bottom:146.474400px;}
.y1d_c00105{bottom:177.524400px;}
.y1c_c00105{bottom:208.574400px;}
.y1b_c00105{bottom:270.674400px;}
.y1a_c00105{bottom:301.724400px;}
.y19_c00105{bottom:332.774400px;}
.y18_c00105{bottom:363.824400px;}
.y17_c00105{bottom:394.874400px;}
.y16_c00105{bottom:425.924400px;}
.y15_c00105{bottom:456.974400px;}
.y14_c00105{bottom:519.074400px;}
.y13_c00105{bottom:550.124400px;}
.y12_c00105{bottom:581.174400px;}
.y11_c00105{bottom:612.224400px;}
.y10_c00105{bottom:643.274400px;}
.yf_c00105{bottom:674.324400px;}
.ye_c00105{bottom:705.374400px;}
.yd_c00105{bottom:767.474400px;}
.yc_c00105{bottom:798.434400px;}
.yb_c00105{bottom:829.484400px;}
.ya_c00105{bottom:860.534400px;}
.y9_c00105{bottom:891.584400px;}
.y8_c00105{bottom:922.634400px;}
.y7_c00105{bottom:984.734400px;}
.y6_c00105{bottom:1015.784400px;}
.y5_c00105{bottom:1046.834400px;}
.y4_c00105{bottom:1077.884400px;}
.y3_c00105{bottom:1139.804400px;}
.y2_c00105{bottom:1194.074400px;}
.h2_c00105{height:50.400000px;}
.h3_c00105{height:54.331699px;}
.h4_c00105{height:76.824000px;}
.h5_c00105{height:78.048000px;}
.h0_c00105{height:1262.835000px;}
.h1_c00105{height:1263.000000px;}
.w0_c00105{width:892.914000px;}
.w1_c00105{width:893.250000px;}
.x0_c00105{left:0.000000px;}
.x1_c00105{left:54.000000px;}
.x2_c00105{left:127.620000px;}
.x3_c00105{left:159.570000px;}
.x4_c00105{left:164.070000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls8_c00105{letter-spacing:-0.320000pt;}
.ls9_c00105{letter-spacing:-0.256000pt;}
.ls6_c00105{letter-spacing:0.000000pt;}
.ls0_c00105{letter-spacing:0.064000pt;}
.ls7_c00105{letter-spacing:0.128000pt;}
.ls4_c00105{letter-spacing:17.408000pt;}
.ls1_c00105{letter-spacing:19.520000pt;}
.ls2_c00105{letter-spacing:24.640000pt;}
.ls5_c00105{letter-spacing:39.724800pt;}
.ls3_c00105{letter-spacing:42.880000pt;}
.ws2_c00105{word-spacing:-16.000000pt;}
.ws1_c00105{word-spacing:-15.680000pt;}
.wsd_c00105{word-spacing:-0.128000pt;}
.ws8_c00105{word-spacing:-0.117120pt;}
.ws9_c00105{word-spacing:-0.064000pt;}
.ws7_c00105{word-spacing:0.000000pt;}
.ws1f_c00105{word-spacing:0.320000pt;}
.ws25_c00105{word-spacing:1.280000pt;}
.ws24_c00105{word-spacing:1.600000pt;}
.ws1a_c00105{word-spacing:1.856000pt;}
.ws1b_c00105{word-spacing:2.176000pt;}
.wsc_c00105{word-spacing:2.240000pt;}
.ws1c_c00105{word-spacing:3.456000pt;}
.ws5_c00105{word-spacing:3.520000pt;}
.ws4_c00105{word-spacing:3.840000pt;}
.ws12_c00105{word-spacing:4.096000pt;}
.ws23_c00105{word-spacing:4.160000pt;}
.ws20_c00105{word-spacing:6.976000pt;}
.ws21_c00105{word-spacing:7.040000pt;}
.ws1e_c00105{word-spacing:8.576000pt;}
.ws1d_c00105{word-spacing:8.640000pt;}
.ws15_c00105{word-spacing:8.960000pt;}
.ws14_c00105{word-spacing:9.216000pt;}
.ws11_c00105{word-spacing:9.280000pt;}
.ws10_c00105{word-spacing:9.600000pt;}
.wsf_c00105{word-spacing:10.176000pt;}
.wse_c00105{word-spacing:11.840000pt;}
.wsa_c00105{word-spacing:14.656000pt;}
.ws18_c00105{word-spacing:16.128000pt;}
.ws3_c00105{word-spacing:16.256000pt;}
.wsb_c00105{word-spacing:16.576000pt;}
.ws19_c00105{word-spacing:18.560000pt;}
.ws6_c00105{word-spacing:18.816000pt;}
.ws16_c00105{word-spacing:22.720000pt;}
.ws17_c00105{word-spacing:23.040000pt;}
.ws26_c00105{word-spacing:23.616000pt;}
.ws27_c00105{word-spacing:23.680000pt;}
.ws13_c00105{word-spacing:24.960000pt;}
.ws22_c00105{word-spacing:26.880000pt;}
.ws0_c00105{word-spacing:92.800000pt;}
._1_c00105{margin-left:-0.972800pt;}
._0_c00105{width:1.054080pt;}
.fs1_c00105{font-size:58.560000pt;}
.fs0_c00105{font-size:64.000000pt;}
.y0_c00105{bottom:0.000000pt;}
.y1_c00105{bottom:54.887600pt;}
.y1f_c00105{bottom:102.599467pt;}
.y1e_c00105{bottom:130.199467pt;}
.y1d_c00105{bottom:157.799467pt;}
.y1c_c00105{bottom:185.399467pt;}
.y1b_c00105{bottom:240.599467pt;}
.y1a_c00105{bottom:268.199467pt;}
.y19_c00105{bottom:295.799467pt;}
.y18_c00105{bottom:323.399467pt;}
.y17_c00105{bottom:350.999467pt;}
.y16_c00105{bottom:378.599467pt;}
.y15_c00105{bottom:406.199467pt;}
.y14_c00105{bottom:461.399467pt;}
.y13_c00105{bottom:488.999467pt;}
.y12_c00105{bottom:516.599467pt;}
.y11_c00105{bottom:544.199467pt;}
.y10_c00105{bottom:571.799467pt;}
.yf_c00105{bottom:599.399467pt;}
.ye_c00105{bottom:626.999467pt;}
.yd_c00105{bottom:682.199467pt;}
.yc_c00105{bottom:709.719467pt;}
.yb_c00105{bottom:737.319467pt;}
.ya_c00105{bottom:764.919467pt;}
.y9_c00105{bottom:792.519467pt;}
.y8_c00105{bottom:820.119467pt;}
.y7_c00105{bottom:875.319467pt;}
.y6_c00105{bottom:902.919467pt;}
.y5_c00105{bottom:930.519467pt;}
.y4_c00105{bottom:958.119467pt;}
.y3_c00105{bottom:1013.159467pt;}
.y2_c00105{bottom:1061.399467pt;}
.h2_c00105{height:44.800000pt;}
.h3_c00105{height:48.294844pt;}
.h4_c00105{height:68.288000pt;}
.h5_c00105{height:69.376000pt;}
.h0_c00105{height:1122.520000pt;}
.h1_c00105{height:1122.666667pt;}
.w0_c00105{width:793.701333pt;}
.w1_c00105{width:794.000000pt;}
.x0_c00105{left:0.000000pt;}
.x1_c00105{left:48.000000pt;}
.x2_c00105{left:113.440000pt;}
.x3_c00105{left:141.840000pt;}
.x4_c00105{left:145.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00106;src:url('chunks/assets/font_c1bfa8e0725d8602c0d18870.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00106;src:url('chunks/assets/font_8a1e9e717e71c7d3cbccf9ac.woff2')format("woff");}.ff3_c00106{font-family:ff3_c00106;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00106;src:url('chunks/assets/font_93c9b8fca42591d8d9f5b6ae.woff2')format("woff");}.ff4_c00106{font-family:ff4_c00106;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00106;src:url('chunks/assets/font_5e99a1bfabd2e05c62a265a7.woff2')format("woff");}.ff5_c00106{font-family:ff5_c00106;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00106;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00106{font-family:ff6_c00106;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00106;src:url('chunks/assets/font_46b0f52703f794a41540d545.woff2')format("woff");}.ff7_c00106{font-family:ff7_c00106;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00106;src:url('chunks/assets/font_46dd6586cf4f0592c2402129.woff2')format("woff");}.ff8_c00106{font-family:ff8_c00106;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00106;src:url('chunks/assets/font_11cde617992da400e965bbbc.woff2')format("woff");}.ff9_c00106{font-family:ff9_c00106;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00106;src:url('chunks/assets/font_c7ae1692b128630f7248d792.woff2')format("woff");}.ffa_c00106{font-family:ffa_c00106;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.lse_c00106{letter-spacing:-0.576000px;}
.ls10_c00106{letter-spacing:-0.432000px;}
.lsc_c00106{letter-spacing:-0.360000px;}
.lsd_c00106{letter-spacing:-0.288000px;}
.lsf_c00106{letter-spacing:-0.072000px;}
.lsb_c00106{letter-spacing:0.000000px;}
.ls0_c00106{letter-spacing:0.072000px;}
.ls8_c00106{letter-spacing:0.144000px;}
.ls9_c00106{letter-spacing:19.080000px;}
.ls7_c00106{letter-spacing:19.440000px;}
.ls4_c00106{letter-spacing:19.584000px;}
.ls6_c00106{letter-spacing:19.828800px;}
.ls1_c00106{letter-spacing:21.960000px;}
.lsa_c00106{letter-spacing:23.400000px;}
.ls2_c00106{letter-spacing:27.720000px;}
.ls5_c00106{letter-spacing:44.690400px;}
.ls3_c00106{letter-spacing:48.240000px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00106{word-spacing:-18.144000px;}
.ws2_c00106{word-spacing:-18.000000px;}
.ws1_c00106{word-spacing:-17.640000px;}
.ws7_c00106{word-spacing:-17.424000px;}
.ws12_c00106{word-spacing:-0.144000px;}
.wsd_c00106{word-spacing:-0.131760px;}
.wse_c00106{word-spacing:-0.072000px;}
.wsc_c00106{word-spacing:0.000000px;}
.ws24_c00106{word-spacing:0.360000px;}
.ws36_c00106{word-spacing:0.432000px;}
.ws3a_c00106{word-spacing:0.648000px;}
.ws3b_c00106{word-spacing:0.720000px;}
.ws34_c00106{word-spacing:1.008000px;}
.ws9_c00106{word-spacing:1.080000px;}
.wsa_c00106{word-spacing:1.296000px;}
.ws31_c00106{word-spacing:1.368000px;}
.ws2a_c00106{word-spacing:1.440000px;}
.ws2d_c00106{word-spacing:1.728000px;}
.ws29_c00106{word-spacing:1.800000px;}
.ws1f_c00106{word-spacing:2.088000px;}
.ws20_c00106{word-spacing:2.448000px;}
.ws11_c00106{word-spacing:2.520000px;}
.ws21_c00106{word-spacing:3.888000px;}
.ws5_c00106{word-spacing:3.960000px;}
.ws3f_c00106{word-spacing:4.176000px;}
.ws39_c00106{word-spacing:4.248000px;}
.ws4_c00106{word-spacing:4.320000px;}
.wsb_c00106{word-spacing:4.464000px;}
.ws17_c00106{word-spacing:4.608000px;}
.ws28_c00106{word-spacing:4.680000px;}
.ws3e_c00106{word-spacing:5.328000px;}
.ws3d_c00106{word-spacing:5.400000px;}
.ws35_c00106{word-spacing:6.768000px;}
.ws37_c00106{word-spacing:7.200000px;}
.ws25_c00106{word-spacing:7.848000px;}
.ws26_c00106{word-spacing:7.920000px;}
.ws23_c00106{word-spacing:9.648000px;}
.ws22_c00106{word-spacing:9.720000px;}
.ws1a_c00106{word-spacing:10.080000px;}
.ws19_c00106{word-spacing:10.368000px;}
.ws16_c00106{word-spacing:10.440000px;}
.ws30_c00106{word-spacing:10.728000px;}
.ws15_c00106{word-spacing:10.800000px;}
.ws2f_c00106{word-spacing:11.088000px;}
.ws2e_c00106{word-spacing:11.160000px;}
.ws14_c00106{word-spacing:11.448000px;}
.ws13_c00106{word-spacing:13.320000px;}
.ws41_c00106{word-spacing:15.048000px;}
.ws40_c00106{word-spacing:15.120000px;}
.wsf_c00106{word-spacing:16.488000px;}
.ws1d_c00106{word-spacing:18.144000px;}
.ws3_c00106{word-spacing:18.288000px;}
.ws10_c00106{word-spacing:18.648000px;}
.ws1e_c00106{word-spacing:20.880000px;}
.ws6_c00106{word-spacing:21.168000px;}
.ws33_c00106{word-spacing:25.128000px;}
.ws32_c00106{word-spacing:25.488000px;}
.ws1b_c00106{word-spacing:25.560000px;}
.ws1c_c00106{word-spacing:25.920000px;}
.ws2b_c00106{word-spacing:26.568000px;}
.ws2c_c00106{word-spacing:26.640000px;}
.ws38_c00106{word-spacing:28.008000px;}
.ws18_c00106{word-spacing:28.080000px;}
.ws27_c00106{word-spacing:30.240000px;}
.ws3c_c00106{word-spacing:37.800000px;}
.ws0_c00106{word-spacing:104.400000px;}
._1_c00106{margin-left:-1.094400px;}
._0_c00106{width:1.185840px;}
._3_c00106{width:5.328000px;}
._2_c00106{width:122.400000px;}
.fc2_c00106{color:transparent;}
.fc1_c00106{color:rgb(0,0,0);}
.fc0_c00106{color:rgb(35,31,32);}
.fs1_c00106{font-size:65.880000px;}
.fs0_c00106{font-size:72.000000px;}
.y0_c00106{bottom:0.000000px;}
.y1_c00106{bottom:61.748550px;}
.y1f_c00106{bottom:115.424400px;}
.y1e_c00106{bottom:146.474400px;}
.y1d_c00106{bottom:177.524400px;}
.y1c_c00106{bottom:208.574400px;}
.y1b_c00106{bottom:270.674400px;}
.y1a_c00106{bottom:301.724400px;}
.y19_c00106{bottom:332.774400px;}
.y18_c00106{bottom:363.824400px;}
.y17_c00106{bottom:394.874400px;}
.y16_c00106{bottom:425.924400px;}
.y15_c00106{bottom:456.974400px;}
.y24_c00106{bottom:518.894400px;}
.y14_c00106{bottom:519.074400px;}
.y13_c00106{bottom:550.124400px;}
.y12_c00106{bottom:581.174400px;}
.y11_c00106{bottom:612.224400px;}
.y10_c00106{bottom:643.274400px;}
.yf_c00106{bottom:674.324400px;}
.ye_c00106{bottom:705.374400px;}
.y23_c00106{bottom:736.424400px;}
.yd_c00106{bottom:767.474400px;}
.yc_c00106{bottom:798.434400px;}
.yb_c00106{bottom:829.484400px;}
.ya_c00106{bottom:860.534400px;}
.y9_c00106{bottom:891.584400px;}
.y8_c00106{bottom:922.634400px;}
.y22_c00106{bottom:953.684400px;}
.y7_c00106{bottom:984.734400px;}
.y6_c00106{bottom:1015.784400px;}
.y5_c00106{bottom:1046.834400px;}
.y4_c00106{bottom:1077.884400px;}
.y21_c00106{bottom:1108.934400px;}
.y3_c00106{bottom:1139.804400px;}
.y20_c00106{bottom:1139.984400px;}
.y2_c00106{bottom:1194.074400px;}
.h2_c00106{height:50.400000px;}
.h3_c00106{height:54.331699px;}
.h4_c00106{height:76.824000px;}
.h5_c00106{height:78.048000px;}
.h0_c00106{height:1262.835000px;}
.h1_c00106{height:1263.000000px;}
.w2_c00106{width:0.000000px;}
.w3_c00106{width:0.066000px;}
.w0_c00106{width:892.914000px;}
.w1_c00106{width:893.250000px;}
.x1_c00106{left:-838.913400px;}
.x2_c00106{left:-765.293400px;}
.x3_c00106{left:-733.343400px;}
.x4_c00106{left:-728.843400px;}
.x0_c00106{left:0.000000px;}
.x7_c00106{left:127.620000px;}
.x8_c00106{left:159.570000px;}
.x6_c00106{left:697.590000px;}
.x5_c00106{left:804.366150px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.lse_c00106{letter-spacing:-0.512000pt;}
.ls10_c00106{letter-spacing:-0.384000pt;}
.lsc_c00106{letter-spacing:-0.320000pt;}
.lsd_c00106{letter-spacing:-0.256000pt;}
.lsf_c00106{letter-spacing:-0.064000pt;}
.lsb_c00106{letter-spacing:0.000000pt;}
.ls0_c00106{letter-spacing:0.064000pt;}
.ls8_c00106{letter-spacing:0.128000pt;}
.ls9_c00106{letter-spacing:16.960000pt;}
.ls7_c00106{letter-spacing:17.280000pt;}
.ls4_c00106{letter-spacing:17.408000pt;}
.ls6_c00106{letter-spacing:17.625600pt;}
.ls1_c00106{letter-spacing:19.520000pt;}
.lsa_c00106{letter-spacing:20.800000pt;}
.ls2_c00106{letter-spacing:24.640000pt;}
.ls5_c00106{letter-spacing:39.724800pt;}
.ls3_c00106{letter-spacing:42.880000pt;}
.ws8_c00106{word-spacing:-16.128000pt;}
.ws2_c00106{word-spacing:-16.000000pt;}
.ws1_c00106{word-spacing:-15.680000pt;}
.ws7_c00106{word-spacing:-15.488000pt;}
.ws12_c00106{word-spacing:-0.128000pt;}
.wsd_c00106{word-spacing:-0.117120pt;}
.wse_c00106{word-spacing:-0.064000pt;}
.wsc_c00106{word-spacing:0.000000pt;}
.ws24_c00106{word-spacing:0.320000pt;}
.ws36_c00106{word-spacing:0.384000pt;}
.ws3a_c00106{word-spacing:0.576000pt;}
.ws3b_c00106{word-spacing:0.640000pt;}
.ws34_c00106{word-spacing:0.896000pt;}
.ws9_c00106{word-spacing:0.960000pt;}
.wsa_c00106{word-spacing:1.152000pt;}
.ws31_c00106{word-spacing:1.216000pt;}
.ws2a_c00106{word-spacing:1.280000pt;}
.ws2d_c00106{word-spacing:1.536000pt;}
.ws29_c00106{word-spacing:1.600000pt;}
.ws1f_c00106{word-spacing:1.856000pt;}
.ws20_c00106{word-spacing:2.176000pt;}
.ws11_c00106{word-spacing:2.240000pt;}
.ws21_c00106{word-spacing:3.456000pt;}
.ws5_c00106{word-spacing:3.520000pt;}
.ws3f_c00106{word-spacing:3.712000pt;}
.ws39_c00106{word-spacing:3.776000pt;}
.ws4_c00106{word-spacing:3.840000pt;}
.wsb_c00106{word-spacing:3.968000pt;}
.ws17_c00106{word-spacing:4.096000pt;}
.ws28_c00106{word-spacing:4.160000pt;}
.ws3e_c00106{word-spacing:4.736000pt;}
.ws3d_c00106{word-spacing:4.800000pt;}
.ws35_c00106{word-spacing:6.016000pt;}
.ws37_c00106{word-spacing:6.400000pt;}
.ws25_c00106{word-spacing:6.976000pt;}
.ws26_c00106{word-spacing:7.040000pt;}
.ws23_c00106{word-spacing:8.576000pt;}
.ws22_c00106{word-spacing:8.640000pt;}
.ws1a_c00106{word-spacing:8.960000pt;}
.ws19_c00106{word-spacing:9.216000pt;}
.ws16_c00106{word-spacing:9.280000pt;}
.ws30_c00106{word-spacing:9.536000pt;}
.ws15_c00106{word-spacing:9.600000pt;}
.ws2f_c00106{word-spacing:9.856000pt;}
.ws2e_c00106{word-spacing:9.920000pt;}
.ws14_c00106{word-spacing:10.176000pt;}
.ws13_c00106{word-spacing:11.840000pt;}
.ws41_c00106{word-spacing:13.376000pt;}
.ws40_c00106{word-spacing:13.440000pt;}
.wsf_c00106{word-spacing:14.656000pt;}
.ws1d_c00106{word-spacing:16.128000pt;}
.ws3_c00106{word-spacing:16.256000pt;}
.ws10_c00106{word-spacing:16.576000pt;}
.ws1e_c00106{word-spacing:18.560000pt;}
.ws6_c00106{word-spacing:18.816000pt;}
.ws33_c00106{word-spacing:22.336000pt;}
.ws32_c00106{word-spacing:22.656000pt;}
.ws1b_c00106{word-spacing:22.720000pt;}
.ws1c_c00106{word-spacing:23.040000pt;}
.ws2b_c00106{word-spacing:23.616000pt;}
.ws2c_c00106{word-spacing:23.680000pt;}
.ws38_c00106{word-spacing:24.896000pt;}
.ws18_c00106{word-spacing:24.960000pt;}
.ws27_c00106{word-spacing:26.880000pt;}
.ws3c_c00106{word-spacing:33.600000pt;}
.ws0_c00106{word-spacing:92.800000pt;}
._1_c00106{margin-left:-0.972800pt;}
._0_c00106{width:1.054080pt;}
._3_c00106{width:4.736000pt;}
._2_c00106{width:108.800000pt;}
.fs1_c00106{font-size:58.560000pt;}
.fs0_c00106{font-size:64.000000pt;}
.y0_c00106{bottom:0.000000pt;}
.y1_c00106{bottom:54.887600pt;}
.y1f_c00106{bottom:102.599467pt;}
.y1e_c00106{bottom:130.199467pt;}
.y1d_c00106{bottom:157.799467pt;}
.y1c_c00106{bottom:185.399467pt;}
.y1b_c00106{bottom:240.599467pt;}
.y1a_c00106{bottom:268.199467pt;}
.y19_c00106{bottom:295.799467pt;}
.y18_c00106{bottom:323.399467pt;}
.y17_c00106{bottom:350.999467pt;}
.y16_c00106{bottom:378.599467pt;}
.y15_c00106{bottom:406.199467pt;}
.y24_c00106{bottom:461.239467pt;}
.y14_c00106{bottom:461.399467pt;}
.y13_c00106{bottom:488.999467pt;}
.y12_c00106{bottom:516.599467pt;}
.y11_c00106{bottom:544.199467pt;}
.y10_c00106{bottom:571.799467pt;}
.yf_c00106{bottom:599.399467pt;}
.ye_c00106{bottom:626.999467pt;}
.y23_c00106{bottom:654.599467pt;}
.yd_c00106{bottom:682.199467pt;}
.yc_c00106{bottom:709.719467pt;}
.yb_c00106{bottom:737.319467pt;}
.ya_c00106{bottom:764.919467pt;}
.y9_c00106{bottom:792.519467pt;}
.y8_c00106{bottom:820.119467pt;}
.y22_c00106{bottom:847.719467pt;}
.y7_c00106{bottom:875.319467pt;}
.y6_c00106{bottom:902.919467pt;}
.y5_c00106{bottom:930.519467pt;}
.y4_c00106{bottom:958.119467pt;}
.y21_c00106{bottom:985.719467pt;}
.y3_c00106{bottom:1013.159467pt;}
.y20_c00106{bottom:1013.319467pt;}
.y2_c00106{bottom:1061.399467pt;}
.h2_c00106{height:44.800000pt;}
.h3_c00106{height:48.294844pt;}
.h4_c00106{height:68.288000pt;}
.h5_c00106{height:69.376000pt;}
.h0_c00106{height:1122.520000pt;}
.h1_c00106{height:1122.666667pt;}
.w2_c00106{width:0.000000pt;}
.w3_c00106{width:0.058667pt;}
.w0_c00106{width:793.701333pt;}
.w1_c00106{width:794.000000pt;}
.x1_c00106{left:-745.700800pt;}
.x2_c00106{left:-680.260800pt;}
.x3_c00106{left:-651.860800pt;}
.x4_c00106{left:-647.860800pt;}
.x0_c00106{left:0.000000pt;}
.x7_c00106{left:113.440000pt;}
.x8_c00106{left:141.840000pt;}
.x6_c00106{left:620.080000pt;}
.x5_c00106{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00107;src:url('chunks/assets/font_b5cda69001ac1258d034300b.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00107;src:url('chunks/assets/font_5a49dc1a2fda0de4378b2d2a.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls5_c00107{letter-spacing:-0.216000px;}
.ls4_c00107{letter-spacing:0.000000px;}
.ls0_c00107{letter-spacing:0.072000px;}
.ls3_c00107{letter-spacing:0.144000px;}
.ls1_c00107{letter-spacing:18.360000px;}
.ls2_c00107{letter-spacing:60.984000px;}
.sc__c00107{text-shadow:none;}
.sc0_c00107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
.sc0_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00107{word-spacing:-18.000000px;}
.ws17_c00107{word-spacing:-0.144000px;}
.ws6_c00107{word-spacing:-0.131760px;}
.ws9_c00107{word-spacing:-0.072000px;}
.ws5_c00107{word-spacing:0.000000px;}
.ws1_c00107{word-spacing:0.072000px;}
.ws14_c00107{word-spacing:0.216000px;}
.ws7_c00107{word-spacing:0.720000px;}
.wsd_c00107{word-spacing:1.368000px;}
.ws20_c00107{word-spacing:2.088000px;}
.ws21_c00107{word-spacing:2.160000px;}
.ws19_c00107{word-spacing:2.448000px;}
.ws22_c00107{word-spacing:3.168000px;}
.ws15_c00107{word-spacing:5.328000px;}
.ws1a_c00107{word-spacing:5.400000px;}
.ws13_c00107{word-spacing:5.760000px;}
.ws12_c00107{word-spacing:6.408000px;}
.wsf_c00107{word-spacing:6.768000px;}
.wse_c00107{word-spacing:7.128000px;}
.ws3_c00107{word-spacing:7.200000px;}
.ws1d_c00107{word-spacing:11.448000px;}
.wsc_c00107{word-spacing:11.880000px;}
.wsb_c00107{word-spacing:12.096000px;}
.ws16_c00107{word-spacing:12.168000px;}
.wsa_c00107{word-spacing:12.240000px;}
.ws11_c00107{word-spacing:12.888000px;}
.ws10_c00107{word-spacing:12.960000px;}
.ws23_c00107{word-spacing:14.400000px;}
.ws8_c00107{word-spacing:16.488000px;}
.ws18_c00107{word-spacing:18.720000px;}
.ws1e_c00107{word-spacing:19.440000px;}
.ws2_c00107{word-spacing:19.512000px;}
.ws1c_c00107{word-spacing:20.880000px;}
.ws1b_c00107{word-spacing:25.920000px;}
.ws1f_c00107{word-spacing:31.248000px;}
.ws4_c00107{word-spacing:31.320000px;}
._1_c00107{margin-left:-1.008000px;}
._0_c00107{width:1.185840px;}
._3_c00107{width:5.544000px;}
._2_c00107{width:6.724440px;}
._4_c00107{width:16.848000px;}
.fc1_c00107{color:rgb(0,0,0);}
.fc0_c00107{color:rgb(35,31,32);}
.fs1_c00107{font-size:65.880000px;}
.fs0_c00107{font-size:72.000000px;}
.y0_c00107{bottom:0.000000px;}
.y1_c00107{bottom:61.748550px;}
.y20_c00107{bottom:114.884400px;}
.y1f_c00107{bottom:145.934400px;}
.y1e_c00107{bottom:176.984400px;}
.y1d_c00107{bottom:208.034400px;}
.y1c_c00107{bottom:239.084400px;}
.y1b_c00107{bottom:270.134400px;}
.y1a_c00107{bottom:301.184400px;}
.y19_c00107{bottom:363.284400px;}
.y18_c00107{bottom:394.334400px;}
.y17_c00107{bottom:425.384400px;}
.y16_c00107{bottom:456.434400px;}
.y15_c00107{bottom:518.534400px;}
.y14_c00107{bottom:549.584400px;}
.y13_c00107{bottom:580.634400px;}
.y12_c00107{bottom:611.684400px;}
.y11_c00107{bottom:642.734400px;}
.y10_c00107{bottom:704.834400px;}
.yf_c00107{bottom:735.884400px;}
.ye_c00107{bottom:797.984400px;}
.yd_c00107{bottom:828.944400px;}
.yc_c00107{bottom:859.994400px;}
.yb_c00107{bottom:891.044400px;}
.ya_c00107{bottom:922.094400px;}
.y9_c00107{bottom:953.144400px;}
.y8_c00107{bottom:984.554400px;}
.y7_c00107{bottom:1015.784400px;}
.y6_c00107{bottom:1046.834400px;}
.y5_c00107{bottom:1077.884400px;}
.y4_c00107{bottom:1108.934400px;}
.y3_c00107{bottom:1139.984400px;}
.y2_c00107{bottom:1194.074400px;}
.h2_c00107{height:50.400000px;}
.h3_c00107{height:54.331699px;}
.h4_c00107{height:76.824000px;}
.h0_c00107{height:1262.835000px;}
.h1_c00107{height:1263.000000px;}
.w0_c00107{width:892.914000px;}
.w1_c00107{width:893.250000px;}
.x0_c00107{left:0.000000px;}
.x1_c00107{left:54.000000px;}
.x2_c00107{left:127.620000px;}
.x4_c00107{left:148.950000px;}
.x3_c00107{left:159.570000px;}
.x5_c00107{left:170.190000px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls5_c00107{letter-spacing:-0.192000pt;}
.ls4_c00107{letter-spacing:0.000000pt;}
.ls0_c00107{letter-spacing:0.064000pt;}
.ls3_c00107{letter-spacing:0.128000pt;}
.ls1_c00107{letter-spacing:16.320000pt;}
.ls2_c00107{letter-spacing:54.208000pt;}
.ws0_c00107{word-spacing:-16.000000pt;}
.ws17_c00107{word-spacing:-0.128000pt;}
.ws6_c00107{word-spacing:-0.117120pt;}
.ws9_c00107{word-spacing:-0.064000pt;}
.ws5_c00107{word-spacing:0.000000pt;}
.ws1_c00107{word-spacing:0.064000pt;}
.ws14_c00107{word-spacing:0.192000pt;}
.ws7_c00107{word-spacing:0.640000pt;}
.wsd_c00107{word-spacing:1.216000pt;}
.ws20_c00107{word-spacing:1.856000pt;}
.ws21_c00107{word-spacing:1.920000pt;}
.ws19_c00107{word-spacing:2.176000pt;}
.ws22_c00107{word-spacing:2.816000pt;}
.ws15_c00107{word-spacing:4.736000pt;}
.ws1a_c00107{word-spacing:4.800000pt;}
.ws13_c00107{word-spacing:5.120000pt;}
.ws12_c00107{word-spacing:5.696000pt;}
.wsf_c00107{word-spacing:6.016000pt;}
.wse_c00107{word-spacing:6.336000pt;}
.ws3_c00107{word-spacing:6.400000pt;}
.ws1d_c00107{word-spacing:10.176000pt;}
.wsc_c00107{word-spacing:10.560000pt;}
.wsb_c00107{word-spacing:10.752000pt;}
.ws16_c00107{word-spacing:10.816000pt;}
.wsa_c00107{word-spacing:10.880000pt;}
.ws11_c00107{word-spacing:11.456000pt;}
.ws10_c00107{word-spacing:11.520000pt;}
.ws23_c00107{word-spacing:12.800000pt;}
.ws8_c00107{word-spacing:14.656000pt;}
.ws18_c00107{word-spacing:16.640000pt;}
.ws1e_c00107{word-spacing:17.280000pt;}
.ws2_c00107{word-spacing:17.344000pt;}
.ws1c_c00107{word-spacing:18.560000pt;}
.ws1b_c00107{word-spacing:23.040000pt;}
.ws1f_c00107{word-spacing:27.776000pt;}
.ws4_c00107{word-spacing:27.840000pt;}
._1_c00107{margin-left:-0.896000pt;}
._0_c00107{width:1.054080pt;}
._3_c00107{width:4.928000pt;}
._2_c00107{width:5.977280pt;}
._4_c00107{width:14.976000pt;}
.fs1_c00107{font-size:58.560000pt;}
.fs0_c00107{font-size:64.000000pt;}
.y0_c00107{bottom:0.000000pt;}
.y1_c00107{bottom:54.887600pt;}
.y20_c00107{bottom:102.119467pt;}
.y1f_c00107{bottom:129.719467pt;}
.y1e_c00107{bottom:157.319467pt;}
.y1d_c00107{bottom:184.919467pt;}
.y1c_c00107{bottom:212.519467pt;}
.y1b_c00107{bottom:240.119467pt;}
.y1a_c00107{bottom:267.719467pt;}
.y19_c00107{bottom:322.919467pt;}
.y18_c00107{bottom:350.519467pt;}
.y17_c00107{bottom:378.119467pt;}
.y16_c00107{bottom:405.719467pt;}
.y15_c00107{bottom:460.919467pt;}
.y14_c00107{bottom:488.519467pt;}
.y13_c00107{bottom:516.119467pt;}
.y12_c00107{bottom:543.719467pt;}
.y11_c00107{bottom:571.319467pt;}
.y10_c00107{bottom:626.519467pt;}
.yf_c00107{bottom:654.119467pt;}
.ye_c00107{bottom:709.319467pt;}
.yd_c00107{bottom:736.839467pt;}
.yc_c00107{bottom:764.439467pt;}
.yb_c00107{bottom:792.039467pt;}
.ya_c00107{bottom:819.639467pt;}
.y9_c00107{bottom:847.239467pt;}
.y8_c00107{bottom:875.159467pt;}
.y7_c00107{bottom:902.919467pt;}
.y6_c00107{bottom:930.519467pt;}
.y5_c00107{bottom:958.119467pt;}
.y4_c00107{bottom:985.719467pt;}
.y3_c00107{bottom:1013.319467pt;}
.y2_c00107{bottom:1061.399467pt;}
.h2_c00107{height:44.800000pt;}
.h3_c00107{height:48.294844pt;}
.h4_c00107{height:68.288000pt;}
.h0_c00107{height:1122.520000pt;}
.h1_c00107{height:1122.666667pt;}
.w0_c00107{width:793.701333pt;}
.w1_c00107{width:794.000000pt;}
.x0_c00107{left:0.000000pt;}
.x1_c00107{left:48.000000pt;}
.x2_c00107{left:113.440000pt;}
.x4_c00107{left:132.400000pt;}
.x3_c00107{left:141.840000pt;}
.x5_c00107{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00108;src:url('chunks/assets/font_5e6a59dbaf56c3a35ba6f21b.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00108;src:url('chunks/assets/font_6a796e345c5d37df5b62cf5c.woff2')format("woff");}.ff3_c00108{font-family:ff3_c00108;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00108;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00108{font-family:ff4_c00108;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00108;src:url('chunks/assets/font_1721815f32d5cb37f9493e57.woff2')format("woff");}.ff5_c00108{font-family:ff5_c00108;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00108;src:url('chunks/assets/font_e7b172167b67c6ce925a19b7.woff2')format("woff");}.ff6_c00108{font-family:ff6_c00108;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00108;src:url('chunks/assets/font_19cccc3c819316607cdde183.woff2')format("woff");}.ff7_c00108{font-family:ff7_c00108;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls5_c00108{letter-spacing:-0.216000px;}
.ls6_c00108{letter-spacing:-0.072000px;}
.ls4_c00108{letter-spacing:0.000000px;}
.ls0_c00108{letter-spacing:0.072000px;}
.ls3_c00108{letter-spacing:0.144000px;}
.ls1_c00108{letter-spacing:18.360000px;}
.ls2_c00108{letter-spacing:60.984000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00108{word-spacing:-18.000000px;}
.ws2f_c00108{word-spacing:-0.360000px;}
.ws18_c00108{word-spacing:-0.144000px;}
.ws7_c00108{word-spacing:-0.131760px;}
.wsa_c00108{word-spacing:-0.072000px;}
.ws6_c00108{word-spacing:0.000000px;}
.ws1_c00108{word-spacing:0.072000px;}
.ws15_c00108{word-spacing:0.216000px;}
.ws36_c00108{word-spacing:0.288000px;}
.ws37_c00108{word-spacing:0.648000px;}
.ws8_c00108{word-spacing:0.720000px;}
.wse_c00108{word-spacing:1.368000px;}
.ws21_c00108{word-spacing:2.088000px;}
.ws22_c00108{word-spacing:2.160000px;}
.ws1a_c00108{word-spacing:2.448000px;}
.ws23_c00108{word-spacing:3.168000px;}
.ws31_c00108{word-spacing:3.240000px;}
.ws30_c00108{word-spacing:3.384000px;}
.ws2c_c00108{word-spacing:4.536000px;}
.ws2e_c00108{word-spacing:4.608000px;}
.ws2b_c00108{word-spacing:4.680000px;}
.ws5_c00108{word-spacing:4.752000px;}
.ws2d_c00108{word-spacing:5.112000px;}
.ws16_c00108{word-spacing:5.328000px;}
.ws1b_c00108{word-spacing:5.400000px;}
.ws29_c00108{word-spacing:5.688000px;}
.ws14_c00108{word-spacing:5.760000px;}
.ws2a_c00108{word-spacing:6.048000px;}
.ws26_c00108{word-spacing:6.120000px;}
.ws13_c00108{word-spacing:6.408000px;}
.ws10_c00108{word-spacing:6.768000px;}
.wsf_c00108{word-spacing:7.128000px;}
.ws3_c00108{word-spacing:7.200000px;}
.ws35_c00108{word-spacing:7.848000px;}
.ws34_c00108{word-spacing:8.280000px;}
.ws3b_c00108{word-spacing:10.800000px;}
.ws1e_c00108{word-spacing:11.448000px;}
.wsd_c00108{word-spacing:11.880000px;}
.wsc_c00108{word-spacing:12.096000px;}
.ws17_c00108{word-spacing:12.168000px;}
.wsb_c00108{word-spacing:12.240000px;}
.ws12_c00108{word-spacing:12.888000px;}
.ws11_c00108{word-spacing:12.960000px;}
.ws24_c00108{word-spacing:14.400000px;}
.ws9_c00108{word-spacing:16.488000px;}
.ws39_c00108{word-spacing:17.928000px;}
.ws38_c00108{word-spacing:18.000000px;}
.ws19_c00108{word-spacing:18.720000px;}
.ws1f_c00108{word-spacing:19.440000px;}
.ws2_c00108{word-spacing:19.512000px;}
.ws33_c00108{word-spacing:19.728000px;}
.ws32_c00108{word-spacing:19.800000px;}
.ws1d_c00108{word-spacing:20.880000px;}
.ws25_c00108{word-spacing:21.240000px;}
.ws27_c00108{word-spacing:24.408000px;}
.ws28_c00108{word-spacing:24.480000px;}
.ws1c_c00108{word-spacing:25.920000px;}
.ws20_c00108{word-spacing:31.248000px;}
.ws4_c00108{word-spacing:31.320000px;}
.ws3a_c00108{word-spacing:34.488000px;}
._1_c00108{margin-left:-1.008000px;}
._0_c00108{width:1.185840px;}
._3_c00108{width:5.544000px;}
._2_c00108{width:6.724440px;}
._5_c00108{width:8.424000px;}
._4_c00108{width:16.848000px;}
.fc2_c00108{color:transparent;}
.fc1_c00108{color:rgb(0,0,0);}
.fc0_c00108{color:rgb(35,31,32);}
.fs1_c00108{font-size:65.880000px;}
.fs0_c00108{font-size:72.000000px;}
.y0_c00108{bottom:0.000000px;}
.y1_c00108{bottom:61.748550px;}
.y20_c00108{bottom:114.884400px;}
.y1f_c00108{bottom:145.934400px;}
.y1e_c00108{bottom:176.984400px;}
.y37_c00108{bottom:177.524400px;}
.y1d_c00108{bottom:208.034400px;}
.y36_c00108{bottom:208.574400px;}
.y1c_c00108{bottom:239.084400px;}
.y35_c00108{bottom:239.624400px;}
.y1b_c00108{bottom:270.134400px;}
.y34_c00108{bottom:270.674400px;}
.y1a_c00108{bottom:301.184400px;}
.y33_c00108{bottom:332.774400px;}
.y19_c00108{bottom:363.284400px;}
.y32_c00108{bottom:363.824400px;}
.y18_c00108{bottom:394.334400px;}
.y31_c00108{bottom:394.874400px;}
.y17_c00108{bottom:425.384400px;}
.y30_c00108{bottom:425.924400px;}
.y16_c00108{bottom:456.434400px;}
.y2f_c00108{bottom:456.974400px;}
.y15_c00108{bottom:518.534400px;}
.y2e_c00108{bottom:519.074400px;}
.y14_c00108{bottom:549.584400px;}
.y2d_c00108{bottom:550.124400px;}
.y13_c00108{bottom:580.634400px;}
.y2c_c00108{bottom:581.174400px;}
.y12_c00108{bottom:611.684400px;}
.y2b_c00108{bottom:612.224400px;}
.y11_c00108{bottom:642.734400px;}
.y2a_c00108{bottom:643.274400px;}
.y10_c00108{bottom:704.834400px;}
.y29_c00108{bottom:705.374400px;}
.yf_c00108{bottom:735.884400px;}
.y28_c00108{bottom:736.424400px;}
.y27_c00108{bottom:767.474400px;}
.ye_c00108{bottom:797.984400px;}
.y26_c00108{bottom:798.434400px;}
.yd_c00108{bottom:828.944400px;}
.yc_c00108{bottom:859.994400px;}
.y25_c00108{bottom:860.534400px;}
.yb_c00108{bottom:891.044400px;}
.y24_c00108{bottom:891.584400px;}
.ya_c00108{bottom:922.094400px;}
.y23_c00108{bottom:922.634400px;}
.y9_c00108{bottom:953.144400px;}
.y22_c00108{bottom:953.684400px;}
.y8_c00108{bottom:984.554400px;}
.y21_c00108{bottom:984.734400px;}
.y7_c00108{bottom:1015.784400px;}
.y6_c00108{bottom:1046.834400px;}
.y5_c00108{bottom:1077.884400px;}
.y4_c00108{bottom:1108.934400px;}
.y3_c00108{bottom:1139.984400px;}
.y2_c00108{bottom:1194.074400px;}
.h2_c00108{height:50.400000px;}
.h3_c00108{height:54.331699px;}
.h4_c00108{height:76.824000px;}
.h5_c00108{height:78.048000px;}
.h0_c00108{height:1262.835000px;}
.h1_c00108{height:1263.000000px;}
.w2_c00108{width:0.000000px;}
.w3_c00108{width:0.066000px;}
.w0_c00108{width:892.914000px;}
.w1_c00108{width:893.250000px;}
.x1_c00108{left:-838.913400px;}
.x2_c00108{left:-765.293400px;}
.x4_c00108{left:-743.963400px;}
.x3_c00108{left:-733.343400px;}
.x5_c00108{left:-722.723400px;}
.x0_c00108{left:0.000000px;}
.x8_c00108{left:127.620000px;}
.x9_c00108{left:159.570000px;}
.x7_c00108{left:697.590000px;}
.x6_c00108{left:804.366150px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls5_c00108{letter-spacing:-0.192000pt;}
.ls6_c00108{letter-spacing:-0.064000pt;}
.ls4_c00108{letter-spacing:0.000000pt;}
.ls0_c00108{letter-spacing:0.064000pt;}
.ls3_c00108{letter-spacing:0.128000pt;}
.ls1_c00108{letter-spacing:16.320000pt;}
.ls2_c00108{letter-spacing:54.208000pt;}
.ws0_c00108{word-spacing:-16.000000pt;}
.ws2f_c00108{word-spacing:-0.320000pt;}
.ws18_c00108{word-spacing:-0.128000pt;}
.ws7_c00108{word-spacing:-0.117120pt;}
.wsa_c00108{word-spacing:-0.064000pt;}
.ws6_c00108{word-spacing:0.000000pt;}
.ws1_c00108{word-spacing:0.064000pt;}
.ws15_c00108{word-spacing:0.192000pt;}
.ws36_c00108{word-spacing:0.256000pt;}
.ws37_c00108{word-spacing:0.576000pt;}
.ws8_c00108{word-spacing:0.640000pt;}
.wse_c00108{word-spacing:1.216000pt;}
.ws21_c00108{word-spacing:1.856000pt;}
.ws22_c00108{word-spacing:1.920000pt;}
.ws1a_c00108{word-spacing:2.176000pt;}
.ws23_c00108{word-spacing:2.816000pt;}
.ws31_c00108{word-spacing:2.880000pt;}
.ws30_c00108{word-spacing:3.008000pt;}
.ws2c_c00108{word-spacing:4.032000pt;}
.ws2e_c00108{word-spacing:4.096000pt;}
.ws2b_c00108{word-spacing:4.160000pt;}
.ws5_c00108{word-spacing:4.224000pt;}
.ws2d_c00108{word-spacing:4.544000pt;}
.ws16_c00108{word-spacing:4.736000pt;}
.ws1b_c00108{word-spacing:4.800000pt;}
.ws29_c00108{word-spacing:5.056000pt;}
.ws14_c00108{word-spacing:5.120000pt;}
.ws2a_c00108{word-spacing:5.376000pt;}
.ws26_c00108{word-spacing:5.440000pt;}
.ws13_c00108{word-spacing:5.696000pt;}
.ws10_c00108{word-spacing:6.016000pt;}
.wsf_c00108{word-spacing:6.336000pt;}
.ws3_c00108{word-spacing:6.400000pt;}
.ws35_c00108{word-spacing:6.976000pt;}
.ws34_c00108{word-spacing:7.360000pt;}
.ws3b_c00108{word-spacing:9.600000pt;}
.ws1e_c00108{word-spacing:10.176000pt;}
.wsd_c00108{word-spacing:10.560000pt;}
.wsc_c00108{word-spacing:10.752000pt;}
.ws17_c00108{word-spacing:10.816000pt;}
.wsb_c00108{word-spacing:10.880000pt;}
.ws12_c00108{word-spacing:11.456000pt;}
.ws11_c00108{word-spacing:11.520000pt;}
.ws24_c00108{word-spacing:12.800000pt;}
.ws9_c00108{word-spacing:14.656000pt;}
.ws39_c00108{word-spacing:15.936000pt;}
.ws38_c00108{word-spacing:16.000000pt;}
.ws19_c00108{word-spacing:16.640000pt;}
.ws1f_c00108{word-spacing:17.280000pt;}
.ws2_c00108{word-spacing:17.344000pt;}
.ws33_c00108{word-spacing:17.536000pt;}
.ws32_c00108{word-spacing:17.600000pt;}
.ws1d_c00108{word-spacing:18.560000pt;}
.ws25_c00108{word-spacing:18.880000pt;}
.ws27_c00108{word-spacing:21.696000pt;}
.ws28_c00108{word-spacing:21.760000pt;}
.ws1c_c00108{word-spacing:23.040000pt;}
.ws20_c00108{word-spacing:27.776000pt;}
.ws4_c00108{word-spacing:27.840000pt;}
.ws3a_c00108{word-spacing:30.656000pt;}
._1_c00108{margin-left:-0.896000pt;}
._0_c00108{width:1.054080pt;}
._3_c00108{width:4.928000pt;}
._2_c00108{width:5.977280pt;}
._5_c00108{width:7.488000pt;}
._4_c00108{width:14.976000pt;}
.fs1_c00108{font-size:58.560000pt;}
.fs0_c00108{font-size:64.000000pt;}
.y0_c00108{bottom:0.000000pt;}
.y1_c00108{bottom:54.887600pt;}
.y20_c00108{bottom:102.119467pt;}
.y1f_c00108{bottom:129.719467pt;}
.y1e_c00108{bottom:157.319467pt;}
.y37_c00108{bottom:157.799467pt;}
.y1d_c00108{bottom:184.919467pt;}
.y36_c00108{bottom:185.399467pt;}
.y1c_c00108{bottom:212.519467pt;}
.y35_c00108{bottom:212.999467pt;}
.y1b_c00108{bottom:240.119467pt;}
.y34_c00108{bottom:240.599467pt;}
.y1a_c00108{bottom:267.719467pt;}
.y33_c00108{bottom:295.799467pt;}
.y19_c00108{bottom:322.919467pt;}
.y32_c00108{bottom:323.399467pt;}
.y18_c00108{bottom:350.519467pt;}
.y31_c00108{bottom:350.999467pt;}
.y17_c00108{bottom:378.119467pt;}
.y30_c00108{bottom:378.599467pt;}
.y16_c00108{bottom:405.719467pt;}
.y2f_c00108{bottom:406.199467pt;}
.y15_c00108{bottom:460.919467pt;}
.y2e_c00108{bottom:461.399467pt;}
.y14_c00108{bottom:488.519467pt;}
.y2d_c00108{bottom:488.999467pt;}
.y13_c00108{bottom:516.119467pt;}
.y2c_c00108{bottom:516.599467pt;}
.y12_c00108{bottom:543.719467pt;}
.y2b_c00108{bottom:544.199467pt;}
.y11_c00108{bottom:571.319467pt;}
.y2a_c00108{bottom:571.799467pt;}
.y10_c00108{bottom:626.519467pt;}
.y29_c00108{bottom:626.999467pt;}
.yf_c00108{bottom:654.119467pt;}
.y28_c00108{bottom:654.599467pt;}
.y27_c00108{bottom:682.199467pt;}
.ye_c00108{bottom:709.319467pt;}
.y26_c00108{bottom:709.719467pt;}
.yd_c00108{bottom:736.839467pt;}
.yc_c00108{bottom:764.439467pt;}
.y25_c00108{bottom:764.919467pt;}
.yb_c00108{bottom:792.039467pt;}
.y24_c00108{bottom:792.519467pt;}
.ya_c00108{bottom:819.639467pt;}
.y23_c00108{bottom:820.119467pt;}
.y9_c00108{bottom:847.239467pt;}
.y22_c00108{bottom:847.719467pt;}
.y8_c00108{bottom:875.159467pt;}
.y21_c00108{bottom:875.319467pt;}
.y7_c00108{bottom:902.919467pt;}
.y6_c00108{bottom:930.519467pt;}
.y5_c00108{bottom:958.119467pt;}
.y4_c00108{bottom:985.719467pt;}
.y3_c00108{bottom:1013.319467pt;}
.y2_c00108{bottom:1061.399467pt;}
.h2_c00108{height:44.800000pt;}
.h3_c00108{height:48.294844pt;}
.h4_c00108{height:68.288000pt;}
.h5_c00108{height:69.376000pt;}
.h0_c00108{height:1122.520000pt;}
.h1_c00108{height:1122.666667pt;}
.w2_c00108{width:0.000000pt;}
.w3_c00108{width:0.058667pt;}
.w0_c00108{width:793.701333pt;}
.w1_c00108{width:794.000000pt;}
.x1_c00108{left:-745.700800pt;}
.x2_c00108{left:-680.260800pt;}
.x4_c00108{left:-661.300800pt;}
.x3_c00108{left:-651.860800pt;}
.x5_c00108{left:-642.420800pt;}
.x0_c00108{left:0.000000pt;}
.x8_c00108{left:113.440000pt;}
.x9_c00108{left:141.840000pt;}
.x7_c00108{left:620.080000pt;}
.x6_c00108{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00109;src:url('chunks/assets/font_00965759873e6485a9259dc5.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00109;src:url('chunks/assets/font_432286f358cae323280f1288.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00109;src:url('chunks/assets/font_a8bf964ada37b325c384a77f.woff2')format("woff");}.ff4_c00109{font-family:ff4_c00109;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00109;src:url('chunks/assets/font_148267d75320d1a91b857d96.woff2')format("woff");}.ff5_c00109{font-family:ff5_c00109;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.v1_c00109{vertical-align:82.800000px;}
.ls6_c00109{letter-spacing:-0.288000px;}
.ls5_c00109{letter-spacing:-0.072000px;}
.ls3_c00109{letter-spacing:0.000000px;}
.ls0_c00109{letter-spacing:0.072000px;}
.ls1_c00109{letter-spacing:0.144000px;}
.ls4_c00109{letter-spacing:0.197640px;}
.ls2_c00109{letter-spacing:28.080000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00109{word-spacing:-18.144000px;}
.ws6_c00109{word-spacing:-18.072000px;}
.ws4_c00109{word-spacing:-18.000000px;}
.ws1_c00109{word-spacing:-17.928000px;}
.wse_c00109{word-spacing:-0.360000px;}
.wsd_c00109{word-spacing:-0.144000px;}
.wsa_c00109{word-spacing:-0.131760px;}
.wsb_c00109{word-spacing:-0.072000px;}
.ws9_c00109{word-spacing:0.000000px;}
.wsc_c00109{word-spacing:0.072000px;}
.ws8_c00109{word-spacing:0.144000px;}
.ws13_c00109{word-spacing:0.288000px;}
.ws1b_c00109{word-spacing:0.360000px;}
.ws16_c00109{word-spacing:0.648000px;}
.ws20_c00109{word-spacing:1.080000px;}
.ws1c_c00109{word-spacing:1.440000px;}
.ws18_c00109{word-spacing:3.456000px;}
.wsf_c00109{word-spacing:3.528000px;}
.ws10_c00109{word-spacing:3.600000px;}
.ws15_c00109{word-spacing:8.568000px;}
.ws14_c00109{word-spacing:8.640000px;}
.ws12_c00109{word-spacing:10.008000px;}
.ws11_c00109{word-spacing:10.080000px;}
.ws7_c00109{word-spacing:10.152000px;}
.ws1d_c00109{word-spacing:11.880000px;}
.ws17_c00109{word-spacing:16.920000px;}
.ws19_c00109{word-spacing:19.008000px;}
.ws1a_c00109{word-spacing:19.080000px;}
.ws1f_c00109{word-spacing:35.208000px;}
.ws1e_c00109{word-spacing:35.640000px;}
.ws3_c00109{word-spacing:396.936000px;}
.ws5_c00109{word-spacing:508.680000px;}
.ws2_c00109{word-spacing:640.152000px;}
._1_c00109{margin-left:-1.185840px;}
._0_c00109{width:1.185840px;}
._6_c00109{width:8.712000px;}
._5_c00109{width:20.304000px;}
._3_c00109{width:190.584000px;}
._2_c00109{width:263.697840px;}
._4_c00109{width:656.784000px;}
.fc1_c00109{color:rgb(0,0,0);}
.fc0_c00109{color:rgb(35,31,32);}
.fs1_c00109{font-size:65.880000px;}
.fs0_c00109{font-size:72.000000px;}
.y0_c00109{bottom:0.000000px;}
.y7_c00109{bottom:3.959400px;}
.y13_c00109{bottom:4.139400px;}
.y6_c00109{bottom:24.659250px;}
.y1_c00109{bottom:61.748550px;}
.y22_c00109{bottom:157.184250px;}
.y21_c00109{bottom:188.144250px;}
.y20_c00109{bottom:219.284250px;}
.y1f_c00109{bottom:250.334250px;}
.y1e_c00109{bottom:281.384250px;}
.y1d_c00109{bottom:312.434250px;}
.y1c_c00109{bottom:343.484250px;}
.y1b_c00109{bottom:405.584250px;}
.y1a_c00109{bottom:436.634250px;}
.y19_c00109{bottom:467.684250px;}
.y18_c00109{bottom:498.734250px;}
.y17_c00109{bottom:529.694250px;}
.y16_c00109{bottom:560.744250px;}
.y15_c00109{bottom:591.794250px;}
.y12_c00109{bottom:671.265000px;}
.y14_c00109{bottom:696.104250px;}
.y11_c00109{bottom:696.104400px;}
.y10_c00109{bottom:737.504400px;}
.yf_c00109{bottom:758.204400px;}
.ye_c00109{bottom:778.904400px;}
.yd_c00109{bottom:799.604400px;}
.yc_c00109{bottom:820.304400px;}
.yb_c00109{bottom:882.314400px;}
.ya_c00109{bottom:903.014400px;}
.y9_c00109{bottom:965.114250px;}
.y8_c00109{bottom:985.814250px;}
.y5_c00109{bottom:1023.885000px;}
.y4_c00109{bottom:1110.104400px;}
.y3_c00109{bottom:1139.984400px;}
.y2_c00109{bottom:1194.074400px;}
.h6_c00109{height:41.398500px;}
.h2_c00109{height:50.400000px;}
.h3_c00109{height:54.331699px;}
.h8_c00109{height:62.100000px;}
.h5_c00109{height:71.413920px;}
.h4_c00109{height:76.824000px;}
.h9_c00109{height:78.048000px;}
.h7_c00109{height:159.624000px;}
.h0_c00109{height:1262.835000px;}
.h1_c00109{height:1263.000000px;}
.w2_c00109{width:199.443000px;}
.w4_c00109{width:216.180000px;}
.w3_c00109{width:232.650000px;}
.w0_c00109{width:892.914000px;}
.w1_c00109{width:893.250000px;}
.x0_c00109{left:0.000000px;}
.x6_c00109{left:12.060000px;}
.x14_c00109{left:48.060000px;}
.x4_c00109{left:51.210000px;}
.x1_c00109{left:54.000000px;}
.x7_c00109{left:59.580000px;}
.x3_c00109{left:119.520000px;}
.x2_c00109{left:127.620000px;}
.x15_c00109{left:159.570000px;}
.x5_c00109{left:318.960000px;}
.xb_c00109{left:327.780000px;}
.xc_c00109{left:357.750000px;}
.xd_c00109{left:391.500000px;}
.x9_c00109{left:393.030000px;}
.x8_c00109{left:551.610000px;}
.xf_c00109{left:566.190000px;}
.xe_c00109{left:574.380000px;}
.x10_c00109{left:588.960000px;}
.x13_c00109{left:594.630000px;}
.x11_c00109{left:598.680000px;}
.x12_c00109{left:617.400000px;}
.xa_c00109{left:624.960000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.v1_c00109{vertical-align:73.600000pt;}
.ls6_c00109{letter-spacing:-0.256000pt;}
.ls5_c00109{letter-spacing:-0.064000pt;}
.ls3_c00109{letter-spacing:0.000000pt;}
.ls0_c00109{letter-spacing:0.064000pt;}
.ls1_c00109{letter-spacing:0.128000pt;}
.ls4_c00109{letter-spacing:0.175680pt;}
.ls2_c00109{letter-spacing:24.960000pt;}
.ws0_c00109{word-spacing:-16.128000pt;}
.ws6_c00109{word-spacing:-16.064000pt;}
.ws4_c00109{word-spacing:-16.000000pt;}
.ws1_c00109{word-spacing:-15.936000pt;}
.wse_c00109{word-spacing:-0.320000pt;}
.wsd_c00109{word-spacing:-0.128000pt;}
.wsa_c00109{word-spacing:-0.117120pt;}
.wsb_c00109{word-spacing:-0.064000pt;}
.ws9_c00109{word-spacing:0.000000pt;}
.wsc_c00109{word-spacing:0.064000pt;}
.ws8_c00109{word-spacing:0.128000pt;}
.ws13_c00109{word-spacing:0.256000pt;}
.ws1b_c00109{word-spacing:0.320000pt;}
.ws16_c00109{word-spacing:0.576000pt;}
.ws20_c00109{word-spacing:0.960000pt;}
.ws1c_c00109{word-spacing:1.280000pt;}
.ws18_c00109{word-spacing:3.072000pt;}
.wsf_c00109{word-spacing:3.136000pt;}
.ws10_c00109{word-spacing:3.200000pt;}
.ws15_c00109{word-spacing:7.616000pt;}
.ws14_c00109{word-spacing:7.680000pt;}
.ws12_c00109{word-spacing:8.896000pt;}
.ws11_c00109{word-spacing:8.960000pt;}
.ws7_c00109{word-spacing:9.024000pt;}
.ws1d_c00109{word-spacing:10.560000pt;}
.ws17_c00109{word-spacing:15.040000pt;}
.ws19_c00109{word-spacing:16.896000pt;}
.ws1a_c00109{word-spacing:16.960000pt;}
.ws1f_c00109{word-spacing:31.296000pt;}
.ws1e_c00109{word-spacing:31.680000pt;}
.ws3_c00109{word-spacing:352.832000pt;}
.ws5_c00109{word-spacing:452.160000pt;}
.ws2_c00109{word-spacing:569.024000pt;}
._1_c00109{margin-left:-1.054080pt;}
._0_c00109{width:1.054080pt;}
._6_c00109{width:7.744000pt;}
._5_c00109{width:18.048000pt;}
._3_c00109{width:169.408000pt;}
._2_c00109{width:234.398080pt;}
._4_c00109{width:583.808000pt;}
.fs1_c00109{font-size:58.560000pt;}
.fs0_c00109{font-size:64.000000pt;}
.y0_c00109{bottom:0.000000pt;}
.y7_c00109{bottom:3.519467pt;}
.y13_c00109{bottom:3.679467pt;}
.y6_c00109{bottom:21.919333pt;}
.y1_c00109{bottom:54.887600pt;}
.y22_c00109{bottom:139.719333pt;}
.y21_c00109{bottom:167.239333pt;}
.y20_c00109{bottom:194.919333pt;}
.y1f_c00109{bottom:222.519333pt;}
.y1e_c00109{bottom:250.119333pt;}
.y1d_c00109{bottom:277.719333pt;}
.y1c_c00109{bottom:305.319333pt;}
.y1b_c00109{bottom:360.519333pt;}
.y1a_c00109{bottom:388.119333pt;}
.y19_c00109{bottom:415.719333pt;}
.y18_c00109{bottom:443.319333pt;}
.y17_c00109{bottom:470.839333pt;}
.y16_c00109{bottom:498.439333pt;}
.y15_c00109{bottom:526.039333pt;}
.y12_c00109{bottom:596.680000pt;}
.y14_c00109{bottom:618.759333pt;}
.y11_c00109{bottom:618.759467pt;}
.y10_c00109{bottom:655.559467pt;}
.yf_c00109{bottom:673.959467pt;}
.ye_c00109{bottom:692.359467pt;}
.yd_c00109{bottom:710.759467pt;}
.yc_c00109{bottom:729.159467pt;}
.yb_c00109{bottom:784.279467pt;}
.ya_c00109{bottom:802.679467pt;}
.y9_c00109{bottom:857.879333pt;}
.y8_c00109{bottom:876.279333pt;}
.y5_c00109{bottom:910.120000pt;}
.y4_c00109{bottom:986.759467pt;}
.y3_c00109{bottom:1013.319467pt;}
.y2_c00109{bottom:1061.399467pt;}
.h6_c00109{height:36.798667pt;}
.h2_c00109{height:44.800000pt;}
.h3_c00109{height:48.294844pt;}
.h8_c00109{height:55.200000pt;}
.h5_c00109{height:63.479040pt;}
.h4_c00109{height:68.288000pt;}
.h9_c00109{height:69.376000pt;}
.h7_c00109{height:141.888000pt;}
.h0_c00109{height:1122.520000pt;}
.h1_c00109{height:1122.666667pt;}
.w2_c00109{width:177.282667pt;}
.w4_c00109{width:192.160000pt;}
.w3_c00109{width:206.800000pt;}
.w0_c00109{width:793.701333pt;}
.w1_c00109{width:794.000000pt;}
.x0_c00109{left:0.000000pt;}
.x6_c00109{left:10.720000pt;}
.x14_c00109{left:42.720000pt;}
.x4_c00109{left:45.520000pt;}
.x1_c00109{left:48.000000pt;}
.x7_c00109{left:52.960000pt;}
.x3_c00109{left:106.240000pt;}
.x2_c00109{left:113.440000pt;}
.x15_c00109{left:141.840000pt;}
.x5_c00109{left:283.520000pt;}
.xb_c00109{left:291.360000pt;}
.xc_c00109{left:318.000000pt;}
.xd_c00109{left:348.000000pt;}
.x9_c00109{left:349.360000pt;}
.x8_c00109{left:490.320000pt;}
.xf_c00109{left:503.280000pt;}
.xe_c00109{left:510.560000pt;}
.x10_c00109{left:523.520000pt;}
.x13_c00109{left:528.560000pt;}
.x11_c00109{left:532.160000pt;}
.x12_c00109{left:548.800000pt;}
.xa_c00109{left:555.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00110;src:url('chunks/assets/font_65a9ca8f8f8c077e065a3608.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00110;src:url('chunks/assets/font_31f01cdbe785907928f62df4.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00110;src:url('chunks/assets/font_af418cf23941b3acba68579c.woff2')format("woff");}.ff4_c00110{font-family:ff4_c00110;line-height:1.592000;font-style:normal;font-weight:normal;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_d35c2ba53fcf3919028a6c15.woff2')format("woff");}.ff5_c00110{font-family:ff5_c00110;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00110;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00110{font-family:ff6_c00110;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00110;src:url('chunks/assets/font_83945380d17f67dff7e17701.woff2')format("woff");}.ff7_c00110{font-family:ff7_c00110;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00110;src:url('chunks/assets/font_4beef786988794ee76c79c5b.woff2')format("woff");}.ff8_c00110{font-family:ff8_c00110;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00110;src:url('chunks/assets/font_f08f39398895e45da2211570.woff2')format("woff");}.ff9_c00110{font-family:ff9_c00110;line-height:1.592000;font-style:normal;font-weight: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_c00110;src:url('chunks/assets/font_71fcd7a211853d0dd2688400.woff2')format("woff");}.ffa_c00110{font-family:ffa_c00110;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.v1_c00110{vertical-align:82.800000px;}
.ls8_c00110{letter-spacing:-0.288000px;}
.ls7_c00110{letter-spacing:-0.072000px;}
.ls5_c00110{letter-spacing:0.000000px;}
.ls0_c00110{letter-spacing:0.072000px;}
.ls1_c00110{letter-spacing:0.144000px;}
.ls6_c00110{letter-spacing:0.197640px;}
.ls4_c00110{letter-spacing:21.276000px;}
.ls2_c00110{letter-spacing:28.080000px;}
.ls3_c00110{letter-spacing:46.080000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00110{word-spacing:-18.144000px;}
.ws6_c00110{word-spacing:-18.072000px;}
.ws4_c00110{word-spacing:-18.000000px;}
.ws1_c00110{word-spacing:-17.928000px;}
.ws11_c00110{word-spacing:-0.360000px;}
.ws10_c00110{word-spacing:-0.144000px;}
.wsd_c00110{word-spacing:-0.131760px;}
.wse_c00110{word-spacing:-0.072000px;}
.wsc_c00110{word-spacing:0.000000px;}
.wsf_c00110{word-spacing:0.072000px;}
.ws8_c00110{word-spacing:0.144000px;}
.ws16_c00110{word-spacing:0.288000px;}
.ws1e_c00110{word-spacing:0.360000px;}
.ws19_c00110{word-spacing:0.648000px;}
.ws23_c00110{word-spacing:1.080000px;}
.ws1f_c00110{word-spacing:1.440000px;}
.ws30_c00110{word-spacing:2.376000px;}
.ws2f_c00110{word-spacing:2.448000px;}
.ws31_c00110{word-spacing:2.520000px;}
.ws3e_c00110{word-spacing:3.024000px;}
.ws3a_c00110{word-spacing:3.168000px;}
.ws3b_c00110{word-spacing:3.240000px;}
.ws1b_c00110{word-spacing:3.456000px;}
.ws12_c00110{word-spacing:3.528000px;}
.ws13_c00110{word-spacing:3.600000px;}
.ws28_c00110{word-spacing:4.248000px;}
.ws27_c00110{word-spacing:4.320000px;}
.ws2a_c00110{word-spacing:4.608000px;}
.wsa_c00110{word-spacing:4.680000px;}
.ws2c_c00110{word-spacing:6.624000px;}
.ws2d_c00110{word-spacing:6.768000px;}
.ws2b_c00110{word-spacing:6.840000px;}
.ws36_c00110{word-spacing:6.912000px;}
.ws35_c00110{word-spacing:7.128000px;}
.wsb_c00110{word-spacing:7.200000px;}
.ws2e_c00110{word-spacing:7.848000px;}
.ws18_c00110{word-spacing:8.568000px;}
.ws17_c00110{word-spacing:8.640000px;}
.ws38_c00110{word-spacing:8.928000px;}
.ws39_c00110{word-spacing:9.000000px;}
.ws15_c00110{word-spacing:10.008000px;}
.ws14_c00110{word-spacing:10.080000px;}
.ws7_c00110{word-spacing:10.152000px;}
.ws33_c00110{word-spacing:11.448000px;}
.ws32_c00110{word-spacing:11.520000px;}
.ws20_c00110{word-spacing:11.880000px;}
.ws24_c00110{word-spacing:12.528000px;}
.ws25_c00110{word-spacing:12.960000px;}
.ws1a_c00110{word-spacing:16.920000px;}
.ws1c_c00110{word-spacing:19.008000px;}
.ws1d_c00110{word-spacing:19.080000px;}
.ws37_c00110{word-spacing:21.600000px;}
.ws26_c00110{word-spacing:22.608000px;}
.ws29_c00110{word-spacing:23.328000px;}
.ws34_c00110{word-spacing:27.360000px;}
.ws3c_c00110{word-spacing:28.008000px;}
.ws3d_c00110{word-spacing:28.080000px;}
.ws22_c00110{word-spacing:35.208000px;}
.ws21_c00110{word-spacing:35.640000px;}
.ws9_c00110{word-spacing:104.400000px;}
.ws3_c00110{word-spacing:396.936000px;}
.ws5_c00110{word-spacing:508.680000px;}
.ws2_c00110{word-spacing:640.152000px;}
._1_c00110{margin-left:-1.185840px;}
._0_c00110{width:1.185840px;}
._7_c00110{width:7.128000px;}
._6_c00110{width:8.712000px;}
._5_c00110{width:20.304000px;}
._8_c00110{width:24.297840px;}
._3_c00110{width:190.584000px;}
._2_c00110{width:263.697840px;}
._4_c00110{width:656.784000px;}
.fc2_c00110{color:transparent;}
.fc1_c00110{color:rgb(0,0,0);}
.fc0_c00110{color:rgb(35,31,32);}
.fs1_c00110{font-size:65.880000px;}
.fs0_c00110{font-size:72.000000px;}
.y0_c00110{bottom:0.000000px;}
.y7_c00110{bottom:3.959400px;}
.y13_c00110{bottom:4.139400px;}
.y6_c00110{bottom:24.659250px;}
.y1_c00110{bottom:61.748550px;}
.y3f_c00110{bottom:115.424400px;}
.y3e_c00110{bottom:146.474400px;}
.y21_c00110{bottom:157.184250px;}
.y3d_c00110{bottom:177.524400px;}
.y20_c00110{bottom:188.144250px;}
.y3c_c00110{bottom:208.574400px;}
.y1f_c00110{bottom:219.284250px;}
.y1e_c00110{bottom:250.334250px;}
.y3b_c00110{bottom:270.674400px;}
.y1d_c00110{bottom:281.384250px;}
.y3a_c00110{bottom:301.724400px;}
.y1c_c00110{bottom:312.434250px;}
.y39_c00110{bottom:332.774400px;}
.y1b_c00110{bottom:343.484250px;}
.y38_c00110{bottom:363.824400px;}
.y37_c00110{bottom:394.874400px;}
.y1a_c00110{bottom:405.584250px;}
.y36_c00110{bottom:425.924400px;}
.y19_c00110{bottom:436.634250px;}
.y35_c00110{bottom:456.974400px;}
.y18_c00110{bottom:467.684250px;}
.y34_c00110{bottom:488.024400px;}
.y17_c00110{bottom:498.734250px;}
.y33_c00110{bottom:519.074400px;}
.y16_c00110{bottom:529.694250px;}
.y32_c00110{bottom:550.124400px;}
.y15_c00110{bottom:560.744250px;}
.y14_c00110{bottom:591.794250px;}
.y31_c00110{bottom:612.224400px;}
.y30_c00110{bottom:643.274400px;}
.y12_c00110{bottom:671.265000px;}
.y2f_c00110{bottom:674.324400px;}
.y11_c00110{bottom:696.104250px;}
.y2e_c00110{bottom:705.374400px;}
.y2d_c00110{bottom:736.424400px;}
.y10_c00110{bottom:737.504250px;}
.yf_c00110{bottom:758.204250px;}
.y2c_c00110{bottom:767.474400px;}
.ye_c00110{bottom:778.904250px;}
.y2b_c00110{bottom:798.434400px;}
.yd_c00110{bottom:799.604250px;}
.yc_c00110{bottom:820.304250px;}
.y2a_c00110{bottom:829.484400px;}
.y29_c00110{bottom:860.534400px;}
.yb_c00110{bottom:882.314250px;}
.ya_c00110{bottom:903.014250px;}
.y28_c00110{bottom:922.634400px;}
.y27_c00110{bottom:953.684400px;}
.y9_c00110{bottom:965.114250px;}
.y26_c00110{bottom:984.734400px;}
.y8_c00110{bottom:985.814250px;}
.y25_c00110{bottom:1015.784400px;}
.y5_c00110{bottom:1023.885000px;}
.y24_c00110{bottom:1046.834400px;}
.y23_c00110{bottom:1077.884400px;}
.y4_c00110{bottom:1110.104400px;}
.y22_c00110{bottom:1139.804400px;}
.y3_c00110{bottom:1139.984400px;}
.y2_c00110{bottom:1194.074400px;}
.h6_c00110{height:41.398500px;}
.h2_c00110{height:50.400000px;}
.h3_c00110{height:54.331699px;}
.h8_c00110{height:62.100000px;}
.h5_c00110{height:71.413920px;}
.h4_c00110{height:76.824000px;}
.h9_c00110{height:78.048000px;}
.h7_c00110{height:159.624000px;}
.h0_c00110{height:1262.835000px;}
.h1_c00110{height:1263.000000px;}
.w7_c00110{width:-573.952500px;}
.w3_c00110{width:-573.951000px;}
.w4_c00110{width:-341.304000px;}
.w5_c00110{width:-125.124000px;}
.w2_c00110{width:0.000000px;}
.w6_c00110{width:0.066000px;}
.w0_c00110{width:892.914000px;}
.w1_c00110{width:893.250000px;}
.x1_c00110{left:-838.913400px;}
.x2_c00110{left:-765.293400px;}
.x14_c00110{left:-733.343400px;}
.x3_c00110{left:-722.183400px;}
.xa_c00110{left:-565.133400px;}
.x4_c00110{left:-561.893400px;}
.xb_c00110{left:-535.163400px;}
.x12_c00110{left:-519.593400px;}
.x5_c00110{left:-514.373400px;}
.xc_c00110{left:-501.413400px;}
.x8_c00110{left:-499.883400px;}
.x6_c00110{left:-328.973400px;}
.xe_c00110{left:-326.723400px;}
.xd_c00110{left:-318.533400px;}
.xf_c00110{left:-303.953400px;}
.x13_c00110{left:-298.283400px;}
.x10_c00110{left:-294.233400px;}
.x7_c00110{left:-281.003400px;}
.x11_c00110{left:-275.513400px;}
.x9_c00110{left:-267.953400px;}
.x0_c00110{left:0.000000px;}
.x17_c00110{left:127.620000px;}
.x18_c00110{left:159.570000px;}
.x16_c00110{left:697.590000px;}
.x15_c00110{left:804.366150px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.v1_c00110{vertical-align:73.600000pt;}
.ls8_c00110{letter-spacing:-0.256000pt;}
.ls7_c00110{letter-spacing:-0.064000pt;}
.ls5_c00110{letter-spacing:0.000000pt;}
.ls0_c00110{letter-spacing:0.064000pt;}
.ls1_c00110{letter-spacing:0.128000pt;}
.ls6_c00110{letter-spacing:0.175680pt;}
.ls4_c00110{letter-spacing:18.912000pt;}
.ls2_c00110{letter-spacing:24.960000pt;}
.ls3_c00110{letter-spacing:40.960000pt;}
.ws0_c00110{word-spacing:-16.128000pt;}
.ws6_c00110{word-spacing:-16.064000pt;}
.ws4_c00110{word-spacing:-16.000000pt;}
.ws1_c00110{word-spacing:-15.936000pt;}
.ws11_c00110{word-spacing:-0.320000pt;}
.ws10_c00110{word-spacing:-0.128000pt;}
.wsd_c00110{word-spacing:-0.117120pt;}
.wse_c00110{word-spacing:-0.064000pt;}
.wsc_c00110{word-spacing:0.000000pt;}
.wsf_c00110{word-spacing:0.064000pt;}
.ws8_c00110{word-spacing:0.128000pt;}
.ws16_c00110{word-spacing:0.256000pt;}
.ws1e_c00110{word-spacing:0.320000pt;}
.ws19_c00110{word-spacing:0.576000pt;}
.ws23_c00110{word-spacing:0.960000pt;}
.ws1f_c00110{word-spacing:1.280000pt;}
.ws30_c00110{word-spacing:2.112000pt;}
.ws2f_c00110{word-spacing:2.176000pt;}
.ws31_c00110{word-spacing:2.240000pt;}
.ws3e_c00110{word-spacing:2.688000pt;}
.ws3a_c00110{word-spacing:2.816000pt;}
.ws3b_c00110{word-spacing:2.880000pt;}
.ws1b_c00110{word-spacing:3.072000pt;}
.ws12_c00110{word-spacing:3.136000pt;}
.ws13_c00110{word-spacing:3.200000pt;}
.ws28_c00110{word-spacing:3.776000pt;}
.ws27_c00110{word-spacing:3.840000pt;}
.ws2a_c00110{word-spacing:4.096000pt;}
.wsa_c00110{word-spacing:4.160000pt;}
.ws2c_c00110{word-spacing:5.888000pt;}
.ws2d_c00110{word-spacing:6.016000pt;}
.ws2b_c00110{word-spacing:6.080000pt;}
.ws36_c00110{word-spacing:6.144000pt;}
.ws35_c00110{word-spacing:6.336000pt;}
.wsb_c00110{word-spacing:6.400000pt;}
.ws2e_c00110{word-spacing:6.976000pt;}
.ws18_c00110{word-spacing:7.616000pt;}
.ws17_c00110{word-spacing:7.680000pt;}
.ws38_c00110{word-spacing:7.936000pt;}
.ws39_c00110{word-spacing:8.000000pt;}
.ws15_c00110{word-spacing:8.896000pt;}
.ws14_c00110{word-spacing:8.960000pt;}
.ws7_c00110{word-spacing:9.024000pt;}
.ws33_c00110{word-spacing:10.176000pt;}
.ws32_c00110{word-spacing:10.240000pt;}
.ws20_c00110{word-spacing:10.560000pt;}
.ws24_c00110{word-spacing:11.136000pt;}
.ws25_c00110{word-spacing:11.520000pt;}
.ws1a_c00110{word-spacing:15.040000pt;}
.ws1c_c00110{word-spacing:16.896000pt;}
.ws1d_c00110{word-spacing:16.960000pt;}
.ws37_c00110{word-spacing:19.200000pt;}
.ws26_c00110{word-spacing:20.096000pt;}
.ws29_c00110{word-spacing:20.736000pt;}
.ws34_c00110{word-spacing:24.320000pt;}
.ws3c_c00110{word-spacing:24.896000pt;}
.ws3d_c00110{word-spacing:24.960000pt;}
.ws22_c00110{word-spacing:31.296000pt;}
.ws21_c00110{word-spacing:31.680000pt;}
.ws9_c00110{word-spacing:92.800000pt;}
.ws3_c00110{word-spacing:352.832000pt;}
.ws5_c00110{word-spacing:452.160000pt;}
.ws2_c00110{word-spacing:569.024000pt;}
._1_c00110{margin-left:-1.054080pt;}
._0_c00110{width:1.054080pt;}
._7_c00110{width:6.336000pt;}
._6_c00110{width:7.744000pt;}
._5_c00110{width:18.048000pt;}
._8_c00110{width:21.598080pt;}
._3_c00110{width:169.408000pt;}
._2_c00110{width:234.398080pt;}
._4_c00110{width:583.808000pt;}
.fs1_c00110{font-size:58.560000pt;}
.fs0_c00110{font-size:64.000000pt;}
.y0_c00110{bottom:0.000000pt;}
.y7_c00110{bottom:3.519467pt;}
.y13_c00110{bottom:3.679467pt;}
.y6_c00110{bottom:21.919333pt;}
.y1_c00110{bottom:54.887600pt;}
.y3f_c00110{bottom:102.599467pt;}
.y3e_c00110{bottom:130.199467pt;}
.y21_c00110{bottom:139.719333pt;}
.y3d_c00110{bottom:157.799467pt;}
.y20_c00110{bottom:167.239333pt;}
.y3c_c00110{bottom:185.399467pt;}
.y1f_c00110{bottom:194.919333pt;}
.y1e_c00110{bottom:222.519333pt;}
.y3b_c00110{bottom:240.599467pt;}
.y1d_c00110{bottom:250.119333pt;}
.y3a_c00110{bottom:268.199467pt;}
.y1c_c00110{bottom:277.719333pt;}
.y39_c00110{bottom:295.799467pt;}
.y1b_c00110{bottom:305.319333pt;}
.y38_c00110{bottom:323.399467pt;}
.y37_c00110{bottom:350.999467pt;}
.y1a_c00110{bottom:360.519333pt;}
.y36_c00110{bottom:378.599467pt;}
.y19_c00110{bottom:388.119333pt;}
.y35_c00110{bottom:406.199467pt;}
.y18_c00110{bottom:415.719333pt;}
.y34_c00110{bottom:433.799467pt;}
.y17_c00110{bottom:443.319333pt;}
.y33_c00110{bottom:461.399467pt;}
.y16_c00110{bottom:470.839333pt;}
.y32_c00110{bottom:488.999467pt;}
.y15_c00110{bottom:498.439333pt;}
.y14_c00110{bottom:526.039333pt;}
.y31_c00110{bottom:544.199467pt;}
.y30_c00110{bottom:571.799467pt;}
.y12_c00110{bottom:596.680000pt;}
.y2f_c00110{bottom:599.399467pt;}
.y11_c00110{bottom:618.759333pt;}
.y2e_c00110{bottom:626.999467pt;}
.y2d_c00110{bottom:654.599467pt;}
.y10_c00110{bottom:655.559333pt;}
.yf_c00110{bottom:673.959333pt;}
.y2c_c00110{bottom:682.199467pt;}
.ye_c00110{bottom:692.359333pt;}
.y2b_c00110{bottom:709.719467pt;}
.yd_c00110{bottom:710.759333pt;}
.yc_c00110{bottom:729.159333pt;}
.y2a_c00110{bottom:737.319467pt;}
.y29_c00110{bottom:764.919467pt;}
.yb_c00110{bottom:784.279333pt;}
.ya_c00110{bottom:802.679333pt;}
.y28_c00110{bottom:820.119467pt;}
.y27_c00110{bottom:847.719467pt;}
.y9_c00110{bottom:857.879333pt;}
.y26_c00110{bottom:875.319467pt;}
.y8_c00110{bottom:876.279333pt;}
.y25_c00110{bottom:902.919467pt;}
.y5_c00110{bottom:910.120000pt;}
.y24_c00110{bottom:930.519467pt;}
.y23_c00110{bottom:958.119467pt;}
.y4_c00110{bottom:986.759467pt;}
.y22_c00110{bottom:1013.159467pt;}
.y3_c00110{bottom:1013.319467pt;}
.y2_c00110{bottom:1061.399467pt;}
.h6_c00110{height:36.798667pt;}
.h2_c00110{height:44.800000pt;}
.h3_c00110{height:48.294844pt;}
.h8_c00110{height:55.200000pt;}
.h5_c00110{height:63.479040pt;}
.h4_c00110{height:68.288000pt;}
.h9_c00110{height:69.376000pt;}
.h7_c00110{height:141.888000pt;}
.h0_c00110{height:1122.520000pt;}
.h1_c00110{height:1122.666667pt;}
.w7_c00110{width:-510.180000pt;}
.w3_c00110{width:-510.178667pt;}
.w4_c00110{width:-303.381333pt;}
.w5_c00110{width:-111.221333pt;}
.w2_c00110{width:0.000000pt;}
.w6_c00110{width:0.058667pt;}
.w0_c00110{width:793.701333pt;}
.w1_c00110{width:794.000000pt;}
.x1_c00110{left:-745.700800pt;}
.x2_c00110{left:-680.260800pt;}
.x14_c00110{left:-651.860800pt;}
.x3_c00110{left:-641.940800pt;}
.xa_c00110{left:-502.340800pt;}
.x4_c00110{left:-499.460800pt;}
.xb_c00110{left:-475.700800pt;}
.x12_c00110{left:-461.860800pt;}
.x5_c00110{left:-457.220800pt;}
.xc_c00110{left:-445.700800pt;}
.x8_c00110{left:-444.340800pt;}
.x6_c00110{left:-292.420800pt;}
.xe_c00110{left:-290.420800pt;}
.xd_c00110{left:-283.140800pt;}
.xf_c00110{left:-270.180800pt;}
.x13_c00110{left:-265.140800pt;}
.x10_c00110{left:-261.540800pt;}
.x7_c00110{left:-249.780800pt;}
.x11_c00110{left:-244.900800pt;}
.x9_c00110{left:-238.180800pt;}
.x0_c00110{left:0.000000pt;}
.x17_c00110{left:113.440000pt;}
.x18_c00110{left:141.840000pt;}
.x16_c00110{left:620.080000pt;}
.x15_c00110{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00111;src:url('chunks/assets/font_0f3c6548d03a877f25c6871f.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00111;src:url('chunks/assets/font_65589e023ec93d96bd2b854c.woff2')format("woff");}.ff3_c00111{font-family:ff3_c00111;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00111;src:url('chunks/assets/font_27e279109a0ff7c4e671dc1c.woff2')format("woff");}.ff4_c00111{font-family:ff4_c00111;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls7_c00111{letter-spacing:-0.360000px;}
.ls6_c00111{letter-spacing:-0.072000px;}
.ls5_c00111{letter-spacing:0.000000px;}
.ls1_c00111{letter-spacing:0.072000px;}
.ls0_c00111{letter-spacing:0.144000px;}
.ls4_c00111{letter-spacing:18.079200px;}
.ls2_c00111{letter-spacing:27.000000px;}
.ls3_c00111{letter-spacing:31.320000px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00111{word-spacing:-18.144000px;}
.ws2_c00111{word-spacing:-18.072000px;}
.ws6_c00111{word-spacing:-18.000000px;}
.wsb_c00111{word-spacing:-17.640000px;}
.ws7_c00111{word-spacing:-0.144000px;}
.wse_c00111{word-spacing:-0.131760px;}
.ws12_c00111{word-spacing:-0.072000px;}
.wsd_c00111{word-spacing:0.000000px;}
.ws22_c00111{word-spacing:0.288000px;}
.ws19_c00111{word-spacing:0.648000px;}
.ws18_c00111{word-spacing:1.080000px;}
.ws17_c00111{word-spacing:1.440000px;}
.ws1f_c00111{word-spacing:4.968000px;}
.ws8_c00111{word-spacing:6.350400px;}
.ws1c_c00111{word-spacing:6.408000px;}
.ws1d_c00111{word-spacing:6.480000px;}
.ws21_c00111{word-spacing:7.848000px;}
.ws13_c00111{word-spacing:9.000000px;}
.ws5_c00111{word-spacing:9.216000px;}
.ws1b_c00111{word-spacing:9.864000px;}
.ws14_c00111{word-spacing:10.008000px;}
.ws1a_c00111{word-spacing:10.080000px;}
.ws20_c00111{word-spacing:13.320000px;}
.ws16_c00111{word-spacing:15.768000px;}
.ws15_c00111{word-spacing:15.840000px;}
.ws11_c00111{word-spacing:20.448000px;}
.ws10_c00111{word-spacing:22.968000px;}
.ws3_c00111{word-spacing:23.040000px;}
.ws1_c00111{word-spacing:23.112000px;}
.wsf_c00111{word-spacing:23.328000px;}
.ws0_c00111{word-spacing:23.400000px;}
.wsc_c00111{word-spacing:23.616000px;}
.ws24_c00111{word-spacing:23.688000px;}
.ws23_c00111{word-spacing:23.760000px;}
.ws1e_c00111{word-spacing:24.768000px;}
.wsa_c00111{word-spacing:25.200000px;}
.ws4_c00111{word-spacing:104.400000px;}
._1_c00111{margin-left:-1.512000px;}
._0_c00111{width:1.185840px;}
._3_c00111{width:23.976000px;}
._2_c00111{width:27.072000px;}
.fc1_c00111{color:rgb(0,0,0);}
.fc0_c00111{color:rgb(35,31,32);}
.fs1_c00111{font-size:65.880000px;}
.fs0_c00111{font-size:72.000000px;}
.y0_c00111{bottom:0.000000px;}
.y1_c00111{bottom:61.748550px;}
.y1d_c00111{bottom:146.474400px;}
.y1c_c00111{bottom:177.524400px;}
.y1b_c00111{bottom:208.574400px;}
.y1a_c00111{bottom:239.624400px;}
.y19_c00111{bottom:301.724400px;}
.y18_c00111{bottom:332.774400px;}
.y17_c00111{bottom:363.824400px;}
.y16_c00111{bottom:394.874400px;}
.y15_c00111{bottom:425.924400px;}
.y14_c00111{bottom:456.974400px;}
.y13_c00111{bottom:519.074400px;}
.y12_c00111{bottom:550.124400px;}
.y11_c00111{bottom:581.174400px;}
.y10_c00111{bottom:612.224400px;}
.yf_c00111{bottom:674.324400px;}
.ye_c00111{bottom:705.374400px;}
.yd_c00111{bottom:736.424400px;}
.yc_c00111{bottom:767.474400px;}
.yb_c00111{bottom:829.484400px;}
.ya_c00111{bottom:860.534400px;}
.y9_c00111{bottom:891.584400px;}
.y8_c00111{bottom:953.504400px;}
.y7_c00111{bottom:1015.784400px;}
.y6_c00111{bottom:1046.834400px;}
.y5_c00111{bottom:1077.884400px;}
.y4_c00111{bottom:1108.934400px;}
.y3_c00111{bottom:1139.984400px;}
.y2_c00111{bottom:1194.074400px;}
.h2_c00111{height:50.400000px;}
.h3_c00111{height:54.331699px;}
.h4_c00111{height:76.824000px;}
.h0_c00111{height:1262.835000px;}
.h1_c00111{height:1263.000000px;}
.w0_c00111{width:892.914000px;}
.w1_c00111{width:893.250000px;}
.x0_c00111{left:0.000000px;}
.x1_c00111{left:54.000000px;}
.x2_c00111{left:127.620000px;}
.x3_c00111{left:159.570000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls7_c00111{letter-spacing:-0.320000pt;}
.ls6_c00111{letter-spacing:-0.064000pt;}
.ls5_c00111{letter-spacing:0.000000pt;}
.ls1_c00111{letter-spacing:0.064000pt;}
.ls0_c00111{letter-spacing:0.128000pt;}
.ls4_c00111{letter-spacing:16.070400pt;}
.ls2_c00111{letter-spacing:24.000000pt;}
.ls3_c00111{letter-spacing:27.840000pt;}
.ws9_c00111{word-spacing:-16.128000pt;}
.ws2_c00111{word-spacing:-16.064000pt;}
.ws6_c00111{word-spacing:-16.000000pt;}
.wsb_c00111{word-spacing:-15.680000pt;}
.ws7_c00111{word-spacing:-0.128000pt;}
.wse_c00111{word-spacing:-0.117120pt;}
.ws12_c00111{word-spacing:-0.064000pt;}
.wsd_c00111{word-spacing:0.000000pt;}
.ws22_c00111{word-spacing:0.256000pt;}
.ws19_c00111{word-spacing:0.576000pt;}
.ws18_c00111{word-spacing:0.960000pt;}
.ws17_c00111{word-spacing:1.280000pt;}
.ws1f_c00111{word-spacing:4.416000pt;}
.ws8_c00111{word-spacing:5.644800pt;}
.ws1c_c00111{word-spacing:5.696000pt;}
.ws1d_c00111{word-spacing:5.760000pt;}
.ws21_c00111{word-spacing:6.976000pt;}
.ws13_c00111{word-spacing:8.000000pt;}
.ws5_c00111{word-spacing:8.192000pt;}
.ws1b_c00111{word-spacing:8.768000pt;}
.ws14_c00111{word-spacing:8.896000pt;}
.ws1a_c00111{word-spacing:8.960000pt;}
.ws20_c00111{word-spacing:11.840000pt;}
.ws16_c00111{word-spacing:14.016000pt;}
.ws15_c00111{word-spacing:14.080000pt;}
.ws11_c00111{word-spacing:18.176000pt;}
.ws10_c00111{word-spacing:20.416000pt;}
.ws3_c00111{word-spacing:20.480000pt;}
.ws1_c00111{word-spacing:20.544000pt;}
.wsf_c00111{word-spacing:20.736000pt;}
.ws0_c00111{word-spacing:20.800000pt;}
.wsc_c00111{word-spacing:20.992000pt;}
.ws24_c00111{word-spacing:21.056000pt;}
.ws23_c00111{word-spacing:21.120000pt;}
.ws1e_c00111{word-spacing:22.016000pt;}
.wsa_c00111{word-spacing:22.400000pt;}
.ws4_c00111{word-spacing:92.800000pt;}
._1_c00111{margin-left:-1.344000pt;}
._0_c00111{width:1.054080pt;}
._3_c00111{width:21.312000pt;}
._2_c00111{width:24.064000pt;}
.fs1_c00111{font-size:58.560000pt;}
.fs0_c00111{font-size:64.000000pt;}
.y0_c00111{bottom:0.000000pt;}
.y1_c00111{bottom:54.887600pt;}
.y1d_c00111{bottom:130.199467pt;}
.y1c_c00111{bottom:157.799467pt;}
.y1b_c00111{bottom:185.399467pt;}
.y1a_c00111{bottom:212.999467pt;}
.y19_c00111{bottom:268.199467pt;}
.y18_c00111{bottom:295.799467pt;}
.y17_c00111{bottom:323.399467pt;}
.y16_c00111{bottom:350.999467pt;}
.y15_c00111{bottom:378.599467pt;}
.y14_c00111{bottom:406.199467pt;}
.y13_c00111{bottom:461.399467pt;}
.y12_c00111{bottom:488.999467pt;}
.y11_c00111{bottom:516.599467pt;}
.y10_c00111{bottom:544.199467pt;}
.yf_c00111{bottom:599.399467pt;}
.ye_c00111{bottom:626.999467pt;}
.yd_c00111{bottom:654.599467pt;}
.yc_c00111{bottom:682.199467pt;}
.yb_c00111{bottom:737.319467pt;}
.ya_c00111{bottom:764.919467pt;}
.y9_c00111{bottom:792.519467pt;}
.y8_c00111{bottom:847.559467pt;}
.y7_c00111{bottom:902.919467pt;}
.y6_c00111{bottom:930.519467pt;}
.y5_c00111{bottom:958.119467pt;}
.y4_c00111{bottom:985.719467pt;}
.y3_c00111{bottom:1013.319467pt;}
.y2_c00111{bottom:1061.399467pt;}
.h2_c00111{height:44.800000pt;}
.h3_c00111{height:48.294844pt;}
.h4_c00111{height:68.288000pt;}
.h0_c00111{height:1122.520000pt;}
.h1_c00111{height:1122.666667pt;}
.w0_c00111{width:793.701333pt;}
.w1_c00111{width:794.000000pt;}
.x0_c00111{left:0.000000pt;}
.x1_c00111{left:48.000000pt;}
.x2_c00111{left:113.440000pt;}
.x3_c00111{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00112;src:url('chunks/assets/font_550fd7a5093e37e2ac60c919.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00112;src:url('chunks/assets/font_53066794bab8739f02531d35.woff2')format("woff");}.ff3_c00112{font-family:ff3_c00112;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00112;src:url('chunks/assets/font_fd5e81dae23c42fd91286976.woff2')format("woff");}.ff4_c00112{font-family:ff4_c00112;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00112;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00112{font-family:ff5_c00112;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00112;src:url('chunks/assets/font_e8e55017421f67b66f7268db.woff2')format("woff");}.ff6_c00112{font-family:ff6_c00112;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00112;src:url('chunks/assets/font_c935d09c6c661e293c9fdf71.woff2')format("woff");}.ff7_c00112{font-family:ff7_c00112;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00112;src:url('chunks/assets/font_ecc2a56e5bb6fc054f375404.woff2')format("woff");}.ff8_c00112{font-family:ff8_c00112;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.lsc_c00112{letter-spacing:-0.360000px;}
.lsd_c00112{letter-spacing:-0.216000px;}
.lsb_c00112{letter-spacing:-0.072000px;}
.lsa_c00112{letter-spacing:0.000000px;}
.ls1_c00112{letter-spacing:0.072000px;}
.ls0_c00112{letter-spacing:0.144000px;}
.ls4_c00112{letter-spacing:18.079200px;}
.ls5_c00112{letter-spacing:18.086400px;}
.ls9_c00112{letter-spacing:19.800000px;}
.ls7_c00112{letter-spacing:24.840000px;}
.ls8_c00112{letter-spacing:25.200000px;}
.ls2_c00112{letter-spacing:27.000000px;}
.ls6_c00112{letter-spacing:28.080000px;}
.ls3_c00112{letter-spacing:31.320000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00112{word-spacing:-18.144000px;}
.ws2_c00112{word-spacing:-18.072000px;}
.ws6_c00112{word-spacing:-18.000000px;}
.wsb_c00112{word-spacing:-17.640000px;}
.ws7_c00112{word-spacing:-0.144000px;}
.ws12_c00112{word-spacing:-0.131760px;}
.ws16_c00112{word-spacing:-0.072000px;}
.ws11_c00112{word-spacing:0.000000px;}
.ws31_c00112{word-spacing:0.072000px;}
.ws26_c00112{word-spacing:0.288000px;}
.ws2b_c00112{word-spacing:0.360000px;}
.ws1d_c00112{word-spacing:0.648000px;}
.ws39_c00112{word-spacing:0.720000px;}
.ws1c_c00112{word-spacing:1.080000px;}
.ws1b_c00112{word-spacing:1.440000px;}
.ws36_c00112{word-spacing:1.728000px;}
.ws37_c00112{word-spacing:1.800000px;}
.ws3a_c00112{word-spacing:3.600000px;}
.ws38_c00112{word-spacing:3.960000px;}
.ws29_c00112{word-spacing:4.248000px;}
.ws23_c00112{word-spacing:4.968000px;}
.ws2a_c00112{word-spacing:5.328000px;}
.ws3b_c00112{word-spacing:5.688000px;}
.ws3c_c00112{word-spacing:5.760000px;}
.ws8_c00112{word-spacing:6.357600px;}
.ws20_c00112{word-spacing:6.408000px;}
.ws21_c00112{word-spacing:6.480000px;}
.ws30_c00112{word-spacing:6.768000px;}
.ws2f_c00112{word-spacing:7.128000px;}
.ws2e_c00112{word-spacing:7.200000px;}
.ws33_c00112{word-spacing:7.488000px;}
.ws32_c00112{word-spacing:7.560000px;}
.wsd_c00112{word-spacing:7.704000px;}
.ws25_c00112{word-spacing:7.848000px;}
.ws17_c00112{word-spacing:9.000000px;}
.ws5_c00112{word-spacing:9.216000px;}
.ws1f_c00112{word-spacing:9.864000px;}
.ws2c_c00112{word-spacing:9.936000px;}
.ws18_c00112{word-spacing:10.008000px;}
.ws1e_c00112{word-spacing:10.080000px;}
.ws35_c00112{word-spacing:10.368000px;}
.wsf_c00112{word-spacing:10.584000px;}
.ws24_c00112{word-spacing:13.320000px;}
.ws2d_c00112{word-spacing:13.680000px;}
.ws1a_c00112{word-spacing:15.768000px;}
.ws19_c00112{word-spacing:15.840000px;}
.ws15_c00112{word-spacing:20.448000px;}
.ws14_c00112{word-spacing:22.968000px;}
.ws3_c00112{word-spacing:23.040000px;}
.ws1_c00112{word-spacing:23.112000px;}
.ws13_c00112{word-spacing:23.328000px;}
.ws0_c00112{word-spacing:23.400000px;}
.wsc_c00112{word-spacing:23.616000px;}
.ws28_c00112{word-spacing:23.688000px;}
.ws27_c00112{word-spacing:23.760000px;}
.ws22_c00112{word-spacing:24.768000px;}
.wsa_c00112{word-spacing:25.200000px;}
.ws34_c00112{word-spacing:29.880000px;}
.wse_c00112{word-spacing:38.160000px;}
.ws4_c00112{word-spacing:104.400000px;}
.ws10_c00112{word-spacing:140.400000px;}
._1_c00112{margin-left:-1.519200px;}
._0_c00112{width:1.185840px;}
._4_c00112{width:6.696000px;}
._5_c00112{width:10.440000px;}
._3_c00112{width:23.976000px;}
._2_c00112{width:27.072000px;}
.fc2_c00112{color:transparent;}
.fc1_c00112{color:rgb(0,0,0);}
.fc0_c00112{color:rgb(35,31,32);}
.fs1_c00112{font-size:65.880000px;}
.fs0_c00112{font-size:72.000000px;}
.y0_c00112{bottom:0.000000px;}
.y1_c00112{bottom:61.748550px;}
.y26_c00112{bottom:115.424400px;}
.y1d_c00112{bottom:146.474400px;}
.y1c_c00112{bottom:177.524400px;}
.y1b_c00112{bottom:208.574400px;}
.y1a_c00112{bottom:239.624400px;}
.y25_c00112{bottom:270.674400px;}
.y19_c00112{bottom:301.724400px;}
.y18_c00112{bottom:332.774400px;}
.y17_c00112{bottom:363.824400px;}
.y16_c00112{bottom:394.874400px;}
.y15_c00112{bottom:425.924400px;}
.y14_c00112{bottom:456.974400px;}
.y24_c00112{bottom:488.024400px;}
.y13_c00112{bottom:519.074400px;}
.y12_c00112{bottom:550.124400px;}
.y23_c00112{bottom:580.994400px;}
.y11_c00112{bottom:581.174400px;}
.y10_c00112{bottom:612.224400px;}
.y22_c00112{bottom:643.274400px;}
.yf_c00112{bottom:674.324400px;}
.ye_c00112{bottom:705.374400px;}
.yd_c00112{bottom:736.424400px;}
.yc_c00112{bottom:767.474400px;}
.y21_c00112{bottom:798.434400px;}
.yb_c00112{bottom:829.484400px;}
.ya_c00112{bottom:860.534400px;}
.y9_c00112{bottom:891.584400px;}
.y20_c00112{bottom:922.634400px;}
.y8_c00112{bottom:953.504400px;}
.y1f_c00112{bottom:953.684400px;}
.y1e_c00112{bottom:984.734400px;}
.y7_c00112{bottom:1015.784400px;}
.y6_c00112{bottom:1046.834400px;}
.y5_c00112{bottom:1077.884400px;}
.y4_c00112{bottom:1108.934400px;}
.y3_c00112{bottom:1139.984400px;}
.y2_c00112{bottom:1194.074400px;}
.h2_c00112{height:50.400000px;}
.h3_c00112{height:54.331699px;}
.h4_c00112{height:76.824000px;}
.h0_c00112{height:1262.835000px;}
.h1_c00112{height:1263.000000px;}
.w2_c00112{width:0.000000px;}
.w3_c00112{width:0.066000px;}
.w0_c00112{width:892.914000px;}
.w1_c00112{width:893.250000px;}
.x1_c00112{left:-838.913400px;}
.x2_c00112{left:-765.293400px;}
.x3_c00112{left:-733.343400px;}
.x0_c00112{left:0.000000px;}
.x7_c00112{left:127.620000px;}
.x6_c00112{left:159.570000px;}
.x5_c00112{left:697.590000px;}
.x4_c00112{left:804.366150px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.lsc_c00112{letter-spacing:-0.320000pt;}
.lsd_c00112{letter-spacing:-0.192000pt;}
.lsb_c00112{letter-spacing:-0.064000pt;}
.lsa_c00112{letter-spacing:0.000000pt;}
.ls1_c00112{letter-spacing:0.064000pt;}
.ls0_c00112{letter-spacing:0.128000pt;}
.ls4_c00112{letter-spacing:16.070400pt;}
.ls5_c00112{letter-spacing:16.076800pt;}
.ls9_c00112{letter-spacing:17.600000pt;}
.ls7_c00112{letter-spacing:22.080000pt;}
.ls8_c00112{letter-spacing:22.400000pt;}
.ls2_c00112{letter-spacing:24.000000pt;}
.ls6_c00112{letter-spacing:24.960000pt;}
.ls3_c00112{letter-spacing:27.840000pt;}
.ws9_c00112{word-spacing:-16.128000pt;}
.ws2_c00112{word-spacing:-16.064000pt;}
.ws6_c00112{word-spacing:-16.000000pt;}
.wsb_c00112{word-spacing:-15.680000pt;}
.ws7_c00112{word-spacing:-0.128000pt;}
.ws12_c00112{word-spacing:-0.117120pt;}
.ws16_c00112{word-spacing:-0.064000pt;}
.ws11_c00112{word-spacing:0.000000pt;}
.ws31_c00112{word-spacing:0.064000pt;}
.ws26_c00112{word-spacing:0.256000pt;}
.ws2b_c00112{word-spacing:0.320000pt;}
.ws1d_c00112{word-spacing:0.576000pt;}
.ws39_c00112{word-spacing:0.640000pt;}
.ws1c_c00112{word-spacing:0.960000pt;}
.ws1b_c00112{word-spacing:1.280000pt;}
.ws36_c00112{word-spacing:1.536000pt;}
.ws37_c00112{word-spacing:1.600000pt;}
.ws3a_c00112{word-spacing:3.200000pt;}
.ws38_c00112{word-spacing:3.520000pt;}
.ws29_c00112{word-spacing:3.776000pt;}
.ws23_c00112{word-spacing:4.416000pt;}
.ws2a_c00112{word-spacing:4.736000pt;}
.ws3b_c00112{word-spacing:5.056000pt;}
.ws3c_c00112{word-spacing:5.120000pt;}
.ws8_c00112{word-spacing:5.651200pt;}
.ws20_c00112{word-spacing:5.696000pt;}
.ws21_c00112{word-spacing:5.760000pt;}
.ws30_c00112{word-spacing:6.016000pt;}
.ws2f_c00112{word-spacing:6.336000pt;}
.ws2e_c00112{word-spacing:6.400000pt;}
.ws33_c00112{word-spacing:6.656000pt;}
.ws32_c00112{word-spacing:6.720000pt;}
.wsd_c00112{word-spacing:6.848000pt;}
.ws25_c00112{word-spacing:6.976000pt;}
.ws17_c00112{word-spacing:8.000000pt;}
.ws5_c00112{word-spacing:8.192000pt;}
.ws1f_c00112{word-spacing:8.768000pt;}
.ws2c_c00112{word-spacing:8.832000pt;}
.ws18_c00112{word-spacing:8.896000pt;}
.ws1e_c00112{word-spacing:8.960000pt;}
.ws35_c00112{word-spacing:9.216000pt;}
.wsf_c00112{word-spacing:9.408000pt;}
.ws24_c00112{word-spacing:11.840000pt;}
.ws2d_c00112{word-spacing:12.160000pt;}
.ws1a_c00112{word-spacing:14.016000pt;}
.ws19_c00112{word-spacing:14.080000pt;}
.ws15_c00112{word-spacing:18.176000pt;}
.ws14_c00112{word-spacing:20.416000pt;}
.ws3_c00112{word-spacing:20.480000pt;}
.ws1_c00112{word-spacing:20.544000pt;}
.ws13_c00112{word-spacing:20.736000pt;}
.ws0_c00112{word-spacing:20.800000pt;}
.wsc_c00112{word-spacing:20.992000pt;}
.ws28_c00112{word-spacing:21.056000pt;}
.ws27_c00112{word-spacing:21.120000pt;}
.ws22_c00112{word-spacing:22.016000pt;}
.wsa_c00112{word-spacing:22.400000pt;}
.ws34_c00112{word-spacing:26.560000pt;}
.wse_c00112{word-spacing:33.920000pt;}
.ws4_c00112{word-spacing:92.800000pt;}
.ws10_c00112{word-spacing:124.800000pt;}
._1_c00112{margin-left:-1.350400pt;}
._0_c00112{width:1.054080pt;}
._4_c00112{width:5.952000pt;}
._5_c00112{width:9.280000pt;}
._3_c00112{width:21.312000pt;}
._2_c00112{width:24.064000pt;}
.fs1_c00112{font-size:58.560000pt;}
.fs0_c00112{font-size:64.000000pt;}
.y0_c00112{bottom:0.000000pt;}
.y1_c00112{bottom:54.887600pt;}
.y26_c00112{bottom:102.599467pt;}
.y1d_c00112{bottom:130.199467pt;}
.y1c_c00112{bottom:157.799467pt;}
.y1b_c00112{bottom:185.399467pt;}
.y1a_c00112{bottom:212.999467pt;}
.y25_c00112{bottom:240.599467pt;}
.y19_c00112{bottom:268.199467pt;}
.y18_c00112{bottom:295.799467pt;}
.y17_c00112{bottom:323.399467pt;}
.y16_c00112{bottom:350.999467pt;}
.y15_c00112{bottom:378.599467pt;}
.y14_c00112{bottom:406.199467pt;}
.y24_c00112{bottom:433.799467pt;}
.y13_c00112{bottom:461.399467pt;}
.y12_c00112{bottom:488.999467pt;}
.y23_c00112{bottom:516.439467pt;}
.y11_c00112{bottom:516.599467pt;}
.y10_c00112{bottom:544.199467pt;}
.y22_c00112{bottom:571.799467pt;}
.yf_c00112{bottom:599.399467pt;}
.ye_c00112{bottom:626.999467pt;}
.yd_c00112{bottom:654.599467pt;}
.yc_c00112{bottom:682.199467pt;}
.y21_c00112{bottom:709.719467pt;}
.yb_c00112{bottom:737.319467pt;}
.ya_c00112{bottom:764.919467pt;}
.y9_c00112{bottom:792.519467pt;}
.y20_c00112{bottom:820.119467pt;}
.y8_c00112{bottom:847.559467pt;}
.y1f_c00112{bottom:847.719467pt;}
.y1e_c00112{bottom:875.319467pt;}
.y7_c00112{bottom:902.919467pt;}
.y6_c00112{bottom:930.519467pt;}
.y5_c00112{bottom:958.119467pt;}
.y4_c00112{bottom:985.719467pt;}
.y3_c00112{bottom:1013.319467pt;}
.y2_c00112{bottom:1061.399467pt;}
.h2_c00112{height:44.800000pt;}
.h3_c00112{height:48.294844pt;}
.h4_c00112{height:68.288000pt;}
.h0_c00112{height:1122.520000pt;}
.h1_c00112{height:1122.666667pt;}
.w2_c00112{width:0.000000pt;}
.w3_c00112{width:0.058667pt;}
.w0_c00112{width:793.701333pt;}
.w1_c00112{width:794.000000pt;}
.x1_c00112{left:-745.700800pt;}
.x2_c00112{left:-680.260800pt;}
.x3_c00112{left:-651.860800pt;}
.x0_c00112{left:0.000000pt;}
.x7_c00112{left:113.440000pt;}
.x6_c00112{left:141.840000pt;}
.x5_c00112{left:620.080000pt;}
.x4_c00112{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00113;src:url('chunks/assets/font_0fe4c6ae5dc9a7fd624ec673.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00113;src:url('chunks/assets/font_766c5a0bde74ef047c6644ec.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.ls1_c00113{letter-spacing:0.000000px;}
.ls0_c00113{letter-spacing:0.072000px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00113{word-spacing:-0.131760px;}
.ws5_c00113{word-spacing:-0.072000px;}
.ws0_c00113{word-spacing:0.000000px;}
.ws2_c00113{word-spacing:1.296000px;}
.ws3_c00113{word-spacing:1.368000px;}
.ws4_c00113{word-spacing:17.568000px;}
._1_c00113{margin-left:-1.008000px;}
._0_c00113{width:1.185840px;}
.fc1_c00113{color:rgb(0,0,0);}
.fc0_c00113{color:rgb(35,31,32);}
.fs1_c00113{font-size:65.880000px;}
.fs0_c00113{font-size:72.000000px;}
.y0_c00113{bottom:0.000000px;}
.y1_c00113{bottom:61.748550px;}
.y5_c00113{bottom:1077.884400px;}
.y4_c00113{bottom:1108.934400px;}
.y3_c00113{bottom:1139.984400px;}
.y2_c00113{bottom:1194.074400px;}
.h2_c00113{height:50.400000px;}
.h3_c00113{height:54.331699px;}
.h4_c00113{height:76.824000px;}
.h0_c00113{height:1262.835000px;}
.h1_c00113{height:1263.000000px;}
.w0_c00113{width:892.914000px;}
.w1_c00113{width:893.250000px;}
.x0_c00113{left:0.000000px;}
.x1_c00113{left:54.000000px;}
.x2_c00113{left:127.620000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls1_c00113{letter-spacing:0.000000pt;}
.ls0_c00113{letter-spacing:0.064000pt;}
.ws1_c00113{word-spacing:-0.117120pt;}
.ws5_c00113{word-spacing:-0.064000pt;}
.ws0_c00113{word-spacing:0.000000pt;}
.ws2_c00113{word-spacing:1.152000pt;}
.ws3_c00113{word-spacing:1.216000pt;}
.ws4_c00113{word-spacing:15.616000pt;}
._1_c00113{margin-left:-0.896000pt;}
._0_c00113{width:1.054080pt;}
.fs1_c00113{font-size:58.560000pt;}
.fs0_c00113{font-size:64.000000pt;}
.y0_c00113{bottom:0.000000pt;}
.y1_c00113{bottom:54.887600pt;}
.y5_c00113{bottom:958.119467pt;}
.y4_c00113{bottom:985.719467pt;}
.y3_c00113{bottom:1013.319467pt;}
.y2_c00113{bottom:1061.399467pt;}
.h2_c00113{height:44.800000pt;}
.h3_c00113{height:48.294844pt;}
.h4_c00113{height:68.288000pt;}
.h0_c00113{height:1122.520000pt;}
.h1_c00113{height:1122.666667pt;}
.w0_c00113{width:793.701333pt;}
.w1_c00113{width:794.000000pt;}
.x0_c00113{left:0.000000pt;}
.x1_c00113{left:48.000000pt;}
.x2_c00113{left:113.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00114;src:url('chunks/assets/font_aef80745dd929976c52be51b.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00114;src:url('chunks/assets/font_50ac3a333ed0be0843250e3c.woff2')format("woff");}.ff3_c00114{font-family:ff3_c00114;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00114;src:url('chunks/assets/font_aef80745dd929976c52be51b.woff2')format("woff");}.ff4_c00114{font-family:ff4_c00114;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00114;src:url('chunks/assets/font_66f6bceb455e2d94370f7882.woff2')format("woff");}.ff5_c00114{font-family:ff5_c00114;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls1_c00114{letter-spacing:0.000000px;}
.ls0_c00114{letter-spacing:0.072000px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00114{word-spacing:-0.131760px;}
.ws5_c00114{word-spacing:-0.072000px;}
.ws0_c00114{word-spacing:0.000000px;}
.ws2_c00114{word-spacing:1.296000px;}
.ws3_c00114{word-spacing:1.368000px;}
.ws4_c00114{word-spacing:17.568000px;}
._1_c00114{margin-left:-1.008000px;}
._0_c00114{width:1.185840px;}
.fc2_c00114{color:transparent;}
.fc1_c00114{color:rgb(0,0,0);}
.fc0_c00114{color:rgb(35,31,32);}
.fs1_c00114{font-size:65.880000px;}
.fs0_c00114{font-size:72.000000px;}
.y0_c00114{bottom:0.000000px;}
.y1_c00114{bottom:61.748550px;}
.y5_c00114{bottom:1077.884400px;}
.y4_c00114{bottom:1108.934400px;}
.y3_c00114{bottom:1139.984400px;}
.y2_c00114{bottom:1194.074400px;}
.h2_c00114{height:50.400000px;}
.h3_c00114{height:54.331699px;}
.h4_c00114{height:76.824000px;}
.h0_c00114{height:1262.835000px;}
.h1_c00114{height:1263.000000px;}
.w2_c00114{width:0.000000px;}
.w3_c00114{width:0.066000px;}
.w0_c00114{width:892.914000px;}
.w1_c00114{width:893.250000px;}
.x1_c00114{left:-838.913400px;}
.x2_c00114{left:-765.293400px;}
.x0_c00114{left:0.000000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls1_c00114{letter-spacing:0.000000pt;}
.ls0_c00114{letter-spacing:0.064000pt;}
.ws1_c00114{word-spacing:-0.117120pt;}
.ws5_c00114{word-spacing:-0.064000pt;}
.ws0_c00114{word-spacing:0.000000pt;}
.ws2_c00114{word-spacing:1.152000pt;}
.ws3_c00114{word-spacing:1.216000pt;}
.ws4_c00114{word-spacing:15.616000pt;}
._1_c00114{margin-left:-0.896000pt;}
._0_c00114{width:1.054080pt;}
.fs1_c00114{font-size:58.560000pt;}
.fs0_c00114{font-size:64.000000pt;}
.y0_c00114{bottom:0.000000pt;}
.y1_c00114{bottom:54.887600pt;}
.y5_c00114{bottom:958.119467pt;}
.y4_c00114{bottom:985.719467pt;}
.y3_c00114{bottom:1013.319467pt;}
.y2_c00114{bottom:1061.399467pt;}
.h2_c00114{height:44.800000pt;}
.h3_c00114{height:48.294844pt;}
.h4_c00114{height:68.288000pt;}
.h0_c00114{height:1122.520000pt;}
.h1_c00114{height:1122.666667pt;}
.w2_c00114{width:0.000000pt;}
.w3_c00114{width:0.058667pt;}
.w0_c00114{width:793.701333pt;}
.w1_c00114{width:794.000000pt;}
.x1_c00114{left:-745.700800pt;}
.x2_c00114{left:-680.260800pt;}
.x0_c00114{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_c00115 {
    display:none;
  }
  .loading-indicator_c00115.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00115 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00115 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00115" -> "#page-container .classname_c00115")
 */
.pf_c00115 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00115 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00115 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00115 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00115 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00115 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00115 {overflow:visible;}
  }
}
.c_c00115 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00115 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00115:after { /* webkit #35443 */
  content: '';
}
.t_c00115:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00115 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00115 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00115 { /* info for Javascript */
  display:none;
}
.l_c00115 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00115 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00115 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00115:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00115{font-family:sans-serif;visibility:hidden;}
.sc__c00115{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
}
.y0_c00115{bottom:0.000000px;}
.h0_c00115{height:1262.835000px;}
.h1_c00115{height:1263.000000px;}
.w0_c00115{width:892.914000px;}
.w1_c00115{width:893.250000px;}
.x0_c00115{left:0.000000px;}
@media print{
.y0_c00115{bottom:0.000000pt;}
.h0_c00115{height:1122.520000pt;}
.h1_c00115{height:1122.666667pt;}
.w0_c00115{width:793.701333pt;}
.w1_c00115{width:794.000000pt;}
.x0_c00115{left:0.000000pt;}
}





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

.ir_c00116:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00116;src:url('chunks/assets/font_55a7e40ca0fcb4b2af9719f7.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00116{letter-spacing:-0.144000px;}
.ls1_c00116{letter-spacing:-0.065880px;}
.ls2_c00116{letter-spacing:0.000000px;}
.ls0_c00116{letter-spacing:0.072000px;}
.ls4_c00116{letter-spacing:0.144000px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00116{word-spacing:-17.856000px;}
.ws3_c00116{word-spacing:0.000000px;}
.ws2_c00116{word-spacing:0.065880px;}
.ws1_c00116{word-spacing:0.131760px;}
.wsd_c00116{word-spacing:1.440000px;}
.ws8_c00116{word-spacing:6.120000px;}
.ws6_c00116{word-spacing:7.344000px;}
.ws7_c00116{word-spacing:7.488000px;}
.ws9_c00116{word-spacing:9.648000px;}
.wsc_c00116{word-spacing:10.368000px;}
.wsa_c00116{word-spacing:14.616000px;}
.wsb_c00116{word-spacing:14.760000px;}
.ws5_c00116{word-spacing:23.400000px;}
.ws4_c00116{word-spacing:29.448000px;}
._2_c00116{margin-left:-1.101600px;}
._0_c00116{width:1.054080px;}
._1_c00116{width:17.985240px;}
.fc0_c00116{color:rgb(0,0,0);}
.fs0_c00116{font-size:65.880000px;}
.fs1_c00116{font-size:72.000000px;}
.y0_c00116{bottom:0.000000px;}
.yb_c00116{bottom:651.014400px;}
.ya_c00116{bottom:682.064400px;}
.y9_c00116{bottom:713.114400px;}
.y8_c00116{bottom:744.164400px;}
.y7_c00116{bottom:775.214400px;}
.y6_c00116{bottom:806.264400px;}
.y5_c00116{bottom:837.314400px;}
.y4_c00116{bottom:868.364400px;}
.y3_c00116{bottom:899.414400px;}
.y2_c00116{bottom:961.514400px;}
.y1_c00116{bottom:1084.356750px;}
.h2_c00116{height:70.293960px;}
.h3_c00116{height:76.824000px;}
.h0_c00116{height:1262.835000px;}
.h1_c00116{height:1263.000000px;}
.w0_c00116{width:892.914000px;}
.w1_c00116{width:893.250000px;}
.x0_c00116{left:0.000000px;}
.x1_c00116{left:127.620000px;}
.x2_c00116{left:159.570000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls3_c00116{letter-spacing:-0.128000pt;}
.ls1_c00116{letter-spacing:-0.058560pt;}
.ls2_c00116{letter-spacing:0.000000pt;}
.ls0_c00116{letter-spacing:0.064000pt;}
.ls4_c00116{letter-spacing:0.128000pt;}
.ws0_c00116{word-spacing:-15.872000pt;}
.ws3_c00116{word-spacing:0.000000pt;}
.ws2_c00116{word-spacing:0.058560pt;}
.ws1_c00116{word-spacing:0.117120pt;}
.wsd_c00116{word-spacing:1.280000pt;}
.ws8_c00116{word-spacing:5.440000pt;}
.ws6_c00116{word-spacing:6.528000pt;}
.ws7_c00116{word-spacing:6.656000pt;}
.ws9_c00116{word-spacing:8.576000pt;}
.wsc_c00116{word-spacing:9.216000pt;}
.wsa_c00116{word-spacing:12.992000pt;}
.wsb_c00116{word-spacing:13.120000pt;}
.ws5_c00116{word-spacing:20.800000pt;}
.ws4_c00116{word-spacing:26.176000pt;}
._2_c00116{margin-left:-0.979200pt;}
._0_c00116{width:0.936960pt;}
._1_c00116{width:15.986880pt;}
.fs0_c00116{font-size:58.560000pt;}
.fs1_c00116{font-size:64.000000pt;}
.y0_c00116{bottom:0.000000pt;}
.yb_c00116{bottom:578.679467pt;}
.ya_c00116{bottom:606.279467pt;}
.y9_c00116{bottom:633.879467pt;}
.y8_c00116{bottom:661.479467pt;}
.y7_c00116{bottom:689.079467pt;}
.y6_c00116{bottom:716.679467pt;}
.y5_c00116{bottom:744.279467pt;}
.y4_c00116{bottom:771.879467pt;}
.y3_c00116{bottom:799.479467pt;}
.y2_c00116{bottom:854.679467pt;}
.y1_c00116{bottom:963.872667pt;}
.h2_c00116{height:62.483520pt;}
.h3_c00116{height:68.288000pt;}
.h0_c00116{height:1122.520000pt;}
.h1_c00116{height:1122.666667pt;}
.w0_c00116{width:793.701333pt;}
.w1_c00116{width:794.000000pt;}
.x0_c00116{left:0.000000pt;}
.x1_c00116{left:113.440000pt;}
.x2_c00116{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00117{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
}
.y0_c00117{bottom:0.000000px;}
.h0_c00117{height:1262.835000px;}
.h1_c00117{height:1263.000000px;}
.w0_c00117{width:892.914000px;}
.w1_c00117{width:893.250000px;}
.x0_c00117{left:0.000000px;}
@media print{
.y0_c00117{bottom:0.000000pt;}
.h0_c00117{height:1122.520000pt;}
.h1_c00117{height:1122.666667pt;}
.w0_c00117{width:793.701333pt;}
.w1_c00117{width:794.000000pt;}
.x0_c00117{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_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00118;src:url('chunks/assets/font_b4d9044c8fc30d0566bfb34c.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00118;src:url('chunks/assets/font_b7b3cad4d5231a175a5df768.woff2')format("woff");}.ff3_c00118{font-family:ff3_c00118;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00118;src:url('chunks/assets/font_5d219dafaed19fac5db1e01e.woff2')format("woff");}.ff4_c00118{font-family:ff4_c00118;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00118;src:url('chunks/assets/font_011933295dd1b0339666dc22.woff2')format("woff");}.ff5_c00118{font-family:ff5_c00118;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.ls10_c00118{letter-spacing:-0.288000px;}
.lsf_c00118{letter-spacing:-0.216000px;}
.lsd_c00118{letter-spacing:-0.072000px;}
.lse_c00118{letter-spacing:-0.065880px;}
.lsc_c00118{letter-spacing:0.000000px;}
.ls1_c00118{letter-spacing:0.072000px;}
.ls0_c00118{letter-spacing:0.144000px;}
.ls3_c00118{letter-spacing:0.197640px;}
.ls9_c00118{letter-spacing:0.504000px;}
.ls7_c00118{letter-spacing:22.320000px;}
.lsb_c00118{letter-spacing:22.348800px;}
.ls2_c00118{letter-spacing:28.440000px;}
.lsa_c00118{letter-spacing:30.744000px;}
.ls4_c00118{letter-spacing:35.280000px;}
.ls6_c00118{letter-spacing:67.104000px;}
.ls5_c00118{letter-spacing:68.184000px;}
.ls8_c00118{letter-spacing:77.904000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00118{word-spacing:-18.144000px;}
.ws1_c00118{word-spacing:-18.000000px;}
.ws4_c00118{word-spacing:-16.667640px;}
.ws19_c00118{word-spacing:-0.144000px;}
.ws9_c00118{word-spacing:-0.131760px;}
.ws18_c00118{word-spacing:-0.072000px;}
.ws8_c00118{word-spacing:0.000000px;}
.ws12_c00118{word-spacing:0.065880px;}
.wsa_c00118{word-spacing:0.072000px;}
.ws10_c00118{word-spacing:0.131760px;}
.ws6_c00118{word-spacing:0.504000px;}
.wsf_c00118{word-spacing:1.581120px;}
.ws14_c00118{word-spacing:3.240000px;}
.wsd_c00118{word-spacing:3.528000px;}
.wse_c00118{word-spacing:3.600000px;}
.ws21_c00118{word-spacing:4.176000px;}
.ws15_c00118{word-spacing:4.248000px;}
.ws1f_c00118{word-spacing:4.320000px;}
.ws1e_c00118{word-spacing:4.680000px;}
.ws17_c00118{word-spacing:6.408000px;}
.ws16_c00118{word-spacing:6.480000px;}
.ws22_c00118{word-spacing:7.920000px;}
.wsb_c00118{word-spacing:10.224000px;}
.wsc_c00118{word-spacing:10.296000px;}
.ws3_c00118{word-spacing:10.368000px;}
.ws2_c00118{word-spacing:10.440000px;}
.ws24_c00118{word-spacing:12.528000px;}
.ws23_c00118{word-spacing:12.600000px;}
.ws25_c00118{word-spacing:13.176000px;}
.ws13_c00118{word-spacing:15.120000px;}
.ws11_c00118{word-spacing:16.470000px;}
.ws1d_c00118{word-spacing:17.280000px;}
.ws1a_c00118{word-spacing:18.288000px;}
.ws20_c00118{word-spacing:22.320000px;}
.ws5_c00118{word-spacing:25.488000px;}
.ws1c_c00118{word-spacing:28.368000px;}
.ws1b_c00118{word-spacing:28.440000px;}
.ws0_c00118{word-spacing:55.800000px;}
._1_c00118{margin-left:-1.022400px;}
._0_c00118{width:1.008000px;}
._3_c00118{width:5.400000px;}
._4_c00118{width:8.640000px;}
._2_c00118{width:34.632000px;}
.fc1_c00118{color:rgb(0,0,0);}
.fc0_c00118{color:rgb(35,31,32);}
.fs1_c00118{font-size:65.880000px;}
.fs0_c00118{font-size:72.000000px;}
.y0_c00118{bottom:0.000000px;}
.y1_c00118{bottom:61.748550px;}
.y1f_c00118{bottom:125.774100px;}
.y1e_c00118{bottom:156.824100px;}
.y1d_c00118{bottom:187.874100px;}
.y1c_c00118{bottom:218.924100px;}
.y1b_c00118{bottom:249.974100px;}
.y1a_c00118{bottom:281.024100px;}
.y19_c00118{bottom:312.074100px;}
.y18_c00118{bottom:343.124100px;}
.y17_c00118{bottom:374.174100px;}
.y16_c00118{bottom:405.224100px;}
.y15_c00118{bottom:467.324100px;}
.y14_c00118{bottom:498.374100px;}
.y13_c00118{bottom:529.424100px;}
.y12_c00118{bottom:560.474100px;}
.y11_c00118{bottom:622.574100px;}
.y10_c00118{bottom:653.624100px;}
.yf_c00118{bottom:684.674100px;}
.ye_c00118{bottom:715.724100px;}
.yd_c00118{bottom:746.774100px;}
.yc_c00118{bottom:777.824100px;}
.yb_c00118{bottom:838.572150px;}
.ya_c00118{bottom:866.917020px;}
.y9_c00118{bottom:895.360710px;}
.y8_c00118{bottom:923.804400px;}
.y7_c00118{bottom:984.734400px;}
.y6_c00118{bottom:1015.784400px;}
.y5_c00118{bottom:1046.834400px;}
.y4_c00118{bottom:1077.884400px;}
.y3_c00118{bottom:1139.804400px;}
.y2_c00118{bottom:1194.074400px;}
.h2_c00118{height:50.400000px;}
.h3_c00118{height:54.331699px;}
.h5_c00118{height:71.413920px;}
.h4_c00118{height:76.824000px;}
.h6_c00118{height:78.048000px;}
.h0_c00118{height:1262.835000px;}
.h1_c00118{height:1263.000000px;}
.w0_c00118{width:892.914000px;}
.w1_c00118{width:893.250000px;}
.x0_c00118{left:0.000000px;}
.x3_c00118{left:127.620000px;}
.x7_c00118{left:148.950000px;}
.x4_c00118{left:159.570000px;}
.x5_c00118{left:164.070000px;}
.x6_c00118{left:170.190000px;}
.x2_c00118{left:693.450000px;}
.x1_c00118{left:804.366150px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls10_c00118{letter-spacing:-0.256000pt;}
.lsf_c00118{letter-spacing:-0.192000pt;}
.lsd_c00118{letter-spacing:-0.064000pt;}
.lse_c00118{letter-spacing:-0.058560pt;}
.lsc_c00118{letter-spacing:0.000000pt;}
.ls1_c00118{letter-spacing:0.064000pt;}
.ls0_c00118{letter-spacing:0.128000pt;}
.ls3_c00118{letter-spacing:0.175680pt;}
.ls9_c00118{letter-spacing:0.448000pt;}
.ls7_c00118{letter-spacing:19.840000pt;}
.lsb_c00118{letter-spacing:19.865600pt;}
.ls2_c00118{letter-spacing:25.280000pt;}
.lsa_c00118{letter-spacing:27.328000pt;}
.ls4_c00118{letter-spacing:31.360000pt;}
.ls6_c00118{letter-spacing:59.648000pt;}
.ls5_c00118{letter-spacing:60.608000pt;}
.ls8_c00118{letter-spacing:69.248000pt;}
.ws7_c00118{word-spacing:-16.128000pt;}
.ws1_c00118{word-spacing:-16.000000pt;}
.ws4_c00118{word-spacing:-14.815680pt;}
.ws19_c00118{word-spacing:-0.128000pt;}
.ws9_c00118{word-spacing:-0.117120pt;}
.ws18_c00118{word-spacing:-0.064000pt;}
.ws8_c00118{word-spacing:0.000000pt;}
.ws12_c00118{word-spacing:0.058560pt;}
.wsa_c00118{word-spacing:0.064000pt;}
.ws10_c00118{word-spacing:0.117120pt;}
.ws6_c00118{word-spacing:0.448000pt;}
.wsf_c00118{word-spacing:1.405440pt;}
.ws14_c00118{word-spacing:2.880000pt;}
.wsd_c00118{word-spacing:3.136000pt;}
.wse_c00118{word-spacing:3.200000pt;}
.ws21_c00118{word-spacing:3.712000pt;}
.ws15_c00118{word-spacing:3.776000pt;}
.ws1f_c00118{word-spacing:3.840000pt;}
.ws1e_c00118{word-spacing:4.160000pt;}
.ws17_c00118{word-spacing:5.696000pt;}
.ws16_c00118{word-spacing:5.760000pt;}
.ws22_c00118{word-spacing:7.040000pt;}
.wsb_c00118{word-spacing:9.088000pt;}
.wsc_c00118{word-spacing:9.152000pt;}
.ws3_c00118{word-spacing:9.216000pt;}
.ws2_c00118{word-spacing:9.280000pt;}
.ws24_c00118{word-spacing:11.136000pt;}
.ws23_c00118{word-spacing:11.200000pt;}
.ws25_c00118{word-spacing:11.712000pt;}
.ws13_c00118{word-spacing:13.440000pt;}
.ws11_c00118{word-spacing:14.640000pt;}
.ws1d_c00118{word-spacing:15.360000pt;}
.ws1a_c00118{word-spacing:16.256000pt;}
.ws20_c00118{word-spacing:19.840000pt;}
.ws5_c00118{word-spacing:22.656000pt;}
.ws1c_c00118{word-spacing:25.216000pt;}
.ws1b_c00118{word-spacing:25.280000pt;}
.ws0_c00118{word-spacing:49.600000pt;}
._1_c00118{margin-left:-0.908800pt;}
._0_c00118{width:0.896000pt;}
._3_c00118{width:4.800000pt;}
._4_c00118{width:7.680000pt;}
._2_c00118{width:30.784000pt;}
.fs1_c00118{font-size:58.560000pt;}
.fs0_c00118{font-size:64.000000pt;}
.y0_c00118{bottom:0.000000pt;}
.y1_c00118{bottom:54.887600pt;}
.y1f_c00118{bottom:111.799200pt;}
.y1e_c00118{bottom:139.399200pt;}
.y1d_c00118{bottom:166.999200pt;}
.y1c_c00118{bottom:194.599200pt;}
.y1b_c00118{bottom:222.199200pt;}
.y1a_c00118{bottom:249.799200pt;}
.y19_c00118{bottom:277.399200pt;}
.y18_c00118{bottom:304.999200pt;}
.y17_c00118{bottom:332.599200pt;}
.y16_c00118{bottom:360.199200pt;}
.y15_c00118{bottom:415.399200pt;}
.y14_c00118{bottom:442.999200pt;}
.y13_c00118{bottom:470.599200pt;}
.y12_c00118{bottom:498.199200pt;}
.y11_c00118{bottom:553.399200pt;}
.y10_c00118{bottom:580.999200pt;}
.yf_c00118{bottom:608.599200pt;}
.ye_c00118{bottom:636.199200pt;}
.yd_c00118{bottom:663.799200pt;}
.yc_c00118{bottom:691.399200pt;}
.yb_c00118{bottom:745.397467pt;}
.ya_c00118{bottom:770.592907pt;}
.y9_c00118{bottom:795.876187pt;}
.y8_c00118{bottom:821.159467pt;}
.y7_c00118{bottom:875.319467pt;}
.y6_c00118{bottom:902.919467pt;}
.y5_c00118{bottom:930.519467pt;}
.y4_c00118{bottom:958.119467pt;}
.y3_c00118{bottom:1013.159467pt;}
.y2_c00118{bottom:1061.399467pt;}
.h2_c00118{height:44.800000pt;}
.h3_c00118{height:48.294844pt;}
.h5_c00118{height:63.479040pt;}
.h4_c00118{height:68.288000pt;}
.h6_c00118{height:69.376000pt;}
.h0_c00118{height:1122.520000pt;}
.h1_c00118{height:1122.666667pt;}
.w0_c00118{width:793.701333pt;}
.w1_c00118{width:794.000000pt;}
.x0_c00118{left:0.000000pt;}
.x3_c00118{left:113.440000pt;}
.x7_c00118{left:132.400000pt;}
.x4_c00118{left:141.840000pt;}
.x5_c00118{left:145.840000pt;}
.x6_c00118{left:151.280000pt;}
.x2_c00118{left:616.400000pt;}
.x1_c00118{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00119;src:url('chunks/assets/font_0b9c09377f994a033ac7bd5f.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00119;src:url('chunks/assets/font_96e00d72fcd60c380018da90.woff2')format("woff");}.ff3_c00119{font-family:ff3_c00119;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00119;src:url('chunks/assets/font_567f35d4a67e96139de6e5c3.woff2')format("woff");}.ff4_c00119{font-family:ff4_c00119;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00119{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.lsa_c00119{letter-spacing:-0.288000px;}
.ls8_c00119{letter-spacing:-0.216000px;}
.ls7_c00119{letter-spacing:-0.131760px;}
.ls9_c00119{letter-spacing:-0.065880px;}
.ls6_c00119{letter-spacing:0.000000px;}
.ls1_c00119{letter-spacing:0.072000px;}
.ls2_c00119{letter-spacing:0.144000px;}
.ls4_c00119{letter-spacing:0.197640px;}
.ls5_c00119{letter-spacing:19.800000px;}
.ls3_c00119{letter-spacing:20.880000px;}
.ls0_c00119{letter-spacing:59.184000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00119{word-spacing:-18.000000px;}
.ws5_c00119{word-spacing:-0.131760px;}
.ws8_c00119{word-spacing:-0.072000px;}
.ws3_c00119{word-spacing:0.000000px;}
.ws4_c00119{word-spacing:0.131760px;}
.ws1c_c00119{word-spacing:0.288000px;}
.ws20_c00119{word-spacing:1.008000px;}
.ws21_c00119{word-spacing:1.080000px;}
.ws24_c00119{word-spacing:1.368000px;}
.ws23_c00119{word-spacing:1.440000px;}
.ws22_c00119{word-spacing:2.160000px;}
.ws13_c00119{word-spacing:2.376000px;}
.ws1a_c00119{word-spacing:2.520000px;}
.ws17_c00119{word-spacing:2.766960px;}
.ws12_c00119{word-spacing:2.808000px;}
.wsd_c00119{word-spacing:3.888000px;}
.wsc_c00119{word-spacing:3.960000px;}
.ws7_c00119{word-spacing:4.680000px;}
.ws16_c00119{word-spacing:4.809240px;}
.ws9_c00119{word-spacing:5.040000px;}
.ws0_c00119{word-spacing:5.544000px;}
.ws18_c00119{word-spacing:5.665680px;}
.wsf_c00119{word-spacing:5.688000px;}
.ws10_c00119{word-spacing:5.760000px;}
.ws19_c00119{word-spacing:5.929200px;}
.ws1f_c00119{word-spacing:10.368000px;}
.ws6_c00119{word-spacing:11.520000px;}
.ws1d_c00119{word-spacing:12.240000px;}
.ws28_c00119{word-spacing:12.528000px;}
.ws1b_c00119{word-spacing:12.600000px;}
.ws1_c00119{word-spacing:12.672000px;}
.wsa_c00119{word-spacing:12.888000px;}
.wsb_c00119{word-spacing:12.960000px;}
.ws25_c00119{word-spacing:14.616000px;}
.ws26_c00119{word-spacing:15.048000px;}
.wse_c00119{word-spacing:15.480000px;}
.ws1e_c00119{word-spacing:16.128000px;}
.ws27_c00119{word-spacing:17.280000px;}
.ws14_c00119{word-spacing:31.608000px;}
.ws15_c00119{word-spacing:31.680000px;}
.ws11_c00119{word-spacing:32.760000px;}
._1_c00119{margin-left:-1.224000px;}
._0_c00119{width:1.119960px;}
._2_c00119{width:12.456000px;}
.fc1_c00119{color:rgb(0,0,0);}
.fc0_c00119{color:rgb(35,31,32);}
.fs1_c00119{font-size:65.880000px;}
.fs0_c00119{font-size:72.000000px;}
.y0_c00119{bottom:0.000000px;}
.y1_c00119{bottom:61.748550px;}
.y1f_c00119{bottom:125.774250px;}
.y1e_c00119{bottom:156.824250px;}
.y1d_c00119{bottom:218.924250px;}
.y1c_c00119{bottom:249.974250px;}
.y1b_c00119{bottom:281.024250px;}
.y1a_c00119{bottom:312.074250px;}
.y19_c00119{bottom:343.124250px;}
.y18_c00119{bottom:374.174250px;}
.y17_c00119{bottom:405.224250px;}
.y16_c00119{bottom:436.274250px;}
.y15_c00119{bottom:467.324250px;}
.y14_c00119{bottom:498.374250px;}
.y13_c00119{bottom:559.129650px;}
.y12_c00119{bottom:587.474520px;}
.y11_c00119{bottom:615.918210px;}
.y10_c00119{bottom:644.444250px;}
.yf_c00119{bottom:705.374400px;}
.ye_c00119{bottom:736.424400px;}
.yd_c00119{bottom:767.474400px;}
.yc_c00119{bottom:798.434400px;}
.yb_c00119{bottom:829.484400px;}
.ya_c00119{bottom:860.534400px;}
.y9_c00119{bottom:922.634400px;}
.y8_c00119{bottom:953.684400px;}
.y7_c00119{bottom:984.734400px;}
.y6_c00119{bottom:1015.784400px;}
.y5_c00119{bottom:1077.884400px;}
.y4_c00119{bottom:1108.934400px;}
.y3_c00119{bottom:1139.984400px;}
.y2_c00119{bottom:1194.074400px;}
.h2_c00119{height:50.400000px;}
.h3_c00119{height:54.331699px;}
.h5_c00119{height:71.413920px;}
.h4_c00119{height:76.824000px;}
.h0_c00119{height:1262.835000px;}
.h1_c00119{height:1263.000000px;}
.w0_c00119{width:892.914000px;}
.w1_c00119{width:893.250000px;}
.x0_c00119{left:0.000000px;}
.x1_c00119{left:54.000000px;}
.x2_c00119{left:127.620000px;}
.x3_c00119{left:148.950000px;}
.x5_c00119{left:159.570000px;}
.x4_c00119{left:170.190000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.lsa_c00119{letter-spacing:-0.256000pt;}
.ls8_c00119{letter-spacing:-0.192000pt;}
.ls7_c00119{letter-spacing:-0.117120pt;}
.ls9_c00119{letter-spacing:-0.058560pt;}
.ls6_c00119{letter-spacing:0.000000pt;}
.ls1_c00119{letter-spacing:0.064000pt;}
.ls2_c00119{letter-spacing:0.128000pt;}
.ls4_c00119{letter-spacing:0.175680pt;}
.ls5_c00119{letter-spacing:17.600000pt;}
.ls3_c00119{letter-spacing:18.560000pt;}
.ls0_c00119{letter-spacing:52.608000pt;}
.ws2_c00119{word-spacing:-16.000000pt;}
.ws5_c00119{word-spacing:-0.117120pt;}
.ws8_c00119{word-spacing:-0.064000pt;}
.ws3_c00119{word-spacing:0.000000pt;}
.ws4_c00119{word-spacing:0.117120pt;}
.ws1c_c00119{word-spacing:0.256000pt;}
.ws20_c00119{word-spacing:0.896000pt;}
.ws21_c00119{word-spacing:0.960000pt;}
.ws24_c00119{word-spacing:1.216000pt;}
.ws23_c00119{word-spacing:1.280000pt;}
.ws22_c00119{word-spacing:1.920000pt;}
.ws13_c00119{word-spacing:2.112000pt;}
.ws1a_c00119{word-spacing:2.240000pt;}
.ws17_c00119{word-spacing:2.459520pt;}
.ws12_c00119{word-spacing:2.496000pt;}
.wsd_c00119{word-spacing:3.456000pt;}
.wsc_c00119{word-spacing:3.520000pt;}
.ws7_c00119{word-spacing:4.160000pt;}
.ws16_c00119{word-spacing:4.274880pt;}
.ws9_c00119{word-spacing:4.480000pt;}
.ws0_c00119{word-spacing:4.928000pt;}
.ws18_c00119{word-spacing:5.036160pt;}
.wsf_c00119{word-spacing:5.056000pt;}
.ws10_c00119{word-spacing:5.120000pt;}
.ws19_c00119{word-spacing:5.270400pt;}
.ws1f_c00119{word-spacing:9.216000pt;}
.ws6_c00119{word-spacing:10.240000pt;}
.ws1d_c00119{word-spacing:10.880000pt;}
.ws28_c00119{word-spacing:11.136000pt;}
.ws1b_c00119{word-spacing:11.200000pt;}
.ws1_c00119{word-spacing:11.264000pt;}
.wsa_c00119{word-spacing:11.456000pt;}
.wsb_c00119{word-spacing:11.520000pt;}
.ws25_c00119{word-spacing:12.992000pt;}
.ws26_c00119{word-spacing:13.376000pt;}
.wse_c00119{word-spacing:13.760000pt;}
.ws1e_c00119{word-spacing:14.336000pt;}
.ws27_c00119{word-spacing:15.360000pt;}
.ws14_c00119{word-spacing:28.096000pt;}
.ws15_c00119{word-spacing:28.160000pt;}
.ws11_c00119{word-spacing:29.120000pt;}
._1_c00119{margin-left:-1.088000pt;}
._0_c00119{width:0.995520pt;}
._2_c00119{width:11.072000pt;}
.fs1_c00119{font-size:58.560000pt;}
.fs0_c00119{font-size:64.000000pt;}
.y0_c00119{bottom:0.000000pt;}
.y1_c00119{bottom:54.887600pt;}
.y1f_c00119{bottom:111.799333pt;}
.y1e_c00119{bottom:139.399333pt;}
.y1d_c00119{bottom:194.599333pt;}
.y1c_c00119{bottom:222.199333pt;}
.y1b_c00119{bottom:249.799333pt;}
.y1a_c00119{bottom:277.399333pt;}
.y19_c00119{bottom:304.999333pt;}
.y18_c00119{bottom:332.599333pt;}
.y17_c00119{bottom:360.199333pt;}
.y16_c00119{bottom:387.799333pt;}
.y15_c00119{bottom:415.399333pt;}
.y14_c00119{bottom:442.999333pt;}
.y13_c00119{bottom:497.004133pt;}
.y12_c00119{bottom:522.199573pt;}
.y11_c00119{bottom:547.482853pt;}
.y10_c00119{bottom:572.839333pt;}
.yf_c00119{bottom:626.999467pt;}
.ye_c00119{bottom:654.599467pt;}
.yd_c00119{bottom:682.199467pt;}
.yc_c00119{bottom:709.719467pt;}
.yb_c00119{bottom:737.319467pt;}
.ya_c00119{bottom:764.919467pt;}
.y9_c00119{bottom:820.119467pt;}
.y8_c00119{bottom:847.719467pt;}
.y7_c00119{bottom:875.319467pt;}
.y6_c00119{bottom:902.919467pt;}
.y5_c00119{bottom:958.119467pt;}
.y4_c00119{bottom:985.719467pt;}
.y3_c00119{bottom:1013.319467pt;}
.y2_c00119{bottom:1061.399467pt;}
.h2_c00119{height:44.800000pt;}
.h3_c00119{height:48.294844pt;}
.h5_c00119{height:63.479040pt;}
.h4_c00119{height:68.288000pt;}
.h0_c00119{height:1122.520000pt;}
.h1_c00119{height:1122.666667pt;}
.w0_c00119{width:793.701333pt;}
.w1_c00119{width:794.000000pt;}
.x0_c00119{left:0.000000pt;}
.x1_c00119{left:48.000000pt;}
.x2_c00119{left:113.440000pt;}
.x3_c00119{left:132.400000pt;}
.x5_c00119{left:141.840000pt;}
.x4_c00119{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00120;src:url('chunks/assets/font_f5295826f5e667f28cce4609.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00120;src:url('chunks/assets/font_6cc1a1d99ee4a254333c4910.woff2')format("woff");}.ff3_c00120{font-family:ff3_c00120;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00120;src:url('chunks/assets/font_69f1a4cef59f043664a2a561.woff2')format("woff");}.ff4_c00120{font-family:ff4_c00120;line-height:1.592000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00120{font-family:ff5_c00120;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00120;src:url('chunks/assets/font_7edfe90480b81a42b0006843.woff2')format("woff");}.ff6_c00120{font-family:ff6_c00120;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00120;src:url('chunks/assets/font_08a9cd019c8ad768f17bd9aa.woff2')format("woff");}.ff7_c00120{font-family:ff7_c00120;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00120;src:url('chunks/assets/font_09289bbd838272d9413dc941.woff2')format("woff");}.ff8_c00120{font-family:ff8_c00120;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00120;src:url('chunks/assets/font_3d6929c4c4c0296c2a7296ef.woff2')format("woff");}.ff9_c00120{font-family:ff9_c00120;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls10_c00120{letter-spacing:-0.576000px;}
.lsf_c00120{letter-spacing:-0.288000px;}
.lsd_c00120{letter-spacing:-0.216000px;}
.lsc_c00120{letter-spacing:-0.131760px;}
.ls11_c00120{letter-spacing:-0.072000px;}
.lse_c00120{letter-spacing:-0.065880px;}
.lsb_c00120{letter-spacing:0.000000px;}
.ls1_c00120{letter-spacing:0.072000px;}
.ls2_c00120{letter-spacing:0.144000px;}
.ls4_c00120{letter-spacing:0.197640px;}
.ls6_c00120{letter-spacing:18.072000px;}
.ls5_c00120{letter-spacing:19.800000px;}
.ls3_c00120{letter-spacing:20.880000px;}
.ls9_c00120{letter-spacing:27.000000px;}
.ls7_c00120{letter-spacing:28.440000px;}
.ls8_c00120{letter-spacing:28.584000px;}
.lsa_c00120{letter-spacing:30.960000px;}
.ls0_c00120{letter-spacing:59.184000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00120{word-spacing:-18.144000px;}
.ws2_c00120{word-spacing:-18.000000px;}
.wsa_c00120{word-spacing:-0.131760px;}
.wsd_c00120{word-spacing:-0.072000px;}
.ws8_c00120{word-spacing:0.000000px;}
.ws9_c00120{word-spacing:0.131760px;}
.ws48_c00120{word-spacing:0.216000px;}
.ws21_c00120{word-spacing:0.288000px;}
.ws46_c00120{word-spacing:0.360000px;}
.ws2e_c00120{word-spacing:0.576000px;}
.ws2d_c00120{word-spacing:0.648000px;}
.ws47_c00120{word-spacing:0.720000px;}
.ws7_c00120{word-spacing:1.008000px;}
.ws25_c00120{word-spacing:1.080000px;}
.ws28_c00120{word-spacing:1.368000px;}
.ws27_c00120{word-spacing:1.440000px;}
.ws2f_c00120{word-spacing:1.800000px;}
.ws33_c00120{word-spacing:2.088000px;}
.ws26_c00120{word-spacing:2.160000px;}
.ws18_c00120{word-spacing:2.376000px;}
.ws1f_c00120{word-spacing:2.520000px;}
.ws1c_c00120{word-spacing:2.766960px;}
.ws17_c00120{word-spacing:2.808000px;}
.ws42_c00120{word-spacing:2.880000px;}
.ws3b_c00120{word-spacing:3.168000px;}
.ws3a_c00120{word-spacing:3.600000px;}
.ws12_c00120{word-spacing:3.888000px;}
.ws11_c00120{word-spacing:3.960000px;}
.wsc_c00120{word-spacing:4.680000px;}
.ws1b_c00120{word-spacing:4.809240px;}
.ws45_c00120{word-spacing:4.896000px;}
.wse_c00120{word-spacing:5.040000px;}
.ws44_c00120{word-spacing:5.184000px;}
.ws43_c00120{word-spacing:5.400000px;}
.ws0_c00120{word-spacing:5.544000px;}
.ws1d_c00120{word-spacing:5.665680px;}
.ws14_c00120{word-spacing:5.688000px;}
.ws15_c00120{word-spacing:5.760000px;}
.ws1e_c00120{word-spacing:5.929200px;}
.ws5_c00120{word-spacing:8.136000px;}
.ws40_c00120{word-spacing:8.208000px;}
.ws38_c00120{word-spacing:8.568000px;}
.ws39_c00120{word-spacing:8.640000px;}
.ws41_c00120{word-spacing:9.000000px;}
.ws31_c00120{word-spacing:9.288000px;}
.ws30_c00120{word-spacing:9.360000px;}
.ws36_c00120{word-spacing:10.080000px;}
.ws37_c00120{word-spacing:10.296000px;}
.ws24_c00120{word-spacing:10.368000px;}
.ws34_c00120{word-spacing:10.440000px;}
.ws35_c00120{word-spacing:11.016000px;}
.wsb_c00120{word-spacing:11.520000px;}
.ws22_c00120{word-spacing:12.240000px;}
.ws2c_c00120{word-spacing:12.528000px;}
.ws20_c00120{word-spacing:12.600000px;}
.ws1_c00120{word-spacing:12.672000px;}
.wsf_c00120{word-spacing:12.888000px;}
.ws10_c00120{word-spacing:12.960000px;}
.ws32_c00120{word-spacing:13.680000px;}
.ws3e_c00120{word-spacing:14.256000px;}
.ws29_c00120{word-spacing:14.616000px;}
.ws3d_c00120{word-spacing:14.688000px;}
.ws3c_c00120{word-spacing:14.760000px;}
.ws6_c00120{word-spacing:14.904000px;}
.ws2a_c00120{word-spacing:15.048000px;}
.ws13_c00120{word-spacing:15.480000px;}
.ws23_c00120{word-spacing:16.128000px;}
.ws2b_c00120{word-spacing:17.280000px;}
.ws49_c00120{word-spacing:21.960000px;}
.ws3f_c00120{word-spacing:23.328000px;}
.ws19_c00120{word-spacing:31.608000px;}
.ws1a_c00120{word-spacing:31.680000px;}
.ws16_c00120{word-spacing:32.760000px;}
.ws4_c00120{word-spacing:104.400000px;}
._1_c00120{margin-left:-1.224000px;}
._0_c00120{width:1.119960px;}
._3_c00120{width:10.368000px;}
._2_c00120{width:12.456000px;}
._4_c00120{width:29.872080px;}
._5_c00120{width:45.936000px;}
.fc2_c00120{color:transparent;}
.fc1_c00120{color:rgb(0,0,0);}
.fc0_c00120{color:rgb(35,31,32);}
.fs1_c00120{font-size:65.880000px;}
.fs0_c00120{font-size:72.000000px;}
.y0_c00120{bottom:0.000000px;}
.y1_c00120{bottom:61.748550px;}
.y33_c00120{bottom:115.424400px;}
.y1f_c00120{bottom:125.774250px;}
.y32_c00120{bottom:146.474400px;}
.y1e_c00120{bottom:156.824250px;}
.y31_c00120{bottom:177.524400px;}
.y30_c00120{bottom:208.574400px;}
.y1d_c00120{bottom:218.924250px;}
.y2f_c00120{bottom:239.624400px;}
.y1c_c00120{bottom:249.974250px;}
.y2e_c00120{bottom:270.674400px;}
.y1b_c00120{bottom:281.024250px;}
.y2d_c00120{bottom:301.724400px;}
.y1a_c00120{bottom:312.074250px;}
.y2c_c00120{bottom:332.774400px;}
.y19_c00120{bottom:343.124250px;}
.y2b_c00120{bottom:363.824400px;}
.y18_c00120{bottom:374.174250px;}
.y2a_c00120{bottom:394.874400px;}
.y17_c00120{bottom:405.224250px;}
.y29_c00120{bottom:425.924400px;}
.y16_c00120{bottom:436.274250px;}
.y15_c00120{bottom:467.324250px;}
.y28_c00120{bottom:488.024400px;}
.y14_c00120{bottom:498.374250px;}
.y27_c00120{bottom:519.074400px;}
.y26_c00120{bottom:550.124400px;}
.y13_c00120{bottom:559.129650px;}
.y25_c00120{bottom:581.174400px;}
.y12_c00120{bottom:587.474520px;}
.y24_c00120{bottom:612.224400px;}
.y11_c00120{bottom:615.918210px;}
.y23_c00120{bottom:643.274400px;}
.y10_c00120{bottom:644.444250px;}
.y22_c00120{bottom:674.324400px;}
.yf_c00120{bottom:705.374400px;}
.ye_c00120{bottom:736.424400px;}
.yd_c00120{bottom:767.474400px;}
.yc_c00120{bottom:798.434400px;}
.yb_c00120{bottom:829.484400px;}
.y21_c00120{bottom:860.354400px;}
.ya_c00120{bottom:860.534400px;}
.y9_c00120{bottom:922.634400px;}
.y8_c00120{bottom:953.684400px;}
.y7_c00120{bottom:984.734400px;}
.y6_c00120{bottom:1015.784400px;}
.y20_c00120{bottom:1046.834400px;}
.y5_c00120{bottom:1077.884400px;}
.y4_c00120{bottom:1108.934400px;}
.y3_c00120{bottom:1139.984400px;}
.y2_c00120{bottom:1194.074400px;}
.h2_c00120{height:50.400000px;}
.h3_c00120{height:54.331699px;}
.h5_c00120{height:71.413920px;}
.h4_c00120{height:76.824000px;}
.h6_c00120{height:78.048000px;}
.h0_c00120{height:1262.835000px;}
.h1_c00120{height:1263.000000px;}
.w2_c00120{width:0.000000px;}
.w3_c00120{width:0.066000px;}
.w0_c00120{width:892.914000px;}
.w1_c00120{width:893.250000px;}
.x1_c00120{left:-838.913400px;}
.x2_c00120{left:-765.293400px;}
.x3_c00120{left:-743.963400px;}
.x5_c00120{left:-733.343400px;}
.x4_c00120{left:-722.723400px;}
.x0_c00120{left:0.000000px;}
.x8_c00120{left:127.620000px;}
.x9_c00120{left:159.570000px;}
.x7_c00120{left:693.450000px;}
.x6_c00120{left:804.366150px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls10_c00120{letter-spacing:-0.512000pt;}
.lsf_c00120{letter-spacing:-0.256000pt;}
.lsd_c00120{letter-spacing:-0.192000pt;}
.lsc_c00120{letter-spacing:-0.117120pt;}
.ls11_c00120{letter-spacing:-0.064000pt;}
.lse_c00120{letter-spacing:-0.058560pt;}
.lsb_c00120{letter-spacing:0.000000pt;}
.ls1_c00120{letter-spacing:0.064000pt;}
.ls2_c00120{letter-spacing:0.128000pt;}
.ls4_c00120{letter-spacing:0.175680pt;}
.ls6_c00120{letter-spacing:16.064000pt;}
.ls5_c00120{letter-spacing:17.600000pt;}
.ls3_c00120{letter-spacing:18.560000pt;}
.ls9_c00120{letter-spacing:24.000000pt;}
.ls7_c00120{letter-spacing:25.280000pt;}
.ls8_c00120{letter-spacing:25.408000pt;}
.lsa_c00120{letter-spacing:27.520000pt;}
.ls0_c00120{letter-spacing:52.608000pt;}
.ws3_c00120{word-spacing:-16.128000pt;}
.ws2_c00120{word-spacing:-16.000000pt;}
.wsa_c00120{word-spacing:-0.117120pt;}
.wsd_c00120{word-spacing:-0.064000pt;}
.ws8_c00120{word-spacing:0.000000pt;}
.ws9_c00120{word-spacing:0.117120pt;}
.ws48_c00120{word-spacing:0.192000pt;}
.ws21_c00120{word-spacing:0.256000pt;}
.ws46_c00120{word-spacing:0.320000pt;}
.ws2e_c00120{word-spacing:0.512000pt;}
.ws2d_c00120{word-spacing:0.576000pt;}
.ws47_c00120{word-spacing:0.640000pt;}
.ws7_c00120{word-spacing:0.896000pt;}
.ws25_c00120{word-spacing:0.960000pt;}
.ws28_c00120{word-spacing:1.216000pt;}
.ws27_c00120{word-spacing:1.280000pt;}
.ws2f_c00120{word-spacing:1.600000pt;}
.ws33_c00120{word-spacing:1.856000pt;}
.ws26_c00120{word-spacing:1.920000pt;}
.ws18_c00120{word-spacing:2.112000pt;}
.ws1f_c00120{word-spacing:2.240000pt;}
.ws1c_c00120{word-spacing:2.459520pt;}
.ws17_c00120{word-spacing:2.496000pt;}
.ws42_c00120{word-spacing:2.560000pt;}
.ws3b_c00120{word-spacing:2.816000pt;}
.ws3a_c00120{word-spacing:3.200000pt;}
.ws12_c00120{word-spacing:3.456000pt;}
.ws11_c00120{word-spacing:3.520000pt;}
.wsc_c00120{word-spacing:4.160000pt;}
.ws1b_c00120{word-spacing:4.274880pt;}
.ws45_c00120{word-spacing:4.352000pt;}
.wse_c00120{word-spacing:4.480000pt;}
.ws44_c00120{word-spacing:4.608000pt;}
.ws43_c00120{word-spacing:4.800000pt;}
.ws0_c00120{word-spacing:4.928000pt;}
.ws1d_c00120{word-spacing:5.036160pt;}
.ws14_c00120{word-spacing:5.056000pt;}
.ws15_c00120{word-spacing:5.120000pt;}
.ws1e_c00120{word-spacing:5.270400pt;}
.ws5_c00120{word-spacing:7.232000pt;}
.ws40_c00120{word-spacing:7.296000pt;}
.ws38_c00120{word-spacing:7.616000pt;}
.ws39_c00120{word-spacing:7.680000pt;}
.ws41_c00120{word-spacing:8.000000pt;}
.ws31_c00120{word-spacing:8.256000pt;}
.ws30_c00120{word-spacing:8.320000pt;}
.ws36_c00120{word-spacing:8.960000pt;}
.ws37_c00120{word-spacing:9.152000pt;}
.ws24_c00120{word-spacing:9.216000pt;}
.ws34_c00120{word-spacing:9.280000pt;}
.ws35_c00120{word-spacing:9.792000pt;}
.wsb_c00120{word-spacing:10.240000pt;}
.ws22_c00120{word-spacing:10.880000pt;}
.ws2c_c00120{word-spacing:11.136000pt;}
.ws20_c00120{word-spacing:11.200000pt;}
.ws1_c00120{word-spacing:11.264000pt;}
.wsf_c00120{word-spacing:11.456000pt;}
.ws10_c00120{word-spacing:11.520000pt;}
.ws32_c00120{word-spacing:12.160000pt;}
.ws3e_c00120{word-spacing:12.672000pt;}
.ws29_c00120{word-spacing:12.992000pt;}
.ws3d_c00120{word-spacing:13.056000pt;}
.ws3c_c00120{word-spacing:13.120000pt;}
.ws6_c00120{word-spacing:13.248000pt;}
.ws2a_c00120{word-spacing:13.376000pt;}
.ws13_c00120{word-spacing:13.760000pt;}
.ws23_c00120{word-spacing:14.336000pt;}
.ws2b_c00120{word-spacing:15.360000pt;}
.ws49_c00120{word-spacing:19.520000pt;}
.ws3f_c00120{word-spacing:20.736000pt;}
.ws19_c00120{word-spacing:28.096000pt;}
.ws1a_c00120{word-spacing:28.160000pt;}
.ws16_c00120{word-spacing:29.120000pt;}
.ws4_c00120{word-spacing:92.800000pt;}
._1_c00120{margin-left:-1.088000pt;}
._0_c00120{width:0.995520pt;}
._3_c00120{width:9.216000pt;}
._2_c00120{width:11.072000pt;}
._4_c00120{width:26.552960pt;}
._5_c00120{width:40.832000pt;}
.fs1_c00120{font-size:58.560000pt;}
.fs0_c00120{font-size:64.000000pt;}
.y0_c00120{bottom:0.000000pt;}
.y1_c00120{bottom:54.887600pt;}
.y33_c00120{bottom:102.599467pt;}
.y1f_c00120{bottom:111.799333pt;}
.y32_c00120{bottom:130.199467pt;}
.y1e_c00120{bottom:139.399333pt;}
.y31_c00120{bottom:157.799467pt;}
.y30_c00120{bottom:185.399467pt;}
.y1d_c00120{bottom:194.599333pt;}
.y2f_c00120{bottom:212.999467pt;}
.y1c_c00120{bottom:222.199333pt;}
.y2e_c00120{bottom:240.599467pt;}
.y1b_c00120{bottom:249.799333pt;}
.y2d_c00120{bottom:268.199467pt;}
.y1a_c00120{bottom:277.399333pt;}
.y2c_c00120{bottom:295.799467pt;}
.y19_c00120{bottom:304.999333pt;}
.y2b_c00120{bottom:323.399467pt;}
.y18_c00120{bottom:332.599333pt;}
.y2a_c00120{bottom:350.999467pt;}
.y17_c00120{bottom:360.199333pt;}
.y29_c00120{bottom:378.599467pt;}
.y16_c00120{bottom:387.799333pt;}
.y15_c00120{bottom:415.399333pt;}
.y28_c00120{bottom:433.799467pt;}
.y14_c00120{bottom:442.999333pt;}
.y27_c00120{bottom:461.399467pt;}
.y26_c00120{bottom:488.999467pt;}
.y13_c00120{bottom:497.004133pt;}
.y25_c00120{bottom:516.599467pt;}
.y12_c00120{bottom:522.199573pt;}
.y24_c00120{bottom:544.199467pt;}
.y11_c00120{bottom:547.482853pt;}
.y23_c00120{bottom:571.799467pt;}
.y10_c00120{bottom:572.839333pt;}
.y22_c00120{bottom:599.399467pt;}
.yf_c00120{bottom:626.999467pt;}
.ye_c00120{bottom:654.599467pt;}
.yd_c00120{bottom:682.199467pt;}
.yc_c00120{bottom:709.719467pt;}
.yb_c00120{bottom:737.319467pt;}
.y21_c00120{bottom:764.759467pt;}
.ya_c00120{bottom:764.919467pt;}
.y9_c00120{bottom:820.119467pt;}
.y8_c00120{bottom:847.719467pt;}
.y7_c00120{bottom:875.319467pt;}
.y6_c00120{bottom:902.919467pt;}
.y20_c00120{bottom:930.519467pt;}
.y5_c00120{bottom:958.119467pt;}
.y4_c00120{bottom:985.719467pt;}
.y3_c00120{bottom:1013.319467pt;}
.y2_c00120{bottom:1061.399467pt;}
.h2_c00120{height:44.800000pt;}
.h3_c00120{height:48.294844pt;}
.h5_c00120{height:63.479040pt;}
.h4_c00120{height:68.288000pt;}
.h6_c00120{height:69.376000pt;}
.h0_c00120{height:1122.520000pt;}
.h1_c00120{height:1122.666667pt;}
.w2_c00120{width:0.000000pt;}
.w3_c00120{width:0.058667pt;}
.w0_c00120{width:793.701333pt;}
.w1_c00120{width:794.000000pt;}
.x1_c00120{left:-745.700800pt;}
.x2_c00120{left:-680.260800pt;}
.x3_c00120{left:-661.300800pt;}
.x5_c00120{left:-651.860800pt;}
.x4_c00120{left:-642.420800pt;}
.x0_c00120{left:0.000000pt;}
.x8_c00120{left:113.440000pt;}
.x9_c00120{left:141.840000pt;}
.x7_c00120{left:616.400000pt;}
.x6_c00120{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00121;src:url('chunks/assets/font_9fcae27833d89d81829b9c75.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00121;src:url('chunks/assets/font_f10c5d07ea7024037104fee8.woff2')format("woff");}.ff3_c00121{font-family:ff3_c00121;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00121;src:url('chunks/assets/font_18dd2b3081cc4b2a2fc00611.woff2')format("woff");}.ff4_c00121{font-family:ff4_c00121;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.ls8_c00121{letter-spacing:-0.288000px;}
.ls6_c00121{letter-spacing:-0.131760px;}
.ls7_c00121{letter-spacing:-0.072000px;}
.ls5_c00121{letter-spacing:0.000000px;}
.ls1_c00121{letter-spacing:0.072000px;}
.ls2_c00121{letter-spacing:0.144000px;}
.ls3_c00121{letter-spacing:21.960000px;}
.ls0_c00121{letter-spacing:26.668800px;}
.ls4_c00121{letter-spacing:60.984000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00121{word-spacing:-18.072000px;}
.ws2_c00121{word-spacing:-18.000000px;}
.ws4_c00121{word-spacing:-17.712000px;}
.ws8_c00121{word-spacing:-0.131760px;}
.ws1a_c00121{word-spacing:-0.072000px;}
.ws6_c00121{word-spacing:0.000000px;}
.ws7_c00121{word-spacing:0.131760px;}
.wsb_c00121{word-spacing:0.576000px;}
.ws0_c00121{word-spacing:0.662400px;}
.wsc_c00121{word-spacing:0.720000px;}
.ws1c_c00121{word-spacing:1.728000px;}
.ws18_c00121{word-spacing:2.376000px;}
.ws19_c00121{word-spacing:2.448000px;}
.ws17_c00121{word-spacing:2.520000px;}
.ws20_c00121{word-spacing:3.168000px;}
.ws1d_c00121{word-spacing:3.888000px;}
.wsf_c00121{word-spacing:3.960000px;}
.wse_c00121{word-spacing:4.320000px;}
.ws1_c00121{word-spacing:4.608000px;}
.ws23_c00121{word-spacing:5.688000px;}
.ws14_c00121{word-spacing:5.760000px;}
.ws16_c00121{word-spacing:5.976000px;}
.ws15_c00121{word-spacing:6.048000px;}
.ws24_c00121{word-spacing:7.128000px;}
.ws25_c00121{word-spacing:7.848000px;}
.ws28_c00121{word-spacing:8.208000px;}
.ws27_c00121{word-spacing:8.280000px;}
.ws9_c00121{word-spacing:8.568000px;}
.wsa_c00121{word-spacing:8.640000px;}
.ws1f_c00121{word-spacing:10.440000px;}
.ws3_c00121{word-spacing:11.030400px;}
.ws1b_c00121{word-spacing:11.160000px;}
.ws13_c00121{word-spacing:11.736000px;}
.ws12_c00121{word-spacing:11.880000px;}
.ws26_c00121{word-spacing:12.528000px;}
.ws10_c00121{word-spacing:15.408000px;}
.ws11_c00121{word-spacing:19.728000px;}
.ws1e_c00121{word-spacing:21.888000px;}
.ws21_c00121{word-spacing:28.728000px;}
.ws22_c00121{word-spacing:28.800000px;}
.wsd_c00121{word-spacing:32.040000px;}
._1_c00121{margin-left:-1.303200px;}
._0_c00121{width:1.119960px;}
._2_c00121{width:29.512800px;}
.fc1_c00121{color:rgb(0,0,0);}
.fc0_c00121{color:rgb(35,31,32);}
.fs1_c00121{font-size:65.880000px;}
.fs0_c00121{font-size:72.000000px;}
.y0_c00121{bottom:0.000000px;}
.y1_c00121{bottom:61.748550px;}
.y20_c00121{bottom:115.424400px;}
.y1f_c00121{bottom:146.474400px;}
.y1e_c00121{bottom:177.524400px;}
.y1d_c00121{bottom:208.574400px;}
.y1c_c00121{bottom:270.674400px;}
.y1b_c00121{bottom:301.724400px;}
.y1a_c00121{bottom:332.774400px;}
.y19_c00121{bottom:363.824400px;}
.y18_c00121{bottom:394.874400px;}
.y17_c00121{bottom:425.924400px;}
.y16_c00121{bottom:456.974400px;}
.y15_c00121{bottom:488.024400px;}
.y14_c00121{bottom:519.074400px;}
.y13_c00121{bottom:550.124400px;}
.y12_c00121{bottom:581.174400px;}
.y11_c00121{bottom:643.274400px;}
.y10_c00121{bottom:674.324400px;}
.yf_c00121{bottom:705.374400px;}
.ye_c00121{bottom:736.424400px;}
.yd_c00121{bottom:798.434400px;}
.yc_c00121{bottom:829.484400px;}
.yb_c00121{bottom:860.534400px;}
.ya_c00121{bottom:891.584400px;}
.y9_c00121{bottom:953.684400px;}
.y8_c00121{bottom:984.734400px;}
.y7_c00121{bottom:1015.784400px;}
.y6_c00121{bottom:1046.834400px;}
.y5_c00121{bottom:1077.884400px;}
.y4_c00121{bottom:1108.934400px;}
.y3_c00121{bottom:1139.984400px;}
.y2_c00121{bottom:1194.074400px;}
.h2_c00121{height:50.400000px;}
.h3_c00121{height:54.331699px;}
.h4_c00121{height:76.824000px;}
.h5_c00121{height:78.048000px;}
.h0_c00121{height:1262.835000px;}
.h1_c00121{height:1263.000000px;}
.w0_c00121{width:892.914000px;}
.w1_c00121{width:893.250000px;}
.x0_c00121{left:0.000000px;}
.x1_c00121{left:54.000000px;}
.x2_c00121{left:127.620000px;}
.x4_c00121{left:148.950000px;}
.x3_c00121{left:159.570000px;}
.x5_c00121{left:170.190000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls8_c00121{letter-spacing:-0.256000pt;}
.ls6_c00121{letter-spacing:-0.117120pt;}
.ls7_c00121{letter-spacing:-0.064000pt;}
.ls5_c00121{letter-spacing:0.000000pt;}
.ls1_c00121{letter-spacing:0.064000pt;}
.ls2_c00121{letter-spacing:0.128000pt;}
.ls3_c00121{letter-spacing:19.520000pt;}
.ls0_c00121{letter-spacing:23.705600pt;}
.ls4_c00121{letter-spacing:54.208000pt;}
.ws5_c00121{word-spacing:-16.064000pt;}
.ws2_c00121{word-spacing:-16.000000pt;}
.ws4_c00121{word-spacing:-15.744000pt;}
.ws8_c00121{word-spacing:-0.117120pt;}
.ws1a_c00121{word-spacing:-0.064000pt;}
.ws6_c00121{word-spacing:0.000000pt;}
.ws7_c00121{word-spacing:0.117120pt;}
.wsb_c00121{word-spacing:0.512000pt;}
.ws0_c00121{word-spacing:0.588800pt;}
.wsc_c00121{word-spacing:0.640000pt;}
.ws1c_c00121{word-spacing:1.536000pt;}
.ws18_c00121{word-spacing:2.112000pt;}
.ws19_c00121{word-spacing:2.176000pt;}
.ws17_c00121{word-spacing:2.240000pt;}
.ws20_c00121{word-spacing:2.816000pt;}
.ws1d_c00121{word-spacing:3.456000pt;}
.wsf_c00121{word-spacing:3.520000pt;}
.wse_c00121{word-spacing:3.840000pt;}
.ws1_c00121{word-spacing:4.096000pt;}
.ws23_c00121{word-spacing:5.056000pt;}
.ws14_c00121{word-spacing:5.120000pt;}
.ws16_c00121{word-spacing:5.312000pt;}
.ws15_c00121{word-spacing:5.376000pt;}
.ws24_c00121{word-spacing:6.336000pt;}
.ws25_c00121{word-spacing:6.976000pt;}
.ws28_c00121{word-spacing:7.296000pt;}
.ws27_c00121{word-spacing:7.360000pt;}
.ws9_c00121{word-spacing:7.616000pt;}
.wsa_c00121{word-spacing:7.680000pt;}
.ws1f_c00121{word-spacing:9.280000pt;}
.ws3_c00121{word-spacing:9.804800pt;}
.ws1b_c00121{word-spacing:9.920000pt;}
.ws13_c00121{word-spacing:10.432000pt;}
.ws12_c00121{word-spacing:10.560000pt;}
.ws26_c00121{word-spacing:11.136000pt;}
.ws10_c00121{word-spacing:13.696000pt;}
.ws11_c00121{word-spacing:17.536000pt;}
.ws1e_c00121{word-spacing:19.456000pt;}
.ws21_c00121{word-spacing:25.536000pt;}
.ws22_c00121{word-spacing:25.600000pt;}
.wsd_c00121{word-spacing:28.480000pt;}
._1_c00121{margin-left:-1.158400pt;}
._0_c00121{width:0.995520pt;}
._2_c00121{width:26.233600pt;}
.fs1_c00121{font-size:58.560000pt;}
.fs0_c00121{font-size:64.000000pt;}
.y0_c00121{bottom:0.000000pt;}
.y1_c00121{bottom:54.887600pt;}
.y20_c00121{bottom:102.599467pt;}
.y1f_c00121{bottom:130.199467pt;}
.y1e_c00121{bottom:157.799467pt;}
.y1d_c00121{bottom:185.399467pt;}
.y1c_c00121{bottom:240.599467pt;}
.y1b_c00121{bottom:268.199467pt;}
.y1a_c00121{bottom:295.799467pt;}
.y19_c00121{bottom:323.399467pt;}
.y18_c00121{bottom:350.999467pt;}
.y17_c00121{bottom:378.599467pt;}
.y16_c00121{bottom:406.199467pt;}
.y15_c00121{bottom:433.799467pt;}
.y14_c00121{bottom:461.399467pt;}
.y13_c00121{bottom:488.999467pt;}
.y12_c00121{bottom:516.599467pt;}
.y11_c00121{bottom:571.799467pt;}
.y10_c00121{bottom:599.399467pt;}
.yf_c00121{bottom:626.999467pt;}
.ye_c00121{bottom:654.599467pt;}
.yd_c00121{bottom:709.719467pt;}
.yc_c00121{bottom:737.319467pt;}
.yb_c00121{bottom:764.919467pt;}
.ya_c00121{bottom:792.519467pt;}
.y9_c00121{bottom:847.719467pt;}
.y8_c00121{bottom:875.319467pt;}
.y7_c00121{bottom:902.919467pt;}
.y6_c00121{bottom:930.519467pt;}
.y5_c00121{bottom:958.119467pt;}
.y4_c00121{bottom:985.719467pt;}
.y3_c00121{bottom:1013.319467pt;}
.y2_c00121{bottom:1061.399467pt;}
.h2_c00121{height:44.800000pt;}
.h3_c00121{height:48.294844pt;}
.h4_c00121{height:68.288000pt;}
.h5_c00121{height:69.376000pt;}
.h0_c00121{height:1122.520000pt;}
.h1_c00121{height:1122.666667pt;}
.w0_c00121{width:793.701333pt;}
.w1_c00121{width:794.000000pt;}
.x0_c00121{left:0.000000pt;}
.x1_c00121{left:48.000000pt;}
.x2_c00121{left:113.440000pt;}
.x4_c00121{left:132.400000pt;}
.x3_c00121{left:141.840000pt;}
.x5_c00121{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00122;src:url('chunks/assets/font_af937a63441f1a9879c595f6.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00122;src:url('chunks/assets/font_acc6332efb6426bae36d7c88.woff2')format("woff");}.ff3_c00122{font-family:ff3_c00122;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00122;src:url('chunks/assets/font_9c607c7965770838015a0956.woff2')format("woff");}.ff4_c00122{font-family:ff4_c00122;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00122;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00122{font-family:ff5_c00122;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00122;src:url('chunks/assets/font_ac65e4da755acce3e488415f.woff2')format("woff");}.ff6_c00122{font-family:ff6_c00122;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00122;src:url('chunks/assets/font_368f0a9e74482faabdc2e3d6.woff2')format("woff");}.ff7_c00122{font-family:ff7_c00122;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00122;src:url('chunks/assets/font_88e07cbf9c03a311a8831bdd.woff2')format("woff");}.ff8_c00122{font-family:ff8_c00122;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00122;src:url('chunks/assets/font_dc8ed9b65a9f57a960bd0bfb.woff2')format("woff");}.ff9_c00122{font-family:ff9_c00122;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.lsb_c00122{letter-spacing:-0.288000px;}
.lsc_c00122{letter-spacing:-0.144000px;}
.ls9_c00122{letter-spacing:-0.131760px;}
.lsa_c00122{letter-spacing:-0.072000px;}
.ls8_c00122{letter-spacing:0.000000px;}
.ls1_c00122{letter-spacing:0.072000px;}
.ls2_c00122{letter-spacing:0.144000px;}
.ls7_c00122{letter-spacing:18.360000px;}
.ls5_c00122{letter-spacing:19.440000px;}
.ls3_c00122{letter-spacing:21.960000px;}
.ls0_c00122{letter-spacing:26.668800px;}
.ls6_c00122{letter-spacing:34.581600px;}
.ls4_c00122{letter-spacing:60.984000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00122{word-spacing:-18.072000px;}
.ws2_c00122{word-spacing:-18.000000px;}
.ws4_c00122{word-spacing:-17.712000px;}
.ws3e_c00122{word-spacing:-0.432000px;}
.ws37_c00122{word-spacing:-0.360000px;}
.ws8_c00122{word-spacing:-0.144000px;}
.ws15_c00122{word-spacing:-0.131760px;}
.ws27_c00122{word-spacing:-0.072000px;}
.ws13_c00122{word-spacing:0.000000px;}
.ws4b_c00122{word-spacing:0.072000px;}
.ws14_c00122{word-spacing:0.131760px;}
.ws47_c00122{word-spacing:0.288000px;}
.ws4c_c00122{word-spacing:0.360000px;}
.ws18_c00122{word-spacing:0.576000px;}
.ws6_c00122{word-spacing:0.655200px;}
.ws0_c00122{word-spacing:0.662400px;}
.ws19_c00122{word-spacing:0.720000px;}
.wse_c00122{word-spacing:1.296000px;}
.ws10_c00122{word-spacing:1.440000px;}
.ws7_c00122{word-spacing:1.512000px;}
.ws46_c00122{word-spacing:1.656000px;}
.ws11_c00122{word-spacing:1.728000px;}
.ws45_c00122{word-spacing:1.800000px;}
.ws25_c00122{word-spacing:2.376000px;}
.ws26_c00122{word-spacing:2.448000px;}
.ws24_c00122{word-spacing:2.520000px;}
.ws2c_c00122{word-spacing:3.168000px;}
.ws3d_c00122{word-spacing:3.600000px;}
.ws29_c00122{word-spacing:3.888000px;}
.ws1c_c00122{word-spacing:3.960000px;}
.ws1b_c00122{word-spacing:4.320000px;}
.ws1_c00122{word-spacing:4.608000px;}
.ws2f_c00122{word-spacing:5.688000px;}
.ws21_c00122{word-spacing:5.760000px;}
.ws23_c00122{word-spacing:5.976000px;}
.ws22_c00122{word-spacing:6.048000px;}
.ws39_c00122{word-spacing:6.120000px;}
.ws4d_c00122{word-spacing:6.768000px;}
.ws12_c00122{word-spacing:6.840000px;}
.ws30_c00122{word-spacing:7.128000px;}
.ws4e_c00122{word-spacing:7.200000px;}
.ws31_c00122{word-spacing:7.848000px;}
.ws34_c00122{word-spacing:8.208000px;}
.ws33_c00122{word-spacing:8.280000px;}
.ws16_c00122{word-spacing:8.568000px;}
.ws17_c00122{word-spacing:8.640000px;}
.ws3b_c00122{word-spacing:9.648000px;}
.ws3c_c00122{word-spacing:9.720000px;}
.ws49_c00122{word-spacing:9.792000px;}
.ws4a_c00122{word-spacing:10.008000px;}
.ws48_c00122{word-spacing:10.080000px;}
.wsf_c00122{word-spacing:10.224000px;}
.ws2b_c00122{word-spacing:10.440000px;}
.ws3_c00122{word-spacing:11.030400px;}
.ws28_c00122{word-spacing:11.160000px;}
.ws20_c00122{word-spacing:11.736000px;}
.ws1f_c00122{word-spacing:11.880000px;}
.ws32_c00122{word-spacing:12.528000px;}
.ws36_c00122{word-spacing:12.600000px;}
.ws35_c00122{word-spacing:12.816000px;}
.ws38_c00122{word-spacing:13.968000px;}
.ws1d_c00122{word-spacing:15.408000px;}
.ws3a_c00122{word-spacing:15.480000px;}
.ws43_c00122{word-spacing:16.488000px;}
.ws44_c00122{word-spacing:16.920000px;}
.wsb_c00122{word-spacing:18.072000px;}
.wsc_c00122{word-spacing:18.288000px;}
.ws3f_c00122{word-spacing:18.360000px;}
.wsa_c00122{word-spacing:18.432000px;}
.ws1e_c00122{word-spacing:19.728000px;}
.ws41_c00122{word-spacing:21.600000px;}
.ws2a_c00122{word-spacing:21.888000px;}
.ws42_c00122{word-spacing:23.328000px;}
.ws40_c00122{word-spacing:24.696000px;}
.wsd_c00122{word-spacing:24.840000px;}
.ws2d_c00122{word-spacing:28.728000px;}
.ws2e_c00122{word-spacing:28.800000px;}
.ws1a_c00122{word-spacing:32.040000px;}
.ws9_c00122{word-spacing:104.400000px;}
._1_c00122{margin-left:-1.303200px;}
._0_c00122{width:1.119960px;}
._2_c00122{width:29.512800px;}
.fc2_c00122{color:transparent;}
.fc1_c00122{color:rgb(0,0,0);}
.fc0_c00122{color:rgb(35,31,32);}
.fs1_c00122{font-size:65.880000px;}
.fs0_c00122{font-size:72.000000px;}
.y0_c00122{bottom:0.000000px;}
.y1_c00122{bottom:61.748550px;}
.y20_c00122{bottom:115.424400px;}
.y1f_c00122{bottom:146.474400px;}
.y1e_c00122{bottom:177.524400px;}
.y1d_c00122{bottom:208.574400px;}
.y25_c00122{bottom:239.624400px;}
.y1c_c00122{bottom:270.674400px;}
.y1b_c00122{bottom:301.724400px;}
.y1a_c00122{bottom:332.774400px;}
.y19_c00122{bottom:363.824400px;}
.y18_c00122{bottom:394.874400px;}
.y17_c00122{bottom:425.924400px;}
.y16_c00122{bottom:456.974400px;}
.y15_c00122{bottom:488.024400px;}
.y14_c00122{bottom:519.074400px;}
.y13_c00122{bottom:550.124400px;}
.y12_c00122{bottom:581.174400px;}
.y24_c00122{bottom:612.224400px;}
.y11_c00122{bottom:643.274400px;}
.y10_c00122{bottom:674.324400px;}
.yf_c00122{bottom:705.374400px;}
.ye_c00122{bottom:736.424400px;}
.y23_c00122{bottom:767.474400px;}
.yd_c00122{bottom:798.434400px;}
.yc_c00122{bottom:829.484400px;}
.yb_c00122{bottom:860.534400px;}
.ya_c00122{bottom:891.584400px;}
.y22_c00122{bottom:922.634400px;}
.y9_c00122{bottom:953.684400px;}
.y21_c00122{bottom:984.554400px;}
.y8_c00122{bottom:984.734400px;}
.y7_c00122{bottom:1015.784400px;}
.y6_c00122{bottom:1046.834400px;}
.y5_c00122{bottom:1077.884400px;}
.y4_c00122{bottom:1108.934400px;}
.y3_c00122{bottom:1139.984400px;}
.y2_c00122{bottom:1194.074400px;}
.h2_c00122{height:50.400000px;}
.h3_c00122{height:54.331699px;}
.h4_c00122{height:76.824000px;}
.h5_c00122{height:78.048000px;}
.h0_c00122{height:1262.835000px;}
.h1_c00122{height:1263.000000px;}
.w2_c00122{width:0.000000px;}
.w3_c00122{width:0.066000px;}
.w0_c00122{width:892.914000px;}
.w1_c00122{width:893.250000px;}
.x1_c00122{left:-838.913400px;}
.x2_c00122{left:-765.293400px;}
.x4_c00122{left:-743.963400px;}
.x3_c00122{left:-733.343400px;}
.x5_c00122{left:-722.723400px;}
.x0_c00122{left:0.000000px;}
.x8_c00122{left:127.620000px;}
.x9_c00122{left:159.570000px;}
.x7_c00122{left:693.450000px;}
.x6_c00122{left:804.366150px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.lsb_c00122{letter-spacing:-0.256000pt;}
.lsc_c00122{letter-spacing:-0.128000pt;}
.ls9_c00122{letter-spacing:-0.117120pt;}
.lsa_c00122{letter-spacing:-0.064000pt;}
.ls8_c00122{letter-spacing:0.000000pt;}
.ls1_c00122{letter-spacing:0.064000pt;}
.ls2_c00122{letter-spacing:0.128000pt;}
.ls7_c00122{letter-spacing:16.320000pt;}
.ls5_c00122{letter-spacing:17.280000pt;}
.ls3_c00122{letter-spacing:19.520000pt;}
.ls0_c00122{letter-spacing:23.705600pt;}
.ls6_c00122{letter-spacing:30.739200pt;}
.ls4_c00122{letter-spacing:54.208000pt;}
.ws5_c00122{word-spacing:-16.064000pt;}
.ws2_c00122{word-spacing:-16.000000pt;}
.ws4_c00122{word-spacing:-15.744000pt;}
.ws3e_c00122{word-spacing:-0.384000pt;}
.ws37_c00122{word-spacing:-0.320000pt;}
.ws8_c00122{word-spacing:-0.128000pt;}
.ws15_c00122{word-spacing:-0.117120pt;}
.ws27_c00122{word-spacing:-0.064000pt;}
.ws13_c00122{word-spacing:0.000000pt;}
.ws4b_c00122{word-spacing:0.064000pt;}
.ws14_c00122{word-spacing:0.117120pt;}
.ws47_c00122{word-spacing:0.256000pt;}
.ws4c_c00122{word-spacing:0.320000pt;}
.ws18_c00122{word-spacing:0.512000pt;}
.ws6_c00122{word-spacing:0.582400pt;}
.ws0_c00122{word-spacing:0.588800pt;}
.ws19_c00122{word-spacing:0.640000pt;}
.wse_c00122{word-spacing:1.152000pt;}
.ws10_c00122{word-spacing:1.280000pt;}
.ws7_c00122{word-spacing:1.344000pt;}
.ws46_c00122{word-spacing:1.472000pt;}
.ws11_c00122{word-spacing:1.536000pt;}
.ws45_c00122{word-spacing:1.600000pt;}
.ws25_c00122{word-spacing:2.112000pt;}
.ws26_c00122{word-spacing:2.176000pt;}
.ws24_c00122{word-spacing:2.240000pt;}
.ws2c_c00122{word-spacing:2.816000pt;}
.ws3d_c00122{word-spacing:3.200000pt;}
.ws29_c00122{word-spacing:3.456000pt;}
.ws1c_c00122{word-spacing:3.520000pt;}
.ws1b_c00122{word-spacing:3.840000pt;}
.ws1_c00122{word-spacing:4.096000pt;}
.ws2f_c00122{word-spacing:5.056000pt;}
.ws21_c00122{word-spacing:5.120000pt;}
.ws23_c00122{word-spacing:5.312000pt;}
.ws22_c00122{word-spacing:5.376000pt;}
.ws39_c00122{word-spacing:5.440000pt;}
.ws4d_c00122{word-spacing:6.016000pt;}
.ws12_c00122{word-spacing:6.080000pt;}
.ws30_c00122{word-spacing:6.336000pt;}
.ws4e_c00122{word-spacing:6.400000pt;}
.ws31_c00122{word-spacing:6.976000pt;}
.ws34_c00122{word-spacing:7.296000pt;}
.ws33_c00122{word-spacing:7.360000pt;}
.ws16_c00122{word-spacing:7.616000pt;}
.ws17_c00122{word-spacing:7.680000pt;}
.ws3b_c00122{word-spacing:8.576000pt;}
.ws3c_c00122{word-spacing:8.640000pt;}
.ws49_c00122{word-spacing:8.704000pt;}
.ws4a_c00122{word-spacing:8.896000pt;}
.ws48_c00122{word-spacing:8.960000pt;}
.wsf_c00122{word-spacing:9.088000pt;}
.ws2b_c00122{word-spacing:9.280000pt;}
.ws3_c00122{word-spacing:9.804800pt;}
.ws28_c00122{word-spacing:9.920000pt;}
.ws20_c00122{word-spacing:10.432000pt;}
.ws1f_c00122{word-spacing:10.560000pt;}
.ws32_c00122{word-spacing:11.136000pt;}
.ws36_c00122{word-spacing:11.200000pt;}
.ws35_c00122{word-spacing:11.392000pt;}
.ws38_c00122{word-spacing:12.416000pt;}
.ws1d_c00122{word-spacing:13.696000pt;}
.ws3a_c00122{word-spacing:13.760000pt;}
.ws43_c00122{word-spacing:14.656000pt;}
.ws44_c00122{word-spacing:15.040000pt;}
.wsb_c00122{word-spacing:16.064000pt;}
.wsc_c00122{word-spacing:16.256000pt;}
.ws3f_c00122{word-spacing:16.320000pt;}
.wsa_c00122{word-spacing:16.384000pt;}
.ws1e_c00122{word-spacing:17.536000pt;}
.ws41_c00122{word-spacing:19.200000pt;}
.ws2a_c00122{word-spacing:19.456000pt;}
.ws42_c00122{word-spacing:20.736000pt;}
.ws40_c00122{word-spacing:21.952000pt;}
.wsd_c00122{word-spacing:22.080000pt;}
.ws2d_c00122{word-spacing:25.536000pt;}
.ws2e_c00122{word-spacing:25.600000pt;}
.ws1a_c00122{word-spacing:28.480000pt;}
.ws9_c00122{word-spacing:92.800000pt;}
._1_c00122{margin-left:-1.158400pt;}
._0_c00122{width:0.995520pt;}
._2_c00122{width:26.233600pt;}
.fs1_c00122{font-size:58.560000pt;}
.fs0_c00122{font-size:64.000000pt;}
.y0_c00122{bottom:0.000000pt;}
.y1_c00122{bottom:54.887600pt;}
.y20_c00122{bottom:102.599467pt;}
.y1f_c00122{bottom:130.199467pt;}
.y1e_c00122{bottom:157.799467pt;}
.y1d_c00122{bottom:185.399467pt;}
.y25_c00122{bottom:212.999467pt;}
.y1c_c00122{bottom:240.599467pt;}
.y1b_c00122{bottom:268.199467pt;}
.y1a_c00122{bottom:295.799467pt;}
.y19_c00122{bottom:323.399467pt;}
.y18_c00122{bottom:350.999467pt;}
.y17_c00122{bottom:378.599467pt;}
.y16_c00122{bottom:406.199467pt;}
.y15_c00122{bottom:433.799467pt;}
.y14_c00122{bottom:461.399467pt;}
.y13_c00122{bottom:488.999467pt;}
.y12_c00122{bottom:516.599467pt;}
.y24_c00122{bottom:544.199467pt;}
.y11_c00122{bottom:571.799467pt;}
.y10_c00122{bottom:599.399467pt;}
.yf_c00122{bottom:626.999467pt;}
.ye_c00122{bottom:654.599467pt;}
.y23_c00122{bottom:682.199467pt;}
.yd_c00122{bottom:709.719467pt;}
.yc_c00122{bottom:737.319467pt;}
.yb_c00122{bottom:764.919467pt;}
.ya_c00122{bottom:792.519467pt;}
.y22_c00122{bottom:820.119467pt;}
.y9_c00122{bottom:847.719467pt;}
.y21_c00122{bottom:875.159467pt;}
.y8_c00122{bottom:875.319467pt;}
.y7_c00122{bottom:902.919467pt;}
.y6_c00122{bottom:930.519467pt;}
.y5_c00122{bottom:958.119467pt;}
.y4_c00122{bottom:985.719467pt;}
.y3_c00122{bottom:1013.319467pt;}
.y2_c00122{bottom:1061.399467pt;}
.h2_c00122{height:44.800000pt;}
.h3_c00122{height:48.294844pt;}
.h4_c00122{height:68.288000pt;}
.h5_c00122{height:69.376000pt;}
.h0_c00122{height:1122.520000pt;}
.h1_c00122{height:1122.666667pt;}
.w2_c00122{width:0.000000pt;}
.w3_c00122{width:0.058667pt;}
.w0_c00122{width:793.701333pt;}
.w1_c00122{width:794.000000pt;}
.x1_c00122{left:-745.700800pt;}
.x2_c00122{left:-680.260800pt;}
.x4_c00122{left:-661.300800pt;}
.x3_c00122{left:-651.860800pt;}
.x5_c00122{left:-642.420800pt;}
.x0_c00122{left:0.000000pt;}
.x8_c00122{left:113.440000pt;}
.x9_c00122{left:141.840000pt;}
.x7_c00122{left:616.400000pt;}
.x6_c00122{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_09cb497c42a3b0e39d7a2c40.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00123;src:url('chunks/assets/font_ff5453d4957ad4bdb7e18dcc.woff2')format("woff");}.ff3_c00123{font-family:ff3_c00123;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00123{letter-spacing:-0.360000px;}
.ls6_c00123{letter-spacing:-0.131760px;}
.ls7_c00123{letter-spacing:-0.072000px;}
.ls5_c00123{letter-spacing:0.000000px;}
.ls1_c00123{letter-spacing:0.072000px;}
.ls2_c00123{letter-spacing:0.144000px;}
.ls4_c00123{letter-spacing:23.068800px;}
.ls0_c00123{letter-spacing:32.400000px;}
.ls3_c00123{letter-spacing:33.480000px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00123{word-spacing:-18.000000px;}
.ws2_c00123{word-spacing:-17.640000px;}
.ws1d_c00123{word-spacing:-0.360000px;}
.ws22_c00123{word-spacing:-0.144000px;}
.ws6_c00123{word-spacing:-0.131760px;}
.ws12_c00123{word-spacing:-0.072000px;}
.ws3_c00123{word-spacing:0.000000px;}
.ws5_c00123{word-spacing:0.131760px;}
.ws1f_c00123{word-spacing:0.360000px;}
.wsc_c00123{word-spacing:0.720000px;}
.ws19_c00123{word-spacing:1.800000px;}
.ws9_c00123{word-spacing:2.016000px;}
.wsa_c00123{word-spacing:2.088000px;}
.ws8_c00123{word-spacing:2.160000px;}
.ws21_c00123{word-spacing:2.520000px;}
.ws14_c00123{word-spacing:3.168000px;}
.ws20_c00123{word-spacing:4.320000px;}
.ws25_c00123{word-spacing:4.896000px;}
.ws24_c00123{word-spacing:4.968000px;}
.ws26_c00123{word-spacing:5.040000px;}
.ws18_c00123{word-spacing:5.328000px;}
.ws13_c00123{word-spacing:5.400000px;}
.ws4_c00123{word-spacing:7.056000px;}
.ws23_c00123{word-spacing:7.560000px;}
.ws17_c00123{word-spacing:7.920000px;}
.wsb_c00123{word-spacing:8.208000px;}
.wsd_c00123{word-spacing:10.368000px;}
.wse_c00123{word-spacing:10.440000px;}
.ws1_c00123{word-spacing:10.656000px;}
.ws11_c00123{word-spacing:11.808000px;}
.ws10_c00123{word-spacing:11.880000px;}
.wsf_c00123{word-spacing:12.600000px;}
.ws1b_c00123{word-spacing:14.328000px;}
.ws1c_c00123{word-spacing:14.400000px;}
.ws7_c00123{word-spacing:14.760000px;}
.ws16_c00123{word-spacing:15.120000px;}
.ws15_c00123{word-spacing:15.480000px;}
.ws1a_c00123{word-spacing:18.288000px;}
.ws1e_c00123{word-spacing:26.208000px;}
._1_c00123{margin-left:-1.152000px;}
._0_c00123{width:1.119960px;}
._2_c00123{width:31.392000px;}
.fc1_c00123{color:rgb(0,0,0);}
.fc0_c00123{color:rgb(35,31,32);}
.fs1_c00123{font-size:65.880000px;}
.fs0_c00123{font-size:72.000000px;}
.y0_c00123{bottom:0.000000px;}
.y1_c00123{bottom:61.748550px;}
.y1f_c00123{bottom:146.474400px;}
.y1e_c00123{bottom:177.524400px;}
.y1d_c00123{bottom:208.574400px;}
.y1c_c00123{bottom:239.624400px;}
.y1b_c00123{bottom:270.674400px;}
.y1a_c00123{bottom:301.724400px;}
.y19_c00123{bottom:363.824400px;}
.y18_c00123{bottom:394.874400px;}
.y17_c00123{bottom:425.924400px;}
.y16_c00123{bottom:456.974400px;}
.y15_c00123{bottom:488.024400px;}
.y14_c00123{bottom:550.124400px;}
.y13_c00123{bottom:581.174400px;}
.y12_c00123{bottom:612.224400px;}
.y11_c00123{bottom:643.274400px;}
.y10_c00123{bottom:674.324400px;}
.yf_c00123{bottom:736.424400px;}
.ye_c00123{bottom:767.474400px;}
.yd_c00123{bottom:798.434400px;}
.yc_c00123{bottom:829.484400px;}
.yb_c00123{bottom:860.534400px;}
.ya_c00123{bottom:922.634400px;}
.y9_c00123{bottom:953.684400px;}
.y8_c00123{bottom:984.734400px;}
.y7_c00123{bottom:1015.784400px;}
.y6_c00123{bottom:1046.834400px;}
.y5_c00123{bottom:1077.884400px;}
.y4_c00123{bottom:1108.934400px;}
.y3_c00123{bottom:1139.984400px;}
.y2_c00123{bottom:1194.074400px;}
.h2_c00123{height:50.400000px;}
.h3_c00123{height:54.331699px;}
.h4_c00123{height:76.824000px;}
.h0_c00123{height:1262.835000px;}
.h1_c00123{height:1263.000000px;}
.w0_c00123{width:892.914000px;}
.w1_c00123{width:893.250000px;}
.x0_c00123{left:0.000000px;}
.x1_c00123{left:54.000000px;}
.x2_c00123{left:127.620000px;}
.x3_c00123{left:159.570000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls8_c00123{letter-spacing:-0.320000pt;}
.ls6_c00123{letter-spacing:-0.117120pt;}
.ls7_c00123{letter-spacing:-0.064000pt;}
.ls5_c00123{letter-spacing:0.000000pt;}
.ls1_c00123{letter-spacing:0.064000pt;}
.ls2_c00123{letter-spacing:0.128000pt;}
.ls4_c00123{letter-spacing:20.505600pt;}
.ls0_c00123{letter-spacing:28.800000pt;}
.ls3_c00123{letter-spacing:29.760000pt;}
.ws0_c00123{word-spacing:-16.000000pt;}
.ws2_c00123{word-spacing:-15.680000pt;}
.ws1d_c00123{word-spacing:-0.320000pt;}
.ws22_c00123{word-spacing:-0.128000pt;}
.ws6_c00123{word-spacing:-0.117120pt;}
.ws12_c00123{word-spacing:-0.064000pt;}
.ws3_c00123{word-spacing:0.000000pt;}
.ws5_c00123{word-spacing:0.117120pt;}
.ws1f_c00123{word-spacing:0.320000pt;}
.wsc_c00123{word-spacing:0.640000pt;}
.ws19_c00123{word-spacing:1.600000pt;}
.ws9_c00123{word-spacing:1.792000pt;}
.wsa_c00123{word-spacing:1.856000pt;}
.ws8_c00123{word-spacing:1.920000pt;}
.ws21_c00123{word-spacing:2.240000pt;}
.ws14_c00123{word-spacing:2.816000pt;}
.ws20_c00123{word-spacing:3.840000pt;}
.ws25_c00123{word-spacing:4.352000pt;}
.ws24_c00123{word-spacing:4.416000pt;}
.ws26_c00123{word-spacing:4.480000pt;}
.ws18_c00123{word-spacing:4.736000pt;}
.ws13_c00123{word-spacing:4.800000pt;}
.ws4_c00123{word-spacing:6.272000pt;}
.ws23_c00123{word-spacing:6.720000pt;}
.ws17_c00123{word-spacing:7.040000pt;}
.wsb_c00123{word-spacing:7.296000pt;}
.wsd_c00123{word-spacing:9.216000pt;}
.wse_c00123{word-spacing:9.280000pt;}
.ws1_c00123{word-spacing:9.472000pt;}
.ws11_c00123{word-spacing:10.496000pt;}
.ws10_c00123{word-spacing:10.560000pt;}
.wsf_c00123{word-spacing:11.200000pt;}
.ws1b_c00123{word-spacing:12.736000pt;}
.ws1c_c00123{word-spacing:12.800000pt;}
.ws7_c00123{word-spacing:13.120000pt;}
.ws16_c00123{word-spacing:13.440000pt;}
.ws15_c00123{word-spacing:13.760000pt;}
.ws1a_c00123{word-spacing:16.256000pt;}
.ws1e_c00123{word-spacing:23.296000pt;}
._1_c00123{margin-left:-1.024000pt;}
._0_c00123{width:0.995520pt;}
._2_c00123{width:27.904000pt;}
.fs1_c00123{font-size:58.560000pt;}
.fs0_c00123{font-size:64.000000pt;}
.y0_c00123{bottom:0.000000pt;}
.y1_c00123{bottom:54.887600pt;}
.y1f_c00123{bottom:130.199467pt;}
.y1e_c00123{bottom:157.799467pt;}
.y1d_c00123{bottom:185.399467pt;}
.y1c_c00123{bottom:212.999467pt;}
.y1b_c00123{bottom:240.599467pt;}
.y1a_c00123{bottom:268.199467pt;}
.y19_c00123{bottom:323.399467pt;}
.y18_c00123{bottom:350.999467pt;}
.y17_c00123{bottom:378.599467pt;}
.y16_c00123{bottom:406.199467pt;}
.y15_c00123{bottom:433.799467pt;}
.y14_c00123{bottom:488.999467pt;}
.y13_c00123{bottom:516.599467pt;}
.y12_c00123{bottom:544.199467pt;}
.y11_c00123{bottom:571.799467pt;}
.y10_c00123{bottom:599.399467pt;}
.yf_c00123{bottom:654.599467pt;}
.ye_c00123{bottom:682.199467pt;}
.yd_c00123{bottom:709.719467pt;}
.yc_c00123{bottom:737.319467pt;}
.yb_c00123{bottom:764.919467pt;}
.ya_c00123{bottom:820.119467pt;}
.y9_c00123{bottom:847.719467pt;}
.y8_c00123{bottom:875.319467pt;}
.y7_c00123{bottom:902.919467pt;}
.y6_c00123{bottom:930.519467pt;}
.y5_c00123{bottom:958.119467pt;}
.y4_c00123{bottom:985.719467pt;}
.y3_c00123{bottom:1013.319467pt;}
.y2_c00123{bottom:1061.399467pt;}
.h2_c00123{height:44.800000pt;}
.h3_c00123{height:48.294844pt;}
.h4_c00123{height:68.288000pt;}
.h0_c00123{height:1122.520000pt;}
.h1_c00123{height:1122.666667pt;}
.w0_c00123{width:793.701333pt;}
.w1_c00123{width:794.000000pt;}
.x0_c00123{left:0.000000pt;}
.x1_c00123{left:48.000000pt;}
.x2_c00123{left:113.440000pt;}
.x3_c00123{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00124;src:url('chunks/assets/font_f307985cbf67ebf857aacb51.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00124;src:url('chunks/assets/font_49c4c210dec0847e3cf63661.woff2')format("woff");}.ff3_c00124{font-family:ff3_c00124;line-height:1.575000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00124{font-family:ff4_c00124;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00124;src:url('chunks/assets/font_d93ce6fdfb5b08fc4a773ca7.woff2')format("woff");}.ff5_c00124{font-family:ff5_c00124;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00124;src:url('chunks/assets/font_106a8e457ca97eb2b52c97b2.woff2')format("woff");}.ff6_c00124{font-family:ff6_c00124;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00124;src:url('chunks/assets/font_1c27b0ea10672f50c567bc4d.woff2')format("woff");}.ff7_c00124{font-family:ff7_c00124;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00124;src:url('chunks/assets/font_8fda233965a9ab0e6b508a51.woff2')format("woff");}.ff8_c00124{font-family:ff8_c00124;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c00124{letter-spacing:-0.360000px;}
.lsa_c00124{letter-spacing:-0.131760px;}
.lsb_c00124{letter-spacing:-0.072000px;}
.ls9_c00124{letter-spacing:0.000000px;}
.ls1_c00124{letter-spacing:0.072000px;}
.ls2_c00124{letter-spacing:0.144000px;}
.ls6_c00124{letter-spacing:0.360000px;}
.ls8_c00124{letter-spacing:20.880000px;}
.ls5_c00124{letter-spacing:23.061600px;}
.ls4_c00124{letter-spacing:23.068800px;}
.ls0_c00124{letter-spacing:32.400000px;}
.ls3_c00124{letter-spacing:33.480000px;}
.ls7_c00124{letter-spacing:36.864000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00124{word-spacing:-18.000000px;}
.ws2_c00124{word-spacing:-17.640000px;}
.ws24_c00124{word-spacing:-0.360000px;}
.ws29_c00124{word-spacing:-0.144000px;}
.wsd_c00124{word-spacing:-0.131760px;}
.ws19_c00124{word-spacing:-0.072000px;}
.ws3_c00124{word-spacing:0.000000px;}
.wsc_c00124{word-spacing:0.131760px;}
.ws26_c00124{word-spacing:0.360000px;}
.ws13_c00124{word-spacing:0.720000px;}
.ws3d_c00124{word-spacing:1.728000px;}
.ws20_c00124{word-spacing:1.800000px;}
.ws10_c00124{word-spacing:2.016000px;}
.ws11_c00124{word-spacing:2.088000px;}
.wsf_c00124{word-spacing:2.160000px;}
.ws28_c00124{word-spacing:2.520000px;}
.ws1b_c00124{word-spacing:3.168000px;}
.wsa_c00124{word-spacing:3.240000px;}
.ws30_c00124{word-spacing:3.600000px;}
.ws3b_c00124{word-spacing:4.248000px;}
.ws27_c00124{word-spacing:4.320000px;}
.wsb_c00124{word-spacing:4.392000px;}
.ws2c_c00124{word-spacing:4.896000px;}
.ws2b_c00124{word-spacing:4.968000px;}
.ws2d_c00124{word-spacing:5.040000px;}
.ws1f_c00124{word-spacing:5.328000px;}
.ws1a_c00124{word-spacing:5.400000px;}
.ws41_c00124{word-spacing:6.048000px;}
.ws4_c00124{word-spacing:7.056000px;}
.ws31_c00124{word-spacing:7.200000px;}
.ws33_c00124{word-spacing:7.488000px;}
.ws2a_c00124{word-spacing:7.560000px;}
.ws1e_c00124{word-spacing:7.920000px;}
.ws12_c00124{word-spacing:8.208000px;}
.ws3e_c00124{word-spacing:8.640000px;}
.ws3f_c00124{word-spacing:9.000000px;}
.ws8_c00124{word-spacing:10.238400px;}
.ws14_c00124{word-spacing:10.368000px;}
.ws15_c00124{word-spacing:10.440000px;}
.ws1_c00124{word-spacing:10.656000px;}
.ws18_c00124{word-spacing:11.808000px;}
.ws17_c00124{word-spacing:11.880000px;}
.ws16_c00124{word-spacing:12.600000px;}
.ws9_c00124{word-spacing:12.960000px;}
.ws32_c00124{word-spacing:13.680000px;}
.ws2f_c00124{word-spacing:13.968000px;}
.ws37_c00124{word-spacing:14.040000px;}
.ws22_c00124{word-spacing:14.328000px;}
.ws23_c00124{word-spacing:14.400000px;}
.wse_c00124{word-spacing:14.760000px;}
.ws1d_c00124{word-spacing:15.120000px;}
.ws1c_c00124{word-spacing:15.480000px;}
.ws40_c00124{word-spacing:17.280000px;}
.ws2e_c00124{word-spacing:17.568000px;}
.ws5_c00124{word-spacing:17.640000px;}
.ws21_c00124{word-spacing:18.288000px;}
.ws36_c00124{word-spacing:18.720000px;}
.ws3c_c00124{word-spacing:20.880000px;}
.ws38_c00124{word-spacing:21.240000px;}
.ws34_c00124{word-spacing:21.960000px;}
.ws35_c00124{word-spacing:24.768000px;}
.ws25_c00124{word-spacing:26.208000px;}
.ws3a_c00124{word-spacing:27.576000px;}
.ws39_c00124{word-spacing:28.080000px;}
.ws6_c00124{word-spacing:53.280000px;}
.ws7_c00124{word-spacing:104.400000px;}
._1_c00124{margin-left:-1.152000px;}
._0_c00124{width:1.119960px;}
._3_c00124{width:19.065600px;}
._2_c00124{width:31.392000px;}
.fc2_c00124{color:transparent;}
.fc1_c00124{color:rgb(0,0,0);}
.fc0_c00124{color:rgb(35,31,32);}
.fs1_c00124{font-size:65.880000px;}
.fs0_c00124{font-size:72.000000px;}
.y0_c00124{bottom:0.000000px;}
.y1_c00124{bottom:61.748550px;}
.y25_c00124{bottom:115.424400px;}
.y1f_c00124{bottom:146.474400px;}
.y1e_c00124{bottom:177.524400px;}
.y1d_c00124{bottom:208.574400px;}
.y1c_c00124{bottom:239.624400px;}
.y1b_c00124{bottom:270.674400px;}
.y1a_c00124{bottom:301.724400px;}
.y19_c00124{bottom:363.824400px;}
.y18_c00124{bottom:394.874400px;}
.y17_c00124{bottom:425.924400px;}
.y16_c00124{bottom:456.974400px;}
.y15_c00124{bottom:488.024400px;}
.y24_c00124{bottom:519.074400px;}
.y14_c00124{bottom:550.124400px;}
.y13_c00124{bottom:581.174400px;}
.y12_c00124{bottom:612.224400px;}
.y11_c00124{bottom:643.274400px;}
.y10_c00124{bottom:674.324400px;}
.y23_c00124{bottom:705.374400px;}
.yf_c00124{bottom:736.424400px;}
.ye_c00124{bottom:767.474400px;}
.yd_c00124{bottom:798.434400px;}
.yc_c00124{bottom:829.484400px;}
.yb_c00124{bottom:860.534400px;}
.y22_c00124{bottom:891.584400px;}
.ya_c00124{bottom:922.634400px;}
.y9_c00124{bottom:953.684400px;}
.y8_c00124{bottom:984.734400px;}
.y21_c00124{bottom:1015.604400px;}
.y7_c00124{bottom:1015.784400px;}
.y20_c00124{bottom:1046.654400px;}
.y6_c00124{bottom:1046.834400px;}
.y5_c00124{bottom:1077.884400px;}
.y4_c00124{bottom:1108.934400px;}
.y3_c00124{bottom:1139.984400px;}
.y2_c00124{bottom:1194.074400px;}
.h2_c00124{height:50.400000px;}
.h3_c00124{height:54.331699px;}
.h4_c00124{height:76.824000px;}
.h5_c00124{height:78.048000px;}
.h0_c00124{height:1262.835000px;}
.h1_c00124{height:1263.000000px;}
.w2_c00124{width:0.000000px;}
.w3_c00124{width:0.066000px;}
.w0_c00124{width:892.914000px;}
.w1_c00124{width:893.250000px;}
.x1_c00124{left:-838.913400px;}
.x2_c00124{left:-765.293400px;}
.x3_c00124{left:-733.343400px;}
.x0_c00124{left:0.000000px;}
.x6_c00124{left:127.620000px;}
.x7_c00124{left:159.570000px;}
.x5_c00124{left:693.450000px;}
.x4_c00124{left:804.366150px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.lsc_c00124{letter-spacing:-0.320000pt;}
.lsa_c00124{letter-spacing:-0.117120pt;}
.lsb_c00124{letter-spacing:-0.064000pt;}
.ls9_c00124{letter-spacing:0.000000pt;}
.ls1_c00124{letter-spacing:0.064000pt;}
.ls2_c00124{letter-spacing:0.128000pt;}
.ls6_c00124{letter-spacing:0.320000pt;}
.ls8_c00124{letter-spacing:18.560000pt;}
.ls5_c00124{letter-spacing:20.499200pt;}
.ls4_c00124{letter-spacing:20.505600pt;}
.ls0_c00124{letter-spacing:28.800000pt;}
.ls3_c00124{letter-spacing:29.760000pt;}
.ls7_c00124{letter-spacing:32.768000pt;}
.ws0_c00124{word-spacing:-16.000000pt;}
.ws2_c00124{word-spacing:-15.680000pt;}
.ws24_c00124{word-spacing:-0.320000pt;}
.ws29_c00124{word-spacing:-0.128000pt;}
.wsd_c00124{word-spacing:-0.117120pt;}
.ws19_c00124{word-spacing:-0.064000pt;}
.ws3_c00124{word-spacing:0.000000pt;}
.wsc_c00124{word-spacing:0.117120pt;}
.ws26_c00124{word-spacing:0.320000pt;}
.ws13_c00124{word-spacing:0.640000pt;}
.ws3d_c00124{word-spacing:1.536000pt;}
.ws20_c00124{word-spacing:1.600000pt;}
.ws10_c00124{word-spacing:1.792000pt;}
.ws11_c00124{word-spacing:1.856000pt;}
.wsf_c00124{word-spacing:1.920000pt;}
.ws28_c00124{word-spacing:2.240000pt;}
.ws1b_c00124{word-spacing:2.816000pt;}
.wsa_c00124{word-spacing:2.880000pt;}
.ws30_c00124{word-spacing:3.200000pt;}
.ws3b_c00124{word-spacing:3.776000pt;}
.ws27_c00124{word-spacing:3.840000pt;}
.wsb_c00124{word-spacing:3.904000pt;}
.ws2c_c00124{word-spacing:4.352000pt;}
.ws2b_c00124{word-spacing:4.416000pt;}
.ws2d_c00124{word-spacing:4.480000pt;}
.ws1f_c00124{word-spacing:4.736000pt;}
.ws1a_c00124{word-spacing:4.800000pt;}
.ws41_c00124{word-spacing:5.376000pt;}
.ws4_c00124{word-spacing:6.272000pt;}
.ws31_c00124{word-spacing:6.400000pt;}
.ws33_c00124{word-spacing:6.656000pt;}
.ws2a_c00124{word-spacing:6.720000pt;}
.ws1e_c00124{word-spacing:7.040000pt;}
.ws12_c00124{word-spacing:7.296000pt;}
.ws3e_c00124{word-spacing:7.680000pt;}
.ws3f_c00124{word-spacing:8.000000pt;}
.ws8_c00124{word-spacing:9.100800pt;}
.ws14_c00124{word-spacing:9.216000pt;}
.ws15_c00124{word-spacing:9.280000pt;}
.ws1_c00124{word-spacing:9.472000pt;}
.ws18_c00124{word-spacing:10.496000pt;}
.ws17_c00124{word-spacing:10.560000pt;}
.ws16_c00124{word-spacing:11.200000pt;}
.ws9_c00124{word-spacing:11.520000pt;}
.ws32_c00124{word-spacing:12.160000pt;}
.ws2f_c00124{word-spacing:12.416000pt;}
.ws37_c00124{word-spacing:12.480000pt;}
.ws22_c00124{word-spacing:12.736000pt;}
.ws23_c00124{word-spacing:12.800000pt;}
.wse_c00124{word-spacing:13.120000pt;}
.ws1d_c00124{word-spacing:13.440000pt;}
.ws1c_c00124{word-spacing:13.760000pt;}
.ws40_c00124{word-spacing:15.360000pt;}
.ws2e_c00124{word-spacing:15.616000pt;}
.ws5_c00124{word-spacing:15.680000pt;}
.ws21_c00124{word-spacing:16.256000pt;}
.ws36_c00124{word-spacing:16.640000pt;}
.ws3c_c00124{word-spacing:18.560000pt;}
.ws38_c00124{word-spacing:18.880000pt;}
.ws34_c00124{word-spacing:19.520000pt;}
.ws35_c00124{word-spacing:22.016000pt;}
.ws25_c00124{word-spacing:23.296000pt;}
.ws3a_c00124{word-spacing:24.512000pt;}
.ws39_c00124{word-spacing:24.960000pt;}
.ws6_c00124{word-spacing:47.360000pt;}
.ws7_c00124{word-spacing:92.800000pt;}
._1_c00124{margin-left:-1.024000pt;}
._0_c00124{width:0.995520pt;}
._3_c00124{width:16.947200pt;}
._2_c00124{width:27.904000pt;}
.fs1_c00124{font-size:58.560000pt;}
.fs0_c00124{font-size:64.000000pt;}
.y0_c00124{bottom:0.000000pt;}
.y1_c00124{bottom:54.887600pt;}
.y25_c00124{bottom:102.599467pt;}
.y1f_c00124{bottom:130.199467pt;}
.y1e_c00124{bottom:157.799467pt;}
.y1d_c00124{bottom:185.399467pt;}
.y1c_c00124{bottom:212.999467pt;}
.y1b_c00124{bottom:240.599467pt;}
.y1a_c00124{bottom:268.199467pt;}
.y19_c00124{bottom:323.399467pt;}
.y18_c00124{bottom:350.999467pt;}
.y17_c00124{bottom:378.599467pt;}
.y16_c00124{bottom:406.199467pt;}
.y15_c00124{bottom:433.799467pt;}
.y24_c00124{bottom:461.399467pt;}
.y14_c00124{bottom:488.999467pt;}
.y13_c00124{bottom:516.599467pt;}
.y12_c00124{bottom:544.199467pt;}
.y11_c00124{bottom:571.799467pt;}
.y10_c00124{bottom:599.399467pt;}
.y23_c00124{bottom:626.999467pt;}
.yf_c00124{bottom:654.599467pt;}
.ye_c00124{bottom:682.199467pt;}
.yd_c00124{bottom:709.719467pt;}
.yc_c00124{bottom:737.319467pt;}
.yb_c00124{bottom:764.919467pt;}
.y22_c00124{bottom:792.519467pt;}
.ya_c00124{bottom:820.119467pt;}
.y9_c00124{bottom:847.719467pt;}
.y8_c00124{bottom:875.319467pt;}
.y21_c00124{bottom:902.759467pt;}
.y7_c00124{bottom:902.919467pt;}
.y20_c00124{bottom:930.359467pt;}
.y6_c00124{bottom:930.519467pt;}
.y5_c00124{bottom:958.119467pt;}
.y4_c00124{bottom:985.719467pt;}
.y3_c00124{bottom:1013.319467pt;}
.y2_c00124{bottom:1061.399467pt;}
.h2_c00124{height:44.800000pt;}
.h3_c00124{height:48.294844pt;}
.h4_c00124{height:68.288000pt;}
.h5_c00124{height:69.376000pt;}
.h0_c00124{height:1122.520000pt;}
.h1_c00124{height:1122.666667pt;}
.w2_c00124{width:0.000000pt;}
.w3_c00124{width:0.058667pt;}
.w0_c00124{width:793.701333pt;}
.w1_c00124{width:794.000000pt;}
.x1_c00124{left:-745.700800pt;}
.x2_c00124{left:-680.260800pt;}
.x3_c00124{left:-651.860800pt;}
.x0_c00124{left:0.000000pt;}
.x6_c00124{left:113.440000pt;}
.x7_c00124{left:141.840000pt;}
.x5_c00124{left:616.400000pt;}
.x4_c00124{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00125;src:url('chunks/assets/font_398d27b6c57c31e0b50006ba.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00125;src:url('chunks/assets/font_813a5105cb79a27f15cbb8d8.woff2')format("woff");}.ff3_c00125{font-family:ff3_c00125;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00125;src:url('chunks/assets/font_4c3f462b3808573f7aca535a.woff2')format("woff");}.ff4_c00125{font-family:ff4_c00125;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.lsc_c00125{letter-spacing:-0.360000px;}
.lsb_c00125{letter-spacing:-0.288000px;}
.ls9_c00125{letter-spacing:-0.131760px;}
.lsa_c00125{letter-spacing:-0.065880px;}
.ls8_c00125{letter-spacing:0.000000px;}
.ls0_c00125{letter-spacing:0.072000px;}
.ls7_c00125{letter-spacing:0.144000px;}
.ls2_c00125{letter-spacing:0.197640px;}
.ls3_c00125{letter-spacing:16.390944px;}
.ls1_c00125{letter-spacing:22.680000px;}
.ls4_c00125{letter-spacing:28.800000px;}
.ls5_c00125{letter-spacing:43.920000px;}
.ls6_c00125{letter-spacing:63.720000px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00125{word-spacing:-18.000000px;}
.ws0_c00125{word-spacing:-16.404120px;}
.wsb_c00125{word-spacing:-0.197640px;}
.ws14_c00125{word-spacing:-0.144000px;}
.ws5_c00125{word-spacing:-0.131760px;}
.ws17_c00125{word-spacing:-0.072000px;}
.ws3_c00125{word-spacing:0.000000px;}
.ws4_c00125{word-spacing:0.131760px;}
.wse_c00125{word-spacing:0.288000px;}
.ws20_c00125{word-spacing:0.360000px;}
.ws11_c00125{word-spacing:0.936000px;}
.ws10_c00125{word-spacing:1.008000px;}
.ws8_c00125{word-spacing:2.437560px;}
.wsc_c00125{word-spacing:2.808000px;}
.wsd_c00125{word-spacing:3.888000px;}
.wsf_c00125{word-spacing:3.960000px;}
.ws13_c00125{word-spacing:4.248000px;}
.ws1_c00125{word-spacing:4.320000px;}
.ws6_c00125{word-spacing:4.608000px;}
.ws7_c00125{word-spacing:4.680000px;}
.ws24_c00125{word-spacing:5.040000px;}
.ws26_c00125{word-spacing:5.400000px;}
.ws18_c00125{word-spacing:5.688000px;}
.ws23_c00125{word-spacing:5.760000px;}
.ws21_c00125{word-spacing:9.720000px;}
.ws15_c00125{word-spacing:10.440000px;}
.ws16_c00125{word-spacing:10.800000px;}
.ws25_c00125{word-spacing:12.240000px;}
.wsa_c00125{word-spacing:13.900680px;}
.ws9_c00125{word-spacing:16.008840px;}
.ws12_c00125{word-spacing:18.000000px;}
.ws27_c00125{word-spacing:19.440000px;}
.ws1d_c00125{word-spacing:22.320000px;}
.ws1c_c00125{word-spacing:22.608000px;}
.ws1b_c00125{word-spacing:22.680000px;}
.ws1a_c00125{word-spacing:25.920000px;}
.ws19_c00125{word-spacing:34.848000px;}
.ws22_c00125{word-spacing:39.240000px;}
.ws1f_c00125{word-spacing:45.216000px;}
.ws1e_c00125{word-spacing:45.720000px;}
._1_c00125{margin-left:-1.368000px;}
._0_c00125{width:1.119960px;}
._2_c00125{width:4.320000px;}
.fc1_c00125{color:rgb(0,0,0);}
.fc0_c00125{color:rgb(35,31,32);}
.fs1_c00125{font-size:65.880000px;}
.fs0_c00125{font-size:72.000000px;}
.y0_c00125{bottom:0.000000px;}
.y1_c00125{bottom:61.748550px;}
.y1f_c00125{bottom:156.824400px;}
.y1e_c00125{bottom:187.874400px;}
.y1d_c00125{bottom:218.924400px;}
.y1c_c00125{bottom:249.974400px;}
.y1b_c00125{bottom:312.074400px;}
.y1a_c00125{bottom:343.124400px;}
.y19_c00125{bottom:374.174400px;}
.y18_c00125{bottom:405.224400px;}
.y17_c00125{bottom:436.274400px;}
.y16_c00125{bottom:467.324400px;}
.y15_c00125{bottom:529.424400px;}
.y14_c00125{bottom:560.474400px;}
.y13_c00125{bottom:591.524400px;}
.y12_c00125{bottom:622.574400px;}
.y11_c00125{bottom:653.624400px;}
.y10_c00125{bottom:684.674400px;}
.yf_c00125{bottom:715.724400px;}
.ye_c00125{bottom:746.774400px;}
.yd_c00125{bottom:777.824400px;}
.yc_c00125{bottom:808.784400px;}
.yb_c00125{bottom:839.834400px;}
.ya_c00125{bottom:870.884400px;}
.y9_c00125{bottom:901.934400px;}
.y8_c00125{bottom:962.772150px;}
.y7_c00125{bottom:991.117020px;}
.y6_c00125{bottom:1019.560710px;}
.y5_c00125{bottom:1048.004400px;}
.y4_c00125{bottom:1108.934400px;}
.y3_c00125{bottom:1139.984400px;}
.y2_c00125{bottom:1194.074400px;}
.h2_c00125{height:50.400000px;}
.h3_c00125{height:54.331699px;}
.h5_c00125{height:71.413920px;}
.h4_c00125{height:76.824000px;}
.h6_c00125{height:78.048000px;}
.h0_c00125{height:1262.835000px;}
.h1_c00125{height:1263.000000px;}
.w0_c00125{width:892.914000px;}
.w1_c00125{width:893.250000px;}
.x0_c00125{left:0.000000px;}
.x1_c00125{left:54.000000px;}
.x2_c00125{left:127.620000px;}
.x3_c00125{left:159.570000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.lsc_c00125{letter-spacing:-0.320000pt;}
.lsb_c00125{letter-spacing:-0.256000pt;}
.ls9_c00125{letter-spacing:-0.117120pt;}
.lsa_c00125{letter-spacing:-0.058560pt;}
.ls8_c00125{letter-spacing:0.000000pt;}
.ls0_c00125{letter-spacing:0.064000pt;}
.ls7_c00125{letter-spacing:0.128000pt;}
.ls2_c00125{letter-spacing:0.175680pt;}
.ls3_c00125{letter-spacing:14.569728pt;}
.ls1_c00125{letter-spacing:20.160000pt;}
.ls4_c00125{letter-spacing:25.600000pt;}
.ls5_c00125{letter-spacing:39.040000pt;}
.ls6_c00125{letter-spacing:56.640000pt;}
.ws2_c00125{word-spacing:-16.000000pt;}
.ws0_c00125{word-spacing:-14.581440pt;}
.wsb_c00125{word-spacing:-0.175680pt;}
.ws14_c00125{word-spacing:-0.128000pt;}
.ws5_c00125{word-spacing:-0.117120pt;}
.ws17_c00125{word-spacing:-0.064000pt;}
.ws3_c00125{word-spacing:0.000000pt;}
.ws4_c00125{word-spacing:0.117120pt;}
.wse_c00125{word-spacing:0.256000pt;}
.ws20_c00125{word-spacing:0.320000pt;}
.ws11_c00125{word-spacing:0.832000pt;}
.ws10_c00125{word-spacing:0.896000pt;}
.ws8_c00125{word-spacing:2.166720pt;}
.wsc_c00125{word-spacing:2.496000pt;}
.wsd_c00125{word-spacing:3.456000pt;}
.wsf_c00125{word-spacing:3.520000pt;}
.ws13_c00125{word-spacing:3.776000pt;}
.ws1_c00125{word-spacing:3.840000pt;}
.ws6_c00125{word-spacing:4.096000pt;}
.ws7_c00125{word-spacing:4.160000pt;}
.ws24_c00125{word-spacing:4.480000pt;}
.ws26_c00125{word-spacing:4.800000pt;}
.ws18_c00125{word-spacing:5.056000pt;}
.ws23_c00125{word-spacing:5.120000pt;}
.ws21_c00125{word-spacing:8.640000pt;}
.ws15_c00125{word-spacing:9.280000pt;}
.ws16_c00125{word-spacing:9.600000pt;}
.ws25_c00125{word-spacing:10.880000pt;}
.wsa_c00125{word-spacing:12.356160pt;}
.ws9_c00125{word-spacing:14.230080pt;}
.ws12_c00125{word-spacing:16.000000pt;}
.ws27_c00125{word-spacing:17.280000pt;}
.ws1d_c00125{word-spacing:19.840000pt;}
.ws1c_c00125{word-spacing:20.096000pt;}
.ws1b_c00125{word-spacing:20.160000pt;}
.ws1a_c00125{word-spacing:23.040000pt;}
.ws19_c00125{word-spacing:30.976000pt;}
.ws22_c00125{word-spacing:34.880000pt;}
.ws1f_c00125{word-spacing:40.192000pt;}
.ws1e_c00125{word-spacing:40.640000pt;}
._1_c00125{margin-left:-1.216000pt;}
._0_c00125{width:0.995520pt;}
._2_c00125{width:3.840000pt;}
.fs1_c00125{font-size:58.560000pt;}
.fs0_c00125{font-size:64.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y1_c00125{bottom:54.887600pt;}
.y1f_c00125{bottom:139.399467pt;}
.y1e_c00125{bottom:166.999467pt;}
.y1d_c00125{bottom:194.599467pt;}
.y1c_c00125{bottom:222.199467pt;}
.y1b_c00125{bottom:277.399467pt;}
.y1a_c00125{bottom:304.999467pt;}
.y19_c00125{bottom:332.599467pt;}
.y18_c00125{bottom:360.199467pt;}
.y17_c00125{bottom:387.799467pt;}
.y16_c00125{bottom:415.399467pt;}
.y15_c00125{bottom:470.599467pt;}
.y14_c00125{bottom:498.199467pt;}
.y13_c00125{bottom:525.799467pt;}
.y12_c00125{bottom:553.399467pt;}
.y11_c00125{bottom:580.999467pt;}
.y10_c00125{bottom:608.599467pt;}
.yf_c00125{bottom:636.199467pt;}
.ye_c00125{bottom:663.799467pt;}
.yd_c00125{bottom:691.399467pt;}
.yc_c00125{bottom:718.919467pt;}
.yb_c00125{bottom:746.519467pt;}
.ya_c00125{bottom:774.119467pt;}
.y9_c00125{bottom:801.719467pt;}
.y8_c00125{bottom:855.797467pt;}
.y7_c00125{bottom:880.992907pt;}
.y6_c00125{bottom:906.276187pt;}
.y5_c00125{bottom:931.559467pt;}
.y4_c00125{bottom:985.719467pt;}
.y3_c00125{bottom:1013.319467pt;}
.y2_c00125{bottom:1061.399467pt;}
.h2_c00125{height:44.800000pt;}
.h3_c00125{height:48.294844pt;}
.h5_c00125{height:63.479040pt;}
.h4_c00125{height:68.288000pt;}
.h6_c00125{height:69.376000pt;}
.h0_c00125{height:1122.520000pt;}
.h1_c00125{height:1122.666667pt;}
.w0_c00125{width:793.701333pt;}
.w1_c00125{width:794.000000pt;}
.x0_c00125{left:0.000000pt;}
.x1_c00125{left:48.000000pt;}
.x2_c00125{left:113.440000pt;}
.x3_c00125{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00126;src:url('chunks/assets/font_eb399105e792ddf0eefa3b4b.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00126;src:url('chunks/assets/font_e0bf380d4bafe9102fe8c3c2.woff2')format("woff");}.ff3_c00126{font-family:ff3_c00126;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00126;src:url('chunks/assets/font_ab770a72b944fbf08c6b18b5.woff2')format("woff");}.ff4_c00126{font-family:ff4_c00126;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00126;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00126{font-family:ff5_c00126;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00126;src:url('chunks/assets/font_df29dea022d564445a937d73.woff2')format("woff");}.ff6_c00126{font-family:ff6_c00126;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00126;src:url('chunks/assets/font_95a10eca17957f098741bc75.woff2')format("woff");}.ff7_c00126{font-family:ff7_c00126;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00126;src:url('chunks/assets/font_9b3e52fb984d424e7d3a7be9.woff2')format("woff");}.ff8_c00126{font-family:ff8_c00126;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.lsf_c00126{letter-spacing:-0.360000px;}
.lse_c00126{letter-spacing:-0.288000px;}
.lsc_c00126{letter-spacing:-0.131760px;}
.lsd_c00126{letter-spacing:-0.065880px;}
.lsb_c00126{letter-spacing:0.000000px;}
.ls10_c00126{letter-spacing:0.065880px;}
.ls0_c00126{letter-spacing:0.072000px;}
.ls7_c00126{letter-spacing:0.144000px;}
.ls2_c00126{letter-spacing:0.197640px;}
.ls3_c00126{letter-spacing:16.390944px;}
.lsa_c00126{letter-spacing:20.520000px;}
.ls1_c00126{letter-spacing:22.680000px;}
.ls9_c00126{letter-spacing:25.200000px;}
.ls8_c00126{letter-spacing:28.785600px;}
.ls4_c00126{letter-spacing:28.800000px;}
.ls5_c00126{letter-spacing:43.920000px;}
.ls6_c00126{letter-spacing:63.720000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00126{word-spacing:-18.072000px;}
.ws2_c00126{word-spacing:-18.000000px;}
.ws0_c00126{word-spacing:-16.404120px;}
.ws11_c00126{word-spacing:-0.197640px;}
.ws9_c00126{word-spacing:-0.144000px;}
.wsb_c00126{word-spacing:-0.131760px;}
.ws7_c00126{word-spacing:-0.129600px;}
.ws1c_c00126{word-spacing:-0.072000px;}
.ws32_c00126{word-spacing:-0.065880px;}
.ws4_c00126{word-spacing:0.000000px;}
.wsa_c00126{word-spacing:0.131760px;}
.ws14_c00126{word-spacing:0.288000px;}
.ws25_c00126{word-spacing:0.360000px;}
.ws2d_c00126{word-spacing:0.648000px;}
.ws17_c00126{word-spacing:0.936000px;}
.ws16_c00126{word-spacing:1.008000px;}
.ws2e_c00126{word-spacing:1.296000px;}
.ws33_c00126{word-spacing:1.440000px;}
.ws40_c00126{word-spacing:2.088000px;}
.ws36_c00126{word-spacing:2.160000px;}
.ws6_c00126{word-spacing:2.232000px;}
.wse_c00126{word-spacing:2.437560px;}
.ws38_c00126{word-spacing:2.448000px;}
.ws39_c00126{word-spacing:2.520000px;}
.ws12_c00126{word-spacing:2.808000px;}
.ws5_c00126{word-spacing:2.836800px;}
.ws3c_c00126{word-spacing:2.880000px;}
.ws13_c00126{word-spacing:3.888000px;}
.ws15_c00126{word-spacing:3.960000px;}
.ws19_c00126{word-spacing:4.248000px;}
.ws1_c00126{word-spacing:4.320000px;}
.ws2f_c00126{word-spacing:4.545720px;}
.wsc_c00126{word-spacing:4.608000px;}
.wsd_c00126{word-spacing:4.680000px;}
.ws29_c00126{word-spacing:5.040000px;}
.ws2b_c00126{word-spacing:5.400000px;}
.ws1d_c00126{word-spacing:5.688000px;}
.ws28_c00126{word-spacing:5.760000px;}
.ws42_c00126{word-spacing:6.120000px;}
.ws3a_c00126{word-spacing:6.696000px;}
.ws34_c00126{word-spacing:6.768000px;}
.ws35_c00126{word-spacing:6.840000px;}
.ws37_c00126{word-spacing:7.560000px;}
.ws30_c00126{word-spacing:7.707960px;}
.ws8_c00126{word-spacing:8.136000px;}
.ws44_c00126{word-spacing:8.208000px;}
.ws43_c00126{word-spacing:8.280000px;}
.ws3d_c00126{word-spacing:9.000000px;}
.ws26_c00126{word-spacing:9.720000px;}
.ws1a_c00126{word-spacing:10.440000px;}
.ws1b_c00126{word-spacing:10.800000px;}
.ws2a_c00126{word-spacing:12.240000px;}
.ws10_c00126{word-spacing:13.900680px;}
.wsf_c00126{word-spacing:16.008840px;}
.ws41_c00126{word-spacing:16.848000px;}
.ws45_c00126{word-spacing:17.640000px;}
.ws18_c00126{word-spacing:18.000000px;}
.ws2c_c00126{word-spacing:19.440000px;}
.ws3b_c00126{word-spacing:19.800000px;}
.ws31_c00126{word-spacing:22.201560px;}
.ws22_c00126{word-spacing:22.320000px;}
.ws21_c00126{word-spacing:22.608000px;}
.ws20_c00126{word-spacing:22.680000px;}
.ws1f_c00126{word-spacing:25.920000px;}
.ws3e_c00126{word-spacing:27.648000px;}
.ws3f_c00126{word-spacing:27.720000px;}
.ws1e_c00126{word-spacing:34.848000px;}
.ws27_c00126{word-spacing:39.240000px;}
.ws24_c00126{word-spacing:45.216000px;}
.ws23_c00126{word-spacing:45.720000px;}
._1_c00126{margin-left:-1.368000px;}
._0_c00126{width:1.119960px;}
._2_c00126{width:4.320000px;}
.fc2_c00126{color:transparent;}
.fc1_c00126{color:rgb(0,0,0);}
.fc0_c00126{color:rgb(35,31,32);}
.fs1_c00126{font-size:65.880000px;}
.fs0_c00126{font-size:72.000000px;}
.y0_c00126{bottom:0.000000px;}
.y1_c00126{bottom:61.748550px;}
.y1f_c00126{bottom:156.824400px;}
.y1e_c00126{bottom:187.874400px;}
.y1d_c00126{bottom:218.924400px;}
.y1c_c00126{bottom:249.974400px;}
.y21_c00126{bottom:281.024400px;}
.y1b_c00126{bottom:312.074400px;}
.y1a_c00126{bottom:343.124400px;}
.y19_c00126{bottom:374.174400px;}
.y18_c00126{bottom:405.224400px;}
.y17_c00126{bottom:436.274400px;}
.y16_c00126{bottom:467.324400px;}
.y20_c00126{bottom:498.374400px;}
.y15_c00126{bottom:529.424400px;}
.y14_c00126{bottom:560.474400px;}
.y13_c00126{bottom:591.524400px;}
.y12_c00126{bottom:622.574400px;}
.y11_c00126{bottom:653.624400px;}
.y10_c00126{bottom:684.674400px;}
.yf_c00126{bottom:715.724400px;}
.ye_c00126{bottom:746.774400px;}
.yd_c00126{bottom:777.824400px;}
.yc_c00126{bottom:808.784400px;}
.yb_c00126{bottom:839.834400px;}
.ya_c00126{bottom:870.884400px;}
.y9_c00126{bottom:901.934400px;}
.y8_c00126{bottom:962.772150px;}
.y7_c00126{bottom:991.117020px;}
.y6_c00126{bottom:1019.560710px;}
.y5_c00126{bottom:1048.004400px;}
.y4_c00126{bottom:1108.934400px;}
.y3_c00126{bottom:1139.984400px;}
.y2_c00126{bottom:1194.074400px;}
.h2_c00126{height:50.400000px;}
.h3_c00126{height:54.331699px;}
.h5_c00126{height:71.413920px;}
.h4_c00126{height:76.824000px;}
.h6_c00126{height:78.048000px;}
.h0_c00126{height:1262.835000px;}
.h1_c00126{height:1263.000000px;}
.w2_c00126{width:0.000000px;}
.w3_c00126{width:0.066000px;}
.w0_c00126{width:892.914000px;}
.w1_c00126{width:893.250000px;}
.x1_c00126{left:-838.913400px;}
.x2_c00126{left:-765.293400px;}
.x3_c00126{left:-733.343400px;}
.x0_c00126{left:0.000000px;}
.x6_c00126{left:127.620000px;}
.x7_c00126{left:159.570000px;}
.x5_c00126{left:693.450000px;}
.x4_c00126{left:804.366150px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.lsf_c00126{letter-spacing:-0.320000pt;}
.lse_c00126{letter-spacing:-0.256000pt;}
.lsc_c00126{letter-spacing:-0.117120pt;}
.lsd_c00126{letter-spacing:-0.058560pt;}
.lsb_c00126{letter-spacing:0.000000pt;}
.ls10_c00126{letter-spacing:0.058560pt;}
.ls0_c00126{letter-spacing:0.064000pt;}
.ls7_c00126{letter-spacing:0.128000pt;}
.ls2_c00126{letter-spacing:0.175680pt;}
.ls3_c00126{letter-spacing:14.569728pt;}
.lsa_c00126{letter-spacing:18.240000pt;}
.ls1_c00126{letter-spacing:20.160000pt;}
.ls9_c00126{letter-spacing:22.400000pt;}
.ls8_c00126{letter-spacing:25.587200pt;}
.ls4_c00126{letter-spacing:25.600000pt;}
.ls5_c00126{letter-spacing:39.040000pt;}
.ls6_c00126{letter-spacing:56.640000pt;}
.ws3_c00126{word-spacing:-16.064000pt;}
.ws2_c00126{word-spacing:-16.000000pt;}
.ws0_c00126{word-spacing:-14.581440pt;}
.ws11_c00126{word-spacing:-0.175680pt;}
.ws9_c00126{word-spacing:-0.128000pt;}
.wsb_c00126{word-spacing:-0.117120pt;}
.ws7_c00126{word-spacing:-0.115200pt;}
.ws1c_c00126{word-spacing:-0.064000pt;}
.ws32_c00126{word-spacing:-0.058560pt;}
.ws4_c00126{word-spacing:0.000000pt;}
.wsa_c00126{word-spacing:0.117120pt;}
.ws14_c00126{word-spacing:0.256000pt;}
.ws25_c00126{word-spacing:0.320000pt;}
.ws2d_c00126{word-spacing:0.576000pt;}
.ws17_c00126{word-spacing:0.832000pt;}
.ws16_c00126{word-spacing:0.896000pt;}
.ws2e_c00126{word-spacing:1.152000pt;}
.ws33_c00126{word-spacing:1.280000pt;}
.ws40_c00126{word-spacing:1.856000pt;}
.ws36_c00126{word-spacing:1.920000pt;}
.ws6_c00126{word-spacing:1.984000pt;}
.wse_c00126{word-spacing:2.166720pt;}
.ws38_c00126{word-spacing:2.176000pt;}
.ws39_c00126{word-spacing:2.240000pt;}
.ws12_c00126{word-spacing:2.496000pt;}
.ws5_c00126{word-spacing:2.521600pt;}
.ws3c_c00126{word-spacing:2.560000pt;}
.ws13_c00126{word-spacing:3.456000pt;}
.ws15_c00126{word-spacing:3.520000pt;}
.ws19_c00126{word-spacing:3.776000pt;}
.ws1_c00126{word-spacing:3.840000pt;}
.ws2f_c00126{word-spacing:4.040640pt;}
.wsc_c00126{word-spacing:4.096000pt;}
.wsd_c00126{word-spacing:4.160000pt;}
.ws29_c00126{word-spacing:4.480000pt;}
.ws2b_c00126{word-spacing:4.800000pt;}
.ws1d_c00126{word-spacing:5.056000pt;}
.ws28_c00126{word-spacing:5.120000pt;}
.ws42_c00126{word-spacing:5.440000pt;}
.ws3a_c00126{word-spacing:5.952000pt;}
.ws34_c00126{word-spacing:6.016000pt;}
.ws35_c00126{word-spacing:6.080000pt;}
.ws37_c00126{word-spacing:6.720000pt;}
.ws30_c00126{word-spacing:6.851520pt;}
.ws8_c00126{word-spacing:7.232000pt;}
.ws44_c00126{word-spacing:7.296000pt;}
.ws43_c00126{word-spacing:7.360000pt;}
.ws3d_c00126{word-spacing:8.000000pt;}
.ws26_c00126{word-spacing:8.640000pt;}
.ws1a_c00126{word-spacing:9.280000pt;}
.ws1b_c00126{word-spacing:9.600000pt;}
.ws2a_c00126{word-spacing:10.880000pt;}
.ws10_c00126{word-spacing:12.356160pt;}
.wsf_c00126{word-spacing:14.230080pt;}
.ws41_c00126{word-spacing:14.976000pt;}
.ws45_c00126{word-spacing:15.680000pt;}
.ws18_c00126{word-spacing:16.000000pt;}
.ws2c_c00126{word-spacing:17.280000pt;}
.ws3b_c00126{word-spacing:17.600000pt;}
.ws31_c00126{word-spacing:19.734720pt;}
.ws22_c00126{word-spacing:19.840000pt;}
.ws21_c00126{word-spacing:20.096000pt;}
.ws20_c00126{word-spacing:20.160000pt;}
.ws1f_c00126{word-spacing:23.040000pt;}
.ws3e_c00126{word-spacing:24.576000pt;}
.ws3f_c00126{word-spacing:24.640000pt;}
.ws1e_c00126{word-spacing:30.976000pt;}
.ws27_c00126{word-spacing:34.880000pt;}
.ws24_c00126{word-spacing:40.192000pt;}
.ws23_c00126{word-spacing:40.640000pt;}
._1_c00126{margin-left:-1.216000pt;}
._0_c00126{width:0.995520pt;}
._2_c00126{width:3.840000pt;}
.fs1_c00126{font-size:58.560000pt;}
.fs0_c00126{font-size:64.000000pt;}
.y0_c00126{bottom:0.000000pt;}
.y1_c00126{bottom:54.887600pt;}
.y1f_c00126{bottom:139.399467pt;}
.y1e_c00126{bottom:166.999467pt;}
.y1d_c00126{bottom:194.599467pt;}
.y1c_c00126{bottom:222.199467pt;}
.y21_c00126{bottom:249.799467pt;}
.y1b_c00126{bottom:277.399467pt;}
.y1a_c00126{bottom:304.999467pt;}
.y19_c00126{bottom:332.599467pt;}
.y18_c00126{bottom:360.199467pt;}
.y17_c00126{bottom:387.799467pt;}
.y16_c00126{bottom:415.399467pt;}
.y20_c00126{bottom:442.999467pt;}
.y15_c00126{bottom:470.599467pt;}
.y14_c00126{bottom:498.199467pt;}
.y13_c00126{bottom:525.799467pt;}
.y12_c00126{bottom:553.399467pt;}
.y11_c00126{bottom:580.999467pt;}
.y10_c00126{bottom:608.599467pt;}
.yf_c00126{bottom:636.199467pt;}
.ye_c00126{bottom:663.799467pt;}
.yd_c00126{bottom:691.399467pt;}
.yc_c00126{bottom:718.919467pt;}
.yb_c00126{bottom:746.519467pt;}
.ya_c00126{bottom:774.119467pt;}
.y9_c00126{bottom:801.719467pt;}
.y8_c00126{bottom:855.797467pt;}
.y7_c00126{bottom:880.992907pt;}
.y6_c00126{bottom:906.276187pt;}
.y5_c00126{bottom:931.559467pt;}
.y4_c00126{bottom:985.719467pt;}
.y3_c00126{bottom:1013.319467pt;}
.y2_c00126{bottom:1061.399467pt;}
.h2_c00126{height:44.800000pt;}
.h3_c00126{height:48.294844pt;}
.h5_c00126{height:63.479040pt;}
.h4_c00126{height:68.288000pt;}
.h6_c00126{height:69.376000pt;}
.h0_c00126{height:1122.520000pt;}
.h1_c00126{height:1122.666667pt;}
.w2_c00126{width:0.000000pt;}
.w3_c00126{width:0.058667pt;}
.w0_c00126{width:793.701333pt;}
.w1_c00126{width:794.000000pt;}
.x1_c00126{left:-745.700800pt;}
.x2_c00126{left:-680.260800pt;}
.x3_c00126{left:-651.860800pt;}
.x0_c00126{left:0.000000pt;}
.x6_c00126{left:113.440000pt;}
.x7_c00126{left:141.840000pt;}
.x5_c00126{left:616.400000pt;}
.x4_c00126{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00127;src:url('chunks/assets/font_7da95cb2a252163119bb9402.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00127;src:url('chunks/assets/font_78a077d10b2ddaf44b2f1b6c.woff2')format("woff");}.ff3_c00127{font-family:ff3_c00127;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00127;src:url('chunks/assets/font_532b1666f3a7c1c6b9751877.woff2')format("woff");}.ff4_c00127{font-family:ff4_c00127;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls8_c00127{letter-spacing:-0.216000px;}
.ls6_c00127{letter-spacing:-0.131760px;}
.ls7_c00127{letter-spacing:-0.072000px;}
.ls5_c00127{letter-spacing:0.000000px;}
.ls0_c00127{letter-spacing:0.072000px;}
.ls4_c00127{letter-spacing:0.144000px;}
.ls3_c00127{letter-spacing:31.680000px;}
.ls1_c00127{letter-spacing:37.512000px;}
.ls2_c00127{letter-spacing:60.984000px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00127{word-spacing:-18.000000px;}
.ws1c_c00127{word-spacing:-0.360000px;}
.wsa_c00127{word-spacing:-0.216000px;}
.ws8_c00127{word-spacing:-0.144000px;}
.wse_c00127{word-spacing:-0.131760px;}
.ws12_c00127{word-spacing:-0.072000px;}
.wsc_c00127{word-spacing:0.000000px;}
.ws9_c00127{word-spacing:0.072000px;}
.wsd_c00127{word-spacing:0.131760px;}
.ws1d_c00127{word-spacing:0.216000px;}
.ws2_c00127{word-spacing:0.360000px;}
.ws16_c00127{word-spacing:0.648000px;}
.ws4_c00127{word-spacing:1.166400px;}
.ws17_c00127{word-spacing:1.368000px;}
.ws21_c00127{word-spacing:1.440000px;}
.ws3_c00127{word-spacing:1.512000px;}
.ws20_c00127{word-spacing:1.728000px;}
.ws1f_c00127{word-spacing:1.800000px;}
.ws27_c00127{word-spacing:2.520000px;}
.ws25_c00127{word-spacing:2.880000px;}
.ws24_c00127{word-spacing:3.528000px;}
.ws23_c00127{word-spacing:3.600000px;}
.ws2a_c00127{word-spacing:8.856000px;}
.ws29_c00127{word-spacing:8.928000px;}
.ws28_c00127{word-spacing:9.000000px;}
.ws18_c00127{word-spacing:10.008000px;}
.ws5_c00127{word-spacing:10.080000px;}
.ws6_c00127{word-spacing:11.664000px;}
.ws19_c00127{word-spacing:11.880000px;}
.ws26_c00127{word-spacing:12.168000px;}
.ws1e_c00127{word-spacing:12.888000px;}
.ws15_c00127{word-spacing:13.608000px;}
.ws14_c00127{word-spacing:13.680000px;}
.ws1a_c00127{word-spacing:15.480000px;}
.ws1b_c00127{word-spacing:15.840000px;}
.ws7_c00127{word-spacing:16.056000px;}
.ws22_c00127{word-spacing:19.008000px;}
.ws11_c00127{word-spacing:19.728000px;}
.ws10_c00127{word-spacing:22.968000px;}
.wsf_c00127{word-spacing:23.400000px;}
.ws0_c00127{word-spacing:29.736000px;}
.ws1_c00127{word-spacing:30.168000px;}
.ws13_c00127{word-spacing:30.240000px;}
._1_c00127{margin-left:-1.627200px;}
._0_c00127{width:1.119960px;}
._5_c00127{width:3.024000px;}
._2_c00127{width:29.952000px;}
._3_c00127{width:60.984000px;}
._4_c00127{width:73.800000px;}
.fc1_c00127{color:rgb(0,0,0);}
.fc0_c00127{color:rgb(35,31,32);}
.fs1_c00127{font-size:65.880000px;}
.fs0_c00127{font-size:72.000000px;}
.y0_c00127{bottom:0.000000px;}
.y1_c00127{bottom:61.748550px;}
.y1e_c00127{bottom:146.474400px;}
.y1d_c00127{bottom:177.524400px;}
.y1c_c00127{bottom:208.574400px;}
.y1b_c00127{bottom:270.674400px;}
.y1a_c00127{bottom:301.724400px;}
.y19_c00127{bottom:332.774400px;}
.y18_c00127{bottom:363.824400px;}
.y17_c00127{bottom:425.744400px;}
.y16_c00127{bottom:488.024400px;}
.y15_c00127{bottom:519.074400px;}
.y14_c00127{bottom:550.124400px;}
.y13_c00127{bottom:581.174400px;}
.y12_c00127{bottom:612.224400px;}
.y11_c00127{bottom:643.274400px;}
.y10_c00127{bottom:674.324400px;}
.yf_c00127{bottom:736.424400px;}
.ye_c00127{bottom:767.474400px;}
.yd_c00127{bottom:798.434400px;}
.yc_c00127{bottom:829.484400px;}
.yb_c00127{bottom:860.534400px;}
.ya_c00127{bottom:891.584400px;}
.y9_c00127{bottom:922.634400px;}
.y8_c00127{bottom:953.684400px;}
.y7_c00127{bottom:984.734400px;}
.y6_c00127{bottom:1015.784400px;}
.y5_c00127{bottom:1077.884400px;}
.y4_c00127{bottom:1108.934400px;}
.y3_c00127{bottom:1139.984400px;}
.y2_c00127{bottom:1194.074400px;}
.h2_c00127{height:50.400000px;}
.h3_c00127{height:54.331699px;}
.h4_c00127{height:76.824000px;}
.h0_c00127{height:1262.835000px;}
.h1_c00127{height:1263.000000px;}
.w0_c00127{width:892.914000px;}
.w1_c00127{width:893.250000px;}
.x0_c00127{left:0.000000px;}
.x1_c00127{left:54.000000px;}
.x2_c00127{left:127.620000px;}
.x4_c00127{left:148.950000px;}
.x3_c00127{left:159.570000px;}
.x5_c00127{left:170.190000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls8_c00127{letter-spacing:-0.192000pt;}
.ls6_c00127{letter-spacing:-0.117120pt;}
.ls7_c00127{letter-spacing:-0.064000pt;}
.ls5_c00127{letter-spacing:0.000000pt;}
.ls0_c00127{letter-spacing:0.064000pt;}
.ls4_c00127{letter-spacing:0.128000pt;}
.ls3_c00127{letter-spacing:28.160000pt;}
.ls1_c00127{letter-spacing:33.344000pt;}
.ls2_c00127{letter-spacing:54.208000pt;}
.wsb_c00127{word-spacing:-16.000000pt;}
.ws1c_c00127{word-spacing:-0.320000pt;}
.wsa_c00127{word-spacing:-0.192000pt;}
.ws8_c00127{word-spacing:-0.128000pt;}
.wse_c00127{word-spacing:-0.117120pt;}
.ws12_c00127{word-spacing:-0.064000pt;}
.wsc_c00127{word-spacing:0.000000pt;}
.ws9_c00127{word-spacing:0.064000pt;}
.wsd_c00127{word-spacing:0.117120pt;}
.ws1d_c00127{word-spacing:0.192000pt;}
.ws2_c00127{word-spacing:0.320000pt;}
.ws16_c00127{word-spacing:0.576000pt;}
.ws4_c00127{word-spacing:1.036800pt;}
.ws17_c00127{word-spacing:1.216000pt;}
.ws21_c00127{word-spacing:1.280000pt;}
.ws3_c00127{word-spacing:1.344000pt;}
.ws20_c00127{word-spacing:1.536000pt;}
.ws1f_c00127{word-spacing:1.600000pt;}
.ws27_c00127{word-spacing:2.240000pt;}
.ws25_c00127{word-spacing:2.560000pt;}
.ws24_c00127{word-spacing:3.136000pt;}
.ws23_c00127{word-spacing:3.200000pt;}
.ws2a_c00127{word-spacing:7.872000pt;}
.ws29_c00127{word-spacing:7.936000pt;}
.ws28_c00127{word-spacing:8.000000pt;}
.ws18_c00127{word-spacing:8.896000pt;}
.ws5_c00127{word-spacing:8.960000pt;}
.ws6_c00127{word-spacing:10.368000pt;}
.ws19_c00127{word-spacing:10.560000pt;}
.ws26_c00127{word-spacing:10.816000pt;}
.ws1e_c00127{word-spacing:11.456000pt;}
.ws15_c00127{word-spacing:12.096000pt;}
.ws14_c00127{word-spacing:12.160000pt;}
.ws1a_c00127{word-spacing:13.760000pt;}
.ws1b_c00127{word-spacing:14.080000pt;}
.ws7_c00127{word-spacing:14.272000pt;}
.ws22_c00127{word-spacing:16.896000pt;}
.ws11_c00127{word-spacing:17.536000pt;}
.ws10_c00127{word-spacing:20.416000pt;}
.wsf_c00127{word-spacing:20.800000pt;}
.ws0_c00127{word-spacing:26.432000pt;}
.ws1_c00127{word-spacing:26.816000pt;}
.ws13_c00127{word-spacing:26.880000pt;}
._1_c00127{margin-left:-1.446400pt;}
._0_c00127{width:0.995520pt;}
._5_c00127{width:2.688000pt;}
._2_c00127{width:26.624000pt;}
._3_c00127{width:54.208000pt;}
._4_c00127{width:65.600000pt;}
.fs1_c00127{font-size:58.560000pt;}
.fs0_c00127{font-size:64.000000pt;}
.y0_c00127{bottom:0.000000pt;}
.y1_c00127{bottom:54.887600pt;}
.y1e_c00127{bottom:130.199467pt;}
.y1d_c00127{bottom:157.799467pt;}
.y1c_c00127{bottom:185.399467pt;}
.y1b_c00127{bottom:240.599467pt;}
.y1a_c00127{bottom:268.199467pt;}
.y19_c00127{bottom:295.799467pt;}
.y18_c00127{bottom:323.399467pt;}
.y17_c00127{bottom:378.439467pt;}
.y16_c00127{bottom:433.799467pt;}
.y15_c00127{bottom:461.399467pt;}
.y14_c00127{bottom:488.999467pt;}
.y13_c00127{bottom:516.599467pt;}
.y12_c00127{bottom:544.199467pt;}
.y11_c00127{bottom:571.799467pt;}
.y10_c00127{bottom:599.399467pt;}
.yf_c00127{bottom:654.599467pt;}
.ye_c00127{bottom:682.199467pt;}
.yd_c00127{bottom:709.719467pt;}
.yc_c00127{bottom:737.319467pt;}
.yb_c00127{bottom:764.919467pt;}
.ya_c00127{bottom:792.519467pt;}
.y9_c00127{bottom:820.119467pt;}
.y8_c00127{bottom:847.719467pt;}
.y7_c00127{bottom:875.319467pt;}
.y6_c00127{bottom:902.919467pt;}
.y5_c00127{bottom:958.119467pt;}
.y4_c00127{bottom:985.719467pt;}
.y3_c00127{bottom:1013.319467pt;}
.y2_c00127{bottom:1061.399467pt;}
.h2_c00127{height:44.800000pt;}
.h3_c00127{height:48.294844pt;}
.h4_c00127{height:68.288000pt;}
.h0_c00127{height:1122.520000pt;}
.h1_c00127{height:1122.666667pt;}
.w0_c00127{width:793.701333pt;}
.w1_c00127{width:794.000000pt;}
.x0_c00127{left:0.000000pt;}
.x1_c00127{left:48.000000pt;}
.x2_c00127{left:113.440000pt;}
.x4_c00127{left:132.400000pt;}
.x3_c00127{left:141.840000pt;}
.x5_c00127{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00128;src:url('chunks/assets/font_213a2d19b761634abd3ed619.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00128;src:url('chunks/assets/font_337fd28ffe54f58f8cb23827.woff2')format("woff");}.ff3_c00128{font-family:ff3_c00128;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00128;src:url('chunks/assets/font_b13598649426db9fc66d0522.woff2')format("woff");}.ff4_c00128{font-family:ff4_c00128;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00128;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00128{font-family:ff5_c00128;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00128;src:url('chunks/assets/font_844fa5f1b67fe2c598de3900.woff2')format("woff");}.ff6_c00128{font-family:ff6_c00128;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00128;src:url('chunks/assets/font_06e942fdbca7e58d411fb577.woff2')format("woff");}.ff7_c00128{font-family:ff7_c00128;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00128;src:url('chunks/assets/font_7da061bdc00816eaa452d9a4.woff2')format("woff");}.ff8_c00128{font-family:ff8_c00128;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00128;src:url('chunks/assets/font_10ce3d84f6ec64ad2fd1d9e2.woff2')format("woff");}.ff9_c00128{font-family:ff9_c00128;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.ls9_c00128{letter-spacing:-0.360000px;}
.ls8_c00128{letter-spacing:-0.216000px;}
.ls6_c00128{letter-spacing:-0.131760px;}
.ls7_c00128{letter-spacing:-0.072000px;}
.ls5_c00128{letter-spacing:0.000000px;}
.ls0_c00128{letter-spacing:0.072000px;}
.ls4_c00128{letter-spacing:0.144000px;}
.ls3_c00128{letter-spacing:31.680000px;}
.ls1_c00128{letter-spacing:37.512000px;}
.ls2_c00128{letter-spacing:60.984000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c00128{word-spacing:-18.072000px;}
.wsb_c00128{word-spacing:-18.000000px;}
.ws3b_c00128{word-spacing:-0.432000px;}
.ws22_c00128{word-spacing:-0.360000px;}
.wsa_c00128{word-spacing:-0.216000px;}
.ws8_c00128{word-spacing:-0.144000px;}
.ws14_c00128{word-spacing:-0.131760px;}
.ws18_c00128{word-spacing:-0.072000px;}
.wsf_c00128{word-spacing:-0.007200px;}
.ws12_c00128{word-spacing:0.000000px;}
.ws9_c00128{word-spacing:0.072000px;}
.ws13_c00128{word-spacing:0.131760px;}
.ws23_c00128{word-spacing:0.216000px;}
.ws2_c00128{word-spacing:0.360000px;}
.ws1c_c00128{word-spacing:0.648000px;}
.ws31_c00128{word-spacing:1.080000px;}
.ws4_c00128{word-spacing:1.166400px;}
.wsc_c00128{word-spacing:1.173600px;}
.ws1d_c00128{word-spacing:1.368000px;}
.ws27_c00128{word-spacing:1.440000px;}
.ws3_c00128{word-spacing:1.512000px;}
.ws26_c00128{word-spacing:1.728000px;}
.ws25_c00128{word-spacing:1.800000px;}
.ws2d_c00128{word-spacing:2.520000px;}
.ws2b_c00128{word-spacing:2.880000px;}
.ws36_c00128{word-spacing:3.168000px;}
.ws2a_c00128{word-spacing:3.528000px;}
.ws29_c00128{word-spacing:3.600000px;}
.ws39_c00128{word-spacing:5.328000px;}
.ws11_c00128{word-spacing:5.400000px;}
.ws42_c00128{word-spacing:6.048000px;}
.ws41_c00128{word-spacing:6.120000px;}
.ws10_c00128{word-spacing:6.192000px;}
.ws38_c00128{word-spacing:6.408000px;}
.ws37_c00128{word-spacing:6.480000px;}
.ws32_c00128{word-spacing:7.128000px;}
.ws3e_c00128{word-spacing:8.712000px;}
.ws30_c00128{word-spacing:8.856000px;}
.ws2f_c00128{word-spacing:8.928000px;}
.ws2e_c00128{word-spacing:9.000000px;}
.ws3f_c00128{word-spacing:9.288000px;}
.ws3d_c00128{word-spacing:9.360000px;}
.ws1e_c00128{word-spacing:10.008000px;}
.ws5_c00128{word-spacing:10.080000px;}
.ws34_c00128{word-spacing:11.448000px;}
.ws35_c00128{word-spacing:11.520000px;}
.ws6_c00128{word-spacing:11.664000px;}
.ws1f_c00128{word-spacing:11.880000px;}
.ws2c_c00128{word-spacing:12.168000px;}
.ws40_c00128{word-spacing:12.528000px;}
.ws24_c00128{word-spacing:12.888000px;}
.ws44_c00128{word-spacing:13.248000px;}
.ws43_c00128{word-spacing:13.320000px;}
.ws33_c00128{word-spacing:13.536000px;}
.ws1b_c00128{word-spacing:13.608000px;}
.ws1a_c00128{word-spacing:13.680000px;}
.ws20_c00128{word-spacing:15.480000px;}
.ws21_c00128{word-spacing:15.840000px;}
.ws7_c00128{word-spacing:16.056000px;}
.ws28_c00128{word-spacing:19.008000px;}
.ws17_c00128{word-spacing:19.728000px;}
.ws16_c00128{word-spacing:22.968000px;}
.ws3a_c00128{word-spacing:23.040000px;}
.ws15_c00128{word-spacing:23.400000px;}
.ws3c_c00128{word-spacing:27.648000px;}
.ws0_c00128{word-spacing:29.736000px;}
.ws1_c00128{word-spacing:30.168000px;}
.ws19_c00128{word-spacing:30.240000px;}
.wsd_c00128{word-spacing:104.400000px;}
._1_c00128{margin-left:-1.627200px;}
._0_c00128{width:1.119960px;}
._5_c00128{width:3.024000px;}
._a_c00128{width:6.408000px;}
._8_c00128{width:8.496000px;}
._6_c00128{width:11.347200px;}
._7_c00128{width:22.449600px;}
._9_c00128{width:27.504000px;}
._2_c00128{width:29.952000px;}
._3_c00128{width:60.984000px;}
._4_c00128{width:73.800000px;}
.fc2_c00128{color:transparent;}
.fc1_c00128{color:rgb(0,0,0);}
.fc0_c00128{color:rgb(35,31,32);}
.fs1_c00128{font-size:65.880000px;}
.fs0_c00128{font-size:72.000000px;}
.y0_c00128{bottom:0.000000px;}
.y1_c00128{bottom:61.748550px;}
.y25_c00128{bottom:115.424400px;}
.y1e_c00128{bottom:146.474400px;}
.y1d_c00128{bottom:177.524400px;}
.y1c_c00128{bottom:208.574400px;}
.y24_c00128{bottom:239.624400px;}
.y1b_c00128{bottom:270.674400px;}
.y1a_c00128{bottom:301.724400px;}
.y19_c00128{bottom:332.774400px;}
.y18_c00128{bottom:363.824400px;}
.y23_c00128{bottom:394.874400px;}
.y17_c00128{bottom:425.744400px;}
.y22_c00128{bottom:425.924400px;}
.y21_c00128{bottom:456.974400px;}
.y16_c00128{bottom:488.024400px;}
.y15_c00128{bottom:519.074400px;}
.y14_c00128{bottom:550.124400px;}
.y13_c00128{bottom:581.174400px;}
.y12_c00128{bottom:612.224400px;}
.y11_c00128{bottom:643.274400px;}
.y10_c00128{bottom:674.324400px;}
.y20_c00128{bottom:705.374400px;}
.yf_c00128{bottom:736.424400px;}
.ye_c00128{bottom:767.474400px;}
.yd_c00128{bottom:798.434400px;}
.yc_c00128{bottom:829.484400px;}
.yb_c00128{bottom:860.534400px;}
.ya_c00128{bottom:891.584400px;}
.y9_c00128{bottom:922.634400px;}
.y8_c00128{bottom:953.684400px;}
.y7_c00128{bottom:984.734400px;}
.y6_c00128{bottom:1015.784400px;}
.y1f_c00128{bottom:1046.654400px;}
.y5_c00128{bottom:1077.884400px;}
.y4_c00128{bottom:1108.934400px;}
.y3_c00128{bottom:1139.984400px;}
.y2_c00128{bottom:1194.074400px;}
.h2_c00128{height:50.400000px;}
.h3_c00128{height:54.331699px;}
.h4_c00128{height:76.824000px;}
.h5_c00128{height:78.048000px;}
.h0_c00128{height:1262.835000px;}
.h1_c00128{height:1263.000000px;}
.w2_c00128{width:0.000000px;}
.w3_c00128{width:0.066000px;}
.w0_c00128{width:892.914000px;}
.w1_c00128{width:893.250000px;}
.x1_c00128{left:-838.913400px;}
.x2_c00128{left:-765.293400px;}
.x4_c00128{left:-743.963400px;}
.x3_c00128{left:-733.343400px;}
.x5_c00128{left:-722.723400px;}
.x0_c00128{left:0.000000px;}
.x8_c00128{left:127.620000px;}
.x9_c00128{left:159.570000px;}
.x7_c00128{left:693.450000px;}
.x6_c00128{left:804.366150px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls9_c00128{letter-spacing:-0.320000pt;}
.ls8_c00128{letter-spacing:-0.192000pt;}
.ls6_c00128{letter-spacing:-0.117120pt;}
.ls7_c00128{letter-spacing:-0.064000pt;}
.ls5_c00128{letter-spacing:0.000000pt;}
.ls0_c00128{letter-spacing:0.064000pt;}
.ls4_c00128{letter-spacing:0.128000pt;}
.ls3_c00128{letter-spacing:28.160000pt;}
.ls1_c00128{letter-spacing:33.344000pt;}
.ls2_c00128{letter-spacing:54.208000pt;}
.wse_c00128{word-spacing:-16.064000pt;}
.wsb_c00128{word-spacing:-16.000000pt;}
.ws3b_c00128{word-spacing:-0.384000pt;}
.ws22_c00128{word-spacing:-0.320000pt;}
.wsa_c00128{word-spacing:-0.192000pt;}
.ws8_c00128{word-spacing:-0.128000pt;}
.ws14_c00128{word-spacing:-0.117120pt;}
.ws18_c00128{word-spacing:-0.064000pt;}
.wsf_c00128{word-spacing:-0.006400pt;}
.ws12_c00128{word-spacing:0.000000pt;}
.ws9_c00128{word-spacing:0.064000pt;}
.ws13_c00128{word-spacing:0.117120pt;}
.ws23_c00128{word-spacing:0.192000pt;}
.ws2_c00128{word-spacing:0.320000pt;}
.ws1c_c00128{word-spacing:0.576000pt;}
.ws31_c00128{word-spacing:0.960000pt;}
.ws4_c00128{word-spacing:1.036800pt;}
.wsc_c00128{word-spacing:1.043200pt;}
.ws1d_c00128{word-spacing:1.216000pt;}
.ws27_c00128{word-spacing:1.280000pt;}
.ws3_c00128{word-spacing:1.344000pt;}
.ws26_c00128{word-spacing:1.536000pt;}
.ws25_c00128{word-spacing:1.600000pt;}
.ws2d_c00128{word-spacing:2.240000pt;}
.ws2b_c00128{word-spacing:2.560000pt;}
.ws36_c00128{word-spacing:2.816000pt;}
.ws2a_c00128{word-spacing:3.136000pt;}
.ws29_c00128{word-spacing:3.200000pt;}
.ws39_c00128{word-spacing:4.736000pt;}
.ws11_c00128{word-spacing:4.800000pt;}
.ws42_c00128{word-spacing:5.376000pt;}
.ws41_c00128{word-spacing:5.440000pt;}
.ws10_c00128{word-spacing:5.504000pt;}
.ws38_c00128{word-spacing:5.696000pt;}
.ws37_c00128{word-spacing:5.760000pt;}
.ws32_c00128{word-spacing:6.336000pt;}
.ws3e_c00128{word-spacing:7.744000pt;}
.ws30_c00128{word-spacing:7.872000pt;}
.ws2f_c00128{word-spacing:7.936000pt;}
.ws2e_c00128{word-spacing:8.000000pt;}
.ws3f_c00128{word-spacing:8.256000pt;}
.ws3d_c00128{word-spacing:8.320000pt;}
.ws1e_c00128{word-spacing:8.896000pt;}
.ws5_c00128{word-spacing:8.960000pt;}
.ws34_c00128{word-spacing:10.176000pt;}
.ws35_c00128{word-spacing:10.240000pt;}
.ws6_c00128{word-spacing:10.368000pt;}
.ws1f_c00128{word-spacing:10.560000pt;}
.ws2c_c00128{word-spacing:10.816000pt;}
.ws40_c00128{word-spacing:11.136000pt;}
.ws24_c00128{word-spacing:11.456000pt;}
.ws44_c00128{word-spacing:11.776000pt;}
.ws43_c00128{word-spacing:11.840000pt;}
.ws33_c00128{word-spacing:12.032000pt;}
.ws1b_c00128{word-spacing:12.096000pt;}
.ws1a_c00128{word-spacing:12.160000pt;}
.ws20_c00128{word-spacing:13.760000pt;}
.ws21_c00128{word-spacing:14.080000pt;}
.ws7_c00128{word-spacing:14.272000pt;}
.ws28_c00128{word-spacing:16.896000pt;}
.ws17_c00128{word-spacing:17.536000pt;}
.ws16_c00128{word-spacing:20.416000pt;}
.ws3a_c00128{word-spacing:20.480000pt;}
.ws15_c00128{word-spacing:20.800000pt;}
.ws3c_c00128{word-spacing:24.576000pt;}
.ws0_c00128{word-spacing:26.432000pt;}
.ws1_c00128{word-spacing:26.816000pt;}
.ws19_c00128{word-spacing:26.880000pt;}
.wsd_c00128{word-spacing:92.800000pt;}
._1_c00128{margin-left:-1.446400pt;}
._0_c00128{width:0.995520pt;}
._5_c00128{width:2.688000pt;}
._a_c00128{width:5.696000pt;}
._8_c00128{width:7.552000pt;}
._6_c00128{width:10.086400pt;}
._7_c00128{width:19.955200pt;}
._9_c00128{width:24.448000pt;}
._2_c00128{width:26.624000pt;}
._3_c00128{width:54.208000pt;}
._4_c00128{width:65.600000pt;}
.fs1_c00128{font-size:58.560000pt;}
.fs0_c00128{font-size:64.000000pt;}
.y0_c00128{bottom:0.000000pt;}
.y1_c00128{bottom:54.887600pt;}
.y25_c00128{bottom:102.599467pt;}
.y1e_c00128{bottom:130.199467pt;}
.y1d_c00128{bottom:157.799467pt;}
.y1c_c00128{bottom:185.399467pt;}
.y24_c00128{bottom:212.999467pt;}
.y1b_c00128{bottom:240.599467pt;}
.y1a_c00128{bottom:268.199467pt;}
.y19_c00128{bottom:295.799467pt;}
.y18_c00128{bottom:323.399467pt;}
.y23_c00128{bottom:350.999467pt;}
.y17_c00128{bottom:378.439467pt;}
.y22_c00128{bottom:378.599467pt;}
.y21_c00128{bottom:406.199467pt;}
.y16_c00128{bottom:433.799467pt;}
.y15_c00128{bottom:461.399467pt;}
.y14_c00128{bottom:488.999467pt;}
.y13_c00128{bottom:516.599467pt;}
.y12_c00128{bottom:544.199467pt;}
.y11_c00128{bottom:571.799467pt;}
.y10_c00128{bottom:599.399467pt;}
.y20_c00128{bottom:626.999467pt;}
.yf_c00128{bottom:654.599467pt;}
.ye_c00128{bottom:682.199467pt;}
.yd_c00128{bottom:709.719467pt;}
.yc_c00128{bottom:737.319467pt;}
.yb_c00128{bottom:764.919467pt;}
.ya_c00128{bottom:792.519467pt;}
.y9_c00128{bottom:820.119467pt;}
.y8_c00128{bottom:847.719467pt;}
.y7_c00128{bottom:875.319467pt;}
.y6_c00128{bottom:902.919467pt;}
.y1f_c00128{bottom:930.359467pt;}
.y5_c00128{bottom:958.119467pt;}
.y4_c00128{bottom:985.719467pt;}
.y3_c00128{bottom:1013.319467pt;}
.y2_c00128{bottom:1061.399467pt;}
.h2_c00128{height:44.800000pt;}
.h3_c00128{height:48.294844pt;}
.h4_c00128{height:68.288000pt;}
.h5_c00128{height:69.376000pt;}
.h0_c00128{height:1122.520000pt;}
.h1_c00128{height:1122.666667pt;}
.w2_c00128{width:0.000000pt;}
.w3_c00128{width:0.058667pt;}
.w0_c00128{width:793.701333pt;}
.w1_c00128{width:794.000000pt;}
.x1_c00128{left:-745.700800pt;}
.x2_c00128{left:-680.260800pt;}
.x4_c00128{left:-661.300800pt;}
.x3_c00128{left:-651.860800pt;}
.x5_c00128{left:-642.420800pt;}
.x0_c00128{left:0.000000pt;}
.x8_c00128{left:113.440000pt;}
.x9_c00128{left:141.840000pt;}
.x7_c00128{left:616.400000pt;}
.x6_c00128{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00129;src:url('chunks/assets/font_d5adba9aa4bf1270919865f2.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00129;src:url('chunks/assets/font_1381168d95193f757bb608d0.woff2')format("woff");}.ff3_c00129{font-family:ff3_c00129;line-height:1.575000;font-style:normal;font-weight:normal;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_8e3ac17532e7c402ed80c3ac.woff2')format("woff");}.ff4_c00129{font-family:ff4_c00129;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls6_c00129{letter-spacing:-0.131760px;}
.ls7_c00129{letter-spacing:-0.072000px;}
.ls9_c00129{letter-spacing:-0.065880px;}
.ls5_c00129{letter-spacing:0.000000px;}
.ls8_c00129{letter-spacing:0.065880px;}
.ls0_c00129{letter-spacing:0.072000px;}
.ls4_c00129{letter-spacing:0.144000px;}
.ls2_c00129{letter-spacing:0.197640px;}
.ls1_c00129{letter-spacing:32.932800px;}
.ls3_c00129{letter-spacing:43.632000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00129{word-spacing:-18.072000px;}
.ws14_c00129{word-spacing:-0.461160px;}
.ws5_c00129{word-spacing:-0.131760px;}
.ws22_c00129{word-spacing:-0.072000px;}
.ws13_c00129{word-spacing:-0.065880px;}
.ws3_c00129{word-spacing:0.000000px;}
.ws4_c00129{word-spacing:0.131760px;}
.ws25_c00129{word-spacing:0.288000px;}
.wsd_c00129{word-spacing:0.360000px;}
.wsf_c00129{word-spacing:0.648000px;}
.wse_c00129{word-spacing:0.720000px;}
.ws23_c00129{word-spacing:1.080000px;}
.ws21_c00129{word-spacing:1.440000px;}
.ws8_c00129{word-spacing:2.520000px;}
.ws20_c00129{word-spacing:3.168000px;}
.ws1f_c00129{word-spacing:3.240000px;}
.ws10_c00129{word-spacing:4.545720px;}
.ws2_c00129{word-spacing:4.809240px;}
.ws15_c00129{word-spacing:4.968000px;}
.ws17_c00129{word-spacing:5.688000px;}
.ws16_c00129{word-spacing:5.760000px;}
.ws6_c00129{word-spacing:7.128000px;}
.ws7_c00129{word-spacing:10.800000px;}
.ws11_c00129{word-spacing:10.936080px;}
.ws12_c00129{word-spacing:12.846600px;}
.ws1d_c00129{word-spacing:13.248000px;}
.ws1e_c00129{word-spacing:13.320000px;}
.ws27_c00129{word-spacing:14.328000px;}
.ws26_c00129{word-spacing:14.400000px;}
.wsc_c00129{word-spacing:14.976000px;}
.wsa_c00129{word-spacing:15.048000px;}
.wsb_c00129{word-spacing:15.120000px;}
.ws9_c00129{word-spacing:15.840000px;}
.ws0_c00129{word-spacing:16.416000px;}
.ws1b_c00129{word-spacing:25.560000px;}
.ws1c_c00129{word-spacing:27.648000px;}
.ws24_c00129{word-spacing:27.720000px;}
.ws19_c00129{word-spacing:29.736000px;}
.ws18_c00129{word-spacing:29.808000px;}
.ws1a_c00129{word-spacing:29.880000px;}
._1_c00129{margin-left:-1.094400px;}
._0_c00129{width:1.119960px;}
._4_c00129{width:4.968000px;}
._2_c00129{width:25.164000px;}
._3_c00129{width:27.792000px;}
._5_c00129{width:30.038400px;}
._6_c00129{width:47.664000px;}
.fc1_c00129{color:rgb(0,0,0);}
.fc0_c00129{color:rgb(35,31,32);}
.fs1_c00129{font-size:65.880000px;}
.fs0_c00129{font-size:72.000000px;}
.y0_c00129{bottom:0.000000px;}
.y1_c00129{bottom:61.748550px;}
.y1d_c00129{bottom:187.874250px;}
.y1c_c00129{bottom:218.924250px;}
.y1b_c00129{bottom:249.974250px;}
.y1a_c00129{bottom:281.024250px;}
.y19_c00129{bottom:312.074250px;}
.y18_c00129{bottom:343.124250px;}
.y17_c00129{bottom:405.224250px;}
.y16_c00129{bottom:436.274250px;}
.y15_c00129{bottom:467.324250px;}
.y14_c00129{bottom:498.374250px;}
.y13_c00129{bottom:529.424250px;}
.y12_c00129{bottom:560.474250px;}
.y11_c00129{bottom:591.524250px;}
.y10_c00129{bottom:622.574250px;}
.yf_c00129{bottom:653.624250px;}
.ye_c00129{bottom:714.372150px;}
.yd_c00129{bottom:742.717020px;}
.yc_c00129{bottom:771.160710px;}
.yb_c00129{bottom:799.604400px;}
.ya_c00129{bottom:860.534400px;}
.y9_c00129{bottom:891.584400px;}
.y8_c00129{bottom:922.634400px;}
.y7_c00129{bottom:953.684400px;}
.y6_c00129{bottom:1015.784400px;}
.y5_c00129{bottom:1046.834400px;}
.y4_c00129{bottom:1077.884400px;}
.y3_c00129{bottom:1108.934400px;}
.y2_c00129{bottom:1194.074400px;}
.h2_c00129{height:50.400000px;}
.h3_c00129{height:54.331699px;}
.h5_c00129{height:71.413920px;}
.h4_c00129{height:76.824000px;}
.h0_c00129{height:1262.835000px;}
.h1_c00129{height:1263.000000px;}
.w0_c00129{width:892.914000px;}
.w1_c00129{width:893.250000px;}
.x0_c00129{left:0.000000px;}
.x1_c00129{left:54.000000px;}
.x2_c00129{left:127.620000px;}
.x3_c00129{left:159.570000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls6_c00129{letter-spacing:-0.117120pt;}
.ls7_c00129{letter-spacing:-0.064000pt;}
.ls9_c00129{letter-spacing:-0.058560pt;}
.ls5_c00129{letter-spacing:0.000000pt;}
.ls8_c00129{letter-spacing:0.058560pt;}
.ls0_c00129{letter-spacing:0.064000pt;}
.ls4_c00129{letter-spacing:0.128000pt;}
.ls2_c00129{letter-spacing:0.175680pt;}
.ls1_c00129{letter-spacing:29.273600pt;}
.ls3_c00129{letter-spacing:38.784000pt;}
.ws1_c00129{word-spacing:-16.064000pt;}
.ws14_c00129{word-spacing:-0.409920pt;}
.ws5_c00129{word-spacing:-0.117120pt;}
.ws22_c00129{word-spacing:-0.064000pt;}
.ws13_c00129{word-spacing:-0.058560pt;}
.ws3_c00129{word-spacing:0.000000pt;}
.ws4_c00129{word-spacing:0.117120pt;}
.ws25_c00129{word-spacing:0.256000pt;}
.wsd_c00129{word-spacing:0.320000pt;}
.wsf_c00129{word-spacing:0.576000pt;}
.wse_c00129{word-spacing:0.640000pt;}
.ws23_c00129{word-spacing:0.960000pt;}
.ws21_c00129{word-spacing:1.280000pt;}
.ws8_c00129{word-spacing:2.240000pt;}
.ws20_c00129{word-spacing:2.816000pt;}
.ws1f_c00129{word-spacing:2.880000pt;}
.ws10_c00129{word-spacing:4.040640pt;}
.ws2_c00129{word-spacing:4.274880pt;}
.ws15_c00129{word-spacing:4.416000pt;}
.ws17_c00129{word-spacing:5.056000pt;}
.ws16_c00129{word-spacing:5.120000pt;}
.ws6_c00129{word-spacing:6.336000pt;}
.ws7_c00129{word-spacing:9.600000pt;}
.ws11_c00129{word-spacing:9.720960pt;}
.ws12_c00129{word-spacing:11.419200pt;}
.ws1d_c00129{word-spacing:11.776000pt;}
.ws1e_c00129{word-spacing:11.840000pt;}
.ws27_c00129{word-spacing:12.736000pt;}
.ws26_c00129{word-spacing:12.800000pt;}
.wsc_c00129{word-spacing:13.312000pt;}
.wsa_c00129{word-spacing:13.376000pt;}
.wsb_c00129{word-spacing:13.440000pt;}
.ws9_c00129{word-spacing:14.080000pt;}
.ws0_c00129{word-spacing:14.592000pt;}
.ws1b_c00129{word-spacing:22.720000pt;}
.ws1c_c00129{word-spacing:24.576000pt;}
.ws24_c00129{word-spacing:24.640000pt;}
.ws19_c00129{word-spacing:26.432000pt;}
.ws18_c00129{word-spacing:26.496000pt;}
.ws1a_c00129{word-spacing:26.560000pt;}
._1_c00129{margin-left:-0.972800pt;}
._0_c00129{width:0.995520pt;}
._4_c00129{width:4.416000pt;}
._2_c00129{width:22.368000pt;}
._3_c00129{width:24.704000pt;}
._5_c00129{width:26.700800pt;}
._6_c00129{width:42.368000pt;}
.fs1_c00129{font-size:58.560000pt;}
.fs0_c00129{font-size:64.000000pt;}
.y0_c00129{bottom:0.000000pt;}
.y1_c00129{bottom:54.887600pt;}
.y1d_c00129{bottom:166.999333pt;}
.y1c_c00129{bottom:194.599333pt;}
.y1b_c00129{bottom:222.199333pt;}
.y1a_c00129{bottom:249.799333pt;}
.y19_c00129{bottom:277.399333pt;}
.y18_c00129{bottom:304.999333pt;}
.y17_c00129{bottom:360.199333pt;}
.y16_c00129{bottom:387.799333pt;}
.y15_c00129{bottom:415.399333pt;}
.y14_c00129{bottom:442.999333pt;}
.y13_c00129{bottom:470.599333pt;}
.y12_c00129{bottom:498.199333pt;}
.y11_c00129{bottom:525.799333pt;}
.y10_c00129{bottom:553.399333pt;}
.yf_c00129{bottom:580.999333pt;}
.ye_c00129{bottom:634.997467pt;}
.yd_c00129{bottom:660.192907pt;}
.yc_c00129{bottom:685.476187pt;}
.yb_c00129{bottom:710.759467pt;}
.ya_c00129{bottom:764.919467pt;}
.y9_c00129{bottom:792.519467pt;}
.y8_c00129{bottom:820.119467pt;}
.y7_c00129{bottom:847.719467pt;}
.y6_c00129{bottom:902.919467pt;}
.y5_c00129{bottom:930.519467pt;}
.y4_c00129{bottom:958.119467pt;}
.y3_c00129{bottom:985.719467pt;}
.y2_c00129{bottom:1061.399467pt;}
.h2_c00129{height:44.800000pt;}
.h3_c00129{height:48.294844pt;}
.h5_c00129{height:63.479040pt;}
.h4_c00129{height:68.288000pt;}
.h0_c00129{height:1122.520000pt;}
.h1_c00129{height:1122.666667pt;}
.w0_c00129{width:793.701333pt;}
.w1_c00129{width:794.000000pt;}
.x0_c00129{left:0.000000pt;}
.x1_c00129{left:48.000000pt;}
.x2_c00129{left:113.440000pt;}
.x3_c00129{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00130;src:url('chunks/assets/font_ad4761ee1239fe7aaaaeeaf1.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00130;src:url('chunks/assets/font_94c01353e552522d882abda4.woff2')format("woff");}.ff3_c00130{font-family:ff3_c00130;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00130;src:url('chunks/assets/font_3944f5b7ee9afa0cd4dacc43.woff2')format("woff");}.ff4_c00130{font-family:ff4_c00130;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00130;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00130{font-family:ff5_c00130;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00130;src:url('chunks/assets/font_b9f30901d1510f8481109169.woff2')format("woff");}.ff6_c00130{font-family:ff6_c00130;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00130;src:url('chunks/assets/font_a93166b2107dac9cfa740cba.woff2')format("woff");}.ff7_c00130{font-family:ff7_c00130;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00130;src:url('chunks/assets/font_42e75cc61efacb426905bd27.woff2')format("woff");}.ff8_c00130{font-family:ff8_c00130;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.lsc_c00130{letter-spacing:-0.288000px;}
.lsd_c00130{letter-spacing:-0.216000px;}
.ls8_c00130{letter-spacing:-0.131760px;}
.ls9_c00130{letter-spacing:-0.072000px;}
.lsb_c00130{letter-spacing:-0.065880px;}
.ls7_c00130{letter-spacing:0.000000px;}
.lsa_c00130{letter-spacing:0.065880px;}
.ls0_c00130{letter-spacing:0.072000px;}
.ls4_c00130{letter-spacing:0.144000px;}
.ls2_c00130{letter-spacing:0.197640px;}
.ls1_c00130{letter-spacing:32.932800px;}
.ls5_c00130{letter-spacing:34.272000px;}
.ls6_c00130{letter-spacing:38.520000px;}
.ls3_c00130{letter-spacing:43.632000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00130{word-spacing:-18.144000px;}
.ws1_c00130{word-spacing:-18.072000px;}
.ws4_c00130{word-spacing:-18.000000px;}
.ws1f_c00130{word-spacing:-0.461160px;}
.ws10_c00130{word-spacing:-0.131760px;}
.ws2c_c00130{word-spacing:-0.072000px;}
.ws1e_c00130{word-spacing:-0.065880px;}
.ws6_c00130{word-spacing:0.000000px;}
.wsf_c00130{word-spacing:0.131760px;}
.ws45_c00130{word-spacing:0.216000px;}
.ws2f_c00130{word-spacing:0.288000px;}
.ws18_c00130{word-spacing:0.360000px;}
.ws1a_c00130{word-spacing:0.648000px;}
.ws19_c00130{word-spacing:0.720000px;}
.ws32_c00130{word-spacing:1.008000px;}
.ws2d_c00130{word-spacing:1.080000px;}
.ws2b_c00130{word-spacing:1.440000px;}
.ws13_c00130{word-spacing:2.520000px;}
.ws2a_c00130{word-spacing:3.168000px;}
.ws29_c00130{word-spacing:3.240000px;}
.ws47_c00130{word-spacing:3.528000px;}
.ws1b_c00130{word-spacing:4.545720px;}
.ws2_c00130{word-spacing:4.809240px;}
.ws35_c00130{word-spacing:4.896000px;}
.ws20_c00130{word-spacing:4.968000px;}
.ws4d_c00130{word-spacing:5.040000px;}
.wse_c00130{word-spacing:5.112000px;}
.ws4a_c00130{word-spacing:5.400000px;}
.ws21_c00130{word-spacing:5.688000px;}
.ws9_c00130{word-spacing:5.760000px;}
.ws3b_c00130{word-spacing:5.976000px;}
.ws3a_c00130{word-spacing:6.408000px;}
.ws11_c00130{word-spacing:7.128000px;}
.wsb_c00130{word-spacing:8.208000px;}
.ws44_c00130{word-spacing:8.568000px;}
.wsc_c00130{word-spacing:9.288000px;}
.ws41_c00130{word-spacing:9.576000px;}
.ws43_c00130{word-spacing:9.648000px;}
.ws42_c00130{word-spacing:9.720000px;}
.ws12_c00130{word-spacing:10.800000px;}
.ws1c_c00130{word-spacing:10.936080px;}
.ws3_c00130{word-spacing:10.944000px;}
.ws49_c00130{word-spacing:12.168000px;}
.ws48_c00130{word-spacing:12.240000px;}
.ws46_c00130{word-spacing:12.528000px;}
.wsd_c00130{word-spacing:12.600000px;}
.ws1d_c00130{word-spacing:12.846600px;}
.ws27_c00130{word-spacing:13.248000px;}
.ws28_c00130{word-spacing:13.320000px;}
.ws3e_c00130{word-spacing:13.968000px;}
.ws31_c00130{word-spacing:14.328000px;}
.ws30_c00130{word-spacing:14.400000px;}
.ws4e_c00130{word-spacing:14.760000px;}
.ws17_c00130{word-spacing:14.976000px;}
.ws15_c00130{word-spacing:15.048000px;}
.ws16_c00130{word-spacing:15.120000px;}
.ws14_c00130{word-spacing:15.840000px;}
.ws34_c00130{word-spacing:16.128000px;}
.ws33_c00130{word-spacing:16.200000px;}
.ws0_c00130{word-spacing:16.416000px;}
.ws4c_c00130{word-spacing:17.208000px;}
.ws4b_c00130{word-spacing:17.280000px;}
.ws39_c00130{word-spacing:17.568000px;}
.ws38_c00130{word-spacing:17.640000px;}
.ws3d_c00130{word-spacing:18.288000px;}
.ws3c_c00130{word-spacing:18.360000px;}
.wsa_c00130{word-spacing:20.304000px;}
.ws3f_c00130{word-spacing:20.448000px;}
.ws40_c00130{word-spacing:20.520000px;}
.ws8_c00130{word-spacing:25.488000px;}
.ws25_c00130{word-spacing:25.560000px;}
.ws26_c00130{word-spacing:27.648000px;}
.ws2e_c00130{word-spacing:27.720000px;}
.ws23_c00130{word-spacing:29.736000px;}
.ws22_c00130{word-spacing:29.808000px;}
.ws24_c00130{word-spacing:29.880000px;}
.ws36_c00130{word-spacing:33.336000px;}
.ws37_c00130{word-spacing:33.408000px;}
.ws7_c00130{word-spacing:33.696000px;}
._1_c00130{margin-left:-1.094400px;}
._0_c00130{width:1.119960px;}
._4_c00130{width:4.968000px;}
._7_c00130{width:16.376040px;}
._9_c00130{width:19.800000px;}
._2_c00130{width:25.164000px;}
._3_c00130{width:27.792000px;}
._5_c00130{width:30.038400px;}
._8_c00130{width:33.552000px;}
._a_c00130{width:35.280000px;}
._6_c00130{width:47.664000px;}
.fc2_c00130{color:transparent;}
.fc1_c00130{color:rgb(0,0,0);}
.fc0_c00130{color:rgb(35,31,32);}
.fs1_c00130{font-size:65.880000px;}
.fs0_c00130{font-size:72.000000px;}
.y0_c00130{bottom:0.000000px;}
.y1_c00130{bottom:61.748550px;}
.y33_c00130{bottom:146.474400px;}
.y32_c00130{bottom:177.524400px;}
.y1d_c00130{bottom:187.874250px;}
.y31_c00130{bottom:208.574400px;}
.y1c_c00130{bottom:218.924250px;}
.y1b_c00130{bottom:249.974250px;}
.y30_c00130{bottom:270.674400px;}
.y1a_c00130{bottom:281.024250px;}
.y2f_c00130{bottom:301.724400px;}
.y19_c00130{bottom:312.074250px;}
.y2e_c00130{bottom:332.774400px;}
.y18_c00130{bottom:343.124250px;}
.y2d_c00130{bottom:363.824400px;}
.y2c_c00130{bottom:394.874400px;}
.y17_c00130{bottom:405.224250px;}
.y2b_c00130{bottom:425.924400px;}
.y16_c00130{bottom:436.274250px;}
.y15_c00130{bottom:467.324250px;}
.y2a_c00130{bottom:488.024400px;}
.y14_c00130{bottom:498.374250px;}
.y29_c00130{bottom:519.074400px;}
.y13_c00130{bottom:529.424250px;}
.y28_c00130{bottom:550.124400px;}
.y12_c00130{bottom:560.474250px;}
.y27_c00130{bottom:581.174400px;}
.y11_c00130{bottom:591.524250px;}
.y10_c00130{bottom:622.574250px;}
.y26_c00130{bottom:643.274400px;}
.yf_c00130{bottom:653.624250px;}
.y25_c00130{bottom:674.324400px;}
.y24_c00130{bottom:705.374400px;}
.ye_c00130{bottom:714.372150px;}
.y23_c00130{bottom:736.424400px;}
.yd_c00130{bottom:742.717020px;}
.y22_c00130{bottom:767.474400px;}
.yc_c00130{bottom:771.160710px;}
.y21_c00130{bottom:798.434400px;}
.yb_c00130{bottom:799.604400px;}
.y20_c00130{bottom:829.484400px;}
.ya_c00130{bottom:860.534400px;}
.y9_c00130{bottom:891.584400px;}
.y8_c00130{bottom:922.634400px;}
.y7_c00130{bottom:953.684400px;}
.y1f_c00130{bottom:984.734400px;}
.y6_c00130{bottom:1015.784400px;}
.y5_c00130{bottom:1046.834400px;}
.y4_c00130{bottom:1077.884400px;}
.y3_c00130{bottom:1108.934400px;}
.y1e_c00130{bottom:1139.984400px;}
.y2_c00130{bottom:1194.074400px;}
.h2_c00130{height:50.400000px;}
.h3_c00130{height:54.331699px;}
.h5_c00130{height:71.413920px;}
.h4_c00130{height:76.824000px;}
.h0_c00130{height:1262.835000px;}
.h1_c00130{height:1263.000000px;}
.w2_c00130{width:0.000000px;}
.w3_c00130{width:0.066000px;}
.w0_c00130{width:892.914000px;}
.w1_c00130{width:893.250000px;}
.x1_c00130{left:-838.913400px;}
.x2_c00130{left:-765.293400px;}
.x3_c00130{left:-733.343400px;}
.x0_c00130{left:0.000000px;}
.x7_c00130{left:127.620000px;}
.x6_c00130{left:159.570000px;}
.x5_c00130{left:693.450000px;}
.x4_c00130{left:804.366150px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.lsc_c00130{letter-spacing:-0.256000pt;}
.lsd_c00130{letter-spacing:-0.192000pt;}
.ls8_c00130{letter-spacing:-0.117120pt;}
.ls9_c00130{letter-spacing:-0.064000pt;}
.lsb_c00130{letter-spacing:-0.058560pt;}
.ls7_c00130{letter-spacing:0.000000pt;}
.lsa_c00130{letter-spacing:0.058560pt;}
.ls0_c00130{letter-spacing:0.064000pt;}
.ls4_c00130{letter-spacing:0.128000pt;}
.ls2_c00130{letter-spacing:0.175680pt;}
.ls1_c00130{letter-spacing:29.273600pt;}
.ls5_c00130{letter-spacing:30.464000pt;}
.ls6_c00130{letter-spacing:34.240000pt;}
.ls3_c00130{letter-spacing:38.784000pt;}
.ws5_c00130{word-spacing:-16.128000pt;}
.ws1_c00130{word-spacing:-16.064000pt;}
.ws4_c00130{word-spacing:-16.000000pt;}
.ws1f_c00130{word-spacing:-0.409920pt;}
.ws10_c00130{word-spacing:-0.117120pt;}
.ws2c_c00130{word-spacing:-0.064000pt;}
.ws1e_c00130{word-spacing:-0.058560pt;}
.ws6_c00130{word-spacing:0.000000pt;}
.wsf_c00130{word-spacing:0.117120pt;}
.ws45_c00130{word-spacing:0.192000pt;}
.ws2f_c00130{word-spacing:0.256000pt;}
.ws18_c00130{word-spacing:0.320000pt;}
.ws1a_c00130{word-spacing:0.576000pt;}
.ws19_c00130{word-spacing:0.640000pt;}
.ws32_c00130{word-spacing:0.896000pt;}
.ws2d_c00130{word-spacing:0.960000pt;}
.ws2b_c00130{word-spacing:1.280000pt;}
.ws13_c00130{word-spacing:2.240000pt;}
.ws2a_c00130{word-spacing:2.816000pt;}
.ws29_c00130{word-spacing:2.880000pt;}
.ws47_c00130{word-spacing:3.136000pt;}
.ws1b_c00130{word-spacing:4.040640pt;}
.ws2_c00130{word-spacing:4.274880pt;}
.ws35_c00130{word-spacing:4.352000pt;}
.ws20_c00130{word-spacing:4.416000pt;}
.ws4d_c00130{word-spacing:4.480000pt;}
.wse_c00130{word-spacing:4.544000pt;}
.ws4a_c00130{word-spacing:4.800000pt;}
.ws21_c00130{word-spacing:5.056000pt;}
.ws9_c00130{word-spacing:5.120000pt;}
.ws3b_c00130{word-spacing:5.312000pt;}
.ws3a_c00130{word-spacing:5.696000pt;}
.ws11_c00130{word-spacing:6.336000pt;}
.wsb_c00130{word-spacing:7.296000pt;}
.ws44_c00130{word-spacing:7.616000pt;}
.wsc_c00130{word-spacing:8.256000pt;}
.ws41_c00130{word-spacing:8.512000pt;}
.ws43_c00130{word-spacing:8.576000pt;}
.ws42_c00130{word-spacing:8.640000pt;}
.ws12_c00130{word-spacing:9.600000pt;}
.ws1c_c00130{word-spacing:9.720960pt;}
.ws3_c00130{word-spacing:9.728000pt;}
.ws49_c00130{word-spacing:10.816000pt;}
.ws48_c00130{word-spacing:10.880000pt;}
.ws46_c00130{word-spacing:11.136000pt;}
.wsd_c00130{word-spacing:11.200000pt;}
.ws1d_c00130{word-spacing:11.419200pt;}
.ws27_c00130{word-spacing:11.776000pt;}
.ws28_c00130{word-spacing:11.840000pt;}
.ws3e_c00130{word-spacing:12.416000pt;}
.ws31_c00130{word-spacing:12.736000pt;}
.ws30_c00130{word-spacing:12.800000pt;}
.ws4e_c00130{word-spacing:13.120000pt;}
.ws17_c00130{word-spacing:13.312000pt;}
.ws15_c00130{word-spacing:13.376000pt;}
.ws16_c00130{word-spacing:13.440000pt;}
.ws14_c00130{word-spacing:14.080000pt;}
.ws34_c00130{word-spacing:14.336000pt;}
.ws33_c00130{word-spacing:14.400000pt;}
.ws0_c00130{word-spacing:14.592000pt;}
.ws4c_c00130{word-spacing:15.296000pt;}
.ws4b_c00130{word-spacing:15.360000pt;}
.ws39_c00130{word-spacing:15.616000pt;}
.ws38_c00130{word-spacing:15.680000pt;}
.ws3d_c00130{word-spacing:16.256000pt;}
.ws3c_c00130{word-spacing:16.320000pt;}
.wsa_c00130{word-spacing:18.048000pt;}
.ws3f_c00130{word-spacing:18.176000pt;}
.ws40_c00130{word-spacing:18.240000pt;}
.ws8_c00130{word-spacing:22.656000pt;}
.ws25_c00130{word-spacing:22.720000pt;}
.ws26_c00130{word-spacing:24.576000pt;}
.ws2e_c00130{word-spacing:24.640000pt;}
.ws23_c00130{word-spacing:26.432000pt;}
.ws22_c00130{word-spacing:26.496000pt;}
.ws24_c00130{word-spacing:26.560000pt;}
.ws36_c00130{word-spacing:29.632000pt;}
.ws37_c00130{word-spacing:29.696000pt;}
.ws7_c00130{word-spacing:29.952000pt;}
._1_c00130{margin-left:-0.972800pt;}
._0_c00130{width:0.995520pt;}
._4_c00130{width:4.416000pt;}
._7_c00130{width:14.556480pt;}
._9_c00130{width:17.600000pt;}
._2_c00130{width:22.368000pt;}
._3_c00130{width:24.704000pt;}
._5_c00130{width:26.700800pt;}
._8_c00130{width:29.824000pt;}
._a_c00130{width:31.360000pt;}
._6_c00130{width:42.368000pt;}
.fs1_c00130{font-size:58.560000pt;}
.fs0_c00130{font-size:64.000000pt;}
.y0_c00130{bottom:0.000000pt;}
.y1_c00130{bottom:54.887600pt;}
.y33_c00130{bottom:130.199467pt;}
.y32_c00130{bottom:157.799467pt;}
.y1d_c00130{bottom:166.999333pt;}
.y31_c00130{bottom:185.399467pt;}
.y1c_c00130{bottom:194.599333pt;}
.y1b_c00130{bottom:222.199333pt;}
.y30_c00130{bottom:240.599467pt;}
.y1a_c00130{bottom:249.799333pt;}
.y2f_c00130{bottom:268.199467pt;}
.y19_c00130{bottom:277.399333pt;}
.y2e_c00130{bottom:295.799467pt;}
.y18_c00130{bottom:304.999333pt;}
.y2d_c00130{bottom:323.399467pt;}
.y2c_c00130{bottom:350.999467pt;}
.y17_c00130{bottom:360.199333pt;}
.y2b_c00130{bottom:378.599467pt;}
.y16_c00130{bottom:387.799333pt;}
.y15_c00130{bottom:415.399333pt;}
.y2a_c00130{bottom:433.799467pt;}
.y14_c00130{bottom:442.999333pt;}
.y29_c00130{bottom:461.399467pt;}
.y13_c00130{bottom:470.599333pt;}
.y28_c00130{bottom:488.999467pt;}
.y12_c00130{bottom:498.199333pt;}
.y27_c00130{bottom:516.599467pt;}
.y11_c00130{bottom:525.799333pt;}
.y10_c00130{bottom:553.399333pt;}
.y26_c00130{bottom:571.799467pt;}
.yf_c00130{bottom:580.999333pt;}
.y25_c00130{bottom:599.399467pt;}
.y24_c00130{bottom:626.999467pt;}
.ye_c00130{bottom:634.997467pt;}
.y23_c00130{bottom:654.599467pt;}
.yd_c00130{bottom:660.192907pt;}
.y22_c00130{bottom:682.199467pt;}
.yc_c00130{bottom:685.476187pt;}
.y21_c00130{bottom:709.719467pt;}
.yb_c00130{bottom:710.759467pt;}
.y20_c00130{bottom:737.319467pt;}
.ya_c00130{bottom:764.919467pt;}
.y9_c00130{bottom:792.519467pt;}
.y8_c00130{bottom:820.119467pt;}
.y7_c00130{bottom:847.719467pt;}
.y1f_c00130{bottom:875.319467pt;}
.y6_c00130{bottom:902.919467pt;}
.y5_c00130{bottom:930.519467pt;}
.y4_c00130{bottom:958.119467pt;}
.y3_c00130{bottom:985.719467pt;}
.y1e_c00130{bottom:1013.319467pt;}
.y2_c00130{bottom:1061.399467pt;}
.h2_c00130{height:44.800000pt;}
.h3_c00130{height:48.294844pt;}
.h5_c00130{height:63.479040pt;}
.h4_c00130{height:68.288000pt;}
.h0_c00130{height:1122.520000pt;}
.h1_c00130{height:1122.666667pt;}
.w2_c00130{width:0.000000pt;}
.w3_c00130{width:0.058667pt;}
.w0_c00130{width:793.701333pt;}
.w1_c00130{width:794.000000pt;}
.x1_c00130{left:-745.700800pt;}
.x2_c00130{left:-680.260800pt;}
.x3_c00130{left:-651.860800pt;}
.x0_c00130{left:0.000000pt;}
.x7_c00130{left:113.440000pt;}
.x6_c00130{left:141.840000pt;}
.x5_c00130{left:616.400000pt;}
.x4_c00130{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00131;src:url('chunks/assets/font_c4b0f021fe31234e78aa5761.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00131;src:url('chunks/assets/font_6e7af7fd14bdb5571c1b9974.woff2')format("woff");}.ff3_c00131{font-family:ff3_c00131;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00131;src:url('chunks/assets/font_59f11e508c2c832aa0334ffd.woff2')format("woff");}.ff4_c00131{font-family:ff4_c00131;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00131{letter-spacing:-0.131760px;}
.ls7_c00131{letter-spacing:-0.072000px;}
.ls5_c00131{letter-spacing:0.000000px;}
.ls0_c00131{letter-spacing:0.072000px;}
.ls3_c00131{letter-spacing:0.144000px;}
.ls2_c00131{letter-spacing:18.720000px;}
.ls1_c00131{letter-spacing:19.080000px;}
.ls4_c00131{letter-spacing:21.240000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00131{word-spacing:-18.072000px;}
.ws0_c00131{word-spacing:-18.000000px;}
.ws1d_c00131{word-spacing:-0.432000px;}
.ws21_c00131{word-spacing:-0.144000px;}
.wsb_c00131{word-spacing:-0.131760px;}
.wsf_c00131{word-spacing:-0.072000px;}
.ws9_c00131{word-spacing:0.000000px;}
.wsa_c00131{word-spacing:0.131760px;}
.ws12_c00131{word-spacing:0.936000px;}
.ws14_c00131{word-spacing:1.008000px;}
.ws13_c00131{word-spacing:1.080000px;}
.ws10_c00131{word-spacing:2.736000px;}
.ws11_c00131{word-spacing:2.808000px;}
.ws2b_c00131{word-spacing:2.880000px;}
.ws2d_c00131{word-spacing:3.168000px;}
.ws2c_c00131{word-spacing:3.240000px;}
.wsc_c00131{word-spacing:3.528000px;}
.ws3_c00131{word-spacing:3.600000px;}
.ws1c_c00131{word-spacing:3.888000px;}
.ws1b_c00131{word-spacing:3.960000px;}
.ws1f_c00131{word-spacing:4.464000px;}
.ws4_c00131{word-spacing:4.608000px;}
.ws18_c00131{word-spacing:4.896000px;}
.wsd_c00131{word-spacing:4.968000px;}
.ws1a_c00131{word-spacing:5.472000px;}
.ws15_c00131{word-spacing:5.688000px;}
.ws19_c00131{word-spacing:5.760000px;}
.ws16_c00131{word-spacing:6.048000px;}
.ws17_c00131{word-spacing:6.120000px;}
.ws22_c00131{word-spacing:6.408000px;}
.ws23_c00131{word-spacing:6.480000px;}
.ws6_c00131{word-spacing:6.768000px;}
.ws2a_c00131{word-spacing:12.960000px;}
.wse_c00131{word-spacing:16.128000px;}
.ws1_c00131{word-spacing:16.200000px;}
.ws2_c00131{word-spacing:16.272000px;}
.ws20_c00131{word-spacing:16.920000px;}
.ws5_c00131{word-spacing:16.992000px;}
.ws27_c00131{word-spacing:18.648000px;}
.ws28_c00131{word-spacing:24.480000px;}
.ws29_c00131{word-spacing:24.768000px;}
.ws26_c00131{word-spacing:25.560000px;}
.ws1e_c00131{word-spacing:27.648000px;}
.ws25_c00131{word-spacing:28.728000px;}
.ws24_c00131{word-spacing:31.608000px;}
.ws7_c00131{word-spacing:32.040000px;}
._1_c00131{margin-left:-1.015200px;}
._0_c00131{width:1.119960px;}
.fc1_c00131{color:rgb(0,0,0);}
.fc0_c00131{color:rgb(35,31,32);}
.fs1_c00131{font-size:65.880000px;}
.fs0_c00131{font-size:72.000000px;}
.y0_c00131{bottom:0.000000px;}
.y1_c00131{bottom:61.748550px;}
.y1f_c00131{bottom:146.474400px;}
.y1e_c00131{bottom:177.524400px;}
.y1d_c00131{bottom:208.574400px;}
.y1c_c00131{bottom:239.624400px;}
.y1b_c00131{bottom:270.674400px;}
.y1a_c00131{bottom:301.724400px;}
.y19_c00131{bottom:332.774400px;}
.y18_c00131{bottom:363.824400px;}
.y17_c00131{bottom:394.874400px;}
.y16_c00131{bottom:425.924400px;}
.y15_c00131{bottom:488.024400px;}
.y14_c00131{bottom:519.074400px;}
.y13_c00131{bottom:550.124400px;}
.y12_c00131{bottom:581.174400px;}
.y11_c00131{bottom:612.224400px;}
.y10_c00131{bottom:674.324400px;}
.yf_c00131{bottom:705.374400px;}
.ye_c00131{bottom:736.424400px;}
.yd_c00131{bottom:767.474400px;}
.yc_c00131{bottom:798.434400px;}
.yb_c00131{bottom:829.484400px;}
.ya_c00131{bottom:891.584400px;}
.y9_c00131{bottom:922.634400px;}
.y8_c00131{bottom:953.684400px;}
.y7_c00131{bottom:984.734400px;}
.y6_c00131{bottom:1015.784400px;}
.y5_c00131{bottom:1046.834400px;}
.y4_c00131{bottom:1108.934400px;}
.y3_c00131{bottom:1139.984400px;}
.y2_c00131{bottom:1194.074400px;}
.h2_c00131{height:50.400000px;}
.h3_c00131{height:54.331699px;}
.h4_c00131{height:76.824000px;}
.h5_c00131{height:78.048000px;}
.h0_c00131{height:1262.835000px;}
.h1_c00131{height:1263.000000px;}
.w0_c00131{width:892.914000px;}
.w1_c00131{width:893.250000px;}
.x0_c00131{left:0.000000px;}
.x1_c00131{left:54.000000px;}
.x2_c00131{left:127.620000px;}
.x3_c00131{left:159.570000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls6_c00131{letter-spacing:-0.117120pt;}
.ls7_c00131{letter-spacing:-0.064000pt;}
.ls5_c00131{letter-spacing:0.000000pt;}
.ls0_c00131{letter-spacing:0.064000pt;}
.ls3_c00131{letter-spacing:0.128000pt;}
.ls2_c00131{letter-spacing:16.640000pt;}
.ls1_c00131{letter-spacing:16.960000pt;}
.ls4_c00131{letter-spacing:18.880000pt;}
.ws8_c00131{word-spacing:-16.064000pt;}
.ws0_c00131{word-spacing:-16.000000pt;}
.ws1d_c00131{word-spacing:-0.384000pt;}
.ws21_c00131{word-spacing:-0.128000pt;}
.wsb_c00131{word-spacing:-0.117120pt;}
.wsf_c00131{word-spacing:-0.064000pt;}
.ws9_c00131{word-spacing:0.000000pt;}
.wsa_c00131{word-spacing:0.117120pt;}
.ws12_c00131{word-spacing:0.832000pt;}
.ws14_c00131{word-spacing:0.896000pt;}
.ws13_c00131{word-spacing:0.960000pt;}
.ws10_c00131{word-spacing:2.432000pt;}
.ws11_c00131{word-spacing:2.496000pt;}
.ws2b_c00131{word-spacing:2.560000pt;}
.ws2d_c00131{word-spacing:2.816000pt;}
.ws2c_c00131{word-spacing:2.880000pt;}
.wsc_c00131{word-spacing:3.136000pt;}
.ws3_c00131{word-spacing:3.200000pt;}
.ws1c_c00131{word-spacing:3.456000pt;}
.ws1b_c00131{word-spacing:3.520000pt;}
.ws1f_c00131{word-spacing:3.968000pt;}
.ws4_c00131{word-spacing:4.096000pt;}
.ws18_c00131{word-spacing:4.352000pt;}
.wsd_c00131{word-spacing:4.416000pt;}
.ws1a_c00131{word-spacing:4.864000pt;}
.ws15_c00131{word-spacing:5.056000pt;}
.ws19_c00131{word-spacing:5.120000pt;}
.ws16_c00131{word-spacing:5.376000pt;}
.ws17_c00131{word-spacing:5.440000pt;}
.ws22_c00131{word-spacing:5.696000pt;}
.ws23_c00131{word-spacing:5.760000pt;}
.ws6_c00131{word-spacing:6.016000pt;}
.ws2a_c00131{word-spacing:11.520000pt;}
.wse_c00131{word-spacing:14.336000pt;}
.ws1_c00131{word-spacing:14.400000pt;}
.ws2_c00131{word-spacing:14.464000pt;}
.ws20_c00131{word-spacing:15.040000pt;}
.ws5_c00131{word-spacing:15.104000pt;}
.ws27_c00131{word-spacing:16.576000pt;}
.ws28_c00131{word-spacing:21.760000pt;}
.ws29_c00131{word-spacing:22.016000pt;}
.ws26_c00131{word-spacing:22.720000pt;}
.ws1e_c00131{word-spacing:24.576000pt;}
.ws25_c00131{word-spacing:25.536000pt;}
.ws24_c00131{word-spacing:28.096000pt;}
.ws7_c00131{word-spacing:28.480000pt;}
._1_c00131{margin-left:-0.902400pt;}
._0_c00131{width:0.995520pt;}
.fs1_c00131{font-size:58.560000pt;}
.fs0_c00131{font-size:64.000000pt;}
.y0_c00131{bottom:0.000000pt;}
.y1_c00131{bottom:54.887600pt;}
.y1f_c00131{bottom:130.199467pt;}
.y1e_c00131{bottom:157.799467pt;}
.y1d_c00131{bottom:185.399467pt;}
.y1c_c00131{bottom:212.999467pt;}
.y1b_c00131{bottom:240.599467pt;}
.y1a_c00131{bottom:268.199467pt;}
.y19_c00131{bottom:295.799467pt;}
.y18_c00131{bottom:323.399467pt;}
.y17_c00131{bottom:350.999467pt;}
.y16_c00131{bottom:378.599467pt;}
.y15_c00131{bottom:433.799467pt;}
.y14_c00131{bottom:461.399467pt;}
.y13_c00131{bottom:488.999467pt;}
.y12_c00131{bottom:516.599467pt;}
.y11_c00131{bottom:544.199467pt;}
.y10_c00131{bottom:599.399467pt;}
.yf_c00131{bottom:626.999467pt;}
.ye_c00131{bottom:654.599467pt;}
.yd_c00131{bottom:682.199467pt;}
.yc_c00131{bottom:709.719467pt;}
.yb_c00131{bottom:737.319467pt;}
.ya_c00131{bottom:792.519467pt;}
.y9_c00131{bottom:820.119467pt;}
.y8_c00131{bottom:847.719467pt;}
.y7_c00131{bottom:875.319467pt;}
.y6_c00131{bottom:902.919467pt;}
.y5_c00131{bottom:930.519467pt;}
.y4_c00131{bottom:985.719467pt;}
.y3_c00131{bottom:1013.319467pt;}
.y2_c00131{bottom:1061.399467pt;}
.h2_c00131{height:44.800000pt;}
.h3_c00131{height:48.294844pt;}
.h4_c00131{height:68.288000pt;}
.h5_c00131{height:69.376000pt;}
.h0_c00131{height:1122.520000pt;}
.h1_c00131{height:1122.666667pt;}
.w0_c00131{width:793.701333pt;}
.w1_c00131{width:794.000000pt;}
.x0_c00131{left:0.000000pt;}
.x1_c00131{left:48.000000pt;}
.x2_c00131{left:113.440000pt;}
.x3_c00131{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00132;src:url('chunks/assets/font_62fd1d5deefbe2bb66a2a3bf.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00132;src:url('chunks/assets/font_eaaf546bb4ea284eff9783ed.woff2')format("woff");}.ff3_c00132{font-family:ff3_c00132;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00132;src:url('chunks/assets/font_b07d5ce60ad2dffab7b7c466.woff2')format("woff");}.ff4_c00132{font-family:ff4_c00132;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00132;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00132{font-family:ff5_c00132;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00132;src:url('chunks/assets/font_17c27380f1c383cf30aafbbf.woff2')format("woff");}.ff6_c00132{font-family:ff6_c00132;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00132;src:url('chunks/assets/font_fa8541b885b431e97d6e1564.woff2')format("woff");}.ff7_c00132{font-family:ff7_c00132;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00132;src:url('chunks/assets/font_b07d5ce60ad2dffab7b7c466.woff2')format("woff");}.ff8_c00132{font-family:ff8_c00132;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00132;src:url('chunks/assets/font_310414694a2fa42dda9fc118.woff2')format("woff");}.ff9_c00132{font-family:ff9_c00132;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00132{letter-spacing:-0.288000px;}
.ls6_c00132{letter-spacing:-0.131760px;}
.ls7_c00132{letter-spacing:-0.072000px;}
.ls5_c00132{letter-spacing:0.000000px;}
.ls0_c00132{letter-spacing:0.072000px;}
.ls3_c00132{letter-spacing:0.144000px;}
.ls2_c00132{letter-spacing:18.720000px;}
.ls1_c00132{letter-spacing:19.080000px;}
.ls4_c00132{letter-spacing:21.240000px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00132{word-spacing:-18.072000px;}
.ws0_c00132{word-spacing:-18.000000px;}
.ws20_c00132{word-spacing:-0.432000px;}
.ws24_c00132{word-spacing:-0.144000px;}
.wsf_c00132{word-spacing:-0.131760px;}
.ws13_c00132{word-spacing:-0.072000px;}
.wsd_c00132{word-spacing:0.000000px;}
.wse_c00132{word-spacing:0.131760px;}
.wsa_c00132{word-spacing:0.727200px;}
.ws16_c00132{word-spacing:0.936000px;}
.ws17_c00132{word-spacing:1.008000px;}
.wsc_c00132{word-spacing:1.080000px;}
.ws3a_c00132{word-spacing:1.368000px;}
.ws3b_c00132{word-spacing:1.440000px;}
.ws3c_c00132{word-spacing:2.520000px;}
.wsb_c00132{word-spacing:2.728800px;}
.ws14_c00132{word-spacing:2.736000px;}
.ws15_c00132{word-spacing:2.808000px;}
.ws2e_c00132{word-spacing:2.880000px;}
.ws9_c00132{word-spacing:3.096000px;}
.ws30_c00132{word-spacing:3.168000px;}
.ws2f_c00132{word-spacing:3.240000px;}
.ws10_c00132{word-spacing:3.528000px;}
.ws3_c00132{word-spacing:3.600000px;}
.ws1f_c00132{word-spacing:3.888000px;}
.ws1e_c00132{word-spacing:3.960000px;}
.ws22_c00132{word-spacing:4.464000px;}
.ws4_c00132{word-spacing:4.608000px;}
.ws31_c00132{word-spacing:4.680000px;}
.ws1b_c00132{word-spacing:4.896000px;}
.ws11_c00132{word-spacing:4.968000px;}
.ws3e_c00132{word-spacing:5.040000px;}
.ws3f_c00132{word-spacing:5.328000px;}
.ws1d_c00132{word-spacing:5.472000px;}
.ws18_c00132{word-spacing:5.688000px;}
.ws1c_c00132{word-spacing:5.760000px;}
.ws19_c00132{word-spacing:6.048000px;}
.ws1a_c00132{word-spacing:6.120000px;}
.ws25_c00132{word-spacing:6.408000px;}
.ws26_c00132{word-spacing:6.480000px;}
.ws6_c00132{word-spacing:6.768000px;}
.ws37_c00132{word-spacing:7.560000px;}
.ws34_c00132{word-spacing:7.848000px;}
.ws33_c00132{word-spacing:8.208000px;}
.ws35_c00132{word-spacing:8.640000px;}
.ws41_c00132{word-spacing:9.000000px;}
.ws32_c00132{word-spacing:11.160000px;}
.ws39_c00132{word-spacing:11.808000px;}
.ws38_c00132{word-spacing:11.880000px;}
.ws2d_c00132{word-spacing:12.960000px;}
.ws36_c00132{word-spacing:13.320000px;}
.ws3d_c00132{word-spacing:13.680000px;}
.ws40_c00132{word-spacing:14.400000px;}
.ws42_c00132{word-spacing:15.480000px;}
.ws12_c00132{word-spacing:16.128000px;}
.ws1_c00132{word-spacing:16.200000px;}
.ws2_c00132{word-spacing:16.272000px;}
.ws23_c00132{word-spacing:16.920000px;}
.ws5_c00132{word-spacing:16.992000px;}
.ws2a_c00132{word-spacing:18.648000px;}
.ws2b_c00132{word-spacing:24.480000px;}
.ws2c_c00132{word-spacing:24.768000px;}
.ws29_c00132{word-spacing:25.560000px;}
.ws21_c00132{word-spacing:27.648000px;}
.ws28_c00132{word-spacing:28.728000px;}
.ws27_c00132{word-spacing:31.608000px;}
.ws7_c00132{word-spacing:32.040000px;}
._1_c00132{margin-left:-1.015200px;}
._0_c00132{width:1.119960px;}
._2_c00132{width:122.400000px;}
.fc2_c00132{color:transparent;}
.fc1_c00132{color:rgb(0,0,0);}
.fc0_c00132{color:rgb(35,31,32);}
.fs1_c00132{font-size:65.880000px;}
.fs0_c00132{font-size:72.000000px;}
.y0_c00132{bottom:0.000000px;}
.y1_c00132{bottom:61.748550px;}
.y1f_c00132{bottom:146.474400px;}
.y1e_c00132{bottom:177.524400px;}
.y1d_c00132{bottom:208.574400px;}
.y1c_c00132{bottom:239.624400px;}
.y1b_c00132{bottom:270.674400px;}
.y1a_c00132{bottom:301.724400px;}
.y19_c00132{bottom:332.774400px;}
.y18_c00132{bottom:363.824400px;}
.y17_c00132{bottom:394.874400px;}
.y16_c00132{bottom:425.924400px;}
.y23_c00132{bottom:456.974400px;}
.y15_c00132{bottom:488.024400px;}
.y14_c00132{bottom:519.074400px;}
.y13_c00132{bottom:550.124400px;}
.y12_c00132{bottom:581.174400px;}
.y11_c00132{bottom:612.224400px;}
.y22_c00132{bottom:643.274400px;}
.y10_c00132{bottom:674.324400px;}
.yf_c00132{bottom:705.374400px;}
.ye_c00132{bottom:736.424400px;}
.y21_c00132{bottom:767.294400px;}
.yd_c00132{bottom:767.474400px;}
.yc_c00132{bottom:798.434400px;}
.yb_c00132{bottom:829.484400px;}
.y20_c00132{bottom:860.534400px;}
.ya_c00132{bottom:891.584400px;}
.y9_c00132{bottom:922.634400px;}
.y8_c00132{bottom:953.684400px;}
.y7_c00132{bottom:984.734400px;}
.y6_c00132{bottom:1015.784400px;}
.y5_c00132{bottom:1046.834400px;}
.y4_c00132{bottom:1108.934400px;}
.y3_c00132{bottom:1139.984400px;}
.y2_c00132{bottom:1194.074400px;}
.h2_c00132{height:50.400000px;}
.h3_c00132{height:54.331699px;}
.h4_c00132{height:76.824000px;}
.h5_c00132{height:78.048000px;}
.h0_c00132{height:1262.835000px;}
.h1_c00132{height:1263.000000px;}
.w2_c00132{width:0.000000px;}
.w3_c00132{width:0.066000px;}
.w0_c00132{width:892.914000px;}
.w1_c00132{width:893.250000px;}
.x1_c00132{left:-838.913400px;}
.x2_c00132{left:-765.293400px;}
.x3_c00132{left:-733.343400px;}
.x0_c00132{left:0.000000px;}
.x6_c00132{left:127.620000px;}
.x7_c00132{left:159.570000px;}
.x5_c00132{left:693.450000px;}
.x4_c00132{left:804.366150px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls8_c00132{letter-spacing:-0.256000pt;}
.ls6_c00132{letter-spacing:-0.117120pt;}
.ls7_c00132{letter-spacing:-0.064000pt;}
.ls5_c00132{letter-spacing:0.000000pt;}
.ls0_c00132{letter-spacing:0.064000pt;}
.ls3_c00132{letter-spacing:0.128000pt;}
.ls2_c00132{letter-spacing:16.640000pt;}
.ls1_c00132{letter-spacing:16.960000pt;}
.ls4_c00132{letter-spacing:18.880000pt;}
.ws8_c00132{word-spacing:-16.064000pt;}
.ws0_c00132{word-spacing:-16.000000pt;}
.ws20_c00132{word-spacing:-0.384000pt;}
.ws24_c00132{word-spacing:-0.128000pt;}
.wsf_c00132{word-spacing:-0.117120pt;}
.ws13_c00132{word-spacing:-0.064000pt;}
.wsd_c00132{word-spacing:0.000000pt;}
.wse_c00132{word-spacing:0.117120pt;}
.wsa_c00132{word-spacing:0.646400pt;}
.ws16_c00132{word-spacing:0.832000pt;}
.ws17_c00132{word-spacing:0.896000pt;}
.wsc_c00132{word-spacing:0.960000pt;}
.ws3a_c00132{word-spacing:1.216000pt;}
.ws3b_c00132{word-spacing:1.280000pt;}
.ws3c_c00132{word-spacing:2.240000pt;}
.wsb_c00132{word-spacing:2.425600pt;}
.ws14_c00132{word-spacing:2.432000pt;}
.ws15_c00132{word-spacing:2.496000pt;}
.ws2e_c00132{word-spacing:2.560000pt;}
.ws9_c00132{word-spacing:2.752000pt;}
.ws30_c00132{word-spacing:2.816000pt;}
.ws2f_c00132{word-spacing:2.880000pt;}
.ws10_c00132{word-spacing:3.136000pt;}
.ws3_c00132{word-spacing:3.200000pt;}
.ws1f_c00132{word-spacing:3.456000pt;}
.ws1e_c00132{word-spacing:3.520000pt;}
.ws22_c00132{word-spacing:3.968000pt;}
.ws4_c00132{word-spacing:4.096000pt;}
.ws31_c00132{word-spacing:4.160000pt;}
.ws1b_c00132{word-spacing:4.352000pt;}
.ws11_c00132{word-spacing:4.416000pt;}
.ws3e_c00132{word-spacing:4.480000pt;}
.ws3f_c00132{word-spacing:4.736000pt;}
.ws1d_c00132{word-spacing:4.864000pt;}
.ws18_c00132{word-spacing:5.056000pt;}
.ws1c_c00132{word-spacing:5.120000pt;}
.ws19_c00132{word-spacing:5.376000pt;}
.ws1a_c00132{word-spacing:5.440000pt;}
.ws25_c00132{word-spacing:5.696000pt;}
.ws26_c00132{word-spacing:5.760000pt;}
.ws6_c00132{word-spacing:6.016000pt;}
.ws37_c00132{word-spacing:6.720000pt;}
.ws34_c00132{word-spacing:6.976000pt;}
.ws33_c00132{word-spacing:7.296000pt;}
.ws35_c00132{word-spacing:7.680000pt;}
.ws41_c00132{word-spacing:8.000000pt;}
.ws32_c00132{word-spacing:9.920000pt;}
.ws39_c00132{word-spacing:10.496000pt;}
.ws38_c00132{word-spacing:10.560000pt;}
.ws2d_c00132{word-spacing:11.520000pt;}
.ws36_c00132{word-spacing:11.840000pt;}
.ws3d_c00132{word-spacing:12.160000pt;}
.ws40_c00132{word-spacing:12.800000pt;}
.ws42_c00132{word-spacing:13.760000pt;}
.ws12_c00132{word-spacing:14.336000pt;}
.ws1_c00132{word-spacing:14.400000pt;}
.ws2_c00132{word-spacing:14.464000pt;}
.ws23_c00132{word-spacing:15.040000pt;}
.ws5_c00132{word-spacing:15.104000pt;}
.ws2a_c00132{word-spacing:16.576000pt;}
.ws2b_c00132{word-spacing:21.760000pt;}
.ws2c_c00132{word-spacing:22.016000pt;}
.ws29_c00132{word-spacing:22.720000pt;}
.ws21_c00132{word-spacing:24.576000pt;}
.ws28_c00132{word-spacing:25.536000pt;}
.ws27_c00132{word-spacing:28.096000pt;}
.ws7_c00132{word-spacing:28.480000pt;}
._1_c00132{margin-left:-0.902400pt;}
._0_c00132{width:0.995520pt;}
._2_c00132{width:108.800000pt;}
.fs1_c00132{font-size:58.560000pt;}
.fs0_c00132{font-size:64.000000pt;}
.y0_c00132{bottom:0.000000pt;}
.y1_c00132{bottom:54.887600pt;}
.y1f_c00132{bottom:130.199467pt;}
.y1e_c00132{bottom:157.799467pt;}
.y1d_c00132{bottom:185.399467pt;}
.y1c_c00132{bottom:212.999467pt;}
.y1b_c00132{bottom:240.599467pt;}
.y1a_c00132{bottom:268.199467pt;}
.y19_c00132{bottom:295.799467pt;}
.y18_c00132{bottom:323.399467pt;}
.y17_c00132{bottom:350.999467pt;}
.y16_c00132{bottom:378.599467pt;}
.y23_c00132{bottom:406.199467pt;}
.y15_c00132{bottom:433.799467pt;}
.y14_c00132{bottom:461.399467pt;}
.y13_c00132{bottom:488.999467pt;}
.y12_c00132{bottom:516.599467pt;}
.y11_c00132{bottom:544.199467pt;}
.y22_c00132{bottom:571.799467pt;}
.y10_c00132{bottom:599.399467pt;}
.yf_c00132{bottom:626.999467pt;}
.ye_c00132{bottom:654.599467pt;}
.y21_c00132{bottom:682.039467pt;}
.yd_c00132{bottom:682.199467pt;}
.yc_c00132{bottom:709.719467pt;}
.yb_c00132{bottom:737.319467pt;}
.y20_c00132{bottom:764.919467pt;}
.ya_c00132{bottom:792.519467pt;}
.y9_c00132{bottom:820.119467pt;}
.y8_c00132{bottom:847.719467pt;}
.y7_c00132{bottom:875.319467pt;}
.y6_c00132{bottom:902.919467pt;}
.y5_c00132{bottom:930.519467pt;}
.y4_c00132{bottom:985.719467pt;}
.y3_c00132{bottom:1013.319467pt;}
.y2_c00132{bottom:1061.399467pt;}
.h2_c00132{height:44.800000pt;}
.h3_c00132{height:48.294844pt;}
.h4_c00132{height:68.288000pt;}
.h5_c00132{height:69.376000pt;}
.h0_c00132{height:1122.520000pt;}
.h1_c00132{height:1122.666667pt;}
.w2_c00132{width:0.000000pt;}
.w3_c00132{width:0.058667pt;}
.w0_c00132{width:793.701333pt;}
.w1_c00132{width:794.000000pt;}
.x1_c00132{left:-745.700800pt;}
.x2_c00132{left:-680.260800pt;}
.x3_c00132{left:-651.860800pt;}
.x0_c00132{left:0.000000pt;}
.x6_c00132{left:113.440000pt;}
.x7_c00132{left:141.840000pt;}
.x5_c00132{left:616.400000pt;}
.x4_c00132{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00133;src:url('chunks/assets/font_467a6b50b8e2d8d1402b1982.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00133;src:url('chunks/assets/font_66b1dc097ef150d60bacc241.woff2')format("woff");}.ff3_c00133{font-family:ff3_c00133;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00133;src:url('chunks/assets/font_7b9d3a5b03992f3c7f5d30d1.woff2')format("woff");}.ff4_c00133{font-family:ff4_c00133;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00133{letter-spacing:-0.576000px;}
.ls6_c00133{letter-spacing:-0.131760px;}
.ls5_c00133{letter-spacing:0.000000px;}
.ls1_c00133{letter-spacing:0.072000px;}
.ls7_c00133{letter-spacing:0.144000px;}
.ls3_c00133{letter-spacing:0.360000px;}
.ls2_c00133{letter-spacing:30.240000px;}
.ls4_c00133{letter-spacing:32.400000px;}
.ls0_c00133{letter-spacing:33.840000px;}
.sc__c00133{text-shadow:none;}
.sc0_c00133{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00133{-webkit-text-stroke:0px transparent;}
.sc0_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00133{word-spacing:-18.144000px;}
.ws2_c00133{word-spacing:-18.072000px;}
.ws4_c00133{word-spacing:-18.000000px;}
.ws13_c00133{word-spacing:-0.360000px;}
.ws9_c00133{word-spacing:-0.131760px;}
.wse_c00133{word-spacing:-0.072000px;}
.ws7_c00133{word-spacing:0.000000px;}
.ws8_c00133{word-spacing:0.131760px;}
.wsd_c00133{word-spacing:0.288000px;}
.wsc_c00133{word-spacing:0.360000px;}
.ws1c_c00133{word-spacing:3.888000px;}
.ws1b_c00133{word-spacing:3.960000px;}
.ws10_c00133{word-spacing:5.400000px;}
.ws19_c00133{word-spacing:6.768000px;}
.ws3_c00133{word-spacing:6.840000px;}
.ws1f_c00133{word-spacing:7.200000px;}
.ws18_c00133{word-spacing:7.488000px;}
.ws17_c00133{word-spacing:7.560000px;}
.ws1a_c00133{word-spacing:9.360000px;}
.ws20_c00133{word-spacing:11.808000px;}
.ws21_c00133{word-spacing:11.880000px;}
.ws11_c00133{word-spacing:12.168000px;}
.ws12_c00133{word-spacing:12.240000px;}
.ws1_c00133{word-spacing:12.254400px;}
.ws16_c00133{word-spacing:14.400000px;}
.wsf_c00133{word-spacing:14.760000px;}
.ws1e_c00133{word-spacing:15.048000px;}
.ws1d_c00133{word-spacing:15.120000px;}
.wsb_c00133{word-spacing:15.768000px;}
.wsa_c00133{word-spacing:15.840000px;}
.ws22_c00133{word-spacing:18.288000px;}
.ws23_c00133{word-spacing:18.360000px;}
.ws5_c00133{word-spacing:18.504000px;}
.ws6_c00133{word-spacing:19.944000px;}
.ws15_c00133{word-spacing:29.088000px;}
.ws14_c00133{word-spacing:29.520000px;}
._1_c00133{margin-left:-1.166400px;}
._0_c00133{width:1.119960px;}
._3_c00133{width:15.264000px;}
._2_c00133{width:31.838400px;}
.fc1_c00133{color:rgb(0,0,0);}
.fc0_c00133{color:rgb(35,31,32);}
.fs1_c00133{font-size:65.880000px;}
.fs0_c00133{font-size:72.000000px;}
.y0_c00133{bottom:0.000000px;}
.y1_c00133{bottom:61.748550px;}
.y14_c00133{bottom:115.424400px;}
.y13_c00133{bottom:146.474400px;}
.y12_c00133{bottom:177.524400px;}
.y11_c00133{bottom:208.574400px;}
.y10_c00133{bottom:239.624400px;}
.yf_c00133{bottom:270.674400px;}
.ye_c00133{bottom:332.774400px;}
.yd_c00133{bottom:363.824400px;}
.yc_c00133{bottom:829.484400px;}
.yb_c00133{bottom:860.534400px;}
.ya_c00133{bottom:891.584400px;}
.y9_c00133{bottom:953.684400px;}
.y8_c00133{bottom:984.734400px;}
.y7_c00133{bottom:1015.784400px;}
.y6_c00133{bottom:1046.834400px;}
.y5_c00133{bottom:1077.884400px;}
.y4_c00133{bottom:1108.934400px;}
.y3_c00133{bottom:1139.984400px;}
.y2_c00133{bottom:1194.074400px;}
.h2_c00133{height:50.400000px;}
.h3_c00133{height:54.331699px;}
.h4_c00133{height:76.824000px;}
.h5_c00133{height:78.048000px;}
.h0_c00133{height:1262.835000px;}
.h1_c00133{height:1263.000000px;}
.w0_c00133{width:892.914000px;}
.w1_c00133{width:893.250000px;}
.x0_c00133{left:0.000000px;}
.x1_c00133{left:54.000000px;}
.x2_c00133{left:127.620000px;}
.x3_c00133{left:159.570000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls8_c00133{letter-spacing:-0.512000pt;}
.ls6_c00133{letter-spacing:-0.117120pt;}
.ls5_c00133{letter-spacing:0.000000pt;}
.ls1_c00133{letter-spacing:0.064000pt;}
.ls7_c00133{letter-spacing:0.128000pt;}
.ls3_c00133{letter-spacing:0.320000pt;}
.ls2_c00133{letter-spacing:26.880000pt;}
.ls4_c00133{letter-spacing:28.800000pt;}
.ls0_c00133{letter-spacing:30.080000pt;}
.ws0_c00133{word-spacing:-16.128000pt;}
.ws2_c00133{word-spacing:-16.064000pt;}
.ws4_c00133{word-spacing:-16.000000pt;}
.ws13_c00133{word-spacing:-0.320000pt;}
.ws9_c00133{word-spacing:-0.117120pt;}
.wse_c00133{word-spacing:-0.064000pt;}
.ws7_c00133{word-spacing:0.000000pt;}
.ws8_c00133{word-spacing:0.117120pt;}
.wsd_c00133{word-spacing:0.256000pt;}
.wsc_c00133{word-spacing:0.320000pt;}
.ws1c_c00133{word-spacing:3.456000pt;}
.ws1b_c00133{word-spacing:3.520000pt;}
.ws10_c00133{word-spacing:4.800000pt;}
.ws19_c00133{word-spacing:6.016000pt;}
.ws3_c00133{word-spacing:6.080000pt;}
.ws1f_c00133{word-spacing:6.400000pt;}
.ws18_c00133{word-spacing:6.656000pt;}
.ws17_c00133{word-spacing:6.720000pt;}
.ws1a_c00133{word-spacing:8.320000pt;}
.ws20_c00133{word-spacing:10.496000pt;}
.ws21_c00133{word-spacing:10.560000pt;}
.ws11_c00133{word-spacing:10.816000pt;}
.ws12_c00133{word-spacing:10.880000pt;}
.ws1_c00133{word-spacing:10.892800pt;}
.ws16_c00133{word-spacing:12.800000pt;}
.wsf_c00133{word-spacing:13.120000pt;}
.ws1e_c00133{word-spacing:13.376000pt;}
.ws1d_c00133{word-spacing:13.440000pt;}
.wsb_c00133{word-spacing:14.016000pt;}
.wsa_c00133{word-spacing:14.080000pt;}
.ws22_c00133{word-spacing:16.256000pt;}
.ws23_c00133{word-spacing:16.320000pt;}
.ws5_c00133{word-spacing:16.448000pt;}
.ws6_c00133{word-spacing:17.728000pt;}
.ws15_c00133{word-spacing:25.856000pt;}
.ws14_c00133{word-spacing:26.240000pt;}
._1_c00133{margin-left:-1.036800pt;}
._0_c00133{width:0.995520pt;}
._3_c00133{width:13.568000pt;}
._2_c00133{width:28.300800pt;}
.fs1_c00133{font-size:58.560000pt;}
.fs0_c00133{font-size:64.000000pt;}
.y0_c00133{bottom:0.000000pt;}
.y1_c00133{bottom:54.887600pt;}
.y14_c00133{bottom:102.599467pt;}
.y13_c00133{bottom:130.199467pt;}
.y12_c00133{bottom:157.799467pt;}
.y11_c00133{bottom:185.399467pt;}
.y10_c00133{bottom:212.999467pt;}
.yf_c00133{bottom:240.599467pt;}
.ye_c00133{bottom:295.799467pt;}
.yd_c00133{bottom:323.399467pt;}
.yc_c00133{bottom:737.319467pt;}
.yb_c00133{bottom:764.919467pt;}
.ya_c00133{bottom:792.519467pt;}
.y9_c00133{bottom:847.719467pt;}
.y8_c00133{bottom:875.319467pt;}
.y7_c00133{bottom:902.919467pt;}
.y6_c00133{bottom:930.519467pt;}
.y5_c00133{bottom:958.119467pt;}
.y4_c00133{bottom:985.719467pt;}
.y3_c00133{bottom:1013.319467pt;}
.y2_c00133{bottom:1061.399467pt;}
.h2_c00133{height:44.800000pt;}
.h3_c00133{height:48.294844pt;}
.h4_c00133{height:68.288000pt;}
.h5_c00133{height:69.376000pt;}
.h0_c00133{height:1122.520000pt;}
.h1_c00133{height:1122.666667pt;}
.w0_c00133{width:793.701333pt;}
.w1_c00133{width:794.000000pt;}
.x0_c00133{left:0.000000pt;}
.x1_c00133{left:48.000000pt;}
.x2_c00133{left:113.440000pt;}
.x3_c00133{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00134;src:url('chunks/assets/font_ccfee73997151e4414cee01f.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00134;src:url('chunks/assets/font_571e2182f97efbd31c6e1c1d.woff2')format("woff");}.ff3_c00134{font-family:ff3_c00134;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00134;src:url('chunks/assets/font_3c08409c5c174dd94f42bcb5.woff2')format("woff");}.ff4_c00134{font-family:ff4_c00134;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00134;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00134{font-family:ff5_c00134;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00134;src:url('chunks/assets/font_977a95038ef2eef8fe340f79.woff2')format("woff");}.ff6_c00134{font-family:ff6_c00134;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00134;src:url('chunks/assets/font_5f3eb89219c33ef406de314b.woff2')format("woff");}.ff7_c00134{font-family:ff7_c00134;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00134;src:url('chunks/assets/font_405c2f0fe6c258b8ad54aef4.woff2')format("woff");}.ff8_c00134{font-family:ff8_c00134;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.lsc_c00134{letter-spacing:-0.576000px;}
.lsb_c00134{letter-spacing:-0.131760px;}
.lsd_c00134{letter-spacing:-0.072000px;}
.lsa_c00134{letter-spacing:0.000000px;}
.ls1_c00134{letter-spacing:0.072000px;}
.ls8_c00134{letter-spacing:0.144000px;}
.ls3_c00134{letter-spacing:0.360000px;}
.ls9_c00134{letter-spacing:20.304000px;}
.ls7_c00134{letter-spacing:20.923200px;}
.ls6_c00134{letter-spacing:21.240000px;}
.ls2_c00134{letter-spacing:30.240000px;}
.ls4_c00134{letter-spacing:32.400000px;}
.ls5_c00134{letter-spacing:33.480000px;}
.ls0_c00134{letter-spacing:33.840000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00134{word-spacing:-18.144000px;}
.ws2_c00134{word-spacing:-18.072000px;}
.ws4_c00134{word-spacing:-18.000000px;}
.wsb_c00134{word-spacing:-0.360000px;}
.wse_c00134{word-spacing:-0.131760px;}
.ws13_c00134{word-spacing:-0.072000px;}
.wsa_c00134{word-spacing:0.000000px;}
.ws36_c00134{word-spacing:0.072000px;}
.wsd_c00134{word-spacing:0.131760px;}
.ws12_c00134{word-spacing:0.288000px;}
.ws11_c00134{word-spacing:0.360000px;}
.ws33_c00134{word-spacing:2.016000px;}
.ws34_c00134{word-spacing:2.088000px;}
.ws32_c00134{word-spacing:2.160000px;}
.ws2e_c00134{word-spacing:3.168000px;}
.ws2d_c00134{word-spacing:3.240000px;}
.ws9_c00134{word-spacing:3.456000px;}
.ws35_c00134{word-spacing:3.600000px;}
.ws1f_c00134{word-spacing:3.888000px;}
.wsc_c00134{word-spacing:3.960000px;}
.ws37_c00134{word-spacing:4.248000px;}
.ws38_c00134{word-spacing:4.320000px;}
.ws31_c00134{word-spacing:4.608000px;}
.ws15_c00134{word-spacing:5.400000px;}
.ws1d_c00134{word-spacing:6.768000px;}
.ws3_c00134{word-spacing:6.840000px;}
.ws22_c00134{word-spacing:7.200000px;}
.ws1c_c00134{word-spacing:7.488000px;}
.ws1b_c00134{word-spacing:7.560000px;}
.ws30_c00134{word-spacing:7.920000px;}
.ws1e_c00134{word-spacing:9.360000px;}
.ws27_c00134{word-spacing:10.800000px;}
.ws23_c00134{word-spacing:11.808000px;}
.ws24_c00134{word-spacing:11.880000px;}
.ws16_c00134{word-spacing:12.168000px;}
.ws17_c00134{word-spacing:12.240000px;}
.ws1_c00134{word-spacing:12.254400px;}
.ws2c_c00134{word-spacing:13.968000px;}
.ws2b_c00134{word-spacing:14.040000px;}
.ws1a_c00134{word-spacing:14.400000px;}
.ws14_c00134{word-spacing:14.760000px;}
.ws21_c00134{word-spacing:15.048000px;}
.ws20_c00134{word-spacing:15.120000px;}
.ws10_c00134{word-spacing:15.768000px;}
.wsf_c00134{word-spacing:15.840000px;}
.ws2f_c00134{word-spacing:16.920000px;}
.ws2a_c00134{word-spacing:17.208000px;}
.ws25_c00134{word-spacing:18.288000px;}
.ws26_c00134{word-spacing:18.360000px;}
.ws5_c00134{word-spacing:18.504000px;}
.ws6_c00134{word-spacing:19.944000px;}
.ws8_c00134{word-spacing:23.040000px;}
.ws7_c00134{word-spacing:23.400000px;}
.ws29_c00134{word-spacing:23.544000px;}
.ws28_c00134{word-spacing:23.688000px;}
.ws19_c00134{word-spacing:29.088000px;}
.ws18_c00134{word-spacing:29.520000px;}
._1_c00134{margin-left:-1.166400px;}
._0_c00134{width:1.119960px;}
._5_c00134{width:4.464000px;}
._4_c00134{width:13.680000px;}
._3_c00134{width:15.264000px;}
._2_c00134{width:31.838400px;}
.fc2_c00134{color:transparent;}
.fc1_c00134{color:rgb(0,0,0);}
.fc0_c00134{color:rgb(35,31,32);}
.fs1_c00134{font-size:65.880000px;}
.fs0_c00134{font-size:72.000000px;}
.y0_c00134{bottom:0.000000px;}
.y1_c00134{bottom:61.748550px;}
.y14_c00134{bottom:115.424400px;}
.y13_c00134{bottom:146.474400px;}
.y12_c00134{bottom:177.524400px;}
.y11_c00134{bottom:208.574400px;}
.y10_c00134{bottom:239.624400px;}
.yf_c00134{bottom:270.674400px;}
.ye_c00134{bottom:332.774400px;}
.yd_c00134{bottom:363.824400px;}
.y1b_c00134{bottom:643.274400px;}
.y1a_c00134{bottom:674.324400px;}
.y19_c00134{bottom:705.374400px;}
.y18_c00134{bottom:736.424400px;}
.y17_c00134{bottom:767.474400px;}
.y16_c00134{bottom:798.434400px;}
.yc_c00134{bottom:829.484400px;}
.yb_c00134{bottom:860.534400px;}
.ya_c00134{bottom:891.584400px;}
.y15_c00134{bottom:922.634400px;}
.y9_c00134{bottom:953.684400px;}
.y8_c00134{bottom:984.734400px;}
.y7_c00134{bottom:1015.784400px;}
.y6_c00134{bottom:1046.834400px;}
.y5_c00134{bottom:1077.884400px;}
.y4_c00134{bottom:1108.934400px;}
.y3_c00134{bottom:1139.984400px;}
.y2_c00134{bottom:1194.074400px;}
.h2_c00134{height:50.400000px;}
.h3_c00134{height:54.331699px;}
.h4_c00134{height:76.824000px;}
.h5_c00134{height:78.048000px;}
.h0_c00134{height:1262.835000px;}
.h1_c00134{height:1263.000000px;}
.w2_c00134{width:0.000000px;}
.w3_c00134{width:0.066000px;}
.w0_c00134{width:892.914000px;}
.w1_c00134{width:893.250000px;}
.x1_c00134{left:-838.913400px;}
.x2_c00134{left:-765.293400px;}
.x3_c00134{left:-733.343400px;}
.x0_c00134{left:0.000000px;}
.x6_c00134{left:127.620000px;}
.x7_c00134{left:159.570000px;}
.x8_c00134{left:172.620000px;}
.x5_c00134{left:693.450000px;}
.x4_c00134{left:804.366150px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.lsc_c00134{letter-spacing:-0.512000pt;}
.lsb_c00134{letter-spacing:-0.117120pt;}
.lsd_c00134{letter-spacing:-0.064000pt;}
.lsa_c00134{letter-spacing:0.000000pt;}
.ls1_c00134{letter-spacing:0.064000pt;}
.ls8_c00134{letter-spacing:0.128000pt;}
.ls3_c00134{letter-spacing:0.320000pt;}
.ls9_c00134{letter-spacing:18.048000pt;}
.ls7_c00134{letter-spacing:18.598400pt;}
.ls6_c00134{letter-spacing:18.880000pt;}
.ls2_c00134{letter-spacing:26.880000pt;}
.ls4_c00134{letter-spacing:28.800000pt;}
.ls5_c00134{letter-spacing:29.760000pt;}
.ls0_c00134{letter-spacing:30.080000pt;}
.ws0_c00134{word-spacing:-16.128000pt;}
.ws2_c00134{word-spacing:-16.064000pt;}
.ws4_c00134{word-spacing:-16.000000pt;}
.wsb_c00134{word-spacing:-0.320000pt;}
.wse_c00134{word-spacing:-0.117120pt;}
.ws13_c00134{word-spacing:-0.064000pt;}
.wsa_c00134{word-spacing:0.000000pt;}
.ws36_c00134{word-spacing:0.064000pt;}
.wsd_c00134{word-spacing:0.117120pt;}
.ws12_c00134{word-spacing:0.256000pt;}
.ws11_c00134{word-spacing:0.320000pt;}
.ws33_c00134{word-spacing:1.792000pt;}
.ws34_c00134{word-spacing:1.856000pt;}
.ws32_c00134{word-spacing:1.920000pt;}
.ws2e_c00134{word-spacing:2.816000pt;}
.ws2d_c00134{word-spacing:2.880000pt;}
.ws9_c00134{word-spacing:3.072000pt;}
.ws35_c00134{word-spacing:3.200000pt;}
.ws1f_c00134{word-spacing:3.456000pt;}
.wsc_c00134{word-spacing:3.520000pt;}
.ws37_c00134{word-spacing:3.776000pt;}
.ws38_c00134{word-spacing:3.840000pt;}
.ws31_c00134{word-spacing:4.096000pt;}
.ws15_c00134{word-spacing:4.800000pt;}
.ws1d_c00134{word-spacing:6.016000pt;}
.ws3_c00134{word-spacing:6.080000pt;}
.ws22_c00134{word-spacing:6.400000pt;}
.ws1c_c00134{word-spacing:6.656000pt;}
.ws1b_c00134{word-spacing:6.720000pt;}
.ws30_c00134{word-spacing:7.040000pt;}
.ws1e_c00134{word-spacing:8.320000pt;}
.ws27_c00134{word-spacing:9.600000pt;}
.ws23_c00134{word-spacing:10.496000pt;}
.ws24_c00134{word-spacing:10.560000pt;}
.ws16_c00134{word-spacing:10.816000pt;}
.ws17_c00134{word-spacing:10.880000pt;}
.ws1_c00134{word-spacing:10.892800pt;}
.ws2c_c00134{word-spacing:12.416000pt;}
.ws2b_c00134{word-spacing:12.480000pt;}
.ws1a_c00134{word-spacing:12.800000pt;}
.ws14_c00134{word-spacing:13.120000pt;}
.ws21_c00134{word-spacing:13.376000pt;}
.ws20_c00134{word-spacing:13.440000pt;}
.ws10_c00134{word-spacing:14.016000pt;}
.wsf_c00134{word-spacing:14.080000pt;}
.ws2f_c00134{word-spacing:15.040000pt;}
.ws2a_c00134{word-spacing:15.296000pt;}
.ws25_c00134{word-spacing:16.256000pt;}
.ws26_c00134{word-spacing:16.320000pt;}
.ws5_c00134{word-spacing:16.448000pt;}
.ws6_c00134{word-spacing:17.728000pt;}
.ws8_c00134{word-spacing:20.480000pt;}
.ws7_c00134{word-spacing:20.800000pt;}
.ws29_c00134{word-spacing:20.928000pt;}
.ws28_c00134{word-spacing:21.056000pt;}
.ws19_c00134{word-spacing:25.856000pt;}
.ws18_c00134{word-spacing:26.240000pt;}
._1_c00134{margin-left:-1.036800pt;}
._0_c00134{width:0.995520pt;}
._5_c00134{width:3.968000pt;}
._4_c00134{width:12.160000pt;}
._3_c00134{width:13.568000pt;}
._2_c00134{width:28.300800pt;}
.fs1_c00134{font-size:58.560000pt;}
.fs0_c00134{font-size:64.000000pt;}
.y0_c00134{bottom:0.000000pt;}
.y1_c00134{bottom:54.887600pt;}
.y14_c00134{bottom:102.599467pt;}
.y13_c00134{bottom:130.199467pt;}
.y12_c00134{bottom:157.799467pt;}
.y11_c00134{bottom:185.399467pt;}
.y10_c00134{bottom:212.999467pt;}
.yf_c00134{bottom:240.599467pt;}
.ye_c00134{bottom:295.799467pt;}
.yd_c00134{bottom:323.399467pt;}
.y1b_c00134{bottom:571.799467pt;}
.y1a_c00134{bottom:599.399467pt;}
.y19_c00134{bottom:626.999467pt;}
.y18_c00134{bottom:654.599467pt;}
.y17_c00134{bottom:682.199467pt;}
.y16_c00134{bottom:709.719467pt;}
.yc_c00134{bottom:737.319467pt;}
.yb_c00134{bottom:764.919467pt;}
.ya_c00134{bottom:792.519467pt;}
.y15_c00134{bottom:820.119467pt;}
.y9_c00134{bottom:847.719467pt;}
.y8_c00134{bottom:875.319467pt;}
.y7_c00134{bottom:902.919467pt;}
.y6_c00134{bottom:930.519467pt;}
.y5_c00134{bottom:958.119467pt;}
.y4_c00134{bottom:985.719467pt;}
.y3_c00134{bottom:1013.319467pt;}
.y2_c00134{bottom:1061.399467pt;}
.h2_c00134{height:44.800000pt;}
.h3_c00134{height:48.294844pt;}
.h4_c00134{height:68.288000pt;}
.h5_c00134{height:69.376000pt;}
.h0_c00134{height:1122.520000pt;}
.h1_c00134{height:1122.666667pt;}
.w2_c00134{width:0.000000pt;}
.w3_c00134{width:0.058667pt;}
.w0_c00134{width:793.701333pt;}
.w1_c00134{width:794.000000pt;}
.x1_c00134{left:-745.700800pt;}
.x2_c00134{left:-680.260800pt;}
.x3_c00134{left:-651.860800pt;}
.x0_c00134{left:0.000000pt;}
.x6_c00134{left:113.440000pt;}
.x7_c00134{left:141.840000pt;}
.x8_c00134{left:153.440000pt;}
.x5_c00134{left:616.400000pt;}
.x4_c00134{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00135;src:url('chunks/assets/font_f806ca79390e0c1d3862285b.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00135;src:url('chunks/assets/font_160128a7374105b9e10c0376.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00135;src:url('chunks/assets/font_9794b8f771fdfbd602332bc6.woff2')format("woff");}.ff4_c00135{font-family:ff4_c00135;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00135{letter-spacing:-0.576000px;}
.ls8_c00135{letter-spacing:-0.360000px;}
.ls6_c00135{letter-spacing:-0.131760px;}
.ls5_c00135{letter-spacing:0.000000px;}
.ls0_c00135{letter-spacing:0.072000px;}
.ls1_c00135{letter-spacing:0.144000px;}
.ls4_c00135{letter-spacing:0.288000px;}
.ls3_c00135{letter-spacing:23.400000px;}
.ls2_c00135{letter-spacing:38.376000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00135{word-spacing:-18.144000px;}
.ws3_c00135{word-spacing:-18.072000px;}
.ws0_c00135{word-spacing:-18.000000px;}
.ws4_c00135{word-spacing:-17.424000px;}
.ws2c_c00135{word-spacing:-0.288000px;}
.ws12_c00135{word-spacing:-0.144000px;}
.wse_c00135{word-spacing:-0.131760px;}
.ws18_c00135{word-spacing:-0.072000px;}
.wsc_c00135{word-spacing:0.000000px;}
.wsd_c00135{word-spacing:0.131760px;}
.ws24_c00135{word-spacing:0.720000px;}
.ws1e_c00135{word-spacing:1.008000px;}
.ws20_c00135{word-spacing:1.080000px;}
.ws1f_c00135{word-spacing:1.656000px;}
.ws6_c00135{word-spacing:1.800000px;}
.ws2e_c00135{word-spacing:2.088000px;}
.ws23_c00135{word-spacing:2.160000px;}
.ws19_c00135{word-spacing:2.448000px;}
.ws2_c00135{word-spacing:2.520000px;}
.ws7_c00135{word-spacing:2.599200px;}
.ws1d_c00135{word-spacing:2.808000px;}
.ws5_c00135{word-spacing:2.952000px;}
.ws8_c00135{word-spacing:3.312000px;}
.ws25_c00135{word-spacing:3.528000px;}
.ws2b_c00135{word-spacing:5.400000px;}
.ws2d_c00135{word-spacing:5.688000px;}
.ws28_c00135{word-spacing:6.408000px;}
.ws2a_c00135{word-spacing:6.480000px;}
.ws14_c00135{word-spacing:7.848000px;}
.ws13_c00135{word-spacing:7.920000px;}
.ws1a_c00135{word-spacing:8.280000px;}
.wsf_c00135{word-spacing:8.856000px;}
.ws11_c00135{word-spacing:8.928000px;}
.ws10_c00135{word-spacing:9.000000px;}
.ws16_c00135{word-spacing:9.936000px;}
.ws2f_c00135{word-spacing:10.008000px;}
.ws15_c00135{word-spacing:10.080000px;}
.wsb_c00135{word-spacing:10.224000px;}
.ws1c_c00135{word-spacing:10.440000px;}
.ws17_c00135{word-spacing:11.520000px;}
.ws21_c00135{word-spacing:11.880000px;}
.ws29_c00135{word-spacing:12.600000px;}
.ws1b_c00135{word-spacing:18.720000px;}
.ws9_c00135{word-spacing:20.016000px;}
.ws27_c00135{word-spacing:20.088000px;}
.ws26_c00135{word-spacing:20.160000px;}
.wsa_c00135{word-spacing:20.520000px;}
.ws22_c00135{word-spacing:29.808000px;}
._1_c00135{margin-left:-1.224000px;}
._0_c00135{width:1.119960px;}
._2_c00135{width:10.800000px;}
._3_c00135{width:30.096000px;}
.fc1_c00135{color:rgb(0,0,0);}
.fc0_c00135{color:rgb(35,31,32);}
.fs1_c00135{font-size:65.880000px;}
.fs0_c00135{font-size:72.000000px;}
.y0_c00135{bottom:0.000000px;}
.y1_c00135{bottom:61.748550px;}
.y22_c00135{bottom:115.424400px;}
.y21_c00135{bottom:146.474400px;}
.y20_c00135{bottom:177.524400px;}
.y1f_c00135{bottom:208.574400px;}
.y1e_c00135{bottom:239.624400px;}
.y1d_c00135{bottom:270.674400px;}
.y1c_c00135{bottom:301.724400px;}
.y1b_c00135{bottom:332.774400px;}
.y1a_c00135{bottom:363.824400px;}
.y19_c00135{bottom:394.874400px;}
.y18_c00135{bottom:456.974400px;}
.y17_c00135{bottom:488.024400px;}
.y16_c00135{bottom:519.074400px;}
.y15_c00135{bottom:550.124400px;}
.y14_c00135{bottom:581.174400px;}
.y13_c00135{bottom:612.224400px;}
.y12_c00135{bottom:643.274400px;}
.y11_c00135{bottom:674.324400px;}
.y10_c00135{bottom:705.374400px;}
.yf_c00135{bottom:736.424400px;}
.ye_c00135{bottom:767.474400px;}
.yd_c00135{bottom:798.434400px;}
.yc_c00135{bottom:860.534400px;}
.yb_c00135{bottom:891.584400px;}
.ya_c00135{bottom:922.634400px;}
.y9_c00135{bottom:953.684400px;}
.y8_c00135{bottom:984.734400px;}
.y7_c00135{bottom:1015.784400px;}
.y6_c00135{bottom:1046.834400px;}
.y5_c00135{bottom:1077.884400px;}
.y4_c00135{bottom:1108.934400px;}
.y3_c00135{bottom:1139.984400px;}
.y2_c00135{bottom:1194.074400px;}
.h2_c00135{height:50.400000px;}
.h3_c00135{height:54.331699px;}
.h5_c00135{height:76.824000px;}
.h4_c00135{height:78.048000px;}
.h0_c00135{height:1262.835000px;}
.h1_c00135{height:1263.000000px;}
.w0_c00135{width:892.914000px;}
.w1_c00135{width:893.250000px;}
.x0_c00135{left:0.000000px;}
.x1_c00135{left:54.000000px;}
.x2_c00135{left:127.620000px;}
.x3_c00135{left:159.570000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls7_c00135{letter-spacing:-0.512000pt;}
.ls8_c00135{letter-spacing:-0.320000pt;}
.ls6_c00135{letter-spacing:-0.117120pt;}
.ls5_c00135{letter-spacing:0.000000pt;}
.ls0_c00135{letter-spacing:0.064000pt;}
.ls1_c00135{letter-spacing:0.128000pt;}
.ls4_c00135{letter-spacing:0.256000pt;}
.ls3_c00135{letter-spacing:20.800000pt;}
.ls2_c00135{letter-spacing:34.112000pt;}
.ws1_c00135{word-spacing:-16.128000pt;}
.ws3_c00135{word-spacing:-16.064000pt;}
.ws0_c00135{word-spacing:-16.000000pt;}
.ws4_c00135{word-spacing:-15.488000pt;}
.ws2c_c00135{word-spacing:-0.256000pt;}
.ws12_c00135{word-spacing:-0.128000pt;}
.wse_c00135{word-spacing:-0.117120pt;}
.ws18_c00135{word-spacing:-0.064000pt;}
.wsc_c00135{word-spacing:0.000000pt;}
.wsd_c00135{word-spacing:0.117120pt;}
.ws24_c00135{word-spacing:0.640000pt;}
.ws1e_c00135{word-spacing:0.896000pt;}
.ws20_c00135{word-spacing:0.960000pt;}
.ws1f_c00135{word-spacing:1.472000pt;}
.ws6_c00135{word-spacing:1.600000pt;}
.ws2e_c00135{word-spacing:1.856000pt;}
.ws23_c00135{word-spacing:1.920000pt;}
.ws19_c00135{word-spacing:2.176000pt;}
.ws2_c00135{word-spacing:2.240000pt;}
.ws7_c00135{word-spacing:2.310400pt;}
.ws1d_c00135{word-spacing:2.496000pt;}
.ws5_c00135{word-spacing:2.624000pt;}
.ws8_c00135{word-spacing:2.944000pt;}
.ws25_c00135{word-spacing:3.136000pt;}
.ws2b_c00135{word-spacing:4.800000pt;}
.ws2d_c00135{word-spacing:5.056000pt;}
.ws28_c00135{word-spacing:5.696000pt;}
.ws2a_c00135{word-spacing:5.760000pt;}
.ws14_c00135{word-spacing:6.976000pt;}
.ws13_c00135{word-spacing:7.040000pt;}
.ws1a_c00135{word-spacing:7.360000pt;}
.wsf_c00135{word-spacing:7.872000pt;}
.ws11_c00135{word-spacing:7.936000pt;}
.ws10_c00135{word-spacing:8.000000pt;}
.ws16_c00135{word-spacing:8.832000pt;}
.ws2f_c00135{word-spacing:8.896000pt;}
.ws15_c00135{word-spacing:8.960000pt;}
.wsb_c00135{word-spacing:9.088000pt;}
.ws1c_c00135{word-spacing:9.280000pt;}
.ws17_c00135{word-spacing:10.240000pt;}
.ws21_c00135{word-spacing:10.560000pt;}
.ws29_c00135{word-spacing:11.200000pt;}
.ws1b_c00135{word-spacing:16.640000pt;}
.ws9_c00135{word-spacing:17.792000pt;}
.ws27_c00135{word-spacing:17.856000pt;}
.ws26_c00135{word-spacing:17.920000pt;}
.wsa_c00135{word-spacing:18.240000pt;}
.ws22_c00135{word-spacing:26.496000pt;}
._1_c00135{margin-left:-1.088000pt;}
._0_c00135{width:0.995520pt;}
._2_c00135{width:9.600000pt;}
._3_c00135{width:26.752000pt;}
.fs1_c00135{font-size:58.560000pt;}
.fs0_c00135{font-size:64.000000pt;}
.y0_c00135{bottom:0.000000pt;}
.y1_c00135{bottom:54.887600pt;}
.y22_c00135{bottom:102.599467pt;}
.y21_c00135{bottom:130.199467pt;}
.y20_c00135{bottom:157.799467pt;}
.y1f_c00135{bottom:185.399467pt;}
.y1e_c00135{bottom:212.999467pt;}
.y1d_c00135{bottom:240.599467pt;}
.y1c_c00135{bottom:268.199467pt;}
.y1b_c00135{bottom:295.799467pt;}
.y1a_c00135{bottom:323.399467pt;}
.y19_c00135{bottom:350.999467pt;}
.y18_c00135{bottom:406.199467pt;}
.y17_c00135{bottom:433.799467pt;}
.y16_c00135{bottom:461.399467pt;}
.y15_c00135{bottom:488.999467pt;}
.y14_c00135{bottom:516.599467pt;}
.y13_c00135{bottom:544.199467pt;}
.y12_c00135{bottom:571.799467pt;}
.y11_c00135{bottom:599.399467pt;}
.y10_c00135{bottom:626.999467pt;}
.yf_c00135{bottom:654.599467pt;}
.ye_c00135{bottom:682.199467pt;}
.yd_c00135{bottom:709.719467pt;}
.yc_c00135{bottom:764.919467pt;}
.yb_c00135{bottom:792.519467pt;}
.ya_c00135{bottom:820.119467pt;}
.y9_c00135{bottom:847.719467pt;}
.y8_c00135{bottom:875.319467pt;}
.y7_c00135{bottom:902.919467pt;}
.y6_c00135{bottom:930.519467pt;}
.y5_c00135{bottom:958.119467pt;}
.y4_c00135{bottom:985.719467pt;}
.y3_c00135{bottom:1013.319467pt;}
.y2_c00135{bottom:1061.399467pt;}
.h2_c00135{height:44.800000pt;}
.h3_c00135{height:48.294844pt;}
.h5_c00135{height:68.288000pt;}
.h4_c00135{height:69.376000pt;}
.h0_c00135{height:1122.520000pt;}
.h1_c00135{height:1122.666667pt;}
.w0_c00135{width:793.701333pt;}
.w1_c00135{width:794.000000pt;}
.x0_c00135{left:0.000000pt;}
.x1_c00135{left:48.000000pt;}
.x2_c00135{left:113.440000pt;}
.x3_c00135{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00136;src:url('chunks/assets/font_7d35aa9b05bd9676509b6bf9.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00136;src:url('chunks/assets/font_383eac81b00fd3159f3564cc.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00136;src:url('chunks/assets/font_e1b69455b545122b26d10b8b.woff2')format("woff");}.ff4_c00136{font-family:ff4_c00136;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00136;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00136{font-family:ff5_c00136;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00136;src:url('chunks/assets/font_8cdd08a25c1c869b8e782535.woff2')format("woff");}.ff6_c00136{font-family:ff6_c00136;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00136;src:url('chunks/assets/font_1f280ee79165632255c1a6dd.woff2')format("woff");}.ff7_c00136{font-family:ff7_c00136;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00136;src:url('chunks/assets/font_dc4305c4191ecefe1cf8270b.woff2')format("woff");}.ff8_c00136{font-family:ff8_c00136;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls9_c00136{letter-spacing:-0.576000px;}
.lsa_c00136{letter-spacing:-0.360000px;}
.ls8_c00136{letter-spacing:-0.131760px;}
.lsb_c00136{letter-spacing:-0.072000px;}
.ls7_c00136{letter-spacing:0.000000px;}
.ls0_c00136{letter-spacing:0.072000px;}
.ls1_c00136{letter-spacing:0.144000px;}
.ls4_c00136{letter-spacing:0.288000px;}
.ls3_c00136{letter-spacing:23.400000px;}
.ls6_c00136{letter-spacing:33.840000px;}
.ls5_c00136{letter-spacing:36.000000px;}
.ls2_c00136{letter-spacing:38.376000px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00136{word-spacing:-18.144000px;}
.ws3_c00136{word-spacing:-18.072000px;}
.ws0_c00136{word-spacing:-18.000000px;}
.ws4_c00136{word-spacing:-17.424000px;}
.ws2e_c00136{word-spacing:-0.288000px;}
.ws14_c00136{word-spacing:-0.144000px;}
.ws10_c00136{word-spacing:-0.131760px;}
.ws1a_c00136{word-spacing:-0.072000px;}
.wse_c00136{word-spacing:0.000000px;}
.wsf_c00136{word-spacing:0.131760px;}
.ws4d_c00136{word-spacing:0.360000px;}
.ws26_c00136{word-spacing:0.720000px;}
.ws20_c00136{word-spacing:1.008000px;}
.ws22_c00136{word-spacing:1.080000px;}
.ws3a_c00136{word-spacing:1.368000px;}
.wsc_c00136{word-spacing:1.440000px;}
.ws21_c00136{word-spacing:1.656000px;}
.ws6_c00136{word-spacing:1.800000px;}
.ws30_c00136{word-spacing:2.088000px;}
.ws25_c00136{word-spacing:2.160000px;}
.ws1b_c00136{word-spacing:2.448000px;}
.ws2_c00136{word-spacing:2.520000px;}
.ws7_c00136{word-spacing:2.599200px;}
.ws1f_c00136{word-spacing:2.808000px;}
.ws5_c00136{word-spacing:2.952000px;}
.ws32_c00136{word-spacing:3.168000px;}
.ws8_c00136{word-spacing:3.312000px;}
.ws27_c00136{word-spacing:3.528000px;}
.ws3f_c00136{word-spacing:3.600000px;}
.ws42_c00136{word-spacing:3.888000px;}
.ws41_c00136{word-spacing:3.960000px;}
.ws50_c00136{word-spacing:4.608000px;}
.ws4f_c00136{word-spacing:4.968000px;}
.ws36_c00136{word-spacing:5.040000px;}
.ws43_c00136{word-spacing:5.184000px;}
.ws2d_c00136{word-spacing:5.400000px;}
.ws2f_c00136{word-spacing:5.688000px;}
.ws2a_c00136{word-spacing:6.408000px;}
.ws2c_c00136{word-spacing:6.480000px;}
.ws49_c00136{word-spacing:6.768000px;}
.ws33_c00136{word-spacing:7.488000px;}
.ws16_c00136{word-spacing:7.848000px;}
.ws15_c00136{word-spacing:7.920000px;}
.ws1c_c00136{word-spacing:8.280000px;}
.ws11_c00136{word-spacing:8.856000px;}
.ws13_c00136{word-spacing:8.928000px;}
.ws12_c00136{word-spacing:9.000000px;}
.ws52_c00136{word-spacing:9.288000px;}
.ws51_c00136{word-spacing:9.360000px;}
.ws18_c00136{word-spacing:9.936000px;}
.ws31_c00136{word-spacing:10.008000px;}
.ws17_c00136{word-spacing:10.080000px;}
.wsb_c00136{word-spacing:10.224000px;}
.ws1e_c00136{word-spacing:10.440000px;}
.ws46_c00136{word-spacing:10.656000px;}
.ws45_c00136{word-spacing:10.728000px;}
.ws44_c00136{word-spacing:10.800000px;}
.ws35_c00136{word-spacing:11.088000px;}
.ws4e_c00136{word-spacing:11.160000px;}
.ws19_c00136{word-spacing:11.520000px;}
.ws23_c00136{word-spacing:11.880000px;}
.ws40_c00136{word-spacing:12.168000px;}
.ws2b_c00136{word-spacing:12.600000px;}
.ws3b_c00136{word-spacing:15.768000px;}
.ws3c_c00136{word-spacing:15.840000px;}
.ws4b_c00136{word-spacing:16.488000px;}
.ws4a_c00136{word-spacing:16.560000px;}
.ws4c_c00136{word-spacing:16.632000px;}
.wsd_c00136{word-spacing:17.712000px;}
.ws37_c00136{word-spacing:17.856000px;}
.ws39_c00136{word-spacing:17.928000px;}
.ws38_c00136{word-spacing:18.000000px;}
.ws3d_c00136{word-spacing:18.648000px;}
.ws1d_c00136{word-spacing:18.720000px;}
.ws3e_c00136{word-spacing:19.008000px;}
.ws9_c00136{word-spacing:20.016000px;}
.ws29_c00136{word-spacing:20.088000px;}
.ws28_c00136{word-spacing:20.160000px;}
.wsa_c00136{word-spacing:20.520000px;}
.ws48_c00136{word-spacing:25.128000px;}
.ws47_c00136{word-spacing:25.200000px;}
.ws24_c00136{word-spacing:29.808000px;}
.ws34_c00136{word-spacing:34.920000px;}
._1_c00136{margin-left:-1.224000px;}
._0_c00136{width:1.119960px;}
._5_c00136{width:3.528000px;}
._2_c00136{width:10.800000px;}
._7_c00136{width:15.912000px;}
._4_c00136{width:19.443240px;}
._6_c00136{width:24.523200px;}
._3_c00136{width:30.096000px;}
._8_c00136{width:34.704000px;}
.fc2_c00136{color:transparent;}
.fc1_c00136{color:rgb(0,0,0);}
.fc0_c00136{color:rgb(35,31,32);}
.fs1_c00136{font-size:65.880000px;}
.fs0_c00136{font-size:72.000000px;}
.y0_c00136{bottom:0.000000px;}
.y1_c00136{bottom:61.748550px;}
.y22_c00136{bottom:115.424400px;}
.y21_c00136{bottom:146.474400px;}
.y20_c00136{bottom:177.524400px;}
.y1f_c00136{bottom:208.574400px;}
.y1e_c00136{bottom:239.624400px;}
.y1d_c00136{bottom:270.674400px;}
.y1c_c00136{bottom:301.724400px;}
.y1b_c00136{bottom:332.774400px;}
.y1a_c00136{bottom:363.824400px;}
.y19_c00136{bottom:394.874400px;}
.y24_c00136{bottom:425.924400px;}
.y18_c00136{bottom:456.974400px;}
.y17_c00136{bottom:488.024400px;}
.y16_c00136{bottom:519.074400px;}
.y15_c00136{bottom:550.124400px;}
.y14_c00136{bottom:581.174400px;}
.y13_c00136{bottom:612.224400px;}
.y12_c00136{bottom:643.274400px;}
.y11_c00136{bottom:674.324400px;}
.y10_c00136{bottom:705.374400px;}
.yf_c00136{bottom:736.424400px;}
.ye_c00136{bottom:767.474400px;}
.yd_c00136{bottom:798.434400px;}
.y23_c00136{bottom:829.484400px;}
.yc_c00136{bottom:860.534400px;}
.yb_c00136{bottom:891.584400px;}
.ya_c00136{bottom:922.634400px;}
.y9_c00136{bottom:953.684400px;}
.y8_c00136{bottom:984.734400px;}
.y7_c00136{bottom:1015.784400px;}
.y6_c00136{bottom:1046.834400px;}
.y5_c00136{bottom:1077.884400px;}
.y4_c00136{bottom:1108.934400px;}
.y3_c00136{bottom:1139.984400px;}
.y2_c00136{bottom:1194.074400px;}
.h2_c00136{height:50.400000px;}
.h3_c00136{height:54.331699px;}
.h5_c00136{height:76.824000px;}
.h4_c00136{height:78.048000px;}
.h0_c00136{height:1262.835000px;}
.h1_c00136{height:1263.000000px;}
.w2_c00136{width:0.000000px;}
.w3_c00136{width:0.066000px;}
.w0_c00136{width:892.914000px;}
.w1_c00136{width:893.250000px;}
.x1_c00136{left:-838.913400px;}
.x2_c00136{left:-765.293400px;}
.x3_c00136{left:-733.343400px;}
.x0_c00136{left:0.000000px;}
.x6_c00136{left:127.620000px;}
.x7_c00136{left:159.570000px;}
.x5_c00136{left:693.450000px;}
.x4_c00136{left:804.366150px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls9_c00136{letter-spacing:-0.512000pt;}
.lsa_c00136{letter-spacing:-0.320000pt;}
.ls8_c00136{letter-spacing:-0.117120pt;}
.lsb_c00136{letter-spacing:-0.064000pt;}
.ls7_c00136{letter-spacing:0.000000pt;}
.ls0_c00136{letter-spacing:0.064000pt;}
.ls1_c00136{letter-spacing:0.128000pt;}
.ls4_c00136{letter-spacing:0.256000pt;}
.ls3_c00136{letter-spacing:20.800000pt;}
.ls6_c00136{letter-spacing:30.080000pt;}
.ls5_c00136{letter-spacing:32.000000pt;}
.ls2_c00136{letter-spacing:34.112000pt;}
.ws1_c00136{word-spacing:-16.128000pt;}
.ws3_c00136{word-spacing:-16.064000pt;}
.ws0_c00136{word-spacing:-16.000000pt;}
.ws4_c00136{word-spacing:-15.488000pt;}
.ws2e_c00136{word-spacing:-0.256000pt;}
.ws14_c00136{word-spacing:-0.128000pt;}
.ws10_c00136{word-spacing:-0.117120pt;}
.ws1a_c00136{word-spacing:-0.064000pt;}
.wse_c00136{word-spacing:0.000000pt;}
.wsf_c00136{word-spacing:0.117120pt;}
.ws4d_c00136{word-spacing:0.320000pt;}
.ws26_c00136{word-spacing:0.640000pt;}
.ws20_c00136{word-spacing:0.896000pt;}
.ws22_c00136{word-spacing:0.960000pt;}
.ws3a_c00136{word-spacing:1.216000pt;}
.wsc_c00136{word-spacing:1.280000pt;}
.ws21_c00136{word-spacing:1.472000pt;}
.ws6_c00136{word-spacing:1.600000pt;}
.ws30_c00136{word-spacing:1.856000pt;}
.ws25_c00136{word-spacing:1.920000pt;}
.ws1b_c00136{word-spacing:2.176000pt;}
.ws2_c00136{word-spacing:2.240000pt;}
.ws7_c00136{word-spacing:2.310400pt;}
.ws1f_c00136{word-spacing:2.496000pt;}
.ws5_c00136{word-spacing:2.624000pt;}
.ws32_c00136{word-spacing:2.816000pt;}
.ws8_c00136{word-spacing:2.944000pt;}
.ws27_c00136{word-spacing:3.136000pt;}
.ws3f_c00136{word-spacing:3.200000pt;}
.ws42_c00136{word-spacing:3.456000pt;}
.ws41_c00136{word-spacing:3.520000pt;}
.ws50_c00136{word-spacing:4.096000pt;}
.ws4f_c00136{word-spacing:4.416000pt;}
.ws36_c00136{word-spacing:4.480000pt;}
.ws43_c00136{word-spacing:4.608000pt;}
.ws2d_c00136{word-spacing:4.800000pt;}
.ws2f_c00136{word-spacing:5.056000pt;}
.ws2a_c00136{word-spacing:5.696000pt;}
.ws2c_c00136{word-spacing:5.760000pt;}
.ws49_c00136{word-spacing:6.016000pt;}
.ws33_c00136{word-spacing:6.656000pt;}
.ws16_c00136{word-spacing:6.976000pt;}
.ws15_c00136{word-spacing:7.040000pt;}
.ws1c_c00136{word-spacing:7.360000pt;}
.ws11_c00136{word-spacing:7.872000pt;}
.ws13_c00136{word-spacing:7.936000pt;}
.ws12_c00136{word-spacing:8.000000pt;}
.ws52_c00136{word-spacing:8.256000pt;}
.ws51_c00136{word-spacing:8.320000pt;}
.ws18_c00136{word-spacing:8.832000pt;}
.ws31_c00136{word-spacing:8.896000pt;}
.ws17_c00136{word-spacing:8.960000pt;}
.wsb_c00136{word-spacing:9.088000pt;}
.ws1e_c00136{word-spacing:9.280000pt;}
.ws46_c00136{word-spacing:9.472000pt;}
.ws45_c00136{word-spacing:9.536000pt;}
.ws44_c00136{word-spacing:9.600000pt;}
.ws35_c00136{word-spacing:9.856000pt;}
.ws4e_c00136{word-spacing:9.920000pt;}
.ws19_c00136{word-spacing:10.240000pt;}
.ws23_c00136{word-spacing:10.560000pt;}
.ws40_c00136{word-spacing:10.816000pt;}
.ws2b_c00136{word-spacing:11.200000pt;}
.ws3b_c00136{word-spacing:14.016000pt;}
.ws3c_c00136{word-spacing:14.080000pt;}
.ws4b_c00136{word-spacing:14.656000pt;}
.ws4a_c00136{word-spacing:14.720000pt;}
.ws4c_c00136{word-spacing:14.784000pt;}
.wsd_c00136{word-spacing:15.744000pt;}
.ws37_c00136{word-spacing:15.872000pt;}
.ws39_c00136{word-spacing:15.936000pt;}
.ws38_c00136{word-spacing:16.000000pt;}
.ws3d_c00136{word-spacing:16.576000pt;}
.ws1d_c00136{word-spacing:16.640000pt;}
.ws3e_c00136{word-spacing:16.896000pt;}
.ws9_c00136{word-spacing:17.792000pt;}
.ws29_c00136{word-spacing:17.856000pt;}
.ws28_c00136{word-spacing:17.920000pt;}
.wsa_c00136{word-spacing:18.240000pt;}
.ws48_c00136{word-spacing:22.336000pt;}
.ws47_c00136{word-spacing:22.400000pt;}
.ws24_c00136{word-spacing:26.496000pt;}
.ws34_c00136{word-spacing:31.040000pt;}
._1_c00136{margin-left:-1.088000pt;}
._0_c00136{width:0.995520pt;}
._5_c00136{width:3.136000pt;}
._2_c00136{width:9.600000pt;}
._7_c00136{width:14.144000pt;}
._4_c00136{width:17.282880pt;}
._6_c00136{width:21.798400pt;}
._3_c00136{width:26.752000pt;}
._8_c00136{width:30.848000pt;}
.fs1_c00136{font-size:58.560000pt;}
.fs0_c00136{font-size:64.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y1_c00136{bottom:54.887600pt;}
.y22_c00136{bottom:102.599467pt;}
.y21_c00136{bottom:130.199467pt;}
.y20_c00136{bottom:157.799467pt;}
.y1f_c00136{bottom:185.399467pt;}
.y1e_c00136{bottom:212.999467pt;}
.y1d_c00136{bottom:240.599467pt;}
.y1c_c00136{bottom:268.199467pt;}
.y1b_c00136{bottom:295.799467pt;}
.y1a_c00136{bottom:323.399467pt;}
.y19_c00136{bottom:350.999467pt;}
.y24_c00136{bottom:378.599467pt;}
.y18_c00136{bottom:406.199467pt;}
.y17_c00136{bottom:433.799467pt;}
.y16_c00136{bottom:461.399467pt;}
.y15_c00136{bottom:488.999467pt;}
.y14_c00136{bottom:516.599467pt;}
.y13_c00136{bottom:544.199467pt;}
.y12_c00136{bottom:571.799467pt;}
.y11_c00136{bottom:599.399467pt;}
.y10_c00136{bottom:626.999467pt;}
.yf_c00136{bottom:654.599467pt;}
.ye_c00136{bottom:682.199467pt;}
.yd_c00136{bottom:709.719467pt;}
.y23_c00136{bottom:737.319467pt;}
.yc_c00136{bottom:764.919467pt;}
.yb_c00136{bottom:792.519467pt;}
.ya_c00136{bottom:820.119467pt;}
.y9_c00136{bottom:847.719467pt;}
.y8_c00136{bottom:875.319467pt;}
.y7_c00136{bottom:902.919467pt;}
.y6_c00136{bottom:930.519467pt;}
.y5_c00136{bottom:958.119467pt;}
.y4_c00136{bottom:985.719467pt;}
.y3_c00136{bottom:1013.319467pt;}
.y2_c00136{bottom:1061.399467pt;}
.h2_c00136{height:44.800000pt;}
.h3_c00136{height:48.294844pt;}
.h5_c00136{height:68.288000pt;}
.h4_c00136{height:69.376000pt;}
.h0_c00136{height:1122.520000pt;}
.h1_c00136{height:1122.666667pt;}
.w2_c00136{width:0.000000pt;}
.w3_c00136{width:0.058667pt;}
.w0_c00136{width:793.701333pt;}
.w1_c00136{width:794.000000pt;}
.x1_c00136{left:-745.700800pt;}
.x2_c00136{left:-680.260800pt;}
.x3_c00136{left:-651.860800pt;}
.x0_c00136{left:0.000000pt;}
.x6_c00136{left:113.440000pt;}
.x7_c00136{left:141.840000pt;}
.x5_c00136{left:616.400000pt;}
.x4_c00136{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00137;src:url('chunks/assets/font_99f9356d3d6b0ba25201b9ee.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00137;src:url('chunks/assets/font_ce4c2c5be7cae7e90122c0f7.woff2')format("woff");}.ff3_c00137{font-family:ff3_c00137;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00137;src:url('chunks/assets/font_106a809e30221551b8b8e0d4.woff2')format("woff");}.ff4_c00137{font-family:ff4_c00137;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00137;src:url('chunks/assets/font_96de34145f43fc8442db0048.woff2')format("woff");}.ff5_c00137{font-family:ff5_c00137;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00137{letter-spacing:-0.288000px;}
.ls5_c00137{letter-spacing:-0.131760px;}
.ls4_c00137{letter-spacing:0.000000px;}
.ls1_c00137{letter-spacing:0.072000px;}
.ls2_c00137{letter-spacing:0.144000px;}
.ls3_c00137{letter-spacing:21.384000px;}
.ls0_c00137{letter-spacing:31.320000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00137{word-spacing:-18.072000px;}
.ws4_c00137{word-spacing:-18.000000px;}
.wsa_c00137{word-spacing:-0.131760px;}
.ws1b_c00137{word-spacing:-0.072000px;}
.ws8_c00137{word-spacing:0.000000px;}
.ws9_c00137{word-spacing:0.131760px;}
.ws1f_c00137{word-spacing:0.288000px;}
.ws20_c00137{word-spacing:0.648000px;}
.ws1a_c00137{word-spacing:2.448000px;}
.ws19_c00137{word-spacing:2.520000px;}
.wsc_c00137{word-spacing:3.168000px;}
.ws7_c00137{word-spacing:3.456000px;}
.ws25_c00137{word-spacing:3.528000px;}
.wsf_c00137{word-spacing:3.600000px;}
.ws6_c00137{word-spacing:3.672000px;}
.wsd_c00137{word-spacing:3.816000px;}
.wse_c00137{word-spacing:3.960000px;}
.ws14_c00137{word-spacing:4.320000px;}
.ws11_c00137{word-spacing:4.968000px;}
.ws10_c00137{word-spacing:5.040000px;}
.ws24_c00137{word-spacing:5.328000px;}
.ws1e_c00137{word-spacing:5.400000px;}
.ws1d_c00137{word-spacing:6.696000px;}
.ws18_c00137{word-spacing:6.768000px;}
.ws1c_c00137{word-spacing:6.840000px;}
.ws1_c00137{word-spacing:8.280000px;}
.ws13_c00137{word-spacing:8.496000px;}
.ws12_c00137{word-spacing:8.640000px;}
.ws2_c00137{word-spacing:9.288000px;}
.ws16_c00137{word-spacing:9.360000px;}
.ws17_c00137{word-spacing:9.720000px;}
.ws3_c00137{word-spacing:9.936000px;}
.ws27_c00137{word-spacing:10.584000px;}
.ws28_c00137{word-spacing:10.728000px;}
.ws26_c00137{word-spacing:10.800000px;}
.wsb_c00137{word-spacing:13.320000px;}
.ws23_c00137{word-spacing:14.040000px;}
.ws22_c00137{word-spacing:14.400000px;}
.ws15_c00137{word-spacing:21.528000px;}
.ws21_c00137{word-spacing:22.608000px;}
.ws5_c00137{word-spacing:25.560000px;}
._1_c00137{margin-left:-1.080000px;}
._0_c00137{width:1.119960px;}
._2_c00137{width:21.960000px;}
._3_c00137{width:26.424000px;}
._4_c00137{width:55.440000px;}
._5_c00137{width:122.400000px;}
.fc1_c00137{color:rgb(0,0,0);}
.fc0_c00137{color:rgb(35,31,32);}
.fs1_c00137{font-size:65.880000px;}
.fs0_c00137{font-size:72.000000px;}
.y0_c00137{bottom:0.000000px;}
.y1_c00137{bottom:61.748550px;}
.y1f_c00137{bottom:177.524400px;}
.y1e_c00137{bottom:208.574400px;}
.y1d_c00137{bottom:239.624400px;}
.y1c_c00137{bottom:270.674400px;}
.y1b_c00137{bottom:301.724400px;}
.y1a_c00137{bottom:363.644400px;}
.y19_c00137{bottom:425.924400px;}
.y18_c00137{bottom:456.974400px;}
.y17_c00137{bottom:488.024400px;}
.y16_c00137{bottom:519.074400px;}
.y15_c00137{bottom:550.124400px;}
.y14_c00137{bottom:581.174400px;}
.y13_c00137{bottom:612.224400px;}
.y12_c00137{bottom:643.274400px;}
.y11_c00137{bottom:705.374400px;}
.y10_c00137{bottom:736.424400px;}
.yf_c00137{bottom:767.474400px;}
.ye_c00137{bottom:798.434400px;}
.yd_c00137{bottom:829.484400px;}
.yc_c00137{bottom:860.534400px;}
.yb_c00137{bottom:891.584400px;}
.ya_c00137{bottom:922.634400px;}
.y9_c00137{bottom:953.684400px;}
.y8_c00137{bottom:984.734400px;}
.y7_c00137{bottom:1015.784400px;}
.y6_c00137{bottom:1046.834400px;}
.y5_c00137{bottom:1077.884400px;}
.y4_c00137{bottom:1108.934400px;}
.y3_c00137{bottom:1139.984400px;}
.y2_c00137{bottom:1194.074400px;}
.h2_c00137{height:50.400000px;}
.h3_c00137{height:54.331699px;}
.h4_c00137{height:76.824000px;}
.h5_c00137{height:78.048000px;}
.h0_c00137{height:1262.835000px;}
.h1_c00137{height:1263.000000px;}
.w0_c00137{width:892.914000px;}
.w1_c00137{width:893.250000px;}
.x0_c00137{left:0.000000px;}
.x1_c00137{left:54.000000px;}
.x2_c00137{left:127.620000px;}
.x3_c00137{left:159.570000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls6_c00137{letter-spacing:-0.256000pt;}
.ls5_c00137{letter-spacing:-0.117120pt;}
.ls4_c00137{letter-spacing:0.000000pt;}
.ls1_c00137{letter-spacing:0.064000pt;}
.ls2_c00137{letter-spacing:0.128000pt;}
.ls3_c00137{letter-spacing:19.008000pt;}
.ls0_c00137{letter-spacing:27.840000pt;}
.ws0_c00137{word-spacing:-16.064000pt;}
.ws4_c00137{word-spacing:-16.000000pt;}
.wsa_c00137{word-spacing:-0.117120pt;}
.ws1b_c00137{word-spacing:-0.064000pt;}
.ws8_c00137{word-spacing:0.000000pt;}
.ws9_c00137{word-spacing:0.117120pt;}
.ws1f_c00137{word-spacing:0.256000pt;}
.ws20_c00137{word-spacing:0.576000pt;}
.ws1a_c00137{word-spacing:2.176000pt;}
.ws19_c00137{word-spacing:2.240000pt;}
.wsc_c00137{word-spacing:2.816000pt;}
.ws7_c00137{word-spacing:3.072000pt;}
.ws25_c00137{word-spacing:3.136000pt;}
.wsf_c00137{word-spacing:3.200000pt;}
.ws6_c00137{word-spacing:3.264000pt;}
.wsd_c00137{word-spacing:3.392000pt;}
.wse_c00137{word-spacing:3.520000pt;}
.ws14_c00137{word-spacing:3.840000pt;}
.ws11_c00137{word-spacing:4.416000pt;}
.ws10_c00137{word-spacing:4.480000pt;}
.ws24_c00137{word-spacing:4.736000pt;}
.ws1e_c00137{word-spacing:4.800000pt;}
.ws1d_c00137{word-spacing:5.952000pt;}
.ws18_c00137{word-spacing:6.016000pt;}
.ws1c_c00137{word-spacing:6.080000pt;}
.ws1_c00137{word-spacing:7.360000pt;}
.ws13_c00137{word-spacing:7.552000pt;}
.ws12_c00137{word-spacing:7.680000pt;}
.ws2_c00137{word-spacing:8.256000pt;}
.ws16_c00137{word-spacing:8.320000pt;}
.ws17_c00137{word-spacing:8.640000pt;}
.ws3_c00137{word-spacing:8.832000pt;}
.ws27_c00137{word-spacing:9.408000pt;}
.ws28_c00137{word-spacing:9.536000pt;}
.ws26_c00137{word-spacing:9.600000pt;}
.wsb_c00137{word-spacing:11.840000pt;}
.ws23_c00137{word-spacing:12.480000pt;}
.ws22_c00137{word-spacing:12.800000pt;}
.ws15_c00137{word-spacing:19.136000pt;}
.ws21_c00137{word-spacing:20.096000pt;}
.ws5_c00137{word-spacing:22.720000pt;}
._1_c00137{margin-left:-0.960000pt;}
._0_c00137{width:0.995520pt;}
._2_c00137{width:19.520000pt;}
._3_c00137{width:23.488000pt;}
._4_c00137{width:49.280000pt;}
._5_c00137{width:108.800000pt;}
.fs1_c00137{font-size:58.560000pt;}
.fs0_c00137{font-size:64.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y1_c00137{bottom:54.887600pt;}
.y1f_c00137{bottom:157.799467pt;}
.y1e_c00137{bottom:185.399467pt;}
.y1d_c00137{bottom:212.999467pt;}
.y1c_c00137{bottom:240.599467pt;}
.y1b_c00137{bottom:268.199467pt;}
.y1a_c00137{bottom:323.239467pt;}
.y19_c00137{bottom:378.599467pt;}
.y18_c00137{bottom:406.199467pt;}
.y17_c00137{bottom:433.799467pt;}
.y16_c00137{bottom:461.399467pt;}
.y15_c00137{bottom:488.999467pt;}
.y14_c00137{bottom:516.599467pt;}
.y13_c00137{bottom:544.199467pt;}
.y12_c00137{bottom:571.799467pt;}
.y11_c00137{bottom:626.999467pt;}
.y10_c00137{bottom:654.599467pt;}
.yf_c00137{bottom:682.199467pt;}
.ye_c00137{bottom:709.719467pt;}
.yd_c00137{bottom:737.319467pt;}
.yc_c00137{bottom:764.919467pt;}
.yb_c00137{bottom:792.519467pt;}
.ya_c00137{bottom:820.119467pt;}
.y9_c00137{bottom:847.719467pt;}
.y8_c00137{bottom:875.319467pt;}
.y7_c00137{bottom:902.919467pt;}
.y6_c00137{bottom:930.519467pt;}
.y5_c00137{bottom:958.119467pt;}
.y4_c00137{bottom:985.719467pt;}
.y3_c00137{bottom:1013.319467pt;}
.y2_c00137{bottom:1061.399467pt;}
.h2_c00137{height:44.800000pt;}
.h3_c00137{height:48.294844pt;}
.h4_c00137{height:68.288000pt;}
.h5_c00137{height:69.376000pt;}
.h0_c00137{height:1122.520000pt;}
.h1_c00137{height:1122.666667pt;}
.w0_c00137{width:793.701333pt;}
.w1_c00137{width:794.000000pt;}
.x0_c00137{left:0.000000pt;}
.x1_c00137{left:48.000000pt;}
.x2_c00137{left:113.440000pt;}
.x3_c00137{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00138;src:url('chunks/assets/font_a6cee01736e160f173e85d17.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00138;src:url('chunks/assets/font_d7dd5662b4b2ae79b344bf09.woff2')format("woff");}.ff3_c00138{font-family:ff3_c00138;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00138;src:url('chunks/assets/font_73d078ff13f62c5da03b0f1b.woff2')format("woff");}.ff4_c00138{font-family:ff4_c00138;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00138;src:url('chunks/assets/font_4491d0ae3117610df6e271fc.woff2')format("woff");}.ff5_c00138{font-family:ff5_c00138;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00138;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00138{font-family:ff6_c00138;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00138;src:url('chunks/assets/font_439738232fbd444ab3e09f2b.woff2')format("woff");}.ff7_c00138{font-family:ff7_c00138;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00138;src:url('chunks/assets/font_b1c6ce69d54be8d63b4280d5.woff2')format("woff");}.ff8_c00138{font-family:ff8_c00138;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00138;src:url('chunks/assets/font_584f95cd895f4f42c9ad6e09.woff2')format("woff");}.ff9_c00138{font-family:ff9_c00138;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00138;src:url('chunks/assets/font_dc424b9d20cb95db5db77f34.woff2')format("woff");}.ffa_c00138{font-family:ffa_c00138;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb_c00138{letter-spacing:-0.288000px;}
.lsa_c00138{letter-spacing:-0.131760px;}
.ls9_c00138{letter-spacing:0.000000px;}
.ls1_c00138{letter-spacing:0.072000px;}
.ls2_c00138{letter-spacing:0.144000px;}
.ls8_c00138{letter-spacing:19.440000px;}
.ls7_c00138{letter-spacing:20.160000px;}
.ls5_c00138{letter-spacing:21.240000px;}
.ls3_c00138{letter-spacing:21.384000px;}
.ls6_c00138{letter-spacing:27.360000px;}
.ls0_c00138{letter-spacing:31.320000px;}
.ls4_c00138{letter-spacing:44.640000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00138{word-spacing:-18.072000px;}
.ws4_c00138{word-spacing:-18.000000px;}
.ws32_c00138{word-spacing:-0.144000px;}
.ws10_c00138{word-spacing:-0.131760px;}
.ws8_c00138{word-spacing:-0.072000px;}
.wse_c00138{word-spacing:0.000000px;}
.ws9_c00138{word-spacing:0.072000px;}
.wsf_c00138{word-spacing:0.131760px;}
.wsb_c00138{word-spacing:0.288000px;}
.ws3b_c00138{word-spacing:0.360000px;}
.ws24_c00138{word-spacing:0.648000px;}
.ws43_c00138{word-spacing:1.800000px;}
.ws39_c00138{word-spacing:2.088000px;}
.ws30_c00138{word-spacing:2.160000px;}
.wsa_c00138{word-spacing:2.376000px;}
.ws20_c00138{word-spacing:2.448000px;}
.ws1f_c00138{word-spacing:2.520000px;}
.ws3d_c00138{word-spacing:2.808000px;}
.ws3c_c00138{word-spacing:2.880000px;}
.ws12_c00138{word-spacing:3.168000px;}
.ws7_c00138{word-spacing:3.456000px;}
.ws29_c00138{word-spacing:3.528000px;}
.ws15_c00138{word-spacing:3.600000px;}
.ws6_c00138{word-spacing:3.672000px;}
.ws13_c00138{word-spacing:3.816000px;}
.ws14_c00138{word-spacing:3.960000px;}
.ws1a_c00138{word-spacing:4.320000px;}
.ws17_c00138{word-spacing:4.968000px;}
.ws16_c00138{word-spacing:5.040000px;}
.ws28_c00138{word-spacing:5.328000px;}
.ws23_c00138{word-spacing:5.400000px;}
.ws22_c00138{word-spacing:6.696000px;}
.ws1e_c00138{word-spacing:6.768000px;}
.ws21_c00138{word-spacing:6.840000px;}
.ws31_c00138{word-spacing:7.560000px;}
.ws40_c00138{word-spacing:7.920000px;}
.ws3f_c00138{word-spacing:8.208000px;}
.ws1_c00138{word-spacing:8.280000px;}
.ws19_c00138{word-spacing:8.496000px;}
.ws18_c00138{word-spacing:8.640000px;}
.ws42_c00138{word-spacing:8.928000px;}
.ws33_c00138{word-spacing:9.000000px;}
.ws2_c00138{word-spacing:9.288000px;}
.ws1c_c00138{word-spacing:9.360000px;}
.ws1d_c00138{word-spacing:9.720000px;}
.ws3_c00138{word-spacing:9.936000px;}
.ws3e_c00138{word-spacing:10.008000px;}
.wsd_c00138{word-spacing:10.080000px;}
.wsc_c00138{word-spacing:10.152000px;}
.ws44_c00138{word-spacing:10.440000px;}
.ws2b_c00138{word-spacing:10.584000px;}
.ws2c_c00138{word-spacing:10.728000px;}
.ws2a_c00138{word-spacing:10.800000px;}
.ws36_c00138{word-spacing:11.448000px;}
.ws38_c00138{word-spacing:13.248000px;}
.ws11_c00138{word-spacing:13.320000px;}
.ws37_c00138{word-spacing:13.608000px;}
.ws27_c00138{word-spacing:14.040000px;}
.ws26_c00138{word-spacing:14.400000px;}
.ws34_c00138{word-spacing:16.488000px;}
.ws35_c00138{word-spacing:16.560000px;}
.ws1b_c00138{word-spacing:21.528000px;}
.ws25_c00138{word-spacing:22.608000px;}
.ws45_c00138{word-spacing:23.760000px;}
.ws41_c00138{word-spacing:24.120000px;}
.ws5_c00138{word-spacing:25.560000px;}
.ws2d_c00138{word-spacing:26.208000px;}
.ws2f_c00138{word-spacing:26.568000px;}
.ws2e_c00138{word-spacing:26.640000px;}
.ws3a_c00138{word-spacing:44.640000px;}
._1_c00138{margin-left:-1.080000px;}
._0_c00138{width:1.119960px;}
._6_c00138{width:9.288000px;}
._2_c00138{width:21.960000px;}
._3_c00138{width:26.424000px;}
._4_c00138{width:55.440000px;}
._5_c00138{width:122.400000px;}
.fc2_c00138{color:transparent;}
.fc1_c00138{color:rgb(0,0,0);}
.fc0_c00138{color:rgb(35,31,32);}
.fs1_c00138{font-size:65.880000px;}
.fs0_c00138{font-size:72.000000px;}
.y0_c00138{bottom:0.000000px;}
.y1_c00138{bottom:61.748550px;}
.y24_c00138{bottom:115.424400px;}
.y23_c00138{bottom:146.474400px;}
.y1f_c00138{bottom:177.524400px;}
.y1e_c00138{bottom:208.574400px;}
.y1d_c00138{bottom:239.624400px;}
.y1c_c00138{bottom:270.674400px;}
.y1b_c00138{bottom:301.724400px;}
.y22_c00138{bottom:332.774400px;}
.y1a_c00138{bottom:363.644400px;}
.y21_c00138{bottom:394.874400px;}
.y19_c00138{bottom:425.924400px;}
.y18_c00138{bottom:456.974400px;}
.y17_c00138{bottom:488.024400px;}
.y16_c00138{bottom:519.074400px;}
.y15_c00138{bottom:550.124400px;}
.y14_c00138{bottom:581.174400px;}
.y13_c00138{bottom:612.224400px;}
.y12_c00138{bottom:643.274400px;}
.y20_c00138{bottom:674.324400px;}
.y11_c00138{bottom:705.374400px;}
.y10_c00138{bottom:736.424400px;}
.yf_c00138{bottom:767.474400px;}
.ye_c00138{bottom:798.434400px;}
.yd_c00138{bottom:829.484400px;}
.yc_c00138{bottom:860.534400px;}
.yb_c00138{bottom:891.584400px;}
.ya_c00138{bottom:922.634400px;}
.y9_c00138{bottom:953.684400px;}
.y8_c00138{bottom:984.734400px;}
.y7_c00138{bottom:1015.784400px;}
.y6_c00138{bottom:1046.834400px;}
.y5_c00138{bottom:1077.884400px;}
.y4_c00138{bottom:1108.934400px;}
.y3_c00138{bottom:1139.984400px;}
.y2_c00138{bottom:1194.074400px;}
.h2_c00138{height:50.400000px;}
.h3_c00138{height:54.331699px;}
.h4_c00138{height:76.824000px;}
.h5_c00138{height:78.048000px;}
.h0_c00138{height:1262.835000px;}
.h1_c00138{height:1263.000000px;}
.w2_c00138{width:0.000000px;}
.w3_c00138{width:0.066000px;}
.w0_c00138{width:892.914000px;}
.w1_c00138{width:893.250000px;}
.x1_c00138{left:-838.913400px;}
.x2_c00138{left:-765.293400px;}
.x3_c00138{left:-733.343400px;}
.x0_c00138{left:0.000000px;}
.x7_c00138{left:127.620000px;}
.x6_c00138{left:159.570000px;}
.x5_c00138{left:693.450000px;}
.x4_c00138{left:804.366150px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.lsb_c00138{letter-spacing:-0.256000pt;}
.lsa_c00138{letter-spacing:-0.117120pt;}
.ls9_c00138{letter-spacing:0.000000pt;}
.ls1_c00138{letter-spacing:0.064000pt;}
.ls2_c00138{letter-spacing:0.128000pt;}
.ls8_c00138{letter-spacing:17.280000pt;}
.ls7_c00138{letter-spacing:17.920000pt;}
.ls5_c00138{letter-spacing:18.880000pt;}
.ls3_c00138{letter-spacing:19.008000pt;}
.ls6_c00138{letter-spacing:24.320000pt;}
.ls0_c00138{letter-spacing:27.840000pt;}
.ls4_c00138{letter-spacing:39.680000pt;}
.ws0_c00138{word-spacing:-16.064000pt;}
.ws4_c00138{word-spacing:-16.000000pt;}
.ws32_c00138{word-spacing:-0.128000pt;}
.ws10_c00138{word-spacing:-0.117120pt;}
.ws8_c00138{word-spacing:-0.064000pt;}
.wse_c00138{word-spacing:0.000000pt;}
.ws9_c00138{word-spacing:0.064000pt;}
.wsf_c00138{word-spacing:0.117120pt;}
.wsb_c00138{word-spacing:0.256000pt;}
.ws3b_c00138{word-spacing:0.320000pt;}
.ws24_c00138{word-spacing:0.576000pt;}
.ws43_c00138{word-spacing:1.600000pt;}
.ws39_c00138{word-spacing:1.856000pt;}
.ws30_c00138{word-spacing:1.920000pt;}
.wsa_c00138{word-spacing:2.112000pt;}
.ws20_c00138{word-spacing:2.176000pt;}
.ws1f_c00138{word-spacing:2.240000pt;}
.ws3d_c00138{word-spacing:2.496000pt;}
.ws3c_c00138{word-spacing:2.560000pt;}
.ws12_c00138{word-spacing:2.816000pt;}
.ws7_c00138{word-spacing:3.072000pt;}
.ws29_c00138{word-spacing:3.136000pt;}
.ws15_c00138{word-spacing:3.200000pt;}
.ws6_c00138{word-spacing:3.264000pt;}
.ws13_c00138{word-spacing:3.392000pt;}
.ws14_c00138{word-spacing:3.520000pt;}
.ws1a_c00138{word-spacing:3.840000pt;}
.ws17_c00138{word-spacing:4.416000pt;}
.ws16_c00138{word-spacing:4.480000pt;}
.ws28_c00138{word-spacing:4.736000pt;}
.ws23_c00138{word-spacing:4.800000pt;}
.ws22_c00138{word-spacing:5.952000pt;}
.ws1e_c00138{word-spacing:6.016000pt;}
.ws21_c00138{word-spacing:6.080000pt;}
.ws31_c00138{word-spacing:6.720000pt;}
.ws40_c00138{word-spacing:7.040000pt;}
.ws3f_c00138{word-spacing:7.296000pt;}
.ws1_c00138{word-spacing:7.360000pt;}
.ws19_c00138{word-spacing:7.552000pt;}
.ws18_c00138{word-spacing:7.680000pt;}
.ws42_c00138{word-spacing:7.936000pt;}
.ws33_c00138{word-spacing:8.000000pt;}
.ws2_c00138{word-spacing:8.256000pt;}
.ws1c_c00138{word-spacing:8.320000pt;}
.ws1d_c00138{word-spacing:8.640000pt;}
.ws3_c00138{word-spacing:8.832000pt;}
.ws3e_c00138{word-spacing:8.896000pt;}
.wsd_c00138{word-spacing:8.960000pt;}
.wsc_c00138{word-spacing:9.024000pt;}
.ws44_c00138{word-spacing:9.280000pt;}
.ws2b_c00138{word-spacing:9.408000pt;}
.ws2c_c00138{word-spacing:9.536000pt;}
.ws2a_c00138{word-spacing:9.600000pt;}
.ws36_c00138{word-spacing:10.176000pt;}
.ws38_c00138{word-spacing:11.776000pt;}
.ws11_c00138{word-spacing:11.840000pt;}
.ws37_c00138{word-spacing:12.096000pt;}
.ws27_c00138{word-spacing:12.480000pt;}
.ws26_c00138{word-spacing:12.800000pt;}
.ws34_c00138{word-spacing:14.656000pt;}
.ws35_c00138{word-spacing:14.720000pt;}
.ws1b_c00138{word-spacing:19.136000pt;}
.ws25_c00138{word-spacing:20.096000pt;}
.ws45_c00138{word-spacing:21.120000pt;}
.ws41_c00138{word-spacing:21.440000pt;}
.ws5_c00138{word-spacing:22.720000pt;}
.ws2d_c00138{word-spacing:23.296000pt;}
.ws2f_c00138{word-spacing:23.616000pt;}
.ws2e_c00138{word-spacing:23.680000pt;}
.ws3a_c00138{word-spacing:39.680000pt;}
._1_c00138{margin-left:-0.960000pt;}
._0_c00138{width:0.995520pt;}
._6_c00138{width:8.256000pt;}
._2_c00138{width:19.520000pt;}
._3_c00138{width:23.488000pt;}
._4_c00138{width:49.280000pt;}
._5_c00138{width:108.800000pt;}
.fs1_c00138{font-size:58.560000pt;}
.fs0_c00138{font-size:64.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.y1_c00138{bottom:54.887600pt;}
.y24_c00138{bottom:102.599467pt;}
.y23_c00138{bottom:130.199467pt;}
.y1f_c00138{bottom:157.799467pt;}
.y1e_c00138{bottom:185.399467pt;}
.y1d_c00138{bottom:212.999467pt;}
.y1c_c00138{bottom:240.599467pt;}
.y1b_c00138{bottom:268.199467pt;}
.y22_c00138{bottom:295.799467pt;}
.y1a_c00138{bottom:323.239467pt;}
.y21_c00138{bottom:350.999467pt;}
.y19_c00138{bottom:378.599467pt;}
.y18_c00138{bottom:406.199467pt;}
.y17_c00138{bottom:433.799467pt;}
.y16_c00138{bottom:461.399467pt;}
.y15_c00138{bottom:488.999467pt;}
.y14_c00138{bottom:516.599467pt;}
.y13_c00138{bottom:544.199467pt;}
.y12_c00138{bottom:571.799467pt;}
.y20_c00138{bottom:599.399467pt;}
.y11_c00138{bottom:626.999467pt;}
.y10_c00138{bottom:654.599467pt;}
.yf_c00138{bottom:682.199467pt;}
.ye_c00138{bottom:709.719467pt;}
.yd_c00138{bottom:737.319467pt;}
.yc_c00138{bottom:764.919467pt;}
.yb_c00138{bottom:792.519467pt;}
.ya_c00138{bottom:820.119467pt;}
.y9_c00138{bottom:847.719467pt;}
.y8_c00138{bottom:875.319467pt;}
.y7_c00138{bottom:902.919467pt;}
.y6_c00138{bottom:930.519467pt;}
.y5_c00138{bottom:958.119467pt;}
.y4_c00138{bottom:985.719467pt;}
.y3_c00138{bottom:1013.319467pt;}
.y2_c00138{bottom:1061.399467pt;}
.h2_c00138{height:44.800000pt;}
.h3_c00138{height:48.294844pt;}
.h4_c00138{height:68.288000pt;}
.h5_c00138{height:69.376000pt;}
.h0_c00138{height:1122.520000pt;}
.h1_c00138{height:1122.666667pt;}
.w2_c00138{width:0.000000pt;}
.w3_c00138{width:0.058667pt;}
.w0_c00138{width:793.701333pt;}
.w1_c00138{width:794.000000pt;}
.x1_c00138{left:-745.700800pt;}
.x2_c00138{left:-680.260800pt;}
.x3_c00138{left:-651.860800pt;}
.x0_c00138{left:0.000000pt;}
.x7_c00138{left:113.440000pt;}
.x6_c00138{left:141.840000pt;}
.x5_c00138{left:616.400000pt;}
.x4_c00138{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00139;src:url('chunks/assets/font_3c8791e589e9531745eb8cae.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00139;src:url('chunks/assets/font_66807b807215e6b20574e642.woff2')format("woff");}.ff3_c00139{font-family:ff3_c00139;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00139;src:url('chunks/assets/font_184ebaf3a2abf9358575ef2d.woff2')format("woff");}.ff4_c00139{font-family:ff4_c00139;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls8_c00139{letter-spacing:-0.461160px;}
.lsa_c00139{letter-spacing:-0.288000px;}
.ls6_c00139{letter-spacing:-0.131760px;}
.ls9_c00139{letter-spacing:-0.072000px;}
.ls7_c00139{letter-spacing:-0.065880px;}
.ls5_c00139{letter-spacing:0.000000px;}
.ls1_c00139{letter-spacing:0.065880px;}
.ls0_c00139{letter-spacing:0.072000px;}
.ls4_c00139{letter-spacing:0.144000px;}
.ls2_c00139{letter-spacing:0.197640px;}
.ls3_c00139{letter-spacing:25.200000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00139{word-spacing:-18.000000px;}
.ws23_c00139{word-spacing:-0.144000px;}
.ws6_c00139{word-spacing:-0.131760px;}
.wse_c00139{word-spacing:-0.072000px;}
.ws4_c00139{word-spacing:0.000000px;}
.ws5_c00139{word-spacing:0.131760px;}
.ws21_c00139{word-spacing:0.216000px;}
.ws20_c00139{word-spacing:0.288000px;}
.ws26_c00139{word-spacing:0.360000px;}
.ws1a_c00139{word-spacing:0.461160px;}
.ws22_c00139{word-spacing:1.368000px;}
.ws15_c00139{word-spacing:3.240000px;}
.ws1f_c00139{word-spacing:4.248000px;}
.ws1e_c00139{word-spacing:4.320000px;}
.ws2_c00139{word-spacing:4.608000px;}
.wsd_c00139{word-spacing:4.968000px;}
.ws27_c00139{word-spacing:5.328000px;}
.wsa_c00139{word-spacing:5.688000px;}
.ws9_c00139{word-spacing:5.760000px;}
.ws0_c00139{word-spacing:5.832000px;}
.ws3_c00139{word-spacing:5.904000px;}
.ws25_c00139{word-spacing:5.976000px;}
.ws1b_c00139{word-spacing:5.995080px;}
.ws24_c00139{word-spacing:6.120000px;}
.ws1c_c00139{word-spacing:6.258600px;}
.ws13_c00139{word-spacing:7.416000px;}
.ws19_c00139{word-spacing:7.444440px;}
.ws11_c00139{word-spacing:7.488000px;}
.ws12_c00139{word-spacing:7.560000px;}
.ws7_c00139{word-spacing:7.920000px;}
.ws1d_c00139{word-spacing:8.169120px;}
.ws28_c00139{word-spacing:11.448000px;}
.ws14_c00139{word-spacing:12.168000px;}
.ws10_c00139{word-spacing:12.960000px;}
.ws18_c00139{word-spacing:13.439520px;}
.ws8_c00139{word-spacing:16.128000px;}
.wsc_c00139{word-spacing:18.288000px;}
.wsb_c00139{word-spacing:18.360000px;}
.ws17_c00139{word-spacing:24.375600px;}
.ws16_c00139{word-spacing:24.639120px;}
.wsf_c00139{word-spacing:25.128000px;}
._1_c00139{margin-left:-1.101600px;}
._0_c00139{width:1.119960px;}
._4_c00139{width:5.752800px;}
._3_c00139{width:22.600080px;}
._2_c00139{width:24.912000px;}
.fc1_c00139{color:rgb(0,0,0);}
.fc0_c00139{color:rgb(35,31,32);}
.fs1_c00139{font-size:65.880000px;}
.fs0_c00139{font-size:72.000000px;}
.y0_c00139{bottom:0.000000px;}
.y1_c00139{bottom:61.748550px;}
.y1f_c00139{bottom:162.044400px;}
.y1e_c00139{bottom:193.094400px;}
.y1d_c00139{bottom:224.144400px;}
.y1c_c00139{bottom:255.104400px;}
.y1b_c00139{bottom:286.154400px;}
.y1a_c00139{bottom:348.254400px;}
.y19_c00139{bottom:379.304400px;}
.y18_c00139{bottom:410.354400px;}
.y17_c00139{bottom:441.404400px;}
.y16_c00139{bottom:472.454400px;}
.y15_c00139{bottom:503.504400px;}
.y14_c00139{bottom:564.243450px;}
.y13_c00139{bottom:592.687140px;}
.y12_c00139{bottom:621.130830px;}
.y11_c00139{bottom:649.574520px;}
.y10_c00139{bottom:678.018210px;}
.yf_c00139{bottom:706.544250px;}
.ye_c00139{bottom:767.474400px;}
.yd_c00139{bottom:798.434400px;}
.yc_c00139{bottom:829.484400px;}
.yb_c00139{bottom:860.534400px;}
.ya_c00139{bottom:891.584400px;}
.y9_c00139{bottom:953.684400px;}
.y8_c00139{bottom:984.734400px;}
.y7_c00139{bottom:1015.784400px;}
.y6_c00139{bottom:1046.834400px;}
.y5_c00139{bottom:1077.884400px;}
.y4_c00139{bottom:1108.934400px;}
.y3_c00139{bottom:1139.984400px;}
.y2_c00139{bottom:1194.074400px;}
.h2_c00139{height:50.400000px;}
.h3_c00139{height:54.331699px;}
.h5_c00139{height:71.413920px;}
.h4_c00139{height:76.824000px;}
.h0_c00139{height:1262.835000px;}
.h1_c00139{height:1263.000000px;}
.w0_c00139{width:892.914000px;}
.w1_c00139{width:893.250000px;}
.x0_c00139{left:0.000000px;}
.x1_c00139{left:54.000000px;}
.x2_c00139{left:127.620000px;}
.x3_c00139{left:159.570000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls8_c00139{letter-spacing:-0.409920pt;}
.lsa_c00139{letter-spacing:-0.256000pt;}
.ls6_c00139{letter-spacing:-0.117120pt;}
.ls9_c00139{letter-spacing:-0.064000pt;}
.ls7_c00139{letter-spacing:-0.058560pt;}
.ls5_c00139{letter-spacing:0.000000pt;}
.ls1_c00139{letter-spacing:0.058560pt;}
.ls0_c00139{letter-spacing:0.064000pt;}
.ls4_c00139{letter-spacing:0.128000pt;}
.ls2_c00139{letter-spacing:0.175680pt;}
.ls3_c00139{letter-spacing:22.400000pt;}
.ws1_c00139{word-spacing:-16.000000pt;}
.ws23_c00139{word-spacing:-0.128000pt;}
.ws6_c00139{word-spacing:-0.117120pt;}
.wse_c00139{word-spacing:-0.064000pt;}
.ws4_c00139{word-spacing:0.000000pt;}
.ws5_c00139{word-spacing:0.117120pt;}
.ws21_c00139{word-spacing:0.192000pt;}
.ws20_c00139{word-spacing:0.256000pt;}
.ws26_c00139{word-spacing:0.320000pt;}
.ws1a_c00139{word-spacing:0.409920pt;}
.ws22_c00139{word-spacing:1.216000pt;}
.ws15_c00139{word-spacing:2.880000pt;}
.ws1f_c00139{word-spacing:3.776000pt;}
.ws1e_c00139{word-spacing:3.840000pt;}
.ws2_c00139{word-spacing:4.096000pt;}
.wsd_c00139{word-spacing:4.416000pt;}
.ws27_c00139{word-spacing:4.736000pt;}
.wsa_c00139{word-spacing:5.056000pt;}
.ws9_c00139{word-spacing:5.120000pt;}
.ws0_c00139{word-spacing:5.184000pt;}
.ws3_c00139{word-spacing:5.248000pt;}
.ws25_c00139{word-spacing:5.312000pt;}
.ws1b_c00139{word-spacing:5.328960pt;}
.ws24_c00139{word-spacing:5.440000pt;}
.ws1c_c00139{word-spacing:5.563200pt;}
.ws13_c00139{word-spacing:6.592000pt;}
.ws19_c00139{word-spacing:6.617280pt;}
.ws11_c00139{word-spacing:6.656000pt;}
.ws12_c00139{word-spacing:6.720000pt;}
.ws7_c00139{word-spacing:7.040000pt;}
.ws1d_c00139{word-spacing:7.261440pt;}
.ws28_c00139{word-spacing:10.176000pt;}
.ws14_c00139{word-spacing:10.816000pt;}
.ws10_c00139{word-spacing:11.520000pt;}
.ws18_c00139{word-spacing:11.946240pt;}
.ws8_c00139{word-spacing:14.336000pt;}
.wsc_c00139{word-spacing:16.256000pt;}
.wsb_c00139{word-spacing:16.320000pt;}
.ws17_c00139{word-spacing:21.667200pt;}
.ws16_c00139{word-spacing:21.901440pt;}
.wsf_c00139{word-spacing:22.336000pt;}
._1_c00139{margin-left:-0.979200pt;}
._0_c00139{width:0.995520pt;}
._4_c00139{width:5.113600pt;}
._3_c00139{width:20.088960pt;}
._2_c00139{width:22.144000pt;}
.fs1_c00139{font-size:58.560000pt;}
.fs0_c00139{font-size:64.000000pt;}
.y0_c00139{bottom:0.000000pt;}
.y1_c00139{bottom:54.887600pt;}
.y1f_c00139{bottom:144.039467pt;}
.y1e_c00139{bottom:171.639467pt;}
.y1d_c00139{bottom:199.239467pt;}
.y1c_c00139{bottom:226.759467pt;}
.y1b_c00139{bottom:254.359467pt;}
.y1a_c00139{bottom:309.559467pt;}
.y19_c00139{bottom:337.159467pt;}
.y18_c00139{bottom:364.759467pt;}
.y17_c00139{bottom:392.359467pt;}
.y16_c00139{bottom:419.959467pt;}
.y15_c00139{bottom:447.559467pt;}
.y14_c00139{bottom:501.549733pt;}
.y13_c00139{bottom:526.833013pt;}
.y12_c00139{bottom:552.116293pt;}
.y11_c00139{bottom:577.399573pt;}
.y10_c00139{bottom:602.682853pt;}
.yf_c00139{bottom:628.039333pt;}
.ye_c00139{bottom:682.199467pt;}
.yd_c00139{bottom:709.719467pt;}
.yc_c00139{bottom:737.319467pt;}
.yb_c00139{bottom:764.919467pt;}
.ya_c00139{bottom:792.519467pt;}
.y9_c00139{bottom:847.719467pt;}
.y8_c00139{bottom:875.319467pt;}
.y7_c00139{bottom:902.919467pt;}
.y6_c00139{bottom:930.519467pt;}
.y5_c00139{bottom:958.119467pt;}
.y4_c00139{bottom:985.719467pt;}
.y3_c00139{bottom:1013.319467pt;}
.y2_c00139{bottom:1061.399467pt;}
.h2_c00139{height:44.800000pt;}
.h3_c00139{height:48.294844pt;}
.h5_c00139{height:63.479040pt;}
.h4_c00139{height:68.288000pt;}
.h0_c00139{height:1122.520000pt;}
.h1_c00139{height:1122.666667pt;}
.w0_c00139{width:793.701333pt;}
.w1_c00139{width:794.000000pt;}
.x0_c00139{left:0.000000pt;}
.x1_c00139{left:48.000000pt;}
.x2_c00139{left:113.440000pt;}
.x3_c00139{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00140;src:url('chunks/assets/font_3340f2d61098153636eaf480.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00140;src:url('chunks/assets/font_c0f236fb5c6e32b36679e81f.woff2')format("woff");}.ff3_c00140{font-family:ff3_c00140;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00140;src:url('chunks/assets/font_2519d4357ea26f202b242fee.woff2')format("woff");}.ff4_c00140{font-family:ff4_c00140;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00140;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00140{font-family:ff5_c00140;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00140;src:url('chunks/assets/font_8a5dedfa92af4ceb9a9b1c35.woff2')format("woff");}.ff6_c00140{font-family:ff6_c00140;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00140;src:url('chunks/assets/font_f54c6be5f7f17b978edc016e.woff2')format("woff");}.ff7_c00140{font-family:ff7_c00140;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00140;src:url('chunks/assets/font_1b050ae8a36a117fd16b4390.woff2')format("woff");}.ff8_c00140{font-family:ff8_c00140;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c00140{letter-spacing:-0.461160px;}
.lsd_c00140{letter-spacing:-0.360000px;}
.lsc_c00140{letter-spacing:-0.288000px;}
.lse_c00140{letter-spacing:-0.216000px;}
.ls8_c00140{letter-spacing:-0.131760px;}
.lsb_c00140{letter-spacing:-0.072000px;}
.ls9_c00140{letter-spacing:-0.065880px;}
.ls7_c00140{letter-spacing:0.000000px;}
.ls1_c00140{letter-spacing:0.065880px;}
.ls0_c00140{letter-spacing:0.072000px;}
.ls4_c00140{letter-spacing:0.144000px;}
.ls2_c00140{letter-spacing:0.197640px;}
.ls5_c00140{letter-spacing:22.320000px;}
.ls3_c00140{letter-spacing:25.200000px;}
.ls6_c00140{letter-spacing:30.600000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00140{word-spacing:-18.072000px;}
.ws1_c00140{word-spacing:-18.000000px;}
.ws9_c00140{word-spacing:-17.784000px;}
.ws3f_c00140{word-spacing:-0.360000px;}
.ws2a_c00140{word-spacing:-0.144000px;}
.wsd_c00140{word-spacing:-0.131760px;}
.ws15_c00140{word-spacing:-0.072000px;}
.wsb_c00140{word-spacing:0.000000px;}
.ws6_c00140{word-spacing:0.072000px;}
.wsc_c00140{word-spacing:0.131760px;}
.ws28_c00140{word-spacing:0.216000px;}
.ws27_c00140{word-spacing:0.288000px;}
.ws2d_c00140{word-spacing:0.360000px;}
.ws21_c00140{word-spacing:0.461160px;}
.ws5_c00140{word-spacing:0.648000px;}
.ws29_c00140{word-spacing:1.368000px;}
.ws37_c00140{word-spacing:2.808000px;}
.ws1c_c00140{word-spacing:3.240000px;}
.ws36_c00140{word-spacing:3.888000px;}
.ws26_c00140{word-spacing:4.248000px;}
.ws25_c00140{word-spacing:4.320000px;}
.ws2_c00140{word-spacing:4.608000px;}
.ws44_c00140{word-spacing:4.680000px;}
.ws14_c00140{word-spacing:4.968000px;}
.ws2e_c00140{word-spacing:5.328000px;}
.ws11_c00140{word-spacing:5.688000px;}
.ws10_c00140{word-spacing:5.760000px;}
.ws0_c00140{word-spacing:5.832000px;}
.ws3_c00140{word-spacing:5.904000px;}
.ws2c_c00140{word-spacing:5.976000px;}
.ws22_c00140{word-spacing:5.995080px;}
.ws2b_c00140{word-spacing:6.120000px;}
.ws23_c00140{word-spacing:6.258600px;}
.ws48_c00140{word-spacing:6.768000px;}
.ws1a_c00140{word-spacing:7.416000px;}
.ws20_c00140{word-spacing:7.444440px;}
.ws18_c00140{word-spacing:7.488000px;}
.ws19_c00140{word-spacing:7.560000px;}
.ws3e_c00140{word-spacing:7.848000px;}
.wse_c00140{word-spacing:7.920000px;}
.ws24_c00140{word-spacing:8.169120px;}
.ws3a_c00140{word-spacing:8.208000px;}
.ws39_c00140{word-spacing:8.280000px;}
.ws3b_c00140{word-spacing:8.640000px;}
.ws41_c00140{word-spacing:8.928000px;}
.ws40_c00140{word-spacing:9.000000px;}
.wsa_c00140{word-spacing:9.072000px;}
.ws2f_c00140{word-spacing:11.448000px;}
.ws1b_c00140{word-spacing:12.168000px;}
.ws17_c00140{word-spacing:12.960000px;}
.ws1f_c00140{word-spacing:13.439520px;}
.ws31_c00140{word-spacing:15.048000px;}
.wsf_c00140{word-spacing:16.128000px;}
.ws42_c00140{word-spacing:16.848000px;}
.ws47_c00140{word-spacing:17.640000px;}
.ws35_c00140{word-spacing:18.000000px;}
.ws13_c00140{word-spacing:18.288000px;}
.ws12_c00140{word-spacing:18.360000px;}
.ws45_c00140{word-spacing:21.528000px;}
.ws46_c00140{word-spacing:21.600000px;}
.ws7_c00140{word-spacing:21.672000px;}
.ws30_c00140{word-spacing:23.760000px;}
.ws4_c00140{word-spacing:23.976000px;}
.ws1e_c00140{word-spacing:24.375600px;}
.ws34_c00140{word-spacing:24.408000px;}
.ws1d_c00140{word-spacing:24.639120px;}
.ws32_c00140{word-spacing:24.696000px;}
.ws33_c00140{word-spacing:24.768000px;}
.ws3c_c00140{word-spacing:24.840000px;}
.ws16_c00140{word-spacing:25.128000px;}
.ws3d_c00140{word-spacing:32.760000px;}
.ws43_c00140{word-spacing:35.280000px;}
.ws38_c00140{word-spacing:39.240000px;}
._1_c00140{margin-left:-1.101600px;}
._0_c00140{width:1.119960px;}
._5_c00140{width:3.672000px;}
._4_c00140{width:5.752800px;}
._6_c00140{width:7.848000px;}
._3_c00140{width:22.600080px;}
._2_c00140{width:24.912000px;}
.fc2_c00140{color:transparent;}
.fc1_c00140{color:rgb(0,0,0);}
.fc0_c00140{color:rgb(35,31,32);}
.fs1_c00140{font-size:65.880000px;}
.fs0_c00140{font-size:72.000000px;}
.y0_c00140{bottom:0.000000px;}
.y1_c00140{bottom:61.748550px;}
.y32_c00140{bottom:146.474400px;}
.y1f_c00140{bottom:162.044400px;}
.y31_c00140{bottom:177.524400px;}
.y1e_c00140{bottom:193.094400px;}
.y30_c00140{bottom:208.574400px;}
.y1d_c00140{bottom:224.144400px;}
.y1c_c00140{bottom:255.104400px;}
.y2f_c00140{bottom:270.674400px;}
.y1b_c00140{bottom:286.154400px;}
.y2e_c00140{bottom:301.724400px;}
.y2d_c00140{bottom:332.774400px;}
.y1a_c00140{bottom:348.254400px;}
.y2c_c00140{bottom:363.824400px;}
.y19_c00140{bottom:379.304400px;}
.y2b_c00140{bottom:394.874400px;}
.y18_c00140{bottom:410.354400px;}
.y2a_c00140{bottom:425.924400px;}
.y17_c00140{bottom:441.404400px;}
.y29_c00140{bottom:456.974400px;}
.y16_c00140{bottom:472.454400px;}
.y28_c00140{bottom:488.024400px;}
.y15_c00140{bottom:503.504400px;}
.y27_c00140{bottom:550.124400px;}
.y14_c00140{bottom:564.243450px;}
.y26_c00140{bottom:581.174400px;}
.y13_c00140{bottom:592.687140px;}
.y25_c00140{bottom:612.224400px;}
.y12_c00140{bottom:621.130830px;}
.y24_c00140{bottom:643.274400px;}
.y11_c00140{bottom:649.574520px;}
.y23_c00140{bottom:674.324400px;}
.y10_c00140{bottom:678.018210px;}
.y22_c00140{bottom:705.374400px;}
.yf_c00140{bottom:706.544250px;}
.y21_c00140{bottom:736.424400px;}
.ye_c00140{bottom:767.474400px;}
.yd_c00140{bottom:798.434400px;}
.yc_c00140{bottom:829.484400px;}
.yb_c00140{bottom:860.534400px;}
.ya_c00140{bottom:891.584400px;}
.y20_c00140{bottom:922.634400px;}
.y9_c00140{bottom:953.684400px;}
.y8_c00140{bottom:984.734400px;}
.y7_c00140{bottom:1015.784400px;}
.y6_c00140{bottom:1046.834400px;}
.y5_c00140{bottom:1077.884400px;}
.y4_c00140{bottom:1108.934400px;}
.y3_c00140{bottom:1139.984400px;}
.y2_c00140{bottom:1194.074400px;}
.h2_c00140{height:50.400000px;}
.h3_c00140{height:54.331699px;}
.h5_c00140{height:71.413920px;}
.h4_c00140{height:76.824000px;}
.h6_c00140{height:78.048000px;}
.h0_c00140{height:1262.835000px;}
.h1_c00140{height:1263.000000px;}
.w2_c00140{width:0.000000px;}
.w3_c00140{width:0.066000px;}
.w0_c00140{width:892.914000px;}
.w1_c00140{width:893.250000px;}
.x1_c00140{left:-838.913400px;}
.x2_c00140{left:-765.293400px;}
.x3_c00140{left:-733.343400px;}
.x0_c00140{left:0.000000px;}
.x6_c00140{left:127.620000px;}
.x7_c00140{left:159.570000px;}
.x5_c00140{left:693.450000px;}
.x4_c00140{left:804.366150px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.lsa_c00140{letter-spacing:-0.409920pt;}
.lsd_c00140{letter-spacing:-0.320000pt;}
.lsc_c00140{letter-spacing:-0.256000pt;}
.lse_c00140{letter-spacing:-0.192000pt;}
.ls8_c00140{letter-spacing:-0.117120pt;}
.lsb_c00140{letter-spacing:-0.064000pt;}
.ls9_c00140{letter-spacing:-0.058560pt;}
.ls7_c00140{letter-spacing:0.000000pt;}
.ls1_c00140{letter-spacing:0.058560pt;}
.ls0_c00140{letter-spacing:0.064000pt;}
.ls4_c00140{letter-spacing:0.128000pt;}
.ls2_c00140{letter-spacing:0.175680pt;}
.ls5_c00140{letter-spacing:19.840000pt;}
.ls3_c00140{letter-spacing:22.400000pt;}
.ls6_c00140{letter-spacing:27.200000pt;}
.ws8_c00140{word-spacing:-16.064000pt;}
.ws1_c00140{word-spacing:-16.000000pt;}
.ws9_c00140{word-spacing:-15.808000pt;}
.ws3f_c00140{word-spacing:-0.320000pt;}
.ws2a_c00140{word-spacing:-0.128000pt;}
.wsd_c00140{word-spacing:-0.117120pt;}
.ws15_c00140{word-spacing:-0.064000pt;}
.wsb_c00140{word-spacing:0.000000pt;}
.ws6_c00140{word-spacing:0.064000pt;}
.wsc_c00140{word-spacing:0.117120pt;}
.ws28_c00140{word-spacing:0.192000pt;}
.ws27_c00140{word-spacing:0.256000pt;}
.ws2d_c00140{word-spacing:0.320000pt;}
.ws21_c00140{word-spacing:0.409920pt;}
.ws5_c00140{word-spacing:0.576000pt;}
.ws29_c00140{word-spacing:1.216000pt;}
.ws37_c00140{word-spacing:2.496000pt;}
.ws1c_c00140{word-spacing:2.880000pt;}
.ws36_c00140{word-spacing:3.456000pt;}
.ws26_c00140{word-spacing:3.776000pt;}
.ws25_c00140{word-spacing:3.840000pt;}
.ws2_c00140{word-spacing:4.096000pt;}
.ws44_c00140{word-spacing:4.160000pt;}
.ws14_c00140{word-spacing:4.416000pt;}
.ws2e_c00140{word-spacing:4.736000pt;}
.ws11_c00140{word-spacing:5.056000pt;}
.ws10_c00140{word-spacing:5.120000pt;}
.ws0_c00140{word-spacing:5.184000pt;}
.ws3_c00140{word-spacing:5.248000pt;}
.ws2c_c00140{word-spacing:5.312000pt;}
.ws22_c00140{word-spacing:5.328960pt;}
.ws2b_c00140{word-spacing:5.440000pt;}
.ws23_c00140{word-spacing:5.563200pt;}
.ws48_c00140{word-spacing:6.016000pt;}
.ws1a_c00140{word-spacing:6.592000pt;}
.ws20_c00140{word-spacing:6.617280pt;}
.ws18_c00140{word-spacing:6.656000pt;}
.ws19_c00140{word-spacing:6.720000pt;}
.ws3e_c00140{word-spacing:6.976000pt;}
.wse_c00140{word-spacing:7.040000pt;}
.ws24_c00140{word-spacing:7.261440pt;}
.ws3a_c00140{word-spacing:7.296000pt;}
.ws39_c00140{word-spacing:7.360000pt;}
.ws3b_c00140{word-spacing:7.680000pt;}
.ws41_c00140{word-spacing:7.936000pt;}
.ws40_c00140{word-spacing:8.000000pt;}
.wsa_c00140{word-spacing:8.064000pt;}
.ws2f_c00140{word-spacing:10.176000pt;}
.ws1b_c00140{word-spacing:10.816000pt;}
.ws17_c00140{word-spacing:11.520000pt;}
.ws1f_c00140{word-spacing:11.946240pt;}
.ws31_c00140{word-spacing:13.376000pt;}
.wsf_c00140{word-spacing:14.336000pt;}
.ws42_c00140{word-spacing:14.976000pt;}
.ws47_c00140{word-spacing:15.680000pt;}
.ws35_c00140{word-spacing:16.000000pt;}
.ws13_c00140{word-spacing:16.256000pt;}
.ws12_c00140{word-spacing:16.320000pt;}
.ws45_c00140{word-spacing:19.136000pt;}
.ws46_c00140{word-spacing:19.200000pt;}
.ws7_c00140{word-spacing:19.264000pt;}
.ws30_c00140{word-spacing:21.120000pt;}
.ws4_c00140{word-spacing:21.312000pt;}
.ws1e_c00140{word-spacing:21.667200pt;}
.ws34_c00140{word-spacing:21.696000pt;}
.ws1d_c00140{word-spacing:21.901440pt;}
.ws32_c00140{word-spacing:21.952000pt;}
.ws33_c00140{word-spacing:22.016000pt;}
.ws3c_c00140{word-spacing:22.080000pt;}
.ws16_c00140{word-spacing:22.336000pt;}
.ws3d_c00140{word-spacing:29.120000pt;}
.ws43_c00140{word-spacing:31.360000pt;}
.ws38_c00140{word-spacing:34.880000pt;}
._1_c00140{margin-left:-0.979200pt;}
._0_c00140{width:0.995520pt;}
._5_c00140{width:3.264000pt;}
._4_c00140{width:5.113600pt;}
._6_c00140{width:6.976000pt;}
._3_c00140{width:20.088960pt;}
._2_c00140{width:22.144000pt;}
.fs1_c00140{font-size:58.560000pt;}
.fs0_c00140{font-size:64.000000pt;}
.y0_c00140{bottom:0.000000pt;}
.y1_c00140{bottom:54.887600pt;}
.y32_c00140{bottom:130.199467pt;}
.y1f_c00140{bottom:144.039467pt;}
.y31_c00140{bottom:157.799467pt;}
.y1e_c00140{bottom:171.639467pt;}
.y30_c00140{bottom:185.399467pt;}
.y1d_c00140{bottom:199.239467pt;}
.y1c_c00140{bottom:226.759467pt;}
.y2f_c00140{bottom:240.599467pt;}
.y1b_c00140{bottom:254.359467pt;}
.y2e_c00140{bottom:268.199467pt;}
.y2d_c00140{bottom:295.799467pt;}
.y1a_c00140{bottom:309.559467pt;}
.y2c_c00140{bottom:323.399467pt;}
.y19_c00140{bottom:337.159467pt;}
.y2b_c00140{bottom:350.999467pt;}
.y18_c00140{bottom:364.759467pt;}
.y2a_c00140{bottom:378.599467pt;}
.y17_c00140{bottom:392.359467pt;}
.y29_c00140{bottom:406.199467pt;}
.y16_c00140{bottom:419.959467pt;}
.y28_c00140{bottom:433.799467pt;}
.y15_c00140{bottom:447.559467pt;}
.y27_c00140{bottom:488.999467pt;}
.y14_c00140{bottom:501.549733pt;}
.y26_c00140{bottom:516.599467pt;}
.y13_c00140{bottom:526.833013pt;}
.y25_c00140{bottom:544.199467pt;}
.y12_c00140{bottom:552.116293pt;}
.y24_c00140{bottom:571.799467pt;}
.y11_c00140{bottom:577.399573pt;}
.y23_c00140{bottom:599.399467pt;}
.y10_c00140{bottom:602.682853pt;}
.y22_c00140{bottom:626.999467pt;}
.yf_c00140{bottom:628.039333pt;}
.y21_c00140{bottom:654.599467pt;}
.ye_c00140{bottom:682.199467pt;}
.yd_c00140{bottom:709.719467pt;}
.yc_c00140{bottom:737.319467pt;}
.yb_c00140{bottom:764.919467pt;}
.ya_c00140{bottom:792.519467pt;}
.y20_c00140{bottom:820.119467pt;}
.y9_c00140{bottom:847.719467pt;}
.y8_c00140{bottom:875.319467pt;}
.y7_c00140{bottom:902.919467pt;}
.y6_c00140{bottom:930.519467pt;}
.y5_c00140{bottom:958.119467pt;}
.y4_c00140{bottom:985.719467pt;}
.y3_c00140{bottom:1013.319467pt;}
.y2_c00140{bottom:1061.399467pt;}
.h2_c00140{height:44.800000pt;}
.h3_c00140{height:48.294844pt;}
.h5_c00140{height:63.479040pt;}
.h4_c00140{height:68.288000pt;}
.h6_c00140{height:69.376000pt;}
.h0_c00140{height:1122.520000pt;}
.h1_c00140{height:1122.666667pt;}
.w2_c00140{width:0.000000pt;}
.w3_c00140{width:0.058667pt;}
.w0_c00140{width:793.701333pt;}
.w1_c00140{width:794.000000pt;}
.x1_c00140{left:-745.700800pt;}
.x2_c00140{left:-680.260800pt;}
.x3_c00140{left:-651.860800pt;}
.x0_c00140{left:0.000000pt;}
.x6_c00140{left:113.440000pt;}
.x7_c00140{left:141.840000pt;}
.x5_c00140{left:616.400000pt;}
.x4_c00140{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00141;src:url('chunks/assets/font_5662afea1e4bc22b86616ee3.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00141;src:url('chunks/assets/font_214702c7ed2e9913abfa9ddd.woff2')format("woff");}.ff3_c00141{font-family:ff3_c00141;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls7_c00141{letter-spacing:-0.360000px;}
.ls6_c00141{letter-spacing:-0.131760px;}
.ls5_c00141{letter-spacing:0.000000px;}
.ls0_c00141{letter-spacing:0.072000px;}
.ls1_c00141{letter-spacing:0.144000px;}
.ls3_c00141{letter-spacing:18.360000px;}
.ls2_c00141{letter-spacing:20.520000px;}
.ls4_c00141{letter-spacing:21.600000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00141{word-spacing:-18.000000px;}
.ws7_c00141{word-spacing:-0.504000px;}
.ws1_c00141{word-spacing:-0.216000px;}
.wsc_c00141{word-spacing:-0.144000px;}
.ws5_c00141{word-spacing:-0.131760px;}
.ws12_c00141{word-spacing:-0.072000px;}
.ws3_c00141{word-spacing:0.000000px;}
.ws4_c00141{word-spacing:0.131760px;}
.ws21_c00141{word-spacing:0.288000px;}
.ws22_c00141{word-spacing:0.360000px;}
.ws2_c00141{word-spacing:0.792000px;}
.ws20_c00141{word-spacing:1.440000px;}
.ws11_c00141{word-spacing:2.160000px;}
.ws13_c00141{word-spacing:2.448000px;}
.ws14_c00141{word-spacing:2.520000px;}
.ws16_c00141{word-spacing:2.808000px;}
.ws1e_c00141{word-spacing:2.880000px;}
.ws23_c00141{word-spacing:3.096000px;}
.ws1f_c00141{word-spacing:3.240000px;}
.ws24_c00141{word-spacing:3.600000px;}
.ws1a_c00141{word-spacing:4.608000px;}
.ws1d_c00141{word-spacing:4.968000px;}
.ws1c_c00141{word-spacing:5.040000px;}
.wse_c00141{word-spacing:5.760000px;}
.wsf_c00141{word-spacing:6.120000px;}
.wsd_c00141{word-spacing:6.408000px;}
.wsa_c00141{word-spacing:7.200000px;}
.ws9_c00141{word-spacing:7.560000px;}
.ws18_c00141{word-spacing:8.208000px;}
.ws19_c00141{word-spacing:9.360000px;}
.ws17_c00141{word-spacing:9.720000px;}
.wsb_c00141{word-spacing:10.368000px;}
.ws8_c00141{word-spacing:13.320000px;}
.ws6_c00141{word-spacing:15.408000px;}
.ws1b_c00141{word-spacing:19.008000px;}
.ws15_c00141{word-spacing:26.280000px;}
.ws10_c00141{word-spacing:35.568000px;}
._1_c00141{margin-left:-1.022400px;}
._0_c00141{width:1.119960px;}
._2_c00141{width:9.576000px;}
.fc1_c00141{color:rgb(0,0,0);}
.fc0_c00141{color:rgb(35,31,32);}
.fs1_c00141{font-size:65.880000px;}
.fs0_c00141{font-size:72.000000px;}
.y0_c00141{bottom:0.000000px;}
.y1_c00141{bottom:61.748550px;}
.y1e_c00141{bottom:146.474400px;}
.y1d_c00141{bottom:177.524400px;}
.y1c_c00141{bottom:208.574400px;}
.y1b_c00141{bottom:239.624400px;}
.y1a_c00141{bottom:301.724400px;}
.y19_c00141{bottom:332.774400px;}
.y18_c00141{bottom:363.824400px;}
.y17_c00141{bottom:394.874400px;}
.y16_c00141{bottom:456.974400px;}
.y15_c00141{bottom:488.024400px;}
.y14_c00141{bottom:519.074400px;}
.y13_c00141{bottom:550.124400px;}
.y12_c00141{bottom:581.174400px;}
.y11_c00141{bottom:612.224400px;}
.y10_c00141{bottom:643.274400px;}
.yf_c00141{bottom:674.324400px;}
.ye_c00141{bottom:705.374400px;}
.yd_c00141{bottom:736.424400px;}
.yc_c00141{bottom:798.434400px;}
.yb_c00141{bottom:829.484400px;}
.ya_c00141{bottom:860.534400px;}
.y9_c00141{bottom:891.584400px;}
.y8_c00141{bottom:953.684400px;}
.y7_c00141{bottom:984.734400px;}
.y6_c00141{bottom:1015.784400px;}
.y5_c00141{bottom:1046.834400px;}
.y4_c00141{bottom:1108.934400px;}
.y3_c00141{bottom:1139.984400px;}
.y2_c00141{bottom:1194.074400px;}
.h2_c00141{height:50.400000px;}
.h3_c00141{height:54.331699px;}
.h4_c00141{height:76.824000px;}
.h0_c00141{height:1262.835000px;}
.h1_c00141{height:1263.000000px;}
.w0_c00141{width:892.914000px;}
.w1_c00141{width:893.250000px;}
.x0_c00141{left:0.000000px;}
.x1_c00141{left:54.000000px;}
.x2_c00141{left:127.620000px;}
.x3_c00141{left:159.570000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls7_c00141{letter-spacing:-0.320000pt;}
.ls6_c00141{letter-spacing:-0.117120pt;}
.ls5_c00141{letter-spacing:0.000000pt;}
.ls0_c00141{letter-spacing:0.064000pt;}
.ls1_c00141{letter-spacing:0.128000pt;}
.ls3_c00141{letter-spacing:16.320000pt;}
.ls2_c00141{letter-spacing:18.240000pt;}
.ls4_c00141{letter-spacing:19.200000pt;}
.ws0_c00141{word-spacing:-16.000000pt;}
.ws7_c00141{word-spacing:-0.448000pt;}
.ws1_c00141{word-spacing:-0.192000pt;}
.wsc_c00141{word-spacing:-0.128000pt;}
.ws5_c00141{word-spacing:-0.117120pt;}
.ws12_c00141{word-spacing:-0.064000pt;}
.ws3_c00141{word-spacing:0.000000pt;}
.ws4_c00141{word-spacing:0.117120pt;}
.ws21_c00141{word-spacing:0.256000pt;}
.ws22_c00141{word-spacing:0.320000pt;}
.ws2_c00141{word-spacing:0.704000pt;}
.ws20_c00141{word-spacing:1.280000pt;}
.ws11_c00141{word-spacing:1.920000pt;}
.ws13_c00141{word-spacing:2.176000pt;}
.ws14_c00141{word-spacing:2.240000pt;}
.ws16_c00141{word-spacing:2.496000pt;}
.ws1e_c00141{word-spacing:2.560000pt;}
.ws23_c00141{word-spacing:2.752000pt;}
.ws1f_c00141{word-spacing:2.880000pt;}
.ws24_c00141{word-spacing:3.200000pt;}
.ws1a_c00141{word-spacing:4.096000pt;}
.ws1d_c00141{word-spacing:4.416000pt;}
.ws1c_c00141{word-spacing:4.480000pt;}
.wse_c00141{word-spacing:5.120000pt;}
.wsf_c00141{word-spacing:5.440000pt;}
.wsd_c00141{word-spacing:5.696000pt;}
.wsa_c00141{word-spacing:6.400000pt;}
.ws9_c00141{word-spacing:6.720000pt;}
.ws18_c00141{word-spacing:7.296000pt;}
.ws19_c00141{word-spacing:8.320000pt;}
.ws17_c00141{word-spacing:8.640000pt;}
.wsb_c00141{word-spacing:9.216000pt;}
.ws8_c00141{word-spacing:11.840000pt;}
.ws6_c00141{word-spacing:13.696000pt;}
.ws1b_c00141{word-spacing:16.896000pt;}
.ws15_c00141{word-spacing:23.360000pt;}
.ws10_c00141{word-spacing:31.616000pt;}
._1_c00141{margin-left:-0.908800pt;}
._0_c00141{width:0.995520pt;}
._2_c00141{width:8.512000pt;}
.fs1_c00141{font-size:58.560000pt;}
.fs0_c00141{font-size:64.000000pt;}
.y0_c00141{bottom:0.000000pt;}
.y1_c00141{bottom:54.887600pt;}
.y1e_c00141{bottom:130.199467pt;}
.y1d_c00141{bottom:157.799467pt;}
.y1c_c00141{bottom:185.399467pt;}
.y1b_c00141{bottom:212.999467pt;}
.y1a_c00141{bottom:268.199467pt;}
.y19_c00141{bottom:295.799467pt;}
.y18_c00141{bottom:323.399467pt;}
.y17_c00141{bottom:350.999467pt;}
.y16_c00141{bottom:406.199467pt;}
.y15_c00141{bottom:433.799467pt;}
.y14_c00141{bottom:461.399467pt;}
.y13_c00141{bottom:488.999467pt;}
.y12_c00141{bottom:516.599467pt;}
.y11_c00141{bottom:544.199467pt;}
.y10_c00141{bottom:571.799467pt;}
.yf_c00141{bottom:599.399467pt;}
.ye_c00141{bottom:626.999467pt;}
.yd_c00141{bottom:654.599467pt;}
.yc_c00141{bottom:709.719467pt;}
.yb_c00141{bottom:737.319467pt;}
.ya_c00141{bottom:764.919467pt;}
.y9_c00141{bottom:792.519467pt;}
.y8_c00141{bottom:847.719467pt;}
.y7_c00141{bottom:875.319467pt;}
.y6_c00141{bottom:902.919467pt;}
.y5_c00141{bottom:930.519467pt;}
.y4_c00141{bottom:985.719467pt;}
.y3_c00141{bottom:1013.319467pt;}
.y2_c00141{bottom:1061.399467pt;}
.h2_c00141{height:44.800000pt;}
.h3_c00141{height:48.294844pt;}
.h4_c00141{height:68.288000pt;}
.h0_c00141{height:1122.520000pt;}
.h1_c00141{height:1122.666667pt;}
.w0_c00141{width:793.701333pt;}
.w1_c00141{width:794.000000pt;}
.x0_c00141{left:0.000000pt;}
.x1_c00141{left:48.000000pt;}
.x2_c00141{left:113.440000pt;}
.x3_c00141{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00142;src:url('chunks/assets/font_47c6ce3aa76a6808f4b88ecd.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00142;src:url('chunks/assets/font_83afa24447e5dfa8ea110c37.woff2')format("woff");}.ff3_c00142{font-family:ff3_c00142;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00142;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00142{font-family:ff4_c00142;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00142;src:url('chunks/assets/font_f69397dc382d09cf78a99ceb.woff2')format("woff");}.ff5_c00142{font-family:ff5_c00142;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00142;src:url('chunks/assets/font_028836c04afd6c8fce297df0.woff2')format("woff");}.ff6_c00142{font-family:ff6_c00142;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00142;src:url('chunks/assets/font_5f14d5868b436489e55daca2.woff2')format("woff");}.ff7_c00142{font-family:ff7_c00142;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls7_c00142{letter-spacing:-0.360000px;}
.ls6_c00142{letter-spacing:-0.131760px;}
.ls5_c00142{letter-spacing:0.000000px;}
.ls0_c00142{letter-spacing:0.072000px;}
.ls1_c00142{letter-spacing:0.144000px;}
.ls3_c00142{letter-spacing:18.360000px;}
.ls2_c00142{letter-spacing:20.520000px;}
.ls4_c00142{letter-spacing:21.600000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00142{word-spacing:-18.144000px;}
.ws0_c00142{word-spacing:-18.000000px;}
.ws9_c00142{word-spacing:-0.504000px;}
.ws1_c00142{word-spacing:-0.216000px;}
.wse_c00142{word-spacing:-0.144000px;}
.ws7_c00142{word-spacing:-0.131760px;}
.ws14_c00142{word-spacing:-0.072000px;}
.ws3_c00142{word-spacing:0.000000px;}
.ws6_c00142{word-spacing:0.131760px;}
.ws34_c00142{word-spacing:0.216000px;}
.ws23_c00142{word-spacing:0.288000px;}
.ws24_c00142{word-spacing:0.360000px;}
.ws2_c00142{word-spacing:0.792000px;}
.ws3a_c00142{word-spacing:1.080000px;}
.ws22_c00142{word-spacing:1.440000px;}
.ws35_c00142{word-spacing:2.088000px;}
.ws13_c00142{word-spacing:2.160000px;}
.ws15_c00142{word-spacing:2.448000px;}
.ws16_c00142{word-spacing:2.520000px;}
.ws18_c00142{word-spacing:2.808000px;}
.ws20_c00142{word-spacing:2.880000px;}
.ws25_c00142{word-spacing:3.096000px;}
.ws36_c00142{word-spacing:3.168000px;}
.ws21_c00142{word-spacing:3.240000px;}
.ws26_c00142{word-spacing:3.600000px;}
.ws2e_c00142{word-spacing:3.888000px;}
.ws1c_c00142{word-spacing:4.608000px;}
.ws1f_c00142{word-spacing:4.968000px;}
.ws1e_c00142{word-spacing:5.040000px;}
.ws2d_c00142{word-spacing:5.688000px;}
.ws10_c00142{word-spacing:5.760000px;}
.ws11_c00142{word-spacing:6.120000px;}
.wsf_c00142{word-spacing:6.408000px;}
.ws2f_c00142{word-spacing:6.480000px;}
.ws30_c00142{word-spacing:7.128000px;}
.wsc_c00142{word-spacing:7.200000px;}
.wsb_c00142{word-spacing:7.560000px;}
.ws1a_c00142{word-spacing:8.208000px;}
.ws1b_c00142{word-spacing:9.360000px;}
.ws19_c00142{word-spacing:9.720000px;}
.wsd_c00142{word-spacing:10.368000px;}
.ws38_c00142{word-spacing:10.728000px;}
.ws37_c00142{word-spacing:12.888000px;}
.wsa_c00142{word-spacing:13.320000px;}
.ws2b_c00142{word-spacing:14.040000px;}
.ws27_c00142{word-spacing:14.760000px;}
.ws8_c00142{word-spacing:15.408000px;}
.ws28_c00142{word-spacing:17.496000px;}
.ws29_c00142{word-spacing:17.568000px;}
.ws4_c00142{word-spacing:17.640000px;}
.ws2a_c00142{word-spacing:18.000000px;}
.ws1d_c00142{word-spacing:19.008000px;}
.ws32_c00142{word-spacing:20.448000px;}
.ws33_c00142{word-spacing:20.520000px;}
.ws2c_c00142{word-spacing:24.768000px;}
.ws17_c00142{word-spacing:26.280000px;}
.ws31_c00142{word-spacing:30.528000px;}
.ws12_c00142{word-spacing:35.568000px;}
.ws39_c00142{word-spacing:37.008000px;}
._1_c00142{margin-left:-1.022400px;}
._0_c00142{width:1.119960px;}
._2_c00142{width:9.576000px;}
.fc2_c00142{color:transparent;}
.fc1_c00142{color:rgb(0,0,0);}
.fc0_c00142{color:rgb(35,31,32);}
.fs1_c00142{font-size:65.880000px;}
.fs0_c00142{font-size:72.000000px;}
.y0_c00142{bottom:0.000000px;}
.y1_c00142{bottom:61.748550px;}
.y23_c00142{bottom:115.424400px;}
.y1e_c00142{bottom:146.474400px;}
.y1d_c00142{bottom:177.524400px;}
.y1c_c00142{bottom:208.574400px;}
.y1b_c00142{bottom:239.624400px;}
.y22_c00142{bottom:270.674400px;}
.y1a_c00142{bottom:301.724400px;}
.y19_c00142{bottom:332.774400px;}
.y18_c00142{bottom:363.824400px;}
.y17_c00142{bottom:394.874400px;}
.y21_c00142{bottom:425.924400px;}
.y16_c00142{bottom:456.974400px;}
.y15_c00142{bottom:488.024400px;}
.y14_c00142{bottom:519.074400px;}
.y13_c00142{bottom:550.124400px;}
.y12_c00142{bottom:581.174400px;}
.y11_c00142{bottom:612.224400px;}
.y10_c00142{bottom:643.274400px;}
.yf_c00142{bottom:674.324400px;}
.ye_c00142{bottom:705.374400px;}
.yd_c00142{bottom:736.424400px;}
.y20_c00142{bottom:767.474400px;}
.yc_c00142{bottom:798.434400px;}
.yb_c00142{bottom:829.484400px;}
.ya_c00142{bottom:860.534400px;}
.y9_c00142{bottom:891.584400px;}
.y1f_c00142{bottom:922.634400px;}
.y8_c00142{bottom:953.684400px;}
.y7_c00142{bottom:984.734400px;}
.y6_c00142{bottom:1015.784400px;}
.y5_c00142{bottom:1046.834400px;}
.y4_c00142{bottom:1108.934400px;}
.y3_c00142{bottom:1139.984400px;}
.y2_c00142{bottom:1194.074400px;}
.h2_c00142{height:50.400000px;}
.h3_c00142{height:54.331699px;}
.h4_c00142{height:76.824000px;}
.h5_c00142{height:78.048000px;}
.h0_c00142{height:1262.835000px;}
.h1_c00142{height:1263.000000px;}
.w2_c00142{width:0.000000px;}
.w3_c00142{width:0.066000px;}
.w0_c00142{width:892.914000px;}
.w1_c00142{width:893.250000px;}
.x1_c00142{left:-838.913400px;}
.x2_c00142{left:-765.293400px;}
.x3_c00142{left:-733.343400px;}
.x0_c00142{left:0.000000px;}
.x6_c00142{left:127.620000px;}
.x7_c00142{left:159.570000px;}
.x5_c00142{left:693.450000px;}
.x4_c00142{left:804.366150px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls7_c00142{letter-spacing:-0.320000pt;}
.ls6_c00142{letter-spacing:-0.117120pt;}
.ls5_c00142{letter-spacing:0.000000pt;}
.ls0_c00142{letter-spacing:0.064000pt;}
.ls1_c00142{letter-spacing:0.128000pt;}
.ls3_c00142{letter-spacing:16.320000pt;}
.ls2_c00142{letter-spacing:18.240000pt;}
.ls4_c00142{letter-spacing:19.200000pt;}
.ws5_c00142{word-spacing:-16.128000pt;}
.ws0_c00142{word-spacing:-16.000000pt;}
.ws9_c00142{word-spacing:-0.448000pt;}
.ws1_c00142{word-spacing:-0.192000pt;}
.wse_c00142{word-spacing:-0.128000pt;}
.ws7_c00142{word-spacing:-0.117120pt;}
.ws14_c00142{word-spacing:-0.064000pt;}
.ws3_c00142{word-spacing:0.000000pt;}
.ws6_c00142{word-spacing:0.117120pt;}
.ws34_c00142{word-spacing:0.192000pt;}
.ws23_c00142{word-spacing:0.256000pt;}
.ws24_c00142{word-spacing:0.320000pt;}
.ws2_c00142{word-spacing:0.704000pt;}
.ws3a_c00142{word-spacing:0.960000pt;}
.ws22_c00142{word-spacing:1.280000pt;}
.ws35_c00142{word-spacing:1.856000pt;}
.ws13_c00142{word-spacing:1.920000pt;}
.ws15_c00142{word-spacing:2.176000pt;}
.ws16_c00142{word-spacing:2.240000pt;}
.ws18_c00142{word-spacing:2.496000pt;}
.ws20_c00142{word-spacing:2.560000pt;}
.ws25_c00142{word-spacing:2.752000pt;}
.ws36_c00142{word-spacing:2.816000pt;}
.ws21_c00142{word-spacing:2.880000pt;}
.ws26_c00142{word-spacing:3.200000pt;}
.ws2e_c00142{word-spacing:3.456000pt;}
.ws1c_c00142{word-spacing:4.096000pt;}
.ws1f_c00142{word-spacing:4.416000pt;}
.ws1e_c00142{word-spacing:4.480000pt;}
.ws2d_c00142{word-spacing:5.056000pt;}
.ws10_c00142{word-spacing:5.120000pt;}
.ws11_c00142{word-spacing:5.440000pt;}
.wsf_c00142{word-spacing:5.696000pt;}
.ws2f_c00142{word-spacing:5.760000pt;}
.ws30_c00142{word-spacing:6.336000pt;}
.wsc_c00142{word-spacing:6.400000pt;}
.wsb_c00142{word-spacing:6.720000pt;}
.ws1a_c00142{word-spacing:7.296000pt;}
.ws1b_c00142{word-spacing:8.320000pt;}
.ws19_c00142{word-spacing:8.640000pt;}
.wsd_c00142{word-spacing:9.216000pt;}
.ws38_c00142{word-spacing:9.536000pt;}
.ws37_c00142{word-spacing:11.456000pt;}
.wsa_c00142{word-spacing:11.840000pt;}
.ws2b_c00142{word-spacing:12.480000pt;}
.ws27_c00142{word-spacing:13.120000pt;}
.ws8_c00142{word-spacing:13.696000pt;}
.ws28_c00142{word-spacing:15.552000pt;}
.ws29_c00142{word-spacing:15.616000pt;}
.ws4_c00142{word-spacing:15.680000pt;}
.ws2a_c00142{word-spacing:16.000000pt;}
.ws1d_c00142{word-spacing:16.896000pt;}
.ws32_c00142{word-spacing:18.176000pt;}
.ws33_c00142{word-spacing:18.240000pt;}
.ws2c_c00142{word-spacing:22.016000pt;}
.ws17_c00142{word-spacing:23.360000pt;}
.ws31_c00142{word-spacing:27.136000pt;}
.ws12_c00142{word-spacing:31.616000pt;}
.ws39_c00142{word-spacing:32.896000pt;}
._1_c00142{margin-left:-0.908800pt;}
._0_c00142{width:0.995520pt;}
._2_c00142{width:8.512000pt;}
.fs1_c00142{font-size:58.560000pt;}
.fs0_c00142{font-size:64.000000pt;}
.y0_c00142{bottom:0.000000pt;}
.y1_c00142{bottom:54.887600pt;}
.y23_c00142{bottom:102.599467pt;}
.y1e_c00142{bottom:130.199467pt;}
.y1d_c00142{bottom:157.799467pt;}
.y1c_c00142{bottom:185.399467pt;}
.y1b_c00142{bottom:212.999467pt;}
.y22_c00142{bottom:240.599467pt;}
.y1a_c00142{bottom:268.199467pt;}
.y19_c00142{bottom:295.799467pt;}
.y18_c00142{bottom:323.399467pt;}
.y17_c00142{bottom:350.999467pt;}
.y21_c00142{bottom:378.599467pt;}
.y16_c00142{bottom:406.199467pt;}
.y15_c00142{bottom:433.799467pt;}
.y14_c00142{bottom:461.399467pt;}
.y13_c00142{bottom:488.999467pt;}
.y12_c00142{bottom:516.599467pt;}
.y11_c00142{bottom:544.199467pt;}
.y10_c00142{bottom:571.799467pt;}
.yf_c00142{bottom:599.399467pt;}
.ye_c00142{bottom:626.999467pt;}
.yd_c00142{bottom:654.599467pt;}
.y20_c00142{bottom:682.199467pt;}
.yc_c00142{bottom:709.719467pt;}
.yb_c00142{bottom:737.319467pt;}
.ya_c00142{bottom:764.919467pt;}
.y9_c00142{bottom:792.519467pt;}
.y1f_c00142{bottom:820.119467pt;}
.y8_c00142{bottom:847.719467pt;}
.y7_c00142{bottom:875.319467pt;}
.y6_c00142{bottom:902.919467pt;}
.y5_c00142{bottom:930.519467pt;}
.y4_c00142{bottom:985.719467pt;}
.y3_c00142{bottom:1013.319467pt;}
.y2_c00142{bottom:1061.399467pt;}
.h2_c00142{height:44.800000pt;}
.h3_c00142{height:48.294844pt;}
.h4_c00142{height:68.288000pt;}
.h5_c00142{height:69.376000pt;}
.h0_c00142{height:1122.520000pt;}
.h1_c00142{height:1122.666667pt;}
.w2_c00142{width:0.000000pt;}
.w3_c00142{width:0.058667pt;}
.w0_c00142{width:793.701333pt;}
.w1_c00142{width:794.000000pt;}
.x1_c00142{left:-745.700800pt;}
.x2_c00142{left:-680.260800pt;}
.x3_c00142{left:-651.860800pt;}
.x0_c00142{left:0.000000pt;}
.x6_c00142{left:113.440000pt;}
.x7_c00142{left:141.840000pt;}
.x5_c00142{left:616.400000pt;}
.x4_c00142{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00143;src:url('chunks/assets/font_348548df42b50b5c2a8570a4.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00143;src:url('chunks/assets/font_9d8708c222df0682a1c2c693.woff2')format("woff");}.ff3_c00143{font-family:ff3_c00143;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00143;src:url('chunks/assets/font_f230b0dfcaafb9e80ba560e0.woff2')format("woff");}.ff4_c00143{font-family:ff4_c00143;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00143;src:url('chunks/assets/font_a5081b5ab6d89302c6fdcfe4.woff2')format("woff");}.ff5_c00143{font-family:ff5_c00143;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls9_c00143{letter-spacing:-0.288000px;}
.ls7_c00143{letter-spacing:-0.131760px;}
.ls8_c00143{letter-spacing:-0.072000px;}
.ls6_c00143{letter-spacing:0.000000px;}
.ls1_c00143{letter-spacing:0.072000px;}
.ls2_c00143{letter-spacing:0.144000px;}
.ls0_c00143{letter-spacing:36.000000px;}
.ls4_c00143{letter-spacing:44.064000px;}
.ls3_c00143{letter-spacing:47.880000px;}
.ls5_c00143{letter-spacing:50.544000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00143{word-spacing:-18.144000px;}
.ws2_c00143{word-spacing:-18.000000px;}
.ws8_c00143{word-spacing:-0.131760px;}
.wsf_c00143{word-spacing:-0.072000px;}
.ws6_c00143{word-spacing:0.000000px;}
.ws19_c00143{word-spacing:0.072000px;}
.ws7_c00143{word-spacing:0.131760px;}
.ws1f_c00143{word-spacing:0.288000px;}
.ws23_c00143{word-spacing:0.648000px;}
.ws0_c00143{word-spacing:1.440000px;}
.wsb_c00143{word-spacing:1.584000px;}
.wsc_c00143{word-spacing:1.800000px;}
.ws22_c00143{word-spacing:3.168000px;}
.ws5_c00143{word-spacing:3.240000px;}
.ws21_c00143{word-spacing:3.528000px;}
.ws1b_c00143{word-spacing:3.600000px;}
.ws1a_c00143{word-spacing:3.888000px;}
.ws4_c00143{word-spacing:3.960000px;}
.ws25_c00143{word-spacing:4.248000px;}
.ws24_c00143{word-spacing:4.680000px;}
.ws20_c00143{word-spacing:7.128000px;}
.wse_c00143{word-spacing:7.200000px;}
.wsd_c00143{word-spacing:7.488000px;}
.ws1_c00143{word-spacing:7.632000px;}
.ws16_c00143{word-spacing:7.920000px;}
.ws14_c00143{word-spacing:8.928000px;}
.ws13_c00143{word-spacing:9.000000px;}
.ws1c_c00143{word-spacing:9.576000px;}
.ws10_c00143{word-spacing:11.160000px;}
.ws12_c00143{word-spacing:13.320000px;}
.ws11_c00143{word-spacing:13.536000px;}
.ws26_c00143{word-spacing:16.848000px;}
.ws15_c00143{word-spacing:16.920000px;}
.ws9_c00143{word-spacing:17.928000px;}
.wsa_c00143{word-spacing:18.000000px;}
.ws27_c00143{word-spacing:19.440000px;}
.ws1e_c00143{word-spacing:20.160000px;}
.ws17_c00143{word-spacing:29.808000px;}
.ws18_c00143{word-spacing:36.288000px;}
.ws1d_c00143{word-spacing:45.720000px;}
._1_c00143{margin-left:-1.008000px;}
._0_c00143{width:1.119960px;}
._4_c00143{width:4.104000px;}
._5_c00143{width:7.416000px;}
._3_c00143{width:12.960000px;}
._2_c00143{width:68.400000px;}
.fc1_c00143{color:rgb(0,0,0);}
.fc0_c00143{color:rgb(35,31,32);}
.fs1_c00143{font-size:65.880000px;}
.fs0_c00143{font-size:72.000000px;}
.y0_c00143{bottom:0.000000px;}
.y1_c00143{bottom:61.748550px;}
.y21_c00143{bottom:115.424400px;}
.y20_c00143{bottom:146.474400px;}
.y1f_c00143{bottom:177.524400px;}
.y1e_c00143{bottom:208.574400px;}
.y1d_c00143{bottom:239.624400px;}
.y1c_c00143{bottom:270.674400px;}
.y1b_c00143{bottom:301.724400px;}
.y1a_c00143{bottom:332.774400px;}
.y19_c00143{bottom:363.824400px;}
.y18_c00143{bottom:394.874400px;}
.y17_c00143{bottom:425.924400px;}
.y16_c00143{bottom:456.974400px;}
.y15_c00143{bottom:488.024400px;}
.y14_c00143{bottom:519.074400px;}
.y13_c00143{bottom:550.124400px;}
.y12_c00143{bottom:581.174400px;}
.y11_c00143{bottom:612.224400px;}
.y10_c00143{bottom:643.274400px;}
.yf_c00143{bottom:705.374400px;}
.ye_c00143{bottom:736.424400px;}
.yd_c00143{bottom:767.474400px;}
.yc_c00143{bottom:798.434400px;}
.yb_c00143{bottom:829.484400px;}
.ya_c00143{bottom:860.534400px;}
.y9_c00143{bottom:891.584400px;}
.y8_c00143{bottom:922.634400px;}
.y7_c00143{bottom:984.554400px;}
.y6_c00143{bottom:1046.834400px;}
.y5_c00143{bottom:1077.884400px;}
.y4_c00143{bottom:1108.934400px;}
.y3_c00143{bottom:1139.984400px;}
.y2_c00143{bottom:1194.074400px;}
.h2_c00143{height:50.400000px;}
.h3_c00143{height:54.331699px;}
.h4_c00143{height:76.824000px;}
.h5_c00143{height:78.048000px;}
.h0_c00143{height:1262.835000px;}
.h1_c00143{height:1263.000000px;}
.w0_c00143{width:892.914000px;}
.w1_c00143{width:893.250000px;}
.x0_c00143{left:0.000000px;}
.x1_c00143{left:54.000000px;}
.x2_c00143{left:127.620000px;}
.x4_c00143{left:148.950000px;}
.x3_c00143{left:159.570000px;}
.x5_c00143{left:170.190000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls9_c00143{letter-spacing:-0.256000pt;}
.ls7_c00143{letter-spacing:-0.117120pt;}
.ls8_c00143{letter-spacing:-0.064000pt;}
.ls6_c00143{letter-spacing:0.000000pt;}
.ls1_c00143{letter-spacing:0.064000pt;}
.ls2_c00143{letter-spacing:0.128000pt;}
.ls0_c00143{letter-spacing:32.000000pt;}
.ls4_c00143{letter-spacing:39.168000pt;}
.ls3_c00143{letter-spacing:42.560000pt;}
.ls5_c00143{letter-spacing:44.928000pt;}
.ws3_c00143{word-spacing:-16.128000pt;}
.ws2_c00143{word-spacing:-16.000000pt;}
.ws8_c00143{word-spacing:-0.117120pt;}
.wsf_c00143{word-spacing:-0.064000pt;}
.ws6_c00143{word-spacing:0.000000pt;}
.ws19_c00143{word-spacing:0.064000pt;}
.ws7_c00143{word-spacing:0.117120pt;}
.ws1f_c00143{word-spacing:0.256000pt;}
.ws23_c00143{word-spacing:0.576000pt;}
.ws0_c00143{word-spacing:1.280000pt;}
.wsb_c00143{word-spacing:1.408000pt;}
.wsc_c00143{word-spacing:1.600000pt;}
.ws22_c00143{word-spacing:2.816000pt;}
.ws5_c00143{word-spacing:2.880000pt;}
.ws21_c00143{word-spacing:3.136000pt;}
.ws1b_c00143{word-spacing:3.200000pt;}
.ws1a_c00143{word-spacing:3.456000pt;}
.ws4_c00143{word-spacing:3.520000pt;}
.ws25_c00143{word-spacing:3.776000pt;}
.ws24_c00143{word-spacing:4.160000pt;}
.ws20_c00143{word-spacing:6.336000pt;}
.wse_c00143{word-spacing:6.400000pt;}
.wsd_c00143{word-spacing:6.656000pt;}
.ws1_c00143{word-spacing:6.784000pt;}
.ws16_c00143{word-spacing:7.040000pt;}
.ws14_c00143{word-spacing:7.936000pt;}
.ws13_c00143{word-spacing:8.000000pt;}
.ws1c_c00143{word-spacing:8.512000pt;}
.ws10_c00143{word-spacing:9.920000pt;}
.ws12_c00143{word-spacing:11.840000pt;}
.ws11_c00143{word-spacing:12.032000pt;}
.ws26_c00143{word-spacing:14.976000pt;}
.ws15_c00143{word-spacing:15.040000pt;}
.ws9_c00143{word-spacing:15.936000pt;}
.wsa_c00143{word-spacing:16.000000pt;}
.ws27_c00143{word-spacing:17.280000pt;}
.ws1e_c00143{word-spacing:17.920000pt;}
.ws17_c00143{word-spacing:26.496000pt;}
.ws18_c00143{word-spacing:32.256000pt;}
.ws1d_c00143{word-spacing:40.640000pt;}
._1_c00143{margin-left:-0.896000pt;}
._0_c00143{width:0.995520pt;}
._4_c00143{width:3.648000pt;}
._5_c00143{width:6.592000pt;}
._3_c00143{width:11.520000pt;}
._2_c00143{width:60.800000pt;}
.fs1_c00143{font-size:58.560000pt;}
.fs0_c00143{font-size:64.000000pt;}
.y0_c00143{bottom:0.000000pt;}
.y1_c00143{bottom:54.887600pt;}
.y21_c00143{bottom:102.599467pt;}
.y20_c00143{bottom:130.199467pt;}
.y1f_c00143{bottom:157.799467pt;}
.y1e_c00143{bottom:185.399467pt;}
.y1d_c00143{bottom:212.999467pt;}
.y1c_c00143{bottom:240.599467pt;}
.y1b_c00143{bottom:268.199467pt;}
.y1a_c00143{bottom:295.799467pt;}
.y19_c00143{bottom:323.399467pt;}
.y18_c00143{bottom:350.999467pt;}
.y17_c00143{bottom:378.599467pt;}
.y16_c00143{bottom:406.199467pt;}
.y15_c00143{bottom:433.799467pt;}
.y14_c00143{bottom:461.399467pt;}
.y13_c00143{bottom:488.999467pt;}
.y12_c00143{bottom:516.599467pt;}
.y11_c00143{bottom:544.199467pt;}
.y10_c00143{bottom:571.799467pt;}
.yf_c00143{bottom:626.999467pt;}
.ye_c00143{bottom:654.599467pt;}
.yd_c00143{bottom:682.199467pt;}
.yc_c00143{bottom:709.719467pt;}
.yb_c00143{bottom:737.319467pt;}
.ya_c00143{bottom:764.919467pt;}
.y9_c00143{bottom:792.519467pt;}
.y8_c00143{bottom:820.119467pt;}
.y7_c00143{bottom:875.159467pt;}
.y6_c00143{bottom:930.519467pt;}
.y5_c00143{bottom:958.119467pt;}
.y4_c00143{bottom:985.719467pt;}
.y3_c00143{bottom:1013.319467pt;}
.y2_c00143{bottom:1061.399467pt;}
.h2_c00143{height:44.800000pt;}
.h3_c00143{height:48.294844pt;}
.h4_c00143{height:68.288000pt;}
.h5_c00143{height:69.376000pt;}
.h0_c00143{height:1122.520000pt;}
.h1_c00143{height:1122.666667pt;}
.w0_c00143{width:793.701333pt;}
.w1_c00143{width:794.000000pt;}
.x0_c00143{left:0.000000pt;}
.x1_c00143{left:48.000000pt;}
.x2_c00143{left:113.440000pt;}
.x4_c00143{left:132.400000pt;}
.x3_c00143{left:141.840000pt;}
.x5_c00143{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00144;src:url('chunks/assets/font_ceaf1ec09d8c80ede6fe8c67.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00144;src:url('chunks/assets/font_bccc7d8af096bc8a8897c002.woff2')format("woff");}.ff3_c00144{font-family:ff3_c00144;line-height:1.575000;font-style:normal;font-weight:normal;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_db9b95eeb2e36048214722d7.woff2')format("woff");}.ff4_c00144{font-family:ff4_c00144;line-height:1.575000;font-style:normal;font-weight:normal;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_e819d70c71f1f6f594048e38.woff2')format("woff");}.ff5_c00144{font-family:ff5_c00144;line-height:1.592000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00144{font-family:ff6_c00144;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00144;src:url('chunks/assets/font_ccafbdf2742d196d53b48dd5.woff2')format("woff");}.ff7_c00144{font-family:ff7_c00144;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00144;src:url('chunks/assets/font_336c21b11776b229f0e60952.woff2')format("woff");}.ff8_c00144{font-family:ff8_c00144;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00144;src:url('chunks/assets/font_2e51493c3be162cd27397ad9.woff2')format("woff");}.ff9_c00144{font-family:ff9_c00144;line-height:1.575000;font-style:normal;font-weight: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_c00144;src:url('chunks/assets/font_b0ce2d3c424cccc52b647cd9.woff2')format("woff");}.ffa_c00144{font-family:ffa_c00144;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.lsb_c00144{letter-spacing:-0.288000px;}
.ls9_c00144{letter-spacing:-0.131760px;}
.lsa_c00144{letter-spacing:-0.072000px;}
.lsc_c00144{letter-spacing:-0.065880px;}
.ls8_c00144{letter-spacing:0.000000px;}
.ls1_c00144{letter-spacing:0.072000px;}
.ls2_c00144{letter-spacing:0.144000px;}
.lsd_c00144{letter-spacing:0.197640px;}
.ls7_c00144{letter-spacing:18.021600px;}
.ls0_c00144{letter-spacing:36.000000px;}
.ls4_c00144{letter-spacing:44.064000px;}
.ls3_c00144{letter-spacing:47.880000px;}
.ls5_c00144{letter-spacing:50.544000px;}
.ls6_c00144{letter-spacing:57.600000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00144{word-spacing:-18.144000px;}
.ws9_c00144{word-spacing:-18.072000px;}
.ws2_c00144{word-spacing:-18.000000px;}
.ws6_c00144{word-spacing:-16.470000px;}
.ws33_c00144{word-spacing:-0.461160px;}
.ws3f_c00144{word-spacing:-0.144000px;}
.wsc_c00144{word-spacing:-0.131760px;}
.ws13_c00144{word-spacing:-0.072000px;}
.wsa_c00144{word-spacing:0.000000px;}
.ws32_c00144{word-spacing:0.065880px;}
.ws1d_c00144{word-spacing:0.072000px;}
.wsb_c00144{word-spacing:0.131760px;}
.ws23_c00144{word-spacing:0.288000px;}
.ws42_c00144{word-spacing:0.360000px;}
.ws27_c00144{word-spacing:0.648000px;}
.ws38_c00144{word-spacing:1.080000px;}
.ws0_c00144{word-spacing:1.440000px;}
.ws2f_c00144{word-spacing:1.581120px;}
.wsf_c00144{word-spacing:1.584000px;}
.ws10_c00144{word-spacing:1.800000px;}
.ws37_c00144{word-spacing:2.088000px;}
.ws3a_c00144{word-spacing:2.520000px;}
.ws26_c00144{word-spacing:3.168000px;}
.ws5_c00144{word-spacing:3.240000px;}
.ws25_c00144{word-spacing:3.528000px;}
.ws1f_c00144{word-spacing:3.600000px;}
.ws30_c00144{word-spacing:3.755160px;}
.ws1e_c00144{word-spacing:3.888000px;}
.ws4_c00144{word-spacing:3.960000px;}
.ws29_c00144{word-spacing:4.248000px;}
.ws28_c00144{word-spacing:4.680000px;}
.ws40_c00144{word-spacing:6.048000px;}
.ws24_c00144{word-spacing:7.128000px;}
.ws12_c00144{word-spacing:7.200000px;}
.ws11_c00144{word-spacing:7.488000px;}
.ws1_c00144{word-spacing:7.632000px;}
.ws1a_c00144{word-spacing:7.920000px;}
.ws41_c00144{word-spacing:8.640000px;}
.ws18_c00144{word-spacing:8.928000px;}
.ws17_c00144{word-spacing:9.000000px;}
.ws20_c00144{word-spacing:9.576000px;}
.ws14_c00144{word-spacing:11.160000px;}
.ws16_c00144{word-spacing:13.320000px;}
.ws15_c00144{word-spacing:13.536000px;}
.ws36_c00144{word-spacing:13.608000px;}
.ws35_c00144{word-spacing:14.040000px;}
.ws31_c00144{word-spacing:14.295960px;}
.ws39_c00144{word-spacing:14.688000px;}
.ws3b_c00144{word-spacing:15.048000px;}
.ws2a_c00144{word-spacing:16.848000px;}
.ws19_c00144{word-spacing:16.920000px;}
.ws34_c00144{word-spacing:17.208000px;}
.wsd_c00144{word-spacing:17.928000px;}
.wse_c00144{word-spacing:18.000000px;}
.ws2b_c00144{word-spacing:19.440000px;}
.ws2d_c00144{word-spacing:19.698120px;}
.ws2c_c00144{word-spacing:19.961640px;}
.ws22_c00144{word-spacing:20.160000px;}
.ws3d_c00144{word-spacing:26.928000px;}
.ws3c_c00144{word-spacing:27.000000px;}
.ws7_c00144{word-spacing:27.216000px;}
.ws2e_c00144{word-spacing:28.262520px;}
.ws1b_c00144{word-spacing:29.808000px;}
.ws1c_c00144{word-spacing:36.288000px;}
.ws3e_c00144{word-spacing:39.960000px;}
.ws21_c00144{word-spacing:45.720000px;}
.ws8_c00144{word-spacing:140.400000px;}
._1_c00144{margin-left:-1.008000px;}
._0_c00144{width:1.119960px;}
._4_c00144{width:4.104000px;}
._5_c00144{width:7.416000px;}
._3_c00144{width:12.960000px;}
._6_c00144{width:27.792000px;}
._7_c00144{width:45.144000px;}
._2_c00144{width:68.400000px;}
.fc2_c00144{color:transparent;}
.fc1_c00144{color:rgb(0,0,0);}
.fc0_c00144{color:rgb(35,31,32);}
.fs1_c00144{font-size:65.880000px;}
.fs0_c00144{font-size:72.000000px;}
.y0_c00144{bottom:0.000000px;}
.y1_c00144{bottom:61.748550px;}
.y21_c00144{bottom:115.424400px;}
.y3e_c00144{bottom:130.994250px;}
.y20_c00144{bottom:146.474400px;}
.y3d_c00144{bottom:162.044250px;}
.y1f_c00144{bottom:177.524400px;}
.y3c_c00144{bottom:193.094250px;}
.y1e_c00144{bottom:208.574400px;}
.y3b_c00144{bottom:224.144250px;}
.y1d_c00144{bottom:239.624400px;}
.y3a_c00144{bottom:255.104250px;}
.y1c_c00144{bottom:270.674400px;}
.y39_c00144{bottom:286.154250px;}
.y1b_c00144{bottom:301.724400px;}
.y1a_c00144{bottom:332.774400px;}
.y38_c00144{bottom:348.074250px;}
.y19_c00144{bottom:363.824400px;}
.y18_c00144{bottom:394.874400px;}
.y37_c00144{bottom:410.354250px;}
.y17_c00144{bottom:425.924400px;}
.y36_c00144{bottom:441.404250px;}
.y16_c00144{bottom:456.974400px;}
.y35_c00144{bottom:472.454250px;}
.y15_c00144{bottom:488.024400px;}
.y34_c00144{bottom:503.504250px;}
.y14_c00144{bottom:519.074400px;}
.y33_c00144{bottom:534.554250px;}
.y13_c00144{bottom:550.124400px;}
.y32_c00144{bottom:565.604250px;}
.y12_c00144{bottom:581.174400px;}
.y31_c00144{bottom:596.654250px;}
.y11_c00144{bottom:612.224400px;}
.y30_c00144{bottom:627.704250px;}
.y10_c00144{bottom:643.274400px;}
.y2f_c00144{bottom:658.754250px;}
.y2e_c00144{bottom:689.804250px;}
.yf_c00144{bottom:705.374400px;}
.ye_c00144{bottom:736.424400px;}
.y2d_c00144{bottom:751.904250px;}
.yd_c00144{bottom:767.474400px;}
.y2c_c00144{bottom:782.954250px;}
.yc_c00144{bottom:798.434400px;}
.y2b_c00144{bottom:814.004250px;}
.yb_c00144{bottom:829.484400px;}
.y2a_c00144{bottom:845.054250px;}
.ya_c00144{bottom:860.534400px;}
.y29_c00144{bottom:876.104250px;}
.y9_c00144{bottom:891.584400px;}
.y28_c00144{bottom:907.154250px;}
.y8_c00144{bottom:922.634400px;}
.y27_c00144{bottom:967.908360px;}
.y7_c00144{bottom:984.554400px;}
.y26_c00144{bottom:996.253230px;}
.y25_c00144{bottom:1024.779270px;}
.y6_c00144{bottom:1046.834400px;}
.y24_c00144{bottom:1053.222960px;}
.y5_c00144{bottom:1077.884400px;}
.y23_c00144{bottom:1081.666650px;}
.y4_c00144{bottom:1108.934400px;}
.y22_c00144{bottom:1110.110340px;}
.y3_c00144{bottom:1139.984400px;}
.y2_c00144{bottom:1194.074400px;}
.h2_c00144{height:50.400000px;}
.h3_c00144{height:54.331699px;}
.h6_c00144{height:71.413920px;}
.h4_c00144{height:76.824000px;}
.h5_c00144{height:78.048000px;}
.h0_c00144{height:1262.835000px;}
.h1_c00144{height:1263.000000px;}
.w2_c00144{width:0.000000px;}
.w3_c00144{width:0.066000px;}
.w0_c00144{width:892.914000px;}
.w1_c00144{width:893.250000px;}
.x1_c00144{left:-838.913400px;}
.x2_c00144{left:-765.293400px;}
.x4_c00144{left:-743.963400px;}
.x3_c00144{left:-733.343400px;}
.x5_c00144{left:-722.723400px;}
.x0_c00144{left:0.000000px;}
.x9_c00144{left:127.620000px;}
.x8_c00144{left:159.574950px;}
.x7_c00144{left:693.450000px;}
.x6_c00144{left:804.366150px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.lsb_c00144{letter-spacing:-0.256000pt;}
.ls9_c00144{letter-spacing:-0.117120pt;}
.lsa_c00144{letter-spacing:-0.064000pt;}
.lsc_c00144{letter-spacing:-0.058560pt;}
.ls8_c00144{letter-spacing:0.000000pt;}
.ls1_c00144{letter-spacing:0.064000pt;}
.ls2_c00144{letter-spacing:0.128000pt;}
.lsd_c00144{letter-spacing:0.175680pt;}
.ls7_c00144{letter-spacing:16.019200pt;}
.ls0_c00144{letter-spacing:32.000000pt;}
.ls4_c00144{letter-spacing:39.168000pt;}
.ls3_c00144{letter-spacing:42.560000pt;}
.ls5_c00144{letter-spacing:44.928000pt;}
.ls6_c00144{letter-spacing:51.200000pt;}
.ws3_c00144{word-spacing:-16.128000pt;}
.ws9_c00144{word-spacing:-16.064000pt;}
.ws2_c00144{word-spacing:-16.000000pt;}
.ws6_c00144{word-spacing:-14.640000pt;}
.ws33_c00144{word-spacing:-0.409920pt;}
.ws3f_c00144{word-spacing:-0.128000pt;}
.wsc_c00144{word-spacing:-0.117120pt;}
.ws13_c00144{word-spacing:-0.064000pt;}
.wsa_c00144{word-spacing:0.000000pt;}
.ws32_c00144{word-spacing:0.058560pt;}
.ws1d_c00144{word-spacing:0.064000pt;}
.wsb_c00144{word-spacing:0.117120pt;}
.ws23_c00144{word-spacing:0.256000pt;}
.ws42_c00144{word-spacing:0.320000pt;}
.ws27_c00144{word-spacing:0.576000pt;}
.ws38_c00144{word-spacing:0.960000pt;}
.ws0_c00144{word-spacing:1.280000pt;}
.ws2f_c00144{word-spacing:1.405440pt;}
.wsf_c00144{word-spacing:1.408000pt;}
.ws10_c00144{word-spacing:1.600000pt;}
.ws37_c00144{word-spacing:1.856000pt;}
.ws3a_c00144{word-spacing:2.240000pt;}
.ws26_c00144{word-spacing:2.816000pt;}
.ws5_c00144{word-spacing:2.880000pt;}
.ws25_c00144{word-spacing:3.136000pt;}
.ws1f_c00144{word-spacing:3.200000pt;}
.ws30_c00144{word-spacing:3.337920pt;}
.ws1e_c00144{word-spacing:3.456000pt;}
.ws4_c00144{word-spacing:3.520000pt;}
.ws29_c00144{word-spacing:3.776000pt;}
.ws28_c00144{word-spacing:4.160000pt;}
.ws40_c00144{word-spacing:5.376000pt;}
.ws24_c00144{word-spacing:6.336000pt;}
.ws12_c00144{word-spacing:6.400000pt;}
.ws11_c00144{word-spacing:6.656000pt;}
.ws1_c00144{word-spacing:6.784000pt;}
.ws1a_c00144{word-spacing:7.040000pt;}
.ws41_c00144{word-spacing:7.680000pt;}
.ws18_c00144{word-spacing:7.936000pt;}
.ws17_c00144{word-spacing:8.000000pt;}
.ws20_c00144{word-spacing:8.512000pt;}
.ws14_c00144{word-spacing:9.920000pt;}
.ws16_c00144{word-spacing:11.840000pt;}
.ws15_c00144{word-spacing:12.032000pt;}
.ws36_c00144{word-spacing:12.096000pt;}
.ws35_c00144{word-spacing:12.480000pt;}
.ws31_c00144{word-spacing:12.707520pt;}
.ws39_c00144{word-spacing:13.056000pt;}
.ws3b_c00144{word-spacing:13.376000pt;}
.ws2a_c00144{word-spacing:14.976000pt;}
.ws19_c00144{word-spacing:15.040000pt;}
.ws34_c00144{word-spacing:15.296000pt;}
.wsd_c00144{word-spacing:15.936000pt;}
.wse_c00144{word-spacing:16.000000pt;}
.ws2b_c00144{word-spacing:17.280000pt;}
.ws2d_c00144{word-spacing:17.509440pt;}
.ws2c_c00144{word-spacing:17.743680pt;}
.ws22_c00144{word-spacing:17.920000pt;}
.ws3d_c00144{word-spacing:23.936000pt;}
.ws3c_c00144{word-spacing:24.000000pt;}
.ws7_c00144{word-spacing:24.192000pt;}
.ws2e_c00144{word-spacing:25.122240pt;}
.ws1b_c00144{word-spacing:26.496000pt;}
.ws1c_c00144{word-spacing:32.256000pt;}
.ws3e_c00144{word-spacing:35.520000pt;}
.ws21_c00144{word-spacing:40.640000pt;}
.ws8_c00144{word-spacing:124.800000pt;}
._1_c00144{margin-left:-0.896000pt;}
._0_c00144{width:0.995520pt;}
._4_c00144{width:3.648000pt;}
._5_c00144{width:6.592000pt;}
._3_c00144{width:11.520000pt;}
._6_c00144{width:24.704000pt;}
._7_c00144{width:40.128000pt;}
._2_c00144{width:60.800000pt;}
.fs1_c00144{font-size:58.560000pt;}
.fs0_c00144{font-size:64.000000pt;}
.y0_c00144{bottom:0.000000pt;}
.y1_c00144{bottom:54.887600pt;}
.y21_c00144{bottom:102.599467pt;}
.y3e_c00144{bottom:116.439333pt;}
.y20_c00144{bottom:130.199467pt;}
.y3d_c00144{bottom:144.039333pt;}
.y1f_c00144{bottom:157.799467pt;}
.y3c_c00144{bottom:171.639333pt;}
.y1e_c00144{bottom:185.399467pt;}
.y3b_c00144{bottom:199.239333pt;}
.y1d_c00144{bottom:212.999467pt;}
.y3a_c00144{bottom:226.759333pt;}
.y1c_c00144{bottom:240.599467pt;}
.y39_c00144{bottom:254.359333pt;}
.y1b_c00144{bottom:268.199467pt;}
.y1a_c00144{bottom:295.799467pt;}
.y38_c00144{bottom:309.399333pt;}
.y19_c00144{bottom:323.399467pt;}
.y18_c00144{bottom:350.999467pt;}
.y37_c00144{bottom:364.759333pt;}
.y17_c00144{bottom:378.599467pt;}
.y36_c00144{bottom:392.359333pt;}
.y16_c00144{bottom:406.199467pt;}
.y35_c00144{bottom:419.959333pt;}
.y15_c00144{bottom:433.799467pt;}
.y34_c00144{bottom:447.559333pt;}
.y14_c00144{bottom:461.399467pt;}
.y33_c00144{bottom:475.159333pt;}
.y13_c00144{bottom:488.999467pt;}
.y32_c00144{bottom:502.759333pt;}
.y12_c00144{bottom:516.599467pt;}
.y31_c00144{bottom:530.359333pt;}
.y11_c00144{bottom:544.199467pt;}
.y30_c00144{bottom:557.959333pt;}
.y10_c00144{bottom:571.799467pt;}
.y2f_c00144{bottom:585.559333pt;}
.y2e_c00144{bottom:613.159333pt;}
.yf_c00144{bottom:626.999467pt;}
.ye_c00144{bottom:654.599467pt;}
.y2d_c00144{bottom:668.359333pt;}
.yd_c00144{bottom:682.199467pt;}
.y2c_c00144{bottom:695.959333pt;}
.yc_c00144{bottom:709.719467pt;}
.y2b_c00144{bottom:723.559333pt;}
.yb_c00144{bottom:737.319467pt;}
.y2a_c00144{bottom:751.159333pt;}
.ya_c00144{bottom:764.919467pt;}
.y29_c00144{bottom:778.759333pt;}
.y9_c00144{bottom:792.519467pt;}
.y28_c00144{bottom:806.359333pt;}
.y8_c00144{bottom:820.119467pt;}
.y27_c00144{bottom:860.362987pt;}
.y7_c00144{bottom:875.159467pt;}
.y26_c00144{bottom:885.558427pt;}
.y25_c00144{bottom:910.914907pt;}
.y6_c00144{bottom:930.519467pt;}
.y24_c00144{bottom:936.198187pt;}
.y5_c00144{bottom:958.119467pt;}
.y23_c00144{bottom:961.481467pt;}
.y4_c00144{bottom:985.719467pt;}
.y22_c00144{bottom:986.764747pt;}
.y3_c00144{bottom:1013.319467pt;}
.y2_c00144{bottom:1061.399467pt;}
.h2_c00144{height:44.800000pt;}
.h3_c00144{height:48.294844pt;}
.h6_c00144{height:63.479040pt;}
.h4_c00144{height:68.288000pt;}
.h5_c00144{height:69.376000pt;}
.h0_c00144{height:1122.520000pt;}
.h1_c00144{height:1122.666667pt;}
.w2_c00144{width:0.000000pt;}
.w3_c00144{width:0.058667pt;}
.w0_c00144{width:793.701333pt;}
.w1_c00144{width:794.000000pt;}
.x1_c00144{left:-745.700800pt;}
.x2_c00144{left:-680.260800pt;}
.x4_c00144{left:-661.300800pt;}
.x3_c00144{left:-651.860800pt;}
.x5_c00144{left:-642.420800pt;}
.x0_c00144{left:0.000000pt;}
.x9_c00144{left:113.440000pt;}
.x8_c00144{left:141.844400pt;}
.x7_c00144{left:616.400000pt;}
.x6_c00144{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00145;src:url('chunks/assets/font_94cd77900c1f068bb1123ab9.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00145;src:url('chunks/assets/font_7917f9d077bdb7bd90a14ded.woff2')format("woff");}.ff3_c00145{font-family:ff3_c00145;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00145;src:url('chunks/assets/font_342edb1507d8f6044cd6a54d.woff2')format("woff");}.ff4_c00145{font-family:ff4_c00145;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls5_c00145{letter-spacing:-0.216000px;}
.ls4_c00145{letter-spacing:-0.131760px;}
.ls6_c00145{letter-spacing:-0.065880px;}
.ls3_c00145{letter-spacing:0.000000px;}
.ls0_c00145{letter-spacing:0.072000px;}
.ls2_c00145{letter-spacing:0.197640px;}
.ls1_c00145{letter-spacing:18.504000px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00145{word-spacing:-0.131760px;}
.ws12_c00145{word-spacing:-0.072000px;}
.ws2_c00145{word-spacing:0.000000px;}
.ws3_c00145{word-spacing:0.131760px;}
.ws7_c00145{word-spacing:0.288000px;}
.ws8_c00145{word-spacing:0.360000px;}
.ws1f_c00145{word-spacing:0.988200px;}
.wse_c00145{word-spacing:1.728000px;}
.ws1c_c00145{word-spacing:2.088000px;}
.ws9_c00145{word-spacing:2.880000px;}
.ws20_c00145{word-spacing:4.084560px;}
.ws10_c00145{word-spacing:4.248000px;}
.ws1e_c00145{word-spacing:5.270400px;}
.ws19_c00145{word-spacing:5.688000px;}
.wsf_c00145{word-spacing:7.200000px;}
.wsa_c00145{word-spacing:7.920000px;}
.ws11_c00145{word-spacing:8.208000px;}
.ws0_c00145{word-spacing:11.023200px;}
.ws16_c00145{word-spacing:11.088000px;}
.ws15_c00145{word-spacing:11.160000px;}
.ws6_c00145{word-spacing:11.520000px;}
.ws1_c00145{word-spacing:11.664000px;}
.wsc_c00145{word-spacing:12.528000px;}
.wsb_c00145{word-spacing:12.600000px;}
.ws18_c00145{word-spacing:13.968000px;}
.ws17_c00145{word-spacing:14.040000px;}
.ws1a_c00145{word-spacing:14.688000px;}
.ws1b_c00145{word-spacing:14.760000px;}
.ws5_c00145{word-spacing:17.928000px;}
.wsd_c00145{word-spacing:18.360000px;}
.ws21_c00145{word-spacing:20.752200px;}
.ws13_c00145{word-spacing:22.248000px;}
.ws14_c00145{word-spacing:22.320000px;}
.ws1d_c00145{word-spacing:29.088000px;}
._1_c00145{margin-left:-1.008000px;}
._0_c00145{width:1.119960px;}
.fc1_c00145{color:rgb(0,0,0);}
.fc0_c00145{color:rgb(35,31,32);}
.fs1_c00145{font-size:65.880000px;}
.fs0_c00145{font-size:72.000000px;}
.y0_c00145{bottom:0.000000px;}
.y1_c00145{bottom:61.748550px;}
.y1e_c00145{bottom:158.086110px;}
.y1d_c00145{bottom:186.430980px;}
.y1c_c00145{bottom:214.957020px;}
.y1b_c00145{bottom:243.400710px;}
.y1a_c00145{bottom:271.844400px;}
.y19_c00145{bottom:332.774400px;}
.y18_c00145{bottom:363.824400px;}
.y17_c00145{bottom:394.874400px;}
.y16_c00145{bottom:425.924400px;}
.y15_c00145{bottom:456.974400px;}
.y14_c00145{bottom:519.074400px;}
.y13_c00145{bottom:550.124400px;}
.y12_c00145{bottom:581.174400px;}
.y11_c00145{bottom:612.224400px;}
.y10_c00145{bottom:674.324400px;}
.yf_c00145{bottom:705.374400px;}
.ye_c00145{bottom:736.424400px;}
.yd_c00145{bottom:767.474400px;}
.yc_c00145{bottom:798.434400px;}
.yb_c00145{bottom:829.484400px;}
.ya_c00145{bottom:860.534400px;}
.y9_c00145{bottom:922.634400px;}
.y8_c00145{bottom:953.684400px;}
.y7_c00145{bottom:984.734400px;}
.y6_c00145{bottom:1015.784400px;}
.y5_c00145{bottom:1077.884400px;}
.y4_c00145{bottom:1108.934400px;}
.y3_c00145{bottom:1139.984400px;}
.y2_c00145{bottom:1194.074400px;}
.h2_c00145{height:50.400000px;}
.h3_c00145{height:54.331699px;}
.h6_c00145{height:70.293960px;}
.h5_c00145{height:71.413920px;}
.h4_c00145{height:76.824000px;}
.h0_c00145{height:1262.835000px;}
.h1_c00145{height:1263.000000px;}
.w0_c00145{width:892.914000px;}
.w1_c00145{width:893.250000px;}
.x0_c00145{left:0.000000px;}
.x1_c00145{left:54.000000px;}
.x2_c00145{left:127.620000px;}
.x3_c00145{left:159.570000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls5_c00145{letter-spacing:-0.192000pt;}
.ls4_c00145{letter-spacing:-0.117120pt;}
.ls6_c00145{letter-spacing:-0.058560pt;}
.ls3_c00145{letter-spacing:0.000000pt;}
.ls0_c00145{letter-spacing:0.064000pt;}
.ls2_c00145{letter-spacing:0.175680pt;}
.ls1_c00145{letter-spacing:16.448000pt;}
.ws4_c00145{word-spacing:-0.117120pt;}
.ws12_c00145{word-spacing:-0.064000pt;}
.ws2_c00145{word-spacing:0.000000pt;}
.ws3_c00145{word-spacing:0.117120pt;}
.ws7_c00145{word-spacing:0.256000pt;}
.ws8_c00145{word-spacing:0.320000pt;}
.ws1f_c00145{word-spacing:0.878400pt;}
.wse_c00145{word-spacing:1.536000pt;}
.ws1c_c00145{word-spacing:1.856000pt;}
.ws9_c00145{word-spacing:2.560000pt;}
.ws20_c00145{word-spacing:3.630720pt;}
.ws10_c00145{word-spacing:3.776000pt;}
.ws1e_c00145{word-spacing:4.684800pt;}
.ws19_c00145{word-spacing:5.056000pt;}
.wsf_c00145{word-spacing:6.400000pt;}
.wsa_c00145{word-spacing:7.040000pt;}
.ws11_c00145{word-spacing:7.296000pt;}
.ws0_c00145{word-spacing:9.798400pt;}
.ws16_c00145{word-spacing:9.856000pt;}
.ws15_c00145{word-spacing:9.920000pt;}
.ws6_c00145{word-spacing:10.240000pt;}
.ws1_c00145{word-spacing:10.368000pt;}
.wsc_c00145{word-spacing:11.136000pt;}
.wsb_c00145{word-spacing:11.200000pt;}
.ws18_c00145{word-spacing:12.416000pt;}
.ws17_c00145{word-spacing:12.480000pt;}
.ws1a_c00145{word-spacing:13.056000pt;}
.ws1b_c00145{word-spacing:13.120000pt;}
.ws5_c00145{word-spacing:15.936000pt;}
.wsd_c00145{word-spacing:16.320000pt;}
.ws21_c00145{word-spacing:18.446400pt;}
.ws13_c00145{word-spacing:19.776000pt;}
.ws14_c00145{word-spacing:19.840000pt;}
.ws1d_c00145{word-spacing:25.856000pt;}
._1_c00145{margin-left:-0.896000pt;}
._0_c00145{width:0.995520pt;}
.fs1_c00145{font-size:58.560000pt;}
.fs0_c00145{font-size:64.000000pt;}
.y0_c00145{bottom:0.000000pt;}
.y1_c00145{bottom:54.887600pt;}
.y1e_c00145{bottom:140.520987pt;}
.y1d_c00145{bottom:165.716427pt;}
.y1c_c00145{bottom:191.072907pt;}
.y1b_c00145{bottom:216.356187pt;}
.y1a_c00145{bottom:241.639467pt;}
.y19_c00145{bottom:295.799467pt;}
.y18_c00145{bottom:323.399467pt;}
.y17_c00145{bottom:350.999467pt;}
.y16_c00145{bottom:378.599467pt;}
.y15_c00145{bottom:406.199467pt;}
.y14_c00145{bottom:461.399467pt;}
.y13_c00145{bottom:488.999467pt;}
.y12_c00145{bottom:516.599467pt;}
.y11_c00145{bottom:544.199467pt;}
.y10_c00145{bottom:599.399467pt;}
.yf_c00145{bottom:626.999467pt;}
.ye_c00145{bottom:654.599467pt;}
.yd_c00145{bottom:682.199467pt;}
.yc_c00145{bottom:709.719467pt;}
.yb_c00145{bottom:737.319467pt;}
.ya_c00145{bottom:764.919467pt;}
.y9_c00145{bottom:820.119467pt;}
.y8_c00145{bottom:847.719467pt;}
.y7_c00145{bottom:875.319467pt;}
.y6_c00145{bottom:902.919467pt;}
.y5_c00145{bottom:958.119467pt;}
.y4_c00145{bottom:985.719467pt;}
.y3_c00145{bottom:1013.319467pt;}
.y2_c00145{bottom:1061.399467pt;}
.h2_c00145{height:44.800000pt;}
.h3_c00145{height:48.294844pt;}
.h6_c00145{height:62.483520pt;}
.h5_c00145{height:63.479040pt;}
.h4_c00145{height:68.288000pt;}
.h0_c00145{height:1122.520000pt;}
.h1_c00145{height:1122.666667pt;}
.w0_c00145{width:793.701333pt;}
.w1_c00145{width:794.000000pt;}
.x0_c00145{left:0.000000pt;}
.x1_c00145{left:48.000000pt;}
.x2_c00145{left:113.440000pt;}
.x3_c00145{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00146;src:url('chunks/assets/font_c1e163748c076db7d1399e40.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00146;src:url('chunks/assets/font_0e30292d6256794f3adfbdf1.woff2')format("woff");}.ff3_c00146{font-family:ff3_c00146;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00146;src:url('chunks/assets/font_c3707932f9c914068d8e85d0.woff2')format("woff");}.ff4_c00146{font-family:ff4_c00146;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00146;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00146{font-family:ff5_c00146;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00146;src:url('chunks/assets/font_6dd2e09918e060f401b9a63d.woff2')format("woff");}.ff6_c00146{font-family:ff6_c00146;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00146;src:url('chunks/assets/font_0bf96bc7cebf07b669480e67.woff2')format("woff");}.ff7_c00146{font-family:ff7_c00146;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00146;src:url('chunks/assets/font_ce8011a938edf0104248e14d.woff2')format("woff");}.ff8_c00146{font-family:ff8_c00146;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00146{letter-spacing:-0.216000px;}
.ls5_c00146{letter-spacing:-0.131760px;}
.ls7_c00146{letter-spacing:-0.065880px;}
.ls4_c00146{letter-spacing:0.000000px;}
.ls0_c00146{letter-spacing:0.072000px;}
.ls3_c00146{letter-spacing:0.144000px;}
.ls2_c00146{letter-spacing:0.197640px;}
.ls1_c00146{letter-spacing:18.504000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00146{word-spacing:-0.131760px;}
.ws13_c00146{word-spacing:-0.072000px;}
.ws3_c00146{word-spacing:0.000000px;}
.ws4_c00146{word-spacing:0.131760px;}
.ws8_c00146{word-spacing:0.288000px;}
.ws9_c00146{word-spacing:0.360000px;}
.ws20_c00146{word-spacing:0.988200px;}
.wsf_c00146{word-spacing:1.728000px;}
.ws1d_c00146{word-spacing:2.088000px;}
.wsa_c00146{word-spacing:2.880000px;}
.ws21_c00146{word-spacing:4.084560px;}
.ws11_c00146{word-spacing:4.248000px;}
.ws1f_c00146{word-spacing:5.270400px;}
.ws1a_c00146{word-spacing:5.688000px;}
.ws28_c00146{word-spacing:6.480000px;}
.ws23_c00146{word-spacing:6.840000px;}
.ws10_c00146{word-spacing:7.200000px;}
.ws27_c00146{word-spacing:7.488000px;}
.wsb_c00146{word-spacing:7.920000px;}
.ws12_c00146{word-spacing:8.208000px;}
.ws2c_c00146{word-spacing:10.728000px;}
.ws2b_c00146{word-spacing:10.800000px;}
.ws2_c00146{word-spacing:11.016000px;}
.ws0_c00146{word-spacing:11.023200px;}
.ws17_c00146{word-spacing:11.088000px;}
.ws16_c00146{word-spacing:11.160000px;}
.ws7_c00146{word-spacing:11.520000px;}
.ws1_c00146{word-spacing:11.664000px;}
.wsd_c00146{word-spacing:12.528000px;}
.wsc_c00146{word-spacing:12.600000px;}
.ws19_c00146{word-spacing:13.968000px;}
.ws18_c00146{word-spacing:14.040000px;}
.ws1b_c00146{word-spacing:14.688000px;}
.ws1c_c00146{word-spacing:14.760000px;}
.ws29_c00146{word-spacing:16.560000px;}
.ws2a_c00146{word-spacing:16.776000px;}
.ws6_c00146{word-spacing:17.928000px;}
.wse_c00146{word-spacing:18.360000px;}
.ws22_c00146{word-spacing:20.752200px;}
.ws14_c00146{word-spacing:22.248000px;}
.ws15_c00146{word-spacing:22.320000px;}
.ws1e_c00146{word-spacing:29.088000px;}
.ws25_c00146{word-spacing:34.056000px;}
.ws26_c00146{word-spacing:34.128000px;}
.ws24_c00146{word-spacing:34.200000px;}
._1_c00146{margin-left:-1.008000px;}
._0_c00146{width:1.119960px;}
.fc2_c00146{color:transparent;}
.fc1_c00146{color:rgb(0,0,0);}
.fc0_c00146{color:rgb(35,31,32);}
.fs1_c00146{font-size:65.880000px;}
.fs0_c00146{font-size:72.000000px;}
.y0_c00146{bottom:0.000000px;}
.y1_c00146{bottom:61.748550px;}
.y34_c00146{bottom:129.264600px;}
.y1e_c00146{bottom:158.086110px;}
.y33_c00146{bottom:167.425590px;}
.y1d_c00146{bottom:186.430980px;}
.y32_c00146{bottom:205.586580px;}
.y1c_c00146{bottom:214.957020px;}
.y1b_c00146{bottom:243.400710px;}
.y31_c00146{bottom:243.747570px;}
.y1a_c00146{bottom:271.844400px;}
.y30_c00146{bottom:281.908560px;}
.y2f_c00146{bottom:320.069550px;}
.y19_c00146{bottom:332.774400px;}
.y2e_c00146{bottom:358.230540px;}
.y18_c00146{bottom:363.824400px;}
.y17_c00146{bottom:394.874400px;}
.y2d_c00146{bottom:396.391530px;}
.y16_c00146{bottom:425.924400px;}
.y2c_c00146{bottom:434.552520px;}
.y15_c00146{bottom:456.974400px;}
.y2b_c00146{bottom:472.713510px;}
.y2a_c00146{bottom:510.874500px;}
.y14_c00146{bottom:519.074400px;}
.y29_c00146{bottom:549.035490px;}
.y13_c00146{bottom:550.124400px;}
.y12_c00146{bottom:581.174400px;}
.y28_c00146{bottom:587.196480px;}
.y11_c00146{bottom:612.224400px;}
.y27_c00146{bottom:625.357470px;}
.y26_c00146{bottom:663.518460px;}
.y10_c00146{bottom:674.324400px;}
.y25_c00146{bottom:701.679450px;}
.yf_c00146{bottom:705.374400px;}
.ye_c00146{bottom:736.424400px;}
.y24_c00146{bottom:739.840440px;}
.yd_c00146{bottom:767.474400px;}
.y23_c00146{bottom:778.001430px;}
.yc_c00146{bottom:798.434400px;}
.y22_c00146{bottom:816.162420px;}
.yb_c00146{bottom:829.484400px;}
.y21_c00146{bottom:854.323410px;}
.ya_c00146{bottom:860.534400px;}
.y20_c00146{bottom:892.484400px;}
.y9_c00146{bottom:922.634400px;}
.y8_c00146{bottom:953.684400px;}
.y7_c00146{bottom:984.734400px;}
.y6_c00146{bottom:1015.784400px;}
.y1f_c00146{bottom:1046.834400px;}
.y5_c00146{bottom:1077.884400px;}
.y4_c00146{bottom:1108.934400px;}
.y3_c00146{bottom:1139.984400px;}
.y2_c00146{bottom:1194.074400px;}
.h2_c00146{height:50.400000px;}
.h3_c00146{height:54.331699px;}
.h6_c00146{height:70.293960px;}
.h5_c00146{height:71.413920px;}
.h4_c00146{height:76.824000px;}
.h0_c00146{height:1262.835000px;}
.h1_c00146{height:1263.000000px;}
.w2_c00146{width:0.000000px;}
.w3_c00146{width:0.066000px;}
.w0_c00146{width:892.914000px;}
.w1_c00146{width:893.250000px;}
.x1_c00146{left:-838.913400px;}
.x2_c00146{left:-765.293400px;}
.x3_c00146{left:-733.343400px;}
.x0_c00146{left:0.000000px;}
.x7_c00146{left:127.620000px;}
.x6_c00146{left:159.570000px;}
.x5_c00146{left:693.450000px;}
.x4_c00146{left:804.366150px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls6_c00146{letter-spacing:-0.192000pt;}
.ls5_c00146{letter-spacing:-0.117120pt;}
.ls7_c00146{letter-spacing:-0.058560pt;}
.ls4_c00146{letter-spacing:0.000000pt;}
.ls0_c00146{letter-spacing:0.064000pt;}
.ls3_c00146{letter-spacing:0.128000pt;}
.ls2_c00146{letter-spacing:0.175680pt;}
.ls1_c00146{letter-spacing:16.448000pt;}
.ws5_c00146{word-spacing:-0.117120pt;}
.ws13_c00146{word-spacing:-0.064000pt;}
.ws3_c00146{word-spacing:0.000000pt;}
.ws4_c00146{word-spacing:0.117120pt;}
.ws8_c00146{word-spacing:0.256000pt;}
.ws9_c00146{word-spacing:0.320000pt;}
.ws20_c00146{word-spacing:0.878400pt;}
.wsf_c00146{word-spacing:1.536000pt;}
.ws1d_c00146{word-spacing:1.856000pt;}
.wsa_c00146{word-spacing:2.560000pt;}
.ws21_c00146{word-spacing:3.630720pt;}
.ws11_c00146{word-spacing:3.776000pt;}
.ws1f_c00146{word-spacing:4.684800pt;}
.ws1a_c00146{word-spacing:5.056000pt;}
.ws28_c00146{word-spacing:5.760000pt;}
.ws23_c00146{word-spacing:6.080000pt;}
.ws10_c00146{word-spacing:6.400000pt;}
.ws27_c00146{word-spacing:6.656000pt;}
.wsb_c00146{word-spacing:7.040000pt;}
.ws12_c00146{word-spacing:7.296000pt;}
.ws2c_c00146{word-spacing:9.536000pt;}
.ws2b_c00146{word-spacing:9.600000pt;}
.ws2_c00146{word-spacing:9.792000pt;}
.ws0_c00146{word-spacing:9.798400pt;}
.ws17_c00146{word-spacing:9.856000pt;}
.ws16_c00146{word-spacing:9.920000pt;}
.ws7_c00146{word-spacing:10.240000pt;}
.ws1_c00146{word-spacing:10.368000pt;}
.wsd_c00146{word-spacing:11.136000pt;}
.wsc_c00146{word-spacing:11.200000pt;}
.ws19_c00146{word-spacing:12.416000pt;}
.ws18_c00146{word-spacing:12.480000pt;}
.ws1b_c00146{word-spacing:13.056000pt;}
.ws1c_c00146{word-spacing:13.120000pt;}
.ws29_c00146{word-spacing:14.720000pt;}
.ws2a_c00146{word-spacing:14.912000pt;}
.ws6_c00146{word-spacing:15.936000pt;}
.wse_c00146{word-spacing:16.320000pt;}
.ws22_c00146{word-spacing:18.446400pt;}
.ws14_c00146{word-spacing:19.776000pt;}
.ws15_c00146{word-spacing:19.840000pt;}
.ws1e_c00146{word-spacing:25.856000pt;}
.ws25_c00146{word-spacing:30.272000pt;}
.ws26_c00146{word-spacing:30.336000pt;}
.ws24_c00146{word-spacing:30.400000pt;}
._1_c00146{margin-left:-0.896000pt;}
._0_c00146{width:0.995520pt;}
.fs1_c00146{font-size:58.560000pt;}
.fs0_c00146{font-size:64.000000pt;}
.y0_c00146{bottom:0.000000pt;}
.y1_c00146{bottom:54.887600pt;}
.y34_c00146{bottom:114.901867pt;}
.y1e_c00146{bottom:140.520987pt;}
.y33_c00146{bottom:148.822747pt;}
.y1d_c00146{bottom:165.716427pt;}
.y32_c00146{bottom:182.743627pt;}
.y1c_c00146{bottom:191.072907pt;}
.y1b_c00146{bottom:216.356187pt;}
.y31_c00146{bottom:216.664507pt;}
.y1a_c00146{bottom:241.639467pt;}
.y30_c00146{bottom:250.585387pt;}
.y2f_c00146{bottom:284.506267pt;}
.y19_c00146{bottom:295.799467pt;}
.y2e_c00146{bottom:318.427147pt;}
.y18_c00146{bottom:323.399467pt;}
.y17_c00146{bottom:350.999467pt;}
.y2d_c00146{bottom:352.348027pt;}
.y16_c00146{bottom:378.599467pt;}
.y2c_c00146{bottom:386.268907pt;}
.y15_c00146{bottom:406.199467pt;}
.y2b_c00146{bottom:420.189787pt;}
.y2a_c00146{bottom:454.110667pt;}
.y14_c00146{bottom:461.399467pt;}
.y29_c00146{bottom:488.031547pt;}
.y13_c00146{bottom:488.999467pt;}
.y12_c00146{bottom:516.599467pt;}
.y28_c00146{bottom:521.952427pt;}
.y11_c00146{bottom:544.199467pt;}
.y27_c00146{bottom:555.873307pt;}
.y26_c00146{bottom:589.794187pt;}
.y10_c00146{bottom:599.399467pt;}
.y25_c00146{bottom:623.715067pt;}
.yf_c00146{bottom:626.999467pt;}
.ye_c00146{bottom:654.599467pt;}
.y24_c00146{bottom:657.635947pt;}
.yd_c00146{bottom:682.199467pt;}
.y23_c00146{bottom:691.556827pt;}
.yc_c00146{bottom:709.719467pt;}
.y22_c00146{bottom:725.477707pt;}
.yb_c00146{bottom:737.319467pt;}
.y21_c00146{bottom:759.398587pt;}
.ya_c00146{bottom:764.919467pt;}
.y20_c00146{bottom:793.319467pt;}
.y9_c00146{bottom:820.119467pt;}
.y8_c00146{bottom:847.719467pt;}
.y7_c00146{bottom:875.319467pt;}
.y6_c00146{bottom:902.919467pt;}
.y1f_c00146{bottom:930.519467pt;}
.y5_c00146{bottom:958.119467pt;}
.y4_c00146{bottom:985.719467pt;}
.y3_c00146{bottom:1013.319467pt;}
.y2_c00146{bottom:1061.399467pt;}
.h2_c00146{height:44.800000pt;}
.h3_c00146{height:48.294844pt;}
.h6_c00146{height:62.483520pt;}
.h5_c00146{height:63.479040pt;}
.h4_c00146{height:68.288000pt;}
.h0_c00146{height:1122.520000pt;}
.h1_c00146{height:1122.666667pt;}
.w2_c00146{width:0.000000pt;}
.w3_c00146{width:0.058667pt;}
.w0_c00146{width:793.701333pt;}
.w1_c00146{width:794.000000pt;}
.x1_c00146{left:-745.700800pt;}
.x2_c00146{left:-680.260800pt;}
.x3_c00146{left:-651.860800pt;}
.x0_c00146{left:0.000000pt;}
.x7_c00146{left:113.440000pt;}
.x6_c00146{left:141.840000pt;}
.x5_c00146{left:616.400000pt;}
.x4_c00146{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00147{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
}
.y0_c00147{bottom:0.000000px;}
.h0_c00147{height:1262.835000px;}
.h1_c00147{height:1263.000000px;}
.w0_c00147{width:892.914000px;}
.w1_c00147{width:893.250000px;}
.x0_c00147{left:0.000000px;}
@media print{
.y0_c00147{bottom:0.000000pt;}
.h0_c00147{height:1122.520000pt;}
.h1_c00147{height:1122.666667pt;}
.w0_c00147{width:793.701333pt;}
.w1_c00147{width:794.000000pt;}
.x0_c00147{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_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;}
.sc__c00148{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
}
.y0_c00148{bottom:0.000000px;}
.h0_c00148{height:1262.835000px;}
.h1_c00148{height:1263.000000px;}
.w0_c00148{width:892.914000px;}
.w1_c00148{width:893.250000px;}
.x0_c00148{left:0.000000px;}
@media print{
.y0_c00148{bottom:0.000000pt;}
.h0_c00148{height:1122.520000pt;}
.h1_c00148{height:1122.666667pt;}
.w0_c00148{width:793.701333pt;}
.w1_c00148{width:794.000000pt;}
.x0_c00148{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_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;}
.sc__c00149{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
}
.y0_c00149{bottom:0.000000px;}
.h0_c00149{height:1262.835000px;}
.h1_c00149{height:1263.000000px;}
.w0_c00149{width:892.914000px;}
.w1_c00149{width:893.250000px;}
.x0_c00149{left:0.000000px;}
@media print{
.y0_c00149{bottom:0.000000pt;}
.h0_c00149{height:1122.520000pt;}
.h1_c00149{height:1122.666667pt;}
.w0_c00149{width:793.701333pt;}
.w1_c00149{width:794.000000pt;}
.x0_c00149{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_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_fd789b14f8ee0f4f3f4b151f.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls2_c00150{letter-spacing:-0.144000px;}
.ls1_c00150{letter-spacing:-0.065880px;}
.ls3_c00150{letter-spacing:0.000000px;}
.ls0_c00150{letter-spacing:0.072000px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00150{word-spacing:-18.072000px;}
.ws0_c00150{word-spacing:-17.856000px;}
.ws8_c00150{word-spacing:-0.072000px;}
.ws2_c00150{word-spacing:0.131760px;}
.ws5_c00150{word-spacing:4.968000px;}
.ws4_c00150{word-spacing:8.568000px;}
.ws7_c00150{word-spacing:10.008000px;}
.ws6_c00150{word-spacing:11.520000px;}
.ws3_c00150{word-spacing:11.880000px;}
._1_c00150{margin-left:-1.152000px;}
._0_c00150{width:1.113372px;}
.fc0_c00150{color:rgb(0,0,0);}
.fs0_c00150{font-size:65.880000px;}
.fs1_c00150{font-size:72.000000px;}
.y0_c00150{bottom:0.000000px;}
.y9_c00150{bottom:625.094250px;}
.y8_c00150{bottom:656.144250px;}
.y7_c00150{bottom:687.194250px;}
.y6_c00150{bottom:718.244250px;}
.y5_c00150{bottom:749.294250px;}
.y4_c00150{bottom:780.344250px;}
.y3_c00150{bottom:842.444250px;}
.y2_c00150{bottom:1027.387260px;}
.y1_c00150{bottom:1055.830950px;}
.h2_c00150{height:70.293960px;}
.h3_c00150{height:76.824000px;}
.h0_c00150{height:1262.835000px;}
.h1_c00150{height:1263.000000px;}
.w0_c00150{width:892.914000px;}
.w1_c00150{width:893.250000px;}
.x0_c00150{left:0.000000px;}
.x1_c00150{left:127.620000px;}
.x2_c00150{left:159.570000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls2_c00150{letter-spacing:-0.128000pt;}
.ls1_c00150{letter-spacing:-0.058560pt;}
.ls3_c00150{letter-spacing:0.000000pt;}
.ls0_c00150{letter-spacing:0.064000pt;}
.ws1_c00150{word-spacing:-16.064000pt;}
.ws0_c00150{word-spacing:-15.872000pt;}
.ws8_c00150{word-spacing:-0.064000pt;}
.ws2_c00150{word-spacing:0.117120pt;}
.ws5_c00150{word-spacing:4.416000pt;}
.ws4_c00150{word-spacing:7.616000pt;}
.ws7_c00150{word-spacing:8.896000pt;}
.ws6_c00150{word-spacing:10.240000pt;}
.ws3_c00150{word-spacing:10.560000pt;}
._1_c00150{margin-left:-1.024000pt;}
._0_c00150{width:0.989664pt;}
.fs0_c00150{font-size:58.560000pt;}
.fs1_c00150{font-size:64.000000pt;}
.y0_c00150{bottom:0.000000pt;}
.y9_c00150{bottom:555.639333pt;}
.y8_c00150{bottom:583.239333pt;}
.y7_c00150{bottom:610.839333pt;}
.y6_c00150{bottom:638.439333pt;}
.y5_c00150{bottom:666.039333pt;}
.y4_c00150{bottom:693.639333pt;}
.y3_c00150{bottom:748.839333pt;}
.y2_c00150{bottom:913.233120pt;}
.y1_c00150{bottom:938.516400pt;}
.h2_c00150{height:62.483520pt;}
.h3_c00150{height:68.288000pt;}
.h0_c00150{height:1122.520000pt;}
.h1_c00150{height:1122.666667pt;}
.w0_c00150{width:793.701333pt;}
.w1_c00150{width:794.000000pt;}
.x0_c00150{left:0.000000pt;}
.x1_c00150{left:113.440000pt;}
.x2_c00150{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00151{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00151{-webkit-text-stroke:0px transparent;}
}
.y0_c00151{bottom:0.000000px;}
.h0_c00151{height:1262.835000px;}
.h1_c00151{height:1263.000000px;}
.w0_c00151{width:892.914000px;}
.w1_c00151{width:893.250000px;}
.x0_c00151{left:0.000000px;}
@media print{
.y0_c00151{bottom:0.000000pt;}
.h0_c00151{height:1122.520000pt;}
.h1_c00151{height:1122.666667pt;}
.w0_c00151{width:793.701333pt;}
.w1_c00151{width:794.000000pt;}
.x0_c00151{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_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00152;src:url('chunks/assets/font_36df6061e0ec332fdbb3e142.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00152;src:url('chunks/assets/font_6c7a83eb340077bcee095be1.woff2')format("woff");}.ff3_c00152{font-family:ff3_c00152;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00152;src:url('chunks/assets/font_24dd943635cea75695ed86fd.woff2')format("woff");}.ff4_c00152{font-family:ff4_c00152;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00152;src:url('chunks/assets/font_187a68662ac99e76c0e9d922.woff2')format("woff");}.ff5_c00152{font-family:ff5_c00152;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00152{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.lsb_c00152{letter-spacing:-0.216000px;}
.lsa_c00152{letter-spacing:-0.072000px;}
.ls9_c00152{letter-spacing:0.000000px;}
.ls0_c00152{letter-spacing:0.072000px;}
.ls1_c00152{letter-spacing:0.144000px;}
.ls2_c00152{letter-spacing:0.360000px;}
.ls8_c00152{letter-spacing:20.520000px;}
.ls3_c00152{letter-spacing:22.680000px;}
.ls6_c00152{letter-spacing:28.440000px;}
.ls7_c00152{letter-spacing:41.184000px;}
.ls5_c00152{letter-spacing:57.024000px;}
.ls4_c00152{letter-spacing:59.544000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00152{word-spacing:-18.072000px;}
.ws3_c00152{word-spacing:-18.000000px;}
.ws26_c00152{word-spacing:-0.432000px;}
.ws6_c00152{word-spacing:-0.131760px;}
.ws7_c00152{word-spacing:-0.072000px;}
.ws5_c00152{word-spacing:0.000000px;}
.ws14_c00152{word-spacing:0.072000px;}
.ws1e_c00152{word-spacing:0.216000px;}
.wsf_c00152{word-spacing:0.288000px;}
.ws9_c00152{word-spacing:1.368000px;}
.ws18_c00152{word-spacing:1.800000px;}
.wsd_c00152{word-spacing:2.160000px;}
.wse_c00152{word-spacing:2.376000px;}
.wsc_c00152{word-spacing:2.448000px;}
.ws21_c00152{word-spacing:2.520000px;}
.ws27_c00152{word-spacing:2.808000px;}
.ws28_c00152{word-spacing:2.880000px;}
.ws22_c00152{word-spacing:3.528000px;}
.ws23_c00152{word-spacing:3.600000px;}
.ws20_c00152{word-spacing:4.248000px;}
.ws13_c00152{word-spacing:4.320000px;}
.ws15_c00152{word-spacing:4.680000px;}
.ws16_c00152{word-spacing:5.976000px;}
.ws17_c00152{word-spacing:6.408000px;}
.ws24_c00152{word-spacing:7.488000px;}
.ws1f_c00152{word-spacing:10.440000px;}
.ws19_c00152{word-spacing:14.328000px;}
.ws12_c00152{word-spacing:14.616000px;}
.ws1a_c00152{word-spacing:16.848000px;}
.ws1b_c00152{word-spacing:17.280000px;}
.ws2_c00152{word-spacing:17.640000px;}
.ws29_c00152{word-spacing:18.648000px;}
.ws8_c00152{word-spacing:21.168000px;}
.ws1_c00152{word-spacing:21.384000px;}
.ws1d_c00152{word-spacing:29.088000px;}
.ws1c_c00152{word-spacing:29.376000px;}
.ws25_c00152{word-spacing:30.240000px;}
.wsb_c00152{word-spacing:31.608000px;}
.wsa_c00152{word-spacing:31.680000px;}
.ws10_c00152{word-spacing:31.968000px;}
.ws11_c00152{word-spacing:32.040000px;}
.ws0_c00152{word-spacing:55.800000px;}
._0_c00152{margin-left:-1.008000px;}
._1_c00152{width:1.296000px;}
._4_c00152{width:2.736000px;}
._2_c00152{width:4.176000px;}
._3_c00152{width:10.584000px;}
.fc1_c00152{color:rgb(0,0,0);}
.fc0_c00152{color:rgb(35,31,32);}
.fs1_c00152{font-size:65.880000px;}
.fs0_c00152{font-size:72.000000px;}
.y0_c00152{bottom:0.000000px;}
.y1_c00152{bottom:61.748550px;}
.y1f_c00152{bottom:138.194400px;}
.y1e_c00152{bottom:169.244400px;}
.y1d_c00152{bottom:200.294400px;}
.y1c_c00152{bottom:262.394400px;}
.y1b_c00152{bottom:293.444400px;}
.y1a_c00152{bottom:324.494400px;}
.y19_c00152{bottom:355.544400px;}
.y18_c00152{bottom:386.594400px;}
.y17_c00152{bottom:417.644400px;}
.y16_c00152{bottom:448.694400px;}
.y15_c00152{bottom:479.744400px;}
.y14_c00152{bottom:510.794400px;}
.y13_c00152{bottom:541.844400px;}
.y12_c00152{bottom:572.894400px;}
.y11_c00152{bottom:603.944400px;}
.y10_c00152{bottom:634.994400px;}
.yf_c00152{bottom:666.044400px;}
.ye_c00152{bottom:697.094400px;}
.yd_c00152{bottom:728.144400px;}
.yc_c00152{bottom:759.194400px;}
.yb_c00152{bottom:821.294400px;}
.ya_c00152{bottom:852.344400px;}
.y9_c00152{bottom:883.394400px;}
.y8_c00152{bottom:914.444400px;}
.y7_c00152{bottom:945.404400px;}
.y6_c00152{bottom:976.454400px;}
.y5_c00152{bottom:1007.504400px;}
.y4_c00152{bottom:1038.554400px;}
.y3_c00152{bottom:1100.924400px;}
.y2_c00152{bottom:1194.074400px;}
.h2_c00152{height:50.400000px;}
.h3_c00152{height:54.331699px;}
.h4_c00152{height:76.824000px;}
.h5_c00152{height:78.048000px;}
.h0_c00152{height:1262.835000px;}
.h1_c00152{height:1263.000000px;}
.w0_c00152{width:892.914000px;}
.w1_c00152{width:893.250000px;}
.x0_c00152{left:0.000000px;}
.x3_c00152{left:127.620000px;}
.x4_c00152{left:148.950000px;}
.x5_c00152{left:170.190000px;}
.x2_c00152{left:692.370000px;}
.x1_c00152{left:804.366150px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.lsb_c00152{letter-spacing:-0.192000pt;}
.lsa_c00152{letter-spacing:-0.064000pt;}
.ls9_c00152{letter-spacing:0.000000pt;}
.ls0_c00152{letter-spacing:0.064000pt;}
.ls1_c00152{letter-spacing:0.128000pt;}
.ls2_c00152{letter-spacing:0.320000pt;}
.ls8_c00152{letter-spacing:18.240000pt;}
.ls3_c00152{letter-spacing:20.160000pt;}
.ls6_c00152{letter-spacing:25.280000pt;}
.ls7_c00152{letter-spacing:36.608000pt;}
.ls5_c00152{letter-spacing:50.688000pt;}
.ls4_c00152{letter-spacing:52.928000pt;}
.ws4_c00152{word-spacing:-16.064000pt;}
.ws3_c00152{word-spacing:-16.000000pt;}
.ws26_c00152{word-spacing:-0.384000pt;}
.ws6_c00152{word-spacing:-0.117120pt;}
.ws7_c00152{word-spacing:-0.064000pt;}
.ws5_c00152{word-spacing:0.000000pt;}
.ws14_c00152{word-spacing:0.064000pt;}
.ws1e_c00152{word-spacing:0.192000pt;}
.wsf_c00152{word-spacing:0.256000pt;}
.ws9_c00152{word-spacing:1.216000pt;}
.ws18_c00152{word-spacing:1.600000pt;}
.wsd_c00152{word-spacing:1.920000pt;}
.wse_c00152{word-spacing:2.112000pt;}
.wsc_c00152{word-spacing:2.176000pt;}
.ws21_c00152{word-spacing:2.240000pt;}
.ws27_c00152{word-spacing:2.496000pt;}
.ws28_c00152{word-spacing:2.560000pt;}
.ws22_c00152{word-spacing:3.136000pt;}
.ws23_c00152{word-spacing:3.200000pt;}
.ws20_c00152{word-spacing:3.776000pt;}
.ws13_c00152{word-spacing:3.840000pt;}
.ws15_c00152{word-spacing:4.160000pt;}
.ws16_c00152{word-spacing:5.312000pt;}
.ws17_c00152{word-spacing:5.696000pt;}
.ws24_c00152{word-spacing:6.656000pt;}
.ws1f_c00152{word-spacing:9.280000pt;}
.ws19_c00152{word-spacing:12.736000pt;}
.ws12_c00152{word-spacing:12.992000pt;}
.ws1a_c00152{word-spacing:14.976000pt;}
.ws1b_c00152{word-spacing:15.360000pt;}
.ws2_c00152{word-spacing:15.680000pt;}
.ws29_c00152{word-spacing:16.576000pt;}
.ws8_c00152{word-spacing:18.816000pt;}
.ws1_c00152{word-spacing:19.008000pt;}
.ws1d_c00152{word-spacing:25.856000pt;}
.ws1c_c00152{word-spacing:26.112000pt;}
.ws25_c00152{word-spacing:26.880000pt;}
.wsb_c00152{word-spacing:28.096000pt;}
.wsa_c00152{word-spacing:28.160000pt;}
.ws10_c00152{word-spacing:28.416000pt;}
.ws11_c00152{word-spacing:28.480000pt;}
.ws0_c00152{word-spacing:49.600000pt;}
._0_c00152{margin-left:-0.896000pt;}
._1_c00152{width:1.152000pt;}
._4_c00152{width:2.432000pt;}
._2_c00152{width:3.712000pt;}
._3_c00152{width:9.408000pt;}
.fs1_c00152{font-size:58.560000pt;}
.fs0_c00152{font-size:64.000000pt;}
.y0_c00152{bottom:0.000000pt;}
.y1_c00152{bottom:54.887600pt;}
.y1f_c00152{bottom:122.839467pt;}
.y1e_c00152{bottom:150.439467pt;}
.y1d_c00152{bottom:178.039467pt;}
.y1c_c00152{bottom:233.239467pt;}
.y1b_c00152{bottom:260.839467pt;}
.y1a_c00152{bottom:288.439467pt;}
.y19_c00152{bottom:316.039467pt;}
.y18_c00152{bottom:343.639467pt;}
.y17_c00152{bottom:371.239467pt;}
.y16_c00152{bottom:398.839467pt;}
.y15_c00152{bottom:426.439467pt;}
.y14_c00152{bottom:454.039467pt;}
.y13_c00152{bottom:481.639467pt;}
.y12_c00152{bottom:509.239467pt;}
.y11_c00152{bottom:536.839467pt;}
.y10_c00152{bottom:564.439467pt;}
.yf_c00152{bottom:592.039467pt;}
.ye_c00152{bottom:619.639467pt;}
.yd_c00152{bottom:647.239467pt;}
.yc_c00152{bottom:674.839467pt;}
.yb_c00152{bottom:730.039467pt;}
.ya_c00152{bottom:757.639467pt;}
.y9_c00152{bottom:785.239467pt;}
.y8_c00152{bottom:812.839467pt;}
.y7_c00152{bottom:840.359467pt;}
.y6_c00152{bottom:867.959467pt;}
.y5_c00152{bottom:895.559467pt;}
.y4_c00152{bottom:923.159467pt;}
.y3_c00152{bottom:978.599467pt;}
.y2_c00152{bottom:1061.399467pt;}
.h2_c00152{height:44.800000pt;}
.h3_c00152{height:48.294844pt;}
.h4_c00152{height:68.288000pt;}
.h5_c00152{height:69.376000pt;}
.h0_c00152{height:1122.520000pt;}
.h1_c00152{height:1122.666667pt;}
.w0_c00152{width:793.701333pt;}
.w1_c00152{width:794.000000pt;}
.x0_c00152{left:0.000000pt;}
.x3_c00152{left:113.440000pt;}
.x4_c00152{left:132.400000pt;}
.x5_c00152{left:151.280000pt;}
.x2_c00152{left:615.440000pt;}
.x1_c00152{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00153;src:url('chunks/assets/font_32262aaa3bfbe7effe29e92e.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00153;src:url('chunks/assets/font_9997244a914981ff918a310b.woff2')format("woff");}.ff3_c00153{font-family:ff3_c00153;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00153;src:url('chunks/assets/font_a34ceef40c8d818a17f53443.woff2')format("woff");}.ff4_c00153{font-family:ff4_c00153;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.lsb_c00153{letter-spacing:-0.288000px;}
.lsd_c00153{letter-spacing:-0.216000px;}
.lsc_c00153{letter-spacing:-0.072000px;}
.lsa_c00153{letter-spacing:0.000000px;}
.ls0_c00153{letter-spacing:0.072000px;}
.ls4_c00153{letter-spacing:0.144000px;}
.ls3_c00153{letter-spacing:20.880000px;}
.ls5_c00153{letter-spacing:22.716000px;}
.ls8_c00153{letter-spacing:23.472000px;}
.ls7_c00153{letter-spacing:27.144000px;}
.ls9_c00153{letter-spacing:29.664000px;}
.ls6_c00153{letter-spacing:34.200000px;}
.ls2_c00153{letter-spacing:42.624000px;}
.ls1_c00153{letter-spacing:64.224000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00153{word-spacing:-18.000000px;}
.ws0_c00153{word-spacing:-14.888880px;}
.ws4_c00153{word-spacing:-0.216000px;}
.ws16_c00153{word-spacing:-0.072000px;}
.wsc_c00153{word-spacing:0.000000px;}
.ws1_c00153{word-spacing:0.072000px;}
.wsa_c00153{word-spacing:0.216000px;}
.ws22_c00153{word-spacing:0.288000px;}
.ws8_c00153{word-spacing:0.720000px;}
.ws3_c00153{word-spacing:1.368000px;}
.ws13_c00153{word-spacing:2.448000px;}
.ws14_c00153{word-spacing:2.520000px;}
.ws2_c00153{word-spacing:2.880000px;}
.ws17_c00153{word-spacing:3.240000px;}
.ws18_c00153{word-spacing:3.600000px;}
.ws1d_c00153{word-spacing:4.608000px;}
.ws15_c00153{word-spacing:4.680000px;}
.ws1c_c00153{word-spacing:4.968000px;}
.ws9_c00153{word-spacing:5.112000px;}
.ws6_c00153{word-spacing:5.184000px;}
.ws28_c00153{word-spacing:5.256000px;}
.ws1a_c00153{word-spacing:5.328000px;}
.ws19_c00153{word-spacing:5.400000px;}
.ws7_c00153{word-spacing:5.472000px;}
.ws2d_c00153{word-spacing:6.120000px;}
.wsd_c00153{word-spacing:8.169120px;}
.ws25_c00153{word-spacing:8.568000px;}
.ws24_c00153{word-spacing:8.928000px;}
.ws23_c00153{word-spacing:9.000000px;}
.wse_c00153{word-spacing:9.576000px;}
.ws1e_c00153{word-spacing:9.648000px;}
.wsf_c00153{word-spacing:9.720000px;}
.ws29_c00153{word-spacing:11.376000px;}
.ws2a_c00153{word-spacing:11.448000px;}
.ws12_c00153{word-spacing:13.968000px;}
.ws10_c00153{word-spacing:14.040000px;}
.ws11_c00153{word-spacing:14.400000px;}
.ws1f_c00153{word-spacing:15.336000px;}
.ws20_c00153{word-spacing:15.480000px;}
.ws2c_c00153{word-spacing:15.768000px;}
.wsb_c00153{word-spacing:15.840000px;}
.ws21_c00153{word-spacing:16.200000px;}
.ws26_c00153{word-spacing:18.648000px;}
.ws27_c00153{word-spacing:18.720000px;}
.ws2b_c00153{word-spacing:20.448000px;}
.ws1b_c00153{word-spacing:35.568000px;}
._1_c00153{margin-left:-1.173600px;}
._0_c00153{width:1.054080px;}
._5_c00153{width:9.216000px;}
._6_c00153{width:11.664000px;}
._4_c00153{width:16.272000px;}
._2_c00153{width:19.339200px;}
._3_c00153{width:46.944000px;}
.fc1_c00153{color:rgb(0,0,0);}
.fc0_c00153{color:rgb(35,31,32);}
.fs1_c00153{font-size:65.880000px;}
.fs0_c00153{font-size:72.000000px;}
.y0_c00153{bottom:0.000000px;}
.y1_c00153{bottom:61.748550px;}
.y22_c00153{bottom:115.424400px;}
.y21_c00153{bottom:146.474400px;}
.y20_c00153{bottom:177.524400px;}
.y1f_c00153{bottom:208.574400px;}
.y1e_c00153{bottom:239.624400px;}
.y1d_c00153{bottom:270.674400px;}
.y1c_c00153{bottom:301.724400px;}
.y1b_c00153{bottom:332.774400px;}
.y1a_c00153{bottom:363.824400px;}
.y19_c00153{bottom:394.874400px;}
.y18_c00153{bottom:425.924400px;}
.y17_c00153{bottom:456.974400px;}
.y16_c00153{bottom:519.074400px;}
.y15_c00153{bottom:550.124400px;}
.y14_c00153{bottom:581.174400px;}
.y13_c00153{bottom:612.224400px;}
.y12_c00153{bottom:643.274400px;}
.y11_c00153{bottom:674.324400px;}
.y10_c00153{bottom:705.374400px;}
.yf_c00153{bottom:767.474400px;}
.ye_c00153{bottom:798.434400px;}
.yd_c00153{bottom:829.484400px;}
.yc_c00153{bottom:860.534400px;}
.yb_c00153{bottom:891.584400px;}
.ya_c00153{bottom:922.634400px;}
.y9_c00153{bottom:953.684400px;}
.y8_c00153{bottom:984.734400px;}
.y7_c00153{bottom:1015.784400px;}
.y6_c00153{bottom:1046.834400px;}
.y5_c00153{bottom:1108.934400px;}
.y4_c00153{bottom:1139.984400px;}
.y3_c00153{bottom:1173.915120px;}
.y2_c00153{bottom:1194.074400px;}
.h2_c00153{height:50.400000px;}
.h3_c00153{height:54.331699px;}
.h4_c00153{height:59.376026px;}
.h5_c00153{height:76.824000px;}
.h6_c00153{height:78.048000px;}
.h0_c00153{height:1262.835000px;}
.h1_c00153{height:1263.000000px;}
.w0_c00153{width:892.914000px;}
.w1_c00153{width:893.250000px;}
.x0_c00153{left:0.000000px;}
.x1_c00153{left:54.000000px;}
.x2_c00153{left:127.620000px;}
.x3_c00153{left:148.950000px;}
.x5_c00153{left:159.570000px;}
.x4_c00153{left:170.190000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.lsb_c00153{letter-spacing:-0.256000pt;}
.lsd_c00153{letter-spacing:-0.192000pt;}
.lsc_c00153{letter-spacing:-0.064000pt;}
.lsa_c00153{letter-spacing:0.000000pt;}
.ls0_c00153{letter-spacing:0.064000pt;}
.ls4_c00153{letter-spacing:0.128000pt;}
.ls3_c00153{letter-spacing:18.560000pt;}
.ls5_c00153{letter-spacing:20.192000pt;}
.ls8_c00153{letter-spacing:20.864000pt;}
.ls7_c00153{letter-spacing:24.128000pt;}
.ls9_c00153{letter-spacing:26.368000pt;}
.ls6_c00153{letter-spacing:30.400000pt;}
.ls2_c00153{letter-spacing:37.888000pt;}
.ls1_c00153{letter-spacing:57.088000pt;}
.ws5_c00153{word-spacing:-16.000000pt;}
.ws0_c00153{word-spacing:-13.234560pt;}
.ws4_c00153{word-spacing:-0.192000pt;}
.ws16_c00153{word-spacing:-0.064000pt;}
.wsc_c00153{word-spacing:0.000000pt;}
.ws1_c00153{word-spacing:0.064000pt;}
.wsa_c00153{word-spacing:0.192000pt;}
.ws22_c00153{word-spacing:0.256000pt;}
.ws8_c00153{word-spacing:0.640000pt;}
.ws3_c00153{word-spacing:1.216000pt;}
.ws13_c00153{word-spacing:2.176000pt;}
.ws14_c00153{word-spacing:2.240000pt;}
.ws2_c00153{word-spacing:2.560000pt;}
.ws17_c00153{word-spacing:2.880000pt;}
.ws18_c00153{word-spacing:3.200000pt;}
.ws1d_c00153{word-spacing:4.096000pt;}
.ws15_c00153{word-spacing:4.160000pt;}
.ws1c_c00153{word-spacing:4.416000pt;}
.ws9_c00153{word-spacing:4.544000pt;}
.ws6_c00153{word-spacing:4.608000pt;}
.ws28_c00153{word-spacing:4.672000pt;}
.ws1a_c00153{word-spacing:4.736000pt;}
.ws19_c00153{word-spacing:4.800000pt;}
.ws7_c00153{word-spacing:4.864000pt;}
.ws2d_c00153{word-spacing:5.440000pt;}
.wsd_c00153{word-spacing:7.261440pt;}
.ws25_c00153{word-spacing:7.616000pt;}
.ws24_c00153{word-spacing:7.936000pt;}
.ws23_c00153{word-spacing:8.000000pt;}
.wse_c00153{word-spacing:8.512000pt;}
.ws1e_c00153{word-spacing:8.576000pt;}
.wsf_c00153{word-spacing:8.640000pt;}
.ws29_c00153{word-spacing:10.112000pt;}
.ws2a_c00153{word-spacing:10.176000pt;}
.ws12_c00153{word-spacing:12.416000pt;}
.ws10_c00153{word-spacing:12.480000pt;}
.ws11_c00153{word-spacing:12.800000pt;}
.ws1f_c00153{word-spacing:13.632000pt;}
.ws20_c00153{word-spacing:13.760000pt;}
.ws2c_c00153{word-spacing:14.016000pt;}
.wsb_c00153{word-spacing:14.080000pt;}
.ws21_c00153{word-spacing:14.400000pt;}
.ws26_c00153{word-spacing:16.576000pt;}
.ws27_c00153{word-spacing:16.640000pt;}
.ws2b_c00153{word-spacing:18.176000pt;}
.ws1b_c00153{word-spacing:31.616000pt;}
._1_c00153{margin-left:-1.043200pt;}
._0_c00153{width:0.936960pt;}
._5_c00153{width:8.192000pt;}
._6_c00153{width:10.368000pt;}
._4_c00153{width:14.464000pt;}
._2_c00153{width:17.190400pt;}
._3_c00153{width:41.728000pt;}
.fs1_c00153{font-size:58.560000pt;}
.fs0_c00153{font-size:64.000000pt;}
.y0_c00153{bottom:0.000000pt;}
.y1_c00153{bottom:54.887600pt;}
.y22_c00153{bottom:102.599467pt;}
.y21_c00153{bottom:130.199467pt;}
.y20_c00153{bottom:157.799467pt;}
.y1f_c00153{bottom:185.399467pt;}
.y1e_c00153{bottom:212.999467pt;}
.y1d_c00153{bottom:240.599467pt;}
.y1c_c00153{bottom:268.199467pt;}
.y1b_c00153{bottom:295.799467pt;}
.y1a_c00153{bottom:323.399467pt;}
.y19_c00153{bottom:350.999467pt;}
.y18_c00153{bottom:378.599467pt;}
.y17_c00153{bottom:406.199467pt;}
.y16_c00153{bottom:461.399467pt;}
.y15_c00153{bottom:488.999467pt;}
.y14_c00153{bottom:516.599467pt;}
.y13_c00153{bottom:544.199467pt;}
.y12_c00153{bottom:571.799467pt;}
.y11_c00153{bottom:599.399467pt;}
.y10_c00153{bottom:626.999467pt;}
.yf_c00153{bottom:682.199467pt;}
.ye_c00153{bottom:709.719467pt;}
.yd_c00153{bottom:737.319467pt;}
.yc_c00153{bottom:764.919467pt;}
.yb_c00153{bottom:792.519467pt;}
.ya_c00153{bottom:820.119467pt;}
.y9_c00153{bottom:847.719467pt;}
.y8_c00153{bottom:875.319467pt;}
.y7_c00153{bottom:902.919467pt;}
.y6_c00153{bottom:930.519467pt;}
.y5_c00153{bottom:985.719467pt;}
.y4_c00153{bottom:1013.319467pt;}
.y3_c00153{bottom:1043.480107pt;}
.y2_c00153{bottom:1061.399467pt;}
.h2_c00153{height:44.800000pt;}
.h3_c00153{height:48.294844pt;}
.h4_c00153{height:52.778690pt;}
.h5_c00153{height:68.288000pt;}
.h6_c00153{height:69.376000pt;}
.h0_c00153{height:1122.520000pt;}
.h1_c00153{height:1122.666667pt;}
.w0_c00153{width:793.701333pt;}
.w1_c00153{width:794.000000pt;}
.x0_c00153{left:0.000000pt;}
.x1_c00153{left:48.000000pt;}
.x2_c00153{left:113.440000pt;}
.x3_c00153{left:132.400000pt;}
.x5_c00153{left:141.840000pt;}
.x4_c00153{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00154;src:url('chunks/assets/font_c228c9f45b694860ff595fce.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00154;src:url('chunks/assets/font_c633ab88207d611af2d96750.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00154;src:url('chunks/assets/font_c34851161bc85e54cc399273.woff2')format("woff");}.ff4_c00154{font-family:ff4_c00154;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00154;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00154{font-family:ff5_c00154;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00154;src:url('chunks/assets/font_07e187292a233a9a97494e20.woff2')format("woff");}.ff6_c00154{font-family:ff6_c00154;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00154;src:url('chunks/assets/font_9cf6dcf3a129a69f7a03f66a.woff2')format("woff");}.ff7_c00154{font-family:ff7_c00154;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00154;src:url('chunks/assets/font_0cf7b09d5b8104355348c3e2.woff2')format("woff");}.ff8_c00154{font-family:ff8_c00154;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00154;src:url('chunks/assets/font_aee0d75f36c80036a0adc9cd.woff2')format("woff");}.ff9_c00154{font-family:ff9_c00154;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls10_c00154{letter-spacing:-0.288000px;}
.ls12_c00154{letter-spacing:-0.216000px;}
.ls11_c00154{letter-spacing:-0.072000px;}
.lsf_c00154{letter-spacing:0.000000px;}
.ls0_c00154{letter-spacing:0.072000px;}
.ls4_c00154{letter-spacing:0.144000px;}
.ls3_c00154{letter-spacing:20.880000px;}
.lsd_c00154{letter-spacing:22.320000px;}
.lsa_c00154{letter-spacing:22.708800px;}
.ls5_c00154{letter-spacing:22.716000px;}
.ls8_c00154{letter-spacing:23.472000px;}
.lse_c00154{letter-spacing:24.480000px;}
.lsc_c00154{letter-spacing:25.560000px;}
.ls7_c00154{letter-spacing:27.144000px;}
.ls9_c00154{letter-spacing:29.664000px;}
.ls6_c00154{letter-spacing:34.200000px;}
.ls2_c00154{letter-spacing:42.624000px;}
.lsb_c00154{letter-spacing:43.344000px;}
.ls1_c00154{letter-spacing:64.224000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00154{word-spacing:-18.072000px;}
.ws5_c00154{word-spacing:-18.000000px;}
.ws0_c00154{word-spacing:-14.888880px;}
.ws4_c00154{word-spacing:-0.216000px;}
.ws41_c00154{word-spacing:-0.144000px;}
.ws34_c00154{word-spacing:-0.131760px;}
.ws1c_c00154{word-spacing:-0.072000px;}
.ws12_c00154{word-spacing:0.000000px;}
.ws1_c00154{word-spacing:0.072000px;}
.wsa_c00154{word-spacing:0.216000px;}
.ws28_c00154{word-spacing:0.288000px;}
.ws8_c00154{word-spacing:0.720000px;}
.ws3_c00154{word-spacing:1.368000px;}
.ws4b_c00154{word-spacing:1.728000px;}
.ws11_c00154{word-spacing:1.800000px;}
.ws3e_c00154{word-spacing:2.160000px;}
.ws19_c00154{word-spacing:2.448000px;}
.ws1a_c00154{word-spacing:2.520000px;}
.ws2_c00154{word-spacing:2.880000px;}
.ws1d_c00154{word-spacing:3.240000px;}
.ws1e_c00154{word-spacing:3.600000px;}
.ws45_c00154{word-spacing:4.248000px;}
.ws46_c00154{word-spacing:4.320000px;}
.ws23_c00154{word-spacing:4.608000px;}
.ws1b_c00154{word-spacing:4.680000px;}
.ws22_c00154{word-spacing:4.968000px;}
.ws3d_c00154{word-spacing:5.040000px;}
.ws9_c00154{word-spacing:5.112000px;}
.ws6_c00154{word-spacing:5.184000px;}
.ws2e_c00154{word-spacing:5.256000px;}
.ws20_c00154{word-spacing:5.328000px;}
.ws1f_c00154{word-spacing:5.400000px;}
.ws7_c00154{word-spacing:5.472000px;}
.ws33_c00154{word-spacing:6.120000px;}
.ws4e_c00154{word-spacing:6.408000px;}
.ws4d_c00154{word-spacing:6.480000px;}
.ws3a_c00154{word-spacing:7.344000px;}
.ws38_c00154{word-spacing:7.488000px;}
.ws39_c00154{word-spacing:7.560000px;}
.ws13_c00154{word-spacing:8.169120px;}
.ws2b_c00154{word-spacing:8.568000px;}
.ws2a_c00154{word-spacing:8.928000px;}
.ws29_c00154{word-spacing:9.000000px;}
.ws14_c00154{word-spacing:9.576000px;}
.ws24_c00154{word-spacing:9.648000px;}
.ws15_c00154{word-spacing:9.720000px;}
.ws4a_c00154{word-spacing:9.936000px;}
.ws48_c00154{word-spacing:10.080000px;}
.ws49_c00154{word-spacing:10.368000px;}
.wse_c00154{word-spacing:10.440000px;}
.wsf_c00154{word-spacing:10.944000px;}
.ws2f_c00154{word-spacing:11.376000px;}
.ws30_c00154{word-spacing:11.448000px;}
.ws3c_c00154{word-spacing:11.880000px;}
.ws4c_c00154{word-spacing:12.600000px;}
.ws18_c00154{word-spacing:13.968000px;}
.ws16_c00154{word-spacing:14.040000px;}
.ws17_c00154{word-spacing:14.400000px;}
.ws25_c00154{word-spacing:15.336000px;}
.ws26_c00154{word-spacing:15.480000px;}
.ws32_c00154{word-spacing:15.768000px;}
.wsb_c00154{word-spacing:15.840000px;}
.ws27_c00154{word-spacing:16.200000px;}
.ws37_c00154{word-spacing:16.560000px;}
.ws2c_c00154{word-spacing:18.648000px;}
.ws2d_c00154{word-spacing:18.720000px;}
.ws10_c00154{word-spacing:19.800000px;}
.ws31_c00154{word-spacing:20.448000px;}
.ws42_c00154{word-spacing:21.168000px;}
.ws3b_c00154{word-spacing:21.528000px;}
.ws47_c00154{word-spacing:23.040000px;}
.ws36_c00154{word-spacing:25.200000px;}
.ws35_c00154{word-spacing:25.560000px;}
.ws3f_c00154{word-spacing:28.368000px;}
.ws40_c00154{word-spacing:28.440000px;}
.ws44_c00154{word-spacing:33.768000px;}
.ws43_c00154{word-spacing:33.840000px;}
.ws21_c00154{word-spacing:35.568000px;}
.wsd_c00154{word-spacing:55.800000px;}
._1_c00154{margin-left:-1.173600px;}
._0_c00154{width:1.054080px;}
._5_c00154{width:9.216000px;}
._6_c00154{width:11.664000px;}
._4_c00154{width:16.272000px;}
._2_c00154{width:19.339200px;}
._8_c00154{width:20.736000px;}
._7_c00154{width:25.416000px;}
._3_c00154{width:46.944000px;}
.fc2_c00154{color:transparent;}
.fc1_c00154{color:rgb(0,0,0);}
.fc0_c00154{color:rgb(35,31,32);}
.fs1_c00154{font-size:65.880000px;}
.fs0_c00154{font-size:72.000000px;}
.y0_c00154{bottom:0.000000px;}
.y1_c00154{bottom:61.748550px;}
.y22_c00154{bottom:115.424400px;}
.y21_c00154{bottom:146.474400px;}
.y20_c00154{bottom:177.524400px;}
.y1f_c00154{bottom:208.574400px;}
.y1e_c00154{bottom:239.624400px;}
.y1d_c00154{bottom:270.674400px;}
.y26_c00154{bottom:301.544400px;}
.y1c_c00154{bottom:301.724400px;}
.y1b_c00154{bottom:332.774400px;}
.y1a_c00154{bottom:363.824400px;}
.y19_c00154{bottom:394.874400px;}
.y18_c00154{bottom:425.924400px;}
.y17_c00154{bottom:456.974400px;}
.y25_c00154{bottom:488.024400px;}
.y16_c00154{bottom:519.074400px;}
.y15_c00154{bottom:550.124400px;}
.y14_c00154{bottom:581.174400px;}
.y24_c00154{bottom:612.044400px;}
.y13_c00154{bottom:612.224400px;}
.y12_c00154{bottom:643.274400px;}
.y11_c00154{bottom:674.324400px;}
.y10_c00154{bottom:705.374400px;}
.y23_c00154{bottom:736.424400px;}
.yf_c00154{bottom:767.474400px;}
.ye_c00154{bottom:798.434400px;}
.yd_c00154{bottom:829.484400px;}
.yc_c00154{bottom:860.534400px;}
.yb_c00154{bottom:891.584400px;}
.ya_c00154{bottom:922.634400px;}
.y9_c00154{bottom:953.684400px;}
.y8_c00154{bottom:984.734400px;}
.y7_c00154{bottom:1015.784400px;}
.y6_c00154{bottom:1046.834400px;}
.y5_c00154{bottom:1108.934400px;}
.y4_c00154{bottom:1139.984400px;}
.y3_c00154{bottom:1173.915120px;}
.y2_c00154{bottom:1194.074400px;}
.h2_c00154{height:50.400000px;}
.h3_c00154{height:54.331699px;}
.h4_c00154{height:59.376026px;}
.h5_c00154{height:76.824000px;}
.h6_c00154{height:78.048000px;}
.h0_c00154{height:1262.835000px;}
.h1_c00154{height:1263.000000px;}
.w2_c00154{width:0.000000px;}
.w3_c00154{width:0.066000px;}
.w0_c00154{width:892.914000px;}
.w1_c00154{width:893.250000px;}
.x1_c00154{left:-838.913400px;}
.x2_c00154{left:-765.293400px;}
.x3_c00154{left:-743.963400px;}
.x5_c00154{left:-733.343400px;}
.x4_c00154{left:-722.723400px;}
.x0_c00154{left:0.000000px;}
.xb_c00154{left:127.620000px;}
.xa_c00154{left:148.950000px;}
.x8_c00154{left:159.570000px;}
.x9_c00154{left:170.190000px;}
.x7_c00154{left:692.370000px;}
.x6_c00154{left:804.366150px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls10_c00154{letter-spacing:-0.256000pt;}
.ls12_c00154{letter-spacing:-0.192000pt;}
.ls11_c00154{letter-spacing:-0.064000pt;}
.lsf_c00154{letter-spacing:0.000000pt;}
.ls0_c00154{letter-spacing:0.064000pt;}
.ls4_c00154{letter-spacing:0.128000pt;}
.ls3_c00154{letter-spacing:18.560000pt;}
.lsd_c00154{letter-spacing:19.840000pt;}
.lsa_c00154{letter-spacing:20.185600pt;}
.ls5_c00154{letter-spacing:20.192000pt;}
.ls8_c00154{letter-spacing:20.864000pt;}
.lse_c00154{letter-spacing:21.760000pt;}
.lsc_c00154{letter-spacing:22.720000pt;}
.ls7_c00154{letter-spacing:24.128000pt;}
.ls9_c00154{letter-spacing:26.368000pt;}
.ls6_c00154{letter-spacing:30.400000pt;}
.ls2_c00154{letter-spacing:37.888000pt;}
.lsb_c00154{letter-spacing:38.528000pt;}
.ls1_c00154{letter-spacing:57.088000pt;}
.wsc_c00154{word-spacing:-16.064000pt;}
.ws5_c00154{word-spacing:-16.000000pt;}
.ws0_c00154{word-spacing:-13.234560pt;}
.ws4_c00154{word-spacing:-0.192000pt;}
.ws41_c00154{word-spacing:-0.128000pt;}
.ws34_c00154{word-spacing:-0.117120pt;}
.ws1c_c00154{word-spacing:-0.064000pt;}
.ws12_c00154{word-spacing:0.000000pt;}
.ws1_c00154{word-spacing:0.064000pt;}
.wsa_c00154{word-spacing:0.192000pt;}
.ws28_c00154{word-spacing:0.256000pt;}
.ws8_c00154{word-spacing:0.640000pt;}
.ws3_c00154{word-spacing:1.216000pt;}
.ws4b_c00154{word-spacing:1.536000pt;}
.ws11_c00154{word-spacing:1.600000pt;}
.ws3e_c00154{word-spacing:1.920000pt;}
.ws19_c00154{word-spacing:2.176000pt;}
.ws1a_c00154{word-spacing:2.240000pt;}
.ws2_c00154{word-spacing:2.560000pt;}
.ws1d_c00154{word-spacing:2.880000pt;}
.ws1e_c00154{word-spacing:3.200000pt;}
.ws45_c00154{word-spacing:3.776000pt;}
.ws46_c00154{word-spacing:3.840000pt;}
.ws23_c00154{word-spacing:4.096000pt;}
.ws1b_c00154{word-spacing:4.160000pt;}
.ws22_c00154{word-spacing:4.416000pt;}
.ws3d_c00154{word-spacing:4.480000pt;}
.ws9_c00154{word-spacing:4.544000pt;}
.ws6_c00154{word-spacing:4.608000pt;}
.ws2e_c00154{word-spacing:4.672000pt;}
.ws20_c00154{word-spacing:4.736000pt;}
.ws1f_c00154{word-spacing:4.800000pt;}
.ws7_c00154{word-spacing:4.864000pt;}
.ws33_c00154{word-spacing:5.440000pt;}
.ws4e_c00154{word-spacing:5.696000pt;}
.ws4d_c00154{word-spacing:5.760000pt;}
.ws3a_c00154{word-spacing:6.528000pt;}
.ws38_c00154{word-spacing:6.656000pt;}
.ws39_c00154{word-spacing:6.720000pt;}
.ws13_c00154{word-spacing:7.261440pt;}
.ws2b_c00154{word-spacing:7.616000pt;}
.ws2a_c00154{word-spacing:7.936000pt;}
.ws29_c00154{word-spacing:8.000000pt;}
.ws14_c00154{word-spacing:8.512000pt;}
.ws24_c00154{word-spacing:8.576000pt;}
.ws15_c00154{word-spacing:8.640000pt;}
.ws4a_c00154{word-spacing:8.832000pt;}
.ws48_c00154{word-spacing:8.960000pt;}
.ws49_c00154{word-spacing:9.216000pt;}
.wse_c00154{word-spacing:9.280000pt;}
.wsf_c00154{word-spacing:9.728000pt;}
.ws2f_c00154{word-spacing:10.112000pt;}
.ws30_c00154{word-spacing:10.176000pt;}
.ws3c_c00154{word-spacing:10.560000pt;}
.ws4c_c00154{word-spacing:11.200000pt;}
.ws18_c00154{word-spacing:12.416000pt;}
.ws16_c00154{word-spacing:12.480000pt;}
.ws17_c00154{word-spacing:12.800000pt;}
.ws25_c00154{word-spacing:13.632000pt;}
.ws26_c00154{word-spacing:13.760000pt;}
.ws32_c00154{word-spacing:14.016000pt;}
.wsb_c00154{word-spacing:14.080000pt;}
.ws27_c00154{word-spacing:14.400000pt;}
.ws37_c00154{word-spacing:14.720000pt;}
.ws2c_c00154{word-spacing:16.576000pt;}
.ws2d_c00154{word-spacing:16.640000pt;}
.ws10_c00154{word-spacing:17.600000pt;}
.ws31_c00154{word-spacing:18.176000pt;}
.ws42_c00154{word-spacing:18.816000pt;}
.ws3b_c00154{word-spacing:19.136000pt;}
.ws47_c00154{word-spacing:20.480000pt;}
.ws36_c00154{word-spacing:22.400000pt;}
.ws35_c00154{word-spacing:22.720000pt;}
.ws3f_c00154{word-spacing:25.216000pt;}
.ws40_c00154{word-spacing:25.280000pt;}
.ws44_c00154{word-spacing:30.016000pt;}
.ws43_c00154{word-spacing:30.080000pt;}
.ws21_c00154{word-spacing:31.616000pt;}
.wsd_c00154{word-spacing:49.600000pt;}
._1_c00154{margin-left:-1.043200pt;}
._0_c00154{width:0.936960pt;}
._5_c00154{width:8.192000pt;}
._6_c00154{width:10.368000pt;}
._4_c00154{width:14.464000pt;}
._2_c00154{width:17.190400pt;}
._8_c00154{width:18.432000pt;}
._7_c00154{width:22.592000pt;}
._3_c00154{width:41.728000pt;}
.fs1_c00154{font-size:58.560000pt;}
.fs0_c00154{font-size:64.000000pt;}
.y0_c00154{bottom:0.000000pt;}
.y1_c00154{bottom:54.887600pt;}
.y22_c00154{bottom:102.599467pt;}
.y21_c00154{bottom:130.199467pt;}
.y20_c00154{bottom:157.799467pt;}
.y1f_c00154{bottom:185.399467pt;}
.y1e_c00154{bottom:212.999467pt;}
.y1d_c00154{bottom:240.599467pt;}
.y26_c00154{bottom:268.039467pt;}
.y1c_c00154{bottom:268.199467pt;}
.y1b_c00154{bottom:295.799467pt;}
.y1a_c00154{bottom:323.399467pt;}
.y19_c00154{bottom:350.999467pt;}
.y18_c00154{bottom:378.599467pt;}
.y17_c00154{bottom:406.199467pt;}
.y25_c00154{bottom:433.799467pt;}
.y16_c00154{bottom:461.399467pt;}
.y15_c00154{bottom:488.999467pt;}
.y14_c00154{bottom:516.599467pt;}
.y24_c00154{bottom:544.039467pt;}
.y13_c00154{bottom:544.199467pt;}
.y12_c00154{bottom:571.799467pt;}
.y11_c00154{bottom:599.399467pt;}
.y10_c00154{bottom:626.999467pt;}
.y23_c00154{bottom:654.599467pt;}
.yf_c00154{bottom:682.199467pt;}
.ye_c00154{bottom:709.719467pt;}
.yd_c00154{bottom:737.319467pt;}
.yc_c00154{bottom:764.919467pt;}
.yb_c00154{bottom:792.519467pt;}
.ya_c00154{bottom:820.119467pt;}
.y9_c00154{bottom:847.719467pt;}
.y8_c00154{bottom:875.319467pt;}
.y7_c00154{bottom:902.919467pt;}
.y6_c00154{bottom:930.519467pt;}
.y5_c00154{bottom:985.719467pt;}
.y4_c00154{bottom:1013.319467pt;}
.y3_c00154{bottom:1043.480107pt;}
.y2_c00154{bottom:1061.399467pt;}
.h2_c00154{height:44.800000pt;}
.h3_c00154{height:48.294844pt;}
.h4_c00154{height:52.778690pt;}
.h5_c00154{height:68.288000pt;}
.h6_c00154{height:69.376000pt;}
.h0_c00154{height:1122.520000pt;}
.h1_c00154{height:1122.666667pt;}
.w2_c00154{width:0.000000pt;}
.w3_c00154{width:0.058667pt;}
.w0_c00154{width:793.701333pt;}
.w1_c00154{width:794.000000pt;}
.x1_c00154{left:-745.700800pt;}
.x2_c00154{left:-680.260800pt;}
.x3_c00154{left:-661.300800pt;}
.x5_c00154{left:-651.860800pt;}
.x4_c00154{left:-642.420800pt;}
.x0_c00154{left:0.000000pt;}
.xb_c00154{left:113.440000pt;}
.xa_c00154{left:132.400000pt;}
.x8_c00154{left:141.840000pt;}
.x9_c00154{left:151.280000pt;}
.x7_c00154{left:615.440000pt;}
.x6_c00154{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00155;src:url('chunks/assets/font_0f971a468061e036d50deb3b.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00155;src:url('chunks/assets/font_b2bb5cf936c97a663fa8557f.woff2')format("woff");}.ff3_c00155{font-family:ff3_c00155;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls6_c00155{letter-spacing:0.000000px;}
.ls0_c00155{letter-spacing:0.072000px;}
.ls2_c00155{letter-spacing:0.144000px;}
.ls1_c00155{letter-spacing:19.080000px;}
.ls5_c00155{letter-spacing:30.816000px;}
.ls3_c00155{letter-spacing:32.400000px;}
.ls4_c00155{letter-spacing:39.960000px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00155{word-spacing:-18.144000px;}
.ws3_c00155{word-spacing:-18.072000px;}
.ws1_c00155{word-spacing:-18.000000px;}
.ws0_c00155{word-spacing:-14.888880px;}
.ws2f_c00155{word-spacing:-0.144000px;}
.ws11_c00155{word-spacing:-0.072000px;}
.wsc_c00155{word-spacing:0.000000px;}
.ws29_c00155{word-spacing:0.648000px;}
.ws10_c00155{word-spacing:0.720000px;}
.wse_c00155{word-spacing:1.008000px;}
.wsf_c00155{word-spacing:1.080000px;}
.ws12_c00155{word-spacing:2.088000px;}
.ws4_c00155{word-spacing:2.750400px;}
.ws1a_c00155{word-spacing:3.240000px;}
.ws25_c00155{word-spacing:3.528000px;}
.wsb_c00155{word-spacing:3.600000px;}
.ws2e_c00155{word-spacing:3.960000px;}
.ws8_c00155{word-spacing:6.480000px;}
.ws1c_c00155{word-spacing:6.696000px;}
.ws13_c00155{word-spacing:6.768000px;}
.ws7_c00155{word-spacing:6.840000px;}
.ws20_c00155{word-spacing:6.984000px;}
.ws1f_c00155{word-spacing:7.200000px;}
.ws24_c00155{word-spacing:7.488000px;}
.ws23_c00155{word-spacing:7.560000px;}
.wsd_c00155{word-spacing:8.169120px;}
.ws17_c00155{word-spacing:9.000000px;}
.ws28_c00155{word-spacing:10.008000px;}
.ws2b_c00155{word-spacing:10.440000px;}
.ws2a_c00155{word-spacing:12.168000px;}
.ws9_c00155{word-spacing:12.240000px;}
.ws26_c00155{word-spacing:12.888000px;}
.ws27_c00155{word-spacing:12.960000px;}
.ws14_c00155{word-spacing:14.112000px;}
.ws15_c00155{word-spacing:14.328000px;}
.ws2_c00155{word-spacing:14.400000px;}
.ws2d_c00155{word-spacing:15.336000px;}
.ws2c_c00155{word-spacing:15.408000px;}
.ws1e_c00155{word-spacing:17.928000px;}
.ws1d_c00155{word-spacing:18.000000px;}
.ws1b_c00155{word-spacing:20.448000px;}
.ws5_c00155{word-spacing:20.520000px;}
.ws18_c00155{word-spacing:21.744000px;}
.ws21_c00155{word-spacing:21.816000px;}
.ws22_c00155{word-spacing:21.888000px;}
.ws6_c00155{word-spacing:21.960000px;}
.ws19_c00155{word-spacing:28.080000px;}
.ws16_c00155{word-spacing:43.920000px;}
._1_c00155{margin-left:-1.015200px;}
._0_c00155{width:1.054080px;}
._2_c00155{width:8.424000px;}
.fc1_c00155{color:rgb(0,0,0);}
.fc0_c00155{color:rgb(35,31,32);}
.fs1_c00155{font-size:65.880000px;}
.fs0_c00155{font-size:72.000000px;}
.y0_c00155{bottom:0.000000px;}
.y1_c00155{bottom:61.748550px;}
.y21_c00155{bottom:115.424400px;}
.y20_c00155{bottom:146.474400px;}
.y1f_c00155{bottom:177.524400px;}
.y1e_c00155{bottom:208.574400px;}
.y1d_c00155{bottom:239.624400px;}
.y1c_c00155{bottom:270.674400px;}
.y1b_c00155{bottom:301.724400px;}
.y1a_c00155{bottom:332.774400px;}
.y19_c00155{bottom:363.824400px;}
.y18_c00155{bottom:425.924400px;}
.y17_c00155{bottom:456.974400px;}
.y16_c00155{bottom:488.024400px;}
.y15_c00155{bottom:519.074400px;}
.y14_c00155{bottom:550.124400px;}
.y13_c00155{bottom:581.174400px;}
.y12_c00155{bottom:643.274400px;}
.y11_c00155{bottom:674.324400px;}
.y10_c00155{bottom:705.374400px;}
.yf_c00155{bottom:736.424400px;}
.ye_c00155{bottom:767.474400px;}
.yd_c00155{bottom:829.484400px;}
.yc_c00155{bottom:860.534400px;}
.yb_c00155{bottom:891.584400px;}
.ya_c00155{bottom:922.634400px;}
.y9_c00155{bottom:953.684400px;}
.y8_c00155{bottom:984.734400px;}
.y7_c00155{bottom:1015.784400px;}
.y6_c00155{bottom:1077.884400px;}
.y5_c00155{bottom:1108.934400px;}
.y4_c00155{bottom:1139.984400px;}
.y3_c00155{bottom:1173.915120px;}
.y2_c00155{bottom:1194.074400px;}
.h2_c00155{height:50.400000px;}
.h3_c00155{height:54.331699px;}
.h4_c00155{height:59.376026px;}
.h5_c00155{height:76.824000px;}
.h0_c00155{height:1262.835000px;}
.h1_c00155{height:1263.000000px;}
.w0_c00155{width:892.914000px;}
.w1_c00155{width:893.250000px;}
.x0_c00155{left:0.000000px;}
.x1_c00155{left:54.000000px;}
.x2_c00155{left:127.620000px;}
.x3_c00155{left:159.570000px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls6_c00155{letter-spacing:0.000000pt;}
.ls0_c00155{letter-spacing:0.064000pt;}
.ls2_c00155{letter-spacing:0.128000pt;}
.ls1_c00155{letter-spacing:16.960000pt;}
.ls5_c00155{letter-spacing:27.392000pt;}
.ls3_c00155{letter-spacing:28.800000pt;}
.ls4_c00155{letter-spacing:35.520000pt;}
.wsa_c00155{word-spacing:-16.128000pt;}
.ws3_c00155{word-spacing:-16.064000pt;}
.ws1_c00155{word-spacing:-16.000000pt;}
.ws0_c00155{word-spacing:-13.234560pt;}
.ws2f_c00155{word-spacing:-0.128000pt;}
.ws11_c00155{word-spacing:-0.064000pt;}
.wsc_c00155{word-spacing:0.000000pt;}
.ws29_c00155{word-spacing:0.576000pt;}
.ws10_c00155{word-spacing:0.640000pt;}
.wse_c00155{word-spacing:0.896000pt;}
.wsf_c00155{word-spacing:0.960000pt;}
.ws12_c00155{word-spacing:1.856000pt;}
.ws4_c00155{word-spacing:2.444800pt;}
.ws1a_c00155{word-spacing:2.880000pt;}
.ws25_c00155{word-spacing:3.136000pt;}
.wsb_c00155{word-spacing:3.200000pt;}
.ws2e_c00155{word-spacing:3.520000pt;}
.ws8_c00155{word-spacing:5.760000pt;}
.ws1c_c00155{word-spacing:5.952000pt;}
.ws13_c00155{word-spacing:6.016000pt;}
.ws7_c00155{word-spacing:6.080000pt;}
.ws20_c00155{word-spacing:6.208000pt;}
.ws1f_c00155{word-spacing:6.400000pt;}
.ws24_c00155{word-spacing:6.656000pt;}
.ws23_c00155{word-spacing:6.720000pt;}
.wsd_c00155{word-spacing:7.261440pt;}
.ws17_c00155{word-spacing:8.000000pt;}
.ws28_c00155{word-spacing:8.896000pt;}
.ws2b_c00155{word-spacing:9.280000pt;}
.ws2a_c00155{word-spacing:10.816000pt;}
.ws9_c00155{word-spacing:10.880000pt;}
.ws26_c00155{word-spacing:11.456000pt;}
.ws27_c00155{word-spacing:11.520000pt;}
.ws14_c00155{word-spacing:12.544000pt;}
.ws15_c00155{word-spacing:12.736000pt;}
.ws2_c00155{word-spacing:12.800000pt;}
.ws2d_c00155{word-spacing:13.632000pt;}
.ws2c_c00155{word-spacing:13.696000pt;}
.ws1e_c00155{word-spacing:15.936000pt;}
.ws1d_c00155{word-spacing:16.000000pt;}
.ws1b_c00155{word-spacing:18.176000pt;}
.ws5_c00155{word-spacing:18.240000pt;}
.ws18_c00155{word-spacing:19.328000pt;}
.ws21_c00155{word-spacing:19.392000pt;}
.ws22_c00155{word-spacing:19.456000pt;}
.ws6_c00155{word-spacing:19.520000pt;}
.ws19_c00155{word-spacing:24.960000pt;}
.ws16_c00155{word-spacing:39.040000pt;}
._1_c00155{margin-left:-0.902400pt;}
._0_c00155{width:0.936960pt;}
._2_c00155{width:7.488000pt;}
.fs1_c00155{font-size:58.560000pt;}
.fs0_c00155{font-size:64.000000pt;}
.y0_c00155{bottom:0.000000pt;}
.y1_c00155{bottom:54.887600pt;}
.y21_c00155{bottom:102.599467pt;}
.y20_c00155{bottom:130.199467pt;}
.y1f_c00155{bottom:157.799467pt;}
.y1e_c00155{bottom:185.399467pt;}
.y1d_c00155{bottom:212.999467pt;}
.y1c_c00155{bottom:240.599467pt;}
.y1b_c00155{bottom:268.199467pt;}
.y1a_c00155{bottom:295.799467pt;}
.y19_c00155{bottom:323.399467pt;}
.y18_c00155{bottom:378.599467pt;}
.y17_c00155{bottom:406.199467pt;}
.y16_c00155{bottom:433.799467pt;}
.y15_c00155{bottom:461.399467pt;}
.y14_c00155{bottom:488.999467pt;}
.y13_c00155{bottom:516.599467pt;}
.y12_c00155{bottom:571.799467pt;}
.y11_c00155{bottom:599.399467pt;}
.y10_c00155{bottom:626.999467pt;}
.yf_c00155{bottom:654.599467pt;}
.ye_c00155{bottom:682.199467pt;}
.yd_c00155{bottom:737.319467pt;}
.yc_c00155{bottom:764.919467pt;}
.yb_c00155{bottom:792.519467pt;}
.ya_c00155{bottom:820.119467pt;}
.y9_c00155{bottom:847.719467pt;}
.y8_c00155{bottom:875.319467pt;}
.y7_c00155{bottom:902.919467pt;}
.y6_c00155{bottom:958.119467pt;}
.y5_c00155{bottom:985.719467pt;}
.y4_c00155{bottom:1013.319467pt;}
.y3_c00155{bottom:1043.480107pt;}
.y2_c00155{bottom:1061.399467pt;}
.h2_c00155{height:44.800000pt;}
.h3_c00155{height:48.294844pt;}
.h4_c00155{height:52.778690pt;}
.h5_c00155{height:68.288000pt;}
.h0_c00155{height:1122.520000pt;}
.h1_c00155{height:1122.666667pt;}
.w0_c00155{width:793.701333pt;}
.w1_c00155{width:794.000000pt;}
.x0_c00155{left:0.000000pt;}
.x1_c00155{left:48.000000pt;}
.x2_c00155{left:113.440000pt;}
.x3_c00155{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00156;src:url('chunks/assets/font_736eba2d45d7ca02bfb4b31a.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00156;src:url('chunks/assets/font_090afa78bd90a92907fcd306.woff2')format("woff");}.ff3_c00156{font-family:ff3_c00156;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00156;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00156{font-family:ff4_c00156;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00156;src:url('chunks/assets/font_d90b7b32ff6bb40b5f82e1e1.woff2')format("woff");}.ff5_c00156{font-family:ff5_c00156;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00156;src:url('chunks/assets/font_058756eb1dd05de73f312732.woff2')format("woff");}.ff6_c00156{font-family:ff6_c00156;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00156;src:url('chunks/assets/font_392024090a8772ee52a762da.woff2')format("woff");}.ff7_c00156{font-family:ff7_c00156;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsc_c00156{letter-spacing:-0.072000px;}
.lsb_c00156{letter-spacing:0.000000px;}
.ls0_c00156{letter-spacing:0.072000px;}
.ls2_c00156{letter-spacing:0.144000px;}
.ls1_c00156{letter-spacing:19.080000px;}
.ls8_c00156{letter-spacing:20.232000px;}
.ls9_c00156{letter-spacing:20.520000px;}
.ls7_c00156{letter-spacing:28.800000px;}
.ls5_c00156{letter-spacing:30.816000px;}
.ls6_c00156{letter-spacing:31.104000px;}
.ls3_c00156{letter-spacing:32.400000px;}
.ls4_c00156{letter-spacing:39.960000px;}
.lsa_c00156{letter-spacing:47.880000px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00156{word-spacing:-18.144000px;}
.ws3_c00156{word-spacing:-18.072000px;}
.ws1_c00156{word-spacing:-18.000000px;}
.ws0_c00156{word-spacing:-14.888880px;}
.wsd_c00156{word-spacing:-0.266400px;}
.ws35_c00156{word-spacing:-0.144000px;}
.ws36_c00156{word-spacing:-0.131760px;}
.ws17_c00156{word-spacing:-0.072000px;}
.ws12_c00156{word-spacing:0.000000px;}
.ws2f_c00156{word-spacing:0.648000px;}
.ws16_c00156{word-spacing:0.720000px;}
.ws14_c00156{word-spacing:1.008000px;}
.ws15_c00156{word-spacing:1.080000px;}
.ws18_c00156{word-spacing:2.088000px;}
.ws3e_c00156{word-spacing:2.448000px;}
.ws3f_c00156{word-spacing:2.520000px;}
.ws4_c00156{word-spacing:2.750400px;}
.ws37_c00156{word-spacing:2.808000px;}
.ws38_c00156{word-spacing:2.880000px;}
.ws41_c00156{word-spacing:3.096000px;}
.ws20_c00156{word-spacing:3.240000px;}
.ws2b_c00156{word-spacing:3.528000px;}
.wsb_c00156{word-spacing:3.600000px;}
.wse_c00156{word-spacing:3.672000px;}
.ws42_c00156{word-spacing:3.816000px;}
.ws43_c00156{word-spacing:3.888000px;}
.ws34_c00156{word-spacing:3.960000px;}
.wsf_c00156{word-spacing:4.032000px;}
.ws11_c00156{word-spacing:4.233600px;}
.ws45_c00156{word-spacing:4.248000px;}
.ws49_c00156{word-spacing:4.896000px;}
.ws48_c00156{word-spacing:4.968000px;}
.ws4a_c00156{word-spacing:5.040000px;}
.ws44_c00156{word-spacing:5.760000px;}
.ws10_c00156{word-spacing:5.976000px;}
.ws40_c00156{word-spacing:6.120000px;}
.ws8_c00156{word-spacing:6.480000px;}
.ws22_c00156{word-spacing:6.696000px;}
.ws19_c00156{word-spacing:6.768000px;}
.ws7_c00156{word-spacing:6.840000px;}
.ws26_c00156{word-spacing:6.984000px;}
.ws25_c00156{word-spacing:7.200000px;}
.ws2a_c00156{word-spacing:7.488000px;}
.ws29_c00156{word-spacing:7.560000px;}
.ws13_c00156{word-spacing:8.169120px;}
.ws3d_c00156{word-spacing:8.280000px;}
.ws1d_c00156{word-spacing:9.000000px;}
.ws3c_c00156{word-spacing:9.288000px;}
.ws2e_c00156{word-spacing:10.008000px;}
.ws31_c00156{word-spacing:10.440000px;}
.ws3b_c00156{word-spacing:10.728000px;}
.ws30_c00156{word-spacing:12.168000px;}
.ws9_c00156{word-spacing:12.240000px;}
.ws2c_c00156{word-spacing:12.888000px;}
.ws2d_c00156{word-spacing:12.960000px;}
.ws3a_c00156{word-spacing:13.680000px;}
.ws46_c00156{word-spacing:13.968000px;}
.ws4b_c00156{word-spacing:14.040000px;}
.ws1a_c00156{word-spacing:14.112000px;}
.ws1b_c00156{word-spacing:14.328000px;}
.ws2_c00156{word-spacing:14.400000px;}
.ws33_c00156{word-spacing:15.336000px;}
.ws32_c00156{word-spacing:15.408000px;}
.ws24_c00156{word-spacing:17.928000px;}
.ws23_c00156{word-spacing:18.000000px;}
.wsc_c00156{word-spacing:19.800000px;}
.ws21_c00156{word-spacing:20.448000px;}
.ws5_c00156{word-spacing:20.520000px;}
.ws1e_c00156{word-spacing:21.744000px;}
.ws27_c00156{word-spacing:21.816000px;}
.ws28_c00156{word-spacing:21.888000px;}
.ws6_c00156{word-spacing:21.960000px;}
.ws39_c00156{word-spacing:23.328000px;}
.ws1f_c00156{word-spacing:28.080000px;}
.ws47_c00156{word-spacing:29.808000px;}
.ws1c_c00156{word-spacing:43.920000px;}
._1_c00156{margin-left:-1.015200px;}
._0_c00156{width:1.054080px;}
._2_c00156{width:8.424000px;}
._3_c00156{width:40.298400px;}
.fc2_c00156{color:transparent;}
.fc1_c00156{color:rgb(0,0,0);}
.fc0_c00156{color:rgb(35,31,32);}
.fs1_c00156{font-size:65.880000px;}
.fs0_c00156{font-size:72.000000px;}
.y0_c00156{bottom:0.000000px;}
.y1_c00156{bottom:61.748550px;}
.y21_c00156{bottom:115.424400px;}
.y20_c00156{bottom:146.474400px;}
.y1f_c00156{bottom:177.524400px;}
.y1e_c00156{bottom:208.574400px;}
.y3a_c00156{bottom:211.184400px;}
.y1d_c00156{bottom:239.624400px;}
.y39_c00156{bottom:242.234400px;}
.y1c_c00156{bottom:270.674400px;}
.y38_c00156{bottom:273.284400px;}
.y1b_c00156{bottom:301.724400px;}
.y1a_c00156{bottom:332.774400px;}
.y37_c00156{bottom:335.384400px;}
.y19_c00156{bottom:363.824400px;}
.y36_c00156{bottom:366.434400px;}
.y35_c00156{bottom:397.484400px;}
.y18_c00156{bottom:425.924400px;}
.y34_c00156{bottom:428.534400px;}
.y17_c00156{bottom:456.974400px;}
.y33_c00156{bottom:459.584400px;}
.y16_c00156{bottom:488.024400px;}
.y15_c00156{bottom:519.074400px;}
.y32_c00156{bottom:521.684400px;}
.y14_c00156{bottom:550.124400px;}
.y31_c00156{bottom:552.734400px;}
.y13_c00156{bottom:581.174400px;}
.y30_c00156{bottom:583.784400px;}
.y2f_c00156{bottom:614.744400px;}
.y12_c00156{bottom:643.274400px;}
.y2e_c00156{bottom:645.794400px;}
.y11_c00156{bottom:674.324400px;}
.y2d_c00156{bottom:676.844400px;}
.y10_c00156{bottom:705.374400px;}
.y2c_c00156{bottom:707.894400px;}
.yf_c00156{bottom:736.424400px;}
.ye_c00156{bottom:767.474400px;}
.y2b_c00156{bottom:769.994400px;}
.y2a_c00156{bottom:801.044400px;}
.yd_c00156{bottom:829.484400px;}
.y29_c00156{bottom:832.094400px;}
.yc_c00156{bottom:860.534400px;}
.y28_c00156{bottom:863.144400px;}
.yb_c00156{bottom:891.584400px;}
.y27_c00156{bottom:894.194400px;}
.ya_c00156{bottom:922.634400px;}
.y26_c00156{bottom:925.244400px;}
.y9_c00156{bottom:953.684400px;}
.y8_c00156{bottom:984.734400px;}
.y25_c00156{bottom:987.344400px;}
.y7_c00156{bottom:1015.784400px;}
.y24_c00156{bottom:1018.394400px;}
.y23_c00156{bottom:1049.444400px;}
.y6_c00156{bottom:1077.884400px;}
.y22_c00156{bottom:1108.754400px;}
.y5_c00156{bottom:1108.934400px;}
.y4_c00156{bottom:1139.984400px;}
.y3_c00156{bottom:1173.915120px;}
.y2_c00156{bottom:1194.074400px;}
.h2_c00156{height:50.400000px;}
.h3_c00156{height:54.331699px;}
.h4_c00156{height:59.376026px;}
.h5_c00156{height:76.824000px;}
.h0_c00156{height:1262.835000px;}
.h1_c00156{height:1263.000000px;}
.w2_c00156{width:0.000000px;}
.w3_c00156{width:0.066000px;}
.w0_c00156{width:892.914000px;}
.w1_c00156{width:893.250000px;}
.x1_c00156{left:-838.913400px;}
.x2_c00156{left:-765.293400px;}
.x3_c00156{left:-733.343400px;}
.x0_c00156{left:0.000000px;}
.x6_c00156{left:127.620000px;}
.x7_c00156{left:159.570000px;}
.x5_c00156{left:692.370000px;}
.x4_c00156{left:804.366150px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.lsc_c00156{letter-spacing:-0.064000pt;}
.lsb_c00156{letter-spacing:0.000000pt;}
.ls0_c00156{letter-spacing:0.064000pt;}
.ls2_c00156{letter-spacing:0.128000pt;}
.ls1_c00156{letter-spacing:16.960000pt;}
.ls8_c00156{letter-spacing:17.984000pt;}
.ls9_c00156{letter-spacing:18.240000pt;}
.ls7_c00156{letter-spacing:25.600000pt;}
.ls5_c00156{letter-spacing:27.392000pt;}
.ls6_c00156{letter-spacing:27.648000pt;}
.ls3_c00156{letter-spacing:28.800000pt;}
.ls4_c00156{letter-spacing:35.520000pt;}
.lsa_c00156{letter-spacing:42.560000pt;}
.wsa_c00156{word-spacing:-16.128000pt;}
.ws3_c00156{word-spacing:-16.064000pt;}
.ws1_c00156{word-spacing:-16.000000pt;}
.ws0_c00156{word-spacing:-13.234560pt;}
.wsd_c00156{word-spacing:-0.236800pt;}
.ws35_c00156{word-spacing:-0.128000pt;}
.ws36_c00156{word-spacing:-0.117120pt;}
.ws17_c00156{word-spacing:-0.064000pt;}
.ws12_c00156{word-spacing:0.000000pt;}
.ws2f_c00156{word-spacing:0.576000pt;}
.ws16_c00156{word-spacing:0.640000pt;}
.ws14_c00156{word-spacing:0.896000pt;}
.ws15_c00156{word-spacing:0.960000pt;}
.ws18_c00156{word-spacing:1.856000pt;}
.ws3e_c00156{word-spacing:2.176000pt;}
.ws3f_c00156{word-spacing:2.240000pt;}
.ws4_c00156{word-spacing:2.444800pt;}
.ws37_c00156{word-spacing:2.496000pt;}
.ws38_c00156{word-spacing:2.560000pt;}
.ws41_c00156{word-spacing:2.752000pt;}
.ws20_c00156{word-spacing:2.880000pt;}
.ws2b_c00156{word-spacing:3.136000pt;}
.wsb_c00156{word-spacing:3.200000pt;}
.wse_c00156{word-spacing:3.264000pt;}
.ws42_c00156{word-spacing:3.392000pt;}
.ws43_c00156{word-spacing:3.456000pt;}
.ws34_c00156{word-spacing:3.520000pt;}
.wsf_c00156{word-spacing:3.584000pt;}
.ws11_c00156{word-spacing:3.763200pt;}
.ws45_c00156{word-spacing:3.776000pt;}
.ws49_c00156{word-spacing:4.352000pt;}
.ws48_c00156{word-spacing:4.416000pt;}
.ws4a_c00156{word-spacing:4.480000pt;}
.ws44_c00156{word-spacing:5.120000pt;}
.ws10_c00156{word-spacing:5.312000pt;}
.ws40_c00156{word-spacing:5.440000pt;}
.ws8_c00156{word-spacing:5.760000pt;}
.ws22_c00156{word-spacing:5.952000pt;}
.ws19_c00156{word-spacing:6.016000pt;}
.ws7_c00156{word-spacing:6.080000pt;}
.ws26_c00156{word-spacing:6.208000pt;}
.ws25_c00156{word-spacing:6.400000pt;}
.ws2a_c00156{word-spacing:6.656000pt;}
.ws29_c00156{word-spacing:6.720000pt;}
.ws13_c00156{word-spacing:7.261440pt;}
.ws3d_c00156{word-spacing:7.360000pt;}
.ws1d_c00156{word-spacing:8.000000pt;}
.ws3c_c00156{word-spacing:8.256000pt;}
.ws2e_c00156{word-spacing:8.896000pt;}
.ws31_c00156{word-spacing:9.280000pt;}
.ws3b_c00156{word-spacing:9.536000pt;}
.ws30_c00156{word-spacing:10.816000pt;}
.ws9_c00156{word-spacing:10.880000pt;}
.ws2c_c00156{word-spacing:11.456000pt;}
.ws2d_c00156{word-spacing:11.520000pt;}
.ws3a_c00156{word-spacing:12.160000pt;}
.ws46_c00156{word-spacing:12.416000pt;}
.ws4b_c00156{word-spacing:12.480000pt;}
.ws1a_c00156{word-spacing:12.544000pt;}
.ws1b_c00156{word-spacing:12.736000pt;}
.ws2_c00156{word-spacing:12.800000pt;}
.ws33_c00156{word-spacing:13.632000pt;}
.ws32_c00156{word-spacing:13.696000pt;}
.ws24_c00156{word-spacing:15.936000pt;}
.ws23_c00156{word-spacing:16.000000pt;}
.wsc_c00156{word-spacing:17.600000pt;}
.ws21_c00156{word-spacing:18.176000pt;}
.ws5_c00156{word-spacing:18.240000pt;}
.ws1e_c00156{word-spacing:19.328000pt;}
.ws27_c00156{word-spacing:19.392000pt;}
.ws28_c00156{word-spacing:19.456000pt;}
.ws6_c00156{word-spacing:19.520000pt;}
.ws39_c00156{word-spacing:20.736000pt;}
.ws1f_c00156{word-spacing:24.960000pt;}
.ws47_c00156{word-spacing:26.496000pt;}
.ws1c_c00156{word-spacing:39.040000pt;}
._1_c00156{margin-left:-0.902400pt;}
._0_c00156{width:0.936960pt;}
._2_c00156{width:7.488000pt;}
._3_c00156{width:35.820800pt;}
.fs1_c00156{font-size:58.560000pt;}
.fs0_c00156{font-size:64.000000pt;}
.y0_c00156{bottom:0.000000pt;}
.y1_c00156{bottom:54.887600pt;}
.y21_c00156{bottom:102.599467pt;}
.y20_c00156{bottom:130.199467pt;}
.y1f_c00156{bottom:157.799467pt;}
.y1e_c00156{bottom:185.399467pt;}
.y3a_c00156{bottom:187.719467pt;}
.y1d_c00156{bottom:212.999467pt;}
.y39_c00156{bottom:215.319467pt;}
.y1c_c00156{bottom:240.599467pt;}
.y38_c00156{bottom:242.919467pt;}
.y1b_c00156{bottom:268.199467pt;}
.y1a_c00156{bottom:295.799467pt;}
.y37_c00156{bottom:298.119467pt;}
.y19_c00156{bottom:323.399467pt;}
.y36_c00156{bottom:325.719467pt;}
.y35_c00156{bottom:353.319467pt;}
.y18_c00156{bottom:378.599467pt;}
.y34_c00156{bottom:380.919467pt;}
.y17_c00156{bottom:406.199467pt;}
.y33_c00156{bottom:408.519467pt;}
.y16_c00156{bottom:433.799467pt;}
.y15_c00156{bottom:461.399467pt;}
.y32_c00156{bottom:463.719467pt;}
.y14_c00156{bottom:488.999467pt;}
.y31_c00156{bottom:491.319467pt;}
.y13_c00156{bottom:516.599467pt;}
.y30_c00156{bottom:518.919467pt;}
.y2f_c00156{bottom:546.439467pt;}
.y12_c00156{bottom:571.799467pt;}
.y2e_c00156{bottom:574.039467pt;}
.y11_c00156{bottom:599.399467pt;}
.y2d_c00156{bottom:601.639467pt;}
.y10_c00156{bottom:626.999467pt;}
.y2c_c00156{bottom:629.239467pt;}
.yf_c00156{bottom:654.599467pt;}
.ye_c00156{bottom:682.199467pt;}
.y2b_c00156{bottom:684.439467pt;}
.y2a_c00156{bottom:712.039467pt;}
.yd_c00156{bottom:737.319467pt;}
.y29_c00156{bottom:739.639467pt;}
.yc_c00156{bottom:764.919467pt;}
.y28_c00156{bottom:767.239467pt;}
.yb_c00156{bottom:792.519467pt;}
.y27_c00156{bottom:794.839467pt;}
.ya_c00156{bottom:820.119467pt;}
.y26_c00156{bottom:822.439467pt;}
.y9_c00156{bottom:847.719467pt;}
.y8_c00156{bottom:875.319467pt;}
.y25_c00156{bottom:877.639467pt;}
.y7_c00156{bottom:902.919467pt;}
.y24_c00156{bottom:905.239467pt;}
.y23_c00156{bottom:932.839467pt;}
.y6_c00156{bottom:958.119467pt;}
.y22_c00156{bottom:985.559467pt;}
.y5_c00156{bottom:985.719467pt;}
.y4_c00156{bottom:1013.319467pt;}
.y3_c00156{bottom:1043.480107pt;}
.y2_c00156{bottom:1061.399467pt;}
.h2_c00156{height:44.800000pt;}
.h3_c00156{height:48.294844pt;}
.h4_c00156{height:52.778690pt;}
.h5_c00156{height:68.288000pt;}
.h0_c00156{height:1122.520000pt;}
.h1_c00156{height:1122.666667pt;}
.w2_c00156{width:0.000000pt;}
.w3_c00156{width:0.058667pt;}
.w0_c00156{width:793.701333pt;}
.w1_c00156{width:794.000000pt;}
.x1_c00156{left:-745.700800pt;}
.x2_c00156{left:-680.260800pt;}
.x3_c00156{left:-651.860800pt;}
.x0_c00156{left:0.000000pt;}
.x6_c00156{left:113.440000pt;}
.x7_c00156{left:141.840000pt;}
.x5_c00156{left:615.440000pt;}
.x4_c00156{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00157;src:url('chunks/assets/font_c8427a88856559aa5f8b3e77.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00157;src:url('chunks/assets/font_58e6be205b9b29ef7c78a575.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00157;src:url('chunks/assets/font_25c25f60b1076e3a65d11b73.woff2')format("woff");}.ff4_c00157{font-family:ff4_c00157;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00157;src:url('chunks/assets/font_c49c4e783a0619f955145053.woff2')format("woff");}.ff5_c00157{font-family:ff5_c00157;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c00157{letter-spacing:-0.216000px;}
.lsc_c00157{letter-spacing:-0.144000px;}
.lsb_c00157{letter-spacing:-0.072000px;}
.ls9_c00157{letter-spacing:0.000000px;}
.ls1_c00157{letter-spacing:0.072000px;}
.ls0_c00157{letter-spacing:0.144000px;}
.ls4_c00157{letter-spacing:12.168000px;}
.ls3_c00157{letter-spacing:18.720000px;}
.ls5_c00157{letter-spacing:19.080000px;}
.ls6_c00157{letter-spacing:19.224000px;}
.ls2_c00157{letter-spacing:33.192000px;}
.ls8_c00157{letter-spacing:36.360000px;}
.ls7_c00157{letter-spacing:40.348800px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00157{word-spacing:-18.144000px;}
.ws2_c00157{word-spacing:-18.072000px;}
.ws4_c00157{word-spacing:-18.000000px;}
.ws3_c00157{word-spacing:-17.928000px;}
.ws0_c00157{word-spacing:-14.888880px;}
.wsb_c00157{word-spacing:-0.144000px;}
.wsc_c00157{word-spacing:-0.072000px;}
.ws9_c00157{word-spacing:0.000000px;}
.ws26_c00157{word-spacing:0.072000px;}
.ws33_c00157{word-spacing:0.144000px;}
.ws16_c00157{word-spacing:0.216000px;}
.ws5_c00157{word-spacing:0.360000px;}
.ws12_c00157{word-spacing:0.648000px;}
.ws11_c00157{word-spacing:0.720000px;}
.ws1a_c00157{word-spacing:1.008000px;}
.ws19_c00157{word-spacing:1.080000px;}
.ws31_c00157{word-spacing:1.368000px;}
.ws17_c00157{word-spacing:1.800000px;}
.wsd_c00157{word-spacing:2.088000px;}
.wse_c00157{word-spacing:2.160000px;}
.ws29_c00157{word-spacing:2.448000px;}
.ws1f_c00157{word-spacing:2.880000px;}
.ws20_c00157{word-spacing:3.240000px;}
.ws24_c00157{word-spacing:3.600000px;}
.ws1c_c00157{word-spacing:4.968000px;}
.ws1b_c00157{word-spacing:5.328000px;}
.wsa_c00157{word-spacing:8.169120px;}
.ws2d_c00157{word-spacing:8.568000px;}
.ws2f_c00157{word-spacing:8.928000px;}
.ws30_c00157{word-spacing:9.360000px;}
.ws7_c00157{word-spacing:9.576000px;}
.ws2a_c00157{word-spacing:9.720000px;}
.ws14_c00157{word-spacing:10.368000px;}
.ws13_c00157{word-spacing:10.728000px;}
.ws2e_c00157{word-spacing:10.800000px;}
.ws22_c00157{word-spacing:11.160000px;}
.ws18_c00157{word-spacing:12.096000px;}
.ws21_c00157{word-spacing:14.400000px;}
.ws10_c00157{word-spacing:15.048000px;}
.wsf_c00157{word-spacing:15.120000px;}
.ws25_c00157{word-spacing:17.280000px;}
.ws34_c00157{word-spacing:17.856000px;}
.ws32_c00157{word-spacing:17.928000px;}
.ws1_c00157{word-spacing:19.800000px;}
.ws23_c00157{word-spacing:20.160000px;}
.ws28_c00157{word-spacing:21.168000px;}
.ws27_c00157{word-spacing:21.240000px;}
.ws1d_c00157{word-spacing:22.176000px;}
.ws1e_c00157{word-spacing:22.320000px;}
.ws2c_c00157{word-spacing:43.488000px;}
.ws2b_c00157{word-spacing:43.848000px;}
.ws6_c00157{word-spacing:50.400000px;}
.ws15_c00157{word-spacing:50.760000px;}
._1_c00157{margin-left:-1.296000px;}
._0_c00157{width:1.054080px;}
._3_c00157{width:9.432000px;}
._2_c00157{width:11.736000px;}
.fc1_c00157{color:rgb(0,0,0);}
.fc0_c00157{color:rgb(35,31,32);}
.fs1_c00157{font-size:65.880000px;}
.fs0_c00157{font-size:72.000000px;}
.y0_c00157{bottom:0.000000px;}
.y1_c00157{bottom:61.748550px;}
.y20_c00157{bottom:126.494400px;}
.y1f_c00157{bottom:157.544400px;}
.y1e_c00157{bottom:188.594400px;}
.y1d_c00157{bottom:219.644400px;}
.y1c_c00157{bottom:281.744400px;}
.y1b_c00157{bottom:312.794400px;}
.y1a_c00157{bottom:343.754400px;}
.y19_c00157{bottom:374.804400px;}
.y18_c00157{bottom:405.854400px;}
.y17_c00157{bottom:436.904400px;}
.y16_c00157{bottom:488.474400px;}
.y15_c00157{bottom:550.754400px;}
.y14_c00157{bottom:581.804400px;}
.y13_c00157{bottom:612.854400px;}
.y12_c00157{bottom:643.814400px;}
.y11_c00157{bottom:674.864400px;}
.y10_c00157{bottom:705.914400px;}
.yf_c00157{bottom:736.964400px;}
.ye_c00157{bottom:768.104400px;}
.yd_c00157{bottom:799.154400px;}
.yc_c00157{bottom:830.204400px;}
.yb_c00157{bottom:861.254400px;}
.ya_c00157{bottom:893.654400px;}
.y9_c00157{bottom:925.154400px;}
.y8_c00157{bottom:956.294400px;}
.y7_c00157{bottom:987.344400px;}
.y6_c00157{bottom:1018.394400px;}
.y5_c00157{bottom:1049.444400px;}
.y4_c00157{bottom:1108.754400px;}
.y3_c00157{bottom:1173.915120px;}
.y2_c00157{bottom:1194.074400px;}
.h2_c00157{height:50.400000px;}
.h3_c00157{height:54.331699px;}
.h4_c00157{height:59.376026px;}
.h5_c00157{height:76.824000px;}
.h6_c00157{height:78.048000px;}
.h0_c00157{height:1262.835000px;}
.h1_c00157{height:1263.000000px;}
.w0_c00157{width:892.914000px;}
.w1_c00157{width:893.250000px;}
.x0_c00157{left:0.000000px;}
.x1_c00157{left:54.000000px;}
.x2_c00157{left:127.620000px;}
.x4_c00157{left:148.950000px;}
.x3_c00157{left:159.570000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.lsa_c00157{letter-spacing:-0.192000pt;}
.lsc_c00157{letter-spacing:-0.128000pt;}
.lsb_c00157{letter-spacing:-0.064000pt;}
.ls9_c00157{letter-spacing:0.000000pt;}
.ls1_c00157{letter-spacing:0.064000pt;}
.ls0_c00157{letter-spacing:0.128000pt;}
.ls4_c00157{letter-spacing:10.816000pt;}
.ls3_c00157{letter-spacing:16.640000pt;}
.ls5_c00157{letter-spacing:16.960000pt;}
.ls6_c00157{letter-spacing:17.088000pt;}
.ls2_c00157{letter-spacing:29.504000pt;}
.ls8_c00157{letter-spacing:32.320000pt;}
.ls7_c00157{letter-spacing:35.865600pt;}
.ws8_c00157{word-spacing:-16.128000pt;}
.ws2_c00157{word-spacing:-16.064000pt;}
.ws4_c00157{word-spacing:-16.000000pt;}
.ws3_c00157{word-spacing:-15.936000pt;}
.ws0_c00157{word-spacing:-13.234560pt;}
.wsb_c00157{word-spacing:-0.128000pt;}
.wsc_c00157{word-spacing:-0.064000pt;}
.ws9_c00157{word-spacing:0.000000pt;}
.ws26_c00157{word-spacing:0.064000pt;}
.ws33_c00157{word-spacing:0.128000pt;}
.ws16_c00157{word-spacing:0.192000pt;}
.ws5_c00157{word-spacing:0.320000pt;}
.ws12_c00157{word-spacing:0.576000pt;}
.ws11_c00157{word-spacing:0.640000pt;}
.ws1a_c00157{word-spacing:0.896000pt;}
.ws19_c00157{word-spacing:0.960000pt;}
.ws31_c00157{word-spacing:1.216000pt;}
.ws17_c00157{word-spacing:1.600000pt;}
.wsd_c00157{word-spacing:1.856000pt;}
.wse_c00157{word-spacing:1.920000pt;}
.ws29_c00157{word-spacing:2.176000pt;}
.ws1f_c00157{word-spacing:2.560000pt;}
.ws20_c00157{word-spacing:2.880000pt;}
.ws24_c00157{word-spacing:3.200000pt;}
.ws1c_c00157{word-spacing:4.416000pt;}
.ws1b_c00157{word-spacing:4.736000pt;}
.wsa_c00157{word-spacing:7.261440pt;}
.ws2d_c00157{word-spacing:7.616000pt;}
.ws2f_c00157{word-spacing:7.936000pt;}
.ws30_c00157{word-spacing:8.320000pt;}
.ws7_c00157{word-spacing:8.512000pt;}
.ws2a_c00157{word-spacing:8.640000pt;}
.ws14_c00157{word-spacing:9.216000pt;}
.ws13_c00157{word-spacing:9.536000pt;}
.ws2e_c00157{word-spacing:9.600000pt;}
.ws22_c00157{word-spacing:9.920000pt;}
.ws18_c00157{word-spacing:10.752000pt;}
.ws21_c00157{word-spacing:12.800000pt;}
.ws10_c00157{word-spacing:13.376000pt;}
.wsf_c00157{word-spacing:13.440000pt;}
.ws25_c00157{word-spacing:15.360000pt;}
.ws34_c00157{word-spacing:15.872000pt;}
.ws32_c00157{word-spacing:15.936000pt;}
.ws1_c00157{word-spacing:17.600000pt;}
.ws23_c00157{word-spacing:17.920000pt;}
.ws28_c00157{word-spacing:18.816000pt;}
.ws27_c00157{word-spacing:18.880000pt;}
.ws1d_c00157{word-spacing:19.712000pt;}
.ws1e_c00157{word-spacing:19.840000pt;}
.ws2c_c00157{word-spacing:38.656000pt;}
.ws2b_c00157{word-spacing:38.976000pt;}
.ws6_c00157{word-spacing:44.800000pt;}
.ws15_c00157{word-spacing:45.120000pt;}
._1_c00157{margin-left:-1.152000pt;}
._0_c00157{width:0.936960pt;}
._3_c00157{width:8.384000pt;}
._2_c00157{width:10.432000pt;}
.fs1_c00157{font-size:58.560000pt;}
.fs0_c00157{font-size:64.000000pt;}
.y0_c00157{bottom:0.000000pt;}
.y1_c00157{bottom:54.887600pt;}
.y20_c00157{bottom:112.439467pt;}
.y1f_c00157{bottom:140.039467pt;}
.y1e_c00157{bottom:167.639467pt;}
.y1d_c00157{bottom:195.239467pt;}
.y1c_c00157{bottom:250.439467pt;}
.y1b_c00157{bottom:278.039467pt;}
.y1a_c00157{bottom:305.559467pt;}
.y19_c00157{bottom:333.159467pt;}
.y18_c00157{bottom:360.759467pt;}
.y17_c00157{bottom:388.359467pt;}
.y16_c00157{bottom:434.199467pt;}
.y15_c00157{bottom:489.559467pt;}
.y14_c00157{bottom:517.159467pt;}
.y13_c00157{bottom:544.759467pt;}
.y12_c00157{bottom:572.279467pt;}
.y11_c00157{bottom:599.879467pt;}
.y10_c00157{bottom:627.479467pt;}
.yf_c00157{bottom:655.079467pt;}
.ye_c00157{bottom:682.759467pt;}
.yd_c00157{bottom:710.359467pt;}
.yc_c00157{bottom:737.959467pt;}
.yb_c00157{bottom:765.559467pt;}
.ya_c00157{bottom:794.359467pt;}
.y9_c00157{bottom:822.359467pt;}
.y8_c00157{bottom:850.039467pt;}
.y7_c00157{bottom:877.639467pt;}
.y6_c00157{bottom:905.239467pt;}
.y5_c00157{bottom:932.839467pt;}
.y4_c00157{bottom:985.559467pt;}
.y3_c00157{bottom:1043.480107pt;}
.y2_c00157{bottom:1061.399467pt;}
.h2_c00157{height:44.800000pt;}
.h3_c00157{height:48.294844pt;}
.h4_c00157{height:52.778690pt;}
.h5_c00157{height:68.288000pt;}
.h6_c00157{height:69.376000pt;}
.h0_c00157{height:1122.520000pt;}
.h1_c00157{height:1122.666667pt;}
.w0_c00157{width:793.701333pt;}
.w1_c00157{width:794.000000pt;}
.x0_c00157{left:0.000000pt;}
.x1_c00157{left:48.000000pt;}
.x2_c00157{left:113.440000pt;}
.x4_c00157{left:132.400000pt;}
.x3_c00157{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00158;src:url('chunks/assets/font_94c25c7586f66033945cd2eb.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00158;src:url('chunks/assets/font_ac1076aa4d8af821248bb6f0.woff2')format("woff");}.ff3_c00158{font-family:ff3_c00158;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00158;src:url('chunks/assets/font_6779894b0db69bb45bdf5fd4.woff2')format("woff");}.ff4_c00158{font-family:ff4_c00158;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00158;src:url('chunks/assets/font_2a31c1a1a702587921882660.woff2')format("woff");}.ff5_c00158{font-family:ff5_c00158;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00158;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00158{font-family:ff6_c00158;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00158;src:url('chunks/assets/font_b904f32a55581673b5f5a9c5.woff2')format("woff");}.ff7_c00158{font-family:ff7_c00158;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00158;src:url('chunks/assets/font_cb8a47f0a2f172368df838b9.woff2')format("woff");}.ff8_c00158{font-family:ff8_c00158;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00158;src:url('chunks/assets/font_2504ac5ed4f81cb43e0078c0.woff2')format("woff");}.ff9_c00158{font-family:ff9_c00158;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00158;src:url('chunks/assets/font_2a31c1a1a702587921882660.woff2')format("woff");}.ffa_c00158{font-family:ffa_c00158;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls15_c00158{letter-spacing:-0.360000px;}
.ls14_c00158{letter-spacing:-0.288000px;}
.ls11_c00158{letter-spacing:-0.216000px;}
.ls13_c00158{letter-spacing:-0.144000px;}
.ls12_c00158{letter-spacing:-0.072000px;}
.ls10_c00158{letter-spacing:0.000000px;}
.ls1_c00158{letter-spacing:0.072000px;}
.ls0_c00158{letter-spacing:0.144000px;}
.ls4_c00158{letter-spacing:12.168000px;}
.ls3_c00158{letter-spacing:18.720000px;}
.ls5_c00158{letter-spacing:19.080000px;}
.ls6_c00158{letter-spacing:19.224000px;}
.lsc_c00158{letter-spacing:19.886400px;}
.lsf_c00158{letter-spacing:20.894400px;}
.lsd_c00158{letter-spacing:21.967200px;}
.lsb_c00158{letter-spacing:25.920000px;}
.lse_c00158{letter-spacing:28.512000px;}
.lsa_c00158{letter-spacing:28.800000px;}
.ls9_c00158{letter-spacing:31.680000px;}
.ls2_c00158{letter-spacing:33.192000px;}
.ls8_c00158{letter-spacing:36.360000px;}
.ls7_c00158{letter-spacing:40.348800px;}
.sc__c00158{text-shadow:none;}
.sc0_c00158{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00158{-webkit-text-stroke:0px transparent;}
.sc0_c00158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00158{word-spacing:-18.144000px;}
.ws2_c00158{word-spacing:-18.072000px;}
.ws4_c00158{word-spacing:-18.000000px;}
.ws3_c00158{word-spacing:-17.928000px;}
.ws0_c00158{word-spacing:-14.888880px;}
.ws48_c00158{word-spacing:-0.360000px;}
.ws15_c00158{word-spacing:-0.144000px;}
.ws3e_c00158{word-spacing:-0.131760px;}
.ws16_c00158{word-spacing:-0.072000px;}
.wsb_c00158{word-spacing:-0.064800px;}
.ws13_c00158{word-spacing:0.000000px;}
.ws2f_c00158{word-spacing:0.072000px;}
.ws3c_c00158{word-spacing:0.144000px;}
.ws1f_c00158{word-spacing:0.216000px;}
.ws47_c00158{word-spacing:0.288000px;}
.ws5_c00158{word-spacing:0.360000px;}
.ws1c_c00158{word-spacing:0.648000px;}
.ws1b_c00158{word-spacing:0.720000px;}
.ws23_c00158{word-spacing:1.008000px;}
.ws22_c00158{word-spacing:1.080000px;}
.ws3a_c00158{word-spacing:1.368000px;}
.ws43_c00158{word-spacing:1.728000px;}
.ws20_c00158{word-spacing:1.800000px;}
.ws41_c00158{word-spacing:2.016000px;}
.ws17_c00158{word-spacing:2.088000px;}
.ws18_c00158{word-spacing:2.160000px;}
.ws32_c00158{word-spacing:2.448000px;}
.ws42_c00158{word-spacing:2.520000px;}
.ws4c_c00158{word-spacing:2.736000px;}
.ws4d_c00158{word-spacing:2.808000px;}
.ws28_c00158{word-spacing:2.880000px;}
.ws29_c00158{word-spacing:3.240000px;}
.ws44_c00158{word-spacing:3.528000px;}
.ws2d_c00158{word-spacing:3.600000px;}
.wsd_c00158{word-spacing:3.744000px;}
.ws45_c00158{word-spacing:3.888000px;}
.wsc_c00158{word-spacing:3.895200px;}
.ws52_c00158{word-spacing:3.960000px;}
.wsf_c00158{word-spacing:4.032000px;}
.wse_c00158{word-spacing:4.248000px;}
.ws4b_c00158{word-spacing:4.320000px;}
.ws25_c00158{word-spacing:4.968000px;}
.ws24_c00158{word-spacing:5.328000px;}
.ws14_c00158{word-spacing:8.169120px;}
.ws4e_c00158{word-spacing:8.208000px;}
.ws3f_c00158{word-spacing:8.280000px;}
.ws36_c00158{word-spacing:8.568000px;}
.wsa_c00158{word-spacing:8.640000px;}
.ws38_c00158{word-spacing:8.928000px;}
.ws40_c00158{word-spacing:9.000000px;}
.ws39_c00158{word-spacing:9.360000px;}
.ws7_c00158{word-spacing:9.576000px;}
.ws33_c00158{word-spacing:9.720000px;}
.ws1d_c00158{word-spacing:10.368000px;}
.ws4f_c00158{word-spacing:10.440000px;}
.ws51_c00158{word-spacing:10.656000px;}
.ws11_c00158{word-spacing:10.728000px;}
.ws37_c00158{word-spacing:10.800000px;}
.ws49_c00158{word-spacing:11.088000px;}
.ws2b_c00158{word-spacing:11.160000px;}
.ws21_c00158{word-spacing:12.096000px;}
.ws50_c00158{word-spacing:13.680000px;}
.ws9_c00158{word-spacing:14.040000px;}
.ws2a_c00158{word-spacing:14.400000px;}
.ws1a_c00158{word-spacing:15.048000px;}
.ws19_c00158{word-spacing:15.120000px;}
.ws12_c00158{word-spacing:16.560000px;}
.ws2e_c00158{word-spacing:17.280000px;}
.ws3d_c00158{word-spacing:17.856000px;}
.ws3b_c00158{word-spacing:17.928000px;}
.ws4a_c00158{word-spacing:18.000000px;}
.ws1_c00158{word-spacing:19.800000px;}
.ws2c_c00158{word-spacing:20.160000px;}
.ws31_c00158{word-spacing:21.168000px;}
.ws30_c00158{word-spacing:21.240000px;}
.ws26_c00158{word-spacing:22.176000px;}
.ws27_c00158{word-spacing:22.320000px;}
.ws46_c00158{word-spacing:27.288000px;}
.ws10_c00158{word-spacing:27.432000px;}
.ws35_c00158{word-spacing:43.488000px;}
.ws34_c00158{word-spacing:43.848000px;}
.ws6_c00158{word-spacing:50.400000px;}
.ws1e_c00158{word-spacing:50.760000px;}
._1_c00158{margin-left:-1.296000px;}
._0_c00158{width:1.054080px;}
._4_c00158{width:3.637440px;}
._3_c00158{width:9.432000px;}
._2_c00158{width:11.736000px;}
._5_c00158{width:36.864000px;}
._6_c00158{width:54.360000px;}
.fc2_c00158{color:transparent;}
.fc1_c00158{color:rgb(0,0,0);}
.fc0_c00158{color:rgb(35,31,32);}
.fs1_c00158{font-size:65.880000px;}
.fs0_c00158{font-size:72.000000px;}
.y0_c00158{bottom:0.000000px;}
.y1_c00158{bottom:61.748550px;}
.y3e_c00158{bottom:115.424400px;}
.y20_c00158{bottom:126.494400px;}
.y3d_c00158{bottom:146.474400px;}
.y1f_c00158{bottom:157.544400px;}
.y3c_c00158{bottom:177.524400px;}
.y1e_c00158{bottom:188.594400px;}
.y3b_c00158{bottom:208.574400px;}
.y1d_c00158{bottom:219.644400px;}
.y3a_c00158{bottom:239.624400px;}
.y1c_c00158{bottom:281.744400px;}
.y39_c00158{bottom:301.724400px;}
.y1b_c00158{bottom:312.794400px;}
.y38_c00158{bottom:332.774400px;}
.y1a_c00158{bottom:343.754400px;}
.y37_c00158{bottom:363.824400px;}
.y19_c00158{bottom:374.804400px;}
.y36_c00158{bottom:394.874400px;}
.y18_c00158{bottom:405.854400px;}
.y35_c00158{bottom:425.924400px;}
.y17_c00158{bottom:436.904400px;}
.y34_c00158{bottom:456.974400px;}
.y33_c00158{bottom:488.024400px;}
.y16_c00158{bottom:488.474400px;}
.y32_c00158{bottom:519.074400px;}
.y31_c00158{bottom:550.124400px;}
.y15_c00158{bottom:550.754400px;}
.y14_c00158{bottom:581.804400px;}
.y30_c00158{bottom:612.224400px;}
.y13_c00158{bottom:612.854400px;}
.y2f_c00158{bottom:643.274400px;}
.y12_c00158{bottom:643.814400px;}
.y2e_c00158{bottom:674.324400px;}
.y11_c00158{bottom:674.864400px;}
.y2d_c00158{bottom:705.374400px;}
.y10_c00158{bottom:705.914400px;}
.y2c_c00158{bottom:736.424400px;}
.yf_c00158{bottom:736.964400px;}
.y2b_c00158{bottom:767.474400px;}
.ye_c00158{bottom:768.104400px;}
.y2a_c00158{bottom:798.434400px;}
.yd_c00158{bottom:799.154400px;}
.y29_c00158{bottom:829.484400px;}
.yc_c00158{bottom:830.204400px;}
.yb_c00158{bottom:861.254400px;}
.y28_c00158{bottom:891.584400px;}
.ya_c00158{bottom:893.654400px;}
.y27_c00158{bottom:922.634400px;}
.y9_c00158{bottom:925.154400px;}
.y26_c00158{bottom:953.684400px;}
.y8_c00158{bottom:956.294400px;}
.y25_c00158{bottom:984.734400px;}
.y7_c00158{bottom:987.344400px;}
.y24_c00158{bottom:1015.784400px;}
.y6_c00158{bottom:1018.394400px;}
.y23_c00158{bottom:1046.834400px;}
.y5_c00158{bottom:1049.444400px;}
.y4_c00158{bottom:1108.754400px;}
.y22_c00158{bottom:1108.934400px;}
.y21_c00158{bottom:1139.984400px;}
.y3_c00158{bottom:1173.915120px;}
.y2_c00158{bottom:1194.074400px;}
.h2_c00158{height:50.400000px;}
.h3_c00158{height:54.331699px;}
.h4_c00158{height:59.376026px;}
.h5_c00158{height:76.824000px;}
.h6_c00158{height:78.048000px;}
.h0_c00158{height:1262.835000px;}
.h1_c00158{height:1263.000000px;}
.w2_c00158{width:0.000000px;}
.w3_c00158{width:0.066000px;}
.w0_c00158{width:892.914000px;}
.w1_c00158{width:893.250000px;}
.x1_c00158{left:-838.913400px;}
.x2_c00158{left:-765.293400px;}
.x4_c00158{left:-743.963400px;}
.x3_c00158{left:-733.343400px;}
.x0_c00158{left:0.000000px;}
.x7_c00158{left:127.620000px;}
.x8_c00158{left:159.570000px;}
.x6_c00158{left:692.370000px;}
.x5_c00158{left:804.366150px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls15_c00158{letter-spacing:-0.320000pt;}
.ls14_c00158{letter-spacing:-0.256000pt;}
.ls11_c00158{letter-spacing:-0.192000pt;}
.ls13_c00158{letter-spacing:-0.128000pt;}
.ls12_c00158{letter-spacing:-0.064000pt;}
.ls10_c00158{letter-spacing:0.000000pt;}
.ls1_c00158{letter-spacing:0.064000pt;}
.ls0_c00158{letter-spacing:0.128000pt;}
.ls4_c00158{letter-spacing:10.816000pt;}
.ls3_c00158{letter-spacing:16.640000pt;}
.ls5_c00158{letter-spacing:16.960000pt;}
.ls6_c00158{letter-spacing:17.088000pt;}
.lsc_c00158{letter-spacing:17.676800pt;}
.lsf_c00158{letter-spacing:18.572800pt;}
.lsd_c00158{letter-spacing:19.526400pt;}
.lsb_c00158{letter-spacing:23.040000pt;}
.lse_c00158{letter-spacing:25.344000pt;}
.lsa_c00158{letter-spacing:25.600000pt;}
.ls9_c00158{letter-spacing:28.160000pt;}
.ls2_c00158{letter-spacing:29.504000pt;}
.ls8_c00158{letter-spacing:32.320000pt;}
.ls7_c00158{letter-spacing:35.865600pt;}
.ws8_c00158{word-spacing:-16.128000pt;}
.ws2_c00158{word-spacing:-16.064000pt;}
.ws4_c00158{word-spacing:-16.000000pt;}
.ws3_c00158{word-spacing:-15.936000pt;}
.ws0_c00158{word-spacing:-13.234560pt;}
.ws48_c00158{word-spacing:-0.320000pt;}
.ws15_c00158{word-spacing:-0.128000pt;}
.ws3e_c00158{word-spacing:-0.117120pt;}
.ws16_c00158{word-spacing:-0.064000pt;}
.wsb_c00158{word-spacing:-0.057600pt;}
.ws13_c00158{word-spacing:0.000000pt;}
.ws2f_c00158{word-spacing:0.064000pt;}
.ws3c_c00158{word-spacing:0.128000pt;}
.ws1f_c00158{word-spacing:0.192000pt;}
.ws47_c00158{word-spacing:0.256000pt;}
.ws5_c00158{word-spacing:0.320000pt;}
.ws1c_c00158{word-spacing:0.576000pt;}
.ws1b_c00158{word-spacing:0.640000pt;}
.ws23_c00158{word-spacing:0.896000pt;}
.ws22_c00158{word-spacing:0.960000pt;}
.ws3a_c00158{word-spacing:1.216000pt;}
.ws43_c00158{word-spacing:1.536000pt;}
.ws20_c00158{word-spacing:1.600000pt;}
.ws41_c00158{word-spacing:1.792000pt;}
.ws17_c00158{word-spacing:1.856000pt;}
.ws18_c00158{word-spacing:1.920000pt;}
.ws32_c00158{word-spacing:2.176000pt;}
.ws42_c00158{word-spacing:2.240000pt;}
.ws4c_c00158{word-spacing:2.432000pt;}
.ws4d_c00158{word-spacing:2.496000pt;}
.ws28_c00158{word-spacing:2.560000pt;}
.ws29_c00158{word-spacing:2.880000pt;}
.ws44_c00158{word-spacing:3.136000pt;}
.ws2d_c00158{word-spacing:3.200000pt;}
.wsd_c00158{word-spacing:3.328000pt;}
.ws45_c00158{word-spacing:3.456000pt;}
.wsc_c00158{word-spacing:3.462400pt;}
.ws52_c00158{word-spacing:3.520000pt;}
.wsf_c00158{word-spacing:3.584000pt;}
.wse_c00158{word-spacing:3.776000pt;}
.ws4b_c00158{word-spacing:3.840000pt;}
.ws25_c00158{word-spacing:4.416000pt;}
.ws24_c00158{word-spacing:4.736000pt;}
.ws14_c00158{word-spacing:7.261440pt;}
.ws4e_c00158{word-spacing:7.296000pt;}
.ws3f_c00158{word-spacing:7.360000pt;}
.ws36_c00158{word-spacing:7.616000pt;}
.wsa_c00158{word-spacing:7.680000pt;}
.ws38_c00158{word-spacing:7.936000pt;}
.ws40_c00158{word-spacing:8.000000pt;}
.ws39_c00158{word-spacing:8.320000pt;}
.ws7_c00158{word-spacing:8.512000pt;}
.ws33_c00158{word-spacing:8.640000pt;}
.ws1d_c00158{word-spacing:9.216000pt;}
.ws4f_c00158{word-spacing:9.280000pt;}
.ws51_c00158{word-spacing:9.472000pt;}
.ws11_c00158{word-spacing:9.536000pt;}
.ws37_c00158{word-spacing:9.600000pt;}
.ws49_c00158{word-spacing:9.856000pt;}
.ws2b_c00158{word-spacing:9.920000pt;}
.ws21_c00158{word-spacing:10.752000pt;}
.ws50_c00158{word-spacing:12.160000pt;}
.ws9_c00158{word-spacing:12.480000pt;}
.ws2a_c00158{word-spacing:12.800000pt;}
.ws1a_c00158{word-spacing:13.376000pt;}
.ws19_c00158{word-spacing:13.440000pt;}
.ws12_c00158{word-spacing:14.720000pt;}
.ws2e_c00158{word-spacing:15.360000pt;}
.ws3d_c00158{word-spacing:15.872000pt;}
.ws3b_c00158{word-spacing:15.936000pt;}
.ws4a_c00158{word-spacing:16.000000pt;}
.ws1_c00158{word-spacing:17.600000pt;}
.ws2c_c00158{word-spacing:17.920000pt;}
.ws31_c00158{word-spacing:18.816000pt;}
.ws30_c00158{word-spacing:18.880000pt;}
.ws26_c00158{word-spacing:19.712000pt;}
.ws27_c00158{word-spacing:19.840000pt;}
.ws46_c00158{word-spacing:24.256000pt;}
.ws10_c00158{word-spacing:24.384000pt;}
.ws35_c00158{word-spacing:38.656000pt;}
.ws34_c00158{word-spacing:38.976000pt;}
.ws6_c00158{word-spacing:44.800000pt;}
.ws1e_c00158{word-spacing:45.120000pt;}
._1_c00158{margin-left:-1.152000pt;}
._0_c00158{width:0.936960pt;}
._4_c00158{width:3.233280pt;}
._3_c00158{width:8.384000pt;}
._2_c00158{width:10.432000pt;}
._5_c00158{width:32.768000pt;}
._6_c00158{width:48.320000pt;}
.fs1_c00158{font-size:58.560000pt;}
.fs0_c00158{font-size:64.000000pt;}
.y0_c00158{bottom:0.000000pt;}
.y1_c00158{bottom:54.887600pt;}
.y3e_c00158{bottom:102.599467pt;}
.y20_c00158{bottom:112.439467pt;}
.y3d_c00158{bottom:130.199467pt;}
.y1f_c00158{bottom:140.039467pt;}
.y3c_c00158{bottom:157.799467pt;}
.y1e_c00158{bottom:167.639467pt;}
.y3b_c00158{bottom:185.399467pt;}
.y1d_c00158{bottom:195.239467pt;}
.y3a_c00158{bottom:212.999467pt;}
.y1c_c00158{bottom:250.439467pt;}
.y39_c00158{bottom:268.199467pt;}
.y1b_c00158{bottom:278.039467pt;}
.y38_c00158{bottom:295.799467pt;}
.y1a_c00158{bottom:305.559467pt;}
.y37_c00158{bottom:323.399467pt;}
.y19_c00158{bottom:333.159467pt;}
.y36_c00158{bottom:350.999467pt;}
.y18_c00158{bottom:360.759467pt;}
.y35_c00158{bottom:378.599467pt;}
.y17_c00158{bottom:388.359467pt;}
.y34_c00158{bottom:406.199467pt;}
.y33_c00158{bottom:433.799467pt;}
.y16_c00158{bottom:434.199467pt;}
.y32_c00158{bottom:461.399467pt;}
.y31_c00158{bottom:488.999467pt;}
.y15_c00158{bottom:489.559467pt;}
.y14_c00158{bottom:517.159467pt;}
.y30_c00158{bottom:544.199467pt;}
.y13_c00158{bottom:544.759467pt;}
.y2f_c00158{bottom:571.799467pt;}
.y12_c00158{bottom:572.279467pt;}
.y2e_c00158{bottom:599.399467pt;}
.y11_c00158{bottom:599.879467pt;}
.y2d_c00158{bottom:626.999467pt;}
.y10_c00158{bottom:627.479467pt;}
.y2c_c00158{bottom:654.599467pt;}
.yf_c00158{bottom:655.079467pt;}
.y2b_c00158{bottom:682.199467pt;}
.ye_c00158{bottom:682.759467pt;}
.y2a_c00158{bottom:709.719467pt;}
.yd_c00158{bottom:710.359467pt;}
.y29_c00158{bottom:737.319467pt;}
.yc_c00158{bottom:737.959467pt;}
.yb_c00158{bottom:765.559467pt;}
.y28_c00158{bottom:792.519467pt;}
.ya_c00158{bottom:794.359467pt;}
.y27_c00158{bottom:820.119467pt;}
.y9_c00158{bottom:822.359467pt;}
.y26_c00158{bottom:847.719467pt;}
.y8_c00158{bottom:850.039467pt;}
.y25_c00158{bottom:875.319467pt;}
.y7_c00158{bottom:877.639467pt;}
.y24_c00158{bottom:902.919467pt;}
.y6_c00158{bottom:905.239467pt;}
.y23_c00158{bottom:930.519467pt;}
.y5_c00158{bottom:932.839467pt;}
.y4_c00158{bottom:985.559467pt;}
.y22_c00158{bottom:985.719467pt;}
.y21_c00158{bottom:1013.319467pt;}
.y3_c00158{bottom:1043.480107pt;}
.y2_c00158{bottom:1061.399467pt;}
.h2_c00158{height:44.800000pt;}
.h3_c00158{height:48.294844pt;}
.h4_c00158{height:52.778690pt;}
.h5_c00158{height:68.288000pt;}
.h6_c00158{height:69.376000pt;}
.h0_c00158{height:1122.520000pt;}
.h1_c00158{height:1122.666667pt;}
.w2_c00158{width:0.000000pt;}
.w3_c00158{width:0.058667pt;}
.w0_c00158{width:793.701333pt;}
.w1_c00158{width:794.000000pt;}
.x1_c00158{left:-745.700800pt;}
.x2_c00158{left:-680.260800pt;}
.x4_c00158{left:-661.300800pt;}
.x3_c00158{left:-651.860800pt;}
.x0_c00158{left:0.000000pt;}
.x7_c00158{left:113.440000pt;}
.x8_c00158{left:141.840000pt;}
.x6_c00158{left:615.440000pt;}
.x5_c00158{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00159;src:url('chunks/assets/font_85a1ffc5dc496b890a58f585.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00159;src:url('chunks/assets/font_c924c2b8dc2b2ee9147ddee9.woff2')format("woff");}.ff3_c00159{font-family:ff3_c00159;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00159;src:url('chunks/assets/font_dce6cf6a016729681cd5ce5b.woff2')format("woff");}.ff4_c00159{font-family:ff4_c00159;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls5_c00159{letter-spacing:-0.360000px;}
.ls4_c00159{letter-spacing:-0.288000px;}
.ls3_c00159{letter-spacing:0.000000px;}
.ls1_c00159{letter-spacing:0.072000px;}
.ls0_c00159{letter-spacing:0.144000px;}
.ls2_c00159{letter-spacing:32.760000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00159{word-spacing:-18.072000px;}
.ws2_c00159{word-spacing:-17.640000px;}
.ws0_c00159{word-spacing:-14.888880px;}
.ws24_c00159{word-spacing:-0.144000px;}
.ws8_c00159{word-spacing:0.000000px;}
.ws1b_c00159{word-spacing:0.288000px;}
.ws18_c00159{word-spacing:0.360000px;}
.ws1c_c00159{word-spacing:0.648000px;}
.ws1_c00159{word-spacing:0.936000px;}
.wsd_c00159{word-spacing:1.008000px;}
.wsf_c00159{word-spacing:1.296000px;}
.ws28_c00159{word-spacing:1.368000px;}
.wse_c00159{word-spacing:1.440000px;}
.ws17_c00159{word-spacing:2.088000px;}
.ws19_c00159{word-spacing:2.808000px;}
.ws1a_c00159{word-spacing:2.880000px;}
.ws1d_c00159{word-spacing:3.168000px;}
.wsb_c00159{word-spacing:3.240000px;}
.wsa_c00159{word-spacing:3.600000px;}
.ws26_c00159{word-spacing:4.248000px;}
.ws20_c00159{word-spacing:4.320000px;}
.wsc_c00159{word-spacing:5.760000px;}
.ws29_c00159{word-spacing:6.048000px;}
.ws7_c00159{word-spacing:6.840000px;}
.ws9_c00159{word-spacing:8.169120px;}
.ws2c_c00159{word-spacing:8.496000px;}
.ws2b_c00159{word-spacing:8.568000px;}
.ws10_c00159{word-spacing:9.648000px;}
.ws11_c00159{word-spacing:9.720000px;}
.ws12_c00159{word-spacing:10.368000px;}
.ws27_c00159{word-spacing:13.968000px;}
.ws22_c00159{word-spacing:14.688000px;}
.ws21_c00159{word-spacing:14.760000px;}
.ws2a_c00159{word-spacing:15.048000px;}
.ws1e_c00159{word-spacing:15.840000px;}
.ws5_c00159{word-spacing:19.080000px;}
.ws14_c00159{word-spacing:19.296000px;}
.ws16_c00159{word-spacing:19.368000px;}
.ws15_c00159{word-spacing:19.440000px;}
.ws23_c00159{word-spacing:20.160000px;}
.ws3_c00159{word-spacing:22.536000px;}
.ws1f_c00159{word-spacing:22.608000px;}
.ws4_c00159{word-spacing:23.472000px;}
.ws25_c00159{word-spacing:25.128000px;}
.ws13_c00159{word-spacing:30.528000px;}
._1_c00159{margin-left:-1.296000px;}
._0_c00159{width:1.054080px;}
._3_c00159{width:2.952000px;}
._4_c00159{width:20.016000px;}
._2_c00159{width:37.144800px;}
.fc1_c00159{color:rgb(0,0,0);}
.fc0_c00159{color:rgb(35,31,32);}
.fs1_c00159{font-size:65.880000px;}
.fs0_c00159{font-size:72.000000px;}
.y0_c00159{bottom:0.000000px;}
.y1_c00159{bottom:61.748550px;}
.y24_c00159{bottom:115.424400px;}
.y23_c00159{bottom:146.474400px;}
.y22_c00159{bottom:177.524400px;}
.y21_c00159{bottom:208.574400px;}
.y20_c00159{bottom:239.624400px;}
.y1f_c00159{bottom:270.674400px;}
.y1e_c00159{bottom:301.724400px;}
.y1d_c00159{bottom:332.774400px;}
.y1c_c00159{bottom:363.824400px;}
.y1b_c00159{bottom:394.874400px;}
.y1a_c00159{bottom:425.924400px;}
.y19_c00159{bottom:456.974400px;}
.y18_c00159{bottom:488.024400px;}
.y17_c00159{bottom:519.074400px;}
.y16_c00159{bottom:550.124400px;}
.y15_c00159{bottom:581.174400px;}
.y14_c00159{bottom:612.224400px;}
.y13_c00159{bottom:643.274400px;}
.y12_c00159{bottom:674.324400px;}
.y11_c00159{bottom:705.374400px;}
.y10_c00159{bottom:736.424400px;}
.yf_c00159{bottom:767.474400px;}
.ye_c00159{bottom:798.434400px;}
.yd_c00159{bottom:829.484400px;}
.yc_c00159{bottom:891.584400px;}
.yb_c00159{bottom:922.634400px;}
.ya_c00159{bottom:953.684400px;}
.y9_c00159{bottom:984.734400px;}
.y8_c00159{bottom:1015.784400px;}
.y7_c00159{bottom:1046.834400px;}
.y6_c00159{bottom:1077.884400px;}
.y5_c00159{bottom:1108.934400px;}
.y4_c00159{bottom:1139.984400px;}
.y3_c00159{bottom:1173.915120px;}
.y2_c00159{bottom:1194.074400px;}
.h2_c00159{height:50.400000px;}
.h3_c00159{height:54.331699px;}
.h4_c00159{height:59.376026px;}
.h5_c00159{height:76.824000px;}
.h6_c00159{height:78.048000px;}
.h0_c00159{height:1262.835000px;}
.h1_c00159{height:1263.000000px;}
.w0_c00159{width:892.914000px;}
.w1_c00159{width:893.250000px;}
.x0_c00159{left:0.000000px;}
.x1_c00159{left:54.000000px;}
.x2_c00159{left:127.620000px;}
.x3_c00159{left:159.570000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls5_c00159{letter-spacing:-0.320000pt;}
.ls4_c00159{letter-spacing:-0.256000pt;}
.ls3_c00159{letter-spacing:0.000000pt;}
.ls1_c00159{letter-spacing:0.064000pt;}
.ls0_c00159{letter-spacing:0.128000pt;}
.ls2_c00159{letter-spacing:29.120000pt;}
.ws6_c00159{word-spacing:-16.064000pt;}
.ws2_c00159{word-spacing:-15.680000pt;}
.ws0_c00159{word-spacing:-13.234560pt;}
.ws24_c00159{word-spacing:-0.128000pt;}
.ws8_c00159{word-spacing:0.000000pt;}
.ws1b_c00159{word-spacing:0.256000pt;}
.ws18_c00159{word-spacing:0.320000pt;}
.ws1c_c00159{word-spacing:0.576000pt;}
.ws1_c00159{word-spacing:0.832000pt;}
.wsd_c00159{word-spacing:0.896000pt;}
.wsf_c00159{word-spacing:1.152000pt;}
.ws28_c00159{word-spacing:1.216000pt;}
.wse_c00159{word-spacing:1.280000pt;}
.ws17_c00159{word-spacing:1.856000pt;}
.ws19_c00159{word-spacing:2.496000pt;}
.ws1a_c00159{word-spacing:2.560000pt;}
.ws1d_c00159{word-spacing:2.816000pt;}
.wsb_c00159{word-spacing:2.880000pt;}
.wsa_c00159{word-spacing:3.200000pt;}
.ws26_c00159{word-spacing:3.776000pt;}
.ws20_c00159{word-spacing:3.840000pt;}
.wsc_c00159{word-spacing:5.120000pt;}
.ws29_c00159{word-spacing:5.376000pt;}
.ws7_c00159{word-spacing:6.080000pt;}
.ws9_c00159{word-spacing:7.261440pt;}
.ws2c_c00159{word-spacing:7.552000pt;}
.ws2b_c00159{word-spacing:7.616000pt;}
.ws10_c00159{word-spacing:8.576000pt;}
.ws11_c00159{word-spacing:8.640000pt;}
.ws12_c00159{word-spacing:9.216000pt;}
.ws27_c00159{word-spacing:12.416000pt;}
.ws22_c00159{word-spacing:13.056000pt;}
.ws21_c00159{word-spacing:13.120000pt;}
.ws2a_c00159{word-spacing:13.376000pt;}
.ws1e_c00159{word-spacing:14.080000pt;}
.ws5_c00159{word-spacing:16.960000pt;}
.ws14_c00159{word-spacing:17.152000pt;}
.ws16_c00159{word-spacing:17.216000pt;}
.ws15_c00159{word-spacing:17.280000pt;}
.ws23_c00159{word-spacing:17.920000pt;}
.ws3_c00159{word-spacing:20.032000pt;}
.ws1f_c00159{word-spacing:20.096000pt;}
.ws4_c00159{word-spacing:20.864000pt;}
.ws25_c00159{word-spacing:22.336000pt;}
.ws13_c00159{word-spacing:27.136000pt;}
._1_c00159{margin-left:-1.152000pt;}
._0_c00159{width:0.936960pt;}
._3_c00159{width:2.624000pt;}
._4_c00159{width:17.792000pt;}
._2_c00159{width:33.017600pt;}
.fs1_c00159{font-size:58.560000pt;}
.fs0_c00159{font-size:64.000000pt;}
.y0_c00159{bottom:0.000000pt;}
.y1_c00159{bottom:54.887600pt;}
.y24_c00159{bottom:102.599467pt;}
.y23_c00159{bottom:130.199467pt;}
.y22_c00159{bottom:157.799467pt;}
.y21_c00159{bottom:185.399467pt;}
.y20_c00159{bottom:212.999467pt;}
.y1f_c00159{bottom:240.599467pt;}
.y1e_c00159{bottom:268.199467pt;}
.y1d_c00159{bottom:295.799467pt;}
.y1c_c00159{bottom:323.399467pt;}
.y1b_c00159{bottom:350.999467pt;}
.y1a_c00159{bottom:378.599467pt;}
.y19_c00159{bottom:406.199467pt;}
.y18_c00159{bottom:433.799467pt;}
.y17_c00159{bottom:461.399467pt;}
.y16_c00159{bottom:488.999467pt;}
.y15_c00159{bottom:516.599467pt;}
.y14_c00159{bottom:544.199467pt;}
.y13_c00159{bottom:571.799467pt;}
.y12_c00159{bottom:599.399467pt;}
.y11_c00159{bottom:626.999467pt;}
.y10_c00159{bottom:654.599467pt;}
.yf_c00159{bottom:682.199467pt;}
.ye_c00159{bottom:709.719467pt;}
.yd_c00159{bottom:737.319467pt;}
.yc_c00159{bottom:792.519467pt;}
.yb_c00159{bottom:820.119467pt;}
.ya_c00159{bottom:847.719467pt;}
.y9_c00159{bottom:875.319467pt;}
.y8_c00159{bottom:902.919467pt;}
.y7_c00159{bottom:930.519467pt;}
.y6_c00159{bottom:958.119467pt;}
.y5_c00159{bottom:985.719467pt;}
.y4_c00159{bottom:1013.319467pt;}
.y3_c00159{bottom:1043.480107pt;}
.y2_c00159{bottom:1061.399467pt;}
.h2_c00159{height:44.800000pt;}
.h3_c00159{height:48.294844pt;}
.h4_c00159{height:52.778690pt;}
.h5_c00159{height:68.288000pt;}
.h6_c00159{height:69.376000pt;}
.h0_c00159{height:1122.520000pt;}
.h1_c00159{height:1122.666667pt;}
.w0_c00159{width:793.701333pt;}
.w1_c00159{width:794.000000pt;}
.x0_c00159{left:0.000000pt;}
.x1_c00159{left:48.000000pt;}
.x2_c00159{left:113.440000pt;}
.x3_c00159{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00160;src:url('chunks/assets/font_597736c6565b386055ceaf46.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00160;src:url('chunks/assets/font_fbb7c36ed6f49fe4031d93ba.woff2')format("woff");}.ff3_c00160{font-family:ff3_c00160;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00160;src:url('chunks/assets/font_e75b79953ffacbb439bbff7e.woff2')format("woff");}.ff4_c00160{font-family:ff4_c00160;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00160;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00160{font-family:ff5_c00160;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00160;src:url('chunks/assets/font_f47782087f158551e4139f84.woff2')format("woff");}.ff6_c00160{font-family:ff6_c00160;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00160;src:url('chunks/assets/font_777c891f828eab223d769cbf.woff2')format("woff");}.ff7_c00160{font-family:ff7_c00160;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00160;src:url('chunks/assets/font_08b2030681aa1d5fca7bedba.woff2')format("woff");}.ff8_c00160{font-family:ff8_c00160;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls9_c00160{letter-spacing:-0.360000px;}
.ls8_c00160{letter-spacing:-0.288000px;}
.lsa_c00160{letter-spacing:-0.072000px;}
.ls7_c00160{letter-spacing:0.000000px;}
.ls1_c00160{letter-spacing:0.072000px;}
.ls0_c00160{letter-spacing:0.144000px;}
.ls5_c00160{letter-spacing:0.360000px;}
.ls6_c00160{letter-spacing:20.160000px;}
.ls3_c00160{letter-spacing:28.512000px;}
.ls4_c00160{letter-spacing:28.814400px;}
.ls2_c00160{letter-spacing:32.760000px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00160{word-spacing:-18.072000px;}
.ws8_c00160{word-spacing:-18.000000px;}
.ws2_c00160{word-spacing:-17.640000px;}
.ws0_c00160{word-spacing:-14.888880px;}
.ws43_c00160{word-spacing:-0.360000px;}
.ws26_c00160{word-spacing:-0.144000px;}
.ws2f_c00160{word-spacing:-0.131760px;}
.ws3a_c00160{word-spacing:-0.072000px;}
.wsa_c00160{word-spacing:0.000000px;}
.ws1d_c00160{word-spacing:0.288000px;}
.ws1a_c00160{word-spacing:0.360000px;}
.ws1e_c00160{word-spacing:0.648000px;}
.ws47_c00160{word-spacing:0.720000px;}
.ws1_c00160{word-spacing:0.936000px;}
.wsf_c00160{word-spacing:1.008000px;}
.ws11_c00160{word-spacing:1.296000px;}
.ws2a_c00160{word-spacing:1.368000px;}
.ws10_c00160{word-spacing:1.440000px;}
.ws35_c00160{word-spacing:1.800000px;}
.ws19_c00160{word-spacing:2.088000px;}
.ws46_c00160{word-spacing:2.160000px;}
.ws44_c00160{word-spacing:2.448000px;}
.ws45_c00160{word-spacing:2.520000px;}
.ws1b_c00160{word-spacing:2.808000px;}
.ws1c_c00160{word-spacing:2.880000px;}
.ws1f_c00160{word-spacing:3.168000px;}
.wsd_c00160{word-spacing:3.240000px;}
.wsc_c00160{word-spacing:3.600000px;}
.ws31_c00160{word-spacing:3.888000px;}
.ws28_c00160{word-spacing:4.248000px;}
.ws22_c00160{word-spacing:4.320000px;}
.ws30_c00160{word-spacing:4.680000px;}
.ws40_c00160{word-spacing:5.040000px;}
.wse_c00160{word-spacing:5.760000px;}
.ws2b_c00160{word-spacing:6.048000px;}
.ws7_c00160{word-spacing:6.840000px;}
.wsb_c00160{word-spacing:8.169120px;}
.ws2e_c00160{word-spacing:8.496000px;}
.ws2d_c00160{word-spacing:8.568000px;}
.ws42_c00160{word-spacing:8.640000px;}
.ws12_c00160{word-spacing:9.648000px;}
.ws13_c00160{word-spacing:9.720000px;}
.ws38_c00160{word-spacing:10.008000px;}
.ws39_c00160{word-spacing:10.296000px;}
.ws14_c00160{word-spacing:10.368000px;}
.ws37_c00160{word-spacing:10.440000px;}
.ws3c_c00160{word-spacing:11.016000px;}
.ws3b_c00160{word-spacing:11.088000px;}
.ws3d_c00160{word-spacing:13.248000px;}
.ws3f_c00160{word-spacing:13.896000px;}
.ws29_c00160{word-spacing:13.968000px;}
.ws3e_c00160{word-spacing:14.040000px;}
.ws24_c00160{word-spacing:14.688000px;}
.ws23_c00160{word-spacing:14.760000px;}
.ws2c_c00160{word-spacing:15.048000px;}
.ws33_c00160{word-spacing:15.408000px;}
.ws20_c00160{word-spacing:15.840000px;}
.ws32_c00160{word-spacing:17.928000px;}
.ws36_c00160{word-spacing:18.720000px;}
.ws5_c00160{word-spacing:19.080000px;}
.ws16_c00160{word-spacing:19.296000px;}
.ws18_c00160{word-spacing:19.368000px;}
.ws17_c00160{word-spacing:19.440000px;}
.ws25_c00160{word-spacing:20.160000px;}
.ws3_c00160{word-spacing:22.536000px;}
.ws21_c00160{word-spacing:22.608000px;}
.ws4_c00160{word-spacing:23.472000px;}
.ws34_c00160{word-spacing:23.688000px;}
.ws41_c00160{word-spacing:24.840000px;}
.ws9_c00160{word-spacing:25.056000px;}
.ws27_c00160{word-spacing:25.128000px;}
.ws15_c00160{word-spacing:30.528000px;}
._1_c00160{margin-left:-1.296000px;}
._0_c00160{width:1.054080px;}
._3_c00160{width:2.952000px;}
._5_c00160{width:10.512000px;}
._7_c00160{width:13.896000px;}
._4_c00160{width:20.016000px;}
._6_c00160{width:26.784000px;}
._2_c00160{width:37.144800px;}
.fc2_c00160{color:transparent;}
.fc1_c00160{color:rgb(0,0,0);}
.fc0_c00160{color:rgb(35,31,32);}
.fs1_c00160{font-size:65.880000px;}
.fs0_c00160{font-size:72.000000px;}
.y0_c00160{bottom:0.000000px;}
.y1_c00160{bottom:61.748550px;}
.y24_c00160{bottom:115.424400px;}
.y23_c00160{bottom:146.474400px;}
.y22_c00160{bottom:177.524400px;}
.y21_c00160{bottom:208.574400px;}
.y20_c00160{bottom:239.624400px;}
.y1f_c00160{bottom:270.674400px;}
.y1e_c00160{bottom:301.724400px;}
.y1d_c00160{bottom:332.774400px;}
.y1c_c00160{bottom:363.824400px;}
.y1b_c00160{bottom:394.874400px;}
.y1a_c00160{bottom:425.924400px;}
.y19_c00160{bottom:456.974400px;}
.y18_c00160{bottom:488.024400px;}
.y17_c00160{bottom:519.074400px;}
.y16_c00160{bottom:550.124400px;}
.y15_c00160{bottom:581.174400px;}
.y14_c00160{bottom:612.224400px;}
.y13_c00160{bottom:643.274400px;}
.y12_c00160{bottom:674.324400px;}
.y11_c00160{bottom:705.374400px;}
.y10_c00160{bottom:736.424400px;}
.yf_c00160{bottom:767.474400px;}
.ye_c00160{bottom:798.434400px;}
.yd_c00160{bottom:829.484400px;}
.y25_c00160{bottom:860.534400px;}
.yc_c00160{bottom:891.584400px;}
.yb_c00160{bottom:922.634400px;}
.ya_c00160{bottom:953.684400px;}
.y9_c00160{bottom:984.734400px;}
.y8_c00160{bottom:1015.784400px;}
.y7_c00160{bottom:1046.834400px;}
.y6_c00160{bottom:1077.884400px;}
.y5_c00160{bottom:1108.934400px;}
.y4_c00160{bottom:1139.984400px;}
.y3_c00160{bottom:1173.915120px;}
.y2_c00160{bottom:1194.074400px;}
.h2_c00160{height:50.400000px;}
.h3_c00160{height:54.331699px;}
.h4_c00160{height:59.376026px;}
.h5_c00160{height:76.824000px;}
.h6_c00160{height:78.048000px;}
.h0_c00160{height:1262.835000px;}
.h1_c00160{height:1263.000000px;}
.w2_c00160{width:0.000000px;}
.w3_c00160{width:0.066000px;}
.w0_c00160{width:892.914000px;}
.w1_c00160{width:893.250000px;}
.x1_c00160{left:-838.913400px;}
.x2_c00160{left:-765.293400px;}
.x3_c00160{left:-733.343400px;}
.x0_c00160{left:0.000000px;}
.x6_c00160{left:127.620000px;}
.x8_c00160{left:159.570000px;}
.x7_c00160{left:164.070000px;}
.x5_c00160{left:692.370000px;}
.x4_c00160{left:804.366150px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls9_c00160{letter-spacing:-0.320000pt;}
.ls8_c00160{letter-spacing:-0.256000pt;}
.lsa_c00160{letter-spacing:-0.064000pt;}
.ls7_c00160{letter-spacing:0.000000pt;}
.ls1_c00160{letter-spacing:0.064000pt;}
.ls0_c00160{letter-spacing:0.128000pt;}
.ls5_c00160{letter-spacing:0.320000pt;}
.ls6_c00160{letter-spacing:17.920000pt;}
.ls3_c00160{letter-spacing:25.344000pt;}
.ls4_c00160{letter-spacing:25.612800pt;}
.ls2_c00160{letter-spacing:29.120000pt;}
.ws6_c00160{word-spacing:-16.064000pt;}
.ws8_c00160{word-spacing:-16.000000pt;}
.ws2_c00160{word-spacing:-15.680000pt;}
.ws0_c00160{word-spacing:-13.234560pt;}
.ws43_c00160{word-spacing:-0.320000pt;}
.ws26_c00160{word-spacing:-0.128000pt;}
.ws2f_c00160{word-spacing:-0.117120pt;}
.ws3a_c00160{word-spacing:-0.064000pt;}
.wsa_c00160{word-spacing:0.000000pt;}
.ws1d_c00160{word-spacing:0.256000pt;}
.ws1a_c00160{word-spacing:0.320000pt;}
.ws1e_c00160{word-spacing:0.576000pt;}
.ws47_c00160{word-spacing:0.640000pt;}
.ws1_c00160{word-spacing:0.832000pt;}
.wsf_c00160{word-spacing:0.896000pt;}
.ws11_c00160{word-spacing:1.152000pt;}
.ws2a_c00160{word-spacing:1.216000pt;}
.ws10_c00160{word-spacing:1.280000pt;}
.ws35_c00160{word-spacing:1.600000pt;}
.ws19_c00160{word-spacing:1.856000pt;}
.ws46_c00160{word-spacing:1.920000pt;}
.ws44_c00160{word-spacing:2.176000pt;}
.ws45_c00160{word-spacing:2.240000pt;}
.ws1b_c00160{word-spacing:2.496000pt;}
.ws1c_c00160{word-spacing:2.560000pt;}
.ws1f_c00160{word-spacing:2.816000pt;}
.wsd_c00160{word-spacing:2.880000pt;}
.wsc_c00160{word-spacing:3.200000pt;}
.ws31_c00160{word-spacing:3.456000pt;}
.ws28_c00160{word-spacing:3.776000pt;}
.ws22_c00160{word-spacing:3.840000pt;}
.ws30_c00160{word-spacing:4.160000pt;}
.ws40_c00160{word-spacing:4.480000pt;}
.wse_c00160{word-spacing:5.120000pt;}
.ws2b_c00160{word-spacing:5.376000pt;}
.ws7_c00160{word-spacing:6.080000pt;}
.wsb_c00160{word-spacing:7.261440pt;}
.ws2e_c00160{word-spacing:7.552000pt;}
.ws2d_c00160{word-spacing:7.616000pt;}
.ws42_c00160{word-spacing:7.680000pt;}
.ws12_c00160{word-spacing:8.576000pt;}
.ws13_c00160{word-spacing:8.640000pt;}
.ws38_c00160{word-spacing:8.896000pt;}
.ws39_c00160{word-spacing:9.152000pt;}
.ws14_c00160{word-spacing:9.216000pt;}
.ws37_c00160{word-spacing:9.280000pt;}
.ws3c_c00160{word-spacing:9.792000pt;}
.ws3b_c00160{word-spacing:9.856000pt;}
.ws3d_c00160{word-spacing:11.776000pt;}
.ws3f_c00160{word-spacing:12.352000pt;}
.ws29_c00160{word-spacing:12.416000pt;}
.ws3e_c00160{word-spacing:12.480000pt;}
.ws24_c00160{word-spacing:13.056000pt;}
.ws23_c00160{word-spacing:13.120000pt;}
.ws2c_c00160{word-spacing:13.376000pt;}
.ws33_c00160{word-spacing:13.696000pt;}
.ws20_c00160{word-spacing:14.080000pt;}
.ws32_c00160{word-spacing:15.936000pt;}
.ws36_c00160{word-spacing:16.640000pt;}
.ws5_c00160{word-spacing:16.960000pt;}
.ws16_c00160{word-spacing:17.152000pt;}
.ws18_c00160{word-spacing:17.216000pt;}
.ws17_c00160{word-spacing:17.280000pt;}
.ws25_c00160{word-spacing:17.920000pt;}
.ws3_c00160{word-spacing:20.032000pt;}
.ws21_c00160{word-spacing:20.096000pt;}
.ws4_c00160{word-spacing:20.864000pt;}
.ws34_c00160{word-spacing:21.056000pt;}
.ws41_c00160{word-spacing:22.080000pt;}
.ws9_c00160{word-spacing:22.272000pt;}
.ws27_c00160{word-spacing:22.336000pt;}
.ws15_c00160{word-spacing:27.136000pt;}
._1_c00160{margin-left:-1.152000pt;}
._0_c00160{width:0.936960pt;}
._3_c00160{width:2.624000pt;}
._5_c00160{width:9.344000pt;}
._7_c00160{width:12.352000pt;}
._4_c00160{width:17.792000pt;}
._6_c00160{width:23.808000pt;}
._2_c00160{width:33.017600pt;}
.fs1_c00160{font-size:58.560000pt;}
.fs0_c00160{font-size:64.000000pt;}
.y0_c00160{bottom:0.000000pt;}
.y1_c00160{bottom:54.887600pt;}
.y24_c00160{bottom:102.599467pt;}
.y23_c00160{bottom:130.199467pt;}
.y22_c00160{bottom:157.799467pt;}
.y21_c00160{bottom:185.399467pt;}
.y20_c00160{bottom:212.999467pt;}
.y1f_c00160{bottom:240.599467pt;}
.y1e_c00160{bottom:268.199467pt;}
.y1d_c00160{bottom:295.799467pt;}
.y1c_c00160{bottom:323.399467pt;}
.y1b_c00160{bottom:350.999467pt;}
.y1a_c00160{bottom:378.599467pt;}
.y19_c00160{bottom:406.199467pt;}
.y18_c00160{bottom:433.799467pt;}
.y17_c00160{bottom:461.399467pt;}
.y16_c00160{bottom:488.999467pt;}
.y15_c00160{bottom:516.599467pt;}
.y14_c00160{bottom:544.199467pt;}
.y13_c00160{bottom:571.799467pt;}
.y12_c00160{bottom:599.399467pt;}
.y11_c00160{bottom:626.999467pt;}
.y10_c00160{bottom:654.599467pt;}
.yf_c00160{bottom:682.199467pt;}
.ye_c00160{bottom:709.719467pt;}
.yd_c00160{bottom:737.319467pt;}
.y25_c00160{bottom:764.919467pt;}
.yc_c00160{bottom:792.519467pt;}
.yb_c00160{bottom:820.119467pt;}
.ya_c00160{bottom:847.719467pt;}
.y9_c00160{bottom:875.319467pt;}
.y8_c00160{bottom:902.919467pt;}
.y7_c00160{bottom:930.519467pt;}
.y6_c00160{bottom:958.119467pt;}
.y5_c00160{bottom:985.719467pt;}
.y4_c00160{bottom:1013.319467pt;}
.y3_c00160{bottom:1043.480107pt;}
.y2_c00160{bottom:1061.399467pt;}
.h2_c00160{height:44.800000pt;}
.h3_c00160{height:48.294844pt;}
.h4_c00160{height:52.778690pt;}
.h5_c00160{height:68.288000pt;}
.h6_c00160{height:69.376000pt;}
.h0_c00160{height:1122.520000pt;}
.h1_c00160{height:1122.666667pt;}
.w2_c00160{width:0.000000pt;}
.w3_c00160{width:0.058667pt;}
.w0_c00160{width:793.701333pt;}
.w1_c00160{width:794.000000pt;}
.x1_c00160{left:-745.700800pt;}
.x2_c00160{left:-680.260800pt;}
.x3_c00160{left:-651.860800pt;}
.x0_c00160{left:0.000000pt;}
.x6_c00160{left:113.440000pt;}
.x8_c00160{left:141.840000pt;}
.x7_c00160{left:145.840000pt;}
.x5_c00160{left:615.440000pt;}
.x4_c00160{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00161;src:url('chunks/assets/font_2ee5855f2ae8ca287ba19b73.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00161;src:url('chunks/assets/font_528e5b711769a3f4729a5a60.woff2')format("woff");}.ff3_c00161{font-family:ff3_c00161;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00161;src:url('chunks/assets/font_51e29c5ff86878be7d6dbcc7.woff2')format("woff");}.ff4_c00161{font-family:ff4_c00161;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00161{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls9_c00161{letter-spacing:-0.216000px;}
.ls8_c00161{letter-spacing:-0.072000px;}
.ls7_c00161{letter-spacing:0.000000px;}
.ls0_c00161{letter-spacing:0.072000px;}
.ls6_c00161{letter-spacing:19.512000px;}
.ls1_c00161{letter-spacing:19.800000px;}
.ls4_c00161{letter-spacing:19.828800px;}
.ls5_c00161{letter-spacing:25.560000px;}
.ls2_c00161{letter-spacing:32.018400px;}
.ls3_c00161{letter-spacing:35.640000px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00161{word-spacing:-18.000000px;}
.ws0_c00161{word-spacing:-14.888880px;}
.ws14_c00161{word-spacing:-0.072000px;}
.ws5_c00161{word-spacing:0.000000px;}
.ws16_c00161{word-spacing:0.216000px;}
.ws12_c00161{word-spacing:0.288000px;}
.ws3_c00161{word-spacing:0.648000px;}
.wsc_c00161{word-spacing:0.720000px;}
.ws23_c00161{word-spacing:1.296000px;}
.ws22_c00161{word-spacing:1.368000px;}
.ws21_c00161{word-spacing:1.440000px;}
.ws1a_c00161{word-spacing:1.728000px;}
.ws19_c00161{word-spacing:1.800000px;}
.ws11_c00161{word-spacing:2.160000px;}
.ws1_c00161{word-spacing:3.096000px;}
.ws8_c00161{word-spacing:3.456000px;}
.ws7_c00161{word-spacing:3.600000px;}
.wsa_c00161{word-spacing:4.608000px;}
.ws9_c00161{word-spacing:4.680000px;}
.ws1c_c00161{word-spacing:4.968000px;}
.ws24_c00161{word-spacing:6.408000px;}
.ws25_c00161{word-spacing:6.480000px;}
.ws10_c00161{word-spacing:6.768000px;}
.ws29_c00161{word-spacing:7.560000px;}
.ws20_c00161{word-spacing:7.848000px;}
.ws6_c00161{word-spacing:8.169120px;}
.wsf_c00161{word-spacing:8.640000px;}
.ws13_c00161{word-spacing:10.008000px;}
.wsd_c00161{word-spacing:12.168000px;}
.wse_c00161{word-spacing:12.240000px;}
.ws26_c00161{word-spacing:12.528000px;}
.ws15_c00161{word-spacing:14.040000px;}
.ws1b_c00161{word-spacing:17.280000px;}
.ws18_c00161{word-spacing:17.424000px;}
.ws17_c00161{word-spacing:17.640000px;}
.ws4_c00161{word-spacing:17.856000px;}
.ws1e_c00161{word-spacing:19.368000px;}
.ws1d_c00161{word-spacing:19.440000px;}
.ws28_c00161{word-spacing:20.448000px;}
.ws27_c00161{word-spacing:20.520000px;}
.ws1f_c00161{word-spacing:26.280000px;}
.wsb_c00161{word-spacing:35.280000px;}
._1_c00161{margin-left:-1.008000px;}
._0_c00161{width:1.054080px;}
._2_c00161{width:4.608000px;}
._3_c00161{width:28.728000px;}
.fc1_c00161{color:rgb(0,0,0);}
.fc0_c00161{color:rgb(35,31,32);}
.fs1_c00161{font-size:65.880000px;}
.fs0_c00161{font-size:72.000000px;}
.y0_c00161{bottom:0.000000px;}
.y1_c00161{bottom:61.748550px;}
.y21_c00161{bottom:115.424400px;}
.y20_c00161{bottom:146.474400px;}
.y1f_c00161{bottom:177.524400px;}
.y1e_c00161{bottom:208.574400px;}
.y1d_c00161{bottom:239.624400px;}
.y1c_c00161{bottom:270.674400px;}
.y1b_c00161{bottom:301.724400px;}
.y1a_c00161{bottom:332.774400px;}
.y19_c00161{bottom:363.824400px;}
.y18_c00161{bottom:394.874400px;}
.y17_c00161{bottom:456.974400px;}
.y16_c00161{bottom:488.024400px;}
.y15_c00161{bottom:519.074400px;}
.y14_c00161{bottom:550.124400px;}
.y13_c00161{bottom:581.174400px;}
.y12_c00161{bottom:643.274400px;}
.y11_c00161{bottom:674.324400px;}
.y10_c00161{bottom:705.374400px;}
.yf_c00161{bottom:736.424400px;}
.ye_c00161{bottom:798.434400px;}
.yd_c00161{bottom:829.484400px;}
.yc_c00161{bottom:860.534400px;}
.yb_c00161{bottom:891.584400px;}
.ya_c00161{bottom:922.634400px;}
.y9_c00161{bottom:953.684400px;}
.y8_c00161{bottom:984.734400px;}
.y7_c00161{bottom:1046.834400px;}
.y6_c00161{bottom:1077.884400px;}
.y5_c00161{bottom:1108.934400px;}
.y4_c00161{bottom:1139.984400px;}
.y3_c00161{bottom:1173.915120px;}
.y2_c00161{bottom:1194.074400px;}
.h2_c00161{height:50.400000px;}
.h3_c00161{height:54.331699px;}
.h4_c00161{height:59.376026px;}
.h6_c00161{height:76.824000px;}
.h5_c00161{height:78.048000px;}
.h0_c00161{height:1262.835000px;}
.h1_c00161{height:1263.000000px;}
.w0_c00161{width:892.914000px;}
.w1_c00161{width:893.250000px;}
.x0_c00161{left:0.000000px;}
.x1_c00161{left:54.000000px;}
.x2_c00161{left:127.620000px;}
.x3_c00161{left:159.570000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls9_c00161{letter-spacing:-0.192000pt;}
.ls8_c00161{letter-spacing:-0.064000pt;}
.ls7_c00161{letter-spacing:0.000000pt;}
.ls0_c00161{letter-spacing:0.064000pt;}
.ls6_c00161{letter-spacing:17.344000pt;}
.ls1_c00161{letter-spacing:17.600000pt;}
.ls4_c00161{letter-spacing:17.625600pt;}
.ls5_c00161{letter-spacing:22.720000pt;}
.ls2_c00161{letter-spacing:28.460800pt;}
.ls3_c00161{letter-spacing:31.680000pt;}
.ws2_c00161{word-spacing:-16.000000pt;}
.ws0_c00161{word-spacing:-13.234560pt;}
.ws14_c00161{word-spacing:-0.064000pt;}
.ws5_c00161{word-spacing:0.000000pt;}
.ws16_c00161{word-spacing:0.192000pt;}
.ws12_c00161{word-spacing:0.256000pt;}
.ws3_c00161{word-spacing:0.576000pt;}
.wsc_c00161{word-spacing:0.640000pt;}
.ws23_c00161{word-spacing:1.152000pt;}
.ws22_c00161{word-spacing:1.216000pt;}
.ws21_c00161{word-spacing:1.280000pt;}
.ws1a_c00161{word-spacing:1.536000pt;}
.ws19_c00161{word-spacing:1.600000pt;}
.ws11_c00161{word-spacing:1.920000pt;}
.ws1_c00161{word-spacing:2.752000pt;}
.ws8_c00161{word-spacing:3.072000pt;}
.ws7_c00161{word-spacing:3.200000pt;}
.wsa_c00161{word-spacing:4.096000pt;}
.ws9_c00161{word-spacing:4.160000pt;}
.ws1c_c00161{word-spacing:4.416000pt;}
.ws24_c00161{word-spacing:5.696000pt;}
.ws25_c00161{word-spacing:5.760000pt;}
.ws10_c00161{word-spacing:6.016000pt;}
.ws29_c00161{word-spacing:6.720000pt;}
.ws20_c00161{word-spacing:6.976000pt;}
.ws6_c00161{word-spacing:7.261440pt;}
.wsf_c00161{word-spacing:7.680000pt;}
.ws13_c00161{word-spacing:8.896000pt;}
.wsd_c00161{word-spacing:10.816000pt;}
.wse_c00161{word-spacing:10.880000pt;}
.ws26_c00161{word-spacing:11.136000pt;}
.ws15_c00161{word-spacing:12.480000pt;}
.ws1b_c00161{word-spacing:15.360000pt;}
.ws18_c00161{word-spacing:15.488000pt;}
.ws17_c00161{word-spacing:15.680000pt;}
.ws4_c00161{word-spacing:15.872000pt;}
.ws1e_c00161{word-spacing:17.216000pt;}
.ws1d_c00161{word-spacing:17.280000pt;}
.ws28_c00161{word-spacing:18.176000pt;}
.ws27_c00161{word-spacing:18.240000pt;}
.ws1f_c00161{word-spacing:23.360000pt;}
.wsb_c00161{word-spacing:31.360000pt;}
._1_c00161{margin-left:-0.896000pt;}
._0_c00161{width:0.936960pt;}
._2_c00161{width:4.096000pt;}
._3_c00161{width:25.536000pt;}
.fs1_c00161{font-size:58.560000pt;}
.fs0_c00161{font-size:64.000000pt;}
.y0_c00161{bottom:0.000000pt;}
.y1_c00161{bottom:54.887600pt;}
.y21_c00161{bottom:102.599467pt;}
.y20_c00161{bottom:130.199467pt;}
.y1f_c00161{bottom:157.799467pt;}
.y1e_c00161{bottom:185.399467pt;}
.y1d_c00161{bottom:212.999467pt;}
.y1c_c00161{bottom:240.599467pt;}
.y1b_c00161{bottom:268.199467pt;}
.y1a_c00161{bottom:295.799467pt;}
.y19_c00161{bottom:323.399467pt;}
.y18_c00161{bottom:350.999467pt;}
.y17_c00161{bottom:406.199467pt;}
.y16_c00161{bottom:433.799467pt;}
.y15_c00161{bottom:461.399467pt;}
.y14_c00161{bottom:488.999467pt;}
.y13_c00161{bottom:516.599467pt;}
.y12_c00161{bottom:571.799467pt;}
.y11_c00161{bottom:599.399467pt;}
.y10_c00161{bottom:626.999467pt;}
.yf_c00161{bottom:654.599467pt;}
.ye_c00161{bottom:709.719467pt;}
.yd_c00161{bottom:737.319467pt;}
.yc_c00161{bottom:764.919467pt;}
.yb_c00161{bottom:792.519467pt;}
.ya_c00161{bottom:820.119467pt;}
.y9_c00161{bottom:847.719467pt;}
.y8_c00161{bottom:875.319467pt;}
.y7_c00161{bottom:930.519467pt;}
.y6_c00161{bottom:958.119467pt;}
.y5_c00161{bottom:985.719467pt;}
.y4_c00161{bottom:1013.319467pt;}
.y3_c00161{bottom:1043.480107pt;}
.y2_c00161{bottom:1061.399467pt;}
.h2_c00161{height:44.800000pt;}
.h3_c00161{height:48.294844pt;}
.h4_c00161{height:52.778690pt;}
.h6_c00161{height:68.288000pt;}
.h5_c00161{height:69.376000pt;}
.h0_c00161{height:1122.520000pt;}
.h1_c00161{height:1122.666667pt;}
.w0_c00161{width:793.701333pt;}
.w1_c00161{width:794.000000pt;}
.x0_c00161{left:0.000000pt;}
.x1_c00161{left:48.000000pt;}
.x2_c00161{left:113.440000pt;}
.x3_c00161{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00162;src:url('chunks/assets/font_34c5156d23b32ae0198d6cfb.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00162;src:url('chunks/assets/font_07ca61587bac59655f9714da.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00162;src:url('chunks/assets/font_3462217ac51653468bd975d5.woff2')format("woff");}.ff4_c00162{font-family:ff4_c00162;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00162;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00162{font-family:ff5_c00162;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00162;src:url('chunks/assets/font_3d05174f01ebe4a0dc33a5e6.woff2')format("woff");}.ff6_c00162{font-family:ff6_c00162;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00162;src:url('chunks/assets/font_b194ef196a1d69ec2b260483.woff2')format("woff");}.ff7_c00162{font-family:ff7_c00162;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00162;src:url('chunks/assets/font_3462217ac51653468bd975d5.woff2')format("woff");}.ff8_c00162{font-family:ff8_c00162;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls10_c00162{letter-spacing:-0.216000px;}
.lsf_c00162{letter-spacing:-0.072000px;}
.lse_c00162{letter-spacing:0.000000px;}
.ls0_c00162{letter-spacing:0.072000px;}
.ls9_c00162{letter-spacing:0.144000px;}
.ls6_c00162{letter-spacing:19.512000px;}
.ls1_c00162{letter-spacing:19.800000px;}
.ls4_c00162{letter-spacing:19.828800px;}
.ls5_c00162{letter-spacing:25.560000px;}
.ls8_c00162{letter-spacing:31.320000px;}
.ls2_c00162{letter-spacing:32.018400px;}
.ls7_c00162{letter-spacing:32.032800px;}
.ls3_c00162{letter-spacing:35.640000px;}
.lsd_c00162{letter-spacing:36.864000px;}
.lsc_c00162{letter-spacing:41.184000px;}
.lsa_c00162{letter-spacing:43.344000px;}
.lsb_c00162{letter-spacing:49.824000px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00162{word-spacing:-18.072000px;}
.ws2_c00162{word-spacing:-18.000000px;}
.ws0_c00162{word-spacing:-14.888880px;}
.ws2e_c00162{word-spacing:-0.131760px;}
.ws18_c00162{word-spacing:-0.072000px;}
.ws9_c00162{word-spacing:0.000000px;}
.ws1a_c00162{word-spacing:0.216000px;}
.ws16_c00162{word-spacing:0.288000px;}
.ws3_c00162{word-spacing:0.648000px;}
.ws10_c00162{word-spacing:0.720000px;}
.ws38_c00162{word-spacing:1.080000px;}
.ws27_c00162{word-spacing:1.296000px;}
.ws26_c00162{word-spacing:1.368000px;}
.ws25_c00162{word-spacing:1.440000px;}
.ws1e_c00162{word-spacing:1.728000px;}
.ws1d_c00162{word-spacing:1.800000px;}
.ws15_c00162{word-spacing:2.160000px;}
.ws2f_c00162{word-spacing:2.520000px;}
.ws37_c00162{word-spacing:2.808000px;}
.ws1_c00162{word-spacing:3.096000px;}
.wsc_c00162{word-spacing:3.456000px;}
.wsb_c00162{word-spacing:3.600000px;}
.ws3a_c00162{word-spacing:4.320000px;}
.wse_c00162{word-spacing:4.608000px;}
.wsd_c00162{word-spacing:4.680000px;}
.ws7_c00162{word-spacing:4.896000px;}
.ws20_c00162{word-spacing:4.968000px;}
.ws42_c00162{word-spacing:5.040000px;}
.ws28_c00162{word-spacing:6.408000px;}
.ws29_c00162{word-spacing:6.480000px;}
.ws44_c00162{word-spacing:6.696000px;}
.ws14_c00162{word-spacing:6.768000px;}
.ws3e_c00162{word-spacing:6.840000px;}
.ws3c_c00162{word-spacing:7.128000px;}
.ws3d_c00162{word-spacing:7.200000px;}
.ws2d_c00162{word-spacing:7.560000px;}
.ws24_c00162{word-spacing:7.848000px;}
.wsa_c00162{word-spacing:8.169120px;}
.ws13_c00162{word-spacing:8.640000px;}
.ws32_c00162{word-spacing:8.928000px;}
.ws17_c00162{word-spacing:10.008000px;}
.ws39_c00162{word-spacing:11.808000px;}
.ws11_c00162{word-spacing:12.168000px;}
.ws12_c00162{word-spacing:12.240000px;}
.ws2a_c00162{word-spacing:12.528000px;}
.ws31_c00162{word-spacing:12.888000px;}
.ws30_c00162{word-spacing:13.320000px;}
.ws3b_c00162{word-spacing:13.608000px;}
.ws5_c00162{word-spacing:13.824000px;}
.ws19_c00162{word-spacing:14.040000px;}
.ws34_c00162{word-spacing:14.616000px;}
.ws36_c00162{word-spacing:14.688000px;}
.ws35_c00162{word-spacing:14.760000px;}
.ws8_c00162{word-spacing:15.480000px;}
.ws43_c00162{word-spacing:15.696000px;}
.ws33_c00162{word-spacing:16.200000px;}
.ws1f_c00162{word-spacing:17.280000px;}
.ws1c_c00162{word-spacing:17.424000px;}
.ws1b_c00162{word-spacing:17.640000px;}
.ws4_c00162{word-spacing:17.856000px;}
.ws41_c00162{word-spacing:18.720000px;}
.ws22_c00162{word-spacing:19.368000px;}
.ws21_c00162{word-spacing:19.440000px;}
.ws2c_c00162{word-spacing:20.448000px;}
.ws2b_c00162{word-spacing:20.520000px;}
.ws40_c00162{word-spacing:22.968000px;}
.ws3f_c00162{word-spacing:23.040000px;}
.ws23_c00162{word-spacing:26.280000px;}
.wsf_c00162{word-spacing:35.280000px;}
._1_c00162{margin-left:-1.008000px;}
._0_c00162{width:1.054080px;}
._2_c00162{width:4.608000px;}
._3_c00162{width:28.728000px;}
.fc2_c00162{color:transparent;}
.fc1_c00162{color:rgb(0,0,0);}
.fc0_c00162{color:rgb(35,31,32);}
.fs1_c00162{font-size:65.880000px;}
.fs0_c00162{font-size:72.000000px;}
.y0_c00162{bottom:0.000000px;}
.y1_c00162{bottom:61.748550px;}
.y21_c00162{bottom:115.424400px;}
.y20_c00162{bottom:146.474400px;}
.y1f_c00162{bottom:177.524400px;}
.y1e_c00162{bottom:208.574400px;}
.y1d_c00162{bottom:239.624400px;}
.y1c_c00162{bottom:270.674400px;}
.y1b_c00162{bottom:301.724400px;}
.y1a_c00162{bottom:332.774400px;}
.y19_c00162{bottom:363.824400px;}
.y18_c00162{bottom:394.874400px;}
.y25_c00162{bottom:425.924400px;}
.y17_c00162{bottom:456.974400px;}
.y16_c00162{bottom:488.024400px;}
.y15_c00162{bottom:519.074400px;}
.y14_c00162{bottom:550.124400px;}
.y13_c00162{bottom:581.174400px;}
.y24_c00162{bottom:612.224400px;}
.y12_c00162{bottom:643.274400px;}
.y11_c00162{bottom:674.324400px;}
.y10_c00162{bottom:705.374400px;}
.yf_c00162{bottom:736.424400px;}
.y23_c00162{bottom:767.474400px;}
.ye_c00162{bottom:798.434400px;}
.yd_c00162{bottom:829.484400px;}
.yc_c00162{bottom:860.534400px;}
.yb_c00162{bottom:891.584400px;}
.ya_c00162{bottom:922.634400px;}
.y9_c00162{bottom:953.684400px;}
.y8_c00162{bottom:984.734400px;}
.y22_c00162{bottom:1015.784400px;}
.y7_c00162{bottom:1046.834400px;}
.y6_c00162{bottom:1077.884400px;}
.y5_c00162{bottom:1108.934400px;}
.y4_c00162{bottom:1139.984400px;}
.y3_c00162{bottom:1173.915120px;}
.y2_c00162{bottom:1194.074400px;}
.h2_c00162{height:50.400000px;}
.h3_c00162{height:54.331699px;}
.h4_c00162{height:59.376026px;}
.h6_c00162{height:76.824000px;}
.h5_c00162{height:78.048000px;}
.h0_c00162{height:1262.835000px;}
.h1_c00162{height:1263.000000px;}
.w2_c00162{width:0.000000px;}
.w3_c00162{width:0.066000px;}
.w0_c00162{width:892.914000px;}
.w1_c00162{width:893.250000px;}
.x1_c00162{left:-838.913400px;}
.x2_c00162{left:-765.293400px;}
.x3_c00162{left:-733.343400px;}
.x0_c00162{left:0.000000px;}
.x6_c00162{left:127.620000px;}
.x8_c00162{left:148.950000px;}
.x7_c00162{left:159.570000px;}
.x9_c00162{left:170.190000px;}
.x5_c00162{left:692.370000px;}
.x4_c00162{left:804.366150px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls10_c00162{letter-spacing:-0.192000pt;}
.lsf_c00162{letter-spacing:-0.064000pt;}
.lse_c00162{letter-spacing:0.000000pt;}
.ls0_c00162{letter-spacing:0.064000pt;}
.ls9_c00162{letter-spacing:0.128000pt;}
.ls6_c00162{letter-spacing:17.344000pt;}
.ls1_c00162{letter-spacing:17.600000pt;}
.ls4_c00162{letter-spacing:17.625600pt;}
.ls5_c00162{letter-spacing:22.720000pt;}
.ls8_c00162{letter-spacing:27.840000pt;}
.ls2_c00162{letter-spacing:28.460800pt;}
.ls7_c00162{letter-spacing:28.473600pt;}
.ls3_c00162{letter-spacing:31.680000pt;}
.lsd_c00162{letter-spacing:32.768000pt;}
.lsc_c00162{letter-spacing:36.608000pt;}
.lsa_c00162{letter-spacing:38.528000pt;}
.lsb_c00162{letter-spacing:44.288000pt;}
.ws6_c00162{word-spacing:-16.064000pt;}
.ws2_c00162{word-spacing:-16.000000pt;}
.ws0_c00162{word-spacing:-13.234560pt;}
.ws2e_c00162{word-spacing:-0.117120pt;}
.ws18_c00162{word-spacing:-0.064000pt;}
.ws9_c00162{word-spacing:0.000000pt;}
.ws1a_c00162{word-spacing:0.192000pt;}
.ws16_c00162{word-spacing:0.256000pt;}
.ws3_c00162{word-spacing:0.576000pt;}
.ws10_c00162{word-spacing:0.640000pt;}
.ws38_c00162{word-spacing:0.960000pt;}
.ws27_c00162{word-spacing:1.152000pt;}
.ws26_c00162{word-spacing:1.216000pt;}
.ws25_c00162{word-spacing:1.280000pt;}
.ws1e_c00162{word-spacing:1.536000pt;}
.ws1d_c00162{word-spacing:1.600000pt;}
.ws15_c00162{word-spacing:1.920000pt;}
.ws2f_c00162{word-spacing:2.240000pt;}
.ws37_c00162{word-spacing:2.496000pt;}
.ws1_c00162{word-spacing:2.752000pt;}
.wsc_c00162{word-spacing:3.072000pt;}
.wsb_c00162{word-spacing:3.200000pt;}
.ws3a_c00162{word-spacing:3.840000pt;}
.wse_c00162{word-spacing:4.096000pt;}
.wsd_c00162{word-spacing:4.160000pt;}
.ws7_c00162{word-spacing:4.352000pt;}
.ws20_c00162{word-spacing:4.416000pt;}
.ws42_c00162{word-spacing:4.480000pt;}
.ws28_c00162{word-spacing:5.696000pt;}
.ws29_c00162{word-spacing:5.760000pt;}
.ws44_c00162{word-spacing:5.952000pt;}
.ws14_c00162{word-spacing:6.016000pt;}
.ws3e_c00162{word-spacing:6.080000pt;}
.ws3c_c00162{word-spacing:6.336000pt;}
.ws3d_c00162{word-spacing:6.400000pt;}
.ws2d_c00162{word-spacing:6.720000pt;}
.ws24_c00162{word-spacing:6.976000pt;}
.wsa_c00162{word-spacing:7.261440pt;}
.ws13_c00162{word-spacing:7.680000pt;}
.ws32_c00162{word-spacing:7.936000pt;}
.ws17_c00162{word-spacing:8.896000pt;}
.ws39_c00162{word-spacing:10.496000pt;}
.ws11_c00162{word-spacing:10.816000pt;}
.ws12_c00162{word-spacing:10.880000pt;}
.ws2a_c00162{word-spacing:11.136000pt;}
.ws31_c00162{word-spacing:11.456000pt;}
.ws30_c00162{word-spacing:11.840000pt;}
.ws3b_c00162{word-spacing:12.096000pt;}
.ws5_c00162{word-spacing:12.288000pt;}
.ws19_c00162{word-spacing:12.480000pt;}
.ws34_c00162{word-spacing:12.992000pt;}
.ws36_c00162{word-spacing:13.056000pt;}
.ws35_c00162{word-spacing:13.120000pt;}
.ws8_c00162{word-spacing:13.760000pt;}
.ws43_c00162{word-spacing:13.952000pt;}
.ws33_c00162{word-spacing:14.400000pt;}
.ws1f_c00162{word-spacing:15.360000pt;}
.ws1c_c00162{word-spacing:15.488000pt;}
.ws1b_c00162{word-spacing:15.680000pt;}
.ws4_c00162{word-spacing:15.872000pt;}
.ws41_c00162{word-spacing:16.640000pt;}
.ws22_c00162{word-spacing:17.216000pt;}
.ws21_c00162{word-spacing:17.280000pt;}
.ws2c_c00162{word-spacing:18.176000pt;}
.ws2b_c00162{word-spacing:18.240000pt;}
.ws40_c00162{word-spacing:20.416000pt;}
.ws3f_c00162{word-spacing:20.480000pt;}
.ws23_c00162{word-spacing:23.360000pt;}
.wsf_c00162{word-spacing:31.360000pt;}
._1_c00162{margin-left:-0.896000pt;}
._0_c00162{width:0.936960pt;}
._2_c00162{width:4.096000pt;}
._3_c00162{width:25.536000pt;}
.fs1_c00162{font-size:58.560000pt;}
.fs0_c00162{font-size:64.000000pt;}
.y0_c00162{bottom:0.000000pt;}
.y1_c00162{bottom:54.887600pt;}
.y21_c00162{bottom:102.599467pt;}
.y20_c00162{bottom:130.199467pt;}
.y1f_c00162{bottom:157.799467pt;}
.y1e_c00162{bottom:185.399467pt;}
.y1d_c00162{bottom:212.999467pt;}
.y1c_c00162{bottom:240.599467pt;}
.y1b_c00162{bottom:268.199467pt;}
.y1a_c00162{bottom:295.799467pt;}
.y19_c00162{bottom:323.399467pt;}
.y18_c00162{bottom:350.999467pt;}
.y25_c00162{bottom:378.599467pt;}
.y17_c00162{bottom:406.199467pt;}
.y16_c00162{bottom:433.799467pt;}
.y15_c00162{bottom:461.399467pt;}
.y14_c00162{bottom:488.999467pt;}
.y13_c00162{bottom:516.599467pt;}
.y24_c00162{bottom:544.199467pt;}
.y12_c00162{bottom:571.799467pt;}
.y11_c00162{bottom:599.399467pt;}
.y10_c00162{bottom:626.999467pt;}
.yf_c00162{bottom:654.599467pt;}
.y23_c00162{bottom:682.199467pt;}
.ye_c00162{bottom:709.719467pt;}
.yd_c00162{bottom:737.319467pt;}
.yc_c00162{bottom:764.919467pt;}
.yb_c00162{bottom:792.519467pt;}
.ya_c00162{bottom:820.119467pt;}
.y9_c00162{bottom:847.719467pt;}
.y8_c00162{bottom:875.319467pt;}
.y22_c00162{bottom:902.919467pt;}
.y7_c00162{bottom:930.519467pt;}
.y6_c00162{bottom:958.119467pt;}
.y5_c00162{bottom:985.719467pt;}
.y4_c00162{bottom:1013.319467pt;}
.y3_c00162{bottom:1043.480107pt;}
.y2_c00162{bottom:1061.399467pt;}
.h2_c00162{height:44.800000pt;}
.h3_c00162{height:48.294844pt;}
.h4_c00162{height:52.778690pt;}
.h6_c00162{height:68.288000pt;}
.h5_c00162{height:69.376000pt;}
.h0_c00162{height:1122.520000pt;}
.h1_c00162{height:1122.666667pt;}
.w2_c00162{width:0.000000pt;}
.w3_c00162{width:0.058667pt;}
.w0_c00162{width:793.701333pt;}
.w1_c00162{width:794.000000pt;}
.x1_c00162{left:-745.700800pt;}
.x2_c00162{left:-680.260800pt;}
.x3_c00162{left:-651.860800pt;}
.x0_c00162{left:0.000000pt;}
.x6_c00162{left:113.440000pt;}
.x8_c00162{left:132.400000pt;}
.x7_c00162{left:141.840000pt;}
.x9_c00162{left:151.280000pt;}
.x5_c00162{left:615.440000pt;}
.x4_c00162{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00163;src:url('chunks/assets/font_5f3d5734fd6e60e1c0217a0d.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00163;src:url('chunks/assets/font_83ad6b4fc9759ac890715010.woff2')format("woff");}.ff3_c00163{font-family:ff3_c00163;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00163;src:url('chunks/assets/font_4ede5d7c04365bfdd0e360f1.woff2')format("woff");}.ff4_c00163{font-family:ff4_c00163;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00163{letter-spacing:0.000000px;}
.ls0_c00163{letter-spacing:0.072000px;}
.ls3_c00163{letter-spacing:0.144000px;}
.ls1_c00163{letter-spacing:27.360000px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00163{word-spacing:-18.000000px;}
.ws0_c00163{word-spacing:-14.888880px;}
.ws1d_c00163{word-spacing:-0.360000px;}
.ws8_c00163{word-spacing:-0.072000px;}
.ws5_c00163{word-spacing:0.000000px;}
.ws20_c00163{word-spacing:2.808000px;}
.ws7_c00163{word-spacing:2.880000px;}
.wse_c00163{word-spacing:4.176000px;}
.ws11_c00163{word-spacing:4.248000px;}
.wsd_c00163{word-spacing:4.320000px;}
.ws10_c00163{word-spacing:4.536000px;}
.wsc_c00163{word-spacing:4.608000px;}
.wsb_c00163{word-spacing:4.680000px;}
.ws14_c00163{word-spacing:4.968000px;}
.wsa_c00163{word-spacing:5.040000px;}
.ws1e_c00163{word-spacing:6.336000px;}
.ws1f_c00163{word-spacing:6.480000px;}
.ws29_c00163{word-spacing:6.840000px;}
.ws2_c00163{word-spacing:7.488000px;}
.ws15_c00163{word-spacing:7.560000px;}
.ws6_c00163{word-spacing:8.169120px;}
.ws13_c00163{word-spacing:8.208000px;}
.ws21_c00163{word-spacing:8.568000px;}
.ws12_c00163{word-spacing:9.000000px;}
.ws24_c00163{word-spacing:9.288000px;}
.ws1c_c00163{word-spacing:9.360000px;}
.ws4_c00163{word-spacing:9.504000px;}
.ws1b_c00163{word-spacing:9.648000px;}
.ws1a_c00163{word-spacing:9.720000px;}
.ws16_c00163{word-spacing:11.880000px;}
.ws18_c00163{word-spacing:13.104000px;}
.ws19_c00163{word-spacing:13.320000px;}
.ws23_c00163{word-spacing:14.688000px;}
.ws22_c00163{word-spacing:14.976000px;}
.ws17_c00163{word-spacing:16.128000px;}
.ws3_c00163{word-spacing:17.640000px;}
.ws26_c00163{word-spacing:17.928000px;}
.ws25_c00163{word-spacing:18.000000px;}
.ws28_c00163{word-spacing:19.368000px;}
.ws27_c00163{word-spacing:19.440000px;}
.wsf_c00163{word-spacing:19.728000px;}
.ws9_c00163{word-spacing:22.608000px;}
._1_c00163{margin-left:-1.296000px;}
._0_c00163{width:1.054080px;}
._2_c00163{width:4.392000px;}
._3_c00163{width:16.128000px;}
._5_c00163{width:19.224000px;}
._4_c00163{width:37.440000px;}
.fc1_c00163{color:rgb(0,0,0);}
.fc0_c00163{color:rgb(35,31,32);}
.fs1_c00163{font-size:65.880000px;}
.fs0_c00163{font-size:72.000000px;}
.y0_c00163{bottom:0.000000px;}
.y1_c00163{bottom:61.748550px;}
.y22_c00163{bottom:115.424400px;}
.y21_c00163{bottom:146.474400px;}
.y20_c00163{bottom:177.524400px;}
.y1f_c00163{bottom:208.574400px;}
.y1e_c00163{bottom:239.624400px;}
.y1d_c00163{bottom:270.674400px;}
.y1c_c00163{bottom:301.724400px;}
.y1b_c00163{bottom:332.774400px;}
.y1a_c00163{bottom:363.824400px;}
.y19_c00163{bottom:394.874400px;}
.y18_c00163{bottom:425.924400px;}
.y17_c00163{bottom:488.024400px;}
.y16_c00163{bottom:519.074400px;}
.y15_c00163{bottom:550.124400px;}
.y14_c00163{bottom:581.174400px;}
.y13_c00163{bottom:612.224400px;}
.y12_c00163{bottom:643.274400px;}
.y11_c00163{bottom:674.324400px;}
.y10_c00163{bottom:705.374400px;}
.yf_c00163{bottom:736.424400px;}
.ye_c00163{bottom:798.434400px;}
.yd_c00163{bottom:829.484400px;}
.yc_c00163{bottom:860.534400px;}
.yb_c00163{bottom:891.584400px;}
.ya_c00163{bottom:922.634400px;}
.y9_c00163{bottom:953.684400px;}
.y8_c00163{bottom:984.734400px;}
.y7_c00163{bottom:1015.784400px;}
.y6_c00163{bottom:1046.834400px;}
.y5_c00163{bottom:1108.934400px;}
.y4_c00163{bottom:1139.984400px;}
.y3_c00163{bottom:1173.915120px;}
.y2_c00163{bottom:1194.074400px;}
.h2_c00163{height:50.400000px;}
.h3_c00163{height:54.331699px;}
.h4_c00163{height:59.376026px;}
.h5_c00163{height:76.824000px;}
.h6_c00163{height:78.048000px;}
.h0_c00163{height:1262.835000px;}
.h1_c00163{height:1263.000000px;}
.w0_c00163{width:892.914000px;}
.w1_c00163{width:893.250000px;}
.x0_c00163{left:0.000000px;}
.x1_c00163{left:54.000000px;}
.x2_c00163{left:127.620000px;}
.x3_c00163{left:159.570000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls2_c00163{letter-spacing:0.000000pt;}
.ls0_c00163{letter-spacing:0.064000pt;}
.ls3_c00163{letter-spacing:0.128000pt;}
.ls1_c00163{letter-spacing:24.320000pt;}
.ws1_c00163{word-spacing:-16.000000pt;}
.ws0_c00163{word-spacing:-13.234560pt;}
.ws1d_c00163{word-spacing:-0.320000pt;}
.ws8_c00163{word-spacing:-0.064000pt;}
.ws5_c00163{word-spacing:0.000000pt;}
.ws20_c00163{word-spacing:2.496000pt;}
.ws7_c00163{word-spacing:2.560000pt;}
.wse_c00163{word-spacing:3.712000pt;}
.ws11_c00163{word-spacing:3.776000pt;}
.wsd_c00163{word-spacing:3.840000pt;}
.ws10_c00163{word-spacing:4.032000pt;}
.wsc_c00163{word-spacing:4.096000pt;}
.wsb_c00163{word-spacing:4.160000pt;}
.ws14_c00163{word-spacing:4.416000pt;}
.wsa_c00163{word-spacing:4.480000pt;}
.ws1e_c00163{word-spacing:5.632000pt;}
.ws1f_c00163{word-spacing:5.760000pt;}
.ws29_c00163{word-spacing:6.080000pt;}
.ws2_c00163{word-spacing:6.656000pt;}
.ws15_c00163{word-spacing:6.720000pt;}
.ws6_c00163{word-spacing:7.261440pt;}
.ws13_c00163{word-spacing:7.296000pt;}
.ws21_c00163{word-spacing:7.616000pt;}
.ws12_c00163{word-spacing:8.000000pt;}
.ws24_c00163{word-spacing:8.256000pt;}
.ws1c_c00163{word-spacing:8.320000pt;}
.ws4_c00163{word-spacing:8.448000pt;}
.ws1b_c00163{word-spacing:8.576000pt;}
.ws1a_c00163{word-spacing:8.640000pt;}
.ws16_c00163{word-spacing:10.560000pt;}
.ws18_c00163{word-spacing:11.648000pt;}
.ws19_c00163{word-spacing:11.840000pt;}
.ws23_c00163{word-spacing:13.056000pt;}
.ws22_c00163{word-spacing:13.312000pt;}
.ws17_c00163{word-spacing:14.336000pt;}
.ws3_c00163{word-spacing:15.680000pt;}
.ws26_c00163{word-spacing:15.936000pt;}
.ws25_c00163{word-spacing:16.000000pt;}
.ws28_c00163{word-spacing:17.216000pt;}
.ws27_c00163{word-spacing:17.280000pt;}
.wsf_c00163{word-spacing:17.536000pt;}
.ws9_c00163{word-spacing:20.096000pt;}
._1_c00163{margin-left:-1.152000pt;}
._0_c00163{width:0.936960pt;}
._2_c00163{width:3.904000pt;}
._3_c00163{width:14.336000pt;}
._5_c00163{width:17.088000pt;}
._4_c00163{width:33.280000pt;}
.fs1_c00163{font-size:58.560000pt;}
.fs0_c00163{font-size:64.000000pt;}
.y0_c00163{bottom:0.000000pt;}
.y1_c00163{bottom:54.887600pt;}
.y22_c00163{bottom:102.599467pt;}
.y21_c00163{bottom:130.199467pt;}
.y20_c00163{bottom:157.799467pt;}
.y1f_c00163{bottom:185.399467pt;}
.y1e_c00163{bottom:212.999467pt;}
.y1d_c00163{bottom:240.599467pt;}
.y1c_c00163{bottom:268.199467pt;}
.y1b_c00163{bottom:295.799467pt;}
.y1a_c00163{bottom:323.399467pt;}
.y19_c00163{bottom:350.999467pt;}
.y18_c00163{bottom:378.599467pt;}
.y17_c00163{bottom:433.799467pt;}
.y16_c00163{bottom:461.399467pt;}
.y15_c00163{bottom:488.999467pt;}
.y14_c00163{bottom:516.599467pt;}
.y13_c00163{bottom:544.199467pt;}
.y12_c00163{bottom:571.799467pt;}
.y11_c00163{bottom:599.399467pt;}
.y10_c00163{bottom:626.999467pt;}
.yf_c00163{bottom:654.599467pt;}
.ye_c00163{bottom:709.719467pt;}
.yd_c00163{bottom:737.319467pt;}
.yc_c00163{bottom:764.919467pt;}
.yb_c00163{bottom:792.519467pt;}
.ya_c00163{bottom:820.119467pt;}
.y9_c00163{bottom:847.719467pt;}
.y8_c00163{bottom:875.319467pt;}
.y7_c00163{bottom:902.919467pt;}
.y6_c00163{bottom:930.519467pt;}
.y5_c00163{bottom:985.719467pt;}
.y4_c00163{bottom:1013.319467pt;}
.y3_c00163{bottom:1043.480107pt;}
.y2_c00163{bottom:1061.399467pt;}
.h2_c00163{height:44.800000pt;}
.h3_c00163{height:48.294844pt;}
.h4_c00163{height:52.778690pt;}
.h5_c00163{height:68.288000pt;}
.h6_c00163{height:69.376000pt;}
.h0_c00163{height:1122.520000pt;}
.h1_c00163{height:1122.666667pt;}
.w0_c00163{width:793.701333pt;}
.w1_c00163{width:794.000000pt;}
.x0_c00163{left:0.000000pt;}
.x1_c00163{left:48.000000pt;}
.x2_c00163{left:113.440000pt;}
.x3_c00163{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00164;src:url('chunks/assets/font_5df9d396f7c5b1f3335b249e.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00164;src:url('chunks/assets/font_620f698f15b0eb55fad33fde.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00164;src:url('chunks/assets/font_4b363986f99049537916ef03.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00164;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00164{font-family:ff5_c00164;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00164;src:url('chunks/assets/font_0be8cbdcaf5c9b3909355ec1.woff2')format("woff");}.ff6_c00164{font-family:ff6_c00164;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00164;src:url('chunks/assets/font_cbb571cc0247cc9b4f549c4c.woff2')format("woff");}.ff7_c00164{font-family:ff7_c00164;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00164;src:url('chunks/assets/font_c1e0e215d58b2917e765a7e4.woff2')format("woff");}.ff8_c00164{font-family:ff8_c00164;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls7_c00164{letter-spacing:-0.360000px;}
.ls8_c00164{letter-spacing:-0.288000px;}
.ls6_c00164{letter-spacing:0.000000px;}
.ls0_c00164{letter-spacing:0.072000px;}
.ls2_c00164{letter-spacing:0.144000px;}
.ls5_c00164{letter-spacing:27.000000px;}
.ls1_c00164{letter-spacing:27.360000px;}
.ls3_c00164{letter-spacing:51.984000px;}
.ls4_c00164{letter-spacing:54.144000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00164{word-spacing:-18.000000px;}
.ws0_c00164{word-spacing:-14.888880px;}
.ws1e_c00164{word-spacing:-0.360000px;}
.ws2b_c00164{word-spacing:-0.131760px;}
.ws9_c00164{word-spacing:-0.072000px;}
.ws6_c00164{word-spacing:0.000000px;}
.ws31_c00164{word-spacing:0.288000px;}
.ws3a_c00164{word-spacing:0.360000px;}
.ws36_c00164{word-spacing:1.008000px;}
.ws33_c00164{word-spacing:1.440000px;}
.ws43_c00164{word-spacing:1.728000px;}
.ws21_c00164{word-spacing:2.808000px;}
.ws8_c00164{word-spacing:2.880000px;}
.ws2c_c00164{word-spacing:3.528000px;}
.ws5_c00164{word-spacing:3.888000px;}
.ws3e_c00164{word-spacing:3.960000px;}
.wsf_c00164{word-spacing:4.176000px;}
.ws12_c00164{word-spacing:4.248000px;}
.wse_c00164{word-spacing:4.320000px;}
.ws11_c00164{word-spacing:4.536000px;}
.wsd_c00164{word-spacing:4.608000px;}
.wsc_c00164{word-spacing:4.680000px;}
.ws15_c00164{word-spacing:4.968000px;}
.wsb_c00164{word-spacing:5.040000px;}
.ws1f_c00164{word-spacing:6.336000px;}
.ws20_c00164{word-spacing:6.480000px;}
.ws2a_c00164{word-spacing:6.840000px;}
.ws38_c00164{word-spacing:7.128000px;}
.ws2_c00164{word-spacing:7.488000px;}
.ws16_c00164{word-spacing:7.560000px;}
.ws3b_c00164{word-spacing:7.848000px;}
.ws7_c00164{word-spacing:8.169120px;}
.ws14_c00164{word-spacing:8.208000px;}
.ws3c_c00164{word-spacing:8.496000px;}
.ws22_c00164{word-spacing:8.568000px;}
.ws3d_c00164{word-spacing:8.640000px;}
.ws13_c00164{word-spacing:9.000000px;}
.ws25_c00164{word-spacing:9.288000px;}
.ws1d_c00164{word-spacing:9.360000px;}
.ws4_c00164{word-spacing:9.504000px;}
.ws1c_c00164{word-spacing:9.648000px;}
.ws1b_c00164{word-spacing:9.720000px;}
.ws34_c00164{word-spacing:10.440000px;}
.ws40_c00164{word-spacing:10.728000px;}
.ws41_c00164{word-spacing:10.800000px;}
.ws17_c00164{word-spacing:11.880000px;}
.ws19_c00164{word-spacing:13.104000px;}
.ws1a_c00164{word-spacing:13.320000px;}
.ws44_c00164{word-spacing:13.968000px;}
.ws24_c00164{word-spacing:14.688000px;}
.ws35_c00164{word-spacing:14.760000px;}
.ws23_c00164{word-spacing:14.976000px;}
.ws2d_c00164{word-spacing:15.120000px;}
.ws3f_c00164{word-spacing:15.408000px;}
.ws18_c00164{word-spacing:16.128000px;}
.ws37_c00164{word-spacing:16.848000px;}
.ws42_c00164{word-spacing:17.568000px;}
.ws3_c00164{word-spacing:17.640000px;}
.ws27_c00164{word-spacing:17.928000px;}
.ws26_c00164{word-spacing:18.000000px;}
.ws30_c00164{word-spacing:18.288000px;}
.ws2e_c00164{word-spacing:18.360000px;}
.ws2f_c00164{word-spacing:18.576000px;}
.ws29_c00164{word-spacing:19.368000px;}
.ws28_c00164{word-spacing:19.440000px;}
.ws10_c00164{word-spacing:19.728000px;}
.wsa_c00164{word-spacing:22.608000px;}
.ws39_c00164{word-spacing:29.808000px;}
.ws32_c00164{word-spacing:34.128000px;}
._1_c00164{margin-left:-1.296000px;}
._0_c00164{width:1.054080px;}
._2_c00164{width:4.392000px;}
._3_c00164{width:16.128000px;}
._5_c00164{width:19.224000px;}
._6_c00164{width:21.088800px;}
._4_c00164{width:37.440000px;}
.fc2_c00164{color:transparent;}
.fc1_c00164{color:rgb(0,0,0);}
.fc0_c00164{color:rgb(35,31,32);}
.fs1_c00164{font-size:65.880000px;}
.fs0_c00164{font-size:72.000000px;}
.y0_c00164{bottom:0.000000px;}
.y1_c00164{bottom:61.748550px;}
.y22_c00164{bottom:115.424400px;}
.y21_c00164{bottom:146.474400px;}
.y20_c00164{bottom:177.524400px;}
.y1f_c00164{bottom:208.574400px;}
.y1e_c00164{bottom:239.624400px;}
.y1d_c00164{bottom:270.674400px;}
.y1c_c00164{bottom:301.724400px;}
.y1b_c00164{bottom:332.774400px;}
.y1a_c00164{bottom:363.824400px;}
.y19_c00164{bottom:394.874400px;}
.y18_c00164{bottom:425.924400px;}
.y25_c00164{bottom:456.974400px;}
.y17_c00164{bottom:488.024400px;}
.y16_c00164{bottom:519.074400px;}
.y15_c00164{bottom:550.124400px;}
.y14_c00164{bottom:581.174400px;}
.y13_c00164{bottom:612.224400px;}
.y12_c00164{bottom:643.274400px;}
.y11_c00164{bottom:674.324400px;}
.y10_c00164{bottom:705.374400px;}
.yf_c00164{bottom:736.424400px;}
.y24_c00164{bottom:767.474400px;}
.ye_c00164{bottom:798.434400px;}
.yd_c00164{bottom:829.484400px;}
.yc_c00164{bottom:860.534400px;}
.yb_c00164{bottom:891.584400px;}
.ya_c00164{bottom:922.634400px;}
.y9_c00164{bottom:953.684400px;}
.y8_c00164{bottom:984.734400px;}
.y7_c00164{bottom:1015.784400px;}
.y6_c00164{bottom:1046.834400px;}
.y23_c00164{bottom:1077.884400px;}
.y5_c00164{bottom:1108.934400px;}
.y4_c00164{bottom:1139.984400px;}
.y3_c00164{bottom:1173.915120px;}
.y2_c00164{bottom:1194.074400px;}
.h2_c00164{height:50.400000px;}
.h3_c00164{height:54.331699px;}
.h4_c00164{height:59.376026px;}
.h5_c00164{height:76.824000px;}
.h6_c00164{height:78.048000px;}
.h0_c00164{height:1262.835000px;}
.h1_c00164{height:1263.000000px;}
.w2_c00164{width:0.000000px;}
.w3_c00164{width:0.066000px;}
.w0_c00164{width:892.914000px;}
.w1_c00164{width:893.250000px;}
.x1_c00164{left:-838.913400px;}
.x2_c00164{left:-765.293400px;}
.x3_c00164{left:-733.343400px;}
.x0_c00164{left:0.000000px;}
.x6_c00164{left:127.620000px;}
.x8_c00164{left:148.950000px;}
.x7_c00164{left:159.570000px;}
.x9_c00164{left:170.190000px;}
.x5_c00164{left:692.370000px;}
.x4_c00164{left:804.366150px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls7_c00164{letter-spacing:-0.320000pt;}
.ls8_c00164{letter-spacing:-0.256000pt;}
.ls6_c00164{letter-spacing:0.000000pt;}
.ls0_c00164{letter-spacing:0.064000pt;}
.ls2_c00164{letter-spacing:0.128000pt;}
.ls5_c00164{letter-spacing:24.000000pt;}
.ls1_c00164{letter-spacing:24.320000pt;}
.ls3_c00164{letter-spacing:46.208000pt;}
.ls4_c00164{letter-spacing:48.128000pt;}
.ws1_c00164{word-spacing:-16.000000pt;}
.ws0_c00164{word-spacing:-13.234560pt;}
.ws1e_c00164{word-spacing:-0.320000pt;}
.ws2b_c00164{word-spacing:-0.117120pt;}
.ws9_c00164{word-spacing:-0.064000pt;}
.ws6_c00164{word-spacing:0.000000pt;}
.ws31_c00164{word-spacing:0.256000pt;}
.ws3a_c00164{word-spacing:0.320000pt;}
.ws36_c00164{word-spacing:0.896000pt;}
.ws33_c00164{word-spacing:1.280000pt;}
.ws43_c00164{word-spacing:1.536000pt;}
.ws21_c00164{word-spacing:2.496000pt;}
.ws8_c00164{word-spacing:2.560000pt;}
.ws2c_c00164{word-spacing:3.136000pt;}
.ws5_c00164{word-spacing:3.456000pt;}
.ws3e_c00164{word-spacing:3.520000pt;}
.wsf_c00164{word-spacing:3.712000pt;}
.ws12_c00164{word-spacing:3.776000pt;}
.wse_c00164{word-spacing:3.840000pt;}
.ws11_c00164{word-spacing:4.032000pt;}
.wsd_c00164{word-spacing:4.096000pt;}
.wsc_c00164{word-spacing:4.160000pt;}
.ws15_c00164{word-spacing:4.416000pt;}
.wsb_c00164{word-spacing:4.480000pt;}
.ws1f_c00164{word-spacing:5.632000pt;}
.ws20_c00164{word-spacing:5.760000pt;}
.ws2a_c00164{word-spacing:6.080000pt;}
.ws38_c00164{word-spacing:6.336000pt;}
.ws2_c00164{word-spacing:6.656000pt;}
.ws16_c00164{word-spacing:6.720000pt;}
.ws3b_c00164{word-spacing:6.976000pt;}
.ws7_c00164{word-spacing:7.261440pt;}
.ws14_c00164{word-spacing:7.296000pt;}
.ws3c_c00164{word-spacing:7.552000pt;}
.ws22_c00164{word-spacing:7.616000pt;}
.ws3d_c00164{word-spacing:7.680000pt;}
.ws13_c00164{word-spacing:8.000000pt;}
.ws25_c00164{word-spacing:8.256000pt;}
.ws1d_c00164{word-spacing:8.320000pt;}
.ws4_c00164{word-spacing:8.448000pt;}
.ws1c_c00164{word-spacing:8.576000pt;}
.ws1b_c00164{word-spacing:8.640000pt;}
.ws34_c00164{word-spacing:9.280000pt;}
.ws40_c00164{word-spacing:9.536000pt;}
.ws41_c00164{word-spacing:9.600000pt;}
.ws17_c00164{word-spacing:10.560000pt;}
.ws19_c00164{word-spacing:11.648000pt;}
.ws1a_c00164{word-spacing:11.840000pt;}
.ws44_c00164{word-spacing:12.416000pt;}
.ws24_c00164{word-spacing:13.056000pt;}
.ws35_c00164{word-spacing:13.120000pt;}
.ws23_c00164{word-spacing:13.312000pt;}
.ws2d_c00164{word-spacing:13.440000pt;}
.ws3f_c00164{word-spacing:13.696000pt;}
.ws18_c00164{word-spacing:14.336000pt;}
.ws37_c00164{word-spacing:14.976000pt;}
.ws42_c00164{word-spacing:15.616000pt;}
.ws3_c00164{word-spacing:15.680000pt;}
.ws27_c00164{word-spacing:15.936000pt;}
.ws26_c00164{word-spacing:16.000000pt;}
.ws30_c00164{word-spacing:16.256000pt;}
.ws2e_c00164{word-spacing:16.320000pt;}
.ws2f_c00164{word-spacing:16.512000pt;}
.ws29_c00164{word-spacing:17.216000pt;}
.ws28_c00164{word-spacing:17.280000pt;}
.ws10_c00164{word-spacing:17.536000pt;}
.wsa_c00164{word-spacing:20.096000pt;}
.ws39_c00164{word-spacing:26.496000pt;}
.ws32_c00164{word-spacing:30.336000pt;}
._1_c00164{margin-left:-1.152000pt;}
._0_c00164{width:0.936960pt;}
._2_c00164{width:3.904000pt;}
._3_c00164{width:14.336000pt;}
._5_c00164{width:17.088000pt;}
._6_c00164{width:18.745600pt;}
._4_c00164{width:33.280000pt;}
.fs1_c00164{font-size:58.560000pt;}
.fs0_c00164{font-size:64.000000pt;}
.y0_c00164{bottom:0.000000pt;}
.y1_c00164{bottom:54.887600pt;}
.y22_c00164{bottom:102.599467pt;}
.y21_c00164{bottom:130.199467pt;}
.y20_c00164{bottom:157.799467pt;}
.y1f_c00164{bottom:185.399467pt;}
.y1e_c00164{bottom:212.999467pt;}
.y1d_c00164{bottom:240.599467pt;}
.y1c_c00164{bottom:268.199467pt;}
.y1b_c00164{bottom:295.799467pt;}
.y1a_c00164{bottom:323.399467pt;}
.y19_c00164{bottom:350.999467pt;}
.y18_c00164{bottom:378.599467pt;}
.y25_c00164{bottom:406.199467pt;}
.y17_c00164{bottom:433.799467pt;}
.y16_c00164{bottom:461.399467pt;}
.y15_c00164{bottom:488.999467pt;}
.y14_c00164{bottom:516.599467pt;}
.y13_c00164{bottom:544.199467pt;}
.y12_c00164{bottom:571.799467pt;}
.y11_c00164{bottom:599.399467pt;}
.y10_c00164{bottom:626.999467pt;}
.yf_c00164{bottom:654.599467pt;}
.y24_c00164{bottom:682.199467pt;}
.ye_c00164{bottom:709.719467pt;}
.yd_c00164{bottom:737.319467pt;}
.yc_c00164{bottom:764.919467pt;}
.yb_c00164{bottom:792.519467pt;}
.ya_c00164{bottom:820.119467pt;}
.y9_c00164{bottom:847.719467pt;}
.y8_c00164{bottom:875.319467pt;}
.y7_c00164{bottom:902.919467pt;}
.y6_c00164{bottom:930.519467pt;}
.y23_c00164{bottom:958.119467pt;}
.y5_c00164{bottom:985.719467pt;}
.y4_c00164{bottom:1013.319467pt;}
.y3_c00164{bottom:1043.480107pt;}
.y2_c00164{bottom:1061.399467pt;}
.h2_c00164{height:44.800000pt;}
.h3_c00164{height:48.294844pt;}
.h4_c00164{height:52.778690pt;}
.h5_c00164{height:68.288000pt;}
.h6_c00164{height:69.376000pt;}
.h0_c00164{height:1122.520000pt;}
.h1_c00164{height:1122.666667pt;}
.w2_c00164{width:0.000000pt;}
.w3_c00164{width:0.058667pt;}
.w0_c00164{width:793.701333pt;}
.w1_c00164{width:794.000000pt;}
.x1_c00164{left:-745.700800pt;}
.x2_c00164{left:-680.260800pt;}
.x3_c00164{left:-651.860800pt;}
.x0_c00164{left:0.000000pt;}
.x6_c00164{left:113.440000pt;}
.x8_c00164{left:132.400000pt;}
.x7_c00164{left:141.840000pt;}
.x9_c00164{left:151.280000pt;}
.x5_c00164{left:615.440000pt;}
.x4_c00164{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00165;src:url('chunks/assets/font_f386710f6a0b974946f6caa2.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00165;src:url('chunks/assets/font_7e3adbb18415180a72e33af7.woff2')format("woff");}.ff3_c00165{font-family:ff3_c00165;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00165;src:url('chunks/assets/font_d896d36983ff0bc0b50a4626.woff2')format("woff");}.ff4_c00165{font-family:ff4_c00165;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00165{letter-spacing:-0.360000px;}
.ls8_c00165{letter-spacing:-0.197640px;}
.ls5_c00165{letter-spacing:-0.144000px;}
.ls9_c00165{letter-spacing:-0.072000px;}
.ls7_c00165{letter-spacing:-0.065880px;}
.ls4_c00165{letter-spacing:0.000000px;}
.ls0_c00165{letter-spacing:0.072000px;}
.ls2_c00165{letter-spacing:0.197640px;}
.ls1_c00165{letter-spacing:23.040000px;}
.ls3_c00165{letter-spacing:24.134400px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00165{word-spacing:-18.000000px;}
.ws3_c00165{word-spacing:-16.667640px;}
.ws0_c00165{word-spacing:-14.888880px;}
.ws18_c00165{word-spacing:-0.197640px;}
.ws9_c00165{word-spacing:-0.072000px;}
.ws5_c00165{word-spacing:0.000000px;}
.ws1c_c00165{word-spacing:0.197640px;}
.ws1_c00165{word-spacing:0.360000px;}
.ws4_c00165{word-spacing:0.576000px;}
.ws1e_c00165{word-spacing:0.720000px;}
.ws13_c00165{word-spacing:2.042280px;}
.wsc_c00165{word-spacing:2.808000px;}
.ws8_c00165{word-spacing:3.096000px;}
.ws1b_c00165{word-spacing:3.096360px;}
.ws7_c00165{word-spacing:3.168000px;}
.wsd_c00165{word-spacing:3.240000px;}
.ws1a_c00165{word-spacing:3.359880px;}
.ws1d_c00165{word-spacing:3.755160px;}
.ws10_c00165{word-spacing:4.104000px;}
.wsf_c00165{word-spacing:4.248000px;}
.wse_c00165{word-spacing:5.400000px;}
.ws19_c00165{word-spacing:5.665680px;}
.ws17_c00165{word-spacing:5.929200px;}
.ws24_c00165{word-spacing:6.120000px;}
.ws23_c00165{word-spacing:7.128000px;}
.ws22_c00165{word-spacing:7.200000px;}
.ws14_c00165{word-spacing:8.103240px;}
.ws6_c00165{word-spacing:8.169120px;}
.ws16_c00165{word-spacing:9.618480px;}
.ws15_c00165{word-spacing:9.882000px;}
.ws12_c00165{word-spacing:10.672560px;}
.ws1f_c00165{word-spacing:11.448000px;}
.wsb_c00165{word-spacing:13.320000px;}
.ws21_c00165{word-spacing:19.944000px;}
.ws20_c00165{word-spacing:20.160000px;}
.wsa_c00165{word-spacing:20.808000px;}
.ws11_c00165{word-spacing:22.465080px;}
._1_c00165{margin-left:-1.029600px;}
._0_c00165{width:1.054080px;}
._4_c00165{width:3.071880px;}
._3_c00165{width:5.402160px;}
._2_c00165{width:20.131200px;}
.fc1_c00165{color:rgb(0,0,0);}
.fc0_c00165{color:rgb(35,31,32);}
.fs1_c00165{font-size:65.880000px;}
.fs0_c00165{font-size:72.000000px;}
.y0_c00165{bottom:0.000000px;}
.y1_c00165{bottom:61.748550px;}
.y1f_c00165{bottom:203.444400px;}
.y1e_c00165{bottom:234.494400px;}
.y1d_c00165{bottom:296.504400px;}
.y1c_c00165{bottom:327.554400px;}
.y1b_c00165{bottom:358.604400px;}
.y1a_c00165{bottom:389.654400px;}
.y19_c00165{bottom:420.704400px;}
.y18_c00165{bottom:451.754400px;}
.y17_c00165{bottom:482.804400px;}
.y16_c00165{bottom:543.545310px;}
.y15_c00165{bottom:572.071350px;}
.y14_c00165{bottom:600.416220px;}
.y13_c00165{bottom:628.859910px;}
.y12_c00165{bottom:657.303600px;}
.y11_c00165{bottom:685.829640px;}
.y10_c00165{bottom:714.273330px;}
.yf_c00165{bottom:742.717020px;}
.ye_c00165{bottom:771.160710px;}
.yd_c00165{bottom:799.604400px;}
.yc_c00165{bottom:860.534400px;}
.yb_c00165{bottom:891.584400px;}
.ya_c00165{bottom:922.634400px;}
.y9_c00165{bottom:953.684400px;}
.y8_c00165{bottom:984.734400px;}
.y7_c00165{bottom:1046.834400px;}
.y6_c00165{bottom:1077.884400px;}
.y5_c00165{bottom:1108.934400px;}
.y4_c00165{bottom:1139.984400px;}
.y3_c00165{bottom:1173.915120px;}
.y2_c00165{bottom:1194.074400px;}
.h2_c00165{height:50.400000px;}
.h3_c00165{height:54.331699px;}
.h4_c00165{height:59.376026px;}
.h8_c00165{height:70.293960px;}
.h7_c00165{height:71.413920px;}
.h5_c00165{height:76.824000px;}
.h6_c00165{height:78.048000px;}
.h0_c00165{height:1262.835000px;}
.h1_c00165{height:1263.000000px;}
.w0_c00165{width:892.914000px;}
.w1_c00165{width:893.250000px;}
.x0_c00165{left:0.000000px;}
.x1_c00165{left:54.000000px;}
.x2_c00165{left:127.620000px;}
.x3_c00165{left:159.570000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls6_c00165{letter-spacing:-0.320000pt;}
.ls8_c00165{letter-spacing:-0.175680pt;}
.ls5_c00165{letter-spacing:-0.128000pt;}
.ls9_c00165{letter-spacing:-0.064000pt;}
.ls7_c00165{letter-spacing:-0.058560pt;}
.ls4_c00165{letter-spacing:0.000000pt;}
.ls0_c00165{letter-spacing:0.064000pt;}
.ls2_c00165{letter-spacing:0.175680pt;}
.ls1_c00165{letter-spacing:20.480000pt;}
.ls3_c00165{letter-spacing:21.452800pt;}
.ws2_c00165{word-spacing:-16.000000pt;}
.ws3_c00165{word-spacing:-14.815680pt;}
.ws0_c00165{word-spacing:-13.234560pt;}
.ws18_c00165{word-spacing:-0.175680pt;}
.ws9_c00165{word-spacing:-0.064000pt;}
.ws5_c00165{word-spacing:0.000000pt;}
.ws1c_c00165{word-spacing:0.175680pt;}
.ws1_c00165{word-spacing:0.320000pt;}
.ws4_c00165{word-spacing:0.512000pt;}
.ws1e_c00165{word-spacing:0.640000pt;}
.ws13_c00165{word-spacing:1.815360pt;}
.wsc_c00165{word-spacing:2.496000pt;}
.ws8_c00165{word-spacing:2.752000pt;}
.ws1b_c00165{word-spacing:2.752320pt;}
.ws7_c00165{word-spacing:2.816000pt;}
.wsd_c00165{word-spacing:2.880000pt;}
.ws1a_c00165{word-spacing:2.986560pt;}
.ws1d_c00165{word-spacing:3.337920pt;}
.ws10_c00165{word-spacing:3.648000pt;}
.wsf_c00165{word-spacing:3.776000pt;}
.wse_c00165{word-spacing:4.800000pt;}
.ws19_c00165{word-spacing:5.036160pt;}
.ws17_c00165{word-spacing:5.270400pt;}
.ws24_c00165{word-spacing:5.440000pt;}
.ws23_c00165{word-spacing:6.336000pt;}
.ws22_c00165{word-spacing:6.400000pt;}
.ws14_c00165{word-spacing:7.202880pt;}
.ws6_c00165{word-spacing:7.261440pt;}
.ws16_c00165{word-spacing:8.549760pt;}
.ws15_c00165{word-spacing:8.784000pt;}
.ws12_c00165{word-spacing:9.486720pt;}
.ws1f_c00165{word-spacing:10.176000pt;}
.wsb_c00165{word-spacing:11.840000pt;}
.ws21_c00165{word-spacing:17.728000pt;}
.ws20_c00165{word-spacing:17.920000pt;}
.wsa_c00165{word-spacing:18.496000pt;}
.ws11_c00165{word-spacing:19.968960pt;}
._1_c00165{margin-left:-0.915200pt;}
._0_c00165{width:0.936960pt;}
._4_c00165{width:2.730560pt;}
._3_c00165{width:4.801920pt;}
._2_c00165{width:17.894400pt;}
.fs1_c00165{font-size:58.560000pt;}
.fs0_c00165{font-size:64.000000pt;}
.y0_c00165{bottom:0.000000pt;}
.y1_c00165{bottom:54.887600pt;}
.y1f_c00165{bottom:180.839467pt;}
.y1e_c00165{bottom:208.439467pt;}
.y1d_c00165{bottom:263.559467pt;}
.y1c_c00165{bottom:291.159467pt;}
.y1b_c00165{bottom:318.759467pt;}
.y1a_c00165{bottom:346.359467pt;}
.y19_c00165{bottom:373.959467pt;}
.y18_c00165{bottom:401.559467pt;}
.y17_c00165{bottom:429.159467pt;}
.y16_c00165{bottom:483.151387pt;}
.y15_c00165{bottom:508.507867pt;}
.y14_c00165{bottom:533.703307pt;}
.y13_c00165{bottom:558.986587pt;}
.y12_c00165{bottom:584.269867pt;}
.y11_c00165{bottom:609.626347pt;}
.y10_c00165{bottom:634.909627pt;}
.yf_c00165{bottom:660.192907pt;}
.ye_c00165{bottom:685.476187pt;}
.yd_c00165{bottom:710.759467pt;}
.yc_c00165{bottom:764.919467pt;}
.yb_c00165{bottom:792.519467pt;}
.ya_c00165{bottom:820.119467pt;}
.y9_c00165{bottom:847.719467pt;}
.y8_c00165{bottom:875.319467pt;}
.y7_c00165{bottom:930.519467pt;}
.y6_c00165{bottom:958.119467pt;}
.y5_c00165{bottom:985.719467pt;}
.y4_c00165{bottom:1013.319467pt;}
.y3_c00165{bottom:1043.480107pt;}
.y2_c00165{bottom:1061.399467pt;}
.h2_c00165{height:44.800000pt;}
.h3_c00165{height:48.294844pt;}
.h4_c00165{height:52.778690pt;}
.h8_c00165{height:62.483520pt;}
.h7_c00165{height:63.479040pt;}
.h5_c00165{height:68.288000pt;}
.h6_c00165{height:69.376000pt;}
.h0_c00165{height:1122.520000pt;}
.h1_c00165{height:1122.666667pt;}
.w0_c00165{width:793.701333pt;}
.w1_c00165{width:794.000000pt;}
.x0_c00165{left:0.000000pt;}
.x1_c00165{left:48.000000pt;}
.x2_c00165{left:113.440000pt;}
.x3_c00165{left:141.840000pt;}
}





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

.ir_c00166:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00166;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00166;src:url('chunks/assets/font_68251b7eb3b094ace2feeefd.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00166;src:url('chunks/assets/font_3004995082035004f4947a6b.woff2')format("woff");}.ff3_c00166{font-family:ff3_c00166;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00166;src:url('chunks/assets/font_371673aabd01d69b2369bef6.woff2')format("woff");}.ff4_c00166{font-family:ff4_c00166;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00166;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00166{font-family:ff5_c00166;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00166;src:url('chunks/assets/font_da32ef49292b012b9aa80747.woff2')format("woff");}.ff6_c00166{font-family:ff6_c00166;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00166;src:url('chunks/assets/font_32f5629bd0a0a8ae74eea357.woff2')format("woff");}.ff7_c00166{font-family:ff7_c00166;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00166;src:url('chunks/assets/font_371673aabd01d69b2369bef6.woff2')format("woff");}.ff8_c00166{font-family:ff8_c00166;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00166;src:url('chunks/assets/font_e7178ba7437dd3d9ed8a8a5f.woff2')format("woff");}.ff9_c00166{font-family:ff9_c00166;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls8_c00166{letter-spacing:-0.360000px;}
.lsa_c00166{letter-spacing:-0.197640px;}
.ls7_c00166{letter-spacing:-0.144000px;}
.lsb_c00166{letter-spacing:-0.072000px;}
.ls9_c00166{letter-spacing:-0.065880px;}
.ls6_c00166{letter-spacing:0.000000px;}
.ls0_c00166{letter-spacing:0.072000px;}
.lsc_c00166{letter-spacing:0.144000px;}
.ls2_c00166{letter-spacing:0.197640px;}
.ls1_c00166{letter-spacing:23.040000px;}
.ls3_c00166{letter-spacing:24.134400px;}
.ls4_c00166{letter-spacing:28.440000px;}
.ls5_c00166{letter-spacing:33.127200px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00166{word-spacing:-18.000000px;}
.ws3_c00166{word-spacing:-16.667640px;}
.ws0_c00166{word-spacing:-14.888880px;}
.ws1a_c00166{word-spacing:-0.197640px;}
.ws38_c00166{word-spacing:-0.144000px;}
.ws27_c00166{word-spacing:-0.131760px;}
.wsb_c00166{word-spacing:-0.072000px;}
.ws7_c00166{word-spacing:0.000000px;}
.ws2b_c00166{word-spacing:0.072000px;}
.ws1e_c00166{word-spacing:0.197640px;}
.ws1_c00166{word-spacing:0.360000px;}
.ws4_c00166{word-spacing:0.576000px;}
.ws3a_c00166{word-spacing:0.648000px;}
.ws20_c00166{word-spacing:0.720000px;}
.ws15_c00166{word-spacing:2.042280px;}
.ws29_c00166{word-spacing:2.160000px;}
.ws33_c00166{word-spacing:2.448000px;}
.ws32_c00166{word-spacing:2.520000px;}
.wse_c00166{word-spacing:2.808000px;}
.wsa_c00166{word-spacing:3.096000px;}
.ws1d_c00166{word-spacing:3.096360px;}
.ws9_c00166{word-spacing:3.168000px;}
.wsf_c00166{word-spacing:3.240000px;}
.ws1c_c00166{word-spacing:3.359880px;}
.ws1f_c00166{word-spacing:3.755160px;}
.ws12_c00166{word-spacing:4.104000px;}
.ws11_c00166{word-spacing:4.248000px;}
.ws2c_c00166{word-spacing:4.320000px;}
.ws10_c00166{word-spacing:5.400000px;}
.ws1b_c00166{word-spacing:5.665680px;}
.ws19_c00166{word-spacing:5.929200px;}
.ws31_c00166{word-spacing:6.048000px;}
.ws26_c00166{word-spacing:6.120000px;}
.ws6_c00166{word-spacing:6.336000px;}
.ws3b_c00166{word-spacing:6.768000px;}
.ws25_c00166{word-spacing:7.128000px;}
.ws24_c00166{word-spacing:7.200000px;}
.ws16_c00166{word-spacing:8.103240px;}
.ws8_c00166{word-spacing:8.169120px;}
.ws2a_c00166{word-spacing:8.208000px;}
.ws18_c00166{word-spacing:9.618480px;}
.ws17_c00166{word-spacing:9.882000px;}
.ws36_c00166{word-spacing:10.368000px;}
.ws14_c00166{word-spacing:10.672560px;}
.ws35_c00166{word-spacing:10.800000px;}
.ws21_c00166{word-spacing:11.448000px;}
.ws3c_c00166{word-spacing:11.880000px;}
.wsd_c00166{word-spacing:13.320000px;}
.ws28_c00166{word-spacing:13.968000px;}
.ws39_c00166{word-spacing:15.048000px;}
.ws2d_c00166{word-spacing:16.488000px;}
.ws2e_c00166{word-spacing:17.496000px;}
.ws34_c00166{word-spacing:19.008000px;}
.ws23_c00166{word-spacing:19.944000px;}
.ws22_c00166{word-spacing:20.160000px;}
.wsc_c00166{word-spacing:20.808000px;}
.ws13_c00166{word-spacing:22.465080px;}
.ws2f_c00166{word-spacing:22.680000px;}
.ws30_c00166{word-spacing:23.040000px;}
.ws37_c00166{word-spacing:48.888000px;}
.ws5_c00166{word-spacing:50.400000px;}
._1_c00166{margin-left:-1.029600px;}
._0_c00166{width:1.054080px;}
._4_c00166{width:3.071880px;}
._3_c00166{width:5.402160px;}
._2_c00166{width:20.131200px;}
.fc2_c00166{color:transparent;}
.fc1_c00166{color:rgb(0,0,0);}
.fc0_c00166{color:rgb(35,31,32);}
.fs1_c00166{font-size:65.880000px;}
.fs0_c00166{font-size:72.000000px;}
.y0_c00166{bottom:0.000000px;}
.y1_c00166{bottom:61.748550px;}
.y33_c00166{bottom:198.224400px;}
.y1f_c00166{bottom:203.444400px;}
.y32_c00166{bottom:229.274400px;}
.y1e_c00166{bottom:234.494400px;}
.y31_c00166{bottom:260.324400px;}
.y30_c00166{bottom:291.374400px;}
.y1d_c00166{bottom:296.504400px;}
.y2f_c00166{bottom:322.424400px;}
.y1c_c00166{bottom:327.554400px;}
.y2e_c00166{bottom:353.474400px;}
.y1b_c00166{bottom:358.604400px;}
.y2d_c00166{bottom:384.524400px;}
.y1a_c00166{bottom:389.654400px;}
.y2c_c00166{bottom:415.574400px;}
.y19_c00166{bottom:420.704400px;}
.y18_c00166{bottom:451.754400px;}
.y2b_c00166{bottom:477.674400px;}
.y17_c00166{bottom:482.804400px;}
.y2a_c00166{bottom:508.724400px;}
.y29_c00166{bottom:539.774400px;}
.y16_c00166{bottom:543.545310px;}
.y28_c00166{bottom:570.824400px;}
.y15_c00166{bottom:572.071350px;}
.y14_c00166{bottom:600.416220px;}
.y27_c00166{bottom:601.874400px;}
.y13_c00166{bottom:628.859910px;}
.y26_c00166{bottom:632.924400px;}
.y12_c00166{bottom:657.303600px;}
.y25_c00166{bottom:663.974400px;}
.y11_c00166{bottom:685.829640px;}
.y24_c00166{bottom:695.024400px;}
.y10_c00166{bottom:714.273330px;}
.yf_c00166{bottom:742.717020px;}
.y23_c00166{bottom:767.294400px;}
.ye_c00166{bottom:771.160710px;}
.y22_c00166{bottom:798.434400px;}
.yd_c00166{bottom:799.604400px;}
.y21_c00166{bottom:829.484400px;}
.yc_c00166{bottom:860.534400px;}
.yb_c00166{bottom:891.584400px;}
.ya_c00166{bottom:922.634400px;}
.y9_c00166{bottom:953.684400px;}
.y8_c00166{bottom:984.734400px;}
.y20_c00166{bottom:1015.784400px;}
.y7_c00166{bottom:1046.834400px;}
.y6_c00166{bottom:1077.884400px;}
.y5_c00166{bottom:1108.934400px;}
.y4_c00166{bottom:1139.984400px;}
.y3_c00166{bottom:1173.915120px;}
.y2_c00166{bottom:1194.074400px;}
.h2_c00166{height:50.400000px;}
.h3_c00166{height:54.331699px;}
.h4_c00166{height:59.376026px;}
.h8_c00166{height:70.293960px;}
.h7_c00166{height:71.413920px;}
.h5_c00166{height:76.824000px;}
.h6_c00166{height:78.048000px;}
.h0_c00166{height:1262.835000px;}
.h1_c00166{height:1263.000000px;}
.w2_c00166{width:0.000000px;}
.w3_c00166{width:0.066000px;}
.w0_c00166{width:892.914000px;}
.w1_c00166{width:893.250000px;}
.x1_c00166{left:-838.913400px;}
.x2_c00166{left:-765.293400px;}
.x3_c00166{left:-733.343400px;}
.x0_c00166{left:0.000000px;}
.x7_c00166{left:127.620000px;}
.x6_c00166{left:159.570000px;}
.x5_c00166{left:692.370000px;}
.x4_c00166{left:804.366150px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls8_c00166{letter-spacing:-0.320000pt;}
.lsa_c00166{letter-spacing:-0.175680pt;}
.ls7_c00166{letter-spacing:-0.128000pt;}
.lsb_c00166{letter-spacing:-0.064000pt;}
.ls9_c00166{letter-spacing:-0.058560pt;}
.ls6_c00166{letter-spacing:0.000000pt;}
.ls0_c00166{letter-spacing:0.064000pt;}
.lsc_c00166{letter-spacing:0.128000pt;}
.ls2_c00166{letter-spacing:0.175680pt;}
.ls1_c00166{letter-spacing:20.480000pt;}
.ls3_c00166{letter-spacing:21.452800pt;}
.ls4_c00166{letter-spacing:25.280000pt;}
.ls5_c00166{letter-spacing:29.446400pt;}
.ws2_c00166{word-spacing:-16.000000pt;}
.ws3_c00166{word-spacing:-14.815680pt;}
.ws0_c00166{word-spacing:-13.234560pt;}
.ws1a_c00166{word-spacing:-0.175680pt;}
.ws38_c00166{word-spacing:-0.128000pt;}
.ws27_c00166{word-spacing:-0.117120pt;}
.wsb_c00166{word-spacing:-0.064000pt;}
.ws7_c00166{word-spacing:0.000000pt;}
.ws2b_c00166{word-spacing:0.064000pt;}
.ws1e_c00166{word-spacing:0.175680pt;}
.ws1_c00166{word-spacing:0.320000pt;}
.ws4_c00166{word-spacing:0.512000pt;}
.ws3a_c00166{word-spacing:0.576000pt;}
.ws20_c00166{word-spacing:0.640000pt;}
.ws15_c00166{word-spacing:1.815360pt;}
.ws29_c00166{word-spacing:1.920000pt;}
.ws33_c00166{word-spacing:2.176000pt;}
.ws32_c00166{word-spacing:2.240000pt;}
.wse_c00166{word-spacing:2.496000pt;}
.wsa_c00166{word-spacing:2.752000pt;}
.ws1d_c00166{word-spacing:2.752320pt;}
.ws9_c00166{word-spacing:2.816000pt;}
.wsf_c00166{word-spacing:2.880000pt;}
.ws1c_c00166{word-spacing:2.986560pt;}
.ws1f_c00166{word-spacing:3.337920pt;}
.ws12_c00166{word-spacing:3.648000pt;}
.ws11_c00166{word-spacing:3.776000pt;}
.ws2c_c00166{word-spacing:3.840000pt;}
.ws10_c00166{word-spacing:4.800000pt;}
.ws1b_c00166{word-spacing:5.036160pt;}
.ws19_c00166{word-spacing:5.270400pt;}
.ws31_c00166{word-spacing:5.376000pt;}
.ws26_c00166{word-spacing:5.440000pt;}
.ws6_c00166{word-spacing:5.632000pt;}
.ws3b_c00166{word-spacing:6.016000pt;}
.ws25_c00166{word-spacing:6.336000pt;}
.ws24_c00166{word-spacing:6.400000pt;}
.ws16_c00166{word-spacing:7.202880pt;}
.ws8_c00166{word-spacing:7.261440pt;}
.ws2a_c00166{word-spacing:7.296000pt;}
.ws18_c00166{word-spacing:8.549760pt;}
.ws17_c00166{word-spacing:8.784000pt;}
.ws36_c00166{word-spacing:9.216000pt;}
.ws14_c00166{word-spacing:9.486720pt;}
.ws35_c00166{word-spacing:9.600000pt;}
.ws21_c00166{word-spacing:10.176000pt;}
.ws3c_c00166{word-spacing:10.560000pt;}
.wsd_c00166{word-spacing:11.840000pt;}
.ws28_c00166{word-spacing:12.416000pt;}
.ws39_c00166{word-spacing:13.376000pt;}
.ws2d_c00166{word-spacing:14.656000pt;}
.ws2e_c00166{word-spacing:15.552000pt;}
.ws34_c00166{word-spacing:16.896000pt;}
.ws23_c00166{word-spacing:17.728000pt;}
.ws22_c00166{word-spacing:17.920000pt;}
.wsc_c00166{word-spacing:18.496000pt;}
.ws13_c00166{word-spacing:19.968960pt;}
.ws2f_c00166{word-spacing:20.160000pt;}
.ws30_c00166{word-spacing:20.480000pt;}
.ws37_c00166{word-spacing:43.456000pt;}
.ws5_c00166{word-spacing:44.800000pt;}
._1_c00166{margin-left:-0.915200pt;}
._0_c00166{width:0.936960pt;}
._4_c00166{width:2.730560pt;}
._3_c00166{width:4.801920pt;}
._2_c00166{width:17.894400pt;}
.fs1_c00166{font-size:58.560000pt;}
.fs0_c00166{font-size:64.000000pt;}
.y0_c00166{bottom:0.000000pt;}
.y1_c00166{bottom:54.887600pt;}
.y33_c00166{bottom:176.199467pt;}
.y1f_c00166{bottom:180.839467pt;}
.y32_c00166{bottom:203.799467pt;}
.y1e_c00166{bottom:208.439467pt;}
.y31_c00166{bottom:231.399467pt;}
.y30_c00166{bottom:258.999467pt;}
.y1d_c00166{bottom:263.559467pt;}
.y2f_c00166{bottom:286.599467pt;}
.y1c_c00166{bottom:291.159467pt;}
.y2e_c00166{bottom:314.199467pt;}
.y1b_c00166{bottom:318.759467pt;}
.y2d_c00166{bottom:341.799467pt;}
.y1a_c00166{bottom:346.359467pt;}
.y2c_c00166{bottom:369.399467pt;}
.y19_c00166{bottom:373.959467pt;}
.y18_c00166{bottom:401.559467pt;}
.y2b_c00166{bottom:424.599467pt;}
.y17_c00166{bottom:429.159467pt;}
.y2a_c00166{bottom:452.199467pt;}
.y29_c00166{bottom:479.799467pt;}
.y16_c00166{bottom:483.151387pt;}
.y28_c00166{bottom:507.399467pt;}
.y15_c00166{bottom:508.507867pt;}
.y14_c00166{bottom:533.703307pt;}
.y27_c00166{bottom:534.999467pt;}
.y13_c00166{bottom:558.986587pt;}
.y26_c00166{bottom:562.599467pt;}
.y12_c00166{bottom:584.269867pt;}
.y25_c00166{bottom:590.199467pt;}
.y11_c00166{bottom:609.626347pt;}
.y24_c00166{bottom:617.799467pt;}
.y10_c00166{bottom:634.909627pt;}
.yf_c00166{bottom:660.192907pt;}
.y23_c00166{bottom:682.039467pt;}
.ye_c00166{bottom:685.476187pt;}
.y22_c00166{bottom:709.719467pt;}
.yd_c00166{bottom:710.759467pt;}
.y21_c00166{bottom:737.319467pt;}
.yc_c00166{bottom:764.919467pt;}
.yb_c00166{bottom:792.519467pt;}
.ya_c00166{bottom:820.119467pt;}
.y9_c00166{bottom:847.719467pt;}
.y8_c00166{bottom:875.319467pt;}
.y20_c00166{bottom:902.919467pt;}
.y7_c00166{bottom:930.519467pt;}
.y6_c00166{bottom:958.119467pt;}
.y5_c00166{bottom:985.719467pt;}
.y4_c00166{bottom:1013.319467pt;}
.y3_c00166{bottom:1043.480107pt;}
.y2_c00166{bottom:1061.399467pt;}
.h2_c00166{height:44.800000pt;}
.h3_c00166{height:48.294844pt;}
.h4_c00166{height:52.778690pt;}
.h8_c00166{height:62.483520pt;}
.h7_c00166{height:63.479040pt;}
.h5_c00166{height:68.288000pt;}
.h6_c00166{height:69.376000pt;}
.h0_c00166{height:1122.520000pt;}
.h1_c00166{height:1122.666667pt;}
.w2_c00166{width:0.000000pt;}
.w3_c00166{width:0.058667pt;}
.w0_c00166{width:793.701333pt;}
.w1_c00166{width:794.000000pt;}
.x1_c00166{left:-745.700800pt;}
.x2_c00166{left:-680.260800pt;}
.x3_c00166{left:-651.860800pt;}
.x0_c00166{left:0.000000pt;}
.x7_c00166{left:113.440000pt;}
.x6_c00166{left:141.840000pt;}
.x5_c00166{left:615.440000pt;}
.x4_c00166{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00167;src:url('chunks/assets/font_a346d3407fb881982b63aa54.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00167;src:url('chunks/assets/font_112b342af465d687042b22fd.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00167;src:url('chunks/assets/font_09afa51e3587740d06c2161d.woff2')format("woff");}.ff4_c00167{font-family:ff4_c00167;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.lsf_c00167{letter-spacing:-0.288000px;}
.lse_c00167{letter-spacing:0.000000px;}
.ls0_c00167{letter-spacing:0.072000px;}
.ls2_c00167{letter-spacing:0.144000px;}
.ls7_c00167{letter-spacing:18.014400px;}
.ls8_c00167{letter-spacing:18.374400px;}
.lsa_c00167{letter-spacing:19.080000px;}
.lsb_c00167{letter-spacing:20.880000px;}
.ls1_c00167{letter-spacing:25.560000px;}
.ls4_c00167{letter-spacing:26.280000px;}
.ls6_c00167{letter-spacing:29.160000px;}
.ls9_c00167{letter-spacing:38.304000px;}
.lsd_c00167{letter-spacing:40.464000px;}
.lsc_c00167{letter-spacing:40.680000px;}
.ls3_c00167{letter-spacing:53.424000px;}
.ls5_c00167{letter-spacing:58.464000px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00167{word-spacing:-18.000000px;}
.ws0_c00167{word-spacing:-14.888880px;}
.wsf_c00167{word-spacing:-0.144000px;}
.ws17_c00167{word-spacing:-0.072000px;}
.ws2_c00167{word-spacing:0.000000px;}
.ws14_c00167{word-spacing:0.288000px;}
.ws6_c00167{word-spacing:0.360000px;}
.ws18_c00167{word-spacing:0.648000px;}
.ws19_c00167{word-spacing:1.008000px;}
.ws1b_c00167{word-spacing:3.528000px;}
.ws4_c00167{word-spacing:3.600000px;}
.ws5_c00167{word-spacing:3.888000px;}
.ws1e_c00167{word-spacing:5.040000px;}
.ws13_c00167{word-spacing:5.328000px;}
.wsc_c00167{word-spacing:5.904000px;}
.wse_c00167{word-spacing:7.488000px;}
.wsd_c00167{word-spacing:7.560000px;}
.ws16_c00167{word-spacing:7.776000px;}
.ws15_c00167{word-spacing:7.848000px;}
.ws3_c00167{word-spacing:8.169120px;}
.ws11_c00167{word-spacing:8.568000px;}
.ws10_c00167{word-spacing:8.640000px;}
.ws7_c00167{word-spacing:11.088000px;}
.ws12_c00167{word-spacing:11.160000px;}
.ws8_c00167{word-spacing:11.520000px;}
.wsb_c00167{word-spacing:11.880000px;}
.ws1a_c00167{word-spacing:13.248000px;}
.ws9_c00167{word-spacing:13.536000px;}
.wsa_c00167{word-spacing:13.608000px;}
.ws1f_c00167{word-spacing:15.048000px;}
.ws21_c00167{word-spacing:16.200000px;}
.ws1d_c00167{word-spacing:20.520000px;}
.ws1c_c00167{word-spacing:22.680000px;}
.ws23_c00167{word-spacing:27.288000px;}
.ws22_c00167{word-spacing:27.360000px;}
.ws20_c00167{word-spacing:29.088000px;}
._1_c00167{margin-left:-1.080000px;}
._0_c00167{width:1.054080px;}
.fc1_c00167{color:rgb(0,0,0);}
.fc0_c00167{color:rgb(35,31,32);}
.fs1_c00167{font-size:65.880000px;}
.fs0_c00167{font-size:72.000000px;}
.y0_c00167{bottom:0.000000px;}
.y1_c00167{bottom:61.748550px;}
.y22_c00167{bottom:115.424400px;}
.y21_c00167{bottom:146.474400px;}
.y20_c00167{bottom:177.524400px;}
.y1f_c00167{bottom:208.574400px;}
.y1e_c00167{bottom:239.534400px;}
.y1d_c00167{bottom:270.584400px;}
.y1c_c00167{bottom:301.724400px;}
.y1b_c00167{bottom:332.774400px;}
.y1a_c00167{bottom:394.874400px;}
.y19_c00167{bottom:425.924400px;}
.y18_c00167{bottom:456.974400px;}
.y17_c00167{bottom:488.024400px;}
.y16_c00167{bottom:519.074400px;}
.y15_c00167{bottom:550.124400px;}
.y14_c00167{bottom:581.174400px;}
.y13_c00167{bottom:612.224400px;}
.y12_c00167{bottom:643.274400px;}
.y11_c00167{bottom:674.324400px;}
.y10_c00167{bottom:705.374400px;}
.yf_c00167{bottom:736.424400px;}
.ye_c00167{bottom:798.434400px;}
.yd_c00167{bottom:829.484400px;}
.yc_c00167{bottom:860.534400px;}
.yb_c00167{bottom:891.584400px;}
.ya_c00167{bottom:922.634400px;}
.y9_c00167{bottom:984.734400px;}
.y8_c00167{bottom:1015.784400px;}
.y7_c00167{bottom:1046.834400px;}
.y6_c00167{bottom:1077.884400px;}
.y5_c00167{bottom:1108.934400px;}
.y4_c00167{bottom:1139.984400px;}
.y3_c00167{bottom:1173.915120px;}
.y2_c00167{bottom:1194.074400px;}
.h2_c00167{height:50.400000px;}
.h3_c00167{height:54.331699px;}
.h4_c00167{height:59.376026px;}
.h5_c00167{height:76.824000px;}
.h6_c00167{height:78.048000px;}
.h0_c00167{height:1262.835000px;}
.h1_c00167{height:1263.000000px;}
.w0_c00167{width:892.914000px;}
.w1_c00167{width:893.250000px;}
.x0_c00167{left:0.000000px;}
.x1_c00167{left:54.000000px;}
.x2_c00167{left:127.620000px;}
.x4_c00167{left:148.950000px;}
.x3_c00167{left:159.570000px;}
.x5_c00167{left:170.190000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.lsf_c00167{letter-spacing:-0.256000pt;}
.lse_c00167{letter-spacing:0.000000pt;}
.ls0_c00167{letter-spacing:0.064000pt;}
.ls2_c00167{letter-spacing:0.128000pt;}
.ls7_c00167{letter-spacing:16.012800pt;}
.ls8_c00167{letter-spacing:16.332800pt;}
.lsa_c00167{letter-spacing:16.960000pt;}
.lsb_c00167{letter-spacing:18.560000pt;}
.ls1_c00167{letter-spacing:22.720000pt;}
.ls4_c00167{letter-spacing:23.360000pt;}
.ls6_c00167{letter-spacing:25.920000pt;}
.ls9_c00167{letter-spacing:34.048000pt;}
.lsd_c00167{letter-spacing:35.968000pt;}
.lsc_c00167{letter-spacing:36.160000pt;}
.ls3_c00167{letter-spacing:47.488000pt;}
.ls5_c00167{letter-spacing:51.968000pt;}
.ws1_c00167{word-spacing:-16.000000pt;}
.ws0_c00167{word-spacing:-13.234560pt;}
.wsf_c00167{word-spacing:-0.128000pt;}
.ws17_c00167{word-spacing:-0.064000pt;}
.ws2_c00167{word-spacing:0.000000pt;}
.ws14_c00167{word-spacing:0.256000pt;}
.ws6_c00167{word-spacing:0.320000pt;}
.ws18_c00167{word-spacing:0.576000pt;}
.ws19_c00167{word-spacing:0.896000pt;}
.ws1b_c00167{word-spacing:3.136000pt;}
.ws4_c00167{word-spacing:3.200000pt;}
.ws5_c00167{word-spacing:3.456000pt;}
.ws1e_c00167{word-spacing:4.480000pt;}
.ws13_c00167{word-spacing:4.736000pt;}
.wsc_c00167{word-spacing:5.248000pt;}
.wse_c00167{word-spacing:6.656000pt;}
.wsd_c00167{word-spacing:6.720000pt;}
.ws16_c00167{word-spacing:6.912000pt;}
.ws15_c00167{word-spacing:6.976000pt;}
.ws3_c00167{word-spacing:7.261440pt;}
.ws11_c00167{word-spacing:7.616000pt;}
.ws10_c00167{word-spacing:7.680000pt;}
.ws7_c00167{word-spacing:9.856000pt;}
.ws12_c00167{word-spacing:9.920000pt;}
.ws8_c00167{word-spacing:10.240000pt;}
.wsb_c00167{word-spacing:10.560000pt;}
.ws1a_c00167{word-spacing:11.776000pt;}
.ws9_c00167{word-spacing:12.032000pt;}
.wsa_c00167{word-spacing:12.096000pt;}
.ws1f_c00167{word-spacing:13.376000pt;}
.ws21_c00167{word-spacing:14.400000pt;}
.ws1d_c00167{word-spacing:18.240000pt;}
.ws1c_c00167{word-spacing:20.160000pt;}
.ws23_c00167{word-spacing:24.256000pt;}
.ws22_c00167{word-spacing:24.320000pt;}
.ws20_c00167{word-spacing:25.856000pt;}
._1_c00167{margin-left:-0.960000pt;}
._0_c00167{width:0.936960pt;}
.fs1_c00167{font-size:58.560000pt;}
.fs0_c00167{font-size:64.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y1_c00167{bottom:54.887600pt;}
.y22_c00167{bottom:102.599467pt;}
.y21_c00167{bottom:130.199467pt;}
.y20_c00167{bottom:157.799467pt;}
.y1f_c00167{bottom:185.399467pt;}
.y1e_c00167{bottom:212.919467pt;}
.y1d_c00167{bottom:240.519467pt;}
.y1c_c00167{bottom:268.199467pt;}
.y1b_c00167{bottom:295.799467pt;}
.y1a_c00167{bottom:350.999467pt;}
.y19_c00167{bottom:378.599467pt;}
.y18_c00167{bottom:406.199467pt;}
.y17_c00167{bottom:433.799467pt;}
.y16_c00167{bottom:461.399467pt;}
.y15_c00167{bottom:488.999467pt;}
.y14_c00167{bottom:516.599467pt;}
.y13_c00167{bottom:544.199467pt;}
.y12_c00167{bottom:571.799467pt;}
.y11_c00167{bottom:599.399467pt;}
.y10_c00167{bottom:626.999467pt;}
.yf_c00167{bottom:654.599467pt;}
.ye_c00167{bottom:709.719467pt;}
.yd_c00167{bottom:737.319467pt;}
.yc_c00167{bottom:764.919467pt;}
.yb_c00167{bottom:792.519467pt;}
.ya_c00167{bottom:820.119467pt;}
.y9_c00167{bottom:875.319467pt;}
.y8_c00167{bottom:902.919467pt;}
.y7_c00167{bottom:930.519467pt;}
.y6_c00167{bottom:958.119467pt;}
.y5_c00167{bottom:985.719467pt;}
.y4_c00167{bottom:1013.319467pt;}
.y3_c00167{bottom:1043.480107pt;}
.y2_c00167{bottom:1061.399467pt;}
.h2_c00167{height:44.800000pt;}
.h3_c00167{height:48.294844pt;}
.h4_c00167{height:52.778690pt;}
.h5_c00167{height:68.288000pt;}
.h6_c00167{height:69.376000pt;}
.h0_c00167{height:1122.520000pt;}
.h1_c00167{height:1122.666667pt;}
.w0_c00167{width:793.701333pt;}
.w1_c00167{width:794.000000pt;}
.x0_c00167{left:0.000000pt;}
.x1_c00167{left:48.000000pt;}
.x2_c00167{left:113.440000pt;}
.x4_c00167{left:132.400000pt;}
.x3_c00167{left:141.840000pt;}
.x5_c00167{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00168;src:url('chunks/assets/font_e0dc97d13e4a5f54e7b4cf73.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00168;src:url('chunks/assets/font_485d3006e1edb9cffe9ea9e8.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00168;src:url('chunks/assets/font_c344caaa3fed176cfa19a666.woff2')format("woff");}.ff4_c00168{font-family:ff4_c00168;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00168;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00168{font-family:ff5_c00168;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00168;src:url('chunks/assets/font_240da7cacc3fdb3a6c4c7609.woff2')format("woff");}.ff6_c00168{font-family:ff6_c00168;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00168;src:url('chunks/assets/font_91a897c07d9891fa796f2b90.woff2')format("woff");}.ff7_c00168{font-family:ff7_c00168;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00168;src:url('chunks/assets/font_56653e2ef68746cbdf02c379.woff2')format("woff");}.ff8_c00168{font-family:ff8_c00168;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls15_c00168{letter-spacing:-0.288000px;}
.ls16_c00168{letter-spacing:-0.144000px;}
.ls14_c00168{letter-spacing:0.000000px;}
.ls0_c00168{letter-spacing:0.072000px;}
.ls2_c00168{letter-spacing:0.144000px;}
.ls7_c00168{letter-spacing:18.014400px;}
.ls8_c00168{letter-spacing:18.374400px;}
.lsa_c00168{letter-spacing:19.080000px;}
.lse_c00168{letter-spacing:19.094400px;}
.ls11_c00168{letter-spacing:20.160000px;}
.lsf_c00168{letter-spacing:20.520000px;}
.lsb_c00168{letter-spacing:20.880000px;}
.ls1_c00168{letter-spacing:25.560000px;}
.ls4_c00168{letter-spacing:26.280000px;}
.ls12_c00168{letter-spacing:27.000000px;}
.ls6_c00168{letter-spacing:29.160000px;}
.ls13_c00168{letter-spacing:34.272000px;}
.ls9_c00168{letter-spacing:38.304000px;}
.lsd_c00168{letter-spacing:40.464000px;}
.lsc_c00168{letter-spacing:40.680000px;}
.ls10_c00168{letter-spacing:49.320000px;}
.ls3_c00168{letter-spacing:53.424000px;}
.ls5_c00168{letter-spacing:58.464000px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00168{word-spacing:-18.072000px;}
.ws1_c00168{word-spacing:-18.000000px;}
.ws0_c00168{word-spacing:-14.888880px;}
.ws3c_c00168{word-spacing:-0.360000px;}
.ws13_c00168{word-spacing:-0.144000px;}
.ws28_c00168{word-spacing:-0.131760px;}
.ws1b_c00168{word-spacing:-0.072000px;}
.ws6_c00168{word-spacing:0.000000px;}
.ws18_c00168{word-spacing:0.288000px;}
.wsa_c00168{word-spacing:0.360000px;}
.ws1c_c00168{word-spacing:0.648000px;}
.ws29_c00168{word-spacing:0.936000px;}
.ws1d_c00168{word-spacing:1.008000px;}
.ws2a_c00168{word-spacing:1.080000px;}
.ws30_c00168{word-spacing:1.872000px;}
.ws36_c00168{word-spacing:2.016000px;}
.ws43_c00168{word-spacing:2.088000px;}
.ws37_c00168{word-spacing:2.160000px;}
.ws31_c00168{word-spacing:2.448000px;}
.ws2b_c00168{word-spacing:2.520000px;}
.ws3d_c00168{word-spacing:3.240000px;}
.ws1f_c00168{word-spacing:3.528000px;}
.ws3_c00168{word-spacing:3.578400px;}
.ws8_c00168{word-spacing:3.600000px;}
.ws9_c00168{word-spacing:3.888000px;}
.ws38_c00168{word-spacing:3.960000px;}
.ws3f_c00168{word-spacing:4.248000px;}
.ws40_c00168{word-spacing:4.320000px;}
.ws4_c00168{word-spacing:4.392000px;}
.ws3e_c00168{word-spacing:4.464000px;}
.ws22_c00168{word-spacing:5.040000px;}
.ws17_c00168{word-spacing:5.328000px;}
.ws10_c00168{word-spacing:5.904000px;}
.ws12_c00168{word-spacing:7.488000px;}
.ws11_c00168{word-spacing:7.560000px;}
.ws1a_c00168{word-spacing:7.776000px;}
.ws19_c00168{word-spacing:7.848000px;}
.ws34_c00168{word-spacing:7.920000px;}
.ws7_c00168{word-spacing:8.169120px;}
.ws15_c00168{word-spacing:8.568000px;}
.ws14_c00168{word-spacing:8.640000px;}
.ws39_c00168{word-spacing:8.928000px;}
.ws32_c00168{word-spacing:10.008000px;}
.ws33_c00168{word-spacing:10.080000px;}
.wsb_c00168{word-spacing:11.088000px;}
.ws16_c00168{word-spacing:11.160000px;}
.wsc_c00168{word-spacing:11.520000px;}
.wsf_c00168{word-spacing:11.880000px;}
.ws1e_c00168{word-spacing:13.248000px;}
.wsd_c00168{word-spacing:13.536000px;}
.wse_c00168{word-spacing:13.608000px;}
.ws23_c00168{word-spacing:15.048000px;}
.ws35_c00168{word-spacing:15.120000px;}
.ws41_c00168{word-spacing:15.912000px;}
.ws5_c00168{word-spacing:16.128000px;}
.ws25_c00168{word-spacing:16.200000px;}
.ws42_c00168{word-spacing:17.280000px;}
.ws3b_c00168{word-spacing:17.568000px;}
.ws3a_c00168{word-spacing:17.640000px;}
.ws44_c00168{word-spacing:18.000000px;}
.ws21_c00168{word-spacing:20.520000px;}
.ws20_c00168{word-spacing:22.680000px;}
.ws2c_c00168{word-spacing:24.840000px;}
.ws27_c00168{word-spacing:27.288000px;}
.ws26_c00168{word-spacing:27.360000px;}
.ws24_c00168{word-spacing:29.088000px;}
.ws2f_c00168{word-spacing:31.248000px;}
.ws2e_c00168{word-spacing:31.320000px;}
.ws2d_c00168{word-spacing:38.160000px;}
._1_c00168{margin-left:-1.080000px;}
._0_c00168{width:1.054080px;}
._2_c00168{width:5.400000px;}
.fc2_c00168{color:transparent;}
.fc1_c00168{color:rgb(0,0,0);}
.fc0_c00168{color:rgb(35,31,32);}
.fs1_c00168{font-size:65.880000px;}
.fs0_c00168{font-size:72.000000px;}
.y0_c00168{bottom:0.000000px;}
.y1_c00168{bottom:61.748550px;}
.y22_c00168{bottom:115.424400px;}
.y21_c00168{bottom:146.474400px;}
.y20_c00168{bottom:177.524400px;}
.y1f_c00168{bottom:208.574400px;}
.y1e_c00168{bottom:239.534400px;}
.y1d_c00168{bottom:270.584400px;}
.y25_c00168{bottom:270.674400px;}
.y1c_c00168{bottom:301.724400px;}
.y1b_c00168{bottom:332.774400px;}
.y24_c00168{bottom:363.824400px;}
.y1a_c00168{bottom:394.874400px;}
.y19_c00168{bottom:425.924400px;}
.y18_c00168{bottom:456.974400px;}
.y17_c00168{bottom:488.024400px;}
.y16_c00168{bottom:519.074400px;}
.y15_c00168{bottom:550.124400px;}
.y14_c00168{bottom:581.174400px;}
.y13_c00168{bottom:612.224400px;}
.y12_c00168{bottom:643.274400px;}
.y11_c00168{bottom:674.324400px;}
.y10_c00168{bottom:705.374400px;}
.yf_c00168{bottom:736.424400px;}
.ye_c00168{bottom:798.434400px;}
.yd_c00168{bottom:829.484400px;}
.yc_c00168{bottom:860.534400px;}
.yb_c00168{bottom:891.584400px;}
.ya_c00168{bottom:922.634400px;}
.y23_c00168{bottom:953.684400px;}
.y9_c00168{bottom:984.734400px;}
.y8_c00168{bottom:1015.784400px;}
.y7_c00168{bottom:1046.834400px;}
.y6_c00168{bottom:1077.884400px;}
.y5_c00168{bottom:1108.934400px;}
.y4_c00168{bottom:1139.984400px;}
.y3_c00168{bottom:1173.915120px;}
.y2_c00168{bottom:1194.074400px;}
.h2_c00168{height:50.400000px;}
.h3_c00168{height:54.331699px;}
.h4_c00168{height:59.376026px;}
.h5_c00168{height:76.824000px;}
.h6_c00168{height:78.048000px;}
.h0_c00168{height:1262.835000px;}
.h1_c00168{height:1263.000000px;}
.w2_c00168{width:0.000000px;}
.w3_c00168{width:0.066000px;}
.w0_c00168{width:892.914000px;}
.w1_c00168{width:893.250000px;}
.x1_c00168{left:-838.913400px;}
.x2_c00168{left:-765.293400px;}
.x4_c00168{left:-743.963400px;}
.x3_c00168{left:-733.343400px;}
.x5_c00168{left:-722.723400px;}
.x0_c00168{left:0.000000px;}
.x8_c00168{left:127.620000px;}
.x9_c00168{left:159.570000px;}
.x7_c00168{left:692.370000px;}
.x6_c00168{left:804.366150px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls15_c00168{letter-spacing:-0.256000pt;}
.ls16_c00168{letter-spacing:-0.128000pt;}
.ls14_c00168{letter-spacing:0.000000pt;}
.ls0_c00168{letter-spacing:0.064000pt;}
.ls2_c00168{letter-spacing:0.128000pt;}
.ls7_c00168{letter-spacing:16.012800pt;}
.ls8_c00168{letter-spacing:16.332800pt;}
.lsa_c00168{letter-spacing:16.960000pt;}
.lse_c00168{letter-spacing:16.972800pt;}
.ls11_c00168{letter-spacing:17.920000pt;}
.lsf_c00168{letter-spacing:18.240000pt;}
.lsb_c00168{letter-spacing:18.560000pt;}
.ls1_c00168{letter-spacing:22.720000pt;}
.ls4_c00168{letter-spacing:23.360000pt;}
.ls12_c00168{letter-spacing:24.000000pt;}
.ls6_c00168{letter-spacing:25.920000pt;}
.ls13_c00168{letter-spacing:30.464000pt;}
.ls9_c00168{letter-spacing:34.048000pt;}
.lsd_c00168{letter-spacing:35.968000pt;}
.lsc_c00168{letter-spacing:36.160000pt;}
.ls10_c00168{letter-spacing:43.840000pt;}
.ls3_c00168{letter-spacing:47.488000pt;}
.ls5_c00168{letter-spacing:51.968000pt;}
.ws2_c00168{word-spacing:-16.064000pt;}
.ws1_c00168{word-spacing:-16.000000pt;}
.ws0_c00168{word-spacing:-13.234560pt;}
.ws3c_c00168{word-spacing:-0.320000pt;}
.ws13_c00168{word-spacing:-0.128000pt;}
.ws28_c00168{word-spacing:-0.117120pt;}
.ws1b_c00168{word-spacing:-0.064000pt;}
.ws6_c00168{word-spacing:0.000000pt;}
.ws18_c00168{word-spacing:0.256000pt;}
.wsa_c00168{word-spacing:0.320000pt;}
.ws1c_c00168{word-spacing:0.576000pt;}
.ws29_c00168{word-spacing:0.832000pt;}
.ws1d_c00168{word-spacing:0.896000pt;}
.ws2a_c00168{word-spacing:0.960000pt;}
.ws30_c00168{word-spacing:1.664000pt;}
.ws36_c00168{word-spacing:1.792000pt;}
.ws43_c00168{word-spacing:1.856000pt;}
.ws37_c00168{word-spacing:1.920000pt;}
.ws31_c00168{word-spacing:2.176000pt;}
.ws2b_c00168{word-spacing:2.240000pt;}
.ws3d_c00168{word-spacing:2.880000pt;}
.ws1f_c00168{word-spacing:3.136000pt;}
.ws3_c00168{word-spacing:3.180800pt;}
.ws8_c00168{word-spacing:3.200000pt;}
.ws9_c00168{word-spacing:3.456000pt;}
.ws38_c00168{word-spacing:3.520000pt;}
.ws3f_c00168{word-spacing:3.776000pt;}
.ws40_c00168{word-spacing:3.840000pt;}
.ws4_c00168{word-spacing:3.904000pt;}
.ws3e_c00168{word-spacing:3.968000pt;}
.ws22_c00168{word-spacing:4.480000pt;}
.ws17_c00168{word-spacing:4.736000pt;}
.ws10_c00168{word-spacing:5.248000pt;}
.ws12_c00168{word-spacing:6.656000pt;}
.ws11_c00168{word-spacing:6.720000pt;}
.ws1a_c00168{word-spacing:6.912000pt;}
.ws19_c00168{word-spacing:6.976000pt;}
.ws34_c00168{word-spacing:7.040000pt;}
.ws7_c00168{word-spacing:7.261440pt;}
.ws15_c00168{word-spacing:7.616000pt;}
.ws14_c00168{word-spacing:7.680000pt;}
.ws39_c00168{word-spacing:7.936000pt;}
.ws32_c00168{word-spacing:8.896000pt;}
.ws33_c00168{word-spacing:8.960000pt;}
.wsb_c00168{word-spacing:9.856000pt;}
.ws16_c00168{word-spacing:9.920000pt;}
.wsc_c00168{word-spacing:10.240000pt;}
.wsf_c00168{word-spacing:10.560000pt;}
.ws1e_c00168{word-spacing:11.776000pt;}
.wsd_c00168{word-spacing:12.032000pt;}
.wse_c00168{word-spacing:12.096000pt;}
.ws23_c00168{word-spacing:13.376000pt;}
.ws35_c00168{word-spacing:13.440000pt;}
.ws41_c00168{word-spacing:14.144000pt;}
.ws5_c00168{word-spacing:14.336000pt;}
.ws25_c00168{word-spacing:14.400000pt;}
.ws42_c00168{word-spacing:15.360000pt;}
.ws3b_c00168{word-spacing:15.616000pt;}
.ws3a_c00168{word-spacing:15.680000pt;}
.ws44_c00168{word-spacing:16.000000pt;}
.ws21_c00168{word-spacing:18.240000pt;}
.ws20_c00168{word-spacing:20.160000pt;}
.ws2c_c00168{word-spacing:22.080000pt;}
.ws27_c00168{word-spacing:24.256000pt;}
.ws26_c00168{word-spacing:24.320000pt;}
.ws24_c00168{word-spacing:25.856000pt;}
.ws2f_c00168{word-spacing:27.776000pt;}
.ws2e_c00168{word-spacing:27.840000pt;}
.ws2d_c00168{word-spacing:33.920000pt;}
._1_c00168{margin-left:-0.960000pt;}
._0_c00168{width:0.936960pt;}
._2_c00168{width:4.800000pt;}
.fs1_c00168{font-size:58.560000pt;}
.fs0_c00168{font-size:64.000000pt;}
.y0_c00168{bottom:0.000000pt;}
.y1_c00168{bottom:54.887600pt;}
.y22_c00168{bottom:102.599467pt;}
.y21_c00168{bottom:130.199467pt;}
.y20_c00168{bottom:157.799467pt;}
.y1f_c00168{bottom:185.399467pt;}
.y1e_c00168{bottom:212.919467pt;}
.y1d_c00168{bottom:240.519467pt;}
.y25_c00168{bottom:240.599467pt;}
.y1c_c00168{bottom:268.199467pt;}
.y1b_c00168{bottom:295.799467pt;}
.y24_c00168{bottom:323.399467pt;}
.y1a_c00168{bottom:350.999467pt;}
.y19_c00168{bottom:378.599467pt;}
.y18_c00168{bottom:406.199467pt;}
.y17_c00168{bottom:433.799467pt;}
.y16_c00168{bottom:461.399467pt;}
.y15_c00168{bottom:488.999467pt;}
.y14_c00168{bottom:516.599467pt;}
.y13_c00168{bottom:544.199467pt;}
.y12_c00168{bottom:571.799467pt;}
.y11_c00168{bottom:599.399467pt;}
.y10_c00168{bottom:626.999467pt;}
.yf_c00168{bottom:654.599467pt;}
.ye_c00168{bottom:709.719467pt;}
.yd_c00168{bottom:737.319467pt;}
.yc_c00168{bottom:764.919467pt;}
.yb_c00168{bottom:792.519467pt;}
.ya_c00168{bottom:820.119467pt;}
.y23_c00168{bottom:847.719467pt;}
.y9_c00168{bottom:875.319467pt;}
.y8_c00168{bottom:902.919467pt;}
.y7_c00168{bottom:930.519467pt;}
.y6_c00168{bottom:958.119467pt;}
.y5_c00168{bottom:985.719467pt;}
.y4_c00168{bottom:1013.319467pt;}
.y3_c00168{bottom:1043.480107pt;}
.y2_c00168{bottom:1061.399467pt;}
.h2_c00168{height:44.800000pt;}
.h3_c00168{height:48.294844pt;}
.h4_c00168{height:52.778690pt;}
.h5_c00168{height:68.288000pt;}
.h6_c00168{height:69.376000pt;}
.h0_c00168{height:1122.520000pt;}
.h1_c00168{height:1122.666667pt;}
.w2_c00168{width:0.000000pt;}
.w3_c00168{width:0.058667pt;}
.w0_c00168{width:793.701333pt;}
.w1_c00168{width:794.000000pt;}
.x1_c00168{left:-745.700800pt;}
.x2_c00168{left:-680.260800pt;}
.x4_c00168{left:-661.300800pt;}
.x3_c00168{left:-651.860800pt;}
.x5_c00168{left:-642.420800pt;}
.x0_c00168{left:0.000000pt;}
.x8_c00168{left:113.440000pt;}
.x9_c00168{left:141.840000pt;}
.x7_c00168{left:615.440000pt;}
.x6_c00168{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00169;src:url('chunks/assets/font_c5518fddf894f84eb57250d2.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00169;src:url('chunks/assets/font_ebaf248647fbd8ab86255a98.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00169;src:url('chunks/assets/font_cd39bf72bed5f3af804bc6ac.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00169{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls6_c00169{letter-spacing:-0.576000px;}
.ls5_c00169{letter-spacing:-0.144000px;}
.ls7_c00169{letter-spacing:-0.072000px;}
.ls4_c00169{letter-spacing:0.000000px;}
.ls0_c00169{letter-spacing:0.072000px;}
.ls1_c00169{letter-spacing:0.144000px;}
.ls3_c00169{letter-spacing:21.240000px;}
.ls2_c00169{letter-spacing:23.061600px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00169{word-spacing:-18.072000px;}
.ws2_c00169{word-spacing:-18.000000px;}
.ws3_c00169{word-spacing:-17.856000px;}
.ws0_c00169{word-spacing:-14.888880px;}
.ws9_c00169{word-spacing:-0.144000px;}
.ws1d_c00169{word-spacing:-0.072000px;}
.ws6_c00169{word-spacing:0.000000px;}
.ws1e_c00169{word-spacing:0.072000px;}
.wse_c00169{word-spacing:1.080000px;}
.ws5_c00169{word-spacing:3.096000px;}
.ws25_c00169{word-spacing:3.168000px;}
.ws29_c00169{word-spacing:4.320000px;}
.ws15_c00169{word-spacing:4.680000px;}
.ws24_c00169{word-spacing:5.040000px;}
.wsa_c00169{word-spacing:5.400000px;}
.ws1c_c00169{word-spacing:5.688000px;}
.ws26_c00169{word-spacing:6.120000px;}
.ws7_c00169{word-spacing:8.169120px;}
.ws8_c00169{word-spacing:8.208000px;}
.ws16_c00169{word-spacing:9.000000px;}
.ws22_c00169{word-spacing:9.288000px;}
.ws21_c00169{word-spacing:9.360000px;}
.ws23_c00169{word-spacing:9.720000px;}
.ws27_c00169{word-spacing:10.296000px;}
.ws28_c00169{word-spacing:10.440000px;}
.ws2a_c00169{word-spacing:10.728000px;}
.ws20_c00169{word-spacing:12.168000px;}
.ws1f_c00169{word-spacing:12.240000px;}
.ws2c_c00169{word-spacing:13.248000px;}
.ws2b_c00169{word-spacing:13.320000px;}
.wsf_c00169{word-spacing:14.040000px;}
.wsb_c00169{word-spacing:14.328000px;}
.wsc_c00169{word-spacing:14.400000px;}
.ws17_c00169{word-spacing:15.480000px;}
.ws19_c00169{word-spacing:15.696000px;}
.ws18_c00169{word-spacing:15.768000px;}
.wsd_c00169{word-spacing:15.840000px;}
.ws1b_c00169{word-spacing:17.352000px;}
.ws1a_c00169{word-spacing:17.928000px;}
.ws12_c00169{word-spacing:19.008000px;}
.ws14_c00169{word-spacing:19.080000px;}
.ws4_c00169{word-spacing:19.238400px;}
.ws13_c00169{word-spacing:19.368000px;}
.ws11_c00169{word-spacing:19.440000px;}
.ws10_c00169{word-spacing:19.584000px;}
._1_c00169{margin-left:-1.245600px;}
._0_c00169{width:1.054080px;}
._2_c00169{width:5.400000px;}
._3_c00169{width:12.456000px;}
.fc1_c00169{color:rgb(0,0,0);}
.fc0_c00169{color:rgb(35,31,32);}
.fs1_c00169{font-size:65.880000px;}
.fs0_c00169{font-size:72.000000px;}
.y0_c00169{bottom:0.000000px;}
.y1_c00169{bottom:61.748550px;}
.y20_c00169{bottom:177.524400px;}
.y1f_c00169{bottom:208.574400px;}
.y1e_c00169{bottom:239.624400px;}
.y1d_c00169{bottom:270.674400px;}
.y1c_c00169{bottom:301.724400px;}
.y1b_c00169{bottom:332.774400px;}
.y1a_c00169{bottom:394.874400px;}
.y19_c00169{bottom:425.924400px;}
.y18_c00169{bottom:456.974400px;}
.y17_c00169{bottom:488.024400px;}
.y16_c00169{bottom:519.074400px;}
.y15_c00169{bottom:550.124400px;}
.y14_c00169{bottom:581.174400px;}
.y13_c00169{bottom:643.274400px;}
.y12_c00169{bottom:674.324400px;}
.y11_c00169{bottom:705.374400px;}
.y10_c00169{bottom:736.424400px;}
.yf_c00169{bottom:767.474400px;}
.ye_c00169{bottom:798.434400px;}
.yd_c00169{bottom:829.394400px;}
.yc_c00169{bottom:860.534400px;}
.yb_c00169{bottom:891.584400px;}
.ya_c00169{bottom:953.684400px;}
.y9_c00169{bottom:984.734400px;}
.y8_c00169{bottom:1015.784400px;}
.y7_c00169{bottom:1046.834400px;}
.y6_c00169{bottom:1077.884400px;}
.y5_c00169{bottom:1108.934400px;}
.y4_c00169{bottom:1139.984400px;}
.y3_c00169{bottom:1173.915120px;}
.y2_c00169{bottom:1194.074400px;}
.h2_c00169{height:50.400000px;}
.h3_c00169{height:54.331699px;}
.h4_c00169{height:59.376026px;}
.h5_c00169{height:76.824000px;}
.h6_c00169{height:78.048000px;}
.h0_c00169{height:1262.835000px;}
.h1_c00169{height:1263.000000px;}
.w0_c00169{width:892.914000px;}
.w1_c00169{width:893.250000px;}
.x0_c00169{left:0.000000px;}
.x1_c00169{left:54.000000px;}
.x2_c00169{left:127.620000px;}
.x3_c00169{left:159.570000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls6_c00169{letter-spacing:-0.512000pt;}
.ls5_c00169{letter-spacing:-0.128000pt;}
.ls7_c00169{letter-spacing:-0.064000pt;}
.ls4_c00169{letter-spacing:0.000000pt;}
.ls0_c00169{letter-spacing:0.064000pt;}
.ls1_c00169{letter-spacing:0.128000pt;}
.ls3_c00169{letter-spacing:18.880000pt;}
.ls2_c00169{letter-spacing:20.499200pt;}
.ws1_c00169{word-spacing:-16.064000pt;}
.ws2_c00169{word-spacing:-16.000000pt;}
.ws3_c00169{word-spacing:-15.872000pt;}
.ws0_c00169{word-spacing:-13.234560pt;}
.ws9_c00169{word-spacing:-0.128000pt;}
.ws1d_c00169{word-spacing:-0.064000pt;}
.ws6_c00169{word-spacing:0.000000pt;}
.ws1e_c00169{word-spacing:0.064000pt;}
.wse_c00169{word-spacing:0.960000pt;}
.ws5_c00169{word-spacing:2.752000pt;}
.ws25_c00169{word-spacing:2.816000pt;}
.ws29_c00169{word-spacing:3.840000pt;}
.ws15_c00169{word-spacing:4.160000pt;}
.ws24_c00169{word-spacing:4.480000pt;}
.wsa_c00169{word-spacing:4.800000pt;}
.ws1c_c00169{word-spacing:5.056000pt;}
.ws26_c00169{word-spacing:5.440000pt;}
.ws7_c00169{word-spacing:7.261440pt;}
.ws8_c00169{word-spacing:7.296000pt;}
.ws16_c00169{word-spacing:8.000000pt;}
.ws22_c00169{word-spacing:8.256000pt;}
.ws21_c00169{word-spacing:8.320000pt;}
.ws23_c00169{word-spacing:8.640000pt;}
.ws27_c00169{word-spacing:9.152000pt;}
.ws28_c00169{word-spacing:9.280000pt;}
.ws2a_c00169{word-spacing:9.536000pt;}
.ws20_c00169{word-spacing:10.816000pt;}
.ws1f_c00169{word-spacing:10.880000pt;}
.ws2c_c00169{word-spacing:11.776000pt;}
.ws2b_c00169{word-spacing:11.840000pt;}
.wsf_c00169{word-spacing:12.480000pt;}
.wsb_c00169{word-spacing:12.736000pt;}
.wsc_c00169{word-spacing:12.800000pt;}
.ws17_c00169{word-spacing:13.760000pt;}
.ws19_c00169{word-spacing:13.952000pt;}
.ws18_c00169{word-spacing:14.016000pt;}
.wsd_c00169{word-spacing:14.080000pt;}
.ws1b_c00169{word-spacing:15.424000pt;}
.ws1a_c00169{word-spacing:15.936000pt;}
.ws12_c00169{word-spacing:16.896000pt;}
.ws14_c00169{word-spacing:16.960000pt;}
.ws4_c00169{word-spacing:17.100800pt;}
.ws13_c00169{word-spacing:17.216000pt;}
.ws11_c00169{word-spacing:17.280000pt;}
.ws10_c00169{word-spacing:17.408000pt;}
._1_c00169{margin-left:-1.107200pt;}
._0_c00169{width:0.936960pt;}
._2_c00169{width:4.800000pt;}
._3_c00169{width:11.072000pt;}
.fs1_c00169{font-size:58.560000pt;}
.fs0_c00169{font-size:64.000000pt;}
.y0_c00169{bottom:0.000000pt;}
.y1_c00169{bottom:54.887600pt;}
.y20_c00169{bottom:157.799467pt;}
.y1f_c00169{bottom:185.399467pt;}
.y1e_c00169{bottom:212.999467pt;}
.y1d_c00169{bottom:240.599467pt;}
.y1c_c00169{bottom:268.199467pt;}
.y1b_c00169{bottom:295.799467pt;}
.y1a_c00169{bottom:350.999467pt;}
.y19_c00169{bottom:378.599467pt;}
.y18_c00169{bottom:406.199467pt;}
.y17_c00169{bottom:433.799467pt;}
.y16_c00169{bottom:461.399467pt;}
.y15_c00169{bottom:488.999467pt;}
.y14_c00169{bottom:516.599467pt;}
.y13_c00169{bottom:571.799467pt;}
.y12_c00169{bottom:599.399467pt;}
.y11_c00169{bottom:626.999467pt;}
.y10_c00169{bottom:654.599467pt;}
.yf_c00169{bottom:682.199467pt;}
.ye_c00169{bottom:709.719467pt;}
.yd_c00169{bottom:737.239467pt;}
.yc_c00169{bottom:764.919467pt;}
.yb_c00169{bottom:792.519467pt;}
.ya_c00169{bottom:847.719467pt;}
.y9_c00169{bottom:875.319467pt;}
.y8_c00169{bottom:902.919467pt;}
.y7_c00169{bottom:930.519467pt;}
.y6_c00169{bottom:958.119467pt;}
.y5_c00169{bottom:985.719467pt;}
.y4_c00169{bottom:1013.319467pt;}
.y3_c00169{bottom:1043.480107pt;}
.y2_c00169{bottom:1061.399467pt;}
.h2_c00169{height:44.800000pt;}
.h3_c00169{height:48.294844pt;}
.h4_c00169{height:52.778690pt;}
.h5_c00169{height:68.288000pt;}
.h6_c00169{height:69.376000pt;}
.h0_c00169{height:1122.520000pt;}
.h1_c00169{height:1122.666667pt;}
.w0_c00169{width:793.701333pt;}
.w1_c00169{width:794.000000pt;}
.x0_c00169{left:0.000000pt;}
.x1_c00169{left:48.000000pt;}
.x2_c00169{left:113.440000pt;}
.x3_c00169{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00170;src:url('chunks/assets/font_7b2b2429776cda30ad731e50.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00170;src:url('chunks/assets/font_93b34682e8ee40256ac32c23.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00170;src:url('chunks/assets/font_734c2ac5a3d3958ec0a75470.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00170;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00170{font-family:ff5_c00170;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00170;src:url('chunks/assets/font_e52681fc7851d9929ffc48f5.woff2')format("woff");}.ff6_c00170{font-family:ff6_c00170;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00170;src:url('chunks/assets/font_2294f0ae9735ccc75fd43c68.woff2')format("woff");}.ff7_c00170{font-family:ff7_c00170;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00170;src:url('chunks/assets/font_b1c5e977cbf44a869e82fdb4.woff2')format("woff");}.ff8_c00170{font-family:ff8_c00170;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c00170{letter-spacing:-0.576000px;}
.lsb_c00170{letter-spacing:-0.360000px;}
.ls8_c00170{letter-spacing:-0.144000px;}
.lsa_c00170{letter-spacing:-0.072000px;}
.ls7_c00170{letter-spacing:0.000000px;}
.ls0_c00170{letter-spacing:0.072000px;}
.ls1_c00170{letter-spacing:0.144000px;}
.ls3_c00170{letter-spacing:21.240000px;}
.ls2_c00170{letter-spacing:23.061600px;}
.ls4_c00170{letter-spacing:30.024000px;}
.ls6_c00170{letter-spacing:38.304000px;}
.ls5_c00170{letter-spacing:54.144000px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00170{word-spacing:-18.144000px;}
.ws1_c00170{word-spacing:-18.072000px;}
.ws2_c00170{word-spacing:-18.000000px;}
.ws3_c00170{word-spacing:-17.856000px;}
.ws0_c00170{word-spacing:-14.888880px;}
.wsd_c00170{word-spacing:-0.144000px;}
.ws2f_c00170{word-spacing:-0.131760px;}
.ws20_c00170{word-spacing:-0.072000px;}
.wsa_c00170{word-spacing:0.000000px;}
.ws21_c00170{word-spacing:0.072000px;}
.ws32_c00170{word-spacing:0.288000px;}
.ws33_c00170{word-spacing:0.360000px;}
.ws40_c00170{word-spacing:0.576000px;}
.ws3c_c00170{word-spacing:1.008000px;}
.ws11_c00170{word-spacing:1.080000px;}
.ws3f_c00170{word-spacing:1.440000px;}
.ws36_c00170{word-spacing:1.728000px;}
.ws35_c00170{word-spacing:1.800000px;}
.ws5_c00170{word-spacing:3.096000px;}
.ws28_c00170{word-spacing:3.168000px;}
.ws47_c00170{word-spacing:3.240000px;}
.ws44_c00170{word-spacing:3.600000px;}
.ws2b_c00170{word-spacing:4.320000px;}
.ws18_c00170{word-spacing:4.680000px;}
.ws27_c00170{word-spacing:5.040000px;}
.wse_c00170{word-spacing:5.400000px;}
.ws1f_c00170{word-spacing:5.688000px;}
.ws29_c00170{word-spacing:6.120000px;}
.ws3d_c00170{word-spacing:7.056000px;}
.ws3e_c00170{word-spacing:7.200000px;}
.ws3b_c00170{word-spacing:7.776000px;}
.ws3a_c00170{word-spacing:7.920000px;}
.wsb_c00170{word-spacing:8.169120px;}
.wsc_c00170{word-spacing:8.208000px;}
.ws39_c00170{word-spacing:8.928000px;}
.ws19_c00170{word-spacing:9.000000px;}
.ws25_c00170{word-spacing:9.288000px;}
.ws24_c00170{word-spacing:9.360000px;}
.ws26_c00170{word-spacing:9.720000px;}
.ws2a_c00170{word-spacing:10.296000px;}
.ws38_c00170{word-spacing:10.368000px;}
.ws8_c00170{word-spacing:10.440000px;}
.ws2c_c00170{word-spacing:10.728000px;}
.ws30_c00170{word-spacing:11.448000px;}
.ws34_c00170{word-spacing:11.520000px;}
.ws31_c00170{word-spacing:11.880000px;}
.ws23_c00170{word-spacing:12.168000px;}
.ws22_c00170{word-spacing:12.240000px;}
.ws37_c00170{word-spacing:12.600000px;}
.ws2e_c00170{word-spacing:13.248000px;}
.ws2d_c00170{word-spacing:13.320000px;}
.ws12_c00170{word-spacing:14.040000px;}
.ws41_c00170{word-spacing:14.184000px;}
.wsf_c00170{word-spacing:14.328000px;}
.ws9_c00170{word-spacing:14.400000px;}
.ws1a_c00170{word-spacing:15.480000px;}
.ws1c_c00170{word-spacing:15.696000px;}
.ws1b_c00170{word-spacing:15.768000px;}
.ws10_c00170{word-spacing:15.840000px;}
.ws1e_c00170{word-spacing:17.352000px;}
.ws1d_c00170{word-spacing:17.928000px;}
.ws48_c00170{word-spacing:18.432000px;}
.ws43_c00170{word-spacing:18.648000px;}
.ws42_c00170{word-spacing:18.720000px;}
.ws15_c00170{word-spacing:19.008000px;}
.ws17_c00170{word-spacing:19.080000px;}
.ws4_c00170{word-spacing:19.238400px;}
.ws6_c00170{word-spacing:19.245600px;}
.ws16_c00170{word-spacing:19.368000px;}
.ws14_c00170{word-spacing:19.440000px;}
.ws13_c00170{word-spacing:19.584000px;}
.ws46_c00170{word-spacing:23.760000px;}
.ws45_c00170{word-spacing:33.048000px;}
._1_c00170{margin-left:-1.245600px;}
._0_c00170{width:1.054080px;}
._2_c00170{width:5.400000px;}
._3_c00170{width:12.456000px;}
.fc2_c00170{color:transparent;}
.fc1_c00170{color:rgb(0,0,0);}
.fc0_c00170{color:rgb(35,31,32);}
.fs1_c00170{font-size:65.880000px;}
.fs0_c00170{font-size:72.000000px;}
.y0_c00170{bottom:0.000000px;}
.y1_c00170{bottom:61.748550px;}
.y26_c00170{bottom:115.424400px;}
.y25_c00170{bottom:146.474400px;}
.y20_c00170{bottom:177.524400px;}
.y1f_c00170{bottom:208.574400px;}
.y1e_c00170{bottom:239.624400px;}
.y1d_c00170{bottom:270.674400px;}
.y1c_c00170{bottom:301.724400px;}
.y1b_c00170{bottom:332.774400px;}
.y24_c00170{bottom:363.824400px;}
.y1a_c00170{bottom:394.874400px;}
.y19_c00170{bottom:425.924400px;}
.y18_c00170{bottom:456.974400px;}
.y17_c00170{bottom:488.024400px;}
.y16_c00170{bottom:519.074400px;}
.y15_c00170{bottom:550.124400px;}
.y14_c00170{bottom:581.174400px;}
.y23_c00170{bottom:612.224400px;}
.y13_c00170{bottom:643.274400px;}
.y12_c00170{bottom:674.324400px;}
.y11_c00170{bottom:705.374400px;}
.y10_c00170{bottom:736.424400px;}
.yf_c00170{bottom:767.474400px;}
.ye_c00170{bottom:798.434400px;}
.yd_c00170{bottom:829.394400px;}
.y22_c00170{bottom:829.484400px;}
.yc_c00170{bottom:860.534400px;}
.yb_c00170{bottom:891.584400px;}
.y21_c00170{bottom:922.634400px;}
.ya_c00170{bottom:953.684400px;}
.y9_c00170{bottom:984.734400px;}
.y8_c00170{bottom:1015.784400px;}
.y7_c00170{bottom:1046.834400px;}
.y6_c00170{bottom:1077.884400px;}
.y5_c00170{bottom:1108.934400px;}
.y4_c00170{bottom:1139.984400px;}
.y3_c00170{bottom:1173.915120px;}
.y2_c00170{bottom:1194.074400px;}
.h2_c00170{height:50.400000px;}
.h3_c00170{height:54.331699px;}
.h4_c00170{height:59.376026px;}
.h5_c00170{height:76.824000px;}
.h6_c00170{height:78.048000px;}
.h0_c00170{height:1262.835000px;}
.h1_c00170{height:1263.000000px;}
.w2_c00170{width:0.000000px;}
.w3_c00170{width:0.066000px;}
.w0_c00170{width:892.914000px;}
.w1_c00170{width:893.250000px;}
.x1_c00170{left:-838.913400px;}
.x2_c00170{left:-765.293400px;}
.x3_c00170{left:-733.343400px;}
.x0_c00170{left:0.000000px;}
.x7_c00170{left:127.620000px;}
.x8_c00170{left:148.950000px;}
.x6_c00170{left:159.570000px;}
.x9_c00170{left:170.190000px;}
.x5_c00170{left:692.370000px;}
.x4_c00170{left:804.366150px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls9_c00170{letter-spacing:-0.512000pt;}
.lsb_c00170{letter-spacing:-0.320000pt;}
.ls8_c00170{letter-spacing:-0.128000pt;}
.lsa_c00170{letter-spacing:-0.064000pt;}
.ls7_c00170{letter-spacing:0.000000pt;}
.ls0_c00170{letter-spacing:0.064000pt;}
.ls1_c00170{letter-spacing:0.128000pt;}
.ls3_c00170{letter-spacing:18.880000pt;}
.ls2_c00170{letter-spacing:20.499200pt;}
.ls4_c00170{letter-spacing:26.688000pt;}
.ls6_c00170{letter-spacing:34.048000pt;}
.ls5_c00170{letter-spacing:48.128000pt;}
.ws7_c00170{word-spacing:-16.128000pt;}
.ws1_c00170{word-spacing:-16.064000pt;}
.ws2_c00170{word-spacing:-16.000000pt;}
.ws3_c00170{word-spacing:-15.872000pt;}
.ws0_c00170{word-spacing:-13.234560pt;}
.wsd_c00170{word-spacing:-0.128000pt;}
.ws2f_c00170{word-spacing:-0.117120pt;}
.ws20_c00170{word-spacing:-0.064000pt;}
.wsa_c00170{word-spacing:0.000000pt;}
.ws21_c00170{word-spacing:0.064000pt;}
.ws32_c00170{word-spacing:0.256000pt;}
.ws33_c00170{word-spacing:0.320000pt;}
.ws40_c00170{word-spacing:0.512000pt;}
.ws3c_c00170{word-spacing:0.896000pt;}
.ws11_c00170{word-spacing:0.960000pt;}
.ws3f_c00170{word-spacing:1.280000pt;}
.ws36_c00170{word-spacing:1.536000pt;}
.ws35_c00170{word-spacing:1.600000pt;}
.ws5_c00170{word-spacing:2.752000pt;}
.ws28_c00170{word-spacing:2.816000pt;}
.ws47_c00170{word-spacing:2.880000pt;}
.ws44_c00170{word-spacing:3.200000pt;}
.ws2b_c00170{word-spacing:3.840000pt;}
.ws18_c00170{word-spacing:4.160000pt;}
.ws27_c00170{word-spacing:4.480000pt;}
.wse_c00170{word-spacing:4.800000pt;}
.ws1f_c00170{word-spacing:5.056000pt;}
.ws29_c00170{word-spacing:5.440000pt;}
.ws3d_c00170{word-spacing:6.272000pt;}
.ws3e_c00170{word-spacing:6.400000pt;}
.ws3b_c00170{word-spacing:6.912000pt;}
.ws3a_c00170{word-spacing:7.040000pt;}
.wsb_c00170{word-spacing:7.261440pt;}
.wsc_c00170{word-spacing:7.296000pt;}
.ws39_c00170{word-spacing:7.936000pt;}
.ws19_c00170{word-spacing:8.000000pt;}
.ws25_c00170{word-spacing:8.256000pt;}
.ws24_c00170{word-spacing:8.320000pt;}
.ws26_c00170{word-spacing:8.640000pt;}
.ws2a_c00170{word-spacing:9.152000pt;}
.ws38_c00170{word-spacing:9.216000pt;}
.ws8_c00170{word-spacing:9.280000pt;}
.ws2c_c00170{word-spacing:9.536000pt;}
.ws30_c00170{word-spacing:10.176000pt;}
.ws34_c00170{word-spacing:10.240000pt;}
.ws31_c00170{word-spacing:10.560000pt;}
.ws23_c00170{word-spacing:10.816000pt;}
.ws22_c00170{word-spacing:10.880000pt;}
.ws37_c00170{word-spacing:11.200000pt;}
.ws2e_c00170{word-spacing:11.776000pt;}
.ws2d_c00170{word-spacing:11.840000pt;}
.ws12_c00170{word-spacing:12.480000pt;}
.ws41_c00170{word-spacing:12.608000pt;}
.wsf_c00170{word-spacing:12.736000pt;}
.ws9_c00170{word-spacing:12.800000pt;}
.ws1a_c00170{word-spacing:13.760000pt;}
.ws1c_c00170{word-spacing:13.952000pt;}
.ws1b_c00170{word-spacing:14.016000pt;}
.ws10_c00170{word-spacing:14.080000pt;}
.ws1e_c00170{word-spacing:15.424000pt;}
.ws1d_c00170{word-spacing:15.936000pt;}
.ws48_c00170{word-spacing:16.384000pt;}
.ws43_c00170{word-spacing:16.576000pt;}
.ws42_c00170{word-spacing:16.640000pt;}
.ws15_c00170{word-spacing:16.896000pt;}
.ws17_c00170{word-spacing:16.960000pt;}
.ws4_c00170{word-spacing:17.100800pt;}
.ws6_c00170{word-spacing:17.107200pt;}
.ws16_c00170{word-spacing:17.216000pt;}
.ws14_c00170{word-spacing:17.280000pt;}
.ws13_c00170{word-spacing:17.408000pt;}
.ws46_c00170{word-spacing:21.120000pt;}
.ws45_c00170{word-spacing:29.376000pt;}
._1_c00170{margin-left:-1.107200pt;}
._0_c00170{width:0.936960pt;}
._2_c00170{width:4.800000pt;}
._3_c00170{width:11.072000pt;}
.fs1_c00170{font-size:58.560000pt;}
.fs0_c00170{font-size:64.000000pt;}
.y0_c00170{bottom:0.000000pt;}
.y1_c00170{bottom:54.887600pt;}
.y26_c00170{bottom:102.599467pt;}
.y25_c00170{bottom:130.199467pt;}
.y20_c00170{bottom:157.799467pt;}
.y1f_c00170{bottom:185.399467pt;}
.y1e_c00170{bottom:212.999467pt;}
.y1d_c00170{bottom:240.599467pt;}
.y1c_c00170{bottom:268.199467pt;}
.y1b_c00170{bottom:295.799467pt;}
.y24_c00170{bottom:323.399467pt;}
.y1a_c00170{bottom:350.999467pt;}
.y19_c00170{bottom:378.599467pt;}
.y18_c00170{bottom:406.199467pt;}
.y17_c00170{bottom:433.799467pt;}
.y16_c00170{bottom:461.399467pt;}
.y15_c00170{bottom:488.999467pt;}
.y14_c00170{bottom:516.599467pt;}
.y23_c00170{bottom:544.199467pt;}
.y13_c00170{bottom:571.799467pt;}
.y12_c00170{bottom:599.399467pt;}
.y11_c00170{bottom:626.999467pt;}
.y10_c00170{bottom:654.599467pt;}
.yf_c00170{bottom:682.199467pt;}
.ye_c00170{bottom:709.719467pt;}
.yd_c00170{bottom:737.239467pt;}
.y22_c00170{bottom:737.319467pt;}
.yc_c00170{bottom:764.919467pt;}
.yb_c00170{bottom:792.519467pt;}
.y21_c00170{bottom:820.119467pt;}
.ya_c00170{bottom:847.719467pt;}
.y9_c00170{bottom:875.319467pt;}
.y8_c00170{bottom:902.919467pt;}
.y7_c00170{bottom:930.519467pt;}
.y6_c00170{bottom:958.119467pt;}
.y5_c00170{bottom:985.719467pt;}
.y4_c00170{bottom:1013.319467pt;}
.y3_c00170{bottom:1043.480107pt;}
.y2_c00170{bottom:1061.399467pt;}
.h2_c00170{height:44.800000pt;}
.h3_c00170{height:48.294844pt;}
.h4_c00170{height:52.778690pt;}
.h5_c00170{height:68.288000pt;}
.h6_c00170{height:69.376000pt;}
.h0_c00170{height:1122.520000pt;}
.h1_c00170{height:1122.666667pt;}
.w2_c00170{width:0.000000pt;}
.w3_c00170{width:0.058667pt;}
.w0_c00170{width:793.701333pt;}
.w1_c00170{width:794.000000pt;}
.x1_c00170{left:-745.700800pt;}
.x2_c00170{left:-680.260800pt;}
.x3_c00170{left:-651.860800pt;}
.x0_c00170{left:0.000000pt;}
.x7_c00170{left:113.440000pt;}
.x8_c00170{left:132.400000pt;}
.x6_c00170{left:141.840000pt;}
.x9_c00170{left:151.280000pt;}
.x5_c00170{left:615.440000pt;}
.x4_c00170{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00171;src:url('chunks/assets/font_73f876297c29fc742dd1a9ac.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_9315a818b1183e08fe038ad2.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00171;src:url('chunks/assets/font_8d094111b6c971b14b4e9a45.woff2')format("woff");}.ff4_c00171{font-family:ff4_c00171;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00171{letter-spacing:-0.360000px;}
.ls5_c00171{letter-spacing:0.000000px;}
.ls1_c00171{letter-spacing:0.072000px;}
.ls6_c00171{letter-spacing:0.144000px;}
.ls2_c00171{letter-spacing:29.160000px;}
.ls3_c00171{letter-spacing:30.240000px;}
.ls4_c00171{letter-spacing:32.904000px;}
.ls0_c00171{letter-spacing:41.760000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00171{word-spacing:-18.144000px;}
.ws2_c00171{word-spacing:-18.000000px;}
.ws0_c00171{word-spacing:-14.888880px;}
.ws18_c00171{word-spacing:-0.072000px;}
.ws6_c00171{word-spacing:0.000000px;}
.ws17_c00171{word-spacing:0.288000px;}
.ws13_c00171{word-spacing:0.360000px;}
.ws1c_c00171{word-spacing:0.720000px;}
.ws19_c00171{word-spacing:3.960000px;}
.ws2a_c00171{word-spacing:4.248000px;}
.ws1a_c00171{word-spacing:4.320000px;}
.ws22_c00171{word-spacing:5.040000px;}
.ws23_c00171{word-spacing:5.400000px;}
.ws1b_c00171{word-spacing:5.760000px;}
.ws11_c00171{word-spacing:6.408000px;}
.ws12_c00171{word-spacing:6.480000px;}
.wsc_c00171{word-spacing:7.200000px;}
.ws21_c00171{word-spacing:7.848000px;}
.ws7_c00171{word-spacing:8.169120px;}
.ws20_c00171{word-spacing:8.208000px;}
.ws4_c00171{word-spacing:8.222400px;}
.ws5_c00171{word-spacing:8.280000px;}
.wsf_c00171{word-spacing:10.728000px;}
.ws10_c00171{word-spacing:10.800000px;}
.wsd_c00171{word-spacing:11.088000px;}
.wse_c00171{word-spacing:11.160000px;}
.ws1f_c00171{word-spacing:11.880000px;}
.ws1e_c00171{word-spacing:12.096000px;}
.ws1d_c00171{word-spacing:12.168000px;}
.ws27_c00171{word-spacing:12.528000px;}
.ws24_c00171{word-spacing:12.600000px;}
.ws25_c00171{word-spacing:14.616000px;}
.ws26_c00171{word-spacing:14.688000px;}
.ws14_c00171{word-spacing:20.088000px;}
.ws15_c00171{word-spacing:20.448000px;}
.ws16_c00171{word-spacing:20.520000px;}
.ws8_c00171{word-spacing:21.240000px;}
.wsa_c00171{word-spacing:23.688000px;}
.ws9_c00171{word-spacing:23.760000px;}
.ws3_c00171{word-spacing:26.208000px;}
.wsb_c00171{word-spacing:26.640000px;}
.ws29_c00171{word-spacing:30.960000px;}
.ws28_c00171{word-spacing:31.320000px;}
._1_c00171{margin-left:-1.296000px;}
._0_c00171{width:1.054080px;}
._3_c00171{width:12.384000px;}
._2_c00171{width:17.352000px;}
.fc1_c00171{color:rgb(0,0,0);}
.fc0_c00171{color:rgb(35,31,32);}
.fs1_c00171{font-size:65.880000px;}
.fs0_c00171{font-size:72.000000px;}
.y0_c00171{bottom:0.000000px;}
.y1_c00171{bottom:61.748550px;}
.y22_c00171{bottom:115.424400px;}
.y21_c00171{bottom:146.474400px;}
.y20_c00171{bottom:177.524400px;}
.y1f_c00171{bottom:208.574400px;}
.y1e_c00171{bottom:239.624400px;}
.y1d_c00171{bottom:301.724400px;}
.y1c_c00171{bottom:332.774400px;}
.y1b_c00171{bottom:363.824400px;}
.y1a_c00171{bottom:394.874400px;}
.y19_c00171{bottom:425.924400px;}
.y18_c00171{bottom:456.974400px;}
.y17_c00171{bottom:488.024400px;}
.y16_c00171{bottom:519.074400px;}
.y15_c00171{bottom:550.124400px;}
.y14_c00171{bottom:581.174400px;}
.y13_c00171{bottom:612.224400px;}
.y12_c00171{bottom:643.274400px;}
.y11_c00171{bottom:674.324400px;}
.y10_c00171{bottom:736.424400px;}
.yf_c00171{bottom:767.474400px;}
.ye_c00171{bottom:798.434400px;}
.yd_c00171{bottom:829.484400px;}
.yc_c00171{bottom:860.534400px;}
.yb_c00171{bottom:891.584400px;}
.ya_c00171{bottom:922.634400px;}
.y9_c00171{bottom:984.734400px;}
.y8_c00171{bottom:1015.784400px;}
.y7_c00171{bottom:1046.834400px;}
.y6_c00171{bottom:1077.884400px;}
.y5_c00171{bottom:1108.844400px;}
.y4_c00171{bottom:1139.984400px;}
.y3_c00171{bottom:1173.915120px;}
.y2_c00171{bottom:1194.074400px;}
.h2_c00171{height:50.400000px;}
.h3_c00171{height:54.331699px;}
.h4_c00171{height:59.376026px;}
.h6_c00171{height:76.824000px;}
.h5_c00171{height:78.048000px;}
.h0_c00171{height:1262.835000px;}
.h1_c00171{height:1263.000000px;}
.w0_c00171{width:892.914000px;}
.w1_c00171{width:893.250000px;}
.x0_c00171{left:0.000000px;}
.x1_c00171{left:54.000000px;}
.x2_c00171{left:127.620000px;}
.x3_c00171{left:159.570000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls7_c00171{letter-spacing:-0.320000pt;}
.ls5_c00171{letter-spacing:0.000000pt;}
.ls1_c00171{letter-spacing:0.064000pt;}
.ls6_c00171{letter-spacing:0.128000pt;}
.ls2_c00171{letter-spacing:25.920000pt;}
.ls3_c00171{letter-spacing:26.880000pt;}
.ls4_c00171{letter-spacing:29.248000pt;}
.ls0_c00171{letter-spacing:37.120000pt;}
.ws1_c00171{word-spacing:-16.128000pt;}
.ws2_c00171{word-spacing:-16.000000pt;}
.ws0_c00171{word-spacing:-13.234560pt;}
.ws18_c00171{word-spacing:-0.064000pt;}
.ws6_c00171{word-spacing:0.000000pt;}
.ws17_c00171{word-spacing:0.256000pt;}
.ws13_c00171{word-spacing:0.320000pt;}
.ws1c_c00171{word-spacing:0.640000pt;}
.ws19_c00171{word-spacing:3.520000pt;}
.ws2a_c00171{word-spacing:3.776000pt;}
.ws1a_c00171{word-spacing:3.840000pt;}
.ws22_c00171{word-spacing:4.480000pt;}
.ws23_c00171{word-spacing:4.800000pt;}
.ws1b_c00171{word-spacing:5.120000pt;}
.ws11_c00171{word-spacing:5.696000pt;}
.ws12_c00171{word-spacing:5.760000pt;}
.wsc_c00171{word-spacing:6.400000pt;}
.ws21_c00171{word-spacing:6.976000pt;}
.ws7_c00171{word-spacing:7.261440pt;}
.ws20_c00171{word-spacing:7.296000pt;}
.ws4_c00171{word-spacing:7.308800pt;}
.ws5_c00171{word-spacing:7.360000pt;}
.wsf_c00171{word-spacing:9.536000pt;}
.ws10_c00171{word-spacing:9.600000pt;}
.wsd_c00171{word-spacing:9.856000pt;}
.wse_c00171{word-spacing:9.920000pt;}
.ws1f_c00171{word-spacing:10.560000pt;}
.ws1e_c00171{word-spacing:10.752000pt;}
.ws1d_c00171{word-spacing:10.816000pt;}
.ws27_c00171{word-spacing:11.136000pt;}
.ws24_c00171{word-spacing:11.200000pt;}
.ws25_c00171{word-spacing:12.992000pt;}
.ws26_c00171{word-spacing:13.056000pt;}
.ws14_c00171{word-spacing:17.856000pt;}
.ws15_c00171{word-spacing:18.176000pt;}
.ws16_c00171{word-spacing:18.240000pt;}
.ws8_c00171{word-spacing:18.880000pt;}
.wsa_c00171{word-spacing:21.056000pt;}
.ws9_c00171{word-spacing:21.120000pt;}
.ws3_c00171{word-spacing:23.296000pt;}
.wsb_c00171{word-spacing:23.680000pt;}
.ws29_c00171{word-spacing:27.520000pt;}
.ws28_c00171{word-spacing:27.840000pt;}
._1_c00171{margin-left:-1.152000pt;}
._0_c00171{width:0.936960pt;}
._3_c00171{width:11.008000pt;}
._2_c00171{width:15.424000pt;}
.fs1_c00171{font-size:58.560000pt;}
.fs0_c00171{font-size:64.000000pt;}
.y0_c00171{bottom:0.000000pt;}
.y1_c00171{bottom:54.887600pt;}
.y22_c00171{bottom:102.599467pt;}
.y21_c00171{bottom:130.199467pt;}
.y20_c00171{bottom:157.799467pt;}
.y1f_c00171{bottom:185.399467pt;}
.y1e_c00171{bottom:212.999467pt;}
.y1d_c00171{bottom:268.199467pt;}
.y1c_c00171{bottom:295.799467pt;}
.y1b_c00171{bottom:323.399467pt;}
.y1a_c00171{bottom:350.999467pt;}
.y19_c00171{bottom:378.599467pt;}
.y18_c00171{bottom:406.199467pt;}
.y17_c00171{bottom:433.799467pt;}
.y16_c00171{bottom:461.399467pt;}
.y15_c00171{bottom:488.999467pt;}
.y14_c00171{bottom:516.599467pt;}
.y13_c00171{bottom:544.199467pt;}
.y12_c00171{bottom:571.799467pt;}
.y11_c00171{bottom:599.399467pt;}
.y10_c00171{bottom:654.599467pt;}
.yf_c00171{bottom:682.199467pt;}
.ye_c00171{bottom:709.719467pt;}
.yd_c00171{bottom:737.319467pt;}
.yc_c00171{bottom:764.919467pt;}
.yb_c00171{bottom:792.519467pt;}
.ya_c00171{bottom:820.119467pt;}
.y9_c00171{bottom:875.319467pt;}
.y8_c00171{bottom:902.919467pt;}
.y7_c00171{bottom:930.519467pt;}
.y6_c00171{bottom:958.119467pt;}
.y5_c00171{bottom:985.639467pt;}
.y4_c00171{bottom:1013.319467pt;}
.y3_c00171{bottom:1043.480107pt;}
.y2_c00171{bottom:1061.399467pt;}
.h2_c00171{height:44.800000pt;}
.h3_c00171{height:48.294844pt;}
.h4_c00171{height:52.778690pt;}
.h6_c00171{height:68.288000pt;}
.h5_c00171{height:69.376000pt;}
.h0_c00171{height:1122.520000pt;}
.h1_c00171{height:1122.666667pt;}
.w0_c00171{width:793.701333pt;}
.w1_c00171{width:794.000000pt;}
.x0_c00171{left:0.000000pt;}
.x1_c00171{left:48.000000pt;}
.x2_c00171{left:113.440000pt;}
.x3_c00171{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00172;src:url('chunks/assets/font_d78c845f2d42afca11335c5f.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00172;src:url('chunks/assets/font_1e0f356c0046ffa8fa7d18e0.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00172;src:url('chunks/assets/font_d1ee074d886417cee2cf27ca.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00172;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00172{font-family:ff5_c00172;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00172;src:url('chunks/assets/font_e19ee6a010cf0eb238973779.woff2')format("woff");}.ff6_c00172{font-family:ff6_c00172;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00172;src:url('chunks/assets/font_b377f5e1297c275c6f94d47b.woff2')format("woff");}.ff7_c00172{font-family:ff7_c00172;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00172;src:url('chunks/assets/font_d1ee074d886417cee2cf27ca.woff2')format("woff");}.ff8_c00172{font-family:ff8_c00172;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c00172{letter-spacing:-0.360000px;}
.ls7_c00172{letter-spacing:0.000000px;}
.ls1_c00172{letter-spacing:0.072000px;}
.ls8_c00172{letter-spacing:0.144000px;}
.ls5_c00172{letter-spacing:21.700800px;}
.ls6_c00172{letter-spacing:24.192000px;}
.ls2_c00172{letter-spacing:29.160000px;}
.ls3_c00172{letter-spacing:30.240000px;}
.ls4_c00172{letter-spacing:32.904000px;}
.ls0_c00172{letter-spacing:41.760000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00172{word-spacing:-18.144000px;}
.ws7_c00172{word-spacing:-18.072000px;}
.ws2_c00172{word-spacing:-18.000000px;}
.ws0_c00172{word-spacing:-14.888880px;}
.ws3e_c00172{word-spacing:-0.504000px;}
.ws38_c00172{word-spacing:-0.432000px;}
.ws2f_c00172{word-spacing:-0.131760px;}
.ws1d_c00172{word-spacing:-0.072000px;}
.wsb_c00172{word-spacing:0.000000px;}
.ws1c_c00172{word-spacing:0.288000px;}
.ws18_c00172{word-spacing:0.360000px;}
.ws21_c00172{word-spacing:0.720000px;}
.ws8_c00172{word-spacing:1.008000px;}
.ws36_c00172{word-spacing:1.368000px;}
.ws37_c00172{word-spacing:1.440000px;}
.ws32_c00172{word-spacing:3.384000px;}
.ws34_c00172{word-spacing:3.528000px;}
.ws33_c00172{word-spacing:3.600000px;}
.ws1e_c00172{word-spacing:3.960000px;}
.ws2e_c00172{word-spacing:4.248000px;}
.ws1f_c00172{word-spacing:4.320000px;}
.ws42_c00172{word-spacing:4.968000px;}
.ws9_c00172{word-spacing:5.040000px;}
.ws3a_c00172{word-spacing:5.328000px;}
.ws27_c00172{word-spacing:5.400000px;}
.ws20_c00172{word-spacing:5.760000px;}
.ws35_c00172{word-spacing:6.048000px;}
.ws16_c00172{word-spacing:6.408000px;}
.ws17_c00172{word-spacing:6.480000px;}
.ws41_c00172{word-spacing:7.128000px;}
.ws11_c00172{word-spacing:7.200000px;}
.ws40_c00172{word-spacing:7.560000px;}
.ws30_c00172{word-spacing:7.776000px;}
.ws6_c00172{word-spacing:7.790400px;}
.ws26_c00172{word-spacing:7.848000px;}
.wsc_c00172{word-spacing:8.169120px;}
.ws25_c00172{word-spacing:8.208000px;}
.ws4_c00172{word-spacing:8.222400px;}
.ws5_c00172{word-spacing:8.280000px;}
.ws3f_c00172{word-spacing:8.640000px;}
.ws4b_c00172{word-spacing:10.080000px;}
.ws48_c00172{word-spacing:10.440000px;}
.ws14_c00172{word-spacing:10.728000px;}
.ws15_c00172{word-spacing:10.800000px;}
.ws12_c00172{word-spacing:11.088000px;}
.ws13_c00172{word-spacing:11.160000px;}
.ws24_c00172{word-spacing:11.880000px;}
.ws23_c00172{word-spacing:12.096000px;}
.ws22_c00172{word-spacing:12.168000px;}
.ws2b_c00172{word-spacing:12.528000px;}
.ws28_c00172{word-spacing:12.600000px;}
.ws29_c00172{word-spacing:14.616000px;}
.ws2a_c00172{word-spacing:14.688000px;}
.ws44_c00172{word-spacing:17.208000px;}
.ws43_c00172{word-spacing:17.280000px;}
.ws47_c00172{word-spacing:18.288000px;}
.ws46_c00172{word-spacing:18.360000px;}
.ws49_c00172{word-spacing:18.576000px;}
.ws4a_c00172{word-spacing:19.440000px;}
.wsa_c00172{word-spacing:19.512000px;}
.ws19_c00172{word-spacing:20.088000px;}
.ws1a_c00172{word-spacing:20.448000px;}
.ws1b_c00172{word-spacing:20.520000px;}
.wsd_c00172{word-spacing:21.240000px;}
.ws3c_c00172{word-spacing:21.888000px;}
.ws45_c00172{word-spacing:21.960000px;}
.ws3b_c00172{word-spacing:22.320000px;}
.ws39_c00172{word-spacing:23.400000px;}
.wsf_c00172{word-spacing:23.688000px;}
.wse_c00172{word-spacing:23.760000px;}
.ws3_c00172{word-spacing:26.208000px;}
.ws10_c00172{word-spacing:26.640000px;}
.ws2d_c00172{word-spacing:30.960000px;}
.ws2c_c00172{word-spacing:31.320000px;}
.ws3d_c00172{word-spacing:34.560000px;}
.ws31_c00172{word-spacing:39.528000px;}
._1_c00172{margin-left:-1.296000px;}
._0_c00172{width:1.054080px;}
._4_c00172{width:5.976000px;}
._6_c00172{width:8.136000px;}
._3_c00172{width:12.384000px;}
._2_c00172{width:17.352000px;}
._5_c00172{width:23.616000px;}
.fc2_c00172{color:transparent;}
.fc1_c00172{color:rgb(0,0,0);}
.fc0_c00172{color:rgb(35,31,32);}
.fs1_c00172{font-size:65.880000px;}
.fs0_c00172{font-size:72.000000px;}
.y0_c00172{bottom:0.000000px;}
.y1_c00172{bottom:61.748550px;}
.y22_c00172{bottom:115.424400px;}
.y21_c00172{bottom:146.474400px;}
.y20_c00172{bottom:177.524400px;}
.y1f_c00172{bottom:208.574400px;}
.y1e_c00172{bottom:239.624400px;}
.y26_c00172{bottom:270.674400px;}
.y1d_c00172{bottom:301.724400px;}
.y1c_c00172{bottom:332.774400px;}
.y1b_c00172{bottom:363.824400px;}
.y1a_c00172{bottom:394.874400px;}
.y19_c00172{bottom:425.924400px;}
.y18_c00172{bottom:456.974400px;}
.y17_c00172{bottom:488.024400px;}
.y16_c00172{bottom:519.074400px;}
.y15_c00172{bottom:550.124400px;}
.y14_c00172{bottom:581.174400px;}
.y13_c00172{bottom:612.224400px;}
.y12_c00172{bottom:643.274400px;}
.y11_c00172{bottom:674.324400px;}
.y25_c00172{bottom:705.374400px;}
.y10_c00172{bottom:736.424400px;}
.yf_c00172{bottom:767.474400px;}
.ye_c00172{bottom:798.434400px;}
.yd_c00172{bottom:829.484400px;}
.yc_c00172{bottom:860.534400px;}
.yb_c00172{bottom:891.584400px;}
.ya_c00172{bottom:922.634400px;}
.y24_c00172{bottom:953.684400px;}
.y9_c00172{bottom:984.734400px;}
.y8_c00172{bottom:1015.784400px;}
.y7_c00172{bottom:1046.834400px;}
.y6_c00172{bottom:1077.884400px;}
.y5_c00172{bottom:1108.844400px;}
.y23_c00172{bottom:1108.934400px;}
.y4_c00172{bottom:1139.984400px;}
.y3_c00172{bottom:1173.915120px;}
.y2_c00172{bottom:1194.074400px;}
.h2_c00172{height:50.400000px;}
.h3_c00172{height:54.331699px;}
.h4_c00172{height:59.376026px;}
.h6_c00172{height:76.824000px;}
.h5_c00172{height:78.048000px;}
.h0_c00172{height:1262.835000px;}
.h1_c00172{height:1263.000000px;}
.w2_c00172{width:0.000000px;}
.w3_c00172{width:0.066000px;}
.w0_c00172{width:892.914000px;}
.w1_c00172{width:893.250000px;}
.x1_c00172{left:-838.913400px;}
.x2_c00172{left:-765.293400px;}
.x3_c00172{left:-733.343400px;}
.x0_c00172{left:0.000000px;}
.x6_c00172{left:127.620000px;}
.x7_c00172{left:159.570000px;}
.x5_c00172{left:692.370000px;}
.x4_c00172{left:804.366150px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls9_c00172{letter-spacing:-0.320000pt;}
.ls7_c00172{letter-spacing:0.000000pt;}
.ls1_c00172{letter-spacing:0.064000pt;}
.ls8_c00172{letter-spacing:0.128000pt;}
.ls5_c00172{letter-spacing:19.289600pt;}
.ls6_c00172{letter-spacing:21.504000pt;}
.ls2_c00172{letter-spacing:25.920000pt;}
.ls3_c00172{letter-spacing:26.880000pt;}
.ls4_c00172{letter-spacing:29.248000pt;}
.ls0_c00172{letter-spacing:37.120000pt;}
.ws1_c00172{word-spacing:-16.128000pt;}
.ws7_c00172{word-spacing:-16.064000pt;}
.ws2_c00172{word-spacing:-16.000000pt;}
.ws0_c00172{word-spacing:-13.234560pt;}
.ws3e_c00172{word-spacing:-0.448000pt;}
.ws38_c00172{word-spacing:-0.384000pt;}
.ws2f_c00172{word-spacing:-0.117120pt;}
.ws1d_c00172{word-spacing:-0.064000pt;}
.wsb_c00172{word-spacing:0.000000pt;}
.ws1c_c00172{word-spacing:0.256000pt;}
.ws18_c00172{word-spacing:0.320000pt;}
.ws21_c00172{word-spacing:0.640000pt;}
.ws8_c00172{word-spacing:0.896000pt;}
.ws36_c00172{word-spacing:1.216000pt;}
.ws37_c00172{word-spacing:1.280000pt;}
.ws32_c00172{word-spacing:3.008000pt;}
.ws34_c00172{word-spacing:3.136000pt;}
.ws33_c00172{word-spacing:3.200000pt;}
.ws1e_c00172{word-spacing:3.520000pt;}
.ws2e_c00172{word-spacing:3.776000pt;}
.ws1f_c00172{word-spacing:3.840000pt;}
.ws42_c00172{word-spacing:4.416000pt;}
.ws9_c00172{word-spacing:4.480000pt;}
.ws3a_c00172{word-spacing:4.736000pt;}
.ws27_c00172{word-spacing:4.800000pt;}
.ws20_c00172{word-spacing:5.120000pt;}
.ws35_c00172{word-spacing:5.376000pt;}
.ws16_c00172{word-spacing:5.696000pt;}
.ws17_c00172{word-spacing:5.760000pt;}
.ws41_c00172{word-spacing:6.336000pt;}
.ws11_c00172{word-spacing:6.400000pt;}
.ws40_c00172{word-spacing:6.720000pt;}
.ws30_c00172{word-spacing:6.912000pt;}
.ws6_c00172{word-spacing:6.924800pt;}
.ws26_c00172{word-spacing:6.976000pt;}
.wsc_c00172{word-spacing:7.261440pt;}
.ws25_c00172{word-spacing:7.296000pt;}
.ws4_c00172{word-spacing:7.308800pt;}
.ws5_c00172{word-spacing:7.360000pt;}
.ws3f_c00172{word-spacing:7.680000pt;}
.ws4b_c00172{word-spacing:8.960000pt;}
.ws48_c00172{word-spacing:9.280000pt;}
.ws14_c00172{word-spacing:9.536000pt;}
.ws15_c00172{word-spacing:9.600000pt;}
.ws12_c00172{word-spacing:9.856000pt;}
.ws13_c00172{word-spacing:9.920000pt;}
.ws24_c00172{word-spacing:10.560000pt;}
.ws23_c00172{word-spacing:10.752000pt;}
.ws22_c00172{word-spacing:10.816000pt;}
.ws2b_c00172{word-spacing:11.136000pt;}
.ws28_c00172{word-spacing:11.200000pt;}
.ws29_c00172{word-spacing:12.992000pt;}
.ws2a_c00172{word-spacing:13.056000pt;}
.ws44_c00172{word-spacing:15.296000pt;}
.ws43_c00172{word-spacing:15.360000pt;}
.ws47_c00172{word-spacing:16.256000pt;}
.ws46_c00172{word-spacing:16.320000pt;}
.ws49_c00172{word-spacing:16.512000pt;}
.ws4a_c00172{word-spacing:17.280000pt;}
.wsa_c00172{word-spacing:17.344000pt;}
.ws19_c00172{word-spacing:17.856000pt;}
.ws1a_c00172{word-spacing:18.176000pt;}
.ws1b_c00172{word-spacing:18.240000pt;}
.wsd_c00172{word-spacing:18.880000pt;}
.ws3c_c00172{word-spacing:19.456000pt;}
.ws45_c00172{word-spacing:19.520000pt;}
.ws3b_c00172{word-spacing:19.840000pt;}
.ws39_c00172{word-spacing:20.800000pt;}
.wsf_c00172{word-spacing:21.056000pt;}
.wse_c00172{word-spacing:21.120000pt;}
.ws3_c00172{word-spacing:23.296000pt;}
.ws10_c00172{word-spacing:23.680000pt;}
.ws2d_c00172{word-spacing:27.520000pt;}
.ws2c_c00172{word-spacing:27.840000pt;}
.ws3d_c00172{word-spacing:30.720000pt;}
.ws31_c00172{word-spacing:35.136000pt;}
._1_c00172{margin-left:-1.152000pt;}
._0_c00172{width:0.936960pt;}
._4_c00172{width:5.312000pt;}
._6_c00172{width:7.232000pt;}
._3_c00172{width:11.008000pt;}
._2_c00172{width:15.424000pt;}
._5_c00172{width:20.992000pt;}
.fs1_c00172{font-size:58.560000pt;}
.fs0_c00172{font-size:64.000000pt;}
.y0_c00172{bottom:0.000000pt;}
.y1_c00172{bottom:54.887600pt;}
.y22_c00172{bottom:102.599467pt;}
.y21_c00172{bottom:130.199467pt;}
.y20_c00172{bottom:157.799467pt;}
.y1f_c00172{bottom:185.399467pt;}
.y1e_c00172{bottom:212.999467pt;}
.y26_c00172{bottom:240.599467pt;}
.y1d_c00172{bottom:268.199467pt;}
.y1c_c00172{bottom:295.799467pt;}
.y1b_c00172{bottom:323.399467pt;}
.y1a_c00172{bottom:350.999467pt;}
.y19_c00172{bottom:378.599467pt;}
.y18_c00172{bottom:406.199467pt;}
.y17_c00172{bottom:433.799467pt;}
.y16_c00172{bottom:461.399467pt;}
.y15_c00172{bottom:488.999467pt;}
.y14_c00172{bottom:516.599467pt;}
.y13_c00172{bottom:544.199467pt;}
.y12_c00172{bottom:571.799467pt;}
.y11_c00172{bottom:599.399467pt;}
.y25_c00172{bottom:626.999467pt;}
.y10_c00172{bottom:654.599467pt;}
.yf_c00172{bottom:682.199467pt;}
.ye_c00172{bottom:709.719467pt;}
.yd_c00172{bottom:737.319467pt;}
.yc_c00172{bottom:764.919467pt;}
.yb_c00172{bottom:792.519467pt;}
.ya_c00172{bottom:820.119467pt;}
.y24_c00172{bottom:847.719467pt;}
.y9_c00172{bottom:875.319467pt;}
.y8_c00172{bottom:902.919467pt;}
.y7_c00172{bottom:930.519467pt;}
.y6_c00172{bottom:958.119467pt;}
.y5_c00172{bottom:985.639467pt;}
.y23_c00172{bottom:985.719467pt;}
.y4_c00172{bottom:1013.319467pt;}
.y3_c00172{bottom:1043.480107pt;}
.y2_c00172{bottom:1061.399467pt;}
.h2_c00172{height:44.800000pt;}
.h3_c00172{height:48.294844pt;}
.h4_c00172{height:52.778690pt;}
.h6_c00172{height:68.288000pt;}
.h5_c00172{height:69.376000pt;}
.h0_c00172{height:1122.520000pt;}
.h1_c00172{height:1122.666667pt;}
.w2_c00172{width:0.000000pt;}
.w3_c00172{width:0.058667pt;}
.w0_c00172{width:793.701333pt;}
.w1_c00172{width:794.000000pt;}
.x1_c00172{left:-745.700800pt;}
.x2_c00172{left:-680.260800pt;}
.x3_c00172{left:-651.860800pt;}
.x0_c00172{left:0.000000pt;}
.x6_c00172{left:113.440000pt;}
.x7_c00172{left:141.840000pt;}
.x5_c00172{left:615.440000pt;}
.x4_c00172{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00173;src:url('chunks/assets/font_37c95645078ad54dfda9950a.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00173;src:url('chunks/assets/font_58e53d5e86e5302702809d9c.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00173;src:url('chunks/assets/font_af25a675421d28bad154d1ac.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00173{letter-spacing:-0.288000px;}
.ls2_c00173{letter-spacing:0.000000px;}
.ls0_c00173{letter-spacing:0.072000px;}
.ls1_c00173{letter-spacing:30.672000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00173{word-spacing:-18.000000px;}
.ws0_c00173{word-spacing:-14.888880px;}
.ws1d_c00173{word-spacing:-0.360000px;}
.ws23_c00173{word-spacing:-0.072000px;}
.ws5_c00173{word-spacing:0.000000px;}
.ws20_c00173{word-spacing:0.288000px;}
.ws4_c00173{word-spacing:0.360000px;}
.ws26_c00173{word-spacing:0.648000px;}
.ws27_c00173{word-spacing:0.720000px;}
.ws8_c00173{word-spacing:1.368000px;}
.ws13_c00173{word-spacing:2.088000px;}
.ws24_c00173{word-spacing:2.160000px;}
.wsc_c00173{word-spacing:2.448000px;}
.wsb_c00173{word-spacing:2.520000px;}
.ws1c_c00173{word-spacing:3.528000px;}
.ws15_c00173{word-spacing:3.888000px;}
.ws17_c00173{word-spacing:3.960000px;}
.ws16_c00173{word-spacing:4.320000px;}
.ws2a_c00173{word-spacing:4.464000px;}
.ws28_c00173{word-spacing:4.968000px;}
.ws29_c00173{word-spacing:5.040000px;}
.ws12_c00173{word-spacing:5.328000px;}
.ws1a_c00173{word-spacing:6.120000px;}
.ws18_c00173{word-spacing:6.408000px;}
.ws19_c00173{word-spacing:6.480000px;}
.ws6_c00173{word-spacing:8.169120px;}
.ws1b_c00173{word-spacing:9.000000px;}
.ws25_c00173{word-spacing:10.008000px;}
.ws14_c00173{word-spacing:11.016000px;}
.ws2_c00173{word-spacing:11.160000px;}
.ws21_c00173{word-spacing:12.240000px;}
.ws1f_c00173{word-spacing:12.528000px;}
.ws3_c00173{word-spacing:12.960000px;}
.ws9_c00173{word-spacing:13.320000px;}
.ws7_c00173{word-spacing:13.608000px;}
.wsd_c00173{word-spacing:13.680000px;}
.ws22_c00173{word-spacing:15.048000px;}
.wsf_c00173{word-spacing:18.000000px;}
.wsa_c00173{word-spacing:26.208000px;}
.wse_c00173{word-spacing:32.688000px;}
.ws1e_c00173{word-spacing:33.408000px;}
.ws11_c00173{word-spacing:37.728000px;}
.ws10_c00173{word-spacing:37.800000px;}
._1_c00173{margin-left:-1.375200px;}
._0_c00173{width:1.054080px;}
.fc1_c00173{color:rgb(0,0,0);}
.fc0_c00173{color:rgb(35,31,32);}
.fs1_c00173{font-size:65.880000px;}
.fs0_c00173{font-size:72.000000px;}
.y0_c00173{bottom:0.000000px;}
.y1_c00173{bottom:61.748550px;}
.y21_c00173{bottom:115.424400px;}
.y20_c00173{bottom:146.474400px;}
.y1f_c00173{bottom:177.524400px;}
.y1e_c00173{bottom:208.574400px;}
.y1d_c00173{bottom:270.674400px;}
.y1c_c00173{bottom:301.724400px;}
.y1b_c00173{bottom:332.774400px;}
.y1a_c00173{bottom:363.824400px;}
.y19_c00173{bottom:394.874400px;}
.y18_c00173{bottom:425.924400px;}
.y17_c00173{bottom:488.024400px;}
.y16_c00173{bottom:519.074400px;}
.y15_c00173{bottom:550.124400px;}
.y14_c00173{bottom:581.174400px;}
.y13_c00173{bottom:612.224400px;}
.y12_c00173{bottom:643.274400px;}
.y11_c00173{bottom:705.374400px;}
.y10_c00173{bottom:736.424400px;}
.yf_c00173{bottom:767.474400px;}
.ye_c00173{bottom:798.434400px;}
.yd_c00173{bottom:829.484400px;}
.yc_c00173{bottom:860.534400px;}
.yb_c00173{bottom:891.584400px;}
.ya_c00173{bottom:922.634400px;}
.y9_c00173{bottom:953.684400px;}
.y8_c00173{bottom:1015.784400px;}
.y7_c00173{bottom:1046.834400px;}
.y6_c00173{bottom:1077.884400px;}
.y5_c00173{bottom:1108.934400px;}
.y4_c00173{bottom:1139.984400px;}
.y3_c00173{bottom:1173.915120px;}
.y2_c00173{bottom:1194.074400px;}
.h2_c00173{height:50.400000px;}
.h3_c00173{height:54.331699px;}
.h4_c00173{height:59.376026px;}
.h5_c00173{height:76.824000px;}
.h6_c00173{height:78.048000px;}
.h0_c00173{height:1262.835000px;}
.h1_c00173{height:1263.000000px;}
.w0_c00173{width:892.914000px;}
.w1_c00173{width:893.250000px;}
.x0_c00173{left:0.000000px;}
.x1_c00173{left:54.000000px;}
.x2_c00173{left:127.620000px;}
.x3_c00173{left:159.570000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls3_c00173{letter-spacing:-0.256000pt;}
.ls2_c00173{letter-spacing:0.000000pt;}
.ls0_c00173{letter-spacing:0.064000pt;}
.ls1_c00173{letter-spacing:27.264000pt;}
.ws1_c00173{word-spacing:-16.000000pt;}
.ws0_c00173{word-spacing:-13.234560pt;}
.ws1d_c00173{word-spacing:-0.320000pt;}
.ws23_c00173{word-spacing:-0.064000pt;}
.ws5_c00173{word-spacing:0.000000pt;}
.ws20_c00173{word-spacing:0.256000pt;}
.ws4_c00173{word-spacing:0.320000pt;}
.ws26_c00173{word-spacing:0.576000pt;}
.ws27_c00173{word-spacing:0.640000pt;}
.ws8_c00173{word-spacing:1.216000pt;}
.ws13_c00173{word-spacing:1.856000pt;}
.ws24_c00173{word-spacing:1.920000pt;}
.wsc_c00173{word-spacing:2.176000pt;}
.wsb_c00173{word-spacing:2.240000pt;}
.ws1c_c00173{word-spacing:3.136000pt;}
.ws15_c00173{word-spacing:3.456000pt;}
.ws17_c00173{word-spacing:3.520000pt;}
.ws16_c00173{word-spacing:3.840000pt;}
.ws2a_c00173{word-spacing:3.968000pt;}
.ws28_c00173{word-spacing:4.416000pt;}
.ws29_c00173{word-spacing:4.480000pt;}
.ws12_c00173{word-spacing:4.736000pt;}
.ws1a_c00173{word-spacing:5.440000pt;}
.ws18_c00173{word-spacing:5.696000pt;}
.ws19_c00173{word-spacing:5.760000pt;}
.ws6_c00173{word-spacing:7.261440pt;}
.ws1b_c00173{word-spacing:8.000000pt;}
.ws25_c00173{word-spacing:8.896000pt;}
.ws14_c00173{word-spacing:9.792000pt;}
.ws2_c00173{word-spacing:9.920000pt;}
.ws21_c00173{word-spacing:10.880000pt;}
.ws1f_c00173{word-spacing:11.136000pt;}
.ws3_c00173{word-spacing:11.520000pt;}
.ws9_c00173{word-spacing:11.840000pt;}
.ws7_c00173{word-spacing:12.096000pt;}
.wsd_c00173{word-spacing:12.160000pt;}
.ws22_c00173{word-spacing:13.376000pt;}
.wsf_c00173{word-spacing:16.000000pt;}
.wsa_c00173{word-spacing:23.296000pt;}
.wse_c00173{word-spacing:29.056000pt;}
.ws1e_c00173{word-spacing:29.696000pt;}
.ws11_c00173{word-spacing:33.536000pt;}
.ws10_c00173{word-spacing:33.600000pt;}
._1_c00173{margin-left:-1.222400pt;}
._0_c00173{width:0.936960pt;}
.fs1_c00173{font-size:58.560000pt;}
.fs0_c00173{font-size:64.000000pt;}
.y0_c00173{bottom:0.000000pt;}
.y1_c00173{bottom:54.887600pt;}
.y21_c00173{bottom:102.599467pt;}
.y20_c00173{bottom:130.199467pt;}
.y1f_c00173{bottom:157.799467pt;}
.y1e_c00173{bottom:185.399467pt;}
.y1d_c00173{bottom:240.599467pt;}
.y1c_c00173{bottom:268.199467pt;}
.y1b_c00173{bottom:295.799467pt;}
.y1a_c00173{bottom:323.399467pt;}
.y19_c00173{bottom:350.999467pt;}
.y18_c00173{bottom:378.599467pt;}
.y17_c00173{bottom:433.799467pt;}
.y16_c00173{bottom:461.399467pt;}
.y15_c00173{bottom:488.999467pt;}
.y14_c00173{bottom:516.599467pt;}
.y13_c00173{bottom:544.199467pt;}
.y12_c00173{bottom:571.799467pt;}
.y11_c00173{bottom:626.999467pt;}
.y10_c00173{bottom:654.599467pt;}
.yf_c00173{bottom:682.199467pt;}
.ye_c00173{bottom:709.719467pt;}
.yd_c00173{bottom:737.319467pt;}
.yc_c00173{bottom:764.919467pt;}
.yb_c00173{bottom:792.519467pt;}
.ya_c00173{bottom:820.119467pt;}
.y9_c00173{bottom:847.719467pt;}
.y8_c00173{bottom:902.919467pt;}
.y7_c00173{bottom:930.519467pt;}
.y6_c00173{bottom:958.119467pt;}
.y5_c00173{bottom:985.719467pt;}
.y4_c00173{bottom:1013.319467pt;}
.y3_c00173{bottom:1043.480107pt;}
.y2_c00173{bottom:1061.399467pt;}
.h2_c00173{height:44.800000pt;}
.h3_c00173{height:48.294844pt;}
.h4_c00173{height:52.778690pt;}
.h5_c00173{height:68.288000pt;}
.h6_c00173{height:69.376000pt;}
.h0_c00173{height:1122.520000pt;}
.h1_c00173{height:1122.666667pt;}
.w0_c00173{width:793.701333pt;}
.w1_c00173{width:794.000000pt;}
.x0_c00173{left:0.000000pt;}
.x1_c00173{left:48.000000pt;}
.x2_c00173{left:113.440000pt;}
.x3_c00173{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00174;src:url('chunks/assets/font_bf993dca53ae45d648f30bbf.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00174;src:url('chunks/assets/font_871aeacf206be19bbbb76c46.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00174;src:url('chunks/assets/font_270c3900857d8243587d3d0b.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00174;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00174;src:url('chunks/assets/font_9c5edf7a16ff524a2e39099f.woff2')format("woff");}.ff6_c00174{font-family:ff6_c00174;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00174;src:url('chunks/assets/font_6bb8f4bb65abb1e6da53bd46.woff2')format("woff");}.ff7_c00174{font-family:ff7_c00174;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00174;src:url('chunks/assets/font_23cc26e8ab5831ece093bbf0.woff2')format("woff");}.ff8_c00174{font-family:ff8_c00174;line-height:1.592000;font-style: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;}
.ls7_c00174{letter-spacing:-0.288000px;}
.ls6_c00174{letter-spacing:0.000000px;}
.ls0_c00174{letter-spacing:0.072000px;}
.ls2_c00174{letter-spacing:0.144000px;}
.ls3_c00174{letter-spacing:19.123200px;}
.ls4_c00174{letter-spacing:21.240000px;}
.ls1_c00174{letter-spacing:30.672000px;}
.ls5_c00174{letter-spacing:46.440000px;}
.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;}
}
.ws5_c00174{word-spacing:-18.072000px;}
.ws1_c00174{word-spacing:-18.000000px;}
.ws0_c00174{word-spacing:-14.888880px;}
.ws20_c00174{word-spacing:-0.360000px;}
.ws40_c00174{word-spacing:-0.144000px;}
.ws2e_c00174{word-spacing:-0.131760px;}
.ws26_c00174{word-spacing:-0.072000px;}
.ws8_c00174{word-spacing:0.000000px;}
.ws23_c00174{word-spacing:0.288000px;}
.ws4_c00174{word-spacing:0.360000px;}
.ws44_c00174{word-spacing:0.432000px;}
.ws29_c00174{word-spacing:0.648000px;}
.ws2a_c00174{word-spacing:0.720000px;}
.ws43_c00174{word-spacing:1.008000px;}
.wsb_c00174{word-spacing:1.368000px;}
.ws2f_c00174{word-spacing:1.440000px;}
.ws35_c00174{word-spacing:1.728000px;}
.ws34_c00174{word-spacing:1.800000px;}
.ws16_c00174{word-spacing:2.088000px;}
.ws27_c00174{word-spacing:2.160000px;}
.wsf_c00174{word-spacing:2.448000px;}
.wse_c00174{word-spacing:2.520000px;}
.ws3e_c00174{word-spacing:2.808000px;}
.ws38_c00174{word-spacing:3.168000px;}
.ws39_c00174{word-spacing:3.240000px;}
.ws1f_c00174{word-spacing:3.528000px;}
.ws18_c00174{word-spacing:3.888000px;}
.ws1a_c00174{word-spacing:3.960000px;}
.ws19_c00174{word-spacing:4.320000px;}
.ws2d_c00174{word-spacing:4.464000px;}
.ws3a_c00174{word-spacing:4.680000px;}
.ws3b_c00174{word-spacing:4.896000px;}
.ws2b_c00174{word-spacing:4.968000px;}
.ws2c_c00174{word-spacing:5.040000px;}
.ws15_c00174{word-spacing:5.328000px;}
.ws1d_c00174{word-spacing:6.120000px;}
.ws1b_c00174{word-spacing:6.408000px;}
.ws1c_c00174{word-spacing:6.480000px;}
.ws9_c00174{word-spacing:8.169120px;}
.ws1e_c00174{word-spacing:9.000000px;}
.ws3c_c00174{word-spacing:9.360000px;}
.ws3d_c00174{word-spacing:9.648000px;}
.ws36_c00174{word-spacing:9.720000px;}
.ws28_c00174{word-spacing:10.008000px;}
.ws45_c00174{word-spacing:10.368000px;}
.ws17_c00174{word-spacing:11.016000px;}
.ws2_c00174{word-spacing:11.160000px;}
.ws24_c00174{word-spacing:12.240000px;}
.ws22_c00174{word-spacing:12.528000px;}
.ws46_c00174{word-spacing:12.600000px;}
.ws3_c00174{word-spacing:12.960000px;}
.wsc_c00174{word-spacing:13.320000px;}
.wsa_c00174{word-spacing:13.608000px;}
.ws10_c00174{word-spacing:13.680000px;}
.ws3f_c00174{word-spacing:14.760000px;}
.ws25_c00174{word-spacing:15.048000px;}
.ws12_c00174{word-spacing:18.000000px;}
.ws6_c00174{word-spacing:18.288000px;}
.ws33_c00174{word-spacing:20.304000px;}
.ws32_c00174{word-spacing:20.736000px;}
.ws37_c00174{word-spacing:21.168000px;}
.ws42_c00174{word-spacing:22.176000px;}
.ws7_c00174{word-spacing:22.183200px;}
.ws41_c00174{word-spacing:22.248000px;}
.wsd_c00174{word-spacing:26.208000px;}
.ws30_c00174{word-spacing:26.568000px;}
.ws31_c00174{word-spacing:27.000000px;}
.ws47_c00174{word-spacing:28.728000px;}
.ws11_c00174{word-spacing:32.688000px;}
.ws21_c00174{word-spacing:33.408000px;}
.ws14_c00174{word-spacing:37.728000px;}
.ws13_c00174{word-spacing:37.800000px;}
._1_c00174{margin-left:-1.375200px;}
._0_c00174{width:1.054080px;}
._2_c00174{width:37.800000px;}
.fc2_c00174{color:transparent;}
.fc1_c00174{color:rgb(0,0,0);}
.fc0_c00174{color:rgb(35,31,32);}
.fs1_c00174{font-size:65.880000px;}
.fs0_c00174{font-size:72.000000px;}
.y0_c00174{bottom:0.000000px;}
.y1_c00174{bottom:61.748550px;}
.y21_c00174{bottom:115.424400px;}
.y20_c00174{bottom:146.474400px;}
.y1f_c00174{bottom:177.524400px;}
.y1e_c00174{bottom:208.574400px;}
.y24_c00174{bottom:239.624400px;}
.y1d_c00174{bottom:270.674400px;}
.y1c_c00174{bottom:301.724400px;}
.y1b_c00174{bottom:332.774400px;}
.y1a_c00174{bottom:363.824400px;}
.y19_c00174{bottom:394.874400px;}
.y18_c00174{bottom:425.924400px;}
.y23_c00174{bottom:456.974400px;}
.y17_c00174{bottom:488.024400px;}
.y16_c00174{bottom:519.074400px;}
.y15_c00174{bottom:550.124400px;}
.y14_c00174{bottom:581.174400px;}
.y13_c00174{bottom:612.224400px;}
.y12_c00174{bottom:643.274400px;}
.y11_c00174{bottom:705.374400px;}
.y10_c00174{bottom:736.424400px;}
.yf_c00174{bottom:767.474400px;}
.ye_c00174{bottom:798.434400px;}
.yd_c00174{bottom:829.484400px;}
.yc_c00174{bottom:860.534400px;}
.yb_c00174{bottom:891.584400px;}
.ya_c00174{bottom:922.634400px;}
.y9_c00174{bottom:953.684400px;}
.y22_c00174{bottom:984.734400px;}
.y8_c00174{bottom:1015.784400px;}
.y7_c00174{bottom:1046.834400px;}
.y6_c00174{bottom:1077.884400px;}
.y5_c00174{bottom:1108.934400px;}
.y4_c00174{bottom:1139.984400px;}
.y3_c00174{bottom:1173.915120px;}
.y2_c00174{bottom:1194.074400px;}
.h2_c00174{height:50.400000px;}
.h3_c00174{height:54.331699px;}
.h4_c00174{height:59.376026px;}
.h5_c00174{height:76.824000px;}
.h6_c00174{height:78.048000px;}
.h0_c00174{height:1262.835000px;}
.h1_c00174{height:1263.000000px;}
.w2_c00174{width:0.000000px;}
.w3_c00174{width:0.066000px;}
.w0_c00174{width:892.914000px;}
.w1_c00174{width:893.250000px;}
.x1_c00174{left:-838.913400px;}
.x2_c00174{left:-765.293400px;}
.x3_c00174{left:-733.343400px;}
.x0_c00174{left:0.000000px;}
.x6_c00174{left:127.620000px;}
.x7_c00174{left:159.570000px;}
.x5_c00174{left:692.370000px;}
.x4_c00174{left:804.366150px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls7_c00174{letter-spacing:-0.256000pt;}
.ls6_c00174{letter-spacing:0.000000pt;}
.ls0_c00174{letter-spacing:0.064000pt;}
.ls2_c00174{letter-spacing:0.128000pt;}
.ls3_c00174{letter-spacing:16.998400pt;}
.ls4_c00174{letter-spacing:18.880000pt;}
.ls1_c00174{letter-spacing:27.264000pt;}
.ls5_c00174{letter-spacing:41.280000pt;}
.ws5_c00174{word-spacing:-16.064000pt;}
.ws1_c00174{word-spacing:-16.000000pt;}
.ws0_c00174{word-spacing:-13.234560pt;}
.ws20_c00174{word-spacing:-0.320000pt;}
.ws40_c00174{word-spacing:-0.128000pt;}
.ws2e_c00174{word-spacing:-0.117120pt;}
.ws26_c00174{word-spacing:-0.064000pt;}
.ws8_c00174{word-spacing:0.000000pt;}
.ws23_c00174{word-spacing:0.256000pt;}
.ws4_c00174{word-spacing:0.320000pt;}
.ws44_c00174{word-spacing:0.384000pt;}
.ws29_c00174{word-spacing:0.576000pt;}
.ws2a_c00174{word-spacing:0.640000pt;}
.ws43_c00174{word-spacing:0.896000pt;}
.wsb_c00174{word-spacing:1.216000pt;}
.ws2f_c00174{word-spacing:1.280000pt;}
.ws35_c00174{word-spacing:1.536000pt;}
.ws34_c00174{word-spacing:1.600000pt;}
.ws16_c00174{word-spacing:1.856000pt;}
.ws27_c00174{word-spacing:1.920000pt;}
.wsf_c00174{word-spacing:2.176000pt;}
.wse_c00174{word-spacing:2.240000pt;}
.ws3e_c00174{word-spacing:2.496000pt;}
.ws38_c00174{word-spacing:2.816000pt;}
.ws39_c00174{word-spacing:2.880000pt;}
.ws1f_c00174{word-spacing:3.136000pt;}
.ws18_c00174{word-spacing:3.456000pt;}
.ws1a_c00174{word-spacing:3.520000pt;}
.ws19_c00174{word-spacing:3.840000pt;}
.ws2d_c00174{word-spacing:3.968000pt;}
.ws3a_c00174{word-spacing:4.160000pt;}
.ws3b_c00174{word-spacing:4.352000pt;}
.ws2b_c00174{word-spacing:4.416000pt;}
.ws2c_c00174{word-spacing:4.480000pt;}
.ws15_c00174{word-spacing:4.736000pt;}
.ws1d_c00174{word-spacing:5.440000pt;}
.ws1b_c00174{word-spacing:5.696000pt;}
.ws1c_c00174{word-spacing:5.760000pt;}
.ws9_c00174{word-spacing:7.261440pt;}
.ws1e_c00174{word-spacing:8.000000pt;}
.ws3c_c00174{word-spacing:8.320000pt;}
.ws3d_c00174{word-spacing:8.576000pt;}
.ws36_c00174{word-spacing:8.640000pt;}
.ws28_c00174{word-spacing:8.896000pt;}
.ws45_c00174{word-spacing:9.216000pt;}
.ws17_c00174{word-spacing:9.792000pt;}
.ws2_c00174{word-spacing:9.920000pt;}
.ws24_c00174{word-spacing:10.880000pt;}
.ws22_c00174{word-spacing:11.136000pt;}
.ws46_c00174{word-spacing:11.200000pt;}
.ws3_c00174{word-spacing:11.520000pt;}
.wsc_c00174{word-spacing:11.840000pt;}
.wsa_c00174{word-spacing:12.096000pt;}
.ws10_c00174{word-spacing:12.160000pt;}
.ws3f_c00174{word-spacing:13.120000pt;}
.ws25_c00174{word-spacing:13.376000pt;}
.ws12_c00174{word-spacing:16.000000pt;}
.ws6_c00174{word-spacing:16.256000pt;}
.ws33_c00174{word-spacing:18.048000pt;}
.ws32_c00174{word-spacing:18.432000pt;}
.ws37_c00174{word-spacing:18.816000pt;}
.ws42_c00174{word-spacing:19.712000pt;}
.ws7_c00174{word-spacing:19.718400pt;}
.ws41_c00174{word-spacing:19.776000pt;}
.wsd_c00174{word-spacing:23.296000pt;}
.ws30_c00174{word-spacing:23.616000pt;}
.ws31_c00174{word-spacing:24.000000pt;}
.ws47_c00174{word-spacing:25.536000pt;}
.ws11_c00174{word-spacing:29.056000pt;}
.ws21_c00174{word-spacing:29.696000pt;}
.ws14_c00174{word-spacing:33.536000pt;}
.ws13_c00174{word-spacing:33.600000pt;}
._1_c00174{margin-left:-1.222400pt;}
._0_c00174{width:0.936960pt;}
._2_c00174{width:33.600000pt;}
.fs1_c00174{font-size:58.560000pt;}
.fs0_c00174{font-size:64.000000pt;}
.y0_c00174{bottom:0.000000pt;}
.y1_c00174{bottom:54.887600pt;}
.y21_c00174{bottom:102.599467pt;}
.y20_c00174{bottom:130.199467pt;}
.y1f_c00174{bottom:157.799467pt;}
.y1e_c00174{bottom:185.399467pt;}
.y24_c00174{bottom:212.999467pt;}
.y1d_c00174{bottom:240.599467pt;}
.y1c_c00174{bottom:268.199467pt;}
.y1b_c00174{bottom:295.799467pt;}
.y1a_c00174{bottom:323.399467pt;}
.y19_c00174{bottom:350.999467pt;}
.y18_c00174{bottom:378.599467pt;}
.y23_c00174{bottom:406.199467pt;}
.y17_c00174{bottom:433.799467pt;}
.y16_c00174{bottom:461.399467pt;}
.y15_c00174{bottom:488.999467pt;}
.y14_c00174{bottom:516.599467pt;}
.y13_c00174{bottom:544.199467pt;}
.y12_c00174{bottom:571.799467pt;}
.y11_c00174{bottom:626.999467pt;}
.y10_c00174{bottom:654.599467pt;}
.yf_c00174{bottom:682.199467pt;}
.ye_c00174{bottom:709.719467pt;}
.yd_c00174{bottom:737.319467pt;}
.yc_c00174{bottom:764.919467pt;}
.yb_c00174{bottom:792.519467pt;}
.ya_c00174{bottom:820.119467pt;}
.y9_c00174{bottom:847.719467pt;}
.y22_c00174{bottom:875.319467pt;}
.y8_c00174{bottom:902.919467pt;}
.y7_c00174{bottom:930.519467pt;}
.y6_c00174{bottom:958.119467pt;}
.y5_c00174{bottom:985.719467pt;}
.y4_c00174{bottom:1013.319467pt;}
.y3_c00174{bottom:1043.480107pt;}
.y2_c00174{bottom:1061.399467pt;}
.h2_c00174{height:44.800000pt;}
.h3_c00174{height:48.294844pt;}
.h4_c00174{height:52.778690pt;}
.h5_c00174{height:68.288000pt;}
.h6_c00174{height:69.376000pt;}
.h0_c00174{height:1122.520000pt;}
.h1_c00174{height:1122.666667pt;}
.w2_c00174{width:0.000000pt;}
.w3_c00174{width:0.058667pt;}
.w0_c00174{width:793.701333pt;}
.w1_c00174{width:794.000000pt;}
.x1_c00174{left:-745.700800pt;}
.x2_c00174{left:-680.260800pt;}
.x3_c00174{left:-651.860800pt;}
.x0_c00174{left:0.000000pt;}
.x6_c00174{left:113.440000pt;}
.x7_c00174{left:141.840000pt;}
.x5_c00174{left:615.440000pt;}
.x4_c00174{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00175;src:url('chunks/assets/font_76f6964c1dba25b9386d64f8.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00175;src:url('chunks/assets/font_21e673f8ef6578f3d41f2f19.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00175;src:url('chunks/assets/font_afc8d722fd92fe3822d24a02.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls7_c00175{letter-spacing:-0.527040px;}
.ls6_c00175{letter-spacing:-0.144000px;}
.ls4_c00175{letter-spacing:-0.065880px;}
.ls3_c00175{letter-spacing:0.000000px;}
.ls5_c00175{letter-spacing:0.065880px;}
.ls0_c00175{letter-spacing:0.072000px;}
.ls2_c00175{letter-spacing:0.144000px;}
.ls1_c00175{letter-spacing:0.197640px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00175{word-spacing:-18.144000px;}
.ws7_c00175{word-spacing:-18.072000px;}
.ws4_c00175{word-spacing:-18.000000px;}
.ws8_c00175{word-spacing:-16.667640px;}
.ws3_c00175{word-spacing:-16.535880px;}
.ws2_c00175{word-spacing:-16.404120px;}
.ws0_c00175{word-spacing:-14.888880px;}
.wsd_c00175{word-spacing:-0.432000px;}
.ws15_c00175{word-spacing:-0.360000px;}
.ws16_c00175{word-spacing:-0.197640px;}
.wse_c00175{word-spacing:-0.144000px;}
.ws11_c00175{word-spacing:-0.131760px;}
.wsa_c00175{word-spacing:-0.072000px;}
.ws13_c00175{word-spacing:-0.065880px;}
.ws6_c00175{word-spacing:0.000000px;}
.ws12_c00175{word-spacing:0.065880px;}
.ws10_c00175{word-spacing:0.131760px;}
.wsf_c00175{word-spacing:0.144000px;}
.ws14_c00175{word-spacing:0.592920px;}
.ws9_c00175{word-spacing:8.169120px;}
.wsb_c00175{word-spacing:14.976000px;}
.wsc_c00175{word-spacing:15.120000px;}
.ws1_c00175{word-spacing:15.264000px;}
._2_c00175{margin-left:-1.152000px;}
._0_c00175{width:1.054080px;}
._1_c00175{width:14.976000px;}
.fc1_c00175{color:rgb(0,0,0);}
.fc0_c00175{color:rgb(35,31,32);}
.fs1_c00175{font-size:65.880000px;}
.fs0_c00175{font-size:72.000000px;}
.y0_c00175{bottom:0.000000px;}
.y27_c00175{bottom:4.139250px;}
.y12_c00175{bottom:4.139400px;}
.y39_c00175{bottom:4.142250px;}
.y8_c00175{bottom:13.232400px;}
.y1_c00175{bottom:61.748550px;}
.y35_c00175{bottom:86.942400px;}
.y32_c00175{bottom:88.292400px;}
.y3b_c00175{bottom:115.605000px;}
.y4b_c00175{bottom:140.444250px;}
.yb_c00175{bottom:149.039250px;}
.ya_c00175{bottom:150.389400px;}
.y4a_c00175{bottom:161.144250px;}
.y49_c00175{bottom:181.844250px;}
.y48_c00175{bottom:202.544250px;}
.y47_c00175{bottom:223.244250px;}
.y46_c00175{bottom:243.944250px;}
.y45_c00175{bottom:264.644250px;}
.y44_c00175{bottom:285.344250px;}
.y43_c00175{bottom:306.044250px;}
.y18_c00175{bottom:314.549400px;}
.y3d_c00175{bottom:314.639400px;}
.y16_c00175{bottom:315.899250px;}
.y3c_c00175{bottom:315.989400px;}
.y42_c00175{bottom:326.744250px;}
.y41_c00175{bottom:347.444250px;}
.y40_c00175{bottom:368.144250px;}
.y3f_c00175{bottom:388.844250px;}
.y4d_c00175{bottom:393.614340px;}
.y3e_c00175{bottom:409.544250px;}
.y4c_c00175{bottom:412.604250px;}
.y31_c00175{bottom:446.802000px;}
.y38_c00175{bottom:471.644250px;}
.y3a_c00175{bottom:478.124430px;}
.y37_c00175{bottom:492.344250px;}
.y34_c00175{bottom:497.114340px;}
.y36_c00175{bottom:513.044250px;}
.y33_c00175{bottom:516.104250px;}
.y15_c00175{bottom:550.305000px;}
.y26_c00175{bottom:575.144250px;}
.y25_c00175{bottom:595.844250px;}
.y24_c00175{bottom:616.544250px;}
.y23_c00175{bottom:637.244250px;}
.y22_c00175{bottom:657.944250px;}
.y30_c00175{bottom:676.477560px;}
.y21_c00175{bottom:678.644250px;}
.y2f_c00175{bottom:695.467470px;}
.y20_c00175{bottom:699.344250px;}
.y2e_c00175{bottom:714.457380px;}
.y1f_c00175{bottom:720.044250px;}
.y2d_c00175{bottom:733.447290px;}
.y1e_c00175{bottom:740.744250px;}
.y2c_c00175{bottom:752.437200px;}
.y1d_c00175{bottom:761.444250px;}
.y2b_c00175{bottom:771.344760px;}
.y1c_c00175{bottom:782.144250px;}
.y2a_c00175{bottom:790.334670px;}
.y1b_c00175{bottom:802.754250px;}
.y29_c00175{bottom:809.324580px;}
.y1a_c00175{bottom:823.454250px;}
.y28_c00175{bottom:828.314490px;}
.y19_c00175{bottom:844.154250px;}
.y17_c00175{bottom:847.304400px;}
.y9_c00175{bottom:881.415000px;}
.y11_c00175{bottom:906.254400px;}
.y10_c00175{bottom:926.954400px;}
.yf_c00175{bottom:947.654400px;}
.ye_c00175{bottom:968.354400px;}
.yd_c00175{bottom:989.054400px;}
.y14_c00175{bottom:993.906690px;}
.yc_c00175{bottom:1009.754400px;}
.y13_c00175{bottom:1012.814250px;}
.y7_c00175{bottom:1047.822000px;}
.y6_c00175{bottom:1099.484400px;}
.y5_c00175{bottom:1119.284400px;}
.y4_c00175{bottom:1139.984400px;}
.y3_c00175{bottom:1173.915120px;}
.y2_c00175{bottom:1194.074400px;}
.h6_c00175{height:28.440000px;}
.h2_c00175{height:50.400000px;}
.h3_c00175{height:54.331699px;}
.h4_c00175{height:59.376026px;}
.h7_c00175{height:70.293960px;}
.h9_c00175{height:76.824000px;}
.h5_c00175{height:78.048000px;}
.hb_c00175{height:103.500000px;}
.h8_c00175{height:165.597000px;}
.ha_c00175{height:331.108500px;}
.hc_c00175{height:331.200000px;}
.h0_c00175{height:1262.835000px;}
.h1_c00175{height:1263.000000px;}
.w6_c00175{width:119.160000px;}
.w3_c00175{width:132.750000px;}
.w2_c00175{width:133.470000px;}
.w5_c00175{width:148.770000px;}
.w4_c00175{width:154.260000px;}
.w0_c00175{width:892.914000px;}
.w1_c00175{width:893.250000px;}
.x0_c00175{left:0.000000px;}
.x4_c00175{left:8.100000px;}
.xd_c00175{left:10.350000px;}
.x1_c00175{left:54.000000px;}
.x8_c00175{left:119.520000px;}
.x2_c00175{left:127.620000px;}
.x3_c00175{left:238.680000px;}
.xc_c00175{left:246.780000px;}
.x5_c00175{left:372.150000px;}
.x9_c00175{left:380.250000px;}
.x6_c00175{left:504.900000px;}
.xa_c00175{left:513.000000px;}
.x7_c00175{left:659.160000px;}
.xb_c00175{left:667.260000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls7_c00175{letter-spacing:-0.468480pt;}
.ls6_c00175{letter-spacing:-0.128000pt;}
.ls4_c00175{letter-spacing:-0.058560pt;}
.ls3_c00175{letter-spacing:0.000000pt;}
.ls5_c00175{letter-spacing:0.058560pt;}
.ls0_c00175{letter-spacing:0.064000pt;}
.ls2_c00175{letter-spacing:0.128000pt;}
.ls1_c00175{letter-spacing:0.175680pt;}
.ws5_c00175{word-spacing:-16.128000pt;}
.ws7_c00175{word-spacing:-16.064000pt;}
.ws4_c00175{word-spacing:-16.000000pt;}
.ws8_c00175{word-spacing:-14.815680pt;}
.ws3_c00175{word-spacing:-14.698560pt;}
.ws2_c00175{word-spacing:-14.581440pt;}
.ws0_c00175{word-spacing:-13.234560pt;}
.wsd_c00175{word-spacing:-0.384000pt;}
.ws15_c00175{word-spacing:-0.320000pt;}
.ws16_c00175{word-spacing:-0.175680pt;}
.wse_c00175{word-spacing:-0.128000pt;}
.ws11_c00175{word-spacing:-0.117120pt;}
.wsa_c00175{word-spacing:-0.064000pt;}
.ws13_c00175{word-spacing:-0.058560pt;}
.ws6_c00175{word-spacing:0.000000pt;}
.ws12_c00175{word-spacing:0.058560pt;}
.ws10_c00175{word-spacing:0.117120pt;}
.wsf_c00175{word-spacing:0.128000pt;}
.ws14_c00175{word-spacing:0.527040pt;}
.ws9_c00175{word-spacing:7.261440pt;}
.wsb_c00175{word-spacing:13.312000pt;}
.wsc_c00175{word-spacing:13.440000pt;}
.ws1_c00175{word-spacing:13.568000pt;}
._2_c00175{margin-left:-1.024000pt;}
._0_c00175{width:0.936960pt;}
._1_c00175{width:13.312000pt;}
.fs1_c00175{font-size:58.560000pt;}
.fs0_c00175{font-size:64.000000pt;}
.y0_c00175{bottom:0.000000pt;}
.y27_c00175{bottom:3.679333pt;}
.y12_c00175{bottom:3.679467pt;}
.y39_c00175{bottom:3.682000pt;}
.y8_c00175{bottom:11.762133pt;}
.y1_c00175{bottom:54.887600pt;}
.y35_c00175{bottom:77.282133pt;}
.y32_c00175{bottom:78.482133pt;}
.y3b_c00175{bottom:102.760000pt;}
.y4b_c00175{bottom:124.839333pt;}
.yb_c00175{bottom:132.479333pt;}
.ya_c00175{bottom:133.679467pt;}
.y4a_c00175{bottom:143.239333pt;}
.y49_c00175{bottom:161.639333pt;}
.y48_c00175{bottom:180.039333pt;}
.y47_c00175{bottom:198.439333pt;}
.y46_c00175{bottom:216.839333pt;}
.y45_c00175{bottom:235.239333pt;}
.y44_c00175{bottom:253.639333pt;}
.y43_c00175{bottom:272.039333pt;}
.y18_c00175{bottom:279.599467pt;}
.y3d_c00175{bottom:279.679467pt;}
.y16_c00175{bottom:280.799333pt;}
.y3c_c00175{bottom:280.879467pt;}
.y42_c00175{bottom:290.439333pt;}
.y41_c00175{bottom:308.839333pt;}
.y40_c00175{bottom:327.239333pt;}
.y3f_c00175{bottom:345.639333pt;}
.y4d_c00175{bottom:349.879413pt;}
.y3e_c00175{bottom:364.039333pt;}
.y4c_c00175{bottom:366.759333pt;}
.y31_c00175{bottom:397.157333pt;}
.y38_c00175{bottom:419.239333pt;}
.y3a_c00175{bottom:424.999493pt;}
.y37_c00175{bottom:437.639333pt;}
.y34_c00175{bottom:441.879413pt;}
.y36_c00175{bottom:456.039333pt;}
.y33_c00175{bottom:458.759333pt;}
.y15_c00175{bottom:489.160000pt;}
.y26_c00175{bottom:511.239333pt;}
.y25_c00175{bottom:529.639333pt;}
.y24_c00175{bottom:548.039333pt;}
.y23_c00175{bottom:566.439333pt;}
.y22_c00175{bottom:584.839333pt;}
.y30_c00175{bottom:601.313387pt;}
.y21_c00175{bottom:603.239333pt;}
.y2f_c00175{bottom:618.193307pt;}
.y20_c00175{bottom:621.639333pt;}
.y2e_c00175{bottom:635.073227pt;}
.y1f_c00175{bottom:640.039333pt;}
.y2d_c00175{bottom:651.953147pt;}
.y1e_c00175{bottom:658.439333pt;}
.y2c_c00175{bottom:668.833067pt;}
.y1d_c00175{bottom:676.839333pt;}
.y2b_c00175{bottom:685.639787pt;}
.y1c_c00175{bottom:695.239333pt;}
.y2a_c00175{bottom:702.519707pt;}
.y1b_c00175{bottom:713.559333pt;}
.y29_c00175{bottom:719.399627pt;}
.y1a_c00175{bottom:731.959333pt;}
.y28_c00175{bottom:736.279547pt;}
.y19_c00175{bottom:750.359333pt;}
.y17_c00175{bottom:753.159467pt;}
.y9_c00175{bottom:783.480000pt;}
.y11_c00175{bottom:805.559467pt;}
.y10_c00175{bottom:823.959467pt;}
.yf_c00175{bottom:842.359467pt;}
.ye_c00175{bottom:860.759467pt;}
.yd_c00175{bottom:879.159467pt;}
.y14_c00175{bottom:883.472613pt;}
.yc_c00175{bottom:897.559467pt;}
.y13_c00175{bottom:900.279333pt;}
.y7_c00175{bottom:931.397333pt;}
.y6_c00175{bottom:977.319467pt;}
.y5_c00175{bottom:994.919467pt;}
.y4_c00175{bottom:1013.319467pt;}
.y3_c00175{bottom:1043.480107pt;}
.y2_c00175{bottom:1061.399467pt;}
.h6_c00175{height:25.280000pt;}
.h2_c00175{height:44.800000pt;}
.h3_c00175{height:48.294844pt;}
.h4_c00175{height:52.778690pt;}
.h7_c00175{height:62.483520pt;}
.h9_c00175{height:68.288000pt;}
.h5_c00175{height:69.376000pt;}
.hb_c00175{height:92.000000pt;}
.h8_c00175{height:147.197333pt;}
.ha_c00175{height:294.318667pt;}
.hc_c00175{height:294.400000pt;}
.h0_c00175{height:1122.520000pt;}
.h1_c00175{height:1122.666667pt;}
.w6_c00175{width:105.920000pt;}
.w3_c00175{width:118.000000pt;}
.w2_c00175{width:118.640000pt;}
.w5_c00175{width:132.240000pt;}
.w4_c00175{width:137.120000pt;}
.w0_c00175{width:793.701333pt;}
.w1_c00175{width:794.000000pt;}
.x0_c00175{left:0.000000pt;}
.x4_c00175{left:7.200000pt;}
.xd_c00175{left:9.200000pt;}
.x1_c00175{left:48.000000pt;}
.x8_c00175{left:106.240000pt;}
.x2_c00175{left:113.440000pt;}
.x3_c00175{left:212.160000pt;}
.xc_c00175{left:219.360000pt;}
.x5_c00175{left:330.800000pt;}
.x9_c00175{left:338.000000pt;}
.x6_c00175{left:448.800000pt;}
.xa_c00175{left:456.000000pt;}
.x7_c00175{left:585.920000pt;}
.xb_c00175{left:593.120000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00176;src:url('chunks/assets/font_4b1f25c8b7ffc63596a460a1.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00176;src:url('chunks/assets/font_d0fc62d814981294bd1e98c7.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00176;src:url('chunks/assets/font_8af641aea32b30823d380bd1.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00176;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00176{font-family:ff5_c00176;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00176;src:url('chunks/assets/font_32f550e34daf116fc252571b.woff2')format("woff");}.ff6_c00176{font-family:ff6_c00176;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00176;src:url('chunks/assets/font_124ec6e548915e124a764f91.woff2')format("woff");}.ff7_c00176{font-family:ff7_c00176;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00176;src:url('chunks/assets/font_98c14cb02330f2d7b4364022.woff2')format("woff");}.ff8_c00176{font-family:ff8_c00176;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls9_c00176{letter-spacing:-0.576000px;}
.ls8_c00176{letter-spacing:-0.527040px;}
.ls7_c00176{letter-spacing:-0.144000px;}
.ls5_c00176{letter-spacing:-0.065880px;}
.ls4_c00176{letter-spacing:0.000000px;}
.ls6_c00176{letter-spacing:0.065880px;}
.ls0_c00176{letter-spacing:0.072000px;}
.ls2_c00176{letter-spacing:0.144000px;}
.ls1_c00176{letter-spacing:0.197640px;}
.ls3_c00176{letter-spacing:21.240000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00176{word-spacing:-18.144000px;}
.ws7_c00176{word-spacing:-18.072000px;}
.ws4_c00176{word-spacing:-18.000000px;}
.wsd_c00176{word-spacing:-17.424000px;}
.ws8_c00176{word-spacing:-16.667640px;}
.ws3_c00176{word-spacing:-16.535880px;}
.wsb_c00176{word-spacing:-16.470000px;}
.ws2_c00176{word-spacing:-16.404120px;}
.ws0_c00176{word-spacing:-14.888880px;}
.ws1e_c00176{word-spacing:-0.648000px;}
.ws1d_c00176{word-spacing:-0.504000px;}
.ws12_c00176{word-spacing:-0.432000px;}
.ws1a_c00176{word-spacing:-0.360000px;}
.wsc_c00176{word-spacing:-0.216000px;}
.ws1b_c00176{word-spacing:-0.197640px;}
.ws13_c00176{word-spacing:-0.144000px;}
.ws16_c00176{word-spacing:-0.131760px;}
.wsf_c00176{word-spacing:-0.072000px;}
.ws18_c00176{word-spacing:-0.065880px;}
.ws6_c00176{word-spacing:0.000000px;}
.ws17_c00176{word-spacing:0.065880px;}
.ws15_c00176{word-spacing:0.131760px;}
.ws14_c00176{word-spacing:0.144000px;}
.ws1f_c00176{word-spacing:0.360000px;}
.wsa_c00176{word-spacing:0.379800px;}
.ws19_c00176{word-spacing:0.592920px;}
.ws21_c00176{word-spacing:2.880000px;}
.ws22_c00176{word-spacing:3.240000px;}
.ws9_c00176{word-spacing:5.544000px;}
.ws1c_c00176{word-spacing:5.760000px;}
.wse_c00176{word-spacing:8.169120px;}
.ws20_c00176{word-spacing:14.688000px;}
.ws10_c00176{word-spacing:14.976000px;}
.ws11_c00176{word-spacing:15.120000px;}
.ws1_c00176{word-spacing:15.264000px;}
.ws23_c00176{word-spacing:17.568000px;}
._2_c00176{margin-left:-1.152000px;}
._0_c00176{width:1.054080px;}
._3_c00176{width:5.256000px;}
._1_c00176{width:14.976000px;}
.fc2_c00176{color:transparent;}
.fc1_c00176{color:rgb(0,0,0);}
.fc0_c00176{color:rgb(35,31,32);}
.fs1_c00176{font-size:65.880000px;}
.fs0_c00176{font-size:72.000000px;}
.y0_c00176{bottom:0.000000px;}
.y27_c00176{bottom:4.139250px;}
.y12_c00176{bottom:4.139400px;}
.y39_c00176{bottom:4.140750px;}
.y4f_c00176{bottom:13.229400px;}
.y8_c00176{bottom:13.230900px;}
.y54_c00176{bottom:13.232400px;}
.y1_c00176{bottom:61.748550px;}
.y52_c00176{bottom:86.939400px;}
.y35_c00176{bottom:86.940900px;}
.y51_c00176{bottom:88.289400px;}
.y32_c00176{bottom:88.290900px;}
.y6d_c00176{bottom:107.639400px;}
.y57_c00176{bottom:107.642250px;}
.y6a_c00176{bottom:108.989400px;}
.y56_c00176{bottom:108.992400px;}
.y3b_c00176{bottom:115.605000px;}
.y7d_c00176{bottom:139.724400px;}
.y4b_c00176{bottom:140.444250px;}
.yb_c00176{bottom:149.039250px;}
.ya_c00176{bottom:150.389400px;}
.y4a_c00176{bottom:161.144250px;}
.y72_c00176{bottom:169.739250px;}
.y7c_c00176{bottom:170.774400px;}
.y71_c00176{bottom:171.089250px;}
.y49_c00176{bottom:181.844250px;}
.y7b_c00176{bottom:201.824400px;}
.y48_c00176{bottom:202.544250px;}
.y47_c00176{bottom:223.244250px;}
.y7a_c00176{bottom:232.874400px;}
.y46_c00176{bottom:243.944250px;}
.y45_c00176{bottom:264.644250px;}
.y70_c00176{bottom:281.205000px;}
.y44_c00176{bottom:285.344250px;}
.y43_c00176{bottom:306.044250px;}
.y79_c00176{bottom:306.044400px;}
.y18_c00176{bottom:314.549400px;}
.y3d_c00176{bottom:314.639400px;}
.y16_c00176{bottom:315.899250px;}
.y59_c00176{bottom:315.899400px;}
.y3c_c00176{bottom:315.989400px;}
.y42_c00176{bottom:326.744250px;}
.y78_c00176{bottom:326.744400px;}
.y41_c00176{bottom:347.444250px;}
.y77_c00176{bottom:347.444400px;}
.y40_c00176{bottom:368.144250px;}
.y76_c00176{bottom:368.144400px;}
.y3f_c00176{bottom:388.844250px;}
.y75_c00176{bottom:388.844400px;}
.y4d_c00176{bottom:393.614340px;}
.y3e_c00176{bottom:409.544250px;}
.y74_c00176{bottom:409.544400px;}
.y4c_c00176{bottom:412.604250px;}
.y73_c00176{bottom:430.244400px;}
.y31_c00176{bottom:446.803500px;}
.y50_c00176{bottom:446.805000px;}
.y69_c00176{bottom:467.505000px;}
.y38_c00176{bottom:471.644250px;}
.y3a_c00176{bottom:478.124430px;}
.y37_c00176{bottom:492.344250px;}
.y34_c00176{bottom:497.114340px;}
.y36_c00176{bottom:513.044250px;}
.y33_c00176{bottom:516.104250px;}
.y6f_c00176{bottom:533.744250px;}
.y6c_c00176{bottom:538.514490px;}
.y15_c00176{bottom:550.305000px;}
.y6e_c00176{bottom:554.444250px;}
.y6b_c00176{bottom:557.504400px;}
.y26_c00176{bottom:575.144250px;}
.y58_c00176{bottom:591.705000px;}
.y25_c00176{bottom:595.844250px;}
.y24_c00176{bottom:616.544250px;}
.y68_c00176{bottom:616.544400px;}
.y23_c00176{bottom:637.244250px;}
.y67_c00176{bottom:637.244400px;}
.y22_c00176{bottom:657.944250px;}
.y66_c00176{bottom:657.944400px;}
.y30_c00176{bottom:676.477560px;}
.y21_c00176{bottom:678.644250px;}
.y65_c00176{bottom:678.644400px;}
.y2f_c00176{bottom:695.467470px;}
.y20_c00176{bottom:699.344250px;}
.y64_c00176{bottom:699.344400px;}
.y2e_c00176{bottom:714.457380px;}
.y1f_c00176{bottom:720.044250px;}
.y63_c00176{bottom:720.044400px;}
.y2d_c00176{bottom:733.447290px;}
.y1e_c00176{bottom:740.744250px;}
.y62_c00176{bottom:740.744400px;}
.y2c_c00176{bottom:752.437200px;}
.y1d_c00176{bottom:761.444250px;}
.y61_c00176{bottom:761.444400px;}
.y2b_c00176{bottom:771.344760px;}
.y1c_c00176{bottom:782.144250px;}
.y60_c00176{bottom:782.144400px;}
.y2a_c00176{bottom:790.334670px;}
.y1b_c00176{bottom:802.754250px;}
.y5f_c00176{bottom:802.754400px;}
.y29_c00176{bottom:809.324580px;}
.y1a_c00176{bottom:823.454250px;}
.y5e_c00176{bottom:823.454400px;}
.y28_c00176{bottom:828.314490px;}
.y19_c00176{bottom:844.154250px;}
.y5d_c00176{bottom:844.154400px;}
.y17_c00176{bottom:847.304400px;}
.y5c_c00176{bottom:864.854400px;}
.y9_c00176{bottom:881.415000px;}
.y5b_c00176{bottom:885.554400px;}
.y5a_c00176{bottom:888.704250px;}
.y11_c00176{bottom:906.254400px;}
.y55_c00176{bottom:922.812000px;}
.y10_c00176{bottom:926.954400px;}
.yf_c00176{bottom:947.654400px;}
.ye_c00176{bottom:968.354400px;}
.yd_c00176{bottom:989.054400px;}
.y14_c00176{bottom:993.906690px;}
.yc_c00176{bottom:1009.754400px;}
.y13_c00176{bottom:1012.814250px;}
.y53_c00176{bottom:1047.822000px;}
.y7_c00176{bottom:1047.823500px;}
.y4e_c00176{bottom:1047.825000px;}
.y6_c00176{bottom:1099.484400px;}
.y5_c00176{bottom:1119.284400px;}
.y4_c00176{bottom:1139.984400px;}
.y3_c00176{bottom:1173.915120px;}
.y2_c00176{bottom:1194.074400px;}
.h6_c00176{height:28.440000px;}
.h2_c00176{height:50.400000px;}
.h3_c00176{height:54.331699px;}
.h4_c00176{height:59.376026px;}
.h7_c00176{height:70.293960px;}
.h9_c00176{height:76.824000px;}
.h5_c00176{height:78.048000px;}
.hb_c00176{height:103.500000px;}
.he_c00176{height:124.200000px;}
.h8_c00176{height:165.598500px;}
.hd_c00176{height:165.600000px;}
.h10_c00176{height:186.300000px;}
.hf_c00176{height:331.107000px;}
.ha_c00176{height:331.108500px;}
.hc_c00176{height:331.200000px;}
.h0_c00176{height:1262.835000px;}
.h1_c00176{height:1263.000000px;}
.w7_c00176{width:-654.234000px;}
.w3_c00176{width:-520.764000px;}
.w4_c00176{width:-388.014000px;}
.w5_c00176{width:-233.754000px;}
.w6_c00176{width:-84.984000px;}
.w2_c00176{width:0.000000px;}
.w8_c00176{width:0.066000px;}
.wd_c00176{width:119.793000px;}
.w9_c00176{width:134.190000px;}
.wa_c00176{width:138.867000px;}
.wc_c00176{width:145.980000px;}
.wb_c00176{width:149.670000px;}
.w0_c00176{width:892.914000px;}
.w1_c00176{width:893.250000px;}
.x1_c00176{left:-838.913400px;}
.x2_c00176{left:-765.293400px;}
.x3_c00176{left:-646.133400px;}
.x7_c00176{left:-643.883400px;}
.x4_c00176{left:-512.663400px;}
.x8_c00176{left:-510.413400px;}
.x5_c00176{left:-379.913400px;}
.x6_c00176{left:-225.653400px;}
.x0_c00176{left:0.000000px;}
.xd_c00176{left:8.100000px;}
.x11_c00176{left:119.520000px;}
.xb_c00176{left:127.620000px;}
.x16_c00176{left:159.570000px;}
.xc_c00176{left:239.310000px;}
.x12_c00176{left:247.410000px;}
.xe_c00176{left:373.500000px;}
.x13_c00176{left:381.600000px;}
.xf_c00176{left:512.370000px;}
.x14_c00176{left:520.470000px;}
.x10_c00176{left:662.040000px;}
.x15_c00176{left:670.140000px;}
.xa_c00176{left:692.370000px;}
.x9_c00176{left:804.366150px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls9_c00176{letter-spacing:-0.512000pt;}
.ls8_c00176{letter-spacing:-0.468480pt;}
.ls7_c00176{letter-spacing:-0.128000pt;}
.ls5_c00176{letter-spacing:-0.058560pt;}
.ls4_c00176{letter-spacing:0.000000pt;}
.ls6_c00176{letter-spacing:0.058560pt;}
.ls0_c00176{letter-spacing:0.064000pt;}
.ls2_c00176{letter-spacing:0.128000pt;}
.ls1_c00176{letter-spacing:0.175680pt;}
.ls3_c00176{letter-spacing:18.880000pt;}
.ws5_c00176{word-spacing:-16.128000pt;}
.ws7_c00176{word-spacing:-16.064000pt;}
.ws4_c00176{word-spacing:-16.000000pt;}
.wsd_c00176{word-spacing:-15.488000pt;}
.ws8_c00176{word-spacing:-14.815680pt;}
.ws3_c00176{word-spacing:-14.698560pt;}
.wsb_c00176{word-spacing:-14.640000pt;}
.ws2_c00176{word-spacing:-14.581440pt;}
.ws0_c00176{word-spacing:-13.234560pt;}
.ws1e_c00176{word-spacing:-0.576000pt;}
.ws1d_c00176{word-spacing:-0.448000pt;}
.ws12_c00176{word-spacing:-0.384000pt;}
.ws1a_c00176{word-spacing:-0.320000pt;}
.wsc_c00176{word-spacing:-0.192000pt;}
.ws1b_c00176{word-spacing:-0.175680pt;}
.ws13_c00176{word-spacing:-0.128000pt;}
.ws16_c00176{word-spacing:-0.117120pt;}
.wsf_c00176{word-spacing:-0.064000pt;}
.ws18_c00176{word-spacing:-0.058560pt;}
.ws6_c00176{word-spacing:0.000000pt;}
.ws17_c00176{word-spacing:0.058560pt;}
.ws15_c00176{word-spacing:0.117120pt;}
.ws14_c00176{word-spacing:0.128000pt;}
.ws1f_c00176{word-spacing:0.320000pt;}
.wsa_c00176{word-spacing:0.337600pt;}
.ws19_c00176{word-spacing:0.527040pt;}
.ws21_c00176{word-spacing:2.560000pt;}
.ws22_c00176{word-spacing:2.880000pt;}
.ws9_c00176{word-spacing:4.928000pt;}
.ws1c_c00176{word-spacing:5.120000pt;}
.wse_c00176{word-spacing:7.261440pt;}
.ws20_c00176{word-spacing:13.056000pt;}
.ws10_c00176{word-spacing:13.312000pt;}
.ws11_c00176{word-spacing:13.440000pt;}
.ws1_c00176{word-spacing:13.568000pt;}
.ws23_c00176{word-spacing:15.616000pt;}
._2_c00176{margin-left:-1.024000pt;}
._0_c00176{width:0.936960pt;}
._3_c00176{width:4.672000pt;}
._1_c00176{width:13.312000pt;}
.fs1_c00176{font-size:58.560000pt;}
.fs0_c00176{font-size:64.000000pt;}
.y0_c00176{bottom:0.000000pt;}
.y27_c00176{bottom:3.679333pt;}
.y12_c00176{bottom:3.679467pt;}
.y39_c00176{bottom:3.680667pt;}
.y4f_c00176{bottom:11.759467pt;}
.y8_c00176{bottom:11.760800pt;}
.y54_c00176{bottom:11.762133pt;}
.y1_c00176{bottom:54.887600pt;}
.y52_c00176{bottom:77.279467pt;}
.y35_c00176{bottom:77.280800pt;}
.y51_c00176{bottom:78.479467pt;}
.y32_c00176{bottom:78.480800pt;}
.y6d_c00176{bottom:95.679467pt;}
.y57_c00176{bottom:95.682000pt;}
.y6a_c00176{bottom:96.879467pt;}
.y56_c00176{bottom:96.882133pt;}
.y3b_c00176{bottom:102.760000pt;}
.y7d_c00176{bottom:124.199467pt;}
.y4b_c00176{bottom:124.839333pt;}
.yb_c00176{bottom:132.479333pt;}
.ya_c00176{bottom:133.679467pt;}
.y4a_c00176{bottom:143.239333pt;}
.y72_c00176{bottom:150.879333pt;}
.y7c_c00176{bottom:151.799467pt;}
.y71_c00176{bottom:152.079333pt;}
.y49_c00176{bottom:161.639333pt;}
.y7b_c00176{bottom:179.399467pt;}
.y48_c00176{bottom:180.039333pt;}
.y47_c00176{bottom:198.439333pt;}
.y7a_c00176{bottom:206.999467pt;}
.y46_c00176{bottom:216.839333pt;}
.y45_c00176{bottom:235.239333pt;}
.y70_c00176{bottom:249.960000pt;}
.y44_c00176{bottom:253.639333pt;}
.y43_c00176{bottom:272.039333pt;}
.y79_c00176{bottom:272.039467pt;}
.y18_c00176{bottom:279.599467pt;}
.y3d_c00176{bottom:279.679467pt;}
.y16_c00176{bottom:280.799333pt;}
.y59_c00176{bottom:280.799467pt;}
.y3c_c00176{bottom:280.879467pt;}
.y42_c00176{bottom:290.439333pt;}
.y78_c00176{bottom:290.439467pt;}
.y41_c00176{bottom:308.839333pt;}
.y77_c00176{bottom:308.839467pt;}
.y40_c00176{bottom:327.239333pt;}
.y76_c00176{bottom:327.239467pt;}
.y3f_c00176{bottom:345.639333pt;}
.y75_c00176{bottom:345.639467pt;}
.y4d_c00176{bottom:349.879413pt;}
.y3e_c00176{bottom:364.039333pt;}
.y74_c00176{bottom:364.039467pt;}
.y4c_c00176{bottom:366.759333pt;}
.y73_c00176{bottom:382.439467pt;}
.y31_c00176{bottom:397.158667pt;}
.y50_c00176{bottom:397.160000pt;}
.y69_c00176{bottom:415.560000pt;}
.y38_c00176{bottom:419.239333pt;}
.y3a_c00176{bottom:424.999493pt;}
.y37_c00176{bottom:437.639333pt;}
.y34_c00176{bottom:441.879413pt;}
.y36_c00176{bottom:456.039333pt;}
.y33_c00176{bottom:458.759333pt;}
.y6f_c00176{bottom:474.439333pt;}
.y6c_c00176{bottom:478.679547pt;}
.y15_c00176{bottom:489.160000pt;}
.y6e_c00176{bottom:492.839333pt;}
.y6b_c00176{bottom:495.559467pt;}
.y26_c00176{bottom:511.239333pt;}
.y58_c00176{bottom:525.960000pt;}
.y25_c00176{bottom:529.639333pt;}
.y24_c00176{bottom:548.039333pt;}
.y68_c00176{bottom:548.039467pt;}
.y23_c00176{bottom:566.439333pt;}
.y67_c00176{bottom:566.439467pt;}
.y22_c00176{bottom:584.839333pt;}
.y66_c00176{bottom:584.839467pt;}
.y30_c00176{bottom:601.313387pt;}
.y21_c00176{bottom:603.239333pt;}
.y65_c00176{bottom:603.239467pt;}
.y2f_c00176{bottom:618.193307pt;}
.y20_c00176{bottom:621.639333pt;}
.y64_c00176{bottom:621.639467pt;}
.y2e_c00176{bottom:635.073227pt;}
.y1f_c00176{bottom:640.039333pt;}
.y63_c00176{bottom:640.039467pt;}
.y2d_c00176{bottom:651.953147pt;}
.y1e_c00176{bottom:658.439333pt;}
.y62_c00176{bottom:658.439467pt;}
.y2c_c00176{bottom:668.833067pt;}
.y1d_c00176{bottom:676.839333pt;}
.y61_c00176{bottom:676.839467pt;}
.y2b_c00176{bottom:685.639787pt;}
.y1c_c00176{bottom:695.239333pt;}
.y60_c00176{bottom:695.239467pt;}
.y2a_c00176{bottom:702.519707pt;}
.y1b_c00176{bottom:713.559333pt;}
.y5f_c00176{bottom:713.559467pt;}
.y29_c00176{bottom:719.399627pt;}
.y1a_c00176{bottom:731.959333pt;}
.y5e_c00176{bottom:731.959467pt;}
.y28_c00176{bottom:736.279547pt;}
.y19_c00176{bottom:750.359333pt;}
.y5d_c00176{bottom:750.359467pt;}
.y17_c00176{bottom:753.159467pt;}
.y5c_c00176{bottom:768.759467pt;}
.y9_c00176{bottom:783.480000pt;}
.y5b_c00176{bottom:787.159467pt;}
.y5a_c00176{bottom:789.959333pt;}
.y11_c00176{bottom:805.559467pt;}
.y55_c00176{bottom:820.277333pt;}
.y10_c00176{bottom:823.959467pt;}
.yf_c00176{bottom:842.359467pt;}
.ye_c00176{bottom:860.759467pt;}
.yd_c00176{bottom:879.159467pt;}
.y14_c00176{bottom:883.472613pt;}
.yc_c00176{bottom:897.559467pt;}
.y13_c00176{bottom:900.279333pt;}
.y53_c00176{bottom:931.397333pt;}
.y7_c00176{bottom:931.398667pt;}
.y4e_c00176{bottom:931.400000pt;}
.y6_c00176{bottom:977.319467pt;}
.y5_c00176{bottom:994.919467pt;}
.y4_c00176{bottom:1013.319467pt;}
.y3_c00176{bottom:1043.480107pt;}
.y2_c00176{bottom:1061.399467pt;}
.h6_c00176{height:25.280000pt;}
.h2_c00176{height:44.800000pt;}
.h3_c00176{height:48.294844pt;}
.h4_c00176{height:52.778690pt;}
.h7_c00176{height:62.483520pt;}
.h9_c00176{height:68.288000pt;}
.h5_c00176{height:69.376000pt;}
.hb_c00176{height:92.000000pt;}
.he_c00176{height:110.400000pt;}
.h8_c00176{height:147.198667pt;}
.hd_c00176{height:147.200000pt;}
.h10_c00176{height:165.600000pt;}
.hf_c00176{height:294.317333pt;}
.ha_c00176{height:294.318667pt;}
.hc_c00176{height:294.400000pt;}
.h0_c00176{height:1122.520000pt;}
.h1_c00176{height:1122.666667pt;}
.w7_c00176{width:-581.541333pt;}
.w3_c00176{width:-462.901333pt;}
.w4_c00176{width:-344.901333pt;}
.w5_c00176{width:-207.781333pt;}
.w6_c00176{width:-75.541333pt;}
.w2_c00176{width:0.000000pt;}
.w8_c00176{width:0.058667pt;}
.wd_c00176{width:106.482667pt;}
.w9_c00176{width:119.280000pt;}
.wa_c00176{width:123.437333pt;}
.wc_c00176{width:129.760000pt;}
.wb_c00176{width:133.040000pt;}
.w0_c00176{width:793.701333pt;}
.w1_c00176{width:794.000000pt;}
.x1_c00176{left:-745.700800pt;}
.x2_c00176{left:-680.260800pt;}
.x3_c00176{left:-574.340800pt;}
.x7_c00176{left:-572.340800pt;}
.x4_c00176{left:-455.700800pt;}
.x8_c00176{left:-453.700800pt;}
.x5_c00176{left:-337.700800pt;}
.x6_c00176{left:-200.580800pt;}
.x0_c00176{left:0.000000pt;}
.xd_c00176{left:7.200000pt;}
.x11_c00176{left:106.240000pt;}
.xb_c00176{left:113.440000pt;}
.x16_c00176{left:141.840000pt;}
.xc_c00176{left:212.720000pt;}
.x12_c00176{left:219.920000pt;}
.xe_c00176{left:332.000000pt;}
.x13_c00176{left:339.200000pt;}
.xf_c00176{left:455.440000pt;}
.x14_c00176{left:462.640000pt;}
.x10_c00176{left:588.480000pt;}
.x15_c00176{left:595.680000pt;}
.xa_c00176{left:615.440000pt;}
.x9_c00176{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00177;src:url('chunks/assets/font_31dd576522c21121797a6d9d.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00177;src:url('chunks/assets/font_fe00fc30595e8f0747797532.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00177;src:url('chunks/assets/font_8ddca0d7b4abec38148f707e.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls6_c00177{letter-spacing:-0.360000px;}
.ls5_c00177{letter-spacing:0.000000px;}
.ls0_c00177{letter-spacing:0.072000px;}
.ls1_c00177{letter-spacing:0.144000px;}
.ls3_c00177{letter-spacing:19.094400px;}
.ls4_c00177{letter-spacing:21.960000px;}
.ls2_c00177{letter-spacing:29.880000px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00177{word-spacing:-18.072000px;}
.ws1_c00177{word-spacing:-18.000000px;}
.ws0_c00177{word-spacing:-14.888880px;}
.ws2c_c00177{word-spacing:-0.432000px;}
.ws6_c00177{word-spacing:-0.288000px;}
.ws21_c00177{word-spacing:-0.072000px;}
.ws7_c00177{word-spacing:0.000000px;}
.ws1d_c00177{word-spacing:0.288000px;}
.ws20_c00177{word-spacing:0.360000px;}
.ws25_c00177{word-spacing:1.008000px;}
.ws18_c00177{word-spacing:1.080000px;}
.ws24_c00177{word-spacing:1.368000px;}
.ws2b_c00177{word-spacing:1.656000px;}
.ws2a_c00177{word-spacing:2.160000px;}
.ws2d_c00177{word-spacing:3.168000px;}
.ws29_c00177{word-spacing:3.888000px;}
.ws28_c00177{word-spacing:3.960000px;}
.ws16_c00177{word-spacing:6.048000px;}
.ws17_c00177{word-spacing:6.120000px;}
.wse_c00177{word-spacing:7.488000px;}
.wsd_c00177{word-spacing:7.560000px;}
.ws8_c00177{word-spacing:8.169120px;}
.ws5_c00177{word-spacing:8.928000px;}
.ws1b_c00177{word-spacing:9.288000px;}
.ws1c_c00177{word-spacing:9.648000px;}
.ws1f_c00177{word-spacing:11.520000px;}
.ws1e_c00177{word-spacing:11.808000px;}
.ws12_c00177{word-spacing:13.680000px;}
.ws11_c00177{word-spacing:13.968000px;}
.wsb_c00177{word-spacing:16.128000px;}
.wsc_c00177{word-spacing:16.200000px;}
.ws9_c00177{word-spacing:16.848000px;}
.wsa_c00177{word-spacing:16.920000px;}
.ws13_c00177{word-spacing:17.208000px;}
.ws14_c00177{word-spacing:17.640000px;}
.ws22_c00177{word-spacing:18.000000px;}
.ws15_c00177{word-spacing:22.320000px;}
.wsf_c00177{word-spacing:24.048000px;}
.ws26_c00177{word-spacing:24.624000px;}
.ws27_c00177{word-spacing:25.200000px;}
.ws23_c00177{word-spacing:25.920000px;}
.ws1a_c00177{word-spacing:26.928000px;}
.ws19_c00177{word-spacing:27.000000px;}
.ws4_c00177{word-spacing:29.448000px;}
.ws3_c00177{word-spacing:29.520000px;}
.ws10_c00177{word-spacing:30.960000px;}
._1_c00177{margin-left:-1.310400px;}
._0_c00177{width:1.054080px;}
._2_c00177{width:25.632000px;}
.fc1_c00177{color:rgb(0,0,0);}
.fc0_c00177{color:rgb(35,31,32);}
.fs1_c00177{font-size:65.880000px;}
.fs0_c00177{font-size:72.000000px;}
.y0_c00177{bottom:0.000000px;}
.y1_c00177{bottom:61.748550px;}
.y21_c00177{bottom:115.424400px;}
.y20_c00177{bottom:146.474400px;}
.y1f_c00177{bottom:208.574400px;}
.y1e_c00177{bottom:239.624400px;}
.y1d_c00177{bottom:270.674400px;}
.y1c_c00177{bottom:301.634400px;}
.y1b_c00177{bottom:332.774400px;}
.y1a_c00177{bottom:394.874400px;}
.y19_c00177{bottom:425.924400px;}
.y18_c00177{bottom:456.974400px;}
.y17_c00177{bottom:488.024400px;}
.y16_c00177{bottom:519.074400px;}
.y15_c00177{bottom:581.174400px;}
.y14_c00177{bottom:612.224400px;}
.y13_c00177{bottom:643.274400px;}
.y12_c00177{bottom:674.324400px;}
.y11_c00177{bottom:705.374400px;}
.y10_c00177{bottom:736.424400px;}
.yf_c00177{bottom:767.384400px;}
.ye_c00177{bottom:798.434400px;}
.yd_c00177{bottom:829.484400px;}
.yc_c00177{bottom:891.584400px;}
.yb_c00177{bottom:922.634400px;}
.ya_c00177{bottom:953.684400px;}
.y9_c00177{bottom:984.734400px;}
.y8_c00177{bottom:1015.784400px;}
.y7_c00177{bottom:1046.834400px;}
.y6_c00177{bottom:1077.884400px;}
.y5_c00177{bottom:1108.934400px;}
.y4_c00177{bottom:1139.984400px;}
.y3_c00177{bottom:1173.915120px;}
.y2_c00177{bottom:1194.074400px;}
.h2_c00177{height:50.400000px;}
.h3_c00177{height:54.331699px;}
.h4_c00177{height:59.376026px;}
.h5_c00177{height:76.824000px;}
.h6_c00177{height:78.048000px;}
.h0_c00177{height:1262.835000px;}
.h1_c00177{height:1263.000000px;}
.w0_c00177{width:892.914000px;}
.w1_c00177{width:893.250000px;}
.x0_c00177{left:0.000000px;}
.x1_c00177{left:54.000000px;}
.x2_c00177{left:127.620000px;}
.x3_c00177{left:159.570000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls6_c00177{letter-spacing:-0.320000pt;}
.ls5_c00177{letter-spacing:0.000000pt;}
.ls0_c00177{letter-spacing:0.064000pt;}
.ls1_c00177{letter-spacing:0.128000pt;}
.ls3_c00177{letter-spacing:16.972800pt;}
.ls4_c00177{letter-spacing:19.520000pt;}
.ls2_c00177{letter-spacing:26.560000pt;}
.ws2_c00177{word-spacing:-16.064000pt;}
.ws1_c00177{word-spacing:-16.000000pt;}
.ws0_c00177{word-spacing:-13.234560pt;}
.ws2c_c00177{word-spacing:-0.384000pt;}
.ws6_c00177{word-spacing:-0.256000pt;}
.ws21_c00177{word-spacing:-0.064000pt;}
.ws7_c00177{word-spacing:0.000000pt;}
.ws1d_c00177{word-spacing:0.256000pt;}
.ws20_c00177{word-spacing:0.320000pt;}
.ws25_c00177{word-spacing:0.896000pt;}
.ws18_c00177{word-spacing:0.960000pt;}
.ws24_c00177{word-spacing:1.216000pt;}
.ws2b_c00177{word-spacing:1.472000pt;}
.ws2a_c00177{word-spacing:1.920000pt;}
.ws2d_c00177{word-spacing:2.816000pt;}
.ws29_c00177{word-spacing:3.456000pt;}
.ws28_c00177{word-spacing:3.520000pt;}
.ws16_c00177{word-spacing:5.376000pt;}
.ws17_c00177{word-spacing:5.440000pt;}
.wse_c00177{word-spacing:6.656000pt;}
.wsd_c00177{word-spacing:6.720000pt;}
.ws8_c00177{word-spacing:7.261440pt;}
.ws5_c00177{word-spacing:7.936000pt;}
.ws1b_c00177{word-spacing:8.256000pt;}
.ws1c_c00177{word-spacing:8.576000pt;}
.ws1f_c00177{word-spacing:10.240000pt;}
.ws1e_c00177{word-spacing:10.496000pt;}
.ws12_c00177{word-spacing:12.160000pt;}
.ws11_c00177{word-spacing:12.416000pt;}
.wsb_c00177{word-spacing:14.336000pt;}
.wsc_c00177{word-spacing:14.400000pt;}
.ws9_c00177{word-spacing:14.976000pt;}
.wsa_c00177{word-spacing:15.040000pt;}
.ws13_c00177{word-spacing:15.296000pt;}
.ws14_c00177{word-spacing:15.680000pt;}
.ws22_c00177{word-spacing:16.000000pt;}
.ws15_c00177{word-spacing:19.840000pt;}
.wsf_c00177{word-spacing:21.376000pt;}
.ws26_c00177{word-spacing:21.888000pt;}
.ws27_c00177{word-spacing:22.400000pt;}
.ws23_c00177{word-spacing:23.040000pt;}
.ws1a_c00177{word-spacing:23.936000pt;}
.ws19_c00177{word-spacing:24.000000pt;}
.ws4_c00177{word-spacing:26.176000pt;}
.ws3_c00177{word-spacing:26.240000pt;}
.ws10_c00177{word-spacing:27.520000pt;}
._1_c00177{margin-left:-1.164800pt;}
._0_c00177{width:0.936960pt;}
._2_c00177{width:22.784000pt;}
.fs1_c00177{font-size:58.560000pt;}
.fs0_c00177{font-size:64.000000pt;}
.y0_c00177{bottom:0.000000pt;}
.y1_c00177{bottom:54.887600pt;}
.y21_c00177{bottom:102.599467pt;}
.y20_c00177{bottom:130.199467pt;}
.y1f_c00177{bottom:185.399467pt;}
.y1e_c00177{bottom:212.999467pt;}
.y1d_c00177{bottom:240.599467pt;}
.y1c_c00177{bottom:268.119467pt;}
.y1b_c00177{bottom:295.799467pt;}
.y1a_c00177{bottom:350.999467pt;}
.y19_c00177{bottom:378.599467pt;}
.y18_c00177{bottom:406.199467pt;}
.y17_c00177{bottom:433.799467pt;}
.y16_c00177{bottom:461.399467pt;}
.y15_c00177{bottom:516.599467pt;}
.y14_c00177{bottom:544.199467pt;}
.y13_c00177{bottom:571.799467pt;}
.y12_c00177{bottom:599.399467pt;}
.y11_c00177{bottom:626.999467pt;}
.y10_c00177{bottom:654.599467pt;}
.yf_c00177{bottom:682.119467pt;}
.ye_c00177{bottom:709.719467pt;}
.yd_c00177{bottom:737.319467pt;}
.yc_c00177{bottom:792.519467pt;}
.yb_c00177{bottom:820.119467pt;}
.ya_c00177{bottom:847.719467pt;}
.y9_c00177{bottom:875.319467pt;}
.y8_c00177{bottom:902.919467pt;}
.y7_c00177{bottom:930.519467pt;}
.y6_c00177{bottom:958.119467pt;}
.y5_c00177{bottom:985.719467pt;}
.y4_c00177{bottom:1013.319467pt;}
.y3_c00177{bottom:1043.480107pt;}
.y2_c00177{bottom:1061.399467pt;}
.h2_c00177{height:44.800000pt;}
.h3_c00177{height:48.294844pt;}
.h4_c00177{height:52.778690pt;}
.h5_c00177{height:68.288000pt;}
.h6_c00177{height:69.376000pt;}
.h0_c00177{height:1122.520000pt;}
.h1_c00177{height:1122.666667pt;}
.w0_c00177{width:793.701333pt;}
.w1_c00177{width:794.000000pt;}
.x0_c00177{left:0.000000pt;}
.x1_c00177{left:48.000000pt;}
.x2_c00177{left:113.440000pt;}
.x3_c00177{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00178;src:url('chunks/assets/font_192a243c2123189cee6759f6.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00178;src:url('chunks/assets/font_025d5c85028c76b0d9708723.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00178;src:url('chunks/assets/font_2e92f7f65a8a623bf9c6f097.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00178;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00178;src:url('chunks/assets/font_f8f69ec6b401adb7071ab1d4.woff2')format("woff");}.ff6_c00178{font-family:ff6_c00178;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00178;src:url('chunks/assets/font_7f577cbc1af7b79259b1d0ca.woff2')format("woff");}.ff7_c00178{font-family:ff7_c00178;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00178;src:url('chunks/assets/font_489c907c507d0adf30f2102f.woff2')format("woff");}.ff8_c00178{font-family:ff8_c00178;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00178;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff9_c00178{font-family:ff9_c00178;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.lsb_c00178{letter-spacing:-0.360000px;}
.lsc_c00178{letter-spacing:-0.072000px;}
.lsa_c00178{letter-spacing:0.000000px;}
.ls0_c00178{letter-spacing:0.072000px;}
.ls1_c00178{letter-spacing:0.144000px;}
.ls8_c00178{letter-spacing:0.360000px;}
.ls3_c00178{letter-spacing:19.094400px;}
.ls5_c00178{letter-spacing:19.101600px;}
.ls4_c00178{letter-spacing:21.960000px;}
.ls6_c00178{letter-spacing:23.040000px;}
.ls7_c00178{letter-spacing:23.126400px;}
.ls2_c00178{letter-spacing:29.880000px;}
.ls9_c00178{letter-spacing:45.432000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00178{word-spacing:-18.144000px;}
.ws2_c00178{word-spacing:-18.072000px;}
.ws1_c00178{word-spacing:-18.000000px;}
.ws0_c00178{word-spacing:-14.888880px;}
.ws2e_c00178{word-spacing:-0.432000px;}
.ws35_c00178{word-spacing:-0.360000px;}
.ws6_c00178{word-spacing:-0.288000px;}
.ws30_c00178{word-spacing:-0.131760px;}
.ws23_c00178{word-spacing:-0.072000px;}
.ws9_c00178{word-spacing:0.000000px;}
.ws3b_c00178{word-spacing:0.072000px;}
.ws1f_c00178{word-spacing:0.288000px;}
.ws22_c00178{word-spacing:0.360000px;}
.ws27_c00178{word-spacing:1.008000px;}
.ws1a_c00178{word-spacing:1.080000px;}
.ws26_c00178{word-spacing:1.368000px;}
.ws3c_c00178{word-spacing:1.440000px;}
.ws2d_c00178{word-spacing:1.656000px;}
.ws2c_c00178{word-spacing:2.160000px;}
.ws2f_c00178{word-spacing:3.168000px;}
.ws2b_c00178{word-spacing:3.888000px;}
.ws2a_c00178{word-spacing:3.960000px;}
.ws34_c00178{word-spacing:4.896000px;}
.ws33_c00178{word-spacing:4.968000px;}
.ws31_c00178{word-spacing:5.040000px;}
.ws7_c00178{word-spacing:5.184000px;}
.ws32_c00178{word-spacing:5.400000px;}
.ws18_c00178{word-spacing:6.048000px;}
.ws19_c00178{word-spacing:6.120000px;}
.ws3e_c00178{word-spacing:6.840000px;}
.ws3f_c00178{word-spacing:7.128000px;}
.ws40_c00178{word-spacing:7.416000px;}
.ws10_c00178{word-spacing:7.488000px;}
.wsf_c00178{word-spacing:7.560000px;}
.wsa_c00178{word-spacing:8.169120px;}
.ws5_c00178{word-spacing:8.928000px;}
.ws1d_c00178{word-spacing:9.288000px;}
.ws1e_c00178{word-spacing:9.648000px;}
.ws41_c00178{word-spacing:10.440000px;}
.ws21_c00178{word-spacing:11.520000px;}
.ws20_c00178{word-spacing:11.808000px;}
.ws39_c00178{word-spacing:12.528000px;}
.ws38_c00178{word-spacing:12.960000px;}
.ws14_c00178{word-spacing:13.680000px;}
.ws13_c00178{word-spacing:13.968000px;}
.ws3d_c00178{word-spacing:14.328000px;}
.wsd_c00178{word-spacing:16.128000px;}
.wse_c00178{word-spacing:16.200000px;}
.wsb_c00178{word-spacing:16.848000px;}
.wsc_c00178{word-spacing:16.920000px;}
.ws15_c00178{word-spacing:17.208000px;}
.ws16_c00178{word-spacing:17.640000px;}
.ws24_c00178{word-spacing:18.000000px;}
.ws17_c00178{word-spacing:22.320000px;}
.ws36_c00178{word-spacing:22.608000px;}
.ws11_c00178{word-spacing:24.048000px;}
.ws28_c00178{word-spacing:24.624000px;}
.ws29_c00178{word-spacing:25.200000px;}
.ws25_c00178{word-spacing:25.920000px;}
.ws1c_c00178{word-spacing:26.928000px;}
.ws1b_c00178{word-spacing:27.000000px;}
.ws37_c00178{word-spacing:27.360000px;}
.ws4_c00178{word-spacing:29.448000px;}
.ws3_c00178{word-spacing:29.520000px;}
.ws12_c00178{word-spacing:30.960000px;}
.ws3a_c00178{word-spacing:34.848000px;}
._1_c00178{margin-left:-1.310400px;}
._0_c00178{width:1.054080px;}
._2_c00178{width:25.632000px;}
.fc2_c00178{color:transparent;}
.fc1_c00178{color:rgb(0,0,0);}
.fc0_c00178{color:rgb(35,31,32);}
.fs1_c00178{font-size:65.880000px;}
.fs0_c00178{font-size:72.000000px;}
.y0_c00178{bottom:0.000000px;}
.y1_c00178{bottom:61.748550px;}
.y21_c00178{bottom:115.424400px;}
.y20_c00178{bottom:146.474400px;}
.y3b_c00178{bottom:165.914400px;}
.y3a_c00178{bottom:196.874400px;}
.y1f_c00178{bottom:208.574400px;}
.y39_c00178{bottom:229.274400px;}
.y1e_c00178{bottom:239.624400px;}
.y38_c00178{bottom:260.324400px;}
.y1d_c00178{bottom:270.674400px;}
.y37_c00178{bottom:291.284400px;}
.y1c_c00178{bottom:301.634400px;}
.y36_c00178{bottom:323.684400px;}
.y1b_c00178{bottom:332.774400px;}
.y35_c00178{bottom:354.734400px;}
.y34_c00178{bottom:387.134400px;}
.y1a_c00178{bottom:394.874400px;}
.y33_c00178{bottom:418.184400px;}
.y19_c00178{bottom:425.924400px;}
.y32_c00178{bottom:449.144400px;}
.y18_c00178{bottom:456.974400px;}
.y17_c00178{bottom:488.024400px;}
.y31_c00178{bottom:512.594400px;}
.y16_c00178{bottom:519.074400px;}
.y30_c00178{bottom:543.644400px;}
.y2f_c00178{bottom:574.694400px;}
.y15_c00178{bottom:581.174400px;}
.y2e_c00178{bottom:605.744400px;}
.y14_c00178{bottom:612.224400px;}
.y13_c00178{bottom:643.274400px;}
.y2d_c00178{bottom:667.844400px;}
.y12_c00178{bottom:674.324400px;}
.y2c_c00178{bottom:698.804400px;}
.y11_c00178{bottom:705.374400px;}
.y2b_c00178{bottom:731.204400px;}
.y10_c00178{bottom:736.424400px;}
.y2a_c00178{bottom:762.164400px;}
.yf_c00178{bottom:767.384400px;}
.y29_c00178{bottom:794.564400px;}
.ye_c00178{bottom:798.434400px;}
.y28_c00178{bottom:825.614400px;}
.yd_c00178{bottom:829.484400px;}
.y27_c00178{bottom:856.664400px;}
.y26_c00178{bottom:889.064400px;}
.yc_c00178{bottom:891.584400px;}
.y25_c00178{bottom:920.114400px;}
.yb_c00178{bottom:922.634400px;}
.y24_c00178{bottom:951.074400px;}
.ya_c00178{bottom:953.684400px;}
.y23_c00178{bottom:983.474400px;}
.y9_c00178{bottom:984.734400px;}
.y22_c00178{bottom:1014.434400px;}
.y8_c00178{bottom:1015.784400px;}
.y7_c00178{bottom:1046.834400px;}
.y6_c00178{bottom:1077.884400px;}
.y5_c00178{bottom:1108.934400px;}
.y4_c00178{bottom:1139.984400px;}
.y3_c00178{bottom:1173.915120px;}
.y2_c00178{bottom:1194.074400px;}
.h2_c00178{height:50.400000px;}
.h3_c00178{height:54.331699px;}
.h4_c00178{height:59.376026px;}
.h5_c00178{height:76.824000px;}
.h6_c00178{height:78.048000px;}
.h0_c00178{height:1262.835000px;}
.h1_c00178{height:1263.000000px;}
.w2_c00178{width:0.000000px;}
.w3_c00178{width:0.066000px;}
.w0_c00178{width:892.914000px;}
.w1_c00178{width:893.250000px;}
.x1_c00178{left:-838.913400px;}
.x2_c00178{left:-765.293400px;}
.x3_c00178{left:-733.343400px;}
.x0_c00178{left:0.000000px;}
.x6_c00178{left:127.620000px;}
.x7_c00178{left:148.950000px;}
.x9_c00178{left:159.570000px;}
.x8_c00178{left:170.190000px;}
.x5_c00178{left:692.370000px;}
.x4_c00178{left:804.366150px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.lsb_c00178{letter-spacing:-0.320000pt;}
.lsc_c00178{letter-spacing:-0.064000pt;}
.lsa_c00178{letter-spacing:0.000000pt;}
.ls0_c00178{letter-spacing:0.064000pt;}
.ls1_c00178{letter-spacing:0.128000pt;}
.ls8_c00178{letter-spacing:0.320000pt;}
.ls3_c00178{letter-spacing:16.972800pt;}
.ls5_c00178{letter-spacing:16.979200pt;}
.ls4_c00178{letter-spacing:19.520000pt;}
.ls6_c00178{letter-spacing:20.480000pt;}
.ls7_c00178{letter-spacing:20.556800pt;}
.ls2_c00178{letter-spacing:26.560000pt;}
.ls9_c00178{letter-spacing:40.384000pt;}
.ws8_c00178{word-spacing:-16.128000pt;}
.ws2_c00178{word-spacing:-16.064000pt;}
.ws1_c00178{word-spacing:-16.000000pt;}
.ws0_c00178{word-spacing:-13.234560pt;}
.ws2e_c00178{word-spacing:-0.384000pt;}
.ws35_c00178{word-spacing:-0.320000pt;}
.ws6_c00178{word-spacing:-0.256000pt;}
.ws30_c00178{word-spacing:-0.117120pt;}
.ws23_c00178{word-spacing:-0.064000pt;}
.ws9_c00178{word-spacing:0.000000pt;}
.ws3b_c00178{word-spacing:0.064000pt;}
.ws1f_c00178{word-spacing:0.256000pt;}
.ws22_c00178{word-spacing:0.320000pt;}
.ws27_c00178{word-spacing:0.896000pt;}
.ws1a_c00178{word-spacing:0.960000pt;}
.ws26_c00178{word-spacing:1.216000pt;}
.ws3c_c00178{word-spacing:1.280000pt;}
.ws2d_c00178{word-spacing:1.472000pt;}
.ws2c_c00178{word-spacing:1.920000pt;}
.ws2f_c00178{word-spacing:2.816000pt;}
.ws2b_c00178{word-spacing:3.456000pt;}
.ws2a_c00178{word-spacing:3.520000pt;}
.ws34_c00178{word-spacing:4.352000pt;}
.ws33_c00178{word-spacing:4.416000pt;}
.ws31_c00178{word-spacing:4.480000pt;}
.ws7_c00178{word-spacing:4.608000pt;}
.ws32_c00178{word-spacing:4.800000pt;}
.ws18_c00178{word-spacing:5.376000pt;}
.ws19_c00178{word-spacing:5.440000pt;}
.ws3e_c00178{word-spacing:6.080000pt;}
.ws3f_c00178{word-spacing:6.336000pt;}
.ws40_c00178{word-spacing:6.592000pt;}
.ws10_c00178{word-spacing:6.656000pt;}
.wsf_c00178{word-spacing:6.720000pt;}
.wsa_c00178{word-spacing:7.261440pt;}
.ws5_c00178{word-spacing:7.936000pt;}
.ws1d_c00178{word-spacing:8.256000pt;}
.ws1e_c00178{word-spacing:8.576000pt;}
.ws41_c00178{word-spacing:9.280000pt;}
.ws21_c00178{word-spacing:10.240000pt;}
.ws20_c00178{word-spacing:10.496000pt;}
.ws39_c00178{word-spacing:11.136000pt;}
.ws38_c00178{word-spacing:11.520000pt;}
.ws14_c00178{word-spacing:12.160000pt;}
.ws13_c00178{word-spacing:12.416000pt;}
.ws3d_c00178{word-spacing:12.736000pt;}
.wsd_c00178{word-spacing:14.336000pt;}
.wse_c00178{word-spacing:14.400000pt;}
.wsb_c00178{word-spacing:14.976000pt;}
.wsc_c00178{word-spacing:15.040000pt;}
.ws15_c00178{word-spacing:15.296000pt;}
.ws16_c00178{word-spacing:15.680000pt;}
.ws24_c00178{word-spacing:16.000000pt;}
.ws17_c00178{word-spacing:19.840000pt;}
.ws36_c00178{word-spacing:20.096000pt;}
.ws11_c00178{word-spacing:21.376000pt;}
.ws28_c00178{word-spacing:21.888000pt;}
.ws29_c00178{word-spacing:22.400000pt;}
.ws25_c00178{word-spacing:23.040000pt;}
.ws1c_c00178{word-spacing:23.936000pt;}
.ws1b_c00178{word-spacing:24.000000pt;}
.ws37_c00178{word-spacing:24.320000pt;}
.ws4_c00178{word-spacing:26.176000pt;}
.ws3_c00178{word-spacing:26.240000pt;}
.ws12_c00178{word-spacing:27.520000pt;}
.ws3a_c00178{word-spacing:30.976000pt;}
._1_c00178{margin-left:-1.164800pt;}
._0_c00178{width:0.936960pt;}
._2_c00178{width:22.784000pt;}
.fs1_c00178{font-size:58.560000pt;}
.fs0_c00178{font-size:64.000000pt;}
.y0_c00178{bottom:0.000000pt;}
.y1_c00178{bottom:54.887600pt;}
.y21_c00178{bottom:102.599467pt;}
.y20_c00178{bottom:130.199467pt;}
.y3b_c00178{bottom:147.479467pt;}
.y3a_c00178{bottom:174.999467pt;}
.y1f_c00178{bottom:185.399467pt;}
.y39_c00178{bottom:203.799467pt;}
.y1e_c00178{bottom:212.999467pt;}
.y38_c00178{bottom:231.399467pt;}
.y1d_c00178{bottom:240.599467pt;}
.y37_c00178{bottom:258.919467pt;}
.y1c_c00178{bottom:268.119467pt;}
.y36_c00178{bottom:287.719467pt;}
.y1b_c00178{bottom:295.799467pt;}
.y35_c00178{bottom:315.319467pt;}
.y34_c00178{bottom:344.119467pt;}
.y1a_c00178{bottom:350.999467pt;}
.y33_c00178{bottom:371.719467pt;}
.y19_c00178{bottom:378.599467pt;}
.y32_c00178{bottom:399.239467pt;}
.y18_c00178{bottom:406.199467pt;}
.y17_c00178{bottom:433.799467pt;}
.y31_c00178{bottom:455.639467pt;}
.y16_c00178{bottom:461.399467pt;}
.y30_c00178{bottom:483.239467pt;}
.y2f_c00178{bottom:510.839467pt;}
.y15_c00178{bottom:516.599467pt;}
.y2e_c00178{bottom:538.439467pt;}
.y14_c00178{bottom:544.199467pt;}
.y13_c00178{bottom:571.799467pt;}
.y2d_c00178{bottom:593.639467pt;}
.y12_c00178{bottom:599.399467pt;}
.y2c_c00178{bottom:621.159467pt;}
.y11_c00178{bottom:626.999467pt;}
.y2b_c00178{bottom:649.959467pt;}
.y10_c00178{bottom:654.599467pt;}
.y2a_c00178{bottom:677.479467pt;}
.yf_c00178{bottom:682.119467pt;}
.y29_c00178{bottom:706.279467pt;}
.ye_c00178{bottom:709.719467pt;}
.y28_c00178{bottom:733.879467pt;}
.yd_c00178{bottom:737.319467pt;}
.y27_c00178{bottom:761.479467pt;}
.y26_c00178{bottom:790.279467pt;}
.yc_c00178{bottom:792.519467pt;}
.y25_c00178{bottom:817.879467pt;}
.yb_c00178{bottom:820.119467pt;}
.y24_c00178{bottom:845.399467pt;}
.ya_c00178{bottom:847.719467pt;}
.y23_c00178{bottom:874.199467pt;}
.y9_c00178{bottom:875.319467pt;}
.y22_c00178{bottom:901.719467pt;}
.y8_c00178{bottom:902.919467pt;}
.y7_c00178{bottom:930.519467pt;}
.y6_c00178{bottom:958.119467pt;}
.y5_c00178{bottom:985.719467pt;}
.y4_c00178{bottom:1013.319467pt;}
.y3_c00178{bottom:1043.480107pt;}
.y2_c00178{bottom:1061.399467pt;}
.h2_c00178{height:44.800000pt;}
.h3_c00178{height:48.294844pt;}
.h4_c00178{height:52.778690pt;}
.h5_c00178{height:68.288000pt;}
.h6_c00178{height:69.376000pt;}
.h0_c00178{height:1122.520000pt;}
.h1_c00178{height:1122.666667pt;}
.w2_c00178{width:0.000000pt;}
.w3_c00178{width:0.058667pt;}
.w0_c00178{width:793.701333pt;}
.w1_c00178{width:794.000000pt;}
.x1_c00178{left:-745.700800pt;}
.x2_c00178{left:-680.260800pt;}
.x3_c00178{left:-651.860800pt;}
.x0_c00178{left:0.000000pt;}
.x6_c00178{left:113.440000pt;}
.x7_c00178{left:132.400000pt;}
.x9_c00178{left:141.840000pt;}
.x8_c00178{left:151.280000pt;}
.x5_c00178{left:615.440000pt;}
.x4_c00178{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00179;src:url('chunks/assets/font_e133cd46ea913638ae1c933b.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00179;src:url('chunks/assets/font_a192557a621be3d103c16aad.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00179;src:url('chunks/assets/font_c77693648d37ac014c917c9d.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls4_c00179{letter-spacing:-0.360000px;}
.ls5_c00179{letter-spacing:-0.216000px;}
.ls3_c00179{letter-spacing:0.000000px;}
.ls0_c00179{letter-spacing:0.072000px;}
.ls6_c00179{letter-spacing:0.144000px;}
.ls1_c00179{letter-spacing:23.760000px;}
.ls2_c00179{letter-spacing:26.640000px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00179{word-spacing:-18.144000px;}
.ws1_c00179{word-spacing:-18.000000px;}
.ws0_c00179{word-spacing:-14.888880px;}
.ws16_c00179{word-spacing:-0.072000px;}
.ws3_c00179{word-spacing:0.000000px;}
.ws13_c00179{word-spacing:0.216000px;}
.ws17_c00179{word-spacing:0.360000px;}
.ws8_c00179{word-spacing:0.720000px;}
.ws6_c00179{word-spacing:1.368000px;}
.ws15_c00179{word-spacing:4.176000px;}
.ws5_c00179{word-spacing:4.320000px;}
.ws7_c00179{word-spacing:4.680000px;}
.ws11_c00179{word-spacing:5.328000px;}
.ws10_c00179{word-spacing:5.400000px;}
.ws19_c00179{word-spacing:5.760000px;}
.ws1d_c00179{word-spacing:6.480000px;}
.ws1c_c00179{word-spacing:6.840000px;}
.ws4_c00179{word-spacing:8.169120px;}
.ws1b_c00179{word-spacing:8.640000px;}
.ws1a_c00179{word-spacing:10.440000px;}
.ws18_c00179{word-spacing:11.160000px;}
.wsc_c00179{word-spacing:24.048000px;}
.wse_c00179{word-spacing:24.408000px;}
.wsd_c00179{word-spacing:24.480000px;}
.wsf_c00179{word-spacing:24.840000px;}
.ws12_c00179{word-spacing:29.448000px;}
.ws14_c00179{word-spacing:29.520000px;}
.wsb_c00179{word-spacing:29.808000px;}
.wsa_c00179{word-spacing:29.880000px;}
.ws9_c00179{word-spacing:30.240000px;}
._1_c00179{margin-left:-1.022400px;}
._0_c00179{width:1.054080px;}
._2_c00179{width:29.462400px;}
.fc1_c00179{color:rgb(0,0,0);}
.fc0_c00179{color:rgb(35,31,32);}
.fs1_c00179{font-size:65.880000px;}
.fs0_c00179{font-size:72.000000px;}
.y0_c00179{bottom:0.000000px;}
.y1_c00179{bottom:61.748550px;}
.y15_c00179{bottom:581.174400px;}
.y14_c00179{bottom:612.224400px;}
.y13_c00179{bottom:643.274400px;}
.y12_c00179{bottom:674.324400px;}
.y11_c00179{bottom:705.374400px;}
.y10_c00179{bottom:736.424400px;}
.yf_c00179{bottom:767.474400px;}
.ye_c00179{bottom:798.434400px;}
.yd_c00179{bottom:860.534400px;}
.yc_c00179{bottom:891.584400px;}
.yb_c00179{bottom:922.634400px;}
.ya_c00179{bottom:953.684400px;}
.y9_c00179{bottom:984.734400px;}
.y8_c00179{bottom:1015.784400px;}
.y7_c00179{bottom:1046.834400px;}
.y6_c00179{bottom:1077.884400px;}
.y5_c00179{bottom:1108.934400px;}
.y4_c00179{bottom:1139.984400px;}
.y3_c00179{bottom:1173.915120px;}
.y2_c00179{bottom:1194.074400px;}
.h2_c00179{height:50.400000px;}
.h3_c00179{height:54.331699px;}
.h4_c00179{height:59.376026px;}
.h5_c00179{height:76.824000px;}
.h6_c00179{height:78.048000px;}
.h0_c00179{height:1262.835000px;}
.h1_c00179{height:1263.000000px;}
.w0_c00179{width:892.914000px;}
.w1_c00179{width:893.250000px;}
.x0_c00179{left:0.000000px;}
.x1_c00179{left:54.000000px;}
.x2_c00179{left:127.620000px;}
.x3_c00179{left:159.570000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls4_c00179{letter-spacing:-0.320000pt;}
.ls5_c00179{letter-spacing:-0.192000pt;}
.ls3_c00179{letter-spacing:0.000000pt;}
.ls0_c00179{letter-spacing:0.064000pt;}
.ls6_c00179{letter-spacing:0.128000pt;}
.ls1_c00179{letter-spacing:21.120000pt;}
.ls2_c00179{letter-spacing:23.680000pt;}
.ws2_c00179{word-spacing:-16.128000pt;}
.ws1_c00179{word-spacing:-16.000000pt;}
.ws0_c00179{word-spacing:-13.234560pt;}
.ws16_c00179{word-spacing:-0.064000pt;}
.ws3_c00179{word-spacing:0.000000pt;}
.ws13_c00179{word-spacing:0.192000pt;}
.ws17_c00179{word-spacing:0.320000pt;}
.ws8_c00179{word-spacing:0.640000pt;}
.ws6_c00179{word-spacing:1.216000pt;}
.ws15_c00179{word-spacing:3.712000pt;}
.ws5_c00179{word-spacing:3.840000pt;}
.ws7_c00179{word-spacing:4.160000pt;}
.ws11_c00179{word-spacing:4.736000pt;}
.ws10_c00179{word-spacing:4.800000pt;}
.ws19_c00179{word-spacing:5.120000pt;}
.ws1d_c00179{word-spacing:5.760000pt;}
.ws1c_c00179{word-spacing:6.080000pt;}
.ws4_c00179{word-spacing:7.261440pt;}
.ws1b_c00179{word-spacing:7.680000pt;}
.ws1a_c00179{word-spacing:9.280000pt;}
.ws18_c00179{word-spacing:9.920000pt;}
.wsc_c00179{word-spacing:21.376000pt;}
.wse_c00179{word-spacing:21.696000pt;}
.wsd_c00179{word-spacing:21.760000pt;}
.wsf_c00179{word-spacing:22.080000pt;}
.ws12_c00179{word-spacing:26.176000pt;}
.ws14_c00179{word-spacing:26.240000pt;}
.wsb_c00179{word-spacing:26.496000pt;}
.wsa_c00179{word-spacing:26.560000pt;}
.ws9_c00179{word-spacing:26.880000pt;}
._1_c00179{margin-left:-0.908800pt;}
._0_c00179{width:0.936960pt;}
._2_c00179{width:26.188800pt;}
.fs1_c00179{font-size:58.560000pt;}
.fs0_c00179{font-size:64.000000pt;}
.y0_c00179{bottom:0.000000pt;}
.y1_c00179{bottom:54.887600pt;}
.y15_c00179{bottom:516.599467pt;}
.y14_c00179{bottom:544.199467pt;}
.y13_c00179{bottom:571.799467pt;}
.y12_c00179{bottom:599.399467pt;}
.y11_c00179{bottom:626.999467pt;}
.y10_c00179{bottom:654.599467pt;}
.yf_c00179{bottom:682.199467pt;}
.ye_c00179{bottom:709.719467pt;}
.yd_c00179{bottom:764.919467pt;}
.yc_c00179{bottom:792.519467pt;}
.yb_c00179{bottom:820.119467pt;}
.ya_c00179{bottom:847.719467pt;}
.y9_c00179{bottom:875.319467pt;}
.y8_c00179{bottom:902.919467pt;}
.y7_c00179{bottom:930.519467pt;}
.y6_c00179{bottom:958.119467pt;}
.y5_c00179{bottom:985.719467pt;}
.y4_c00179{bottom:1013.319467pt;}
.y3_c00179{bottom:1043.480107pt;}
.y2_c00179{bottom:1061.399467pt;}
.h2_c00179{height:44.800000pt;}
.h3_c00179{height:48.294844pt;}
.h4_c00179{height:52.778690pt;}
.h5_c00179{height:68.288000pt;}
.h6_c00179{height:69.376000pt;}
.h0_c00179{height:1122.520000pt;}
.h1_c00179{height:1122.666667pt;}
.w0_c00179{width:793.701333pt;}
.w1_c00179{width:794.000000pt;}
.x0_c00179{left:0.000000pt;}
.x1_c00179{left:48.000000pt;}
.x2_c00179{left:113.440000pt;}
.x3_c00179{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00180;src:url('chunks/assets/font_7143a6acd64c76d6bcc79489.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00180;src:url('chunks/assets/font_fe432df45b27f9a578190251.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00180;src:url('chunks/assets/font_ff3f13cafa21902267bfa0a2.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00180;src:url('chunks/assets/font_7143a6acd64c76d6bcc79489.woff2')format("woff");}.ff5_c00180{font-family:ff5_c00180;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00180;src:url('chunks/assets/font_fe432df45b27f9a578190251.woff2')format("woff");}.ff6_c00180{font-family:ff6_c00180;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00180;src:url('chunks/assets/font_4e9420f8dfeed35b8587869f.woff2')format("woff");}.ff7_c00180{font-family:ff7_c00180;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.ls4_c00180{letter-spacing:-0.360000px;}
.ls5_c00180{letter-spacing:-0.216000px;}
.ls3_c00180{letter-spacing:0.000000px;}
.ls0_c00180{letter-spacing:0.072000px;}
.ls6_c00180{letter-spacing:0.144000px;}
.ls1_c00180{letter-spacing:23.760000px;}
.ls2_c00180{letter-spacing:26.640000px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00180{word-spacing:-18.144000px;}
.ws1_c00180{word-spacing:-18.000000px;}
.ws0_c00180{word-spacing:-14.888880px;}
.ws16_c00180{word-spacing:-0.072000px;}
.ws3_c00180{word-spacing:0.000000px;}
.ws13_c00180{word-spacing:0.216000px;}
.ws17_c00180{word-spacing:0.360000px;}
.ws8_c00180{word-spacing:0.720000px;}
.ws6_c00180{word-spacing:1.368000px;}
.ws15_c00180{word-spacing:4.176000px;}
.ws5_c00180{word-spacing:4.320000px;}
.ws7_c00180{word-spacing:4.680000px;}
.ws11_c00180{word-spacing:5.328000px;}
.ws10_c00180{word-spacing:5.400000px;}
.ws19_c00180{word-spacing:5.760000px;}
.ws1d_c00180{word-spacing:6.480000px;}
.ws1c_c00180{word-spacing:6.840000px;}
.ws4_c00180{word-spacing:8.169120px;}
.ws1b_c00180{word-spacing:8.640000px;}
.ws1a_c00180{word-spacing:10.440000px;}
.ws18_c00180{word-spacing:11.160000px;}
.wsc_c00180{word-spacing:24.048000px;}
.wse_c00180{word-spacing:24.408000px;}
.wsd_c00180{word-spacing:24.480000px;}
.wsf_c00180{word-spacing:24.840000px;}
.ws12_c00180{word-spacing:29.448000px;}
.ws14_c00180{word-spacing:29.520000px;}
.wsb_c00180{word-spacing:29.808000px;}
.wsa_c00180{word-spacing:29.880000px;}
.ws9_c00180{word-spacing:30.240000px;}
._1_c00180{margin-left:-1.022400px;}
._0_c00180{width:1.054080px;}
._2_c00180{width:29.462400px;}
.fc2_c00180{color:transparent;}
.fc1_c00180{color:rgb(0,0,0);}
.fc0_c00180{color:rgb(35,31,32);}
.fs1_c00180{font-size:65.880000px;}
.fs0_c00180{font-size:72.000000px;}
.y0_c00180{bottom:0.000000px;}
.y1_c00180{bottom:61.748550px;}
.y15_c00180{bottom:581.174400px;}
.y14_c00180{bottom:612.224400px;}
.y13_c00180{bottom:643.274400px;}
.y12_c00180{bottom:674.324400px;}
.y11_c00180{bottom:705.374400px;}
.y10_c00180{bottom:736.424400px;}
.yf_c00180{bottom:767.474400px;}
.ye_c00180{bottom:798.434400px;}
.yd_c00180{bottom:860.534400px;}
.yc_c00180{bottom:891.584400px;}
.yb_c00180{bottom:922.634400px;}
.ya_c00180{bottom:953.684400px;}
.y9_c00180{bottom:984.734400px;}
.y8_c00180{bottom:1015.784400px;}
.y7_c00180{bottom:1046.834400px;}
.y6_c00180{bottom:1077.884400px;}
.y5_c00180{bottom:1108.934400px;}
.y4_c00180{bottom:1139.984400px;}
.y3_c00180{bottom:1173.915120px;}
.y2_c00180{bottom:1194.074400px;}
.h2_c00180{height:50.400000px;}
.h3_c00180{height:54.331699px;}
.h4_c00180{height:59.376026px;}
.h5_c00180{height:76.824000px;}
.h6_c00180{height:78.048000px;}
.h0_c00180{height:1262.835000px;}
.h1_c00180{height:1263.000000px;}
.w2_c00180{width:0.000000px;}
.w3_c00180{width:0.066000px;}
.w0_c00180{width:892.914000px;}
.w1_c00180{width:893.250000px;}
.x1_c00180{left:-838.913400px;}
.x2_c00180{left:-765.293400px;}
.x3_c00180{left:-733.343400px;}
.x0_c00180{left:0.000000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls4_c00180{letter-spacing:-0.320000pt;}
.ls5_c00180{letter-spacing:-0.192000pt;}
.ls3_c00180{letter-spacing:0.000000pt;}
.ls0_c00180{letter-spacing:0.064000pt;}
.ls6_c00180{letter-spacing:0.128000pt;}
.ls1_c00180{letter-spacing:21.120000pt;}
.ls2_c00180{letter-spacing:23.680000pt;}
.ws2_c00180{word-spacing:-16.128000pt;}
.ws1_c00180{word-spacing:-16.000000pt;}
.ws0_c00180{word-spacing:-13.234560pt;}
.ws16_c00180{word-spacing:-0.064000pt;}
.ws3_c00180{word-spacing:0.000000pt;}
.ws13_c00180{word-spacing:0.192000pt;}
.ws17_c00180{word-spacing:0.320000pt;}
.ws8_c00180{word-spacing:0.640000pt;}
.ws6_c00180{word-spacing:1.216000pt;}
.ws15_c00180{word-spacing:3.712000pt;}
.ws5_c00180{word-spacing:3.840000pt;}
.ws7_c00180{word-spacing:4.160000pt;}
.ws11_c00180{word-spacing:4.736000pt;}
.ws10_c00180{word-spacing:4.800000pt;}
.ws19_c00180{word-spacing:5.120000pt;}
.ws1d_c00180{word-spacing:5.760000pt;}
.ws1c_c00180{word-spacing:6.080000pt;}
.ws4_c00180{word-spacing:7.261440pt;}
.ws1b_c00180{word-spacing:7.680000pt;}
.ws1a_c00180{word-spacing:9.280000pt;}
.ws18_c00180{word-spacing:9.920000pt;}
.wsc_c00180{word-spacing:21.376000pt;}
.wse_c00180{word-spacing:21.696000pt;}
.wsd_c00180{word-spacing:21.760000pt;}
.wsf_c00180{word-spacing:22.080000pt;}
.ws12_c00180{word-spacing:26.176000pt;}
.ws14_c00180{word-spacing:26.240000pt;}
.wsb_c00180{word-spacing:26.496000pt;}
.wsa_c00180{word-spacing:26.560000pt;}
.ws9_c00180{word-spacing:26.880000pt;}
._1_c00180{margin-left:-0.908800pt;}
._0_c00180{width:0.936960pt;}
._2_c00180{width:26.188800pt;}
.fs1_c00180{font-size:58.560000pt;}
.fs0_c00180{font-size:64.000000pt;}
.y0_c00180{bottom:0.000000pt;}
.y1_c00180{bottom:54.887600pt;}
.y15_c00180{bottom:516.599467pt;}
.y14_c00180{bottom:544.199467pt;}
.y13_c00180{bottom:571.799467pt;}
.y12_c00180{bottom:599.399467pt;}
.y11_c00180{bottom:626.999467pt;}
.y10_c00180{bottom:654.599467pt;}
.yf_c00180{bottom:682.199467pt;}
.ye_c00180{bottom:709.719467pt;}
.yd_c00180{bottom:764.919467pt;}
.yc_c00180{bottom:792.519467pt;}
.yb_c00180{bottom:820.119467pt;}
.ya_c00180{bottom:847.719467pt;}
.y9_c00180{bottom:875.319467pt;}
.y8_c00180{bottom:902.919467pt;}
.y7_c00180{bottom:930.519467pt;}
.y6_c00180{bottom:958.119467pt;}
.y5_c00180{bottom:985.719467pt;}
.y4_c00180{bottom:1013.319467pt;}
.y3_c00180{bottom:1043.480107pt;}
.y2_c00180{bottom:1061.399467pt;}
.h2_c00180{height:44.800000pt;}
.h3_c00180{height:48.294844pt;}
.h4_c00180{height:52.778690pt;}
.h5_c00180{height:68.288000pt;}
.h6_c00180{height:69.376000pt;}
.h0_c00180{height:1122.520000pt;}
.h1_c00180{height:1122.666667pt;}
.w2_c00180{width:0.000000pt;}
.w3_c00180{width:0.058667pt;}
.w0_c00180{width:793.701333pt;}
.w1_c00180{width:794.000000pt;}
.x1_c00180{left:-745.700800pt;}
.x2_c00180{left:-680.260800pt;}
.x3_c00180{left:-651.860800pt;}
.x0_c00180{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_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;}
.sc__c00181{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
}
.y0_c00181{bottom:0.000000px;}
.h0_c00181{height:1262.835000px;}
.h1_c00181{height:1263.000000px;}
.w0_c00181{width:892.914000px;}
.w1_c00181{width:893.250000px;}
.x0_c00181{left:0.000000px;}
@media print{
.y0_c00181{bottom:0.000000pt;}
.h0_c00181{height:1122.520000pt;}
.h1_c00181{height:1122.666667pt;}
.w0_c00181{width:793.701333pt;}
.w1_c00181{width:794.000000pt;}
.x0_c00181{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_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;}
.sc__c00182{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
}
.y0_c00182{bottom:0.000000px;}
.h0_c00182{height:1262.835000px;}
.h1_c00182{height:1263.000000px;}
.w0_c00182{width:892.914000px;}
.w1_c00182{width:893.250000px;}
.x0_c00182{left:0.000000px;}
@media print{
.y0_c00182{bottom:0.000000pt;}
.h0_c00182{height:1122.520000pt;}
.h1_c00182{height:1122.666667pt;}
.w0_c00182{width:793.701333pt;}
.w1_c00182{width:794.000000pt;}
.x0_c00182{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_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;}
.sc__c00183{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
}
.y0_c00183{bottom:0.000000px;}
.h0_c00183{height:1262.835000px;}
.h1_c00183{height:1263.000000px;}
.w0_c00183{width:892.914000px;}
.w1_c00183{width:893.250000px;}
.x0_c00183{left:0.000000px;}
@media print{
.y0_c00183{bottom:0.000000pt;}
.h0_c00183{height:1122.520000pt;}
.h1_c00183{height:1122.666667pt;}
.w0_c00183{width:793.701333pt;}
.w1_c00183{width:794.000000pt;}
.x0_c00183{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_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00184;src:url('chunks/assets/font_0beb4abfc7f189ba7ce1e6ed.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00184;src:url('chunks/assets/font_0750ba3e3f261e5724bdfb3e.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:1.575000;font-style:normal;font-weight:normal;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_e2da8eb1a58cde87a9f08328.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:1.575000;font-style:normal;font-weight:normal;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_b029de72a6736c669368df0d.woff2')format("woff");}.ff5_c00184{font-family:ff5_c00184;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00184;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff6_c00184{font-family:ff6_c00184;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00184{letter-spacing:-0.360000px;}
.ls5_c00184{letter-spacing:-0.288000px;}
.ls6_c00184{letter-spacing:-0.216000px;}
.ls7_c00184{letter-spacing:-0.072000px;}
.ls4_c00184{letter-spacing:0.000000px;}
.ls0_c00184{letter-spacing:0.072000px;}
.ls1_c00184{letter-spacing:0.144000px;}
.ls2_c00184{letter-spacing:18.000000px;}
.ls3_c00184{letter-spacing:45.432000px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00184{word-spacing:-18.072000px;}
.ws5_c00184{word-spacing:-18.000000px;}
.ws2_c00184{word-spacing:-17.784000px;}
.wse_c00184{word-spacing:-0.144000px;}
.wsb_c00184{word-spacing:-0.131760px;}
.wsc_c00184{word-spacing:-0.072000px;}
.wsa_c00184{word-spacing:0.000000px;}
.ws1e_c00184{word-spacing:0.288000px;}
.ws1d_c00184{word-spacing:0.360000px;}
.ws1a_c00184{word-spacing:2.016000px;}
.ws1b_c00184{word-spacing:2.088000px;}
.ws8_c00184{word-spacing:2.520000px;}
.ws9_c00184{word-spacing:2.880000px;}
.ws11_c00184{word-spacing:3.456000px;}
.ws4_c00184{word-spacing:3.960000px;}
.ws7_c00184{word-spacing:5.040000px;}
.ws15_c00184{word-spacing:5.400000px;}
.ws6_c00184{word-spacing:5.616000px;}
.ws21_c00184{word-spacing:5.760000px;}
.ws1c_c00184{word-spacing:7.488000px;}
.ws1f_c00184{word-spacing:9.648000px;}
.ws20_c00184{word-spacing:9.720000px;}
.ws19_c00184{word-spacing:11.160000px;}
.ws12_c00184{word-spacing:11.232000px;}
.ws17_c00184{word-spacing:11.448000px;}
.ws13_c00184{word-spacing:11.520000px;}
.ws18_c00184{word-spacing:14.400000px;}
.ws14_c00184{word-spacing:15.048000px;}
.wsd_c00184{word-spacing:27.288000px;}
.ws0_c00184{word-spacing:27.864000px;}
.wsf_c00184{word-spacing:29.088000px;}
.ws10_c00184{word-spacing:29.160000px;}
.ws3_c00184{word-spacing:29.232000px;}
.ws16_c00184{word-spacing:30.240000px;}
._1_c00184{margin-left:-1.310400px;}
._3_c00184{width:1.022400px;}
._2_c00184{width:10.814400px;}
._5_c00184{width:24.048000px;}
._4_c00184{width:28.872000px;}
._0_c00184{width:54.000000px;}
.fc1_c00184{color:rgb(0,0,0);}
.fc0_c00184{color:rgb(35,31,32);}
.fs1_c00184{font-size:65.880000px;}
.fs0_c00184{font-size:72.000000px;}
.y0_c00184{bottom:0.000000px;}
.y1_c00184{bottom:61.748550px;}
.y1d_c00184{bottom:172.304400px;}
.y1c_c00184{bottom:203.354400px;}
.y1b_c00184{bottom:234.404400px;}
.y1a_c00184{bottom:296.504400px;}
.y19_c00184{bottom:327.554400px;}
.y18_c00184{bottom:358.604400px;}
.y17_c00184{bottom:389.654400px;}
.y16_c00184{bottom:451.754400px;}
.y15_c00184{bottom:482.714400px;}
.y14_c00184{bottom:515.114400px;}
.y13_c00184{bottom:546.164400px;}
.y12_c00184{bottom:577.124400px;}
.y11_c00184{bottom:609.524400px;}
.y10_c00184{bottom:640.574400px;}
.yf_c00184{bottom:671.534400px;}
.ye_c00184{bottom:703.934400px;}
.yd_c00184{bottom:767.384400px;}
.yc_c00184{bottom:798.434400px;}
.yb_c00184{bottom:829.484400px;}
.ya_c00184{bottom:860.534400px;}
.y9_c00184{bottom:891.584400px;}
.y8_c00184{bottom:922.634400px;}
.y7_c00184{bottom:953.684400px;}
.y6_c00184{bottom:1015.694400px;}
.y5_c00184{bottom:1046.744400px;}
.y4_c00184{bottom:1077.794400px;}
.y3_c00184{bottom:1139.714400px;}
.y2_c00184{bottom:1194.074400px;}
.h2_c00184{height:50.400000px;}
.h3_c00184{height:54.331699px;}
.h4_c00184{height:76.824000px;}
.h5_c00184{height:78.048000px;}
.h0_c00184{height:1262.835000px;}
.h1_c00184{height:1263.000000px;}
.w0_c00184{width:892.914000px;}
.w1_c00184{width:893.250000px;}
.x0_c00184{left:0.000000px;}
.x5_c00184{left:127.620000px;}
.x3_c00184{left:132.570000px;}
.x6_c00184{left:148.950000px;}
.x4_c00184{left:159.570000px;}
.x7_c00184{left:170.190000px;}
.x2_c00184{left:696.510000px;}
.x1_c00184{left:804.366150px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls8_c00184{letter-spacing:-0.320000pt;}
.ls5_c00184{letter-spacing:-0.256000pt;}
.ls6_c00184{letter-spacing:-0.192000pt;}
.ls7_c00184{letter-spacing:-0.064000pt;}
.ls4_c00184{letter-spacing:0.000000pt;}
.ls0_c00184{letter-spacing:0.064000pt;}
.ls1_c00184{letter-spacing:0.128000pt;}
.ls2_c00184{letter-spacing:16.000000pt;}
.ls3_c00184{letter-spacing:40.384000pt;}
.ws1_c00184{word-spacing:-16.064000pt;}
.ws5_c00184{word-spacing:-16.000000pt;}
.ws2_c00184{word-spacing:-15.808000pt;}
.wse_c00184{word-spacing:-0.128000pt;}
.wsb_c00184{word-spacing:-0.117120pt;}
.wsc_c00184{word-spacing:-0.064000pt;}
.wsa_c00184{word-spacing:0.000000pt;}
.ws1e_c00184{word-spacing:0.256000pt;}
.ws1d_c00184{word-spacing:0.320000pt;}
.ws1a_c00184{word-spacing:1.792000pt;}
.ws1b_c00184{word-spacing:1.856000pt;}
.ws8_c00184{word-spacing:2.240000pt;}
.ws9_c00184{word-spacing:2.560000pt;}
.ws11_c00184{word-spacing:3.072000pt;}
.ws4_c00184{word-spacing:3.520000pt;}
.ws7_c00184{word-spacing:4.480000pt;}
.ws15_c00184{word-spacing:4.800000pt;}
.ws6_c00184{word-spacing:4.992000pt;}
.ws21_c00184{word-spacing:5.120000pt;}
.ws1c_c00184{word-spacing:6.656000pt;}
.ws1f_c00184{word-spacing:8.576000pt;}
.ws20_c00184{word-spacing:8.640000pt;}
.ws19_c00184{word-spacing:9.920000pt;}
.ws12_c00184{word-spacing:9.984000pt;}
.ws17_c00184{word-spacing:10.176000pt;}
.ws13_c00184{word-spacing:10.240000pt;}
.ws18_c00184{word-spacing:12.800000pt;}
.ws14_c00184{word-spacing:13.376000pt;}
.wsd_c00184{word-spacing:24.256000pt;}
.ws0_c00184{word-spacing:24.768000pt;}
.wsf_c00184{word-spacing:25.856000pt;}
.ws10_c00184{word-spacing:25.920000pt;}
.ws3_c00184{word-spacing:25.984000pt;}
.ws16_c00184{word-spacing:26.880000pt;}
._1_c00184{margin-left:-1.164800pt;}
._3_c00184{width:0.908800pt;}
._2_c00184{width:9.612800pt;}
._5_c00184{width:21.376000pt;}
._4_c00184{width:25.664000pt;}
._0_c00184{width:48.000000pt;}
.fs1_c00184{font-size:58.560000pt;}
.fs0_c00184{font-size:64.000000pt;}
.y0_c00184{bottom:0.000000pt;}
.y1_c00184{bottom:54.887600pt;}
.y1d_c00184{bottom:153.159467pt;}
.y1c_c00184{bottom:180.759467pt;}
.y1b_c00184{bottom:208.359467pt;}
.y1a_c00184{bottom:263.559467pt;}
.y19_c00184{bottom:291.159467pt;}
.y18_c00184{bottom:318.759467pt;}
.y17_c00184{bottom:346.359467pt;}
.y16_c00184{bottom:401.559467pt;}
.y15_c00184{bottom:429.079467pt;}
.y14_c00184{bottom:457.879467pt;}
.y13_c00184{bottom:485.479467pt;}
.y12_c00184{bottom:512.999467pt;}
.y11_c00184{bottom:541.799467pt;}
.y10_c00184{bottom:569.399467pt;}
.yf_c00184{bottom:596.919467pt;}
.ye_c00184{bottom:625.719467pt;}
.yd_c00184{bottom:682.119467pt;}
.yc_c00184{bottom:709.719467pt;}
.yb_c00184{bottom:737.319467pt;}
.ya_c00184{bottom:764.919467pt;}
.y9_c00184{bottom:792.519467pt;}
.y8_c00184{bottom:820.119467pt;}
.y7_c00184{bottom:847.719467pt;}
.y6_c00184{bottom:902.839467pt;}
.y5_c00184{bottom:930.439467pt;}
.y4_c00184{bottom:958.039467pt;}
.y3_c00184{bottom:1013.079467pt;}
.y2_c00184{bottom:1061.399467pt;}
.h2_c00184{height:44.800000pt;}
.h3_c00184{height:48.294844pt;}
.h4_c00184{height:68.288000pt;}
.h5_c00184{height:69.376000pt;}
.h0_c00184{height:1122.520000pt;}
.h1_c00184{height:1122.666667pt;}
.w0_c00184{width:793.701333pt;}
.w1_c00184{width:794.000000pt;}
.x0_c00184{left:0.000000pt;}
.x5_c00184{left:113.440000pt;}
.x3_c00184{left:117.840000pt;}
.x6_c00184{left:132.400000pt;}
.x4_c00184{left:141.840000pt;}
.x7_c00184{left:151.280000pt;}
.x2_c00184{left:619.120000pt;}
.x1_c00184{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00185;src:url('chunks/assets/font_a4f4969681d34d39f9fa55b1.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00185;src:url('chunks/assets/font_511a2cf26000d7d231fba070.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:1.575000;font-style:normal;font-weight:normal;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_e4fdef0c72e276339aebcd9d.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;}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls5_c00185{letter-spacing:-0.288000px;}
.ls6_c00185{letter-spacing:-0.072000px;}
.ls4_c00185{letter-spacing:0.000000px;}
.ls0_c00185{letter-spacing:0.072000px;}
.ls1_c00185{letter-spacing:0.144000px;}
.ls3_c00185{letter-spacing:23.040000px;}
.ls2_c00185{letter-spacing:45.432000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00185{word-spacing:-18.144000px;}
.ws0_c00185{word-spacing:-18.072000px;}
.ws1_c00185{word-spacing:-18.000000px;}
.ws7_c00185{word-spacing:-0.144000px;}
.ws8_c00185{word-spacing:-0.072000px;}
.ws5_c00185{word-spacing:0.000000px;}
.ws19_c00185{word-spacing:0.072000px;}
.ws14_c00185{word-spacing:0.288000px;}
.ws1c_c00185{word-spacing:0.360000px;}
.ws1a_c00185{word-spacing:0.648000px;}
.ws18_c00185{word-spacing:1.008000px;}
.wsd_c00185{word-spacing:1.368000px;}
.wse_c00185{word-spacing:1.440000px;}
.ws1d_c00185{word-spacing:2.160000px;}
.ws20_c00185{word-spacing:2.736000px;}
.ws3_c00185{word-spacing:2.808000px;}
.ws24_c00185{word-spacing:5.040000px;}
.ws12_c00185{word-spacing:5.688000px;}
.ws13_c00185{word-spacing:5.760000px;}
.ws1f_c00185{word-spacing:5.976000px;}
.ws1e_c00185{word-spacing:6.048000px;}
.wsb_c00185{word-spacing:7.200000px;}
.ws1b_c00185{word-spacing:8.280000px;}
.ws6_c00185{word-spacing:8.568000px;}
.ws15_c00185{word-spacing:9.648000px;}
.ws16_c00185{word-spacing:10.728000px;}
.ws27_c00185{word-spacing:15.480000px;}
.ws22_c00185{word-spacing:17.136000px;}
.ws21_c00185{word-spacing:17.208000px;}
.ws23_c00185{word-spacing:17.280000px;}
.ws10_c00185{word-spacing:18.288000px;}
.ws25_c00185{word-spacing:18.648000px;}
.ws26_c00185{word-spacing:18.720000px;}
.ws4_c00185{word-spacing:19.008000px;}
.ws9_c00185{word-spacing:19.368000px;}
.wsa_c00185{word-spacing:19.440000px;}
.ws17_c00185{word-spacing:21.240000px;}
.wsc_c00185{word-spacing:22.320000px;}
.wsf_c00185{word-spacing:25.848000px;}
.ws11_c00185{word-spacing:28.008000px;}
._0_c00185{margin-left:-1.368000px;}
._1_c00185{width:1.224000px;}
._2_c00185{width:8.928000px;}
._3_c00185{width:16.848000px;}
._4_c00185{width:22.672800px;}
.fc1_c00185{color:rgb(0,0,0);}
.fc0_c00185{color:rgb(35,31,32);}
.fs1_c00185{font-size:65.880000px;}
.fs0_c00185{font-size:72.000000px;}
.y0_c00185{bottom:0.000000px;}
.y1_c00185{bottom:61.748550px;}
.y20_c00185{bottom:111.464400px;}
.y1f_c00185{bottom:142.514400px;}
.y1e_c00185{bottom:173.564400px;}
.y1d_c00185{bottom:204.614400px;}
.y1c_c00185{bottom:266.714400px;}
.y1b_c00185{bottom:297.764400px;}
.y1a_c00185{bottom:328.814400px;}
.y19_c00185{bottom:359.864400px;}
.y18_c00185{bottom:390.914400px;}
.y17_c00185{bottom:453.014400px;}
.y16_c00185{bottom:484.064400px;}
.y15_c00185{bottom:515.114400px;}
.y14_c00185{bottom:546.164400px;}
.y13_c00185{bottom:577.214400px;}
.y12_c00185{bottom:608.264400px;}
.y11_c00185{bottom:639.314400px;}
.y10_c00185{bottom:701.414400px;}
.yf_c00185{bottom:732.464400px;}
.ye_c00185{bottom:763.424400px;}
.yd_c00185{bottom:795.824400px;}
.yc_c00185{bottom:826.874400px;}
.yb_c00185{bottom:857.924400px;}
.ya_c00185{bottom:888.974400px;}
.y9_c00185{bottom:919.934400px;}
.y8_c00185{bottom:952.334400px;}
.y7_c00185{bottom:983.384400px;}
.y6_c00185{bottom:1014.434400px;}
.y5_c00185{bottom:1045.394400px;}
.y4_c00185{bottom:1108.844400px;}
.y3_c00185{bottom:1139.894400px;}
.y2_c00185{bottom:1194.074400px;}
.h2_c00185{height:50.400000px;}
.h3_c00185{height:54.331699px;}
.h4_c00185{height:76.824000px;}
.h0_c00185{height:1262.835000px;}
.h1_c00185{height:1263.000000px;}
.w0_c00185{width:892.914000px;}
.w1_c00185{width:893.250000px;}
.x0_c00185{left:0.000000px;}
.x1_c00185{left:54.000000px;}
.x2_c00185{left:127.620000px;}
.x3_c00185{left:148.950000px;}
.x5_c00185{left:159.570000px;}
.x4_c00185{left:170.190000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls5_c00185{letter-spacing:-0.256000pt;}
.ls6_c00185{letter-spacing:-0.064000pt;}
.ls4_c00185{letter-spacing:0.000000pt;}
.ls0_c00185{letter-spacing:0.064000pt;}
.ls1_c00185{letter-spacing:0.128000pt;}
.ls3_c00185{letter-spacing:20.480000pt;}
.ls2_c00185{letter-spacing:40.384000pt;}
.ws2_c00185{word-spacing:-16.128000pt;}
.ws0_c00185{word-spacing:-16.064000pt;}
.ws1_c00185{word-spacing:-16.000000pt;}
.ws7_c00185{word-spacing:-0.128000pt;}
.ws8_c00185{word-spacing:-0.064000pt;}
.ws5_c00185{word-spacing:0.000000pt;}
.ws19_c00185{word-spacing:0.064000pt;}
.ws14_c00185{word-spacing:0.256000pt;}
.ws1c_c00185{word-spacing:0.320000pt;}
.ws1a_c00185{word-spacing:0.576000pt;}
.ws18_c00185{word-spacing:0.896000pt;}
.wsd_c00185{word-spacing:1.216000pt;}
.wse_c00185{word-spacing:1.280000pt;}
.ws1d_c00185{word-spacing:1.920000pt;}
.ws20_c00185{word-spacing:2.432000pt;}
.ws3_c00185{word-spacing:2.496000pt;}
.ws24_c00185{word-spacing:4.480000pt;}
.ws12_c00185{word-spacing:5.056000pt;}
.ws13_c00185{word-spacing:5.120000pt;}
.ws1f_c00185{word-spacing:5.312000pt;}
.ws1e_c00185{word-spacing:5.376000pt;}
.wsb_c00185{word-spacing:6.400000pt;}
.ws1b_c00185{word-spacing:7.360000pt;}
.ws6_c00185{word-spacing:7.616000pt;}
.ws15_c00185{word-spacing:8.576000pt;}
.ws16_c00185{word-spacing:9.536000pt;}
.ws27_c00185{word-spacing:13.760000pt;}
.ws22_c00185{word-spacing:15.232000pt;}
.ws21_c00185{word-spacing:15.296000pt;}
.ws23_c00185{word-spacing:15.360000pt;}
.ws10_c00185{word-spacing:16.256000pt;}
.ws25_c00185{word-spacing:16.576000pt;}
.ws26_c00185{word-spacing:16.640000pt;}
.ws4_c00185{word-spacing:16.896000pt;}
.ws9_c00185{word-spacing:17.216000pt;}
.wsa_c00185{word-spacing:17.280000pt;}
.ws17_c00185{word-spacing:18.880000pt;}
.wsc_c00185{word-spacing:19.840000pt;}
.wsf_c00185{word-spacing:22.976000pt;}
.ws11_c00185{word-spacing:24.896000pt;}
._0_c00185{margin-left:-1.216000pt;}
._1_c00185{width:1.088000pt;}
._2_c00185{width:7.936000pt;}
._3_c00185{width:14.976000pt;}
._4_c00185{width:20.153600pt;}
.fs1_c00185{font-size:58.560000pt;}
.fs0_c00185{font-size:64.000000pt;}
.y0_c00185{bottom:0.000000pt;}
.y1_c00185{bottom:54.887600pt;}
.y20_c00185{bottom:99.079467pt;}
.y1f_c00185{bottom:126.679467pt;}
.y1e_c00185{bottom:154.279467pt;}
.y1d_c00185{bottom:181.879467pt;}
.y1c_c00185{bottom:237.079467pt;}
.y1b_c00185{bottom:264.679467pt;}
.y1a_c00185{bottom:292.279467pt;}
.y19_c00185{bottom:319.879467pt;}
.y18_c00185{bottom:347.479467pt;}
.y17_c00185{bottom:402.679467pt;}
.y16_c00185{bottom:430.279467pt;}
.y15_c00185{bottom:457.879467pt;}
.y14_c00185{bottom:485.479467pt;}
.y13_c00185{bottom:513.079467pt;}
.y12_c00185{bottom:540.679467pt;}
.y11_c00185{bottom:568.279467pt;}
.y10_c00185{bottom:623.479467pt;}
.yf_c00185{bottom:651.079467pt;}
.ye_c00185{bottom:678.599467pt;}
.yd_c00185{bottom:707.399467pt;}
.yc_c00185{bottom:734.999467pt;}
.yb_c00185{bottom:762.599467pt;}
.ya_c00185{bottom:790.199467pt;}
.y9_c00185{bottom:817.719467pt;}
.y8_c00185{bottom:846.519467pt;}
.y7_c00185{bottom:874.119467pt;}
.y6_c00185{bottom:901.719467pt;}
.y5_c00185{bottom:929.239467pt;}
.y4_c00185{bottom:985.639467pt;}
.y3_c00185{bottom:1013.239467pt;}
.y2_c00185{bottom:1061.399467pt;}
.h2_c00185{height:44.800000pt;}
.h3_c00185{height:48.294844pt;}
.h4_c00185{height:68.288000pt;}
.h0_c00185{height:1122.520000pt;}
.h1_c00185{height:1122.666667pt;}
.w0_c00185{width:793.701333pt;}
.w1_c00185{width:794.000000pt;}
.x0_c00185{left:0.000000pt;}
.x1_c00185{left:48.000000pt;}
.x2_c00185{left:113.440000pt;}
.x3_c00185{left:132.400000pt;}
.x5_c00185{left:141.840000pt;}
.x4_c00185{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00186;src:url('chunks/assets/font_2e8622f2ea6215639c0ceeca.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00186;src:url('chunks/assets/font_41d628d87effc5ad24d4d0be.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00186;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00186{font-family:ff5_c00186;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00186;src:url('chunks/assets/font_a5fb0fe627299aaff9cd9ce7.woff2')format("woff");}.ff6_c00186{font-family:ff6_c00186;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00186;src:url('chunks/assets/font_f97225c166ab33aa1fe2594a.woff2')format("woff");}.ff7_c00186{font-family:ff7_c00186;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00186;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff8_c00186{font-family:ff8_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;}
.m0_c00186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls7_c00186{letter-spacing:-0.288000px;}
.ls9_c00186{letter-spacing:-0.144000px;}
.ls8_c00186{letter-spacing:-0.072000px;}
.ls6_c00186{letter-spacing:0.000000px;}
.ls0_c00186{letter-spacing:0.072000px;}
.ls1_c00186{letter-spacing:0.144000px;}
.ls4_c00186{letter-spacing:19.440000px;}
.ls5_c00186{letter-spacing:20.160000px;}
.ls3_c00186{letter-spacing:23.040000px;}
.ls2_c00186{letter-spacing:45.432000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00186{word-spacing:-18.144000px;}
.ws0_c00186{word-spacing:-18.072000px;}
.ws1_c00186{word-spacing:-18.000000px;}
.ws9_c00186{word-spacing:-17.928000px;}
.ws6_c00186{word-spacing:-17.856000px;}
.wsc_c00186{word-spacing:-0.144000px;}
.ws2d_c00186{word-spacing:-0.131760px;}
.wsd_c00186{word-spacing:-0.072000px;}
.wsa_c00186{word-spacing:0.000000px;}
.ws1e_c00186{word-spacing:0.072000px;}
.ws37_c00186{word-spacing:0.216000px;}
.ws19_c00186{word-spacing:0.288000px;}
.ws21_c00186{word-spacing:0.360000px;}
.ws1f_c00186{word-spacing:0.648000px;}
.ws1d_c00186{word-spacing:1.008000px;}
.ws12_c00186{word-spacing:1.368000px;}
.ws13_c00186{word-spacing:1.440000px;}
.ws30_c00186{word-spacing:1.728000px;}
.ws2e_c00186{word-spacing:2.088000px;}
.ws22_c00186{word-spacing:2.160000px;}
.ws33_c00186{word-spacing:2.448000px;}
.ws25_c00186{word-spacing:2.736000px;}
.ws3_c00186{word-spacing:2.808000px;}
.ws5_c00186{word-spacing:3.600000px;}
.ws32_c00186{word-spacing:3.816000px;}
.ws31_c00186{word-spacing:3.888000px;}
.ws8_c00186{word-spacing:4.104000px;}
.ws3c_c00186{word-spacing:4.320000px;}
.ws3b_c00186{word-spacing:4.608000px;}
.ws36_c00186{word-spacing:4.968000px;}
.ws29_c00186{word-spacing:5.040000px;}
.ws35_c00186{word-spacing:5.328000px;}
.ws34_c00186{word-spacing:5.400000px;}
.ws17_c00186{word-spacing:5.688000px;}
.ws18_c00186{word-spacing:5.760000px;}
.ws24_c00186{word-spacing:5.976000px;}
.ws23_c00186{word-spacing:6.048000px;}
.ws10_c00186{word-spacing:7.200000px;}
.ws20_c00186{word-spacing:8.280000px;}
.wsb_c00186{word-spacing:8.568000px;}
.ws1a_c00186{word-spacing:9.648000px;}
.ws1b_c00186{word-spacing:10.728000px;}
.ws7_c00186{word-spacing:13.176000px;}
.ws2f_c00186{word-spacing:13.320000px;}
.ws2c_c00186{word-spacing:15.480000px;}
.ws27_c00186{word-spacing:17.136000px;}
.ws26_c00186{word-spacing:17.208000px;}
.ws28_c00186{word-spacing:17.280000px;}
.ws3e_c00186{word-spacing:17.496000px;}
.ws3d_c00186{word-spacing:17.568000px;}
.ws15_c00186{word-spacing:18.288000px;}
.ws2a_c00186{word-spacing:18.648000px;}
.ws2b_c00186{word-spacing:18.720000px;}
.ws4_c00186{word-spacing:19.008000px;}
.wse_c00186{word-spacing:19.368000px;}
.wsf_c00186{word-spacing:19.440000px;}
.ws1c_c00186{word-spacing:21.240000px;}
.ws11_c00186{word-spacing:22.320000px;}
.ws38_c00186{word-spacing:23.760000px;}
.ws14_c00186{word-spacing:25.848000px;}
.ws16_c00186{word-spacing:28.008000px;}
.ws3a_c00186{word-spacing:28.368000px;}
.ws39_c00186{word-spacing:33.048000px;}
._0_c00186{margin-left:-1.368000px;}
._1_c00186{width:1.224000px;}
._2_c00186{width:8.928000px;}
._5_c00186{width:14.184000px;}
._3_c00186{width:16.848000px;}
._6_c00186{width:20.520000px;}
._4_c00186{width:22.672800px;}
.fc2_c00186{color:transparent;}
.fc1_c00186{color:rgb(0,0,0);}
.fc0_c00186{color:rgb(35,31,32);}
.fs1_c00186{font-size:65.880000px;}
.fs0_c00186{font-size:72.000000px;}
.y0_c00186{bottom:0.000000px;}
.y1_c00186{bottom:61.748550px;}
.y20_c00186{bottom:111.464400px;}
.y3b_c00186{bottom:112.814400px;}
.y1f_c00186{bottom:142.514400px;}
.y3a_c00186{bottom:143.774400px;}
.y1e_c00186{bottom:173.564400px;}
.y39_c00186{bottom:176.174400px;}
.y1d_c00186{bottom:204.614400px;}
.y38_c00186{bottom:207.134400px;}
.y1c_c00186{bottom:266.714400px;}
.y37_c00186{bottom:270.584400px;}
.y1b_c00186{bottom:297.764400px;}
.y36_c00186{bottom:301.634400px;}
.y1a_c00186{bottom:328.814400px;}
.y35_c00186{bottom:332.684400px;}
.y19_c00186{bottom:359.864400px;}
.y34_c00186{bottom:363.734400px;}
.y18_c00186{bottom:390.914400px;}
.y33_c00186{bottom:425.834400px;}
.y17_c00186{bottom:453.014400px;}
.y32_c00186{bottom:456.884400px;}
.y16_c00186{bottom:484.064400px;}
.y31_c00186{bottom:487.934400px;}
.y15_c00186{bottom:515.114400px;}
.y30_c00186{bottom:518.984400px;}
.y14_c00186{bottom:546.164400px;}
.y2f_c00186{bottom:550.034400px;}
.y13_c00186{bottom:577.214400px;}
.y2e_c00186{bottom:581.084400px;}
.y12_c00186{bottom:608.264400px;}
.y2d_c00186{bottom:612.134400px;}
.y11_c00186{bottom:639.314400px;}
.y2c_c00186{bottom:674.234400px;}
.y10_c00186{bottom:701.414400px;}
.y2b_c00186{bottom:705.284400px;}
.yf_c00186{bottom:732.464400px;}
.y2a_c00186{bottom:736.334400px;}
.ye_c00186{bottom:763.424400px;}
.y29_c00186{bottom:767.384400px;}
.yd_c00186{bottom:795.824400px;}
.yc_c00186{bottom:826.874400px;}
.y28_c00186{bottom:829.484400px;}
.yb_c00186{bottom:857.924400px;}
.y27_c00186{bottom:860.534400px;}
.ya_c00186{bottom:888.974400px;}
.y26_c00186{bottom:891.584400px;}
.y9_c00186{bottom:919.934400px;}
.y25_c00186{bottom:922.634400px;}
.y8_c00186{bottom:952.334400px;}
.y24_c00186{bottom:953.684400px;}
.y7_c00186{bottom:983.384400px;}
.y23_c00186{bottom:984.644400px;}
.y6_c00186{bottom:1014.434400px;}
.y22_c00186{bottom:1015.694400px;}
.y5_c00186{bottom:1045.394400px;}
.y21_c00186{bottom:1077.794400px;}
.y4_c00186{bottom:1108.844400px;}
.y3_c00186{bottom:1139.894400px;}
.y2_c00186{bottom:1194.074400px;}
.h2_c00186{height:50.400000px;}
.h3_c00186{height:54.331699px;}
.h4_c00186{height:76.824000px;}
.h0_c00186{height:1262.835000px;}
.h1_c00186{height:1263.000000px;}
.w2_c00186{width:0.000000px;}
.w3_c00186{width:0.066000px;}
.w0_c00186{width:892.914000px;}
.w1_c00186{width:893.250000px;}
.x1_c00186{left:-838.913400px;}
.x2_c00186{left:-765.293400px;}
.x3_c00186{left:-743.963400px;}
.x5_c00186{left:-733.343400px;}
.x4_c00186{left:-722.723400px;}
.x0_c00186{left:0.000000px;}
.x8_c00186{left:127.620000px;}
.xa_c00186{left:148.950000px;}
.x9_c00186{left:159.570000px;}
.xb_c00186{left:170.190000px;}
.x7_c00186{left:696.510000px;}
.x6_c00186{left:804.366150px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls7_c00186{letter-spacing:-0.256000pt;}
.ls9_c00186{letter-spacing:-0.128000pt;}
.ls8_c00186{letter-spacing:-0.064000pt;}
.ls6_c00186{letter-spacing:0.000000pt;}
.ls0_c00186{letter-spacing:0.064000pt;}
.ls1_c00186{letter-spacing:0.128000pt;}
.ls4_c00186{letter-spacing:17.280000pt;}
.ls5_c00186{letter-spacing:17.920000pt;}
.ls3_c00186{letter-spacing:20.480000pt;}
.ls2_c00186{letter-spacing:40.384000pt;}
.ws2_c00186{word-spacing:-16.128000pt;}
.ws0_c00186{word-spacing:-16.064000pt;}
.ws1_c00186{word-spacing:-16.000000pt;}
.ws9_c00186{word-spacing:-15.936000pt;}
.ws6_c00186{word-spacing:-15.872000pt;}
.wsc_c00186{word-spacing:-0.128000pt;}
.ws2d_c00186{word-spacing:-0.117120pt;}
.wsd_c00186{word-spacing:-0.064000pt;}
.wsa_c00186{word-spacing:0.000000pt;}
.ws1e_c00186{word-spacing:0.064000pt;}
.ws37_c00186{word-spacing:0.192000pt;}
.ws19_c00186{word-spacing:0.256000pt;}
.ws21_c00186{word-spacing:0.320000pt;}
.ws1f_c00186{word-spacing:0.576000pt;}
.ws1d_c00186{word-spacing:0.896000pt;}
.ws12_c00186{word-spacing:1.216000pt;}
.ws13_c00186{word-spacing:1.280000pt;}
.ws30_c00186{word-spacing:1.536000pt;}
.ws2e_c00186{word-spacing:1.856000pt;}
.ws22_c00186{word-spacing:1.920000pt;}
.ws33_c00186{word-spacing:2.176000pt;}
.ws25_c00186{word-spacing:2.432000pt;}
.ws3_c00186{word-spacing:2.496000pt;}
.ws5_c00186{word-spacing:3.200000pt;}
.ws32_c00186{word-spacing:3.392000pt;}
.ws31_c00186{word-spacing:3.456000pt;}
.ws8_c00186{word-spacing:3.648000pt;}
.ws3c_c00186{word-spacing:3.840000pt;}
.ws3b_c00186{word-spacing:4.096000pt;}
.ws36_c00186{word-spacing:4.416000pt;}
.ws29_c00186{word-spacing:4.480000pt;}
.ws35_c00186{word-spacing:4.736000pt;}
.ws34_c00186{word-spacing:4.800000pt;}
.ws17_c00186{word-spacing:5.056000pt;}
.ws18_c00186{word-spacing:5.120000pt;}
.ws24_c00186{word-spacing:5.312000pt;}
.ws23_c00186{word-spacing:5.376000pt;}
.ws10_c00186{word-spacing:6.400000pt;}
.ws20_c00186{word-spacing:7.360000pt;}
.wsb_c00186{word-spacing:7.616000pt;}
.ws1a_c00186{word-spacing:8.576000pt;}
.ws1b_c00186{word-spacing:9.536000pt;}
.ws7_c00186{word-spacing:11.712000pt;}
.ws2f_c00186{word-spacing:11.840000pt;}
.ws2c_c00186{word-spacing:13.760000pt;}
.ws27_c00186{word-spacing:15.232000pt;}
.ws26_c00186{word-spacing:15.296000pt;}
.ws28_c00186{word-spacing:15.360000pt;}
.ws3e_c00186{word-spacing:15.552000pt;}
.ws3d_c00186{word-spacing:15.616000pt;}
.ws15_c00186{word-spacing:16.256000pt;}
.ws2a_c00186{word-spacing:16.576000pt;}
.ws2b_c00186{word-spacing:16.640000pt;}
.ws4_c00186{word-spacing:16.896000pt;}
.wse_c00186{word-spacing:17.216000pt;}
.wsf_c00186{word-spacing:17.280000pt;}
.ws1c_c00186{word-spacing:18.880000pt;}
.ws11_c00186{word-spacing:19.840000pt;}
.ws38_c00186{word-spacing:21.120000pt;}
.ws14_c00186{word-spacing:22.976000pt;}
.ws16_c00186{word-spacing:24.896000pt;}
.ws3a_c00186{word-spacing:25.216000pt;}
.ws39_c00186{word-spacing:29.376000pt;}
._0_c00186{margin-left:-1.216000pt;}
._1_c00186{width:1.088000pt;}
._2_c00186{width:7.936000pt;}
._5_c00186{width:12.608000pt;}
._3_c00186{width:14.976000pt;}
._6_c00186{width:18.240000pt;}
._4_c00186{width:20.153600pt;}
.fs1_c00186{font-size:58.560000pt;}
.fs0_c00186{font-size:64.000000pt;}
.y0_c00186{bottom:0.000000pt;}
.y1_c00186{bottom:54.887600pt;}
.y20_c00186{bottom:99.079467pt;}
.y3b_c00186{bottom:100.279467pt;}
.y1f_c00186{bottom:126.679467pt;}
.y3a_c00186{bottom:127.799467pt;}
.y1e_c00186{bottom:154.279467pt;}
.y39_c00186{bottom:156.599467pt;}
.y1d_c00186{bottom:181.879467pt;}
.y38_c00186{bottom:184.119467pt;}
.y1c_c00186{bottom:237.079467pt;}
.y37_c00186{bottom:240.519467pt;}
.y1b_c00186{bottom:264.679467pt;}
.y36_c00186{bottom:268.119467pt;}
.y1a_c00186{bottom:292.279467pt;}
.y35_c00186{bottom:295.719467pt;}
.y19_c00186{bottom:319.879467pt;}
.y34_c00186{bottom:323.319467pt;}
.y18_c00186{bottom:347.479467pt;}
.y33_c00186{bottom:378.519467pt;}
.y17_c00186{bottom:402.679467pt;}
.y32_c00186{bottom:406.119467pt;}
.y16_c00186{bottom:430.279467pt;}
.y31_c00186{bottom:433.719467pt;}
.y15_c00186{bottom:457.879467pt;}
.y30_c00186{bottom:461.319467pt;}
.y14_c00186{bottom:485.479467pt;}
.y2f_c00186{bottom:488.919467pt;}
.y13_c00186{bottom:513.079467pt;}
.y2e_c00186{bottom:516.519467pt;}
.y12_c00186{bottom:540.679467pt;}
.y2d_c00186{bottom:544.119467pt;}
.y11_c00186{bottom:568.279467pt;}
.y2c_c00186{bottom:599.319467pt;}
.y10_c00186{bottom:623.479467pt;}
.y2b_c00186{bottom:626.919467pt;}
.yf_c00186{bottom:651.079467pt;}
.y2a_c00186{bottom:654.519467pt;}
.ye_c00186{bottom:678.599467pt;}
.y29_c00186{bottom:682.119467pt;}
.yd_c00186{bottom:707.399467pt;}
.yc_c00186{bottom:734.999467pt;}
.y28_c00186{bottom:737.319467pt;}
.yb_c00186{bottom:762.599467pt;}
.y27_c00186{bottom:764.919467pt;}
.ya_c00186{bottom:790.199467pt;}
.y26_c00186{bottom:792.519467pt;}
.y9_c00186{bottom:817.719467pt;}
.y25_c00186{bottom:820.119467pt;}
.y8_c00186{bottom:846.519467pt;}
.y24_c00186{bottom:847.719467pt;}
.y7_c00186{bottom:874.119467pt;}
.y23_c00186{bottom:875.239467pt;}
.y6_c00186{bottom:901.719467pt;}
.y22_c00186{bottom:902.839467pt;}
.y5_c00186{bottom:929.239467pt;}
.y21_c00186{bottom:958.039467pt;}
.y4_c00186{bottom:985.639467pt;}
.y3_c00186{bottom:1013.239467pt;}
.y2_c00186{bottom:1061.399467pt;}
.h2_c00186{height:44.800000pt;}
.h3_c00186{height:48.294844pt;}
.h4_c00186{height:68.288000pt;}
.h0_c00186{height:1122.520000pt;}
.h1_c00186{height:1122.666667pt;}
.w2_c00186{width:0.000000pt;}
.w3_c00186{width:0.058667pt;}
.w0_c00186{width:793.701333pt;}
.w1_c00186{width:794.000000pt;}
.x1_c00186{left:-745.700800pt;}
.x2_c00186{left:-680.260800pt;}
.x3_c00186{left:-661.300800pt;}
.x5_c00186{left:-651.860800pt;}
.x4_c00186{left:-642.420800pt;}
.x0_c00186{left:0.000000pt;}
.x8_c00186{left:113.440000pt;}
.xa_c00186{left:132.400000pt;}
.x9_c00186{left:141.840000pt;}
.xb_c00186{left:151.280000pt;}
.x7_c00186{left:619.120000pt;}
.x6_c00186{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00187;src:url('chunks/assets/font_b6c3154c3dc9d786400cf15d.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00187;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00187;src:url('chunks/assets/font_0ee1096f159eeeaba8549249.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00187;src:url('chunks/assets/font_9f9f249869ec26df71baf48c.woff2')format("woff");}.ff5_c00187{font-family:ff5_c00187;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00187{letter-spacing:-0.288000px;}
.ls7_c00187{letter-spacing:-0.216000px;}
.ls9_c00187{letter-spacing:-0.072000px;}
.ls6_c00187{letter-spacing:0.000000px;}
.ls1_c00187{letter-spacing:0.072000px;}
.ls4_c00187{letter-spacing:19.800000px;}
.ls3_c00187{letter-spacing:20.880000px;}
.ls2_c00187{letter-spacing:26.640000px;}
.ls5_c00187{letter-spacing:43.200000px;}
.ls0_c00187{letter-spacing:45.432000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00187{word-spacing:-18.072000px;}
.ws7_c00187{word-spacing:-18.000000px;}
.wsc_c00187{word-spacing:-0.072000px;}
.ws8_c00187{word-spacing:0.000000px;}
.ws20_c00187{word-spacing:0.072000px;}
.ws10_c00187{word-spacing:0.216000px;}
.wsd_c00187{word-spacing:0.720000px;}
.ws2_c00187{word-spacing:0.864000px;}
.ws0_c00187{word-spacing:0.950400px;}
.ws1_c00187{word-spacing:1.080000px;}
.wsb_c00187{word-spacing:1.728000px;}
.ws25_c00187{word-spacing:1.800000px;}
.ws24_c00187{word-spacing:3.168000px;}
.ws23_c00187{word-spacing:3.240000px;}
.wse_c00187{word-spacing:3.600000px;}
.ws22_c00187{word-spacing:5.328000px;}
.ws21_c00187{word-spacing:5.400000px;}
.ws17_c00187{word-spacing:6.480000px;}
.ws1f_c00187{word-spacing:7.416000px;}
.ws16_c00187{word-spacing:7.560000px;}
.ws6_c00187{word-spacing:7.848000px;}
.wsa_c00187{word-spacing:8.136000px;}
.ws9_c00187{word-spacing:8.208000px;}
.ws18_c00187{word-spacing:10.728000px;}
.ws19_c00187{word-spacing:10.800000px;}
.ws1e_c00187{word-spacing:11.088000px;}
.wsf_c00187{word-spacing:14.040000px;}
.ws3_c00187{word-spacing:15.840000px;}
.ws1a_c00187{word-spacing:16.128000px;}
.ws1b_c00187{word-spacing:16.200000px;}
.ws12_c00187{word-spacing:16.344000px;}
.ws13_c00187{word-spacing:16.488000px;}
.ws11_c00187{word-spacing:16.560000px;}
.ws14_c00187{word-spacing:16.848000px;}
.ws1d_c00187{word-spacing:17.208000px;}
.ws1c_c00187{word-spacing:17.280000px;}
.ws15_c00187{word-spacing:17.928000px;}
.ws5_c00187{word-spacing:18.288000px;}
.ws27_c00187{word-spacing:25.488000px;}
.ws26_c00187{word-spacing:25.560000px;}
._0_c00187{margin-left:-1.166400px;}
._1_c00187{width:1.008000px;}
._2_c00187{width:5.544000px;}
.fc1_c00187{color:rgb(0,0,0);}
.fc0_c00187{color:rgb(35,31,32);}
.fs1_c00187{font-size:65.880000px;}
.fs0_c00187{font-size:72.000000px;}
.y0_c00187{bottom:0.000000px;}
.y1_c00187{bottom:61.748550px;}
.y1e_c00187{bottom:138.644250px;}
.y1d_c00187{bottom:169.694250px;}
.y1c_c00187{bottom:231.794250px;}
.y1b_c00187{bottom:262.844250px;}
.y1a_c00187{bottom:293.894250px;}
.y19_c00187{bottom:355.994250px;}
.y18_c00187{bottom:387.044250px;}
.y17_c00187{bottom:418.094250px;}
.y16_c00187{bottom:449.144250px;}
.y15_c00187{bottom:511.244250px;}
.y14_c00187{bottom:542.204250px;}
.y13_c00187{bottom:574.604250px;}
.y12_c00187{bottom:605.564250px;}
.y11_c00187{bottom:637.964250px;}
.y10_c00187{bottom:669.014250px;}
.yf_c00187{bottom:700.064250px;}
.ye_c00187{bottom:732.464250px;}
.yd_c00187{bottom:763.424250px;}
.yc_c00187{bottom:826.874250px;}
.yb_c00187{bottom:857.924250px;}
.ya_c00187{bottom:888.974250px;}
.y9_c00187{bottom:920.024250px;}
.y8_c00187{bottom:951.074250px;}
.y7_c00187{bottom:982.124250px;}
.y6_c00187{bottom:1044.224250px;}
.y5_c00187{bottom:1075.184250px;}
.y4_c00187{bottom:1107.584250px;}
.y3_c00187{bottom:1138.544250px;}
.y2_c00187{bottom:1194.074400px;}
.h2_c00187{height:50.400000px;}
.h3_c00187{height:54.331699px;}
.h4_c00187{height:76.824000px;}
.h5_c00187{height:78.048000px;}
.h0_c00187{height:1262.835000px;}
.h1_c00187{height:1263.000000px;}
.w0_c00187{width:892.914000px;}
.w1_c00187{width:893.250000px;}
.x0_c00187{left:0.000000px;}
.x1_c00187{left:54.000000px;}
.x2_c00187{left:127.620000px;}
.x3_c00187{left:148.950000px;}
.x5_c00187{left:159.570000px;}
.x4_c00187{left:170.190000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls8_c00187{letter-spacing:-0.256000pt;}
.ls7_c00187{letter-spacing:-0.192000pt;}
.ls9_c00187{letter-spacing:-0.064000pt;}
.ls6_c00187{letter-spacing:0.000000pt;}
.ls1_c00187{letter-spacing:0.064000pt;}
.ls4_c00187{letter-spacing:17.600000pt;}
.ls3_c00187{letter-spacing:18.560000pt;}
.ls2_c00187{letter-spacing:23.680000pt;}
.ls5_c00187{letter-spacing:38.400000pt;}
.ls0_c00187{letter-spacing:40.384000pt;}
.ws4_c00187{word-spacing:-16.064000pt;}
.ws7_c00187{word-spacing:-16.000000pt;}
.wsc_c00187{word-spacing:-0.064000pt;}
.ws8_c00187{word-spacing:0.000000pt;}
.ws20_c00187{word-spacing:0.064000pt;}
.ws10_c00187{word-spacing:0.192000pt;}
.wsd_c00187{word-spacing:0.640000pt;}
.ws2_c00187{word-spacing:0.768000pt;}
.ws0_c00187{word-spacing:0.844800pt;}
.ws1_c00187{word-spacing:0.960000pt;}
.wsb_c00187{word-spacing:1.536000pt;}
.ws25_c00187{word-spacing:1.600000pt;}
.ws24_c00187{word-spacing:2.816000pt;}
.ws23_c00187{word-spacing:2.880000pt;}
.wse_c00187{word-spacing:3.200000pt;}
.ws22_c00187{word-spacing:4.736000pt;}
.ws21_c00187{word-spacing:4.800000pt;}
.ws17_c00187{word-spacing:5.760000pt;}
.ws1f_c00187{word-spacing:6.592000pt;}
.ws16_c00187{word-spacing:6.720000pt;}
.ws6_c00187{word-spacing:6.976000pt;}
.wsa_c00187{word-spacing:7.232000pt;}
.ws9_c00187{word-spacing:7.296000pt;}
.ws18_c00187{word-spacing:9.536000pt;}
.ws19_c00187{word-spacing:9.600000pt;}
.ws1e_c00187{word-spacing:9.856000pt;}
.wsf_c00187{word-spacing:12.480000pt;}
.ws3_c00187{word-spacing:14.080000pt;}
.ws1a_c00187{word-spacing:14.336000pt;}
.ws1b_c00187{word-spacing:14.400000pt;}
.ws12_c00187{word-spacing:14.528000pt;}
.ws13_c00187{word-spacing:14.656000pt;}
.ws11_c00187{word-spacing:14.720000pt;}
.ws14_c00187{word-spacing:14.976000pt;}
.ws1d_c00187{word-spacing:15.296000pt;}
.ws1c_c00187{word-spacing:15.360000pt;}
.ws15_c00187{word-spacing:15.936000pt;}
.ws5_c00187{word-spacing:16.256000pt;}
.ws27_c00187{word-spacing:22.656000pt;}
.ws26_c00187{word-spacing:22.720000pt;}
._0_c00187{margin-left:-1.036800pt;}
._1_c00187{width:0.896000pt;}
._2_c00187{width:4.928000pt;}
.fs1_c00187{font-size:58.560000pt;}
.fs0_c00187{font-size:64.000000pt;}
.y0_c00187{bottom:0.000000pt;}
.y1_c00187{bottom:54.887600pt;}
.y1e_c00187{bottom:123.239333pt;}
.y1d_c00187{bottom:150.839333pt;}
.y1c_c00187{bottom:206.039333pt;}
.y1b_c00187{bottom:233.639333pt;}
.y1a_c00187{bottom:261.239333pt;}
.y19_c00187{bottom:316.439333pt;}
.y18_c00187{bottom:344.039333pt;}
.y17_c00187{bottom:371.639333pt;}
.y16_c00187{bottom:399.239333pt;}
.y15_c00187{bottom:454.439333pt;}
.y14_c00187{bottom:481.959333pt;}
.y13_c00187{bottom:510.759333pt;}
.y12_c00187{bottom:538.279333pt;}
.y11_c00187{bottom:567.079333pt;}
.y10_c00187{bottom:594.679333pt;}
.yf_c00187{bottom:622.279333pt;}
.ye_c00187{bottom:651.079333pt;}
.yd_c00187{bottom:678.599333pt;}
.yc_c00187{bottom:734.999333pt;}
.yb_c00187{bottom:762.599333pt;}
.ya_c00187{bottom:790.199333pt;}
.y9_c00187{bottom:817.799333pt;}
.y8_c00187{bottom:845.399333pt;}
.y7_c00187{bottom:872.999333pt;}
.y6_c00187{bottom:928.199333pt;}
.y5_c00187{bottom:955.719333pt;}
.y4_c00187{bottom:984.519333pt;}
.y3_c00187{bottom:1012.039333pt;}
.y2_c00187{bottom:1061.399467pt;}
.h2_c00187{height:44.800000pt;}
.h3_c00187{height:48.294844pt;}
.h4_c00187{height:68.288000pt;}
.h5_c00187{height:69.376000pt;}
.h0_c00187{height:1122.520000pt;}
.h1_c00187{height:1122.666667pt;}
.w0_c00187{width:793.701333pt;}
.w1_c00187{width:794.000000pt;}
.x0_c00187{left:0.000000pt;}
.x1_c00187{left:48.000000pt;}
.x2_c00187{left:113.440000pt;}
.x3_c00187{left:132.400000pt;}
.x5_c00187{left:141.840000pt;}
.x4_c00187{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00188;src:url('chunks/assets/font_6dcdad8d32a20c535b888de2.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00188;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00188;src:url('chunks/assets/font_5ffda56fbc0f5f0c4cf6400d.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00188;src:url('chunks/assets/font_2b50011dc3cfdd1c606bf401.woff2')format("woff");}.ff5_c00188{font-family:ff5_c00188;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00188;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00188{font-family:ff6_c00188;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00188;src:url('chunks/assets/font_5bb8b03241294640fe54f171.woff2')format("woff");}.ff7_c00188{font-family:ff7_c00188;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00188;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff8_c00188{font-family:ff8_c00188;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00188;src:url('chunks/assets/font_e199e9d16fec6a7342a4331c.woff2')format("woff");}.ff9_c00188{font-family:ff9_c00188;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00188;src:url('chunks/assets/font_9b09644bb314879bc0fa3c76.woff2')format("woff");}.ffa_c00188{font-family:ffa_c00188;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.lsc_c00188{letter-spacing:-0.360000px;}
.ls9_c00188{letter-spacing:-0.288000px;}
.ls8_c00188{letter-spacing:-0.216000px;}
.lsa_c00188{letter-spacing:-0.072000px;}
.ls7_c00188{letter-spacing:0.000000px;}
.ls1_c00188{letter-spacing:0.072000px;}
.lsb_c00188{letter-spacing:0.144000px;}
.ls4_c00188{letter-spacing:19.800000px;}
.ls3_c00188{letter-spacing:20.880000px;}
.ls2_c00188{letter-spacing:26.640000px;}
.ls6_c00188{letter-spacing:28.440000px;}
.ls5_c00188{letter-spacing:43.200000px;}
.ls0_c00188{letter-spacing:45.432000px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00188{word-spacing:-18.144000px;}
.ws4_c00188{word-spacing:-18.072000px;}
.ws7_c00188{word-spacing:-18.000000px;}
.ws42_c00188{word-spacing:-0.432000px;}
.ws39_c00188{word-spacing:-0.360000px;}
.ws2b_c00188{word-spacing:-0.131760px;}
.wsf_c00188{word-spacing:-0.072000px;}
.wsb_c00188{word-spacing:0.000000px;}
.ws23_c00188{word-spacing:0.072000px;}
.ws13_c00188{word-spacing:0.216000px;}
.ws2f_c00188{word-spacing:0.288000px;}
.ws41_c00188{word-spacing:0.360000px;}
.ws2e_c00188{word-spacing:0.648000px;}
.ws10_c00188{word-spacing:0.720000px;}
.ws2_c00188{word-spacing:0.864000px;}
.ws0_c00188{word-spacing:0.950400px;}
.ws1_c00188{word-spacing:1.080000px;}
.wse_c00188{word-spacing:1.728000px;}
.ws28_c00188{word-spacing:1.800000px;}
.ws35_c00188{word-spacing:2.880000px;}
.ws27_c00188{word-spacing:3.168000px;}
.ws26_c00188{word-spacing:3.240000px;}
.ws11_c00188{word-spacing:3.600000px;}
.ws37_c00188{word-spacing:4.320000px;}
.ws34_c00188{word-spacing:4.608000px;}
.ws9_c00188{word-spacing:4.680000px;}
.ws8_c00188{word-spacing:4.896000px;}
.ws36_c00188{word-spacing:4.968000px;}
.ws25_c00188{word-spacing:5.328000px;}
.ws24_c00188{word-spacing:5.400000px;}
.ws31_c00188{word-spacing:6.048000px;}
.ws30_c00188{word-spacing:6.120000px;}
.ws1a_c00188{word-spacing:6.480000px;}
.ws22_c00188{word-spacing:7.416000px;}
.ws19_c00188{word-spacing:7.560000px;}
.ws6_c00188{word-spacing:7.848000px;}
.wsd_c00188{word-spacing:8.136000px;}
.wsc_c00188{word-spacing:8.208000px;}
.ws32_c00188{word-spacing:8.640000px;}
.ws2c_c00188{word-spacing:9.360000px;}
.ws3c_c00188{word-spacing:10.368000px;}
.ws3d_c00188{word-spacing:10.440000px;}
.ws1b_c00188{word-spacing:10.728000px;}
.ws1c_c00188{word-spacing:10.800000px;}
.ws21_c00188{word-spacing:11.088000px;}
.ws12_c00188{word-spacing:14.040000px;}
.ws3_c00188{word-spacing:15.840000px;}
.ws1d_c00188{word-spacing:16.128000px;}
.ws1e_c00188{word-spacing:16.200000px;}
.ws15_c00188{word-spacing:16.344000px;}
.ws16_c00188{word-spacing:16.488000px;}
.ws14_c00188{word-spacing:16.560000px;}
.ws17_c00188{word-spacing:16.848000px;}
.ws20_c00188{word-spacing:17.208000px;}
.ws1f_c00188{word-spacing:17.280000px;}
.ws18_c00188{word-spacing:17.928000px;}
.ws5_c00188{word-spacing:18.288000px;}
.ws38_c00188{word-spacing:19.080000px;}
.ws3a_c00188{word-spacing:23.688000px;}
.ws2a_c00188{word-spacing:25.488000px;}
.ws29_c00188{word-spacing:25.560000px;}
.ws2d_c00188{word-spacing:28.728000px;}
.ws33_c00188{word-spacing:34.920000px;}
.ws3b_c00188{word-spacing:39.168000px;}
.ws3f_c00188{word-spacing:42.552000px;}
.ws3e_c00188{word-spacing:42.768000px;}
.ws40_c00188{word-spacing:42.840000px;}
._0_c00188{margin-left:-1.166400px;}
._1_c00188{width:1.008000px;}
._2_c00188{width:5.544000px;}
._3_c00188{width:8.712000px;}
._4_c00188{width:22.968000px;}
.fc2_c00188{color:transparent;}
.fc1_c00188{color:rgb(0,0,0);}
.fc0_c00188{color:rgb(35,31,32);}
.fs1_c00188{font-size:65.880000px;}
.fs0_c00188{font-size:72.000000px;}
.y0_c00188{bottom:0.000000px;}
.y1_c00188{bottom:61.748550px;}
.y1e_c00188{bottom:138.644250px;}
.y3b_c00188{bottom:141.254400px;}
.y1d_c00188{bottom:169.694250px;}
.y3a_c00188{bottom:172.304400px;}
.y39_c00188{bottom:203.264400px;}
.y1c_c00188{bottom:231.794250px;}
.y38_c00188{bottom:235.664400px;}
.y1b_c00188{bottom:262.844250px;}
.y37_c00188{bottom:266.714400px;}
.y1a_c00188{bottom:293.894250px;}
.y36_c00188{bottom:297.674400px;}
.y35_c00188{bottom:330.074400px;}
.y19_c00188{bottom:355.994250px;}
.y34_c00188{bottom:361.124400px;}
.y18_c00188{bottom:387.044250px;}
.y33_c00188{bottom:392.174400px;}
.y17_c00188{bottom:418.094250px;}
.y32_c00188{bottom:424.574400px;}
.y16_c00188{bottom:449.144250px;}
.y31_c00188{bottom:455.624400px;}
.y30_c00188{bottom:486.584400px;}
.y15_c00188{bottom:511.244250px;}
.y14_c00188{bottom:542.204250px;}
.y2f_c00188{bottom:550.034400px;}
.y13_c00188{bottom:574.604250px;}
.y2e_c00188{bottom:581.084400px;}
.y12_c00188{bottom:605.564250px;}
.y2d_c00188{bottom:612.134400px;}
.y11_c00188{bottom:637.964250px;}
.y2c_c00188{bottom:643.184400px;}
.y10_c00188{bottom:669.014250px;}
.y2b_c00188{bottom:674.234400px;}
.yf_c00188{bottom:700.064250px;}
.y2a_c00188{bottom:705.284400px;}
.ye_c00188{bottom:732.464250px;}
.y29_c00188{bottom:736.334400px;}
.yd_c00188{bottom:763.424250px;}
.y28_c00188{bottom:798.434400px;}
.yc_c00188{bottom:826.874250px;}
.y27_c00188{bottom:829.484400px;}
.yb_c00188{bottom:857.924250px;}
.y26_c00188{bottom:860.534400px;}
.ya_c00188{bottom:888.974250px;}
.y25_c00188{bottom:891.584400px;}
.y9_c00188{bottom:920.024250px;}
.y8_c00188{bottom:951.074250px;}
.y24_c00188{bottom:953.684400px;}
.y7_c00188{bottom:982.124250px;}
.y23_c00188{bottom:984.644400px;}
.y22_c00188{bottom:1015.694400px;}
.y6_c00188{bottom:1044.224250px;}
.y5_c00188{bottom:1075.184250px;}
.y21_c00188{bottom:1077.794400px;}
.y4_c00188{bottom:1107.584250px;}
.y20_c00188{bottom:1108.844400px;}
.y3_c00188{bottom:1138.544250px;}
.y1f_c00188{bottom:1139.894400px;}
.y2_c00188{bottom:1194.074400px;}
.h2_c00188{height:50.400000px;}
.h3_c00188{height:54.331699px;}
.h4_c00188{height:76.824000px;}
.h5_c00188{height:78.048000px;}
.h0_c00188{height:1262.835000px;}
.h1_c00188{height:1263.000000px;}
.w2_c00188{width:0.000000px;}
.w3_c00188{width:0.066000px;}
.w0_c00188{width:892.914000px;}
.w1_c00188{width:893.250000px;}
.x1_c00188{left:-838.913400px;}
.x2_c00188{left:-765.293400px;}
.x3_c00188{left:-743.963400px;}
.x5_c00188{left:-733.343400px;}
.x4_c00188{left:-722.723400px;}
.x0_c00188{left:0.000000px;}
.x8_c00188{left:127.620000px;}
.xa_c00188{left:148.950000px;}
.x9_c00188{left:159.570000px;}
.xb_c00188{left:170.190000px;}
.x7_c00188{left:696.510000px;}
.x6_c00188{left:804.366150px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.lsc_c00188{letter-spacing:-0.320000pt;}
.ls9_c00188{letter-spacing:-0.256000pt;}
.ls8_c00188{letter-spacing:-0.192000pt;}
.lsa_c00188{letter-spacing:-0.064000pt;}
.ls7_c00188{letter-spacing:0.000000pt;}
.ls1_c00188{letter-spacing:0.064000pt;}
.lsb_c00188{letter-spacing:0.128000pt;}
.ls4_c00188{letter-spacing:17.600000pt;}
.ls3_c00188{letter-spacing:18.560000pt;}
.ls2_c00188{letter-spacing:23.680000pt;}
.ls6_c00188{letter-spacing:25.280000pt;}
.ls5_c00188{letter-spacing:38.400000pt;}
.ls0_c00188{letter-spacing:40.384000pt;}
.wsa_c00188{word-spacing:-16.128000pt;}
.ws4_c00188{word-spacing:-16.064000pt;}
.ws7_c00188{word-spacing:-16.000000pt;}
.ws42_c00188{word-spacing:-0.384000pt;}
.ws39_c00188{word-spacing:-0.320000pt;}
.ws2b_c00188{word-spacing:-0.117120pt;}
.wsf_c00188{word-spacing:-0.064000pt;}
.wsb_c00188{word-spacing:0.000000pt;}
.ws23_c00188{word-spacing:0.064000pt;}
.ws13_c00188{word-spacing:0.192000pt;}
.ws2f_c00188{word-spacing:0.256000pt;}
.ws41_c00188{word-spacing:0.320000pt;}
.ws2e_c00188{word-spacing:0.576000pt;}
.ws10_c00188{word-spacing:0.640000pt;}
.ws2_c00188{word-spacing:0.768000pt;}
.ws0_c00188{word-spacing:0.844800pt;}
.ws1_c00188{word-spacing:0.960000pt;}
.wse_c00188{word-spacing:1.536000pt;}
.ws28_c00188{word-spacing:1.600000pt;}
.ws35_c00188{word-spacing:2.560000pt;}
.ws27_c00188{word-spacing:2.816000pt;}
.ws26_c00188{word-spacing:2.880000pt;}
.ws11_c00188{word-spacing:3.200000pt;}
.ws37_c00188{word-spacing:3.840000pt;}
.ws34_c00188{word-spacing:4.096000pt;}
.ws9_c00188{word-spacing:4.160000pt;}
.ws8_c00188{word-spacing:4.352000pt;}
.ws36_c00188{word-spacing:4.416000pt;}
.ws25_c00188{word-spacing:4.736000pt;}
.ws24_c00188{word-spacing:4.800000pt;}
.ws31_c00188{word-spacing:5.376000pt;}
.ws30_c00188{word-spacing:5.440000pt;}
.ws1a_c00188{word-spacing:5.760000pt;}
.ws22_c00188{word-spacing:6.592000pt;}
.ws19_c00188{word-spacing:6.720000pt;}
.ws6_c00188{word-spacing:6.976000pt;}
.wsd_c00188{word-spacing:7.232000pt;}
.wsc_c00188{word-spacing:7.296000pt;}
.ws32_c00188{word-spacing:7.680000pt;}
.ws2c_c00188{word-spacing:8.320000pt;}
.ws3c_c00188{word-spacing:9.216000pt;}
.ws3d_c00188{word-spacing:9.280000pt;}
.ws1b_c00188{word-spacing:9.536000pt;}
.ws1c_c00188{word-spacing:9.600000pt;}
.ws21_c00188{word-spacing:9.856000pt;}
.ws12_c00188{word-spacing:12.480000pt;}
.ws3_c00188{word-spacing:14.080000pt;}
.ws1d_c00188{word-spacing:14.336000pt;}
.ws1e_c00188{word-spacing:14.400000pt;}
.ws15_c00188{word-spacing:14.528000pt;}
.ws16_c00188{word-spacing:14.656000pt;}
.ws14_c00188{word-spacing:14.720000pt;}
.ws17_c00188{word-spacing:14.976000pt;}
.ws20_c00188{word-spacing:15.296000pt;}
.ws1f_c00188{word-spacing:15.360000pt;}
.ws18_c00188{word-spacing:15.936000pt;}
.ws5_c00188{word-spacing:16.256000pt;}
.ws38_c00188{word-spacing:16.960000pt;}
.ws3a_c00188{word-spacing:21.056000pt;}
.ws2a_c00188{word-spacing:22.656000pt;}
.ws29_c00188{word-spacing:22.720000pt;}
.ws2d_c00188{word-spacing:25.536000pt;}
.ws33_c00188{word-spacing:31.040000pt;}
.ws3b_c00188{word-spacing:34.816000pt;}
.ws3f_c00188{word-spacing:37.824000pt;}
.ws3e_c00188{word-spacing:38.016000pt;}
.ws40_c00188{word-spacing:38.080000pt;}
._0_c00188{margin-left:-1.036800pt;}
._1_c00188{width:0.896000pt;}
._2_c00188{width:4.928000pt;}
._3_c00188{width:7.744000pt;}
._4_c00188{width:20.416000pt;}
.fs1_c00188{font-size:58.560000pt;}
.fs0_c00188{font-size:64.000000pt;}
.y0_c00188{bottom:0.000000pt;}
.y1_c00188{bottom:54.887600pt;}
.y1e_c00188{bottom:123.239333pt;}
.y3b_c00188{bottom:125.559467pt;}
.y1d_c00188{bottom:150.839333pt;}
.y3a_c00188{bottom:153.159467pt;}
.y39_c00188{bottom:180.679467pt;}
.y1c_c00188{bottom:206.039333pt;}
.y38_c00188{bottom:209.479467pt;}
.y1b_c00188{bottom:233.639333pt;}
.y37_c00188{bottom:237.079467pt;}
.y1a_c00188{bottom:261.239333pt;}
.y36_c00188{bottom:264.599467pt;}
.y35_c00188{bottom:293.399467pt;}
.y19_c00188{bottom:316.439333pt;}
.y34_c00188{bottom:320.999467pt;}
.y18_c00188{bottom:344.039333pt;}
.y33_c00188{bottom:348.599467pt;}
.y17_c00188{bottom:371.639333pt;}
.y32_c00188{bottom:377.399467pt;}
.y16_c00188{bottom:399.239333pt;}
.y31_c00188{bottom:404.999467pt;}
.y30_c00188{bottom:432.519467pt;}
.y15_c00188{bottom:454.439333pt;}
.y14_c00188{bottom:481.959333pt;}
.y2f_c00188{bottom:488.919467pt;}
.y13_c00188{bottom:510.759333pt;}
.y2e_c00188{bottom:516.519467pt;}
.y12_c00188{bottom:538.279333pt;}
.y2d_c00188{bottom:544.119467pt;}
.y11_c00188{bottom:567.079333pt;}
.y2c_c00188{bottom:571.719467pt;}
.y10_c00188{bottom:594.679333pt;}
.y2b_c00188{bottom:599.319467pt;}
.yf_c00188{bottom:622.279333pt;}
.y2a_c00188{bottom:626.919467pt;}
.ye_c00188{bottom:651.079333pt;}
.y29_c00188{bottom:654.519467pt;}
.yd_c00188{bottom:678.599333pt;}
.y28_c00188{bottom:709.719467pt;}
.yc_c00188{bottom:734.999333pt;}
.y27_c00188{bottom:737.319467pt;}
.yb_c00188{bottom:762.599333pt;}
.y26_c00188{bottom:764.919467pt;}
.ya_c00188{bottom:790.199333pt;}
.y25_c00188{bottom:792.519467pt;}
.y9_c00188{bottom:817.799333pt;}
.y8_c00188{bottom:845.399333pt;}
.y24_c00188{bottom:847.719467pt;}
.y7_c00188{bottom:872.999333pt;}
.y23_c00188{bottom:875.239467pt;}
.y22_c00188{bottom:902.839467pt;}
.y6_c00188{bottom:928.199333pt;}
.y5_c00188{bottom:955.719333pt;}
.y21_c00188{bottom:958.039467pt;}
.y4_c00188{bottom:984.519333pt;}
.y20_c00188{bottom:985.639467pt;}
.y3_c00188{bottom:1012.039333pt;}
.y1f_c00188{bottom:1013.239467pt;}
.y2_c00188{bottom:1061.399467pt;}
.h2_c00188{height:44.800000pt;}
.h3_c00188{height:48.294844pt;}
.h4_c00188{height:68.288000pt;}
.h5_c00188{height:69.376000pt;}
.h0_c00188{height:1122.520000pt;}
.h1_c00188{height:1122.666667pt;}
.w2_c00188{width:0.000000pt;}
.w3_c00188{width:0.058667pt;}
.w0_c00188{width:793.701333pt;}
.w1_c00188{width:794.000000pt;}
.x1_c00188{left:-745.700800pt;}
.x2_c00188{left:-680.260800pt;}
.x3_c00188{left:-661.300800pt;}
.x5_c00188{left:-651.860800pt;}
.x4_c00188{left:-642.420800pt;}
.x0_c00188{left:0.000000pt;}
.x8_c00188{left:113.440000pt;}
.xa_c00188{left:132.400000pt;}
.x9_c00188{left:141.840000pt;}
.xb_c00188{left:151.280000pt;}
.x7_c00188{left:619.120000pt;}
.x6_c00188{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00189;src:url('chunks/assets/font_8caba67c5ddd3d7cbbf3e2e8.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00189;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_79bea095a0dab1948f9ada1d.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00189;src:url('chunks/assets/font_257771db5dc0ea2542075980.woff2')format("woff");}.ff5_c00189{font-family:ff5_c00189;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls5_c00189{letter-spacing:-0.360000px;}
.ls4_c00189{letter-spacing:-0.216000px;}
.ls3_c00189{letter-spacing:0.000000px;}
.ls1_c00189{letter-spacing:0.072000px;}
.ls6_c00189{letter-spacing:0.144000px;}
.ls2_c00189{letter-spacing:26.668800px;}
.ls0_c00189{letter-spacing:45.432000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00189{word-spacing:-18.072000px;}
.ws1_c00189{word-spacing:-17.784000px;}
.ws1d_c00189{word-spacing:-0.576000px;}
.ws3_c00189{word-spacing:-0.288000px;}
.ws4_c00189{word-spacing:-0.280800px;}
.ws10_c00189{word-spacing:-0.072000px;}
.ws5_c00189{word-spacing:0.000000px;}
.wsc_c00189{word-spacing:0.360000px;}
.ws7_c00189{word-spacing:1.008000px;}
.ws13_c00189{word-spacing:2.088000px;}
.ws12_c00189{word-spacing:2.160000px;}
.ws11_c00189{word-spacing:2.448000px;}
.ws8_c00189{word-spacing:2.808000px;}
.wse_c00189{word-spacing:3.960000px;}
.wsd_c00189{word-spacing:4.320000px;}
.ws1c_c00189{word-spacing:6.120000px;}
.ws2_c00189{word-spacing:6.408000px;}
.wsa_c00189{word-spacing:6.768000px;}
.ws1b_c00189{word-spacing:8.208000px;}
.ws17_c00189{word-spacing:8.568000px;}
.ws18_c00189{word-spacing:8.640000px;}
.ws1f_c00189{word-spacing:12.816000px;}
.ws20_c00189{word-spacing:13.320000px;}
.wsf_c00189{word-spacing:13.680000px;}
.ws15_c00189{word-spacing:14.328000px;}
.ws14_c00189{word-spacing:14.688000px;}
.ws16_c00189{word-spacing:14.760000px;}
.ws9_c00189{word-spacing:15.048000px;}
.ws1a_c00189{word-spacing:19.728000px;}
.wsb_c00189{word-spacing:20.808000px;}
.ws1e_c00189{word-spacing:22.320000px;}
.ws19_c00189{word-spacing:30.168000px;}
.ws6_c00189{word-spacing:47.520000px;}
._0_c00189{margin-left:-1.022400px;}
._1_c00189{width:1.224000px;}
._2_c00189{width:7.387200px;}
._4_c00189{width:14.616000px;}
._3_c00189{width:21.312000px;}
.fc1_c00189{color:rgb(0,0,0);}
.fc0_c00189{color:rgb(35,31,32);}
.fs1_c00189{font-size:65.880000px;}
.fs0_c00189{font-size:72.000000px;}
.y0_c00189{bottom:0.000000px;}
.y1_c00189{bottom:61.748550px;}
.y1e_c00189{bottom:145.124250px;}
.y1d_c00189{bottom:176.174250px;}
.y1c_c00189{bottom:207.224250px;}
.y1b_c00189{bottom:269.324250px;}
.y1a_c00189{bottom:300.374250px;}
.y19_c00189{bottom:331.424250px;}
.y18_c00189{bottom:393.524250px;}
.y17_c00189{bottom:424.574250px;}
.y16_c00189{bottom:455.624250px;}
.y15_c00189{bottom:486.674250px;}
.y14_c00189{bottom:517.724250px;}
.y13_c00189{bottom:579.824250px;}
.y12_c00189{bottom:610.784250px;}
.y11_c00189{bottom:641.834250px;}
.y10_c00189{bottom:672.884250px;}
.yf_c00189{bottom:703.934250px;}
.ye_c00189{bottom:734.984250px;}
.yd_c00189{bottom:766.034250px;}
.yc_c00189{bottom:828.134250px;}
.yb_c00189{bottom:859.184250px;}
.ya_c00189{bottom:890.234250px;}
.y9_c00189{bottom:921.284250px;}
.y8_c00189{bottom:952.334250px;}
.y7_c00189{bottom:1014.434250px;}
.y6_c00189{bottom:1045.484250px;}
.y5_c00189{bottom:1076.534250px;}
.y4_c00189{bottom:1107.584250px;}
.y3_c00189{bottom:1138.544250px;}
.y2_c00189{bottom:1194.074400px;}
.h2_c00189{height:50.400000px;}
.h3_c00189{height:54.331699px;}
.h4_c00189{height:76.824000px;}
.h5_c00189{height:78.048000px;}
.h0_c00189{height:1262.835000px;}
.h1_c00189{height:1263.000000px;}
.w0_c00189{width:892.914000px;}
.w1_c00189{width:893.250000px;}
.x0_c00189{left:0.000000px;}
.x1_c00189{left:54.000000px;}
.x2_c00189{left:127.620000px;}
.x3_c00189{left:148.950000px;}
.x5_c00189{left:159.570000px;}
.x4_c00189{left:170.190000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls5_c00189{letter-spacing:-0.320000pt;}
.ls4_c00189{letter-spacing:-0.192000pt;}
.ls3_c00189{letter-spacing:0.000000pt;}
.ls1_c00189{letter-spacing:0.064000pt;}
.ls6_c00189{letter-spacing:0.128000pt;}
.ls2_c00189{letter-spacing:23.705600pt;}
.ls0_c00189{letter-spacing:40.384000pt;}
.ws0_c00189{word-spacing:-16.064000pt;}
.ws1_c00189{word-spacing:-15.808000pt;}
.ws1d_c00189{word-spacing:-0.512000pt;}
.ws3_c00189{word-spacing:-0.256000pt;}
.ws4_c00189{word-spacing:-0.249600pt;}
.ws10_c00189{word-spacing:-0.064000pt;}
.ws5_c00189{word-spacing:0.000000pt;}
.wsc_c00189{word-spacing:0.320000pt;}
.ws7_c00189{word-spacing:0.896000pt;}
.ws13_c00189{word-spacing:1.856000pt;}
.ws12_c00189{word-spacing:1.920000pt;}
.ws11_c00189{word-spacing:2.176000pt;}
.ws8_c00189{word-spacing:2.496000pt;}
.wse_c00189{word-spacing:3.520000pt;}
.wsd_c00189{word-spacing:3.840000pt;}
.ws1c_c00189{word-spacing:5.440000pt;}
.ws2_c00189{word-spacing:5.696000pt;}
.wsa_c00189{word-spacing:6.016000pt;}
.ws1b_c00189{word-spacing:7.296000pt;}
.ws17_c00189{word-spacing:7.616000pt;}
.ws18_c00189{word-spacing:7.680000pt;}
.ws1f_c00189{word-spacing:11.392000pt;}
.ws20_c00189{word-spacing:11.840000pt;}
.wsf_c00189{word-spacing:12.160000pt;}
.ws15_c00189{word-spacing:12.736000pt;}
.ws14_c00189{word-spacing:13.056000pt;}
.ws16_c00189{word-spacing:13.120000pt;}
.ws9_c00189{word-spacing:13.376000pt;}
.ws1a_c00189{word-spacing:17.536000pt;}
.wsb_c00189{word-spacing:18.496000pt;}
.ws1e_c00189{word-spacing:19.840000pt;}
.ws19_c00189{word-spacing:26.816000pt;}
.ws6_c00189{word-spacing:42.240000pt;}
._0_c00189{margin-left:-0.908800pt;}
._1_c00189{width:1.088000pt;}
._2_c00189{width:6.566400pt;}
._4_c00189{width:12.992000pt;}
._3_c00189{width:18.944000pt;}
.fs1_c00189{font-size:58.560000pt;}
.fs0_c00189{font-size:64.000000pt;}
.y0_c00189{bottom:0.000000pt;}
.y1_c00189{bottom:54.887600pt;}
.y1e_c00189{bottom:128.999333pt;}
.y1d_c00189{bottom:156.599333pt;}
.y1c_c00189{bottom:184.199333pt;}
.y1b_c00189{bottom:239.399333pt;}
.y1a_c00189{bottom:266.999333pt;}
.y19_c00189{bottom:294.599333pt;}
.y18_c00189{bottom:349.799333pt;}
.y17_c00189{bottom:377.399333pt;}
.y16_c00189{bottom:404.999333pt;}
.y15_c00189{bottom:432.599333pt;}
.y14_c00189{bottom:460.199333pt;}
.y13_c00189{bottom:515.399333pt;}
.y12_c00189{bottom:542.919333pt;}
.y11_c00189{bottom:570.519333pt;}
.y10_c00189{bottom:598.119333pt;}
.yf_c00189{bottom:625.719333pt;}
.ye_c00189{bottom:653.319333pt;}
.yd_c00189{bottom:680.919333pt;}
.yc_c00189{bottom:736.119333pt;}
.yb_c00189{bottom:763.719333pt;}
.ya_c00189{bottom:791.319333pt;}
.y9_c00189{bottom:818.919333pt;}
.y8_c00189{bottom:846.519333pt;}
.y7_c00189{bottom:901.719333pt;}
.y6_c00189{bottom:929.319333pt;}
.y5_c00189{bottom:956.919333pt;}
.y4_c00189{bottom:984.519333pt;}
.y3_c00189{bottom:1012.039333pt;}
.y2_c00189{bottom:1061.399467pt;}
.h2_c00189{height:44.800000pt;}
.h3_c00189{height:48.294844pt;}
.h4_c00189{height:68.288000pt;}
.h5_c00189{height:69.376000pt;}
.h0_c00189{height:1122.520000pt;}
.h1_c00189{height:1122.666667pt;}
.w0_c00189{width:793.701333pt;}
.w1_c00189{width:794.000000pt;}
.x0_c00189{left:0.000000pt;}
.x1_c00189{left:48.000000pt;}
.x2_c00189{left:113.440000pt;}
.x3_c00189{left:132.400000pt;}
.x5_c00189{left:141.840000pt;}
.x4_c00189{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00190;src:url('chunks/assets/font_3249ac1d2335974d3d88c5ef.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00190;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00190;src:url('chunks/assets/font_9693e2050ff3fd3eba7778bc.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00190;src:url('chunks/assets/font_25c977b9996f42cec8120c20.woff2')format("woff");}.ff5_c00190{font-family:ff5_c00190;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00190;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00190{font-family:ff6_c00190;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00190;src:url('chunks/assets/font_736e3a45fb67d9bd202f11ae.woff2')format("woff");}.ff7_c00190{font-family:ff7_c00190;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00190;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff8_c00190{font-family:ff8_c00190;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00190;src:url('chunks/assets/font_65d96078297c5ce35382d7b6.woff2')format("woff");}.ff9_c00190{font-family:ff9_c00190;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00190;src:url('chunks/assets/font_158864c2b3c4586b6f96a644.woff2')format("woff");}.ffa_c00190{font-family:ffa_c00190;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.lsa_c00190{letter-spacing:-0.360000px;}
.ls9_c00190{letter-spacing:-0.216000px;}
.lsb_c00190{letter-spacing:-0.072000px;}
.ls8_c00190{letter-spacing:0.000000px;}
.ls1_c00190{letter-spacing:0.072000px;}
.ls7_c00190{letter-spacing:0.144000px;}
.ls5_c00190{letter-spacing:20.880000px;}
.ls6_c00190{letter-spacing:22.392000px;}
.ls2_c00190{letter-spacing:26.668800px;}
.ls4_c00190{letter-spacing:33.120000px;}
.ls3_c00190{letter-spacing:38.880000px;}
.ls0_c00190{letter-spacing:45.432000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00190{word-spacing:-18.072000px;}
.ws5_c00190{word-spacing:-18.000000px;}
.ws7_c00190{word-spacing:-17.928000px;}
.ws1_c00190{word-spacing:-17.784000px;}
.ws21_c00190{word-spacing:-0.576000px;}
.ws3_c00190{word-spacing:-0.288000px;}
.ws4_c00190{word-spacing:-0.280800px;}
.ws6_c00190{word-spacing:-0.216000px;}
.ws2e_c00190{word-spacing:-0.144000px;}
.ws25_c00190{word-spacing:-0.131760px;}
.ws14_c00190{word-spacing:-0.072000px;}
.ws8_c00190{word-spacing:0.000000px;}
.ws10_c00190{word-spacing:0.360000px;}
.wsa_c00190{word-spacing:1.008000px;}
.ws37_c00190{word-spacing:2.016000px;}
.ws17_c00190{word-spacing:2.088000px;}
.ws16_c00190{word-spacing:2.160000px;}
.ws15_c00190{word-spacing:2.448000px;}
.ws31_c00190{word-spacing:2.664000px;}
.wsb_c00190{word-spacing:2.808000px;}
.ws30_c00190{word-spacing:3.240000px;}
.ws32_c00190{word-spacing:3.528000px;}
.ws12_c00190{word-spacing:3.960000px;}
.ws29_c00190{word-spacing:4.248000px;}
.ws11_c00190{word-spacing:4.320000px;}
.ws20_c00190{word-spacing:6.120000px;}
.wsf_c00190{word-spacing:6.408000px;}
.ws2_c00190{word-spacing:6.415200px;}
.wsd_c00190{word-spacing:6.768000px;}
.ws1f_c00190{word-spacing:8.208000px;}
.ws1b_c00190{word-spacing:8.568000px;}
.ws1c_c00190{word-spacing:8.640000px;}
.ws33_c00190{word-spacing:10.440000px;}
.ws26_c00190{word-spacing:11.160000px;}
.ws38_c00190{word-spacing:12.600000px;}
.ws23_c00190{word-spacing:12.816000px;}
.ws24_c00190{word-spacing:13.320000px;}
.ws13_c00190{word-spacing:13.680000px;}
.ws19_c00190{word-spacing:14.328000px;}
.ws18_c00190{word-spacing:14.688000px;}
.ws1a_c00190{word-spacing:14.760000px;}
.wsc_c00190{word-spacing:15.048000px;}
.ws2f_c00190{word-spacing:15.120000px;}
.ws2d_c00190{word-spacing:15.480000px;}
.ws34_c00190{word-spacing:15.840000px;}
.ws35_c00190{word-spacing:16.200000px;}
.ws2c_c00190{word-spacing:18.288000px;}
.ws2b_c00190{word-spacing:18.360000px;}
.ws36_c00190{word-spacing:18.648000px;}
.ws1e_c00190{word-spacing:19.728000px;}
.wse_c00190{word-spacing:20.808000px;}
.ws27_c00190{word-spacing:20.880000px;}
.ws22_c00190{word-spacing:22.320000px;}
.ws1d_c00190{word-spacing:30.168000px;}
.ws2a_c00190{word-spacing:31.968000px;}
.ws28_c00190{word-spacing:32.760000px;}
.ws9_c00190{word-spacing:47.520000px;}
._0_c00190{margin-left:-1.022400px;}
._1_c00190{width:1.224000px;}
._2_c00190{width:7.380000px;}
._4_c00190{width:14.616000px;}
._6_c00190{width:16.128000px;}
._3_c00190{width:21.312000px;}
._5_c00190{width:32.544000px;}
.fc2_c00190{color:transparent;}
.fc1_c00190{color:rgb(0,0,0);}
.fc0_c00190{color:rgb(35,31,32);}
.fs1_c00190{font-size:65.880000px;}
.fs0_c00190{font-size:72.000000px;}
.y0_c00190{bottom:0.000000px;}
.y1_c00190{bottom:61.748550px;}
.y1e_c00190{bottom:145.124250px;}
.y1d_c00190{bottom:176.174250px;}
.y39_c00190{bottom:177.434400px;}
.y1c_c00190{bottom:207.224250px;}
.y38_c00190{bottom:208.484400px;}
.y37_c00190{bottom:239.444400px;}
.y1b_c00190{bottom:269.324250px;}
.y36_c00190{bottom:270.584400px;}
.y1a_c00190{bottom:300.374250px;}
.y35_c00190{bottom:301.634400px;}
.y19_c00190{bottom:331.424250px;}
.y34_c00190{bottom:332.684400px;}
.y33_c00190{bottom:363.734400px;}
.y18_c00190{bottom:393.524250px;}
.y17_c00190{bottom:424.574250px;}
.y32_c00190{bottom:425.834400px;}
.y16_c00190{bottom:455.624250px;}
.y31_c00190{bottom:456.884400px;}
.y15_c00190{bottom:486.674250px;}
.y30_c00190{bottom:487.934400px;}
.y14_c00190{bottom:517.724250px;}
.y2f_c00190{bottom:518.984400px;}
.y13_c00190{bottom:579.824250px;}
.y2e_c00190{bottom:580.994400px;}
.y12_c00190{bottom:610.784250px;}
.y11_c00190{bottom:641.834250px;}
.y2d_c00190{bottom:643.184400px;}
.y10_c00190{bottom:672.884250px;}
.y2c_c00190{bottom:674.234400px;}
.yf_c00190{bottom:703.934250px;}
.y2b_c00190{bottom:705.284400px;}
.ye_c00190{bottom:734.984250px;}
.y2a_c00190{bottom:736.334400px;}
.yd_c00190{bottom:766.034250px;}
.y29_c00190{bottom:767.384400px;}
.y28_c00190{bottom:798.434400px;}
.yc_c00190{bottom:828.134250px;}
.y27_c00190{bottom:829.484400px;}
.yb_c00190{bottom:859.184250px;}
.y26_c00190{bottom:860.534400px;}
.ya_c00190{bottom:890.234250px;}
.y25_c00190{bottom:891.584400px;}
.y9_c00190{bottom:921.284250px;}
.y8_c00190{bottom:952.334250px;}
.y24_c00190{bottom:953.684400px;}
.y23_c00190{bottom:984.644400px;}
.y7_c00190{bottom:1014.434250px;}
.y22_c00190{bottom:1015.694400px;}
.y6_c00190{bottom:1045.484250px;}
.y21_c00190{bottom:1046.744400px;}
.y5_c00190{bottom:1076.534250px;}
.y4_c00190{bottom:1107.584250px;}
.y20_c00190{bottom:1108.844400px;}
.y3_c00190{bottom:1138.544250px;}
.y1f_c00190{bottom:1139.894400px;}
.y2_c00190{bottom:1194.074400px;}
.h2_c00190{height:50.400000px;}
.h3_c00190{height:54.331699px;}
.h4_c00190{height:76.824000px;}
.h5_c00190{height:78.048000px;}
.h0_c00190{height:1262.835000px;}
.h1_c00190{height:1263.000000px;}
.w2_c00190{width:0.000000px;}
.w3_c00190{width:0.066000px;}
.w0_c00190{width:892.914000px;}
.w1_c00190{width:893.250000px;}
.x1_c00190{left:-838.913400px;}
.x2_c00190{left:-765.293400px;}
.x3_c00190{left:-743.963400px;}
.x5_c00190{left:-733.343400px;}
.x4_c00190{left:-722.723400px;}
.x0_c00190{left:0.000000px;}
.x8_c00190{left:127.620000px;}
.x9_c00190{left:159.570000px;}
.x7_c00190{left:696.510000px;}
.x6_c00190{left:804.366150px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.lsa_c00190{letter-spacing:-0.320000pt;}
.ls9_c00190{letter-spacing:-0.192000pt;}
.lsb_c00190{letter-spacing:-0.064000pt;}
.ls8_c00190{letter-spacing:0.000000pt;}
.ls1_c00190{letter-spacing:0.064000pt;}
.ls7_c00190{letter-spacing:0.128000pt;}
.ls5_c00190{letter-spacing:18.560000pt;}
.ls6_c00190{letter-spacing:19.904000pt;}
.ls2_c00190{letter-spacing:23.705600pt;}
.ls4_c00190{letter-spacing:29.440000pt;}
.ls3_c00190{letter-spacing:34.560000pt;}
.ls0_c00190{letter-spacing:40.384000pt;}
.ws0_c00190{word-spacing:-16.064000pt;}
.ws5_c00190{word-spacing:-16.000000pt;}
.ws7_c00190{word-spacing:-15.936000pt;}
.ws1_c00190{word-spacing:-15.808000pt;}
.ws21_c00190{word-spacing:-0.512000pt;}
.ws3_c00190{word-spacing:-0.256000pt;}
.ws4_c00190{word-spacing:-0.249600pt;}
.ws6_c00190{word-spacing:-0.192000pt;}
.ws2e_c00190{word-spacing:-0.128000pt;}
.ws25_c00190{word-spacing:-0.117120pt;}
.ws14_c00190{word-spacing:-0.064000pt;}
.ws8_c00190{word-spacing:0.000000pt;}
.ws10_c00190{word-spacing:0.320000pt;}
.wsa_c00190{word-spacing:0.896000pt;}
.ws37_c00190{word-spacing:1.792000pt;}
.ws17_c00190{word-spacing:1.856000pt;}
.ws16_c00190{word-spacing:1.920000pt;}
.ws15_c00190{word-spacing:2.176000pt;}
.ws31_c00190{word-spacing:2.368000pt;}
.wsb_c00190{word-spacing:2.496000pt;}
.ws30_c00190{word-spacing:2.880000pt;}
.ws32_c00190{word-spacing:3.136000pt;}
.ws12_c00190{word-spacing:3.520000pt;}
.ws29_c00190{word-spacing:3.776000pt;}
.ws11_c00190{word-spacing:3.840000pt;}
.ws20_c00190{word-spacing:5.440000pt;}
.wsf_c00190{word-spacing:5.696000pt;}
.ws2_c00190{word-spacing:5.702400pt;}
.wsd_c00190{word-spacing:6.016000pt;}
.ws1f_c00190{word-spacing:7.296000pt;}
.ws1b_c00190{word-spacing:7.616000pt;}
.ws1c_c00190{word-spacing:7.680000pt;}
.ws33_c00190{word-spacing:9.280000pt;}
.ws26_c00190{word-spacing:9.920000pt;}
.ws38_c00190{word-spacing:11.200000pt;}
.ws23_c00190{word-spacing:11.392000pt;}
.ws24_c00190{word-spacing:11.840000pt;}
.ws13_c00190{word-spacing:12.160000pt;}
.ws19_c00190{word-spacing:12.736000pt;}
.ws18_c00190{word-spacing:13.056000pt;}
.ws1a_c00190{word-spacing:13.120000pt;}
.wsc_c00190{word-spacing:13.376000pt;}
.ws2f_c00190{word-spacing:13.440000pt;}
.ws2d_c00190{word-spacing:13.760000pt;}
.ws34_c00190{word-spacing:14.080000pt;}
.ws35_c00190{word-spacing:14.400000pt;}
.ws2c_c00190{word-spacing:16.256000pt;}
.ws2b_c00190{word-spacing:16.320000pt;}
.ws36_c00190{word-spacing:16.576000pt;}
.ws1e_c00190{word-spacing:17.536000pt;}
.wse_c00190{word-spacing:18.496000pt;}
.ws27_c00190{word-spacing:18.560000pt;}
.ws22_c00190{word-spacing:19.840000pt;}
.ws1d_c00190{word-spacing:26.816000pt;}
.ws2a_c00190{word-spacing:28.416000pt;}
.ws28_c00190{word-spacing:29.120000pt;}
.ws9_c00190{word-spacing:42.240000pt;}
._0_c00190{margin-left:-0.908800pt;}
._1_c00190{width:1.088000pt;}
._2_c00190{width:6.560000pt;}
._4_c00190{width:12.992000pt;}
._6_c00190{width:14.336000pt;}
._3_c00190{width:18.944000pt;}
._5_c00190{width:28.928000pt;}
.fs1_c00190{font-size:58.560000pt;}
.fs0_c00190{font-size:64.000000pt;}
.y0_c00190{bottom:0.000000pt;}
.y1_c00190{bottom:54.887600pt;}
.y1e_c00190{bottom:128.999333pt;}
.y1d_c00190{bottom:156.599333pt;}
.y39_c00190{bottom:157.719467pt;}
.y1c_c00190{bottom:184.199333pt;}
.y38_c00190{bottom:185.319467pt;}
.y37_c00190{bottom:212.839467pt;}
.y1b_c00190{bottom:239.399333pt;}
.y36_c00190{bottom:240.519467pt;}
.y1a_c00190{bottom:266.999333pt;}
.y35_c00190{bottom:268.119467pt;}
.y19_c00190{bottom:294.599333pt;}
.y34_c00190{bottom:295.719467pt;}
.y33_c00190{bottom:323.319467pt;}
.y18_c00190{bottom:349.799333pt;}
.y17_c00190{bottom:377.399333pt;}
.y32_c00190{bottom:378.519467pt;}
.y16_c00190{bottom:404.999333pt;}
.y31_c00190{bottom:406.119467pt;}
.y15_c00190{bottom:432.599333pt;}
.y30_c00190{bottom:433.719467pt;}
.y14_c00190{bottom:460.199333pt;}
.y2f_c00190{bottom:461.319467pt;}
.y13_c00190{bottom:515.399333pt;}
.y2e_c00190{bottom:516.439467pt;}
.y12_c00190{bottom:542.919333pt;}
.y11_c00190{bottom:570.519333pt;}
.y2d_c00190{bottom:571.719467pt;}
.y10_c00190{bottom:598.119333pt;}
.y2c_c00190{bottom:599.319467pt;}
.yf_c00190{bottom:625.719333pt;}
.y2b_c00190{bottom:626.919467pt;}
.ye_c00190{bottom:653.319333pt;}
.y2a_c00190{bottom:654.519467pt;}
.yd_c00190{bottom:680.919333pt;}
.y29_c00190{bottom:682.119467pt;}
.y28_c00190{bottom:709.719467pt;}
.yc_c00190{bottom:736.119333pt;}
.y27_c00190{bottom:737.319467pt;}
.yb_c00190{bottom:763.719333pt;}
.y26_c00190{bottom:764.919467pt;}
.ya_c00190{bottom:791.319333pt;}
.y25_c00190{bottom:792.519467pt;}
.y9_c00190{bottom:818.919333pt;}
.y8_c00190{bottom:846.519333pt;}
.y24_c00190{bottom:847.719467pt;}
.y23_c00190{bottom:875.239467pt;}
.y7_c00190{bottom:901.719333pt;}
.y22_c00190{bottom:902.839467pt;}
.y6_c00190{bottom:929.319333pt;}
.y21_c00190{bottom:930.439467pt;}
.y5_c00190{bottom:956.919333pt;}
.y4_c00190{bottom:984.519333pt;}
.y20_c00190{bottom:985.639467pt;}
.y3_c00190{bottom:1012.039333pt;}
.y1f_c00190{bottom:1013.239467pt;}
.y2_c00190{bottom:1061.399467pt;}
.h2_c00190{height:44.800000pt;}
.h3_c00190{height:48.294844pt;}
.h4_c00190{height:68.288000pt;}
.h5_c00190{height:69.376000pt;}
.h0_c00190{height:1122.520000pt;}
.h1_c00190{height:1122.666667pt;}
.w2_c00190{width:0.000000pt;}
.w3_c00190{width:0.058667pt;}
.w0_c00190{width:793.701333pt;}
.w1_c00190{width:794.000000pt;}
.x1_c00190{left:-745.700800pt;}
.x2_c00190{left:-680.260800pt;}
.x3_c00190{left:-661.300800pt;}
.x5_c00190{left:-651.860800pt;}
.x4_c00190{left:-642.420800pt;}
.x0_c00190{left:0.000000pt;}
.x8_c00190{left:113.440000pt;}
.x9_c00190{left:141.840000pt;}
.x7_c00190{left:619.120000pt;}
.x6_c00190{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00191;src:url('chunks/assets/font_fdbcd7a7f14076cf67252da2.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00191;src:url('chunks/assets/font_61619ba4e3dd4bb18c02dc86.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00191;src:url('chunks/assets/font_06732c128b9746e40551e80f.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00191;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff5_c00191{font-family:ff5_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;}
.m0_c00191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls8_c00191{letter-spacing:-0.288000px;}
.ls7_c00191{letter-spacing:0.000000px;}
.ls0_c00191{letter-spacing:0.072000px;}
.ls2_c00191{letter-spacing:0.144000px;}
.ls3_c00191{letter-spacing:18.000000px;}
.ls5_c00191{letter-spacing:19.080000px;}
.ls1_c00191{letter-spacing:24.480000px;}
.ls6_c00191{letter-spacing:44.280000px;}
.ls4_c00191{letter-spacing:45.432000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00191{word-spacing:-18.144000px;}
.ws3_c00191{word-spacing:-18.072000px;}
.ws2_c00191{word-spacing:-18.000000px;}
.ws19_c00191{word-spacing:-0.144000px;}
.ws1a_c00191{word-spacing:-0.072000px;}
.ws8_c00191{word-spacing:0.000000px;}
.ws23_c00191{word-spacing:1.008000px;}
.ws24_c00191{word-spacing:1.080000px;}
.ws25_c00191{word-spacing:1.296000px;}
.ws6_c00191{word-spacing:1.504800px;}
.ws21_c00191{word-spacing:1.656000px;}
.ws20_c00191{word-spacing:1.728000px;}
.ws22_c00191{word-spacing:1.800000px;}
.wsd_c00191{word-spacing:3.960000px;}
.ws0_c00191{word-spacing:4.176000px;}
.ws11_c00191{word-spacing:4.248000px;}
.ws12_c00191{word-spacing:4.320000px;}
.ws17_c00191{word-spacing:5.688000px;}
.ws1d_c00191{word-spacing:6.336000px;}
.ws13_c00191{word-spacing:6.480000px;}
.ws16_c00191{word-spacing:7.200000px;}
.ws15_c00191{word-spacing:7.416000px;}
.ws14_c00191{word-spacing:7.488000px;}
.wsb_c00191{word-spacing:9.000000px;}
.wsa_c00191{word-spacing:9.288000px;}
.ws9_c00191{word-spacing:9.360000px;}
.ws5_c00191{word-spacing:9.849600px;}
.ws1e_c00191{word-spacing:9.936000px;}
.ws1f_c00191{word-spacing:10.080000px;}
.ws4_c00191{word-spacing:12.456000px;}
.ws1b_c00191{word-spacing:12.528000px;}
.ws1c_c00191{word-spacing:12.600000px;}
.ws29_c00191{word-spacing:13.464000px;}
.ws2a_c00191{word-spacing:13.968000px;}
.ws26_c00191{word-spacing:15.408000px;}
.wsf_c00191{word-spacing:20.448000px;}
.ws10_c00191{word-spacing:20.520000px;}
.wsc_c00191{word-spacing:24.120000px;}
.wse_c00191{word-spacing:24.480000px;}
.ws27_c00191{word-spacing:26.568000px;}
.ws28_c00191{word-spacing:26.640000px;}
.ws18_c00191{word-spacing:34.488000px;}
.ws1_c00191{word-spacing:34.632000px;}
._0_c00191{margin-left:-1.166400px;}
._1_c00191{width:1.008000px;}
.fc1_c00191{color:rgb(0,0,0);}
.fc0_c00191{color:rgb(35,31,32);}
.fs1_c00191{font-size:65.880000px;}
.fs0_c00191{font-size:72.000000px;}
.y0_c00191{bottom:0.000000px;}
.y1_c00191{bottom:61.748550px;}
.y1e_c00191{bottom:173.564400px;}
.y1d_c00191{bottom:204.614400px;}
.y1c_c00191{bottom:235.664400px;}
.y1b_c00191{bottom:266.714400px;}
.y1a_c00191{bottom:297.764400px;}
.y19_c00191{bottom:328.814400px;}
.y18_c00191{bottom:359.864400px;}
.y17_c00191{bottom:421.964400px;}
.y16_c00191{bottom:452.924400px;}
.y15_c00191{bottom:485.324400px;}
.y14_c00191{bottom:516.374400px;}
.y13_c00191{bottom:548.774400px;}
.y12_c00191{bottom:579.824400px;}
.y11_c00191{bottom:610.784400px;}
.y10_c00191{bottom:674.234400px;}
.yf_c00191{bottom:705.284400px;}
.ye_c00191{bottom:767.384400px;}
.yd_c00191{bottom:798.434400px;}
.yc_c00191{bottom:829.484400px;}
.yb_c00191{bottom:860.534400px;}
.ya_c00191{bottom:891.584400px;}
.y9_c00191{bottom:922.634400px;}
.y8_c00191{bottom:984.644400px;}
.y7_c00191{bottom:1015.694400px;}
.y6_c00191{bottom:1046.744400px;}
.y5_c00191{bottom:1077.794400px;}
.y4_c00191{bottom:1108.844400px;}
.y3_c00191{bottom:1139.894400px;}
.y2_c00191{bottom:1194.074400px;}
.h2_c00191{height:50.400000px;}
.h3_c00191{height:54.331699px;}
.h4_c00191{height:76.824000px;}
.h5_c00191{height:78.048000px;}
.h0_c00191{height:1262.835000px;}
.h1_c00191{height:1263.000000px;}
.w0_c00191{width:892.914000px;}
.w1_c00191{width:893.250000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:54.000000px;}
.x2_c00191{left:127.620000px;}
.x4_c00191{left:148.950000px;}
.x3_c00191{left:159.570000px;}
.x5_c00191{left:170.190000px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls8_c00191{letter-spacing:-0.256000pt;}
.ls7_c00191{letter-spacing:0.000000pt;}
.ls0_c00191{letter-spacing:0.064000pt;}
.ls2_c00191{letter-spacing:0.128000pt;}
.ls3_c00191{letter-spacing:16.000000pt;}
.ls5_c00191{letter-spacing:16.960000pt;}
.ls1_c00191{letter-spacing:21.760000pt;}
.ls6_c00191{letter-spacing:39.360000pt;}
.ls4_c00191{letter-spacing:40.384000pt;}
.ws7_c00191{word-spacing:-16.128000pt;}
.ws3_c00191{word-spacing:-16.064000pt;}
.ws2_c00191{word-spacing:-16.000000pt;}
.ws19_c00191{word-spacing:-0.128000pt;}
.ws1a_c00191{word-spacing:-0.064000pt;}
.ws8_c00191{word-spacing:0.000000pt;}
.ws23_c00191{word-spacing:0.896000pt;}
.ws24_c00191{word-spacing:0.960000pt;}
.ws25_c00191{word-spacing:1.152000pt;}
.ws6_c00191{word-spacing:1.337600pt;}
.ws21_c00191{word-spacing:1.472000pt;}
.ws20_c00191{word-spacing:1.536000pt;}
.ws22_c00191{word-spacing:1.600000pt;}
.wsd_c00191{word-spacing:3.520000pt;}
.ws0_c00191{word-spacing:3.712000pt;}
.ws11_c00191{word-spacing:3.776000pt;}
.ws12_c00191{word-spacing:3.840000pt;}
.ws17_c00191{word-spacing:5.056000pt;}
.ws1d_c00191{word-spacing:5.632000pt;}
.ws13_c00191{word-spacing:5.760000pt;}
.ws16_c00191{word-spacing:6.400000pt;}
.ws15_c00191{word-spacing:6.592000pt;}
.ws14_c00191{word-spacing:6.656000pt;}
.wsb_c00191{word-spacing:8.000000pt;}
.wsa_c00191{word-spacing:8.256000pt;}
.ws9_c00191{word-spacing:8.320000pt;}
.ws5_c00191{word-spacing:8.755200pt;}
.ws1e_c00191{word-spacing:8.832000pt;}
.ws1f_c00191{word-spacing:8.960000pt;}
.ws4_c00191{word-spacing:11.072000pt;}
.ws1b_c00191{word-spacing:11.136000pt;}
.ws1c_c00191{word-spacing:11.200000pt;}
.ws29_c00191{word-spacing:11.968000pt;}
.ws2a_c00191{word-spacing:12.416000pt;}
.ws26_c00191{word-spacing:13.696000pt;}
.wsf_c00191{word-spacing:18.176000pt;}
.ws10_c00191{word-spacing:18.240000pt;}
.wsc_c00191{word-spacing:21.440000pt;}
.wse_c00191{word-spacing:21.760000pt;}
.ws27_c00191{word-spacing:23.616000pt;}
.ws28_c00191{word-spacing:23.680000pt;}
.ws18_c00191{word-spacing:30.656000pt;}
.ws1_c00191{word-spacing:30.784000pt;}
._0_c00191{margin-left:-1.036800pt;}
._1_c00191{width:0.896000pt;}
.fs1_c00191{font-size:58.560000pt;}
.fs0_c00191{font-size:64.000000pt;}
.y0_c00191{bottom:0.000000pt;}
.y1_c00191{bottom:54.887600pt;}
.y1e_c00191{bottom:154.279467pt;}
.y1d_c00191{bottom:181.879467pt;}
.y1c_c00191{bottom:209.479467pt;}
.y1b_c00191{bottom:237.079467pt;}
.y1a_c00191{bottom:264.679467pt;}
.y19_c00191{bottom:292.279467pt;}
.y18_c00191{bottom:319.879467pt;}
.y17_c00191{bottom:375.079467pt;}
.y16_c00191{bottom:402.599467pt;}
.y15_c00191{bottom:431.399467pt;}
.y14_c00191{bottom:458.999467pt;}
.y13_c00191{bottom:487.799467pt;}
.y12_c00191{bottom:515.399467pt;}
.y11_c00191{bottom:542.919467pt;}
.y10_c00191{bottom:599.319467pt;}
.yf_c00191{bottom:626.919467pt;}
.ye_c00191{bottom:682.119467pt;}
.yd_c00191{bottom:709.719467pt;}
.yc_c00191{bottom:737.319467pt;}
.yb_c00191{bottom:764.919467pt;}
.ya_c00191{bottom:792.519467pt;}
.y9_c00191{bottom:820.119467pt;}
.y8_c00191{bottom:875.239467pt;}
.y7_c00191{bottom:902.839467pt;}
.y6_c00191{bottom:930.439467pt;}
.y5_c00191{bottom:958.039467pt;}
.y4_c00191{bottom:985.639467pt;}
.y3_c00191{bottom:1013.239467pt;}
.y2_c00191{bottom:1061.399467pt;}
.h2_c00191{height:44.800000pt;}
.h3_c00191{height:48.294844pt;}
.h4_c00191{height:68.288000pt;}
.h5_c00191{height:69.376000pt;}
.h0_c00191{height:1122.520000pt;}
.h1_c00191{height:1122.666667pt;}
.w0_c00191{width:793.701333pt;}
.w1_c00191{width:794.000000pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:48.000000pt;}
.x2_c00191{left:113.440000pt;}
.x4_c00191{left:132.400000pt;}
.x3_c00191{left:141.840000pt;}
.x5_c00191{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00192;src:url('chunks/assets/font_323d5e22ef0e0219d9f756b9.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00192;src:url('chunks/assets/font_ed28165d409235ceb0c6a4ba.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00192;src:url('chunks/assets/font_530810c742290e80c9c599a6.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00192;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff5_c00192{font-family:ff5_c00192;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00192;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00192{font-family:ff6_c00192;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00192;src:url('chunks/assets/font_033951b885257a71dd39101b.woff2')format("woff");}.ff7_c00192{font-family:ff7_c00192;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00192;src:url('chunks/assets/font_0136bca729194d936d7ac318.woff2')format("woff");}.ff8_c00192{font-family:ff8_c00192;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00192;src:url('chunks/assets/font_530810c742290e80c9c599a6.woff2')format("woff");}.ff9_c00192{font-family:ff9_c00192;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00192;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ffa_c00192{font-family:ffa_c00192;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00192;src:url('chunks/assets/font_3ab320dda83e18fe7b6a3482.woff2')format("woff");}.ffb_c00192{font-family:ffb_c00192;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c00192{letter-spacing:-0.360000px;}
.ls8_c00192{letter-spacing:-0.288000px;}
.ls7_c00192{letter-spacing:0.000000px;}
.ls0_c00192{letter-spacing:0.072000px;}
.ls2_c00192{letter-spacing:0.144000px;}
.ls3_c00192{letter-spacing:18.000000px;}
.ls5_c00192{letter-spacing:19.080000px;}
.ls1_c00192{letter-spacing:24.480000px;}
.ls6_c00192{letter-spacing:44.280000px;}
.ls4_c00192{letter-spacing:45.432000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00192{word-spacing:-18.144000px;}
.ws3_c00192{word-spacing:-18.072000px;}
.ws2_c00192{word-spacing:-18.000000px;}
.wsc_c00192{word-spacing:-17.640000px;}
.ws1f_c00192{word-spacing:-0.144000px;}
.ws30_c00192{word-spacing:-0.131760px;}
.wsb_c00192{word-spacing:-0.072000px;}
.wsd_c00192{word-spacing:0.000000px;}
.ws35_c00192{word-spacing:0.648000px;}
.ws28_c00192{word-spacing:1.008000px;}
.ws29_c00192{word-spacing:1.080000px;}
.ws2a_c00192{word-spacing:1.296000px;}
.ws8_c00192{word-spacing:1.497600px;}
.ws6_c00192{word-spacing:1.504800px;}
.ws26_c00192{word-spacing:1.656000px;}
.ws25_c00192{word-spacing:1.728000px;}
.ws27_c00192{word-spacing:1.800000px;}
.ws37_c00192{word-spacing:2.448000px;}
.ws38_c00192{word-spacing:2.808000px;}
.ws33_c00192{word-spacing:3.096000px;}
.ws3a_c00192{word-spacing:3.168000px;}
.ws34_c00192{word-spacing:3.240000px;}
.wse_c00192{word-spacing:3.333600px;}
.ws13_c00192{word-spacing:3.960000px;}
.ws0_c00192{word-spacing:4.176000px;}
.ws17_c00192{word-spacing:4.248000px;}
.ws18_c00192{word-spacing:4.320000px;}
.ws1d_c00192{word-spacing:5.688000px;}
.ws22_c00192{word-spacing:6.336000px;}
.ws19_c00192{word-spacing:6.480000px;}
.ws1c_c00192{word-spacing:7.200000px;}
.ws1b_c00192{word-spacing:7.416000px;}
.ws1a_c00192{word-spacing:7.488000px;}
.ws11_c00192{word-spacing:9.000000px;}
.ws10_c00192{word-spacing:9.288000px;}
.wsf_c00192{word-spacing:9.360000px;}
.ws5_c00192{word-spacing:9.849600px;}
.ws23_c00192{word-spacing:9.936000px;}
.ws39_c00192{word-spacing:10.008000px;}
.ws24_c00192{word-spacing:10.080000px;}
.ws4_c00192{word-spacing:12.456000px;}
.ws20_c00192{word-spacing:12.528000px;}
.ws21_c00192{word-spacing:12.600000px;}
.ws2e_c00192{word-spacing:13.464000px;}
.ws2f_c00192{word-spacing:13.968000px;}
.ws31_c00192{word-spacing:14.616000px;}
.ws32_c00192{word-spacing:14.760000px;}
.ws2b_c00192{word-spacing:15.408000px;}
.ws36_c00192{word-spacing:19.008000px;}
.ws15_c00192{word-spacing:20.448000px;}
.ws16_c00192{word-spacing:20.520000px;}
.ws12_c00192{word-spacing:24.120000px;}
.ws14_c00192{word-spacing:24.480000px;}
.ws2c_c00192{word-spacing:26.568000px;}
.ws2d_c00192{word-spacing:26.640000px;}
.ws1e_c00192{word-spacing:34.488000px;}
.ws1_c00192{word-spacing:34.632000px;}
.wsa_c00192{word-spacing:36.000000px;}
.ws9_c00192{word-spacing:140.400000px;}
._0_c00192{margin-left:-1.166400px;}
._1_c00192{width:1.008000px;}
._2_c00192{width:16.992000px;}
.fc2_c00192{color:transparent;}
.fc1_c00192{color:rgb(0,0,0);}
.fc0_c00192{color:rgb(35,31,32);}
.fs1_c00192{font-size:65.880000px;}
.fs0_c00192{font-size:72.000000px;}
.y0_c00192{bottom:0.000000px;}
.y1_c00192{bottom:61.748550px;}
.y1e_c00192{bottom:173.564400px;}
.y1d_c00192{bottom:204.614400px;}
.y1c_c00192{bottom:235.664400px;}
.y1b_c00192{bottom:266.714400px;}
.y29_c00192{bottom:270.584400px;}
.y1a_c00192{bottom:297.764400px;}
.y28_c00192{bottom:301.634400px;}
.y19_c00192{bottom:328.814400px;}
.y18_c00192{bottom:359.864400px;}
.y27_c00192{bottom:363.734400px;}
.y26_c00192{bottom:394.784400px;}
.y17_c00192{bottom:421.964400px;}
.y25_c00192{bottom:425.834400px;}
.y16_c00192{bottom:452.924400px;}
.y15_c00192{bottom:485.324400px;}
.y24_c00192{bottom:487.934400px;}
.y14_c00192{bottom:516.374400px;}
.y23_c00192{bottom:518.984400px;}
.y13_c00192{bottom:548.774400px;}
.y12_c00192{bottom:579.824400px;}
.y22_c00192{bottom:581.084400px;}
.y11_c00192{bottom:610.784400px;}
.y21_c00192{bottom:612.134400px;}
.y10_c00192{bottom:674.234400px;}
.yf_c00192{bottom:705.284400px;}
.ye_c00192{bottom:767.384400px;}
.yd_c00192{bottom:798.434400px;}
.yc_c00192{bottom:829.484400px;}
.yb_c00192{bottom:860.534400px;}
.ya_c00192{bottom:891.584400px;}
.y9_c00192{bottom:922.634400px;}
.y20_c00192{bottom:953.684400px;}
.y8_c00192{bottom:984.644400px;}
.y1f_c00192{bottom:1015.514400px;}
.y7_c00192{bottom:1015.694400px;}
.y6_c00192{bottom:1046.744400px;}
.y5_c00192{bottom:1077.794400px;}
.y4_c00192{bottom:1108.844400px;}
.y3_c00192{bottom:1139.894400px;}
.y2_c00192{bottom:1194.074400px;}
.h2_c00192{height:50.400000px;}
.h3_c00192{height:54.331699px;}
.h4_c00192{height:76.824000px;}
.h5_c00192{height:78.048000px;}
.h0_c00192{height:1262.835000px;}
.h1_c00192{height:1263.000000px;}
.w2_c00192{width:0.000000px;}
.w3_c00192{width:0.066000px;}
.w0_c00192{width:892.914000px;}
.w1_c00192{width:893.250000px;}
.x1_c00192{left:-838.913400px;}
.x2_c00192{left:-765.293400px;}
.x4_c00192{left:-743.963400px;}
.x3_c00192{left:-733.343400px;}
.x5_c00192{left:-722.723400px;}
.x0_c00192{left:0.000000px;}
.x9_c00192{left:127.620000px;}
.x8_c00192{left:159.570000px;}
.xa_c00192{left:180.540000px;}
.xb_c00192{left:207.540000px;}
.xc_c00192{left:217.620000px;}
.xd_c00192{left:244.620000px;}
.x7_c00192{left:696.510000px;}
.x6_c00192{left:804.366150px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls9_c00192{letter-spacing:-0.320000pt;}
.ls8_c00192{letter-spacing:-0.256000pt;}
.ls7_c00192{letter-spacing:0.000000pt;}
.ls0_c00192{letter-spacing:0.064000pt;}
.ls2_c00192{letter-spacing:0.128000pt;}
.ls3_c00192{letter-spacing:16.000000pt;}
.ls5_c00192{letter-spacing:16.960000pt;}
.ls1_c00192{letter-spacing:21.760000pt;}
.ls6_c00192{letter-spacing:39.360000pt;}
.ls4_c00192{letter-spacing:40.384000pt;}
.ws7_c00192{word-spacing:-16.128000pt;}
.ws3_c00192{word-spacing:-16.064000pt;}
.ws2_c00192{word-spacing:-16.000000pt;}
.wsc_c00192{word-spacing:-15.680000pt;}
.ws1f_c00192{word-spacing:-0.128000pt;}
.ws30_c00192{word-spacing:-0.117120pt;}
.wsb_c00192{word-spacing:-0.064000pt;}
.wsd_c00192{word-spacing:0.000000pt;}
.ws35_c00192{word-spacing:0.576000pt;}
.ws28_c00192{word-spacing:0.896000pt;}
.ws29_c00192{word-spacing:0.960000pt;}
.ws2a_c00192{word-spacing:1.152000pt;}
.ws8_c00192{word-spacing:1.331200pt;}
.ws6_c00192{word-spacing:1.337600pt;}
.ws26_c00192{word-spacing:1.472000pt;}
.ws25_c00192{word-spacing:1.536000pt;}
.ws27_c00192{word-spacing:1.600000pt;}
.ws37_c00192{word-spacing:2.176000pt;}
.ws38_c00192{word-spacing:2.496000pt;}
.ws33_c00192{word-spacing:2.752000pt;}
.ws3a_c00192{word-spacing:2.816000pt;}
.ws34_c00192{word-spacing:2.880000pt;}
.wse_c00192{word-spacing:2.963200pt;}
.ws13_c00192{word-spacing:3.520000pt;}
.ws0_c00192{word-spacing:3.712000pt;}
.ws17_c00192{word-spacing:3.776000pt;}
.ws18_c00192{word-spacing:3.840000pt;}
.ws1d_c00192{word-spacing:5.056000pt;}
.ws22_c00192{word-spacing:5.632000pt;}
.ws19_c00192{word-spacing:5.760000pt;}
.ws1c_c00192{word-spacing:6.400000pt;}
.ws1b_c00192{word-spacing:6.592000pt;}
.ws1a_c00192{word-spacing:6.656000pt;}
.ws11_c00192{word-spacing:8.000000pt;}
.ws10_c00192{word-spacing:8.256000pt;}
.wsf_c00192{word-spacing:8.320000pt;}
.ws5_c00192{word-spacing:8.755200pt;}
.ws23_c00192{word-spacing:8.832000pt;}
.ws39_c00192{word-spacing:8.896000pt;}
.ws24_c00192{word-spacing:8.960000pt;}
.ws4_c00192{word-spacing:11.072000pt;}
.ws20_c00192{word-spacing:11.136000pt;}
.ws21_c00192{word-spacing:11.200000pt;}
.ws2e_c00192{word-spacing:11.968000pt;}
.ws2f_c00192{word-spacing:12.416000pt;}
.ws31_c00192{word-spacing:12.992000pt;}
.ws32_c00192{word-spacing:13.120000pt;}
.ws2b_c00192{word-spacing:13.696000pt;}
.ws36_c00192{word-spacing:16.896000pt;}
.ws15_c00192{word-spacing:18.176000pt;}
.ws16_c00192{word-spacing:18.240000pt;}
.ws12_c00192{word-spacing:21.440000pt;}
.ws14_c00192{word-spacing:21.760000pt;}
.ws2c_c00192{word-spacing:23.616000pt;}
.ws2d_c00192{word-spacing:23.680000pt;}
.ws1e_c00192{word-spacing:30.656000pt;}
.ws1_c00192{word-spacing:30.784000pt;}
.wsa_c00192{word-spacing:32.000000pt;}
.ws9_c00192{word-spacing:124.800000pt;}
._0_c00192{margin-left:-1.036800pt;}
._1_c00192{width:0.896000pt;}
._2_c00192{width:15.104000pt;}
.fs1_c00192{font-size:58.560000pt;}
.fs0_c00192{font-size:64.000000pt;}
.y0_c00192{bottom:0.000000pt;}
.y1_c00192{bottom:54.887600pt;}
.y1e_c00192{bottom:154.279467pt;}
.y1d_c00192{bottom:181.879467pt;}
.y1c_c00192{bottom:209.479467pt;}
.y1b_c00192{bottom:237.079467pt;}
.y29_c00192{bottom:240.519467pt;}
.y1a_c00192{bottom:264.679467pt;}
.y28_c00192{bottom:268.119467pt;}
.y19_c00192{bottom:292.279467pt;}
.y18_c00192{bottom:319.879467pt;}
.y27_c00192{bottom:323.319467pt;}
.y26_c00192{bottom:350.919467pt;}
.y17_c00192{bottom:375.079467pt;}
.y25_c00192{bottom:378.519467pt;}
.y16_c00192{bottom:402.599467pt;}
.y15_c00192{bottom:431.399467pt;}
.y24_c00192{bottom:433.719467pt;}
.y14_c00192{bottom:458.999467pt;}
.y23_c00192{bottom:461.319467pt;}
.y13_c00192{bottom:487.799467pt;}
.y12_c00192{bottom:515.399467pt;}
.y22_c00192{bottom:516.519467pt;}
.y11_c00192{bottom:542.919467pt;}
.y21_c00192{bottom:544.119467pt;}
.y10_c00192{bottom:599.319467pt;}
.yf_c00192{bottom:626.919467pt;}
.ye_c00192{bottom:682.119467pt;}
.yd_c00192{bottom:709.719467pt;}
.yc_c00192{bottom:737.319467pt;}
.yb_c00192{bottom:764.919467pt;}
.ya_c00192{bottom:792.519467pt;}
.y9_c00192{bottom:820.119467pt;}
.y20_c00192{bottom:847.719467pt;}
.y8_c00192{bottom:875.239467pt;}
.y1f_c00192{bottom:902.679467pt;}
.y7_c00192{bottom:902.839467pt;}
.y6_c00192{bottom:930.439467pt;}
.y5_c00192{bottom:958.039467pt;}
.y4_c00192{bottom:985.639467pt;}
.y3_c00192{bottom:1013.239467pt;}
.y2_c00192{bottom:1061.399467pt;}
.h2_c00192{height:44.800000pt;}
.h3_c00192{height:48.294844pt;}
.h4_c00192{height:68.288000pt;}
.h5_c00192{height:69.376000pt;}
.h0_c00192{height:1122.520000pt;}
.h1_c00192{height:1122.666667pt;}
.w2_c00192{width:0.000000pt;}
.w3_c00192{width:0.058667pt;}
.w0_c00192{width:793.701333pt;}
.w1_c00192{width:794.000000pt;}
.x1_c00192{left:-745.700800pt;}
.x2_c00192{left:-680.260800pt;}
.x4_c00192{left:-661.300800pt;}
.x3_c00192{left:-651.860800pt;}
.x5_c00192{left:-642.420800pt;}
.x0_c00192{left:0.000000pt;}
.x9_c00192{left:113.440000pt;}
.x8_c00192{left:141.840000pt;}
.xa_c00192{left:160.480000pt;}
.xb_c00192{left:184.480000pt;}
.xc_c00192{left:193.440000pt;}
.xd_c00192{left:217.440000pt;}
.x7_c00192{left:619.120000pt;}
.x6_c00192{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00193;src:url('chunks/assets/font_68ee44dc93b697a26779d337.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_784c5fe55d53931cea3f88dd.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00193;src:url('chunks/assets/font_bd520a13f788cd8d8c79d025.woff2')format("woff");}.ff4_c00193{font-family:ff4_c00193;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00193;src:url('chunks/assets/font_dc6d1e274b7a42be166e3ba9.woff2')format("woff");}.ff5_c00193{font-family:ff5_c00193;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls8_c00193{letter-spacing:-0.270000px;}
.ls9_c00193{letter-spacing:-0.216000px;}
.ls7_c00193{letter-spacing:-0.108000px;}
.lsa_c00193{letter-spacing:-0.072000px;}
.ls6_c00193{letter-spacing:0.000000px;}
.ls0_c00193{letter-spacing:0.072000px;}
.ls3_c00193{letter-spacing:0.144000px;}
.ls1_c00193{letter-spacing:0.162000px;}
.ls5_c00193{letter-spacing:18.720000px;}
.ls4_c00193{letter-spacing:25.920000px;}
.ls2_c00193{letter-spacing:37.800000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00193{word-spacing:-18.072000px;}
.ws6_c00193{word-spacing:-18.000000px;}
.ws1_c00193{word-spacing:-13.500000px;}
.wse_c00193{word-spacing:-0.324000px;}
.wsa_c00193{word-spacing:-0.162000px;}
.ws5_c00193{word-spacing:-0.072000px;}
.ws0_c00193{word-spacing:0.000000px;}
.ws1f_c00193{word-spacing:0.072000px;}
.wsd_c00193{word-spacing:0.162000px;}
.ws13_c00193{word-spacing:0.216000px;}
.ws8_c00193{word-spacing:0.270000px;}
.ws20_c00193{word-spacing:0.360000px;}
.ws28_c00193{word-spacing:0.648000px;}
.ws29_c00193{word-spacing:0.720000px;}
.ws21_c00193{word-spacing:1.728000px;}
.ws15_c00193{word-spacing:2.538000px;}
.ws23_c00193{word-spacing:3.456000px;}
.ws11_c00193{word-spacing:3.996000px;}
.ws12_c00193{word-spacing:4.158000px;}
.ws7_c00193{word-spacing:4.248000px;}
.ws27_c00193{word-spacing:4.320000px;}
.ws17_c00193{word-spacing:4.482000px;}
.ws9_c00193{word-spacing:5.562000px;}
.ws19_c00193{word-spacing:7.236000px;}
.ws25_c00193{word-spacing:7.416000px;}
.ws26_c00193{word-spacing:7.848000px;}
.ws1b_c00193{word-spacing:8.640000px;}
.ws1a_c00193{word-spacing:8.802000px;}
.wsb_c00193{word-spacing:10.260000px;}
.ws16_c00193{word-spacing:10.800000px;}
.ws1c_c00193{word-spacing:11.340000px;}
.ws1d_c00193{word-spacing:13.500000px;}
.ws24_c00193{word-spacing:15.048000px;}
.ws10_c00193{word-spacing:16.200000px;}
.wsf_c00193{word-spacing:18.198000px;}
.wsc_c00193{word-spacing:19.116000px;}
.ws22_c00193{word-spacing:20.160000px;}
.ws1e_c00193{word-spacing:20.898000px;}
.ws14_c00193{word-spacing:36.180000px;}
.ws18_c00193{word-spacing:39.420000px;}
.ws4_c00193{word-spacing:104.400000px;}
.ws2_c00193{word-spacing:140.400000px;}
._0_c00193{margin-left:-1.310400px;}
._1_c00193{width:1.188000px;}
._3_c00193{width:5.148000px;}
._4_c00193{width:16.920000px;}
._2_c00193{width:19.260000px;}
.fc1_c00193{color:rgb(0,0,0);}
.fc0_c00193{color:rgb(35,31,32);}
.fs2_c00193{font-size:54.000000px;}
.fs1_c00193{font-size:65.880000px;}
.fs0_c00193{font-size:72.000000px;}
.y0_c00193{bottom:0.000000px;}
.y14_c00193{bottom:3.239400px;}
.y2a_c00193{bottom:3.329250px;}
.y2d_c00193{bottom:3.332400px;}
.y6_c00193{bottom:11.069400px;}
.y10_c00193{bottom:18.809250px;}
.ye_c00193{bottom:18.809400px;}
.y2c_c00193{bottom:18.812400px;}
.y1c_c00193{bottom:19.262250px;}
.y12_c00193{bottom:20.342250px;}
.y8_c00193{bottom:24.662250px;}
.y2e_c00193{bottom:31.229400px;}
.y25_c00193{bottom:34.289400px;}
.y19_c00193{bottom:51.749250px;}
.y1_c00193{bottom:61.748550px;}
.y16_c00193{bottom:82.799250px;}
.yb_c00193{bottom:100.259400px;}
.y3a_c00193{bottom:122.624400px;}
.y22_c00193{bottom:142.919400px;}
.y39_c00193{bottom:153.674400px;}
.y20_c00193{bottom:173.879400px;}
.y38_c00193{bottom:184.724400px;}
.y37_c00193{bottom:215.774400px;}
.y36_c00193{bottom:277.874400px;}
.y35_c00193{bottom:308.924400px;}
.y34_c00193{bottom:339.974400px;}
.y33_c00193{bottom:371.024400px;}
.y32_c00193{bottom:402.074400px;}
.y31_c00193{bottom:463.994400px;}
.y30_c00193{bottom:526.094400px;}
.y1f_c00193{bottom:605.655000px;}
.y2f_c00193{bottom:621.314400px;}
.y2b_c00193{bottom:649.842000px;}
.y29_c00193{bottom:681.615000px;}
.y27_c00193{bottom:713.475000px;}
.y28_c00193{bottom:716.714400px;}
.y23_c00193{bottom:733.004400px;}
.y24_c00193{bottom:745.245000px;}
.y26_c00193{bottom:748.569900px;}
.y21_c00193{bottom:764.054400px;}
.y15_c00193{bottom:792.585000px;}
.y1d_c00193{bottom:824.355000px;}
.y1e_c00193{bottom:827.684400px;}
.y1a_c00193{bottom:828.854400px;}
.y18_c00193{bottom:844.338750px;}
.y1b_c00193{bottom:856.122000px;}
.y17_c00193{bottom:859.904250px;}
.ya_c00193{bottom:888.435000px;}
.y11_c00193{bottom:904.722000px;}
.y13_c00193{bottom:909.584250px;}
.yf_c00193{bottom:938.025000px;}
.yd_c00193{bottom:969.885000px;}
.yc_c00193{bottom:973.124400px;}
.y7_c00193{bottom:1001.652000px;}
.y9_c00193{bottom:1010.834250px;}
.y5_c00193{bottom:1039.275000px;}
.y4_c00193{bottom:1108.754400px;}
.y3_c00193{bottom:1139.894400px;}
.y2_c00193{bottom:1194.074400px;}
.hc_c00193{height:15.477000px;}
.h6_c00193{height:23.308500px;}
.ha_c00193{height:31.050000px;}
.he_c00193{height:31.503000px;}
.hb_c00193{height:32.581500px;}
.h8_c00193{height:36.903000px;}
.h11_c00193{height:43.470000px;}
.h10_c00193{height:46.528500px;}
.h2_c00193{height:50.400000px;}
.h3_c00193{height:54.331699px;}
.h7_c00193{height:57.618000px;}
.h4_c00193{height:76.824000px;}
.h5_c00193{height:78.048000px;}
.hd_c00193{height:95.040000px;}
.h9_c00193{height:112.501500px;}
.hf_c00193{height:186.118500px;}
.h0_c00193{height:1262.835000px;}
.h1_c00193{height:1263.000000px;}
.w2_c00193{width:255.873000px;}
.w3_c00193{width:398.067000px;}
.w0_c00193{width:892.914000px;}
.w1_c00193{width:893.250000px;}
.x0_c00193{left:0.000000px;}
.x4_c00193{left:8.100000px;}
.x7_c00193{left:14.130000px;}
.x1_c00193{left:54.000000px;}
.x3_c00193{left:119.520000px;}
.x2_c00193{left:127.620000px;}
.x8_c00193{left:159.570000px;}
.x5_c00193{left:375.390000px;}
.x6_c00193{left:383.490000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls8_c00193{letter-spacing:-0.240000pt;}
.ls9_c00193{letter-spacing:-0.192000pt;}
.ls7_c00193{letter-spacing:-0.096000pt;}
.lsa_c00193{letter-spacing:-0.064000pt;}
.ls6_c00193{letter-spacing:0.000000pt;}
.ls0_c00193{letter-spacing:0.064000pt;}
.ls3_c00193{letter-spacing:0.128000pt;}
.ls1_c00193{letter-spacing:0.144000pt;}
.ls5_c00193{letter-spacing:16.640000pt;}
.ls4_c00193{letter-spacing:23.040000pt;}
.ls2_c00193{letter-spacing:33.600000pt;}
.ws3_c00193{word-spacing:-16.064000pt;}
.ws6_c00193{word-spacing:-16.000000pt;}
.ws1_c00193{word-spacing:-12.000000pt;}
.wse_c00193{word-spacing:-0.288000pt;}
.wsa_c00193{word-spacing:-0.144000pt;}
.ws5_c00193{word-spacing:-0.064000pt;}
.ws0_c00193{word-spacing:0.000000pt;}
.ws1f_c00193{word-spacing:0.064000pt;}
.wsd_c00193{word-spacing:0.144000pt;}
.ws13_c00193{word-spacing:0.192000pt;}
.ws8_c00193{word-spacing:0.240000pt;}
.ws20_c00193{word-spacing:0.320000pt;}
.ws28_c00193{word-spacing:0.576000pt;}
.ws29_c00193{word-spacing:0.640000pt;}
.ws21_c00193{word-spacing:1.536000pt;}
.ws15_c00193{word-spacing:2.256000pt;}
.ws23_c00193{word-spacing:3.072000pt;}
.ws11_c00193{word-spacing:3.552000pt;}
.ws12_c00193{word-spacing:3.696000pt;}
.ws7_c00193{word-spacing:3.776000pt;}
.ws27_c00193{word-spacing:3.840000pt;}
.ws17_c00193{word-spacing:3.984000pt;}
.ws9_c00193{word-spacing:4.944000pt;}
.ws19_c00193{word-spacing:6.432000pt;}
.ws25_c00193{word-spacing:6.592000pt;}
.ws26_c00193{word-spacing:6.976000pt;}
.ws1b_c00193{word-spacing:7.680000pt;}
.ws1a_c00193{word-spacing:7.824000pt;}
.wsb_c00193{word-spacing:9.120000pt;}
.ws16_c00193{word-spacing:9.600000pt;}
.ws1c_c00193{word-spacing:10.080000pt;}
.ws1d_c00193{word-spacing:12.000000pt;}
.ws24_c00193{word-spacing:13.376000pt;}
.ws10_c00193{word-spacing:14.400000pt;}
.wsf_c00193{word-spacing:16.176000pt;}
.wsc_c00193{word-spacing:16.992000pt;}
.ws22_c00193{word-spacing:17.920000pt;}
.ws1e_c00193{word-spacing:18.576000pt;}
.ws14_c00193{word-spacing:32.160000pt;}
.ws18_c00193{word-spacing:35.040000pt;}
.ws4_c00193{word-spacing:92.800000pt;}
.ws2_c00193{word-spacing:124.800000pt;}
._0_c00193{margin-left:-1.164800pt;}
._1_c00193{width:1.056000pt;}
._3_c00193{width:4.576000pt;}
._4_c00193{width:15.040000pt;}
._2_c00193{width:17.120000pt;}
.fs2_c00193{font-size:48.000000pt;}
.fs1_c00193{font-size:58.560000pt;}
.fs0_c00193{font-size:64.000000pt;}
.y0_c00193{bottom:0.000000pt;}
.y14_c00193{bottom:2.879467pt;}
.y2a_c00193{bottom:2.959333pt;}
.y2d_c00193{bottom:2.962133pt;}
.y6_c00193{bottom:9.839467pt;}
.y10_c00193{bottom:16.719333pt;}
.ye_c00193{bottom:16.719467pt;}
.y2c_c00193{bottom:16.722133pt;}
.y1c_c00193{bottom:17.122000pt;}
.y12_c00193{bottom:18.082000pt;}
.y8_c00193{bottom:21.922000pt;}
.y2e_c00193{bottom:27.759467pt;}
.y25_c00193{bottom:30.479467pt;}
.y19_c00193{bottom:45.999333pt;}
.y1_c00193{bottom:54.887600pt;}
.y16_c00193{bottom:73.599333pt;}
.yb_c00193{bottom:89.119467pt;}
.y3a_c00193{bottom:108.999467pt;}
.y22_c00193{bottom:127.039467pt;}
.y39_c00193{bottom:136.599467pt;}
.y20_c00193{bottom:154.559467pt;}
.y38_c00193{bottom:164.199467pt;}
.y37_c00193{bottom:191.799467pt;}
.y36_c00193{bottom:246.999467pt;}
.y35_c00193{bottom:274.599467pt;}
.y34_c00193{bottom:302.199467pt;}
.y33_c00193{bottom:329.799467pt;}
.y32_c00193{bottom:357.399467pt;}
.y31_c00193{bottom:412.439467pt;}
.y30_c00193{bottom:467.639467pt;}
.y1f_c00193{bottom:538.360000pt;}
.y2f_c00193{bottom:552.279467pt;}
.y2b_c00193{bottom:577.637333pt;}
.y29_c00193{bottom:605.880000pt;}
.y27_c00193{bottom:634.200000pt;}
.y28_c00193{bottom:637.079467pt;}
.y23_c00193{bottom:651.559467pt;}
.y24_c00193{bottom:662.440000pt;}
.y26_c00193{bottom:665.395467pt;}
.y21_c00193{bottom:679.159467pt;}
.y15_c00193{bottom:704.520000pt;}
.y1d_c00193{bottom:732.760000pt;}
.y1e_c00193{bottom:735.719467pt;}
.y1a_c00193{bottom:736.759467pt;}
.y18_c00193{bottom:750.523333pt;}
.y1b_c00193{bottom:760.997333pt;}
.y17_c00193{bottom:764.359333pt;}
.ya_c00193{bottom:789.720000pt;}
.y11_c00193{bottom:804.197333pt;}
.y13_c00193{bottom:808.519333pt;}
.yf_c00193{bottom:833.800000pt;}
.yd_c00193{bottom:862.120000pt;}
.yc_c00193{bottom:864.999467pt;}
.y7_c00193{bottom:890.357333pt;}
.y9_c00193{bottom:898.519333pt;}
.y5_c00193{bottom:923.800000pt;}
.y4_c00193{bottom:985.559467pt;}
.y3_c00193{bottom:1013.239467pt;}
.y2_c00193{bottom:1061.399467pt;}
.hc_c00193{height:13.757333pt;}
.h6_c00193{height:20.718667pt;}
.ha_c00193{height:27.600000pt;}
.he_c00193{height:28.002667pt;}
.hb_c00193{height:28.961333pt;}
.h8_c00193{height:32.802667pt;}
.h11_c00193{height:38.640000pt;}
.h10_c00193{height:41.358667pt;}
.h2_c00193{height:44.800000pt;}
.h3_c00193{height:48.294844pt;}
.h7_c00193{height:51.216000pt;}
.h4_c00193{height:68.288000pt;}
.h5_c00193{height:69.376000pt;}
.hd_c00193{height:84.480000pt;}
.h9_c00193{height:100.001333pt;}
.hf_c00193{height:165.438667pt;}
.h0_c00193{height:1122.520000pt;}
.h1_c00193{height:1122.666667pt;}
.w2_c00193{width:227.442667pt;}
.w3_c00193{width:353.837333pt;}
.w0_c00193{width:793.701333pt;}
.w1_c00193{width:794.000000pt;}
.x0_c00193{left:0.000000pt;}
.x4_c00193{left:7.200000pt;}
.x7_c00193{left:12.560000pt;}
.x1_c00193{left:48.000000pt;}
.x3_c00193{left:106.240000pt;}
.x2_c00193{left:113.440000pt;}
.x8_c00193{left:141.840000pt;}
.x5_c00193{left:333.680000pt;}
.x6_c00193{left:340.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_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00194;src:url('chunks/assets/font_5192be2d062d92f290d96881.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00194;src:url('chunks/assets/font_39266fb49665dac2dbeb3084.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00194;src:url('chunks/assets/font_7f169e443c7404ddea2fc8fc.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00194;src:url('chunks/assets/font_bd320d48a7aafad167170156.woff2')format("woff");}.ff5_c00194{font-family:ff5_c00194;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00194;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00194{font-family:ff6_c00194;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00194;src:url('chunks/assets/font_575d8cd13a50d2c33fd68f06.woff2')format("woff");}.ff7_c00194{font-family:ff7_c00194;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00194;src:url('chunks/assets/font_5423b76ad15baf85c4575e0a.woff2')format("woff");}.ff8_c00194{font-family:ff8_c00194;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00194;src:url('chunks/assets/font_724646f9a34a3682d5685b43.woff2')format("woff");}.ff9_c00194{font-family:ff9_c00194;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00194;src:url('chunks/assets/font_bd320d48a7aafad167170156.woff2')format("woff");}.ffa_c00194{font-family:ffa_c00194;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.lse_c00194{letter-spacing:-0.576000px;}
.lsb_c00194{letter-spacing:-0.270000px;}
.lsc_c00194{letter-spacing:-0.216000px;}
.lsa_c00194{letter-spacing:-0.108000px;}
.lsd_c00194{letter-spacing:-0.072000px;}
.ls9_c00194{letter-spacing:0.000000px;}
.ls0_c00194{letter-spacing:0.072000px;}
.ls3_c00194{letter-spacing:0.144000px;}
.ls1_c00194{letter-spacing:0.162000px;}
.ls5_c00194{letter-spacing:18.720000px;}
.ls7_c00194{letter-spacing:24.840000px;}
.ls4_c00194{letter-spacing:25.920000px;}
.ls6_c00194{letter-spacing:30.672000px;}
.ls2_c00194{letter-spacing:37.800000px;}
.ls8_c00194{letter-spacing:41.400000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00194{word-spacing:-18.072000px;}
.ws6_c00194{word-spacing:-18.000000px;}
.ws1_c00194{word-spacing:-13.500000px;}
.ws3f_c00194{word-spacing:-0.360000px;}
.ws12_c00194{word-spacing:-0.324000px;}
.wse_c00194{word-spacing:-0.162000px;}
.ws3c_c00194{word-spacing:-0.144000px;}
.ws2d_c00194{word-spacing:-0.131760px;}
.ws5_c00194{word-spacing:-0.072000px;}
.ws0_c00194{word-spacing:0.000000px;}
.ws23_c00194{word-spacing:0.072000px;}
.ws11_c00194{word-spacing:0.162000px;}
.ws17_c00194{word-spacing:0.216000px;}
.wsc_c00194{word-spacing:0.270000px;}
.ws35_c00194{word-spacing:0.288000px;}
.ws24_c00194{word-spacing:0.360000px;}
.ws2c_c00194{word-spacing:0.648000px;}
.ws9_c00194{word-spacing:0.720000px;}
.ws30_c00194{word-spacing:1.008000px;}
.ws2f_c00194{word-spacing:1.080000px;}
.ws25_c00194{word-spacing:1.728000px;}
.wsa_c00194{word-spacing:2.088000px;}
.ws3e_c00194{word-spacing:2.160000px;}
.ws19_c00194{word-spacing:2.538000px;}
.ws27_c00194{word-spacing:3.456000px;}
.ws15_c00194{word-spacing:3.996000px;}
.wsb_c00194{word-spacing:4.104000px;}
.ws16_c00194{word-spacing:4.158000px;}
.ws7_c00194{word-spacing:4.248000px;}
.ws2b_c00194{word-spacing:4.320000px;}
.ws1b_c00194{word-spacing:4.482000px;}
.wsd_c00194{word-spacing:5.562000px;}
.ws37_c00194{word-spacing:6.768000px;}
.ws36_c00194{word-spacing:6.840000px;}
.ws1d_c00194{word-spacing:7.236000px;}
.ws29_c00194{word-spacing:7.416000px;}
.ws2a_c00194{word-spacing:7.848000px;}
.ws1f_c00194{word-spacing:8.640000px;}
.ws1e_c00194{word-spacing:8.802000px;}
.wsf_c00194{word-spacing:10.260000px;}
.ws1a_c00194{word-spacing:10.800000px;}
.ws20_c00194{word-spacing:11.340000px;}
.ws2e_c00194{word-spacing:12.528000px;}
.ws8_c00194{word-spacing:12.600000px;}
.ws21_c00194{word-spacing:13.500000px;}
.ws34_c00194{word-spacing:14.400000px;}
.ws33_c00194{word-spacing:14.688000px;}
.ws28_c00194{word-spacing:15.048000px;}
.ws14_c00194{word-spacing:16.200000px;}
.ws13_c00194{word-spacing:18.198000px;}
.ws10_c00194{word-spacing:19.116000px;}
.ws3b_c00194{word-spacing:19.296000px;}
.ws3d_c00194{word-spacing:19.440000px;}
.ws39_c00194{word-spacing:19.656000px;}
.ws38_c00194{word-spacing:19.800000px;}
.ws26_c00194{word-spacing:20.160000px;}
.ws22_c00194{word-spacing:20.898000px;}
.ws41_c00194{word-spacing:23.328000px;}
.ws40_c00194{word-spacing:23.400000px;}
.ws32_c00194{word-spacing:25.488000px;}
.ws31_c00194{word-spacing:25.560000px;}
.ws18_c00194{word-spacing:36.180000px;}
.ws3a_c00194{word-spacing:37.368000px;}
.ws1c_c00194{word-spacing:39.420000px;}
.ws4_c00194{word-spacing:104.400000px;}
.ws2_c00194{word-spacing:140.400000px;}
._0_c00194{margin-left:-1.310400px;}
._1_c00194{width:1.188000px;}
._3_c00194{width:5.148000px;}
._4_c00194{width:16.920000px;}
._2_c00194{width:19.260000px;}
._5_c00194{width:25.704000px;}
._6_c00194{width:37.584000px;}
.fc2_c00194{color:transparent;}
.fc1_c00194{color:rgb(0,0,0);}
.fc0_c00194{color:rgb(35,31,32);}
.fs2_c00194{font-size:54.000000px;}
.fs1_c00194{font-size:65.880000px;}
.fs0_c00194{font-size:72.000000px;}
.y0_c00194{bottom:0.000000px;}
.y14_c00194{bottom:3.239400px;}
.y2a_c00194{bottom:3.329250px;}
.y42_c00194{bottom:3.329400px;}
.y2d_c00194{bottom:3.330900px;}
.y6_c00194{bottom:11.069400px;}
.y10_c00194{bottom:18.809250px;}
.ye_c00194{bottom:18.809400px;}
.y2c_c00194{bottom:18.810900px;}
.y40_c00194{bottom:19.259250px;}
.y1c_c00194{bottom:19.260750px;}
.y3e_c00194{bottom:20.339250px;}
.y12_c00194{bottom:20.340750px;}
.y3c_c00194{bottom:24.659250px;}
.y8_c00194{bottom:24.660750px;}
.y2e_c00194{bottom:31.229400px;}
.y25_c00194{bottom:34.289400px;}
.y19_c00194{bottom:51.749250px;}
.y1_c00194{bottom:61.748550px;}
.y16_c00194{bottom:82.799250px;}
.yb_c00194{bottom:100.259400px;}
.y3a_c00194{bottom:122.624400px;}
.y22_c00194{bottom:142.919400px;}
.y55_c00194{bottom:146.384400px;}
.y39_c00194{bottom:153.674400px;}
.y20_c00194{bottom:173.879400px;}
.y54_c00194{bottom:177.434400px;}
.y38_c00194{bottom:184.724400px;}
.y53_c00194{bottom:208.484400px;}
.y37_c00194{bottom:215.774400px;}
.y52_c00194{bottom:270.494400px;}
.y36_c00194{bottom:277.874400px;}
.y35_c00194{bottom:308.924400px;}
.y51_c00194{bottom:332.684400px;}
.y34_c00194{bottom:339.974400px;}
.y50_c00194{bottom:363.734400px;}
.y33_c00194{bottom:371.024400px;}
.y32_c00194{bottom:402.074400px;}
.y4f_c00194{bottom:425.834400px;}
.y4e_c00194{bottom:456.884400px;}
.y31_c00194{bottom:463.994400px;}
.y30_c00194{bottom:526.094400px;}
.y1f_c00194{bottom:605.655000px;}
.y2f_c00194{bottom:621.314400px;}
.y2b_c00194{bottom:649.843500px;}
.y41_c00194{bottom:649.845000px;}
.y29_c00194{bottom:681.615000px;}
.y27_c00194{bottom:713.475000px;}
.y28_c00194{bottom:716.714400px;}
.y23_c00194{bottom:733.004400px;}
.y24_c00194{bottom:745.245000px;}
.y26_c00194{bottom:748.569900px;}
.y21_c00194{bottom:764.054400px;}
.y4d_c00194{bottom:767.384400px;}
.y15_c00194{bottom:792.585000px;}
.y4c_c00194{bottom:798.434400px;}
.y1d_c00194{bottom:824.355000px;}
.y1e_c00194{bottom:827.684400px;}
.y1a_c00194{bottom:828.854400px;}
.y4b_c00194{bottom:829.484400px;}
.y18_c00194{bottom:844.338750px;}
.y1b_c00194{bottom:856.123500px;}
.y3f_c00194{bottom:856.125000px;}
.y17_c00194{bottom:859.904250px;}
.y4a_c00194{bottom:860.534400px;}
.ya_c00194{bottom:888.435000px;}
.y49_c00194{bottom:891.584400px;}
.y11_c00194{bottom:904.723500px;}
.y3d_c00194{bottom:904.725000px;}
.y13_c00194{bottom:909.584250px;}
.y48_c00194{bottom:922.634400px;}
.yf_c00194{bottom:938.025000px;}
.y47_c00194{bottom:953.684400px;}
.yd_c00194{bottom:969.885000px;}
.yc_c00194{bottom:973.124400px;}
.y46_c00194{bottom:984.644400px;}
.y7_c00194{bottom:1001.653500px;}
.y3b_c00194{bottom:1001.655000px;}
.y9_c00194{bottom:1010.834250px;}
.y45_c00194{bottom:1015.694400px;}
.y5_c00194{bottom:1039.275000px;}
.y44_c00194{bottom:1077.794400px;}
.y4_c00194{bottom:1108.754400px;}
.y43_c00194{bottom:1108.844400px;}
.y3_c00194{bottom:1139.894400px;}
.y2_c00194{bottom:1194.074400px;}
.hc_c00194{height:15.478500px;}
.h14_c00194{height:15.480000px;}
.h6_c00194{height:23.308500px;}
.ha_c00194{height:31.050000px;}
.h15_c00194{height:31.500000px;}
.he_c00194{height:31.501500px;}
.h13_c00194{height:32.580000px;}
.hb_c00194{height:32.581500px;}
.h12_c00194{height:36.900000px;}
.h8_c00194{height:36.901500px;}
.h11_c00194{height:43.470000px;}
.h10_c00194{height:46.528500px;}
.h2_c00194{height:50.400000px;}
.h3_c00194{height:54.331699px;}
.h7_c00194{height:57.618000px;}
.h4_c00194{height:76.824000px;}
.h5_c00194{height:78.048000px;}
.hd_c00194{height:95.040000px;}
.h9_c00194{height:112.501500px;}
.hf_c00194{height:186.118500px;}
.h0_c00194{height:1262.835000px;}
.h1_c00194{height:1263.000000px;}
.w6_c00194{width:-517.522500px;}
.w3_c00194{width:-517.521000px;}
.w4_c00194{width:-119.457000px;}
.w7_c00194{width:-119.455500px;}
.w2_c00194{width:0.000000px;}
.w5_c00194{width:0.066000px;}
.w0_c00194{width:892.914000px;}
.w1_c00194{width:893.250000px;}
.x1_c00194{left:-838.913400px;}
.x2_c00194{left:-765.293400px;}
.x4_c00194{left:-759.263400px;}
.x5_c00194{left:-733.343400px;}
.x3_c00194{left:-509.423400px;}
.x0_c00194{left:0.000000px;}
.x8_c00194{left:127.620000px;}
.xa_c00194{left:159.570000px;}
.x9_c00194{left:164.070000px;}
.x7_c00194{left:696.510000px;}
.x6_c00194{left:804.366150px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.lse_c00194{letter-spacing:-0.512000pt;}
.lsb_c00194{letter-spacing:-0.240000pt;}
.lsc_c00194{letter-spacing:-0.192000pt;}
.lsa_c00194{letter-spacing:-0.096000pt;}
.lsd_c00194{letter-spacing:-0.064000pt;}
.ls9_c00194{letter-spacing:0.000000pt;}
.ls0_c00194{letter-spacing:0.064000pt;}
.ls3_c00194{letter-spacing:0.128000pt;}
.ls1_c00194{letter-spacing:0.144000pt;}
.ls5_c00194{letter-spacing:16.640000pt;}
.ls7_c00194{letter-spacing:22.080000pt;}
.ls4_c00194{letter-spacing:23.040000pt;}
.ls6_c00194{letter-spacing:27.264000pt;}
.ls2_c00194{letter-spacing:33.600000pt;}
.ls8_c00194{letter-spacing:36.800000pt;}
.ws3_c00194{word-spacing:-16.064000pt;}
.ws6_c00194{word-spacing:-16.000000pt;}
.ws1_c00194{word-spacing:-12.000000pt;}
.ws3f_c00194{word-spacing:-0.320000pt;}
.ws12_c00194{word-spacing:-0.288000pt;}
.wse_c00194{word-spacing:-0.144000pt;}
.ws3c_c00194{word-spacing:-0.128000pt;}
.ws2d_c00194{word-spacing:-0.117120pt;}
.ws5_c00194{word-spacing:-0.064000pt;}
.ws0_c00194{word-spacing:0.000000pt;}
.ws23_c00194{word-spacing:0.064000pt;}
.ws11_c00194{word-spacing:0.144000pt;}
.ws17_c00194{word-spacing:0.192000pt;}
.wsc_c00194{word-spacing:0.240000pt;}
.ws35_c00194{word-spacing:0.256000pt;}
.ws24_c00194{word-spacing:0.320000pt;}
.ws2c_c00194{word-spacing:0.576000pt;}
.ws9_c00194{word-spacing:0.640000pt;}
.ws30_c00194{word-spacing:0.896000pt;}
.ws2f_c00194{word-spacing:0.960000pt;}
.ws25_c00194{word-spacing:1.536000pt;}
.wsa_c00194{word-spacing:1.856000pt;}
.ws3e_c00194{word-spacing:1.920000pt;}
.ws19_c00194{word-spacing:2.256000pt;}
.ws27_c00194{word-spacing:3.072000pt;}
.ws15_c00194{word-spacing:3.552000pt;}
.wsb_c00194{word-spacing:3.648000pt;}
.ws16_c00194{word-spacing:3.696000pt;}
.ws7_c00194{word-spacing:3.776000pt;}
.ws2b_c00194{word-spacing:3.840000pt;}
.ws1b_c00194{word-spacing:3.984000pt;}
.wsd_c00194{word-spacing:4.944000pt;}
.ws37_c00194{word-spacing:6.016000pt;}
.ws36_c00194{word-spacing:6.080000pt;}
.ws1d_c00194{word-spacing:6.432000pt;}
.ws29_c00194{word-spacing:6.592000pt;}
.ws2a_c00194{word-spacing:6.976000pt;}
.ws1f_c00194{word-spacing:7.680000pt;}
.ws1e_c00194{word-spacing:7.824000pt;}
.wsf_c00194{word-spacing:9.120000pt;}
.ws1a_c00194{word-spacing:9.600000pt;}
.ws20_c00194{word-spacing:10.080000pt;}
.ws2e_c00194{word-spacing:11.136000pt;}
.ws8_c00194{word-spacing:11.200000pt;}
.ws21_c00194{word-spacing:12.000000pt;}
.ws34_c00194{word-spacing:12.800000pt;}
.ws33_c00194{word-spacing:13.056000pt;}
.ws28_c00194{word-spacing:13.376000pt;}
.ws14_c00194{word-spacing:14.400000pt;}
.ws13_c00194{word-spacing:16.176000pt;}
.ws10_c00194{word-spacing:16.992000pt;}
.ws3b_c00194{word-spacing:17.152000pt;}
.ws3d_c00194{word-spacing:17.280000pt;}
.ws39_c00194{word-spacing:17.472000pt;}
.ws38_c00194{word-spacing:17.600000pt;}
.ws26_c00194{word-spacing:17.920000pt;}
.ws22_c00194{word-spacing:18.576000pt;}
.ws41_c00194{word-spacing:20.736000pt;}
.ws40_c00194{word-spacing:20.800000pt;}
.ws32_c00194{word-spacing:22.656000pt;}
.ws31_c00194{word-spacing:22.720000pt;}
.ws18_c00194{word-spacing:32.160000pt;}
.ws3a_c00194{word-spacing:33.216000pt;}
.ws1c_c00194{word-spacing:35.040000pt;}
.ws4_c00194{word-spacing:92.800000pt;}
.ws2_c00194{word-spacing:124.800000pt;}
._0_c00194{margin-left:-1.164800pt;}
._1_c00194{width:1.056000pt;}
._3_c00194{width:4.576000pt;}
._4_c00194{width:15.040000pt;}
._2_c00194{width:17.120000pt;}
._5_c00194{width:22.848000pt;}
._6_c00194{width:33.408000pt;}
.fs2_c00194{font-size:48.000000pt;}
.fs1_c00194{font-size:58.560000pt;}
.fs0_c00194{font-size:64.000000pt;}
.y0_c00194{bottom:0.000000pt;}
.y14_c00194{bottom:2.879467pt;}
.y2a_c00194{bottom:2.959333pt;}
.y42_c00194{bottom:2.959467pt;}
.y2d_c00194{bottom:2.960800pt;}
.y6_c00194{bottom:9.839467pt;}
.y10_c00194{bottom:16.719333pt;}
.ye_c00194{bottom:16.719467pt;}
.y2c_c00194{bottom:16.720800pt;}
.y40_c00194{bottom:17.119333pt;}
.y1c_c00194{bottom:17.120667pt;}
.y3e_c00194{bottom:18.079333pt;}
.y12_c00194{bottom:18.080667pt;}
.y3c_c00194{bottom:21.919333pt;}
.y8_c00194{bottom:21.920667pt;}
.y2e_c00194{bottom:27.759467pt;}
.y25_c00194{bottom:30.479467pt;}
.y19_c00194{bottom:45.999333pt;}
.y1_c00194{bottom:54.887600pt;}
.y16_c00194{bottom:73.599333pt;}
.yb_c00194{bottom:89.119467pt;}
.y3a_c00194{bottom:108.999467pt;}
.y22_c00194{bottom:127.039467pt;}
.y55_c00194{bottom:130.119467pt;}
.y39_c00194{bottom:136.599467pt;}
.y20_c00194{bottom:154.559467pt;}
.y54_c00194{bottom:157.719467pt;}
.y38_c00194{bottom:164.199467pt;}
.y53_c00194{bottom:185.319467pt;}
.y37_c00194{bottom:191.799467pt;}
.y52_c00194{bottom:240.439467pt;}
.y36_c00194{bottom:246.999467pt;}
.y35_c00194{bottom:274.599467pt;}
.y51_c00194{bottom:295.719467pt;}
.y34_c00194{bottom:302.199467pt;}
.y50_c00194{bottom:323.319467pt;}
.y33_c00194{bottom:329.799467pt;}
.y32_c00194{bottom:357.399467pt;}
.y4f_c00194{bottom:378.519467pt;}
.y4e_c00194{bottom:406.119467pt;}
.y31_c00194{bottom:412.439467pt;}
.y30_c00194{bottom:467.639467pt;}
.y1f_c00194{bottom:538.360000pt;}
.y2f_c00194{bottom:552.279467pt;}
.y2b_c00194{bottom:577.638667pt;}
.y41_c00194{bottom:577.640000pt;}
.y29_c00194{bottom:605.880000pt;}
.y27_c00194{bottom:634.200000pt;}
.y28_c00194{bottom:637.079467pt;}
.y23_c00194{bottom:651.559467pt;}
.y24_c00194{bottom:662.440000pt;}
.y26_c00194{bottom:665.395467pt;}
.y21_c00194{bottom:679.159467pt;}
.y4d_c00194{bottom:682.119467pt;}
.y15_c00194{bottom:704.520000pt;}
.y4c_c00194{bottom:709.719467pt;}
.y1d_c00194{bottom:732.760000pt;}
.y1e_c00194{bottom:735.719467pt;}
.y1a_c00194{bottom:736.759467pt;}
.y4b_c00194{bottom:737.319467pt;}
.y18_c00194{bottom:750.523333pt;}
.y1b_c00194{bottom:760.998667pt;}
.y3f_c00194{bottom:761.000000pt;}
.y17_c00194{bottom:764.359333pt;}
.y4a_c00194{bottom:764.919467pt;}
.ya_c00194{bottom:789.720000pt;}
.y49_c00194{bottom:792.519467pt;}
.y11_c00194{bottom:804.198667pt;}
.y3d_c00194{bottom:804.200000pt;}
.y13_c00194{bottom:808.519333pt;}
.y48_c00194{bottom:820.119467pt;}
.yf_c00194{bottom:833.800000pt;}
.y47_c00194{bottom:847.719467pt;}
.yd_c00194{bottom:862.120000pt;}
.yc_c00194{bottom:864.999467pt;}
.y46_c00194{bottom:875.239467pt;}
.y7_c00194{bottom:890.358667pt;}
.y3b_c00194{bottom:890.360000pt;}
.y9_c00194{bottom:898.519333pt;}
.y45_c00194{bottom:902.839467pt;}
.y5_c00194{bottom:923.800000pt;}
.y44_c00194{bottom:958.039467pt;}
.y4_c00194{bottom:985.559467pt;}
.y43_c00194{bottom:985.639467pt;}
.y3_c00194{bottom:1013.239467pt;}
.y2_c00194{bottom:1061.399467pt;}
.hc_c00194{height:13.758667pt;}
.h14_c00194{height:13.760000pt;}
.h6_c00194{height:20.718667pt;}
.ha_c00194{height:27.600000pt;}
.h15_c00194{height:28.000000pt;}
.he_c00194{height:28.001333pt;}
.h13_c00194{height:28.960000pt;}
.hb_c00194{height:28.961333pt;}
.h12_c00194{height:32.800000pt;}
.h8_c00194{height:32.801333pt;}
.h11_c00194{height:38.640000pt;}
.h10_c00194{height:41.358667pt;}
.h2_c00194{height:44.800000pt;}
.h3_c00194{height:48.294844pt;}
.h7_c00194{height:51.216000pt;}
.h4_c00194{height:68.288000pt;}
.h5_c00194{height:69.376000pt;}
.hd_c00194{height:84.480000pt;}
.h9_c00194{height:100.001333pt;}
.hf_c00194{height:165.438667pt;}
.h0_c00194{height:1122.520000pt;}
.h1_c00194{height:1122.666667pt;}
.w6_c00194{width:-460.020000pt;}
.w3_c00194{width:-460.018667pt;}
.w4_c00194{width:-106.184000pt;}
.w7_c00194{width:-106.182667pt;}
.w2_c00194{width:0.000000pt;}
.w5_c00194{width:0.058667pt;}
.w0_c00194{width:793.701333pt;}
.w1_c00194{width:794.000000pt;}
.x1_c00194{left:-745.700800pt;}
.x2_c00194{left:-680.260800pt;}
.x4_c00194{left:-674.900800pt;}
.x5_c00194{left:-651.860800pt;}
.x3_c00194{left:-452.820800pt;}
.x0_c00194{left:0.000000pt;}
.x8_c00194{left:113.440000pt;}
.xa_c00194{left:141.840000pt;}
.x9_c00194{left:145.840000pt;}
.x7_c00194{left:619.120000pt;}
.x6_c00194{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00195;src:url('chunks/assets/font_949adb528df4fff2ae0054f7.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00195;src:url('chunks/assets/font_e1c20af5b62a389469b536ca.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00195;src:url('chunks/assets/font_13ccf0a5d1ab32c646c4a8a8.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls5_c00195{letter-spacing:-0.360000px;}
.ls4_c00195{letter-spacing:0.000000px;}
.ls0_c00195{letter-spacing:0.072000px;}
.ls1_c00195{letter-spacing:0.144000px;}
.ls2_c00195{letter-spacing:21.960000px;}
.ls3_c00195{letter-spacing:24.552000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00195{word-spacing:-18.072000px;}
.wsc_c00195{word-spacing:-0.144000px;}
.ws6_c00195{word-spacing:-0.072000px;}
.ws4_c00195{word-spacing:0.000000px;}
.ws10_c00195{word-spacing:2.088000px;}
.ws14_c00195{word-spacing:2.880000px;}
.ws18_c00195{word-spacing:2.952000px;}
.ws15_c00195{word-spacing:3.168000px;}
.ws13_c00195{word-spacing:3.240000px;}
.ws2_c00195{word-spacing:3.384000px;}
.ws12_c00195{word-spacing:3.528000px;}
.ws11_c00195{word-spacing:3.600000px;}
.ws19_c00195{word-spacing:3.960000px;}
.ws1c_c00195{word-spacing:6.336000px;}
.ws1b_c00195{word-spacing:6.408000px;}
.ws1e_c00195{word-spacing:9.648000px;}
.ws1d_c00195{word-spacing:9.720000px;}
.wsb_c00195{word-spacing:10.368000px;}
.ws9_c00195{word-spacing:10.440000px;}
.wsa_c00195{word-spacing:10.800000px;}
.ws0_c00195{word-spacing:11.160000px;}
.ws5_c00195{word-spacing:11.448000px;}
.ws16_c00195{word-spacing:13.248000px;}
.ws3_c00195{word-spacing:13.320000px;}
.ws1a_c00195{word-spacing:13.680000px;}
.ws20_c00195{word-spacing:14.400000px;}
.wse_c00195{word-spacing:15.408000px;}
.wsd_c00195{word-spacing:15.480000px;}
.ws8_c00195{word-spacing:16.128000px;}
.ws7_c00195{word-spacing:16.200000px;}
.ws1f_c00195{word-spacing:16.560000px;}
.ws17_c00195{word-spacing:18.864000px;}
.wsf_c00195{word-spacing:20.880000px;}
._0_c00195{margin-left:-1.087200px;}
._2_c00195{width:1.008000px;}
._1_c00195{width:29.959200px;}
.fc1_c00195{color:rgb(0,0,0);}
.fc0_c00195{color:rgb(35,31,32);}
.fs1_c00195{font-size:65.880000px;}
.fs0_c00195{font-size:72.000000px;}
.y0_c00195{bottom:0.000000px;}
.y1_c00195{bottom:61.748550px;}
.y1e_c00195{bottom:115.334400px;}
.y1d_c00195{bottom:146.384400px;}
.y1c_c00195{bottom:177.434400px;}
.y1b_c00195{bottom:208.484400px;}
.y1a_c00195{bottom:239.534400px;}
.y19_c00195{bottom:270.584400px;}
.y18_c00195{bottom:332.684400px;}
.y17_c00195{bottom:363.734400px;}
.y16_c00195{bottom:394.784400px;}
.y15_c00195{bottom:425.834400px;}
.y14_c00195{bottom:456.884400px;}
.y13_c00195{bottom:518.984400px;}
.y12_c00195{bottom:550.034400px;}
.y11_c00195{bottom:581.084400px;}
.y10_c00195{bottom:612.134400px;}
.yf_c00195{bottom:643.184400px;}
.ye_c00195{bottom:674.234400px;}
.yd_c00195{bottom:736.334400px;}
.yc_c00195{bottom:767.384400px;}
.yb_c00195{bottom:798.434400px;}
.ya_c00195{bottom:829.484400px;}
.y9_c00195{bottom:891.494400px;}
.y8_c00195{bottom:953.684400px;}
.y7_c00195{bottom:984.644400px;}
.y6_c00195{bottom:1015.694400px;}
.y5_c00195{bottom:1046.744400px;}
.y4_c00195{bottom:1108.844400px;}
.y3_c00195{bottom:1139.894400px;}
.y2_c00195{bottom:1194.074400px;}
.h2_c00195{height:50.400000px;}
.h3_c00195{height:54.331699px;}
.h4_c00195{height:76.824000px;}
.h5_c00195{height:78.048000px;}
.h0_c00195{height:1262.835000px;}
.h1_c00195{height:1263.000000px;}
.w0_c00195{width:892.914000px;}
.w1_c00195{width:893.250000px;}
.x0_c00195{left:0.000000px;}
.x1_c00195{left:54.000000px;}
.x2_c00195{left:127.620000px;}
.x3_c00195{left:159.570000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls5_c00195{letter-spacing:-0.320000pt;}
.ls4_c00195{letter-spacing:0.000000pt;}
.ls0_c00195{letter-spacing:0.064000pt;}
.ls1_c00195{letter-spacing:0.128000pt;}
.ls2_c00195{letter-spacing:19.520000pt;}
.ls3_c00195{letter-spacing:21.824000pt;}
.ws1_c00195{word-spacing:-16.064000pt;}
.wsc_c00195{word-spacing:-0.128000pt;}
.ws6_c00195{word-spacing:-0.064000pt;}
.ws4_c00195{word-spacing:0.000000pt;}
.ws10_c00195{word-spacing:1.856000pt;}
.ws14_c00195{word-spacing:2.560000pt;}
.ws18_c00195{word-spacing:2.624000pt;}
.ws15_c00195{word-spacing:2.816000pt;}
.ws13_c00195{word-spacing:2.880000pt;}
.ws2_c00195{word-spacing:3.008000pt;}
.ws12_c00195{word-spacing:3.136000pt;}
.ws11_c00195{word-spacing:3.200000pt;}
.ws19_c00195{word-spacing:3.520000pt;}
.ws1c_c00195{word-spacing:5.632000pt;}
.ws1b_c00195{word-spacing:5.696000pt;}
.ws1e_c00195{word-spacing:8.576000pt;}
.ws1d_c00195{word-spacing:8.640000pt;}
.wsb_c00195{word-spacing:9.216000pt;}
.ws9_c00195{word-spacing:9.280000pt;}
.wsa_c00195{word-spacing:9.600000pt;}
.ws0_c00195{word-spacing:9.920000pt;}
.ws5_c00195{word-spacing:10.176000pt;}
.ws16_c00195{word-spacing:11.776000pt;}
.ws3_c00195{word-spacing:11.840000pt;}
.ws1a_c00195{word-spacing:12.160000pt;}
.ws20_c00195{word-spacing:12.800000pt;}
.wse_c00195{word-spacing:13.696000pt;}
.wsd_c00195{word-spacing:13.760000pt;}
.ws8_c00195{word-spacing:14.336000pt;}
.ws7_c00195{word-spacing:14.400000pt;}
.ws1f_c00195{word-spacing:14.720000pt;}
.ws17_c00195{word-spacing:16.768000pt;}
.wsf_c00195{word-spacing:18.560000pt;}
._0_c00195{margin-left:-0.966400pt;}
._2_c00195{width:0.896000pt;}
._1_c00195{width:26.630400pt;}
.fs1_c00195{font-size:58.560000pt;}
.fs0_c00195{font-size:64.000000pt;}
.y0_c00195{bottom:0.000000pt;}
.y1_c00195{bottom:54.887600pt;}
.y1e_c00195{bottom:102.519467pt;}
.y1d_c00195{bottom:130.119467pt;}
.y1c_c00195{bottom:157.719467pt;}
.y1b_c00195{bottom:185.319467pt;}
.y1a_c00195{bottom:212.919467pt;}
.y19_c00195{bottom:240.519467pt;}
.y18_c00195{bottom:295.719467pt;}
.y17_c00195{bottom:323.319467pt;}
.y16_c00195{bottom:350.919467pt;}
.y15_c00195{bottom:378.519467pt;}
.y14_c00195{bottom:406.119467pt;}
.y13_c00195{bottom:461.319467pt;}
.y12_c00195{bottom:488.919467pt;}
.y11_c00195{bottom:516.519467pt;}
.y10_c00195{bottom:544.119467pt;}
.yf_c00195{bottom:571.719467pt;}
.ye_c00195{bottom:599.319467pt;}
.yd_c00195{bottom:654.519467pt;}
.yc_c00195{bottom:682.119467pt;}
.yb_c00195{bottom:709.719467pt;}
.ya_c00195{bottom:737.319467pt;}
.y9_c00195{bottom:792.439467pt;}
.y8_c00195{bottom:847.719467pt;}
.y7_c00195{bottom:875.239467pt;}
.y6_c00195{bottom:902.839467pt;}
.y5_c00195{bottom:930.439467pt;}
.y4_c00195{bottom:985.639467pt;}
.y3_c00195{bottom:1013.239467pt;}
.y2_c00195{bottom:1061.399467pt;}
.h2_c00195{height:44.800000pt;}
.h3_c00195{height:48.294844pt;}
.h4_c00195{height:68.288000pt;}
.h5_c00195{height:69.376000pt;}
.h0_c00195{height:1122.520000pt;}
.h1_c00195{height:1122.666667pt;}
.w0_c00195{width:793.701333pt;}
.w1_c00195{width:794.000000pt;}
.x0_c00195{left:0.000000pt;}
.x1_c00195{left:48.000000pt;}
.x2_c00195{left:113.440000pt;}
.x3_c00195{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00196;src:url('chunks/assets/font_1578704c5d0274eceef2e796.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00196;src:url('chunks/assets/font_2f7e213b02ec54ea58457086.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00196;src:url('chunks/assets/font_6cdd63a3f0741a920aaf7326.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00196;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00196{font-family:ff5_c00196;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00196;src:url('chunks/assets/font_05328f06a2b5e002da0368b0.woff2')format("woff");}.ff6_c00196{font-family:ff6_c00196;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00196;src:url('chunks/assets/font_8c82c26d9c72fe734d44bfe5.woff2')format("woff");}.ff7_c00196{font-family:ff7_c00196;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00196;src:url('chunks/assets/font_fee88dfe693f8a64fa509d31.woff2')format("woff");}.ff8_c00196{font-family:ff8_c00196;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.360000px;}
.ls7_c00196{letter-spacing:-0.216000px;}
.ls6_c00196{letter-spacing:-0.072000px;}
.ls4_c00196{letter-spacing:0.000000px;}
.ls0_c00196{letter-spacing:0.072000px;}
.ls1_c00196{letter-spacing:0.144000px;}
.ls2_c00196{letter-spacing:21.960000px;}
.ls3_c00196{letter-spacing:24.552000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00196{word-spacing:-18.144000px;}
.ws1_c00196{word-spacing:-18.072000px;}
.ws5_c00196{word-spacing:-18.000000px;}
.ws36_c00196{word-spacing:-0.360000px;}
.ws10_c00196{word-spacing:-0.144000px;}
.ws25_c00196{word-spacing:-0.131760px;}
.wsa_c00196{word-spacing:-0.072000px;}
.ws8_c00196{word-spacing:0.000000px;}
.ws26_c00196{word-spacing:0.072000px;}
.ws2c_c00196{word-spacing:0.648000px;}
.ws2d_c00196{word-spacing:0.720000px;}
.ws38_c00196{word-spacing:1.800000px;}
.ws14_c00196{word-spacing:2.088000px;}
.ws37_c00196{word-spacing:2.520000px;}
.ws18_c00196{word-spacing:2.880000px;}
.ws1c_c00196{word-spacing:2.952000px;}
.ws19_c00196{word-spacing:3.168000px;}
.ws17_c00196{word-spacing:3.240000px;}
.ws2_c00196{word-spacing:3.384000px;}
.ws16_c00196{word-spacing:3.528000px;}
.ws15_c00196{word-spacing:3.600000px;}
.ws1d_c00196{word-spacing:3.960000px;}
.ws2b_c00196{word-spacing:4.320000px;}
.ws3f_c00196{word-spacing:5.040000px;}
.ws39_c00196{word-spacing:5.688000px;}
.ws31_c00196{word-spacing:5.760000px;}
.ws3b_c00196{word-spacing:6.048000px;}
.ws30_c00196{word-spacing:6.120000px;}
.ws20_c00196{word-spacing:6.336000px;}
.ws1f_c00196{word-spacing:6.408000px;}
.ws6_c00196{word-spacing:6.472800px;}
.ws34_c00196{word-spacing:6.480000px;}
.ws3d_c00196{word-spacing:6.768000px;}
.ws35_c00196{word-spacing:6.840000px;}
.ws2e_c00196{word-spacing:7.920000px;}
.ws3e_c00196{word-spacing:8.208000px;}
.ws29_c00196{word-spacing:8.568000px;}
.ws27_c00196{word-spacing:9.360000px;}
.ws22_c00196{word-spacing:9.648000px;}
.ws21_c00196{word-spacing:9.720000px;}
.ws2f_c00196{word-spacing:10.296000px;}
.wsf_c00196{word-spacing:10.368000px;}
.wsd_c00196{word-spacing:10.440000px;}
.wse_c00196{word-spacing:10.800000px;}
.ws0_c00196{word-spacing:11.160000px;}
.ws9_c00196{word-spacing:11.448000px;}
.ws1a_c00196{word-spacing:13.248000px;}
.ws3_c00196{word-spacing:13.320000px;}
.ws1e_c00196{word-spacing:13.680000px;}
.ws24_c00196{word-spacing:14.400000px;}
.ws2a_c00196{word-spacing:15.048000px;}
.ws12_c00196{word-spacing:15.408000px;}
.ws11_c00196{word-spacing:15.480000px;}
.wsc_c00196{word-spacing:16.128000px;}
.wsb_c00196{word-spacing:16.200000px;}
.ws23_c00196{word-spacing:16.560000px;}
.ws33_c00196{word-spacing:18.648000px;}
.ws1b_c00196{word-spacing:18.864000px;}
.ws28_c00196{word-spacing:19.080000px;}
.ws3c_c00196{word-spacing:20.448000px;}
.ws13_c00196{word-spacing:20.880000px;}
.ws4_c00196{word-spacing:21.103200px;}
.ws32_c00196{word-spacing:21.168000px;}
.ws3a_c00196{word-spacing:21.888000px;}
._0_c00196{margin-left:-1.087200px;}
._2_c00196{width:1.008000px;}
._3_c00196{width:10.584000px;}
._5_c00196{width:23.925600px;}
._4_c00196{width:28.159200px;}
._1_c00196{width:29.959200px;}
.fc2_c00196{color:transparent;}
.fc1_c00196{color:rgb(0,0,0);}
.fc0_c00196{color:rgb(35,31,32);}
.fs1_c00196{font-size:65.880000px;}
.fs0_c00196{font-size:72.000000px;}
.y0_c00196{bottom:0.000000px;}
.y1_c00196{bottom:61.748550px;}
.y1e_c00196{bottom:115.334400px;}
.y1d_c00196{bottom:146.384400px;}
.y1c_c00196{bottom:177.434400px;}
.y1b_c00196{bottom:208.484400px;}
.y1a_c00196{bottom:239.534400px;}
.y19_c00196{bottom:270.584400px;}
.y27_c00196{bottom:301.634400px;}
.y18_c00196{bottom:332.684400px;}
.y17_c00196{bottom:363.734400px;}
.y16_c00196{bottom:394.784400px;}
.y15_c00196{bottom:425.834400px;}
.y14_c00196{bottom:456.884400px;}
.y26_c00196{bottom:487.934400px;}
.y13_c00196{bottom:518.984400px;}
.y12_c00196{bottom:550.034400px;}
.y11_c00196{bottom:581.084400px;}
.y10_c00196{bottom:612.134400px;}
.y25_c00196{bottom:643.094400px;}
.yf_c00196{bottom:643.184400px;}
.y24_c00196{bottom:674.144400px;}
.ye_c00196{bottom:674.234400px;}
.y23_c00196{bottom:705.194400px;}
.yd_c00196{bottom:736.334400px;}
.yc_c00196{bottom:767.384400px;}
.yb_c00196{bottom:798.434400px;}
.ya_c00196{bottom:829.484400px;}
.y22_c00196{bottom:860.534400px;}
.y9_c00196{bottom:891.494400px;}
.y21_c00196{bottom:891.584400px;}
.y20_c00196{bottom:922.634400px;}
.y8_c00196{bottom:953.684400px;}
.y7_c00196{bottom:984.644400px;}
.y6_c00196{bottom:1015.694400px;}
.y5_c00196{bottom:1046.744400px;}
.y1f_c00196{bottom:1077.794400px;}
.y4_c00196{bottom:1108.844400px;}
.y3_c00196{bottom:1139.894400px;}
.y2_c00196{bottom:1194.074400px;}
.h2_c00196{height:50.400000px;}
.h3_c00196{height:54.331699px;}
.h4_c00196{height:76.824000px;}
.h5_c00196{height:78.048000px;}
.h0_c00196{height:1262.835000px;}
.h1_c00196{height:1263.000000px;}
.w2_c00196{width:0.000000px;}
.w3_c00196{width:0.066000px;}
.w0_c00196{width:892.914000px;}
.w1_c00196{width:893.250000px;}
.x1_c00196{left:-838.913400px;}
.x2_c00196{left:-765.293400px;}
.x3_c00196{left:-733.343400px;}
.x0_c00196{left:0.000000px;}
.x7_c00196{left:127.620000px;}
.x6_c00196{left:159.570000px;}
.x5_c00196{left:696.510000px;}
.x4_c00196{left:804.366150px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls5_c00196{letter-spacing:-0.320000pt;}
.ls7_c00196{letter-spacing:-0.192000pt;}
.ls6_c00196{letter-spacing:-0.064000pt;}
.ls4_c00196{letter-spacing:0.000000pt;}
.ls0_c00196{letter-spacing:0.064000pt;}
.ls1_c00196{letter-spacing:0.128000pt;}
.ls2_c00196{letter-spacing:19.520000pt;}
.ls3_c00196{letter-spacing:21.824000pt;}
.ws7_c00196{word-spacing:-16.128000pt;}
.ws1_c00196{word-spacing:-16.064000pt;}
.ws5_c00196{word-spacing:-16.000000pt;}
.ws36_c00196{word-spacing:-0.320000pt;}
.ws10_c00196{word-spacing:-0.128000pt;}
.ws25_c00196{word-spacing:-0.117120pt;}
.wsa_c00196{word-spacing:-0.064000pt;}
.ws8_c00196{word-spacing:0.000000pt;}
.ws26_c00196{word-spacing:0.064000pt;}
.ws2c_c00196{word-spacing:0.576000pt;}
.ws2d_c00196{word-spacing:0.640000pt;}
.ws38_c00196{word-spacing:1.600000pt;}
.ws14_c00196{word-spacing:1.856000pt;}
.ws37_c00196{word-spacing:2.240000pt;}
.ws18_c00196{word-spacing:2.560000pt;}
.ws1c_c00196{word-spacing:2.624000pt;}
.ws19_c00196{word-spacing:2.816000pt;}
.ws17_c00196{word-spacing:2.880000pt;}
.ws2_c00196{word-spacing:3.008000pt;}
.ws16_c00196{word-spacing:3.136000pt;}
.ws15_c00196{word-spacing:3.200000pt;}
.ws1d_c00196{word-spacing:3.520000pt;}
.ws2b_c00196{word-spacing:3.840000pt;}
.ws3f_c00196{word-spacing:4.480000pt;}
.ws39_c00196{word-spacing:5.056000pt;}
.ws31_c00196{word-spacing:5.120000pt;}
.ws3b_c00196{word-spacing:5.376000pt;}
.ws30_c00196{word-spacing:5.440000pt;}
.ws20_c00196{word-spacing:5.632000pt;}
.ws1f_c00196{word-spacing:5.696000pt;}
.ws6_c00196{word-spacing:5.753600pt;}
.ws34_c00196{word-spacing:5.760000pt;}
.ws3d_c00196{word-spacing:6.016000pt;}
.ws35_c00196{word-spacing:6.080000pt;}
.ws2e_c00196{word-spacing:7.040000pt;}
.ws3e_c00196{word-spacing:7.296000pt;}
.ws29_c00196{word-spacing:7.616000pt;}
.ws27_c00196{word-spacing:8.320000pt;}
.ws22_c00196{word-spacing:8.576000pt;}
.ws21_c00196{word-spacing:8.640000pt;}
.ws2f_c00196{word-spacing:9.152000pt;}
.wsf_c00196{word-spacing:9.216000pt;}
.wsd_c00196{word-spacing:9.280000pt;}
.wse_c00196{word-spacing:9.600000pt;}
.ws0_c00196{word-spacing:9.920000pt;}
.ws9_c00196{word-spacing:10.176000pt;}
.ws1a_c00196{word-spacing:11.776000pt;}
.ws3_c00196{word-spacing:11.840000pt;}
.ws1e_c00196{word-spacing:12.160000pt;}
.ws24_c00196{word-spacing:12.800000pt;}
.ws2a_c00196{word-spacing:13.376000pt;}
.ws12_c00196{word-spacing:13.696000pt;}
.ws11_c00196{word-spacing:13.760000pt;}
.wsc_c00196{word-spacing:14.336000pt;}
.wsb_c00196{word-spacing:14.400000pt;}
.ws23_c00196{word-spacing:14.720000pt;}
.ws33_c00196{word-spacing:16.576000pt;}
.ws1b_c00196{word-spacing:16.768000pt;}
.ws28_c00196{word-spacing:16.960000pt;}
.ws3c_c00196{word-spacing:18.176000pt;}
.ws13_c00196{word-spacing:18.560000pt;}
.ws4_c00196{word-spacing:18.758400pt;}
.ws32_c00196{word-spacing:18.816000pt;}
.ws3a_c00196{word-spacing:19.456000pt;}
._0_c00196{margin-left:-0.966400pt;}
._2_c00196{width:0.896000pt;}
._3_c00196{width:9.408000pt;}
._5_c00196{width:21.267200pt;}
._4_c00196{width:25.030400pt;}
._1_c00196{width:26.630400pt;}
.fs1_c00196{font-size:58.560000pt;}
.fs0_c00196{font-size:64.000000pt;}
.y0_c00196{bottom:0.000000pt;}
.y1_c00196{bottom:54.887600pt;}
.y1e_c00196{bottom:102.519467pt;}
.y1d_c00196{bottom:130.119467pt;}
.y1c_c00196{bottom:157.719467pt;}
.y1b_c00196{bottom:185.319467pt;}
.y1a_c00196{bottom:212.919467pt;}
.y19_c00196{bottom:240.519467pt;}
.y27_c00196{bottom:268.119467pt;}
.y18_c00196{bottom:295.719467pt;}
.y17_c00196{bottom:323.319467pt;}
.y16_c00196{bottom:350.919467pt;}
.y15_c00196{bottom:378.519467pt;}
.y14_c00196{bottom:406.119467pt;}
.y26_c00196{bottom:433.719467pt;}
.y13_c00196{bottom:461.319467pt;}
.y12_c00196{bottom:488.919467pt;}
.y11_c00196{bottom:516.519467pt;}
.y10_c00196{bottom:544.119467pt;}
.y25_c00196{bottom:571.639467pt;}
.yf_c00196{bottom:571.719467pt;}
.y24_c00196{bottom:599.239467pt;}
.ye_c00196{bottom:599.319467pt;}
.y23_c00196{bottom:626.839467pt;}
.yd_c00196{bottom:654.519467pt;}
.yc_c00196{bottom:682.119467pt;}
.yb_c00196{bottom:709.719467pt;}
.ya_c00196{bottom:737.319467pt;}
.y22_c00196{bottom:764.919467pt;}
.y9_c00196{bottom:792.439467pt;}
.y21_c00196{bottom:792.519467pt;}
.y20_c00196{bottom:820.119467pt;}
.y8_c00196{bottom:847.719467pt;}
.y7_c00196{bottom:875.239467pt;}
.y6_c00196{bottom:902.839467pt;}
.y5_c00196{bottom:930.439467pt;}
.y1f_c00196{bottom:958.039467pt;}
.y4_c00196{bottom:985.639467pt;}
.y3_c00196{bottom:1013.239467pt;}
.y2_c00196{bottom:1061.399467pt;}
.h2_c00196{height:44.800000pt;}
.h3_c00196{height:48.294844pt;}
.h4_c00196{height:68.288000pt;}
.h5_c00196{height:69.376000pt;}
.h0_c00196{height:1122.520000pt;}
.h1_c00196{height:1122.666667pt;}
.w2_c00196{width:0.000000pt;}
.w3_c00196{width:0.058667pt;}
.w0_c00196{width:793.701333pt;}
.w1_c00196{width:794.000000pt;}
.x1_c00196{left:-745.700800pt;}
.x2_c00196{left:-680.260800pt;}
.x3_c00196{left:-651.860800pt;}
.x0_c00196{left:0.000000pt;}
.x7_c00196{left:113.440000pt;}
.x6_c00196{left:141.840000pt;}
.x5_c00196{left:619.120000pt;}
.x4_c00196{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00197;src:url('chunks/assets/font_b2365d5bb69bbdeb8745cfb1.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00197;src:url('chunks/assets/font_8679c33582f990465a84d426.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:1.575000;font-style:normal;font-weight:normal;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_ad2b2c7dde5b023952c39802.woff2')format("woff");}.ff4_c00197{font-family:ff4_c00197;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00197{letter-spacing:-0.576000px;}
.ls5_c00197{letter-spacing:0.000000px;}
.ls0_c00197{letter-spacing:0.072000px;}
.ls1_c00197{letter-spacing:0.144000px;}
.ls4_c00197{letter-spacing:23.616000px;}
.ls2_c00197{letter-spacing:29.304000px;}
.ls3_c00197{letter-spacing:29.880000px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00197{word-spacing:-18.144000px;}
.ws6_c00197{word-spacing:-0.072000px;}
.ws4_c00197{word-spacing:0.000000px;}
.ws1f_c00197{word-spacing:1.440000px;}
.wsf_c00197{word-spacing:1.728000px;}
.ws10_c00197{word-spacing:1.800000px;}
.ws20_c00197{word-spacing:2.808000px;}
.ws2_c00197{word-spacing:2.880000px;}
.wsb_c00197{word-spacing:3.240000px;}
.wsc_c00197{word-spacing:3.528000px;}
.ws5_c00197{word-spacing:3.600000px;}
.ws1a_c00197{word-spacing:3.960000px;}
.ws13_c00197{word-spacing:4.176000px;}
.ws12_c00197{word-spacing:4.248000px;}
.ws3_c00197{word-spacing:4.752000px;}
.wsa_c00197{word-spacing:4.968000px;}
.ws21_c00197{word-spacing:5.688000px;}
.ws22_c00197{word-spacing:5.760000px;}
.wsd_c00197{word-spacing:6.768000px;}
.ws11_c00197{word-spacing:10.368000px;}
.wse_c00197{word-spacing:10.800000px;}
.ws19_c00197{word-spacing:11.088000px;}
.ws18_c00197{word-spacing:11.160000px;}
.ws17_c00197{word-spacing:11.520000px;}
.ws1e_c00197{word-spacing:11.808000px;}
.ws23_c00197{word-spacing:12.240000px;}
.ws25_c00197{word-spacing:12.528000px;}
.ws24_c00197{word-spacing:12.600000px;}
.ws1d_c00197{word-spacing:12.960000px;}
.ws1c_c00197{word-spacing:15.264000px;}
.ws1b_c00197{word-spacing:15.480000px;}
.ws0_c00197{word-spacing:24.120000px;}
.ws8_c00197{word-spacing:24.336000px;}
.ws7_c00197{word-spacing:24.408000px;}
.ws9_c00197{word-spacing:24.480000px;}
.ws15_c00197{word-spacing:26.568000px;}
.ws14_c00197{word-spacing:27.000000px;}
.ws16_c00197{word-spacing:27.720000px;}
._0_c00197{margin-left:-1.152000px;}
._2_c00197{width:1.080000px;}
._1_c00197{width:18.720000px;}
.fc1_c00197{color:rgb(0,0,0);}
.fc0_c00197{color:rgb(35,31,32);}
.fs1_c00197{font-size:65.880000px;}
.fs0_c00197{font-size:72.000000px;}
.y0_c00197{bottom:0.000000px;}
.y1_c00197{bottom:61.748550px;}
.y1e_c00197{bottom:115.334400px;}
.y1d_c00197{bottom:146.384400px;}
.y1c_c00197{bottom:208.484400px;}
.y1b_c00197{bottom:239.534400px;}
.y1a_c00197{bottom:270.584400px;}
.y19_c00197{bottom:301.634400px;}
.y18_c00197{bottom:332.684400px;}
.y17_c00197{bottom:363.734400px;}
.y16_c00197{bottom:425.744400px;}
.y15_c00197{bottom:487.934400px;}
.y14_c00197{bottom:518.984400px;}
.y13_c00197{bottom:550.034400px;}
.y12_c00197{bottom:612.134400px;}
.y11_c00197{bottom:643.184400px;}
.y10_c00197{bottom:674.144400px;}
.yf_c00197{bottom:705.284400px;}
.ye_c00197{bottom:736.334400px;}
.yd_c00197{bottom:798.434400px;}
.yc_c00197{bottom:829.484400px;}
.yb_c00197{bottom:860.534400px;}
.ya_c00197{bottom:891.584400px;}
.y9_c00197{bottom:922.634400px;}
.y8_c00197{bottom:953.684400px;}
.y7_c00197{bottom:984.644400px;}
.y6_c00197{bottom:1015.694400px;}
.y5_c00197{bottom:1046.744400px;}
.y4_c00197{bottom:1108.844400px;}
.y3_c00197{bottom:1139.894400px;}
.y2_c00197{bottom:1194.074400px;}
.h2_c00197{height:50.400000px;}
.h3_c00197{height:54.331699px;}
.h4_c00197{height:76.824000px;}
.h5_c00197{height:78.048000px;}
.h0_c00197{height:1262.835000px;}
.h1_c00197{height:1263.000000px;}
.w0_c00197{width:892.914000px;}
.w1_c00197{width:893.250000px;}
.x0_c00197{left:0.000000px;}
.x1_c00197{left:54.000000px;}
.x2_c00197{left:127.620000px;}
.x3_c00197{left:159.570000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls6_c00197{letter-spacing:-0.512000pt;}
.ls5_c00197{letter-spacing:0.000000pt;}
.ls0_c00197{letter-spacing:0.064000pt;}
.ls1_c00197{letter-spacing:0.128000pt;}
.ls4_c00197{letter-spacing:20.992000pt;}
.ls2_c00197{letter-spacing:26.048000pt;}
.ls3_c00197{letter-spacing:26.560000pt;}
.ws1_c00197{word-spacing:-16.128000pt;}
.ws6_c00197{word-spacing:-0.064000pt;}
.ws4_c00197{word-spacing:0.000000pt;}
.ws1f_c00197{word-spacing:1.280000pt;}
.wsf_c00197{word-spacing:1.536000pt;}
.ws10_c00197{word-spacing:1.600000pt;}
.ws20_c00197{word-spacing:2.496000pt;}
.ws2_c00197{word-spacing:2.560000pt;}
.wsb_c00197{word-spacing:2.880000pt;}
.wsc_c00197{word-spacing:3.136000pt;}
.ws5_c00197{word-spacing:3.200000pt;}
.ws1a_c00197{word-spacing:3.520000pt;}
.ws13_c00197{word-spacing:3.712000pt;}
.ws12_c00197{word-spacing:3.776000pt;}
.ws3_c00197{word-spacing:4.224000pt;}
.wsa_c00197{word-spacing:4.416000pt;}
.ws21_c00197{word-spacing:5.056000pt;}
.ws22_c00197{word-spacing:5.120000pt;}
.wsd_c00197{word-spacing:6.016000pt;}
.ws11_c00197{word-spacing:9.216000pt;}
.wse_c00197{word-spacing:9.600000pt;}
.ws19_c00197{word-spacing:9.856000pt;}
.ws18_c00197{word-spacing:9.920000pt;}
.ws17_c00197{word-spacing:10.240000pt;}
.ws1e_c00197{word-spacing:10.496000pt;}
.ws23_c00197{word-spacing:10.880000pt;}
.ws25_c00197{word-spacing:11.136000pt;}
.ws24_c00197{word-spacing:11.200000pt;}
.ws1d_c00197{word-spacing:11.520000pt;}
.ws1c_c00197{word-spacing:13.568000pt;}
.ws1b_c00197{word-spacing:13.760000pt;}
.ws0_c00197{word-spacing:21.440000pt;}
.ws8_c00197{word-spacing:21.632000pt;}
.ws7_c00197{word-spacing:21.696000pt;}
.ws9_c00197{word-spacing:21.760000pt;}
.ws15_c00197{word-spacing:23.616000pt;}
.ws14_c00197{word-spacing:24.000000pt;}
.ws16_c00197{word-spacing:24.640000pt;}
._0_c00197{margin-left:-1.024000pt;}
._2_c00197{width:0.960000pt;}
._1_c00197{width:16.640000pt;}
.fs1_c00197{font-size:58.560000pt;}
.fs0_c00197{font-size:64.000000pt;}
.y0_c00197{bottom:0.000000pt;}
.y1_c00197{bottom:54.887600pt;}
.y1e_c00197{bottom:102.519467pt;}
.y1d_c00197{bottom:130.119467pt;}
.y1c_c00197{bottom:185.319467pt;}
.y1b_c00197{bottom:212.919467pt;}
.y1a_c00197{bottom:240.519467pt;}
.y19_c00197{bottom:268.119467pt;}
.y18_c00197{bottom:295.719467pt;}
.y17_c00197{bottom:323.319467pt;}
.y16_c00197{bottom:378.439467pt;}
.y15_c00197{bottom:433.719467pt;}
.y14_c00197{bottom:461.319467pt;}
.y13_c00197{bottom:488.919467pt;}
.y12_c00197{bottom:544.119467pt;}
.y11_c00197{bottom:571.719467pt;}
.y10_c00197{bottom:599.239467pt;}
.yf_c00197{bottom:626.919467pt;}
.ye_c00197{bottom:654.519467pt;}
.yd_c00197{bottom:709.719467pt;}
.yc_c00197{bottom:737.319467pt;}
.yb_c00197{bottom:764.919467pt;}
.ya_c00197{bottom:792.519467pt;}
.y9_c00197{bottom:820.119467pt;}
.y8_c00197{bottom:847.719467pt;}
.y7_c00197{bottom:875.239467pt;}
.y6_c00197{bottom:902.839467pt;}
.y5_c00197{bottom:930.439467pt;}
.y4_c00197{bottom:985.639467pt;}
.y3_c00197{bottom:1013.239467pt;}
.y2_c00197{bottom:1061.399467pt;}
.h2_c00197{height:44.800000pt;}
.h3_c00197{height:48.294844pt;}
.h4_c00197{height:68.288000pt;}
.h5_c00197{height:69.376000pt;}
.h0_c00197{height:1122.520000pt;}
.h1_c00197{height:1122.666667pt;}
.w0_c00197{width:793.701333pt;}
.w1_c00197{width:794.000000pt;}
.x0_c00197{left:0.000000pt;}
.x1_c00197{left:48.000000pt;}
.x2_c00197{left:113.440000pt;}
.x3_c00197{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00198;src:url('chunks/assets/font_b6f5c7f57e1a27c66e801709.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00198;src:url('chunks/assets/font_ee6aa013e6e531f5f7250abf.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:1.575000;font-style:normal;font-weight:normal;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_4d783c70bd61776093676a2b.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00198;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00198;src:url('chunks/assets/font_a83148d3fb1b1a7a37f9d8e9.woff2')format("woff");}.ff6_c00198{font-family:ff6_c00198;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00198;src:url('chunks/assets/font_9809ccb62be97cf5f902e022.woff2')format("woff");}.ff7_c00198{font-family:ff7_c00198;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00198;src:url('chunks/assets/font_4d783c70bd61776093676a2b.woff2')format("woff");}.ff8_c00198{font-family:ff8_c00198;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00198{letter-spacing:-0.576000px;}
.ls8_c00198{letter-spacing:-0.288000px;}
.ls9_c00198{letter-spacing:-0.072000px;}
.ls6_c00198{letter-spacing:0.000000px;}
.ls0_c00198{letter-spacing:0.072000px;}
.ls1_c00198{letter-spacing:0.144000px;}
.ls4_c00198{letter-spacing:23.616000px;}
.ls5_c00198{letter-spacing:26.280000px;}
.ls2_c00198{letter-spacing:29.304000px;}
.ls3_c00198{letter-spacing:29.880000px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00198{word-spacing:-18.144000px;}
.ws5_c00198{word-spacing:-18.000000px;}
.ws33_c00198{word-spacing:-0.144000px;}
.ws2a_c00198{word-spacing:-0.131760px;}
.wsa_c00198{word-spacing:-0.072000px;}
.ws8_c00198{word-spacing:0.000000px;}
.ws2d_c00198{word-spacing:0.288000px;}
.ws30_c00198{word-spacing:0.360000px;}
.ws3a_c00198{word-spacing:0.576000px;}
.ws23_c00198{word-spacing:1.440000px;}
.ws13_c00198{word-spacing:1.728000px;}
.ws14_c00198{word-spacing:1.800000px;}
.ws36_c00198{word-spacing:2.088000px;}
.ws35_c00198{word-spacing:2.160000px;}
.ws24_c00198{word-spacing:2.808000px;}
.ws2_c00198{word-spacing:2.880000px;}
.ws3e_c00198{word-spacing:3.096000px;}
.ws32_c00198{word-spacing:3.168000px;}
.wsf_c00198{word-spacing:3.240000px;}
.ws10_c00198{word-spacing:3.528000px;}
.ws9_c00198{word-spacing:3.600000px;}
.ws34_c00198{word-spacing:3.816000px;}
.ws1e_c00198{word-spacing:3.960000px;}
.ws17_c00198{word-spacing:4.176000px;}
.ws16_c00198{word-spacing:4.248000px;}
.ws4_c00198{word-spacing:4.392000px;}
.ws2c_c00198{word-spacing:4.608000px;}
.ws2b_c00198{word-spacing:4.680000px;}
.ws3_c00198{word-spacing:4.752000px;}
.wse_c00198{word-spacing:4.968000px;}
.ws39_c00198{word-spacing:5.040000px;}
.ws25_c00198{word-spacing:5.688000px;}
.ws26_c00198{word-spacing:5.760000px;}
.ws3d_c00198{word-spacing:6.480000px;}
.ws11_c00198{word-spacing:6.768000px;}
.ws6_c00198{word-spacing:8.143200px;}
.ws38_c00198{word-spacing:8.208000px;}
.ws37_c00198{word-spacing:8.280000px;}
.ws15_c00198{word-spacing:10.368000px;}
.ws12_c00198{word-spacing:10.800000px;}
.ws2f_c00198{word-spacing:11.016000px;}
.ws1d_c00198{word-spacing:11.088000px;}
.ws1c_c00198{word-spacing:11.160000px;}
.ws2e_c00198{word-spacing:11.304000px;}
.ws1b_c00198{word-spacing:11.520000px;}
.ws22_c00198{word-spacing:11.808000px;}
.ws27_c00198{word-spacing:12.240000px;}
.ws29_c00198{word-spacing:12.528000px;}
.ws28_c00198{word-spacing:12.600000px;}
.ws21_c00198{word-spacing:12.960000px;}
.ws20_c00198{word-spacing:15.264000px;}
.ws1f_c00198{word-spacing:15.480000px;}
.ws31_c00198{word-spacing:17.208000px;}
.ws7_c00198{word-spacing:18.504000px;}
.ws3b_c00198{word-spacing:18.648000px;}
.ws3c_c00198{word-spacing:18.720000px;}
.ws0_c00198{word-spacing:24.120000px;}
.wsc_c00198{word-spacing:24.336000px;}
.wsb_c00198{word-spacing:24.408000px;}
.wsd_c00198{word-spacing:24.480000px;}
.ws19_c00198{word-spacing:26.568000px;}
.ws18_c00198{word-spacing:27.000000px;}
.ws1a_c00198{word-spacing:27.720000px;}
._0_c00198{margin-left:-1.152000px;}
._2_c00198{width:1.080000px;}
._3_c00198{width:5.400000px;}
._1_c00198{width:18.720000px;}
.fc2_c00198{color:transparent;}
.fc1_c00198{color:rgb(0,0,0);}
.fc0_c00198{color:rgb(35,31,32);}
.fs1_c00198{font-size:65.880000px;}
.fs0_c00198{font-size:72.000000px;}
.y0_c00198{bottom:0.000000px;}
.y1_c00198{bottom:61.748550px;}
.y1e_c00198{bottom:115.334400px;}
.y1d_c00198{bottom:146.384400px;}
.y1c_c00198{bottom:208.484400px;}
.y1b_c00198{bottom:239.534400px;}
.y1a_c00198{bottom:270.584400px;}
.y19_c00198{bottom:301.634400px;}
.y18_c00198{bottom:332.684400px;}
.y17_c00198{bottom:363.734400px;}
.y25_c00198{bottom:394.784400px;}
.y16_c00198{bottom:425.744400px;}
.y24_c00198{bottom:425.834400px;}
.y23_c00198{bottom:456.884400px;}
.y15_c00198{bottom:487.934400px;}
.y14_c00198{bottom:518.984400px;}
.y13_c00198{bottom:550.034400px;}
.y22_c00198{bottom:581.084400px;}
.y12_c00198{bottom:612.134400px;}
.y11_c00198{bottom:643.184400px;}
.y10_c00198{bottom:674.144400px;}
.y21_c00198{bottom:674.234400px;}
.yf_c00198{bottom:705.284400px;}
.ye_c00198{bottom:736.334400px;}
.y20_c00198{bottom:767.384400px;}
.yd_c00198{bottom:798.434400px;}
.yc_c00198{bottom:829.484400px;}
.yb_c00198{bottom:860.534400px;}
.ya_c00198{bottom:891.584400px;}
.y9_c00198{bottom:922.634400px;}
.y8_c00198{bottom:953.684400px;}
.y7_c00198{bottom:984.644400px;}
.y6_c00198{bottom:1015.694400px;}
.y1f_c00198{bottom:1046.654400px;}
.y5_c00198{bottom:1046.744400px;}
.y4_c00198{bottom:1108.844400px;}
.y3_c00198{bottom:1139.894400px;}
.y2_c00198{bottom:1194.074400px;}
.h2_c00198{height:50.400000px;}
.h3_c00198{height:54.331699px;}
.h4_c00198{height:76.824000px;}
.h5_c00198{height:78.048000px;}
.h0_c00198{height:1262.835000px;}
.h1_c00198{height:1263.000000px;}
.w2_c00198{width:0.000000px;}
.w3_c00198{width:0.066000px;}
.w0_c00198{width:892.914000px;}
.w1_c00198{width:893.250000px;}
.x1_c00198{left:-838.913400px;}
.x2_c00198{left:-765.293400px;}
.x3_c00198{left:-733.343400px;}
.x0_c00198{left:0.000000px;}
.x6_c00198{left:127.620000px;}
.x8_c00198{left:148.950000px;}
.x7_c00198{left:159.570000px;}
.x5_c00198{left:696.510000px;}
.x4_c00198{left:804.366150px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls7_c00198{letter-spacing:-0.512000pt;}
.ls8_c00198{letter-spacing:-0.256000pt;}
.ls9_c00198{letter-spacing:-0.064000pt;}
.ls6_c00198{letter-spacing:0.000000pt;}
.ls0_c00198{letter-spacing:0.064000pt;}
.ls1_c00198{letter-spacing:0.128000pt;}
.ls4_c00198{letter-spacing:20.992000pt;}
.ls5_c00198{letter-spacing:23.360000pt;}
.ls2_c00198{letter-spacing:26.048000pt;}
.ls3_c00198{letter-spacing:26.560000pt;}
.ws1_c00198{word-spacing:-16.128000pt;}
.ws5_c00198{word-spacing:-16.000000pt;}
.ws33_c00198{word-spacing:-0.128000pt;}
.ws2a_c00198{word-spacing:-0.117120pt;}
.wsa_c00198{word-spacing:-0.064000pt;}
.ws8_c00198{word-spacing:0.000000pt;}
.ws2d_c00198{word-spacing:0.256000pt;}
.ws30_c00198{word-spacing:0.320000pt;}
.ws3a_c00198{word-spacing:0.512000pt;}
.ws23_c00198{word-spacing:1.280000pt;}
.ws13_c00198{word-spacing:1.536000pt;}
.ws14_c00198{word-spacing:1.600000pt;}
.ws36_c00198{word-spacing:1.856000pt;}
.ws35_c00198{word-spacing:1.920000pt;}
.ws24_c00198{word-spacing:2.496000pt;}
.ws2_c00198{word-spacing:2.560000pt;}
.ws3e_c00198{word-spacing:2.752000pt;}
.ws32_c00198{word-spacing:2.816000pt;}
.wsf_c00198{word-spacing:2.880000pt;}
.ws10_c00198{word-spacing:3.136000pt;}
.ws9_c00198{word-spacing:3.200000pt;}
.ws34_c00198{word-spacing:3.392000pt;}
.ws1e_c00198{word-spacing:3.520000pt;}
.ws17_c00198{word-spacing:3.712000pt;}
.ws16_c00198{word-spacing:3.776000pt;}
.ws4_c00198{word-spacing:3.904000pt;}
.ws2c_c00198{word-spacing:4.096000pt;}
.ws2b_c00198{word-spacing:4.160000pt;}
.ws3_c00198{word-spacing:4.224000pt;}
.wse_c00198{word-spacing:4.416000pt;}
.ws39_c00198{word-spacing:4.480000pt;}
.ws25_c00198{word-spacing:5.056000pt;}
.ws26_c00198{word-spacing:5.120000pt;}
.ws3d_c00198{word-spacing:5.760000pt;}
.ws11_c00198{word-spacing:6.016000pt;}
.ws6_c00198{word-spacing:7.238400pt;}
.ws38_c00198{word-spacing:7.296000pt;}
.ws37_c00198{word-spacing:7.360000pt;}
.ws15_c00198{word-spacing:9.216000pt;}
.ws12_c00198{word-spacing:9.600000pt;}
.ws2f_c00198{word-spacing:9.792000pt;}
.ws1d_c00198{word-spacing:9.856000pt;}
.ws1c_c00198{word-spacing:9.920000pt;}
.ws2e_c00198{word-spacing:10.048000pt;}
.ws1b_c00198{word-spacing:10.240000pt;}
.ws22_c00198{word-spacing:10.496000pt;}
.ws27_c00198{word-spacing:10.880000pt;}
.ws29_c00198{word-spacing:11.136000pt;}
.ws28_c00198{word-spacing:11.200000pt;}
.ws21_c00198{word-spacing:11.520000pt;}
.ws20_c00198{word-spacing:13.568000pt;}
.ws1f_c00198{word-spacing:13.760000pt;}
.ws31_c00198{word-spacing:15.296000pt;}
.ws7_c00198{word-spacing:16.448000pt;}
.ws3b_c00198{word-spacing:16.576000pt;}
.ws3c_c00198{word-spacing:16.640000pt;}
.ws0_c00198{word-spacing:21.440000pt;}
.wsc_c00198{word-spacing:21.632000pt;}
.wsb_c00198{word-spacing:21.696000pt;}
.wsd_c00198{word-spacing:21.760000pt;}
.ws19_c00198{word-spacing:23.616000pt;}
.ws18_c00198{word-spacing:24.000000pt;}
.ws1a_c00198{word-spacing:24.640000pt;}
._0_c00198{margin-left:-1.024000pt;}
._2_c00198{width:0.960000pt;}
._3_c00198{width:4.800000pt;}
._1_c00198{width:16.640000pt;}
.fs1_c00198{font-size:58.560000pt;}
.fs0_c00198{font-size:64.000000pt;}
.y0_c00198{bottom:0.000000pt;}
.y1_c00198{bottom:54.887600pt;}
.y1e_c00198{bottom:102.519467pt;}
.y1d_c00198{bottom:130.119467pt;}
.y1c_c00198{bottom:185.319467pt;}
.y1b_c00198{bottom:212.919467pt;}
.y1a_c00198{bottom:240.519467pt;}
.y19_c00198{bottom:268.119467pt;}
.y18_c00198{bottom:295.719467pt;}
.y17_c00198{bottom:323.319467pt;}
.y25_c00198{bottom:350.919467pt;}
.y16_c00198{bottom:378.439467pt;}
.y24_c00198{bottom:378.519467pt;}
.y23_c00198{bottom:406.119467pt;}
.y15_c00198{bottom:433.719467pt;}
.y14_c00198{bottom:461.319467pt;}
.y13_c00198{bottom:488.919467pt;}
.y22_c00198{bottom:516.519467pt;}
.y12_c00198{bottom:544.119467pt;}
.y11_c00198{bottom:571.719467pt;}
.y10_c00198{bottom:599.239467pt;}
.y21_c00198{bottom:599.319467pt;}
.yf_c00198{bottom:626.919467pt;}
.ye_c00198{bottom:654.519467pt;}
.y20_c00198{bottom:682.119467pt;}
.yd_c00198{bottom:709.719467pt;}
.yc_c00198{bottom:737.319467pt;}
.yb_c00198{bottom:764.919467pt;}
.ya_c00198{bottom:792.519467pt;}
.y9_c00198{bottom:820.119467pt;}
.y8_c00198{bottom:847.719467pt;}
.y7_c00198{bottom:875.239467pt;}
.y6_c00198{bottom:902.839467pt;}
.y1f_c00198{bottom:930.359467pt;}
.y5_c00198{bottom:930.439467pt;}
.y4_c00198{bottom:985.639467pt;}
.y3_c00198{bottom:1013.239467pt;}
.y2_c00198{bottom:1061.399467pt;}
.h2_c00198{height:44.800000pt;}
.h3_c00198{height:48.294844pt;}
.h4_c00198{height:68.288000pt;}
.h5_c00198{height:69.376000pt;}
.h0_c00198{height:1122.520000pt;}
.h1_c00198{height:1122.666667pt;}
.w2_c00198{width:0.000000pt;}
.w3_c00198{width:0.058667pt;}
.w0_c00198{width:793.701333pt;}
.w1_c00198{width:794.000000pt;}
.x1_c00198{left:-745.700800pt;}
.x2_c00198{left:-680.260800pt;}
.x3_c00198{left:-651.860800pt;}
.x0_c00198{left:0.000000pt;}
.x6_c00198{left:113.440000pt;}
.x8_c00198{left:132.400000pt;}
.x7_c00198{left:141.840000pt;}
.x5_c00198{left:619.120000pt;}
.x4_c00198{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00199;src:url('chunks/assets/font_c0116bf2cf5da839a712ce3f.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00199;src:url('chunks/assets/font_39e1ce89fa404ecb2a1f7d9c.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00199;src:url('chunks/assets/font_24957d609f9644f2537937ec.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00199{letter-spacing:-0.108000px;}
.ls5_c00199{letter-spacing:-0.095760px;}
.ls3_c00199{letter-spacing:0.000000px;}
.ls6_c00199{letter-spacing:0.047880px;}
.ls2_c00199{letter-spacing:0.054000px;}
.ls0_c00199{letter-spacing:0.072000px;}
.ls1_c00199{letter-spacing:0.108000px;}
.ls7_c00199{letter-spacing:0.191520px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00199{word-spacing:-12.312000px;}
.ws3_c00199{word-spacing:-12.204000px;}
.ws2_c00199{word-spacing:-12.096000px;}
.ws1_c00199{word-spacing:-10.725120px;}
.wsc_c00199{word-spacing:-0.432000px;}
.wsa_c00199{word-spacing:-0.191520px;}
.wsb_c00199{word-spacing:-0.108000px;}
.ws9_c00199{word-spacing:-0.095760px;}
.ws6_c00199{word-spacing:-0.072000px;}
.ws8_c00199{word-spacing:-0.054000px;}
.ws5_c00199{word-spacing:0.000000px;}
.ws7_c00199{word-spacing:0.162000px;}
.ws0_c00199{word-spacing:17.928000px;}
._0_c00199{margin-left:-1.166400px;}
._1_c00199{width:1.080000px;}
._2_c00199{width:201.111120px;}
.fc0_c00199{color:rgb(35,31,32);}
.fs3_c00199{font-size:47.880000px;}
.fs2_c00199{font-size:54.000000px;}
.fs1_c00199{font-size:65.880000px;}
.fs0_c00199{font-size:72.000000px;}
.y2b_c00199{bottom:-13.140600px;}
.y39_c00199{bottom:-13.137600px;}
.y28_c00199{bottom:-13.050600px;}
.y2e_c00199{bottom:-13.047600px;}
.y0_c00199{bottom:0.000000px;}
.y32_c00199{bottom:3.689400px;}
.y36_c00199{bottom:3.690900px;}
.y34_c00199{bottom:3.692250px;}
.y30_c00199{bottom:3.869250px;}
.y7_c00199{bottom:5.129400px;}
.y2a_c00199{bottom:6.119400px;}
.y27_c00199{bottom:6.209400px;}
.y5_c00199{bottom:8.549250px;}
.y25_c00199{bottom:8.549400px;}
.y21_c00199{bottom:8.640750px;}
.y23_c00199{bottom:8.999400px;}
.yc_c00199{bottom:21.512400px;}
.y10_c00199{bottom:22.409400px;}
.y13_c00199{bottom:26.279250px;}
.y1e_c00199{bottom:35.639250px;}
.y16_c00199{bottom:52.652400px;}
.y1a_c00199{bottom:55.442400px;}
.y1_c00199{bottom:61.748550px;}
.y3_c00199{bottom:146.383950px;}
.y22_c00199{bottom:196.965000px;}
.y20_c00199{bottom:239.173500px;}
.y3b_c00199{bottom:316.035000px;}
.y3a_c00199{bottom:357.075000px;}
.y38_c00199{bottom:398.472000px;}
.y37_c00199{bottom:404.594400px;}
.y35_c00199{bottom:443.293500px;}
.y31_c00199{bottom:443.475000px;}
.y33_c00199{bottom:471.912000px;}
.y2f_c00199{bottom:472.005000px;}
.y2d_c00199{bottom:501.612000px;}
.y2c_c00199{bottom:507.824400px;}
.y29_c00199{bottom:526.275000px;}
.y26_c00199{bottom:526.365000px;}
.y24_c00199{bottom:570.375000px;}
.y1d_c00199{bottom:656.145000px;}
.y19_c00199{bottom:674.142000px;}
.y1f_c00199{bottom:675.224400px;}
.y1c_c00199{bottom:696.738750px;}
.y15_c00199{bottom:709.512000px;}
.y1b_c00199{bottom:713.114250px;}
.y18_c00199{bottom:729.318750px;}
.y17_c00199{bottom:745.694250px;}
.y12_c00199{bottom:817.965000px;}
.y14_c00199{bottom:827.864250px;}
.yf_c00199{bottom:892.395000px;}
.y11_c00199{bottom:898.424400px;}
.ye_c00199{bottom:965.114250px;}
.ya_c00199{bottom:1052.234400px;}
.yb_c00199{bottom:1064.832000px;}
.y9_c00199{bottom:1067.264400px;}
.yd_c00199{bottom:1069.604400px;}
.y6_c00199{bottom:1080.585000px;}
.y8_c00199{bottom:1083.734400px;}
.y4_c00199{bottom:1118.475000px;}
.y2_c00199{bottom:1194.074400px;}
.h15_c00199{height:16.558500px;}
.h16_c00199{height:16.560000px;}
.h14_c00199{height:16.650000px;}
.h7_c00199{height:18.000000px;}
.h12_c00199{height:18.988500px;}
.h17_c00199{height:18.990000px;}
.h11_c00199{height:19.081500px;}
.h13_c00199{height:19.083000px;}
.h5_c00199{height:21.418500px;}
.hf_c00199{height:21.511500px;}
.h10_c00199{height:21.870000px;}
.h8_c00199{height:32.940000px;}
.ha_c00199{height:35.280000px;}
.hb_c00199{height:39.150000px;}
.h9_c00199{height:39.486973px;}
.h6_c00199{height:44.534180px;}
.he_c00199{height:48.510000px;}
.h2_c00199{height:50.400000px;}
.h3_c00199{height:54.331699px;}
.hc_c00199{height:65.523000px;}
.hd_c00199{height:68.310000px;}
.h4_c00199{height:78.048000px;}
.h0_c00199{height:1262.835000px;}
.h1_c00199{height:1263.000000px;}
.w10_c00199{width:79.560000px;}
.w11_c00199{width:83.700000px;}
.w3_c00199{width:84.780000px;}
.wf_c00199{width:96.748500px;}
.w4_c00199{width:109.170000px;}
.w9_c00199{width:110.610000px;}
.w8_c00199{width:110.970000px;}
.w5_c00199{width:114.300000px;}
.wa_c00199{width:121.590000px;}
.w6_c00199{width:144.270000px;}
.we_c00199{width:156.060000px;}
.w7_c00199{width:179.193000px;}
.w12_c00199{width:192.240000px;}
.wc_c00199{width:217.440000px;}
.wb_c00199{width:263.970000px;}
.w2_c00199{width:263.973000px;}
.wd_c00199{width:264.060000px;}
.w0_c00199{width:892.914000px;}
.w1_c00199{width:893.250000px;}
.x0_c00199{left:0.000000px;}
.x7_c00199{left:10.800000px;}
.x16_c00199{left:20.520000px;}
.xf_c00199{left:22.950000px;}
.x1d_c00199{left:24.300000px;}
.x26_c00199{left:28.800000px;}
.x2b_c00199{left:30.870000px;}
.x31_c00199{left:38.070000px;}
.x22_c00199{left:43.200000px;}
.x1_c00199{left:54.000000px;}
.x27_c00199{left:60.570000px;}
.x5_c00199{left:68.040000px;}
.x20_c00199{left:70.740000px;}
.x30_c00199{left:78.660000px;}
.x24_c00199{left:81.180000px;}
.x2_c00199{left:127.620000px;}
.x25_c00199{left:165.600000px;}
.x6_c00199{left:179.730000px;}
.xe_c00199{left:200.880000px;}
.x15_c00199{left:220.500000px;}
.x10_c00199{left:228.150000px;}
.x17_c00199{left:236.070000px;}
.x18_c00199{left:237.150000px;}
.x2c_c00199{left:255.510000px;}
.x1f_c00199{left:296.820000px;}
.x23_c00199{left:303.210000px;}
.x4_c00199{left:310.680000px;}
.x21_c00199{left:319.410000px;}
.x3_c00199{left:328.500000px;}
.x32_c00199{left:341.280000px;}
.x2f_c00199{left:342.360000px;}
.xd_c00199{left:355.320000px;}
.x2e_c00199{left:369.360000px;}
.x13_c00199{left:380.610000px;}
.x9_c00199{left:384.750000px;}
.x8_c00199{left:390.960000px;}
.x2a_c00199{left:392.130000px;}
.x19_c00199{left:399.870000px;}
.x29_c00199{left:410.490000px;}
.x1a_c00199{left:414.000000px;}
.xa_c00199{left:415.530000px;}
.x1b_c00199{left:419.494500px;}
.x14_c00199{left:435.510000px;}
.x2d_c00199{left:541.170000px;}
.x28_c00199{left:557.190000px;}
.x11_c00199{left:571.500000px;}
.x1c_c00199{left:579.600000px;}
.x1e_c00199{left:593.910000px;}
.x12_c00199{left:597.600000px;}
.xb_c00199{left:606.690000px;}
.xc_c00199{left:617.490000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls4_c00199{letter-spacing:-0.096000pt;}
.ls5_c00199{letter-spacing:-0.085120pt;}
.ls3_c00199{letter-spacing:0.000000pt;}
.ls6_c00199{letter-spacing:0.042560pt;}
.ls2_c00199{letter-spacing:0.048000pt;}
.ls0_c00199{letter-spacing:0.064000pt;}
.ls1_c00199{letter-spacing:0.096000pt;}
.ls7_c00199{letter-spacing:0.170240pt;}
.ws4_c00199{word-spacing:-10.944000pt;}
.ws3_c00199{word-spacing:-10.848000pt;}
.ws2_c00199{word-spacing:-10.752000pt;}
.ws1_c00199{word-spacing:-9.533440pt;}
.wsc_c00199{word-spacing:-0.384000pt;}
.wsa_c00199{word-spacing:-0.170240pt;}
.wsb_c00199{word-spacing:-0.096000pt;}
.ws9_c00199{word-spacing:-0.085120pt;}
.ws6_c00199{word-spacing:-0.064000pt;}
.ws8_c00199{word-spacing:-0.048000pt;}
.ws5_c00199{word-spacing:0.000000pt;}
.ws7_c00199{word-spacing:0.144000pt;}
.ws0_c00199{word-spacing:15.936000pt;}
._0_c00199{margin-left:-1.036800pt;}
._1_c00199{width:0.960000pt;}
._2_c00199{width:178.765440pt;}
.fs3_c00199{font-size:42.560000pt;}
.fs2_c00199{font-size:48.000000pt;}
.fs1_c00199{font-size:58.560000pt;}
.fs0_c00199{font-size:64.000000pt;}
.y2b_c00199{bottom:-11.680533pt;}
.y39_c00199{bottom:-11.677867pt;}
.y28_c00199{bottom:-11.600533pt;}
.y2e_c00199{bottom:-11.597867pt;}
.y0_c00199{bottom:0.000000pt;}
.y32_c00199{bottom:3.279467pt;}
.y36_c00199{bottom:3.280800pt;}
.y34_c00199{bottom:3.282000pt;}
.y30_c00199{bottom:3.439333pt;}
.y7_c00199{bottom:4.559467pt;}
.y2a_c00199{bottom:5.439467pt;}
.y27_c00199{bottom:5.519467pt;}
.y5_c00199{bottom:7.599333pt;}
.y25_c00199{bottom:7.599467pt;}
.y21_c00199{bottom:7.680667pt;}
.y23_c00199{bottom:7.999467pt;}
.yc_c00199{bottom:19.122133pt;}
.y10_c00199{bottom:19.919467pt;}
.y13_c00199{bottom:23.359333pt;}
.y1e_c00199{bottom:31.679333pt;}
.y16_c00199{bottom:46.802133pt;}
.y1a_c00199{bottom:49.282133pt;}
.y1_c00199{bottom:54.887600pt;}
.y3_c00199{bottom:130.119067pt;}
.y22_c00199{bottom:175.080000pt;}
.y20_c00199{bottom:212.598667pt;}
.y3b_c00199{bottom:280.920000pt;}
.y3a_c00199{bottom:317.400000pt;}
.y38_c00199{bottom:354.197333pt;}
.y37_c00199{bottom:359.639467pt;}
.y35_c00199{bottom:394.038667pt;}
.y31_c00199{bottom:394.200000pt;}
.y33_c00199{bottom:419.477333pt;}
.y2f_c00199{bottom:419.560000pt;}
.y2d_c00199{bottom:445.877333pt;}
.y2c_c00199{bottom:451.399467pt;}
.y29_c00199{bottom:467.800000pt;}
.y26_c00199{bottom:467.880000pt;}
.y24_c00199{bottom:507.000000pt;}
.y1d_c00199{bottom:583.240000pt;}
.y19_c00199{bottom:599.237333pt;}
.y1f_c00199{bottom:600.199467pt;}
.y1c_c00199{bottom:619.323333pt;}
.y15_c00199{bottom:630.677333pt;}
.y1b_c00199{bottom:633.879333pt;}
.y18_c00199{bottom:648.283333pt;}
.y17_c00199{bottom:662.839333pt;}
.y12_c00199{bottom:727.080000pt;}
.y14_c00199{bottom:735.879333pt;}
.yf_c00199{bottom:793.240000pt;}
.y11_c00199{bottom:798.599467pt;}
.ye_c00199{bottom:857.879333pt;}
.ya_c00199{bottom:935.319467pt;}
.yb_c00199{bottom:946.517333pt;}
.y9_c00199{bottom:948.679467pt;}
.yd_c00199{bottom:950.759467pt;}
.y6_c00199{bottom:960.520000pt;}
.y8_c00199{bottom:963.319467pt;}
.y4_c00199{bottom:994.200000pt;}
.y2_c00199{bottom:1061.399467pt;}
.h15_c00199{height:14.718667pt;}
.h16_c00199{height:14.720000pt;}
.h14_c00199{height:14.800000pt;}
.h7_c00199{height:16.000000pt;}
.h12_c00199{height:16.878667pt;}
.h17_c00199{height:16.880000pt;}
.h11_c00199{height:16.961333pt;}
.h13_c00199{height:16.962667pt;}
.h5_c00199{height:19.038667pt;}
.hf_c00199{height:19.121333pt;}
.h10_c00199{height:19.440000pt;}
.h8_c00199{height:29.280000pt;}
.ha_c00199{height:31.360000pt;}
.hb_c00199{height:34.800000pt;}
.h9_c00199{height:35.099531pt;}
.h6_c00199{height:39.585938pt;}
.he_c00199{height:43.120000pt;}
.h2_c00199{height:44.800000pt;}
.h3_c00199{height:48.294844pt;}
.hc_c00199{height:58.242667pt;}
.hd_c00199{height:60.720000pt;}
.h4_c00199{height:69.376000pt;}
.h0_c00199{height:1122.520000pt;}
.h1_c00199{height:1122.666667pt;}
.w10_c00199{width:70.720000pt;}
.w11_c00199{width:74.400000pt;}
.w3_c00199{width:75.360000pt;}
.wf_c00199{width:85.998667pt;}
.w4_c00199{width:97.040000pt;}
.w9_c00199{width:98.320000pt;}
.w8_c00199{width:98.640000pt;}
.w5_c00199{width:101.600000pt;}
.wa_c00199{width:108.080000pt;}
.w6_c00199{width:128.240000pt;}
.we_c00199{width:138.720000pt;}
.w7_c00199{width:159.282667pt;}
.w12_c00199{width:170.880000pt;}
.wc_c00199{width:193.280000pt;}
.wb_c00199{width:234.640000pt;}
.w2_c00199{width:234.642667pt;}
.wd_c00199{width:234.720000pt;}
.w0_c00199{width:793.701333pt;}
.w1_c00199{width:794.000000pt;}
.x0_c00199{left:0.000000pt;}
.x7_c00199{left:9.600000pt;}
.x16_c00199{left:18.240000pt;}
.xf_c00199{left:20.400000pt;}
.x1d_c00199{left:21.600000pt;}
.x26_c00199{left:25.600000pt;}
.x2b_c00199{left:27.440000pt;}
.x31_c00199{left:33.840000pt;}
.x22_c00199{left:38.400000pt;}
.x1_c00199{left:48.000000pt;}
.x27_c00199{left:53.840000pt;}
.x5_c00199{left:60.480000pt;}
.x20_c00199{left:62.880000pt;}
.x30_c00199{left:69.920000pt;}
.x24_c00199{left:72.160000pt;}
.x2_c00199{left:113.440000pt;}
.x25_c00199{left:147.200000pt;}
.x6_c00199{left:159.760000pt;}
.xe_c00199{left:178.560000pt;}
.x15_c00199{left:196.000000pt;}
.x10_c00199{left:202.800000pt;}
.x17_c00199{left:209.840000pt;}
.x18_c00199{left:210.800000pt;}
.x2c_c00199{left:227.120000pt;}
.x1f_c00199{left:263.840000pt;}
.x23_c00199{left:269.520000pt;}
.x4_c00199{left:276.160000pt;}
.x21_c00199{left:283.920000pt;}
.x3_c00199{left:292.000000pt;}
.x32_c00199{left:303.360000pt;}
.x2f_c00199{left:304.320000pt;}
.xd_c00199{left:315.840000pt;}
.x2e_c00199{left:328.320000pt;}
.x13_c00199{left:338.320000pt;}
.x9_c00199{left:342.000000pt;}
.x8_c00199{left:347.520000pt;}
.x2a_c00199{left:348.560000pt;}
.x19_c00199{left:355.440000pt;}
.x29_c00199{left:364.880000pt;}
.x1a_c00199{left:368.000000pt;}
.xa_c00199{left:369.360000pt;}
.x1b_c00199{left:372.884000pt;}
.x14_c00199{left:387.120000pt;}
.x2d_c00199{left:481.040000pt;}
.x28_c00199{left:495.280000pt;}
.x11_c00199{left:508.000000pt;}
.x1c_c00199{left:515.200000pt;}
.x1e_c00199{left:527.920000pt;}
.x12_c00199{left:531.200000pt;}
.xb_c00199{left:539.280000pt;}
.xc_c00199{left:548.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_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00200;src:url('chunks/assets/font_de23e90e18c091378f8fcb3f.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00200;src:url('chunks/assets/font_0d8bb123c97211b0d01be8ef.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00200;src:url('chunks/assets/font_d009d2bf89ce5d1ebbe2954c.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00200;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00200{font-family:ff5_c00200;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00200;src:url('chunks/assets/font_de23e90e18c091378f8fcb3f.woff2')format("woff");}.ff6_c00200{font-family:ff6_c00200;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00200;src:url('chunks/assets/font_03344200c351270ee025b170.woff2')format("woff");}.ff7_c00200{font-family:ff7_c00200;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00200;src:url('chunks/assets/font_81f8dc66b044e41578d186fe.woff2')format("woff");}.ff8_c00200{font-family:ff8_c00200;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00200;src:url('chunks/assets/font_21f90425beedcdd056d5dec8.woff2')format("woff");}.ff9_c00200{font-family:ff9_c00200;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.lsd_c00200{letter-spacing:-0.216000px;}
.ls9_c00200{letter-spacing:-0.108000px;}
.lsa_c00200{letter-spacing:-0.095760px;}
.ls8_c00200{letter-spacing:0.000000px;}
.lsb_c00200{letter-spacing:0.047880px;}
.ls2_c00200{letter-spacing:0.054000px;}
.ls0_c00200{letter-spacing:0.072000px;}
.ls1_c00200{letter-spacing:0.108000px;}
.ls3_c00200{letter-spacing:0.144000px;}
.lsc_c00200{letter-spacing:0.191520px;}
.ls5_c00200{letter-spacing:21.240000px;}
.ls7_c00200{letter-spacing:24.120000px;}
.ls6_c00200{letter-spacing:24.264000px;}
.ls4_c00200{letter-spacing:33.854400px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00200{word-spacing:-18.000000px;}
.wsa_c00200{word-spacing:-17.784000px;}
.ws4_c00200{word-spacing:-12.312000px;}
.ws3_c00200{word-spacing:-12.204000px;}
.ws2_c00200{word-spacing:-12.096000px;}
.ws1_c00200{word-spacing:-10.725120px;}
.ws11_c00200{word-spacing:-0.432000px;}
.wsf_c00200{word-spacing:-0.191520px;}
.ws13_c00200{word-spacing:-0.144000px;}
.ws12_c00200{word-spacing:-0.131760px;}
.ws10_c00200{word-spacing:-0.108000px;}
.wse_c00200{word-spacing:-0.095760px;}
.wsb_c00200{word-spacing:-0.072000px;}
.wsd_c00200{word-spacing:-0.054000px;}
.ws5_c00200{word-spacing:0.000000px;}
.wsc_c00200{word-spacing:0.162000px;}
.ws2b_c00200{word-spacing:1.368000px;}
.ws2c_c00200{word-spacing:1.440000px;}
.ws21_c00200{word-spacing:1.728000px;}
.ws22_c00200{word-spacing:2.088000px;}
.ws9_c00200{word-spacing:2.160000px;}
.ws33_c00200{word-spacing:2.448000px;}
.ws34_c00200{word-spacing:2.520000px;}
.ws1d_c00200{word-spacing:2.808000px;}
.ws24_c00200{word-spacing:3.168000px;}
.ws1c_c00200{word-spacing:3.240000px;}
.ws27_c00200{word-spacing:6.048000px;}
.ws26_c00200{word-spacing:6.120000px;}
.ws1f_c00200{word-spacing:7.128000px;}
.ws1e_c00200{word-spacing:7.200000px;}
.ws32_c00200{word-spacing:7.416000px;}
.ws30_c00200{word-spacing:7.488000px;}
.ws31_c00200{word-spacing:7.632000px;}
.ws2f_c00200{word-spacing:7.848000px;}
.ws25_c00200{word-spacing:8.136000px;}
.ws20_c00200{word-spacing:8.568000px;}
.ws17_c00200{word-spacing:9.216000px;}
.ws16_c00200{word-spacing:9.360000px;}
.ws1a_c00200{word-spacing:11.088000px;}
.ws1b_c00200{word-spacing:11.160000px;}
.ws2d_c00200{word-spacing:12.960000px;}
.ws35_c00200{word-spacing:14.328000px;}
.ws18_c00200{word-spacing:15.768000px;}
.ws19_c00200{word-spacing:15.840000px;}
.ws2e_c00200{word-spacing:16.560000px;}
.ws0_c00200{word-spacing:17.928000px;}
.ws14_c00200{word-spacing:18.000000px;}
.ws23_c00200{word-spacing:18.648000px;}
.ws15_c00200{word-spacing:20.448000px;}
.ws2a_c00200{word-spacing:21.096000px;}
.ws29_c00200{word-spacing:21.456000px;}
.ws28_c00200{word-spacing:21.600000px;}
.ws36_c00200{word-spacing:28.800000px;}
.ws8_c00200{word-spacing:32.414400px;}
.ws6_c00200{word-spacing:104.400000px;}
._0_c00200{margin-left:-1.166400px;}
._1_c00200{width:1.080000px;}
._4_c00200{width:13.032000px;}
._3_c00200{width:16.912800px;}
._5_c00200{width:47.455200px;}
._2_c00200{width:201.111120px;}
.fc1_c00200{color:transparent;}
.fc0_c00200{color:rgb(35,31,32);}
.fs3_c00200{font-size:47.880000px;}
.fs2_c00200{font-size:54.000000px;}
.fs1_c00200{font-size:65.880000px;}
.fs0_c00200{font-size:72.000000px;}
.y2b_c00200{bottom:-13.140600px;}
.y39_c00200{bottom:-13.139100px;}
.y28_c00200{bottom:-13.050600px;}
.y2e_c00200{bottom:-13.049100px;}
.y0_c00200{bottom:0.000000px;}
.y46_c00200{bottom:3.689250px;}
.y32_c00200{bottom:3.689400px;}
.y34_c00200{bottom:3.690750px;}
.y36_c00200{bottom:3.690900px;}
.y30_c00200{bottom:3.869250px;}
.y7_c00200{bottom:5.129400px;}
.y2a_c00200{bottom:6.119400px;}
.y27_c00200{bottom:6.209400px;}
.y5_c00200{bottom:8.549250px;}
.y25_c00200{bottom:8.549400px;}
.y43_c00200{bottom:8.639250px;}
.y21_c00200{bottom:8.640750px;}
.y23_c00200{bottom:8.999400px;}
.y3d_c00200{bottom:21.509400px;}
.yc_c00200{bottom:21.510900px;}
.y10_c00200{bottom:22.409400px;}
.y13_c00200{bottom:26.279250px;}
.y1e_c00200{bottom:35.639250px;}
.y3f_c00200{bottom:52.649400px;}
.y16_c00200{bottom:52.650900px;}
.y41_c00200{bottom:55.439400px;}
.y1a_c00200{bottom:55.440900px;}
.y1_c00200{bottom:61.748550px;}
.y3_c00200{bottom:146.383950px;}
.y64_c00200{bottom:177.434400px;}
.y22_c00200{bottom:196.965000px;}
.y63_c00200{bottom:208.484400px;}
.y20_c00200{bottom:239.173500px;}
.y42_c00200{bottom:239.175000px;}
.y62_c00200{bottom:239.534400px;}
.y61_c00200{bottom:270.584400px;}
.y60_c00200{bottom:301.634400px;}
.y3b_c00200{bottom:316.035000px;}
.y5f_c00200{bottom:332.684400px;}
.y3a_c00200{bottom:357.075000px;}
.y5e_c00200{bottom:363.734400px;}
.y5d_c00200{bottom:394.784400px;}
.y38_c00200{bottom:398.473500px;}
.y48_c00200{bottom:398.475000px;}
.y37_c00200{bottom:404.594400px;}
.y5c_c00200{bottom:425.834400px;}
.y35_c00200{bottom:443.293500px;}
.y47_c00200{bottom:443.295000px;}
.y31_c00200{bottom:443.475000px;}
.y5b_c00200{bottom:456.884400px;}
.y33_c00200{bottom:471.913500px;}
.y45_c00200{bottom:471.915000px;}
.y2f_c00200{bottom:472.005000px;}
.y5a_c00200{bottom:487.934400px;}
.y2d_c00200{bottom:501.613500px;}
.y44_c00200{bottom:501.615000px;}
.y2c_c00200{bottom:507.824400px;}
.y29_c00200{bottom:526.275000px;}
.y26_c00200{bottom:526.365000px;}
.y59_c00200{bottom:550.034400px;}
.y24_c00200{bottom:570.375000px;}
.y58_c00200{bottom:581.084400px;}
.y57_c00200{bottom:612.134400px;}
.y1d_c00200{bottom:656.145000px;}
.y19_c00200{bottom:674.143500px;}
.y40_c00200{bottom:674.145000px;}
.y56_c00200{bottom:674.234400px;}
.y1f_c00200{bottom:675.224400px;}
.y1c_c00200{bottom:696.738750px;}
.y55_c00200{bottom:705.284400px;}
.y15_c00200{bottom:709.513500px;}
.y3e_c00200{bottom:709.515000px;}
.y1b_c00200{bottom:713.114250px;}
.y18_c00200{bottom:729.318750px;}
.y54_c00200{bottom:736.334400px;}
.y17_c00200{bottom:745.694250px;}
.y53_c00200{bottom:767.384400px;}
.y52_c00200{bottom:798.434400px;}
.y12_c00200{bottom:817.965000px;}
.y14_c00200{bottom:827.864250px;}
.y51_c00200{bottom:829.484400px;}
.y50_c00200{bottom:860.534400px;}
.yf_c00200{bottom:892.395000px;}
.y11_c00200{bottom:898.424400px;}
.y4f_c00200{bottom:922.634400px;}
.y4e_c00200{bottom:953.684400px;}
.ye_c00200{bottom:965.114250px;}
.y4d_c00200{bottom:984.644400px;}
.y4c_c00200{bottom:1015.694400px;}
.y4b_c00200{bottom:1046.744400px;}
.ya_c00200{bottom:1052.234400px;}
.yb_c00200{bottom:1064.833500px;}
.y3c_c00200{bottom:1064.835000px;}
.y9_c00200{bottom:1067.264400px;}
.yd_c00200{bottom:1069.604400px;}
.y4a_c00200{bottom:1077.794400px;}
.y6_c00200{bottom:1080.585000px;}
.y8_c00200{bottom:1083.734400px;}
.y4_c00200{bottom:1118.475000px;}
.y49_c00200{bottom:1139.714400px;}
.y2_c00200{bottom:1194.074400px;}
.h14_c00200{height:16.558500px;}
.h15_c00200{height:16.560000px;}
.h13_c00200{height:16.650000px;}
.h7_c00200{height:18.000000px;}
.h12_c00200{height:18.988500px;}
.h16_c00200{height:18.990000px;}
.h1a_c00200{height:19.080000px;}
.h11_c00200{height:19.081500px;}
.h5_c00200{height:21.418500px;}
.h17_c00200{height:21.420000px;}
.h19_c00200{height:21.510000px;}
.hf_c00200{height:21.511500px;}
.h10_c00200{height:21.870000px;}
.h8_c00200{height:32.940000px;}
.ha_c00200{height:35.280000px;}
.hb_c00200{height:39.150000px;}
.h9_c00200{height:39.486973px;}
.h6_c00200{height:44.534180px;}
.he_c00200{height:48.510000px;}
.h2_c00200{height:50.400000px;}
.h3_c00200{height:54.331699px;}
.h18_c00200{height:65.520000px;}
.hc_c00200{height:65.521500px;}
.hd_c00200{height:68.310000px;}
.h1b_c00200{height:76.824000px;}
.h4_c00200{height:78.048000px;}
.h0_c00200{height:1262.835000px;}
.h1_c00200{height:1263.000000px;}
.w4_c00200{width:-628.404000px;}
.w6_c00200{width:-577.734000px;}
.wf_c00200{width:-571.254000px;}
.w9_c00200{width:-561.444000px;}
.w12_c00200{width:-557.844000px;}
.w11_c00200{width:-404.035500px;}
.wa_c00200{width:-382.434000px;}
.w15_c00200{width:-359.394000px;}
.w14_c00200{width:-358.314000px;}
.wd_c00200{width:-356.064000px;}
.w18_c00200{width:-333.112500px;}
.w8_c00200{width:-333.111000px;}
.wc_c00200{width:-332.124000px;}
.we_c00200{width:-325.644000px;}
.w17_c00200{width:-318.262500px;}
.w3_c00200{width:-318.261000px;}
.w13_c00200{width:-268.044000px;}
.wb_c00200{width:-191.724000px;}
.w10_c00200{width:-179.664000px;}
.w7_c00200{width:-177.144000px;}
.w5_c00200{width:-177.054000px;}
.w2_c00200{width:0.000000px;}
.w16_c00200{width:0.066000px;}
.w0_c00200{width:892.914000px;}
.w1_c00200{width:893.250000px;}
.x1_c00200{left:-838.913400px;}
.x2_c00200{left:-765.293400px;}
.x5_c00200{left:-702.383400px;}
.x1a_c00200{left:-698.513400px;}
.xb_c00200{left:-669.083400px;}
.x1b_c00200{left:-666.743400px;}
.xc_c00200{left:-664.763400px;}
.x12_c00200{left:-656.843400px;}
.x13_c00200{left:-655.763400px;}
.x11_c00200{left:-651.893400px;}
.x1f_c00200{left:-626.603550px;}
.x20_c00200{left:-613.103550px;}
.x3_c00200{left:-564.413400px;}
.xa_c00200{left:-537.593400px;}
.x19_c00200{left:-530.303400px;}
.x18_c00200{left:-525.353550px;}
.x23_c00200{left:-523.553400px;}
.x4_c00200{left:-514.193550px;}
.x24_c00200{left:-512.483400px;}
.x7_c00200{left:-508.163400px;}
.x6_c00200{left:-501.953400px;}
.xf_c00200{left:-500.513400px;}
.x1d_c00200{left:-482.423400px;}
.x15_c00200{left:-478.913400px;}
.x8_c00200{left:-477.383400px;}
.x16_c00200{left:-473.418900px;}
.x14_c00200{left:-471.893400px;}
.x1e_c00200{left:-469.913400px;}
.x10_c00200{left:-457.403400px;}
.x21_c00200{left:-341.033400px;}
.x22_c00200{left:-327.083400px;}
.x1c_c00200{left:-306.923400px;}
.xd_c00200{left:-299.003400px;}
.xe_c00200{left:-295.313400px;}
.x17_c00200{left:-289.013400px;}
.x9_c00200{left:-275.423400px;}
.x0_c00200{left:0.000000px;}
.x27_c00200{left:127.620000px;}
.x28_c00200{left:159.570000px;}
.x26_c00200{left:696.510000px;}
.x25_c00200{left:804.366150px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.lsd_c00200{letter-spacing:-0.192000pt;}
.ls9_c00200{letter-spacing:-0.096000pt;}
.lsa_c00200{letter-spacing:-0.085120pt;}
.ls8_c00200{letter-spacing:0.000000pt;}
.lsb_c00200{letter-spacing:0.042560pt;}
.ls2_c00200{letter-spacing:0.048000pt;}
.ls0_c00200{letter-spacing:0.064000pt;}
.ls1_c00200{letter-spacing:0.096000pt;}
.ls3_c00200{letter-spacing:0.128000pt;}
.lsc_c00200{letter-spacing:0.170240pt;}
.ls5_c00200{letter-spacing:18.880000pt;}
.ls7_c00200{letter-spacing:21.440000pt;}
.ls6_c00200{letter-spacing:21.568000pt;}
.ls4_c00200{letter-spacing:30.092800pt;}
.ws7_c00200{word-spacing:-16.000000pt;}
.wsa_c00200{word-spacing:-15.808000pt;}
.ws4_c00200{word-spacing:-10.944000pt;}
.ws3_c00200{word-spacing:-10.848000pt;}
.ws2_c00200{word-spacing:-10.752000pt;}
.ws1_c00200{word-spacing:-9.533440pt;}
.ws11_c00200{word-spacing:-0.384000pt;}
.wsf_c00200{word-spacing:-0.170240pt;}
.ws13_c00200{word-spacing:-0.128000pt;}
.ws12_c00200{word-spacing:-0.117120pt;}
.ws10_c00200{word-spacing:-0.096000pt;}
.wse_c00200{word-spacing:-0.085120pt;}
.wsb_c00200{word-spacing:-0.064000pt;}
.wsd_c00200{word-spacing:-0.048000pt;}
.ws5_c00200{word-spacing:0.000000pt;}
.wsc_c00200{word-spacing:0.144000pt;}
.ws2b_c00200{word-spacing:1.216000pt;}
.ws2c_c00200{word-spacing:1.280000pt;}
.ws21_c00200{word-spacing:1.536000pt;}
.ws22_c00200{word-spacing:1.856000pt;}
.ws9_c00200{word-spacing:1.920000pt;}
.ws33_c00200{word-spacing:2.176000pt;}
.ws34_c00200{word-spacing:2.240000pt;}
.ws1d_c00200{word-spacing:2.496000pt;}
.ws24_c00200{word-spacing:2.816000pt;}
.ws1c_c00200{word-spacing:2.880000pt;}
.ws27_c00200{word-spacing:5.376000pt;}
.ws26_c00200{word-spacing:5.440000pt;}
.ws1f_c00200{word-spacing:6.336000pt;}
.ws1e_c00200{word-spacing:6.400000pt;}
.ws32_c00200{word-spacing:6.592000pt;}
.ws30_c00200{word-spacing:6.656000pt;}
.ws31_c00200{word-spacing:6.784000pt;}
.ws2f_c00200{word-spacing:6.976000pt;}
.ws25_c00200{word-spacing:7.232000pt;}
.ws20_c00200{word-spacing:7.616000pt;}
.ws17_c00200{word-spacing:8.192000pt;}
.ws16_c00200{word-spacing:8.320000pt;}
.ws1a_c00200{word-spacing:9.856000pt;}
.ws1b_c00200{word-spacing:9.920000pt;}
.ws2d_c00200{word-spacing:11.520000pt;}
.ws35_c00200{word-spacing:12.736000pt;}
.ws18_c00200{word-spacing:14.016000pt;}
.ws19_c00200{word-spacing:14.080000pt;}
.ws2e_c00200{word-spacing:14.720000pt;}
.ws0_c00200{word-spacing:15.936000pt;}
.ws14_c00200{word-spacing:16.000000pt;}
.ws23_c00200{word-spacing:16.576000pt;}
.ws15_c00200{word-spacing:18.176000pt;}
.ws2a_c00200{word-spacing:18.752000pt;}
.ws29_c00200{word-spacing:19.072000pt;}
.ws28_c00200{word-spacing:19.200000pt;}
.ws36_c00200{word-spacing:25.600000pt;}
.ws8_c00200{word-spacing:28.812800pt;}
.ws6_c00200{word-spacing:92.800000pt;}
._0_c00200{margin-left:-1.036800pt;}
._1_c00200{width:0.960000pt;}
._4_c00200{width:11.584000pt;}
._3_c00200{width:15.033600pt;}
._5_c00200{width:42.182400pt;}
._2_c00200{width:178.765440pt;}
.fs3_c00200{font-size:42.560000pt;}
.fs2_c00200{font-size:48.000000pt;}
.fs1_c00200{font-size:58.560000pt;}
.fs0_c00200{font-size:64.000000pt;}
.y2b_c00200{bottom:-11.680533pt;}
.y39_c00200{bottom:-11.679200pt;}
.y28_c00200{bottom:-11.600533pt;}
.y2e_c00200{bottom:-11.599200pt;}
.y0_c00200{bottom:0.000000pt;}
.y46_c00200{bottom:3.279333pt;}
.y32_c00200{bottom:3.279467pt;}
.y34_c00200{bottom:3.280667pt;}
.y36_c00200{bottom:3.280800pt;}
.y30_c00200{bottom:3.439333pt;}
.y7_c00200{bottom:4.559467pt;}
.y2a_c00200{bottom:5.439467pt;}
.y27_c00200{bottom:5.519467pt;}
.y5_c00200{bottom:7.599333pt;}
.y25_c00200{bottom:7.599467pt;}
.y43_c00200{bottom:7.679333pt;}
.y21_c00200{bottom:7.680667pt;}
.y23_c00200{bottom:7.999467pt;}
.y3d_c00200{bottom:19.119467pt;}
.yc_c00200{bottom:19.120800pt;}
.y10_c00200{bottom:19.919467pt;}
.y13_c00200{bottom:23.359333pt;}
.y1e_c00200{bottom:31.679333pt;}
.y3f_c00200{bottom:46.799467pt;}
.y16_c00200{bottom:46.800800pt;}
.y41_c00200{bottom:49.279467pt;}
.y1a_c00200{bottom:49.280800pt;}
.y1_c00200{bottom:54.887600pt;}
.y3_c00200{bottom:130.119067pt;}
.y64_c00200{bottom:157.719467pt;}
.y22_c00200{bottom:175.080000pt;}
.y63_c00200{bottom:185.319467pt;}
.y20_c00200{bottom:212.598667pt;}
.y42_c00200{bottom:212.600000pt;}
.y62_c00200{bottom:212.919467pt;}
.y61_c00200{bottom:240.519467pt;}
.y60_c00200{bottom:268.119467pt;}
.y3b_c00200{bottom:280.920000pt;}
.y5f_c00200{bottom:295.719467pt;}
.y3a_c00200{bottom:317.400000pt;}
.y5e_c00200{bottom:323.319467pt;}
.y5d_c00200{bottom:350.919467pt;}
.y38_c00200{bottom:354.198667pt;}
.y48_c00200{bottom:354.200000pt;}
.y37_c00200{bottom:359.639467pt;}
.y5c_c00200{bottom:378.519467pt;}
.y35_c00200{bottom:394.038667pt;}
.y47_c00200{bottom:394.040000pt;}
.y31_c00200{bottom:394.200000pt;}
.y5b_c00200{bottom:406.119467pt;}
.y33_c00200{bottom:419.478667pt;}
.y45_c00200{bottom:419.480000pt;}
.y2f_c00200{bottom:419.560000pt;}
.y5a_c00200{bottom:433.719467pt;}
.y2d_c00200{bottom:445.878667pt;}
.y44_c00200{bottom:445.880000pt;}
.y2c_c00200{bottom:451.399467pt;}
.y29_c00200{bottom:467.800000pt;}
.y26_c00200{bottom:467.880000pt;}
.y59_c00200{bottom:488.919467pt;}
.y24_c00200{bottom:507.000000pt;}
.y58_c00200{bottom:516.519467pt;}
.y57_c00200{bottom:544.119467pt;}
.y1d_c00200{bottom:583.240000pt;}
.y19_c00200{bottom:599.238667pt;}
.y40_c00200{bottom:599.240000pt;}
.y56_c00200{bottom:599.319467pt;}
.y1f_c00200{bottom:600.199467pt;}
.y1c_c00200{bottom:619.323333pt;}
.y55_c00200{bottom:626.919467pt;}
.y15_c00200{bottom:630.678667pt;}
.y3e_c00200{bottom:630.680000pt;}
.y1b_c00200{bottom:633.879333pt;}
.y18_c00200{bottom:648.283333pt;}
.y54_c00200{bottom:654.519467pt;}
.y17_c00200{bottom:662.839333pt;}
.y53_c00200{bottom:682.119467pt;}
.y52_c00200{bottom:709.719467pt;}
.y12_c00200{bottom:727.080000pt;}
.y14_c00200{bottom:735.879333pt;}
.y51_c00200{bottom:737.319467pt;}
.y50_c00200{bottom:764.919467pt;}
.yf_c00200{bottom:793.240000pt;}
.y11_c00200{bottom:798.599467pt;}
.y4f_c00200{bottom:820.119467pt;}
.y4e_c00200{bottom:847.719467pt;}
.ye_c00200{bottom:857.879333pt;}
.y4d_c00200{bottom:875.239467pt;}
.y4c_c00200{bottom:902.839467pt;}
.y4b_c00200{bottom:930.439467pt;}
.ya_c00200{bottom:935.319467pt;}
.yb_c00200{bottom:946.518667pt;}
.y3c_c00200{bottom:946.520000pt;}
.y9_c00200{bottom:948.679467pt;}
.yd_c00200{bottom:950.759467pt;}
.y4a_c00200{bottom:958.039467pt;}
.y6_c00200{bottom:960.520000pt;}
.y8_c00200{bottom:963.319467pt;}
.y4_c00200{bottom:994.200000pt;}
.y49_c00200{bottom:1013.079467pt;}
.y2_c00200{bottom:1061.399467pt;}
.h14_c00200{height:14.718667pt;}
.h15_c00200{height:14.720000pt;}
.h13_c00200{height:14.800000pt;}
.h7_c00200{height:16.000000pt;}
.h12_c00200{height:16.878667pt;}
.h16_c00200{height:16.880000pt;}
.h1a_c00200{height:16.960000pt;}
.h11_c00200{height:16.961333pt;}
.h5_c00200{height:19.038667pt;}
.h17_c00200{height:19.040000pt;}
.h19_c00200{height:19.120000pt;}
.hf_c00200{height:19.121333pt;}
.h10_c00200{height:19.440000pt;}
.h8_c00200{height:29.280000pt;}
.ha_c00200{height:31.360000pt;}
.hb_c00200{height:34.800000pt;}
.h9_c00200{height:35.099531pt;}
.h6_c00200{height:39.585938pt;}
.he_c00200{height:43.120000pt;}
.h2_c00200{height:44.800000pt;}
.h3_c00200{height:48.294844pt;}
.h18_c00200{height:58.240000pt;}
.hc_c00200{height:58.241333pt;}
.hd_c00200{height:60.720000pt;}
.h1b_c00200{height:68.288000pt;}
.h4_c00200{height:69.376000pt;}
.h0_c00200{height:1122.520000pt;}
.h1_c00200{height:1122.666667pt;}
.w4_c00200{width:-558.581333pt;}
.w6_c00200{width:-513.541333pt;}
.wf_c00200{width:-507.781333pt;}
.w9_c00200{width:-499.061333pt;}
.w12_c00200{width:-495.861333pt;}
.w11_c00200{width:-359.142667pt;}
.wa_c00200{width:-339.941333pt;}
.w15_c00200{width:-319.461333pt;}
.w14_c00200{width:-318.501333pt;}
.wd_c00200{width:-316.501333pt;}
.w18_c00200{width:-296.100000pt;}
.w8_c00200{width:-296.098667pt;}
.wc_c00200{width:-295.221333pt;}
.we_c00200{width:-289.461333pt;}
.w17_c00200{width:-282.900000pt;}
.w3_c00200{width:-282.898667pt;}
.w13_c00200{width:-238.261333pt;}
.wb_c00200{width:-170.421333pt;}
.w10_c00200{width:-159.701333pt;}
.w7_c00200{width:-157.461333pt;}
.w5_c00200{width:-157.381333pt;}
.w2_c00200{width:0.000000pt;}
.w16_c00200{width:0.058667pt;}
.w0_c00200{width:793.701333pt;}
.w1_c00200{width:794.000000pt;}
.x1_c00200{left:-745.700800pt;}
.x2_c00200{left:-680.260800pt;}
.x5_c00200{left:-624.340800pt;}
.x1a_c00200{left:-620.900800pt;}
.xb_c00200{left:-594.740800pt;}
.x1b_c00200{left:-592.660800pt;}
.xc_c00200{left:-590.900800pt;}
.x12_c00200{left:-583.860800pt;}
.x13_c00200{left:-582.900800pt;}
.x11_c00200{left:-579.460800pt;}
.x1f_c00200{left:-556.980933pt;}
.x20_c00200{left:-544.980933pt;}
.x3_c00200{left:-501.700800pt;}
.xa_c00200{left:-477.860800pt;}
.x19_c00200{left:-471.380800pt;}
.x18_c00200{left:-466.980933pt;}
.x23_c00200{left:-465.380800pt;}
.x4_c00200{left:-457.060933pt;}
.x24_c00200{left:-455.540800pt;}
.x7_c00200{left:-451.700800pt;}
.x6_c00200{left:-446.180800pt;}
.xf_c00200{left:-444.900800pt;}
.x1d_c00200{left:-428.820800pt;}
.x15_c00200{left:-425.700800pt;}
.x8_c00200{left:-424.340800pt;}
.x16_c00200{left:-420.816800pt;}
.x14_c00200{left:-419.460800pt;}
.x1e_c00200{left:-417.700800pt;}
.x10_c00200{left:-406.580800pt;}
.x21_c00200{left:-303.140800pt;}
.x22_c00200{left:-290.740800pt;}
.x1c_c00200{left:-272.820800pt;}
.xd_c00200{left:-265.780800pt;}
.xe_c00200{left:-262.500800pt;}
.x17_c00200{left:-256.900800pt;}
.x9_c00200{left:-244.820800pt;}
.x0_c00200{left:0.000000pt;}
.x27_c00200{left:113.440000pt;}
.x28_c00200{left:141.840000pt;}
.x26_c00200{left:619.120000pt;}
.x25_c00200{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00201;src:url('chunks/assets/font_5e5cd55218f1d747426dc7d6.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00201;src:url('chunks/assets/font_088da2e1ec1d6e40645e82c8.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00201{letter-spacing:-0.360000px;}
.ls3_c00201{letter-spacing:-0.288000px;}
.ls4_c00201{letter-spacing:-0.216000px;}
.ls6_c00201{letter-spacing:-0.144000px;}
.ls2_c00201{letter-spacing:0.000000px;}
.ls0_c00201{letter-spacing:0.072000px;}
.ls1_c00201{letter-spacing:0.144000px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00201{word-spacing:-18.144000px;}
.ws2_c00201{word-spacing:-18.000000px;}
.ws21_c00201{word-spacing:-0.432000px;}
.wsb_c00201{word-spacing:-0.072000px;}
.ws6_c00201{word-spacing:0.000000px;}
.ws8_c00201{word-spacing:0.288000px;}
.wse_c00201{word-spacing:0.360000px;}
.ws1e_c00201{word-spacing:1.008000px;}
.ws1d_c00201{word-spacing:1.080000px;}
.wsc_c00201{word-spacing:2.520000px;}
.ws3_c00201{word-spacing:4.176000px;}
.ws1a_c00201{word-spacing:4.248000px;}
.ws1b_c00201{word-spacing:4.320000px;}
.wsf_c00201{word-spacing:5.400000px;}
.ws5_c00201{word-spacing:5.760000px;}
.ws10_c00201{word-spacing:6.048000px;}
.ws17_c00201{word-spacing:6.768000px;}
.ws9_c00201{word-spacing:7.128000px;}
.ws13_c00201{word-spacing:7.848000px;}
.wsd_c00201{word-spacing:10.080000px;}
.ws20_c00201{word-spacing:10.728000px;}
.ws1f_c00201{word-spacing:10.944000px;}
.ws15_c00201{word-spacing:12.888000px;}
.ws14_c00201{word-spacing:12.960000px;}
.wsa_c00201{word-spacing:15.408000px;}
.ws0_c00201{word-spacing:15.480000px;}
.ws12_c00201{word-spacing:15.768000px;}
.ws11_c00201{word-spacing:16.128000px;}
.ws16_c00201{word-spacing:16.200000px;}
.ws7_c00201{word-spacing:16.848000px;}
.ws18_c00201{word-spacing:23.976000px;}
.ws19_c00201{word-spacing:24.048000px;}
.ws1c_c00201{word-spacing:25.128000px;}
.ws1_c00201{word-spacing:36.000000px;}
._0_c00201{margin-left:-1.008000px;}
._1_c00201{width:1.008000px;}
.fc1_c00201{color:rgb(0,0,0);}
.fc0_c00201{color:rgb(35,31,32);}
.fs1_c00201{font-size:65.880000px;}
.fs0_c00201{font-size:72.000000px;}
.y0_c00201{bottom:0.000000px;}
.y1_c00201{bottom:61.748550px;}
.y20_c00201{bottom:146.384400px;}
.y1f_c00201{bottom:177.434400px;}
.y1e_c00201{bottom:208.484400px;}
.y1d_c00201{bottom:239.534400px;}
.y1c_c00201{bottom:270.584400px;}
.y1b_c00201{bottom:301.634400px;}
.y1a_c00201{bottom:332.684400px;}
.y19_c00201{bottom:363.734400px;}
.y18_c00201{bottom:394.784400px;}
.y17_c00201{bottom:425.834400px;}
.y16_c00201{bottom:456.884400px;}
.y15_c00201{bottom:518.984400px;}
.y14_c00201{bottom:581.084400px;}
.y13_c00201{bottom:612.134400px;}
.y12_c00201{bottom:643.184400px;}
.y11_c00201{bottom:674.234400px;}
.y10_c00201{bottom:705.284400px;}
.yf_c00201{bottom:736.334400px;}
.ye_c00201{bottom:767.384400px;}
.yd_c00201{bottom:798.434400px;}
.yc_c00201{bottom:829.484400px;}
.yb_c00201{bottom:860.534400px;}
.ya_c00201{bottom:891.584400px;}
.y9_c00201{bottom:922.634400px;}
.y8_c00201{bottom:953.684400px;}
.y7_c00201{bottom:984.644400px;}
.y6_c00201{bottom:1046.744400px;}
.y5_c00201{bottom:1077.794400px;}
.y4_c00201{bottom:1108.844400px;}
.y3_c00201{bottom:1139.894400px;}
.y2_c00201{bottom:1194.074400px;}
.h2_c00201{height:50.400000px;}
.h3_c00201{height:54.331699px;}
.h4_c00201{height:76.824000px;}
.h0_c00201{height:1262.835000px;}
.h1_c00201{height:1263.000000px;}
.w0_c00201{width:892.914000px;}
.w1_c00201{width:893.250000px;}
.x0_c00201{left:0.000000px;}
.x1_c00201{left:54.000000px;}
.x2_c00201{left:127.620000px;}
.x3_c00201{left:159.570000px;}
.x4_c00201{left:175.950000px;}
.x5_c00201{left:202.950000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls5_c00201{letter-spacing:-0.320000pt;}
.ls3_c00201{letter-spacing:-0.256000pt;}
.ls4_c00201{letter-spacing:-0.192000pt;}
.ls6_c00201{letter-spacing:-0.128000pt;}
.ls2_c00201{letter-spacing:0.000000pt;}
.ls0_c00201{letter-spacing:0.064000pt;}
.ls1_c00201{letter-spacing:0.128000pt;}
.ws4_c00201{word-spacing:-16.128000pt;}
.ws2_c00201{word-spacing:-16.000000pt;}
.ws21_c00201{word-spacing:-0.384000pt;}
.wsb_c00201{word-spacing:-0.064000pt;}
.ws6_c00201{word-spacing:0.000000pt;}
.ws8_c00201{word-spacing:0.256000pt;}
.wse_c00201{word-spacing:0.320000pt;}
.ws1e_c00201{word-spacing:0.896000pt;}
.ws1d_c00201{word-spacing:0.960000pt;}
.wsc_c00201{word-spacing:2.240000pt;}
.ws3_c00201{word-spacing:3.712000pt;}
.ws1a_c00201{word-spacing:3.776000pt;}
.ws1b_c00201{word-spacing:3.840000pt;}
.wsf_c00201{word-spacing:4.800000pt;}
.ws5_c00201{word-spacing:5.120000pt;}
.ws10_c00201{word-spacing:5.376000pt;}
.ws17_c00201{word-spacing:6.016000pt;}
.ws9_c00201{word-spacing:6.336000pt;}
.ws13_c00201{word-spacing:6.976000pt;}
.wsd_c00201{word-spacing:8.960000pt;}
.ws20_c00201{word-spacing:9.536000pt;}
.ws1f_c00201{word-spacing:9.728000pt;}
.ws15_c00201{word-spacing:11.456000pt;}
.ws14_c00201{word-spacing:11.520000pt;}
.wsa_c00201{word-spacing:13.696000pt;}
.ws0_c00201{word-spacing:13.760000pt;}
.ws12_c00201{word-spacing:14.016000pt;}
.ws11_c00201{word-spacing:14.336000pt;}
.ws16_c00201{word-spacing:14.400000pt;}
.ws7_c00201{word-spacing:14.976000pt;}
.ws18_c00201{word-spacing:21.312000pt;}
.ws19_c00201{word-spacing:21.376000pt;}
.ws1c_c00201{word-spacing:22.336000pt;}
.ws1_c00201{word-spacing:32.000000pt;}
._0_c00201{margin-left:-0.896000pt;}
._1_c00201{width:0.896000pt;}
.fs1_c00201{font-size:58.560000pt;}
.fs0_c00201{font-size:64.000000pt;}
.y0_c00201{bottom:0.000000pt;}
.y1_c00201{bottom:54.887600pt;}
.y20_c00201{bottom:130.119467pt;}
.y1f_c00201{bottom:157.719467pt;}
.y1e_c00201{bottom:185.319467pt;}
.y1d_c00201{bottom:212.919467pt;}
.y1c_c00201{bottom:240.519467pt;}
.y1b_c00201{bottom:268.119467pt;}
.y1a_c00201{bottom:295.719467pt;}
.y19_c00201{bottom:323.319467pt;}
.y18_c00201{bottom:350.919467pt;}
.y17_c00201{bottom:378.519467pt;}
.y16_c00201{bottom:406.119467pt;}
.y15_c00201{bottom:461.319467pt;}
.y14_c00201{bottom:516.519467pt;}
.y13_c00201{bottom:544.119467pt;}
.y12_c00201{bottom:571.719467pt;}
.y11_c00201{bottom:599.319467pt;}
.y10_c00201{bottom:626.919467pt;}
.yf_c00201{bottom:654.519467pt;}
.ye_c00201{bottom:682.119467pt;}
.yd_c00201{bottom:709.719467pt;}
.yc_c00201{bottom:737.319467pt;}
.yb_c00201{bottom:764.919467pt;}
.ya_c00201{bottom:792.519467pt;}
.y9_c00201{bottom:820.119467pt;}
.y8_c00201{bottom:847.719467pt;}
.y7_c00201{bottom:875.239467pt;}
.y6_c00201{bottom:930.439467pt;}
.y5_c00201{bottom:958.039467pt;}
.y4_c00201{bottom:985.639467pt;}
.y3_c00201{bottom:1013.239467pt;}
.y2_c00201{bottom:1061.399467pt;}
.h2_c00201{height:44.800000pt;}
.h3_c00201{height:48.294844pt;}
.h4_c00201{height:68.288000pt;}
.h0_c00201{height:1122.520000pt;}
.h1_c00201{height:1122.666667pt;}
.w0_c00201{width:793.701333pt;}
.w1_c00201{width:794.000000pt;}
.x0_c00201{left:0.000000pt;}
.x1_c00201{left:48.000000pt;}
.x2_c00201{left:113.440000pt;}
.x3_c00201{left:141.840000pt;}
.x4_c00201{left:156.400000pt;}
.x5_c00201{left:180.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00202;src:url('chunks/assets/font_04a5291fc33a39bb0cd3848a.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00202;src:url('chunks/assets/font_aaf8d597938ddee5adc1f703.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00202;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00202;src:url('chunks/assets/font_7d2d087ef68bc57e9dd65a69.woff2')format("woff");}.ff5_c00202{font-family:ff5_c00202;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00202;src:url('chunks/assets/font_91fb22619e67074b43a301aa.woff2')format("woff");}.ff6_c00202{font-family:ff6_c00202;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00202;src:url('chunks/assets/font_1db488b5522d81b1671303bf.woff2')format("woff");}.ff7_c00202{font-family:ff7_c00202;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1_c00202{vertical-align:41.400000px;}
.lsa_c00202{letter-spacing:-0.360000px;}
.ls8_c00202{letter-spacing:-0.288000px;}
.ls9_c00202{letter-spacing:-0.216000px;}
.lsb_c00202{letter-spacing:-0.144000px;}
.lse_c00202{letter-spacing:-0.072000px;}
.lsd_c00202{letter-spacing:-0.065880px;}
.ls7_c00202{letter-spacing:0.000000px;}
.lsc_c00202{letter-spacing:0.065880px;}
.ls0_c00202{letter-spacing:0.072000px;}
.ls1_c00202{letter-spacing:0.144000px;}
.ls2_c00202{letter-spacing:17.985600px;}
.ls6_c00202{letter-spacing:18.014400px;}
.ls5_c00202{letter-spacing:18.144000px;}
.ls4_c00202{letter-spacing:211.320000px;}
.ls3_c00202{letter-spacing:328.320000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00202{word-spacing:-18.144000px;}
.ws6_c00202{word-spacing:-18.072000px;}
.ws2_c00202{word-spacing:-18.000000px;}
.wsa_c00202{word-spacing:-17.784000px;}
.ws7_c00202{word-spacing:-16.470000px;}
.ws8_c00202{word-spacing:-16.404120px;}
.ws27_c00202{word-spacing:-0.432000px;}
.ws2a_c00202{word-spacing:-0.144000px;}
.ws28_c00202{word-spacing:-0.131760px;}
.ws11_c00202{word-spacing:-0.072000px;}
.wsc_c00202{word-spacing:0.000000px;}
.wsb_c00202{word-spacing:0.072000px;}
.ws29_c00202{word-spacing:0.144000px;}
.wse_c00202{word-spacing:0.288000px;}
.ws14_c00202{word-spacing:0.360000px;}
.ws2b_c00202{word-spacing:0.936000px;}
.ws24_c00202{word-spacing:1.008000px;}
.ws23_c00202{word-spacing:1.080000px;}
.ws2d_c00202{word-spacing:2.160000px;}
.ws12_c00202{word-spacing:2.520000px;}
.ws3_c00202{word-spacing:4.176000px;}
.ws20_c00202{word-spacing:4.248000px;}
.ws21_c00202{word-spacing:4.320000px;}
.ws2c_c00202{word-spacing:4.680000px;}
.ws15_c00202{word-spacing:5.400000px;}
.ws5_c00202{word-spacing:5.760000px;}
.ws16_c00202{word-spacing:6.048000px;}
.ws1d_c00202{word-spacing:6.768000px;}
.wsf_c00202{word-spacing:7.128000px;}
.ws19_c00202{word-spacing:7.848000px;}
.ws13_c00202{word-spacing:10.080000px;}
.ws26_c00202{word-spacing:10.728000px;}
.ws25_c00202{word-spacing:10.944000px;}
.ws1b_c00202{word-spacing:12.888000px;}
.ws1a_c00202{word-spacing:12.960000px;}
.ws10_c00202{word-spacing:15.408000px;}
.ws0_c00202{word-spacing:15.480000px;}
.ws18_c00202{word-spacing:15.768000px;}
.ws17_c00202{word-spacing:16.128000px;}
.ws1c_c00202{word-spacing:16.200000px;}
.wsd_c00202{word-spacing:16.848000px;}
.ws1e_c00202{word-spacing:23.976000px;}
.ws1f_c00202{word-spacing:24.048000px;}
.ws22_c00202{word-spacing:25.128000px;}
.ws1_c00202{word-spacing:36.000000px;}
.ws9_c00202{word-spacing:416.808000px;}
._0_c00202{margin-left:-1.008000px;}
._1_c00202{width:1.008000px;}
._3_c00202{width:360.000000px;}
._2_c00202{width:427.104000px;}
.fc2_c00202{color:transparent;}
.fc1_c00202{color:rgb(0,0,0);}
.fc0_c00202{color:rgb(35,31,32);}
.fs1_c00202{font-size:65.880000px;}
.fs0_c00202{font-size:72.000000px;}
.y0_c00202{bottom:0.000000px;}
.y23_c00202{bottom:3.779250px;}
.y49_c00202{bottom:4.049250px;}
.y43_c00202{bottom:4.139250px;}
.y28_c00202{bottom:4.139400px;}
.y25_c00202{bottom:4.140900px;}
.y2b_c00202{bottom:4.142250px;}
.y3e_c00202{bottom:4.142400px;}
.y48_c00202{bottom:24.749400px;}
.y2e_c00202{bottom:24.839250px;}
.y27_c00202{bottom:24.839400px;}
.y3d_c00202{bottom:24.842250px;}
.y34_c00202{bottom:24.842400px;}
.y1_c00202{bottom:61.748550px;}
.y52_c00202{bottom:125.144400px;}
.y20_c00202{bottom:146.384400px;}
.y51_c00202{bottom:156.194400px;}
.y1f_c00202{bottom:177.434400px;}
.y1e_c00202{bottom:208.484400px;}
.y50_c00202{bottom:218.204400px;}
.y1d_c00202{bottom:239.534400px;}
.y1c_c00202{bottom:270.584400px;}
.y4f_c00202{bottom:280.394400px;}
.y1b_c00202{bottom:301.634400px;}
.y4e_c00202{bottom:311.444400px;}
.y1a_c00202{bottom:332.684400px;}
.y4d_c00202{bottom:342.494400px;}
.y19_c00202{bottom:363.734400px;}
.y4c_c00202{bottom:390.912000px;}
.y18_c00202{bottom:394.784400px;}
.y4b_c00202{bottom:405.404400px;}
.y17_c00202{bottom:425.834400px;}
.y47_c00202{bottom:432.315000px;}
.y4a_c00202{bottom:446.714400px;}
.y16_c00202{bottom:456.884400px;}
.y46_c00202{bottom:473.625000px;}
.y45_c00202{bottom:494.322000px;}
.y44_c00202{bottom:515.025000px;}
.y15_c00202{bottom:518.984400px;}
.y42_c00202{bottom:535.725000px;}
.y41_c00202{bottom:556.422000px;}
.y40_c00202{bottom:577.125000px;}
.y14_c00202{bottom:581.084400px;}
.y3f_c00202{bottom:597.825000px;}
.y13_c00202{bottom:612.134400px;}
.y3c_c00202{bottom:618.522000px;}
.y3b_c00202{bottom:633.014400px;}
.y12_c00202{bottom:643.184400px;}
.y39_c00202{bottom:659.925000px;}
.y3a_c00202{bottom:664.064400px;}
.y11_c00202{bottom:674.234400px;}
.y38_c00202{bottom:674.414400px;}
.y36_c00202{bottom:701.325000px;}
.y10_c00202{bottom:705.284400px;}
.y37_c00202{bottom:715.814400px;}
.yf_c00202{bottom:736.334400px;}
.y33_c00202{bottom:742.722000px;}
.y32_c00202{bottom:757.214250px;}
.y35_c00202{bottom:757.214400px;}
.ye_c00202{bottom:767.384400px;}
.y30_c00202{bottom:784.125000px;}
.yd_c00202{bottom:798.434400px;}
.y31_c00202{bottom:798.614250px;}
.y2f_c00202{bottom:798.614400px;}
.y2d_c00202{bottom:825.525000px;}
.yc_c00202{bottom:829.484400px;}
.y2c_c00202{bottom:840.014400px;}
.yb_c00202{bottom:860.534400px;}
.y2a_c00202{bottom:866.922000px;}
.y26_c00202{bottom:887.625000px;}
.ya_c00202{bottom:891.584400px;}
.y29_c00202{bottom:902.114250px;}
.y9_c00202{bottom:922.634400px;}
.y24_c00202{bottom:929.023500px;}
.y22_c00202{bottom:950.445000px;}
.y8_c00202{bottom:953.684400px;}
.y7_c00202{bottom:984.644400px;}
.y21_c00202{bottom:1015.604400px;}
.y6_c00202{bottom:1046.744400px;}
.y5_c00202{bottom:1077.794400px;}
.y4_c00202{bottom:1108.844400px;}
.y3_c00202{bottom:1139.894400px;}
.y2_c00202{bottom:1194.074400px;}
.h6_c00202{height:18.988500px;}
.hd_c00202{height:20.700000px;}
.h8_c00202{height:20.701500px;}
.ha_c00202{height:20.703000px;}
.he_c00202{height:41.310000px;}
.h9_c00202{height:41.398500px;}
.hb_c00202{height:41.400000px;}
.h2_c00202{height:50.400000px;}
.h3_c00202{height:54.331699px;}
.h7_c00202{height:70.293960px;}
.h4_c00202{height:76.824000px;}
.h5_c00202{height:78.048000px;}
.hc_c00202{height:118.224000px;}
.h0_c00202{height:1262.835000px;}
.h1_c00202{height:1263.000000px;}
.w2_c00202{width:0.000000px;}
.w3_c00202{width:0.066000px;}
.w6_c00202{width:85.050000px;}
.w7_c00202{width:167.488500px;}
.w5_c00202{width:197.730000px;}
.w4_c00202{width:203.670000px;}
.w0_c00202{width:892.914000px;}
.w1_c00202{width:893.250000px;}
.x1_c00202{left:-838.913400px;}
.x2_c00202{left:-765.293400px;}
.x3_c00202{left:-733.343400px;}
.x4_c00202{left:-716.963400px;}
.x5_c00202{left:-689.963400px;}
.x0_c00202{left:0.000000px;}
.xb_c00202{left:8.100000px;}
.x1d_c00202{left:13.140000px;}
.xf_c00202{left:15.030000px;}
.x18_c00202{left:26.640000px;}
.x14_c00202{left:32.040000px;}
.x1f_c00202{left:34.470000px;}
.x13_c00202{left:37.980000px;}
.x17_c00202{left:39.960000px;}
.x16_c00202{left:49.680000px;}
.xd_c00202{left:55.350000px;}
.x11_c00202{left:60.840000px;}
.x1e_c00202{left:66.420000px;}
.x20_c00202{left:68.940000px;}
.x19_c00202{left:70.920000px;}
.x12_c00202{left:73.350000px;}
.x1c_c00202{left:78.390000px;}
.xa_c00202{left:119.520000px;}
.x9_c00202{left:127.620000px;}
.x8_c00202{left:148.950000px;}
.x21_c00202{left:159.570000px;}
.xc_c00202{left:323.190000px;}
.x1b_c00202{left:394.110000px;}
.x15_c00202{left:396.540000px;}
.xe_c00202{left:520.920000px;}
.x1a_c00202{left:558.900000px;}
.x10_c00202{left:605.970000px;}
.x7_c00202{left:696.510000px;}
.x6_c00202{left:804.366150px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.v1_c00202{vertical-align:36.800000pt;}
.lsa_c00202{letter-spacing:-0.320000pt;}
.ls8_c00202{letter-spacing:-0.256000pt;}
.ls9_c00202{letter-spacing:-0.192000pt;}
.lsb_c00202{letter-spacing:-0.128000pt;}
.lse_c00202{letter-spacing:-0.064000pt;}
.lsd_c00202{letter-spacing:-0.058560pt;}
.ls7_c00202{letter-spacing:0.000000pt;}
.lsc_c00202{letter-spacing:0.058560pt;}
.ls0_c00202{letter-spacing:0.064000pt;}
.ls1_c00202{letter-spacing:0.128000pt;}
.ls2_c00202{letter-spacing:15.987200pt;}
.ls6_c00202{letter-spacing:16.012800pt;}
.ls5_c00202{letter-spacing:16.128000pt;}
.ls4_c00202{letter-spacing:187.840000pt;}
.ls3_c00202{letter-spacing:291.840000pt;}
.ws4_c00202{word-spacing:-16.128000pt;}
.ws6_c00202{word-spacing:-16.064000pt;}
.ws2_c00202{word-spacing:-16.000000pt;}
.wsa_c00202{word-spacing:-15.808000pt;}
.ws7_c00202{word-spacing:-14.640000pt;}
.ws8_c00202{word-spacing:-14.581440pt;}
.ws27_c00202{word-spacing:-0.384000pt;}
.ws2a_c00202{word-spacing:-0.128000pt;}
.ws28_c00202{word-spacing:-0.117120pt;}
.ws11_c00202{word-spacing:-0.064000pt;}
.wsc_c00202{word-spacing:0.000000pt;}
.wsb_c00202{word-spacing:0.064000pt;}
.ws29_c00202{word-spacing:0.128000pt;}
.wse_c00202{word-spacing:0.256000pt;}
.ws14_c00202{word-spacing:0.320000pt;}
.ws2b_c00202{word-spacing:0.832000pt;}
.ws24_c00202{word-spacing:0.896000pt;}
.ws23_c00202{word-spacing:0.960000pt;}
.ws2d_c00202{word-spacing:1.920000pt;}
.ws12_c00202{word-spacing:2.240000pt;}
.ws3_c00202{word-spacing:3.712000pt;}
.ws20_c00202{word-spacing:3.776000pt;}
.ws21_c00202{word-spacing:3.840000pt;}
.ws2c_c00202{word-spacing:4.160000pt;}
.ws15_c00202{word-spacing:4.800000pt;}
.ws5_c00202{word-spacing:5.120000pt;}
.ws16_c00202{word-spacing:5.376000pt;}
.ws1d_c00202{word-spacing:6.016000pt;}
.wsf_c00202{word-spacing:6.336000pt;}
.ws19_c00202{word-spacing:6.976000pt;}
.ws13_c00202{word-spacing:8.960000pt;}
.ws26_c00202{word-spacing:9.536000pt;}
.ws25_c00202{word-spacing:9.728000pt;}
.ws1b_c00202{word-spacing:11.456000pt;}
.ws1a_c00202{word-spacing:11.520000pt;}
.ws10_c00202{word-spacing:13.696000pt;}
.ws0_c00202{word-spacing:13.760000pt;}
.ws18_c00202{word-spacing:14.016000pt;}
.ws17_c00202{word-spacing:14.336000pt;}
.ws1c_c00202{word-spacing:14.400000pt;}
.wsd_c00202{word-spacing:14.976000pt;}
.ws1e_c00202{word-spacing:21.312000pt;}
.ws1f_c00202{word-spacing:21.376000pt;}
.ws22_c00202{word-spacing:22.336000pt;}
.ws1_c00202{word-spacing:32.000000pt;}
.ws9_c00202{word-spacing:370.496000pt;}
._0_c00202{margin-left:-0.896000pt;}
._1_c00202{width:0.896000pt;}
._3_c00202{width:320.000000pt;}
._2_c00202{width:379.648000pt;}
.fs1_c00202{font-size:58.560000pt;}
.fs0_c00202{font-size:64.000000pt;}
.y0_c00202{bottom:0.000000pt;}
.y23_c00202{bottom:3.359333pt;}
.y49_c00202{bottom:3.599333pt;}
.y43_c00202{bottom:3.679333pt;}
.y28_c00202{bottom:3.679467pt;}
.y25_c00202{bottom:3.680800pt;}
.y2b_c00202{bottom:3.682000pt;}
.y3e_c00202{bottom:3.682133pt;}
.y48_c00202{bottom:21.999467pt;}
.y2e_c00202{bottom:22.079333pt;}
.y27_c00202{bottom:22.079467pt;}
.y3d_c00202{bottom:22.082000pt;}
.y34_c00202{bottom:22.082133pt;}
.y1_c00202{bottom:54.887600pt;}
.y52_c00202{bottom:111.239467pt;}
.y20_c00202{bottom:130.119467pt;}
.y51_c00202{bottom:138.839467pt;}
.y1f_c00202{bottom:157.719467pt;}
.y1e_c00202{bottom:185.319467pt;}
.y50_c00202{bottom:193.959467pt;}
.y1d_c00202{bottom:212.919467pt;}
.y1c_c00202{bottom:240.519467pt;}
.y4f_c00202{bottom:249.239467pt;}
.y1b_c00202{bottom:268.119467pt;}
.y4e_c00202{bottom:276.839467pt;}
.y1a_c00202{bottom:295.719467pt;}
.y4d_c00202{bottom:304.439467pt;}
.y19_c00202{bottom:323.319467pt;}
.y4c_c00202{bottom:347.477333pt;}
.y18_c00202{bottom:350.919467pt;}
.y4b_c00202{bottom:360.359467pt;}
.y17_c00202{bottom:378.519467pt;}
.y47_c00202{bottom:384.280000pt;}
.y4a_c00202{bottom:397.079467pt;}
.y16_c00202{bottom:406.119467pt;}
.y46_c00202{bottom:421.000000pt;}
.y45_c00202{bottom:439.397333pt;}
.y44_c00202{bottom:457.800000pt;}
.y15_c00202{bottom:461.319467pt;}
.y42_c00202{bottom:476.200000pt;}
.y41_c00202{bottom:494.597333pt;}
.y40_c00202{bottom:513.000000pt;}
.y14_c00202{bottom:516.519467pt;}
.y3f_c00202{bottom:531.400000pt;}
.y13_c00202{bottom:544.119467pt;}
.y3c_c00202{bottom:549.797333pt;}
.y3b_c00202{bottom:562.679467pt;}
.y12_c00202{bottom:571.719467pt;}
.y39_c00202{bottom:586.600000pt;}
.y3a_c00202{bottom:590.279467pt;}
.y11_c00202{bottom:599.319467pt;}
.y38_c00202{bottom:599.479467pt;}
.y36_c00202{bottom:623.400000pt;}
.y10_c00202{bottom:626.919467pt;}
.y37_c00202{bottom:636.279467pt;}
.yf_c00202{bottom:654.519467pt;}
.y33_c00202{bottom:660.197333pt;}
.y32_c00202{bottom:673.079333pt;}
.y35_c00202{bottom:673.079467pt;}
.ye_c00202{bottom:682.119467pt;}
.y30_c00202{bottom:697.000000pt;}
.yd_c00202{bottom:709.719467pt;}
.y31_c00202{bottom:709.879333pt;}
.y2f_c00202{bottom:709.879467pt;}
.y2d_c00202{bottom:733.800000pt;}
.yc_c00202{bottom:737.319467pt;}
.y2c_c00202{bottom:746.679467pt;}
.yb_c00202{bottom:764.919467pt;}
.y2a_c00202{bottom:770.597333pt;}
.y26_c00202{bottom:789.000000pt;}
.ya_c00202{bottom:792.519467pt;}
.y29_c00202{bottom:801.879333pt;}
.y9_c00202{bottom:820.119467pt;}
.y24_c00202{bottom:825.798667pt;}
.y22_c00202{bottom:844.840000pt;}
.y8_c00202{bottom:847.719467pt;}
.y7_c00202{bottom:875.239467pt;}
.y21_c00202{bottom:902.759467pt;}
.y6_c00202{bottom:930.439467pt;}
.y5_c00202{bottom:958.039467pt;}
.y4_c00202{bottom:985.639467pt;}
.y3_c00202{bottom:1013.239467pt;}
.y2_c00202{bottom:1061.399467pt;}
.h6_c00202{height:16.878667pt;}
.hd_c00202{height:18.400000pt;}
.h8_c00202{height:18.401333pt;}
.ha_c00202{height:18.402667pt;}
.he_c00202{height:36.720000pt;}
.h9_c00202{height:36.798667pt;}
.hb_c00202{height:36.800000pt;}
.h2_c00202{height:44.800000pt;}
.h3_c00202{height:48.294844pt;}
.h7_c00202{height:62.483520pt;}
.h4_c00202{height:68.288000pt;}
.h5_c00202{height:69.376000pt;}
.hc_c00202{height:105.088000pt;}
.h0_c00202{height:1122.520000pt;}
.h1_c00202{height:1122.666667pt;}
.w2_c00202{width:0.000000pt;}
.w3_c00202{width:0.058667pt;}
.w6_c00202{width:75.600000pt;}
.w7_c00202{width:148.878667pt;}
.w5_c00202{width:175.760000pt;}
.w4_c00202{width:181.040000pt;}
.w0_c00202{width:793.701333pt;}
.w1_c00202{width:794.000000pt;}
.x1_c00202{left:-745.700800pt;}
.x2_c00202{left:-680.260800pt;}
.x3_c00202{left:-651.860800pt;}
.x4_c00202{left:-637.300800pt;}
.x5_c00202{left:-613.300800pt;}
.x0_c00202{left:0.000000pt;}
.xb_c00202{left:7.200000pt;}
.x1d_c00202{left:11.680000pt;}
.xf_c00202{left:13.360000pt;}
.x18_c00202{left:23.680000pt;}
.x14_c00202{left:28.480000pt;}
.x1f_c00202{left:30.640000pt;}
.x13_c00202{left:33.760000pt;}
.x17_c00202{left:35.520000pt;}
.x16_c00202{left:44.160000pt;}
.xd_c00202{left:49.200000pt;}
.x11_c00202{left:54.080000pt;}
.x1e_c00202{left:59.040000pt;}
.x20_c00202{left:61.280000pt;}
.x19_c00202{left:63.040000pt;}
.x12_c00202{left:65.200000pt;}
.x1c_c00202{left:69.680000pt;}
.xa_c00202{left:106.240000pt;}
.x9_c00202{left:113.440000pt;}
.x8_c00202{left:132.400000pt;}
.x21_c00202{left:141.840000pt;}
.xc_c00202{left:287.280000pt;}
.x1b_c00202{left:350.320000pt;}
.x15_c00202{left:352.480000pt;}
.xe_c00202{left:463.040000pt;}
.x1a_c00202{left:496.800000pt;}
.x10_c00202{left:538.640000pt;}
.x7_c00202{left:619.120000pt;}
.x6_c00202{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00203;src:url('chunks/assets/font_fea6aef20904bb04f8c1f923.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00203;src:url('chunks/assets/font_c9ba75d563a2ec0eee40746d.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00203;src:url('chunks/assets/font_ca26e07a97060dd29e48c36d.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls8_c00203{letter-spacing:-0.288000px;}
.ls7_c00203{letter-spacing:-0.072000px;}
.ls6_c00203{letter-spacing:0.000000px;}
.ls0_c00203{letter-spacing:0.072000px;}
.ls2_c00203{letter-spacing:0.144000px;}
.ls4_c00203{letter-spacing:18.504000px;}
.ls1_c00203{letter-spacing:19.584000px;}
.ls3_c00203{letter-spacing:20.880000px;}
.ls5_c00203{letter-spacing:54.720000px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00203{word-spacing:-18.144000px;}
.ws1_c00203{word-spacing:-18.072000px;}
.ws3_c00203{word-spacing:-18.000000px;}
.ws10_c00203{word-spacing:-0.504000px;}
.wse_c00203{word-spacing:-0.144000px;}
.ws2_c00203{word-spacing:-0.072000px;}
.ws5_c00203{word-spacing:0.000000px;}
.wsc_c00203{word-spacing:0.072000px;}
.wsd_c00203{word-spacing:0.288000px;}
.ws6_c00203{word-spacing:1.368000px;}
.ws7_c00203{word-spacing:2.160000px;}
.wsa_c00203{word-spacing:2.808000px;}
.ws9_c00203{word-spacing:2.880000px;}
.wsb_c00203{word-spacing:3.168000px;}
.ws8_c00203{word-spacing:3.240000px;}
.ws14_c00203{word-spacing:3.528000px;}
.ws15_c00203{word-spacing:3.816000px;}
.ws16_c00203{word-spacing:3.888000px;}
.ws13_c00203{word-spacing:4.608000px;}
.ws12_c00203{word-spacing:8.208000px;}
.ws19_c00203{word-spacing:8.280000px;}
.wsf_c00203{word-spacing:9.360000px;}
.ws1b_c00203{word-spacing:10.728000px;}
.ws1a_c00203{word-spacing:10.800000px;}
.ws11_c00203{word-spacing:16.488000px;}
.ws4_c00203{word-spacing:25.920000px;}
.ws17_c00203{word-spacing:28.440000px;}
.ws18_c00203{word-spacing:28.800000px;}
._0_c00203{margin-left:-1.008000px;}
._1_c00203{width:1.008000px;}
.fc1_c00203{color:rgb(0,0,0);}
.fc0_c00203{color:rgb(35,31,32);}
.fs1_c00203{font-size:65.880000px;}
.fs0_c00203{font-size:72.000000px;}
.y0_c00203{bottom:0.000000px;}
.y1_c00203{bottom:61.748550px;}
.y12_c00203{bottom:229.184400px;}
.y11_c00203{bottom:260.234400px;}
.y10_c00203{bottom:291.284400px;}
.yf_c00203{bottom:322.334400px;}
.ye_c00203{bottom:353.384400px;}
.yd_c00203{bottom:384.434400px;}
.yc_c00203{bottom:415.484400px;}
.yb_c00203{bottom:446.534400px;}
.ya_c00203{bottom:508.634400px;}
.y9_c00203{bottom:922.634400px;}
.y8_c00203{bottom:953.684400px;}
.y7_c00203{bottom:984.644400px;}
.y6_c00203{bottom:1046.744400px;}
.y5_c00203{bottom:1077.794400px;}
.y4_c00203{bottom:1108.844400px;}
.y3_c00203{bottom:1139.894400px;}
.y2_c00203{bottom:1194.074400px;}
.h2_c00203{height:50.400000px;}
.h3_c00203{height:54.331699px;}
.h4_c00203{height:76.824000px;}
.h5_c00203{height:78.048000px;}
.h0_c00203{height:1262.835000px;}
.h1_c00203{height:1263.000000px;}
.w0_c00203{width:892.914000px;}
.w1_c00203{width:893.250000px;}
.x0_c00203{left:0.000000px;}
.x1_c00203{left:54.000000px;}
.x2_c00203{left:127.620000px;}
.x3_c00203{left:159.570000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls8_c00203{letter-spacing:-0.256000pt;}
.ls7_c00203{letter-spacing:-0.064000pt;}
.ls6_c00203{letter-spacing:0.000000pt;}
.ls0_c00203{letter-spacing:0.064000pt;}
.ls2_c00203{letter-spacing:0.128000pt;}
.ls4_c00203{letter-spacing:16.448000pt;}
.ls1_c00203{letter-spacing:17.408000pt;}
.ls3_c00203{letter-spacing:18.560000pt;}
.ls5_c00203{letter-spacing:48.640000pt;}
.ws0_c00203{word-spacing:-16.128000pt;}
.ws1_c00203{word-spacing:-16.064000pt;}
.ws3_c00203{word-spacing:-16.000000pt;}
.ws10_c00203{word-spacing:-0.448000pt;}
.wse_c00203{word-spacing:-0.128000pt;}
.ws2_c00203{word-spacing:-0.064000pt;}
.ws5_c00203{word-spacing:0.000000pt;}
.wsc_c00203{word-spacing:0.064000pt;}
.wsd_c00203{word-spacing:0.256000pt;}
.ws6_c00203{word-spacing:1.216000pt;}
.ws7_c00203{word-spacing:1.920000pt;}
.wsa_c00203{word-spacing:2.496000pt;}
.ws9_c00203{word-spacing:2.560000pt;}
.wsb_c00203{word-spacing:2.816000pt;}
.ws8_c00203{word-spacing:2.880000pt;}
.ws14_c00203{word-spacing:3.136000pt;}
.ws15_c00203{word-spacing:3.392000pt;}
.ws16_c00203{word-spacing:3.456000pt;}
.ws13_c00203{word-spacing:4.096000pt;}
.ws12_c00203{word-spacing:7.296000pt;}
.ws19_c00203{word-spacing:7.360000pt;}
.wsf_c00203{word-spacing:8.320000pt;}
.ws1b_c00203{word-spacing:9.536000pt;}
.ws1a_c00203{word-spacing:9.600000pt;}
.ws11_c00203{word-spacing:14.656000pt;}
.ws4_c00203{word-spacing:23.040000pt;}
.ws17_c00203{word-spacing:25.280000pt;}
.ws18_c00203{word-spacing:25.600000pt;}
._0_c00203{margin-left:-0.896000pt;}
._1_c00203{width:0.896000pt;}
.fs1_c00203{font-size:58.560000pt;}
.fs0_c00203{font-size:64.000000pt;}
.y0_c00203{bottom:0.000000pt;}
.y1_c00203{bottom:54.887600pt;}
.y12_c00203{bottom:203.719467pt;}
.y11_c00203{bottom:231.319467pt;}
.y10_c00203{bottom:258.919467pt;}
.yf_c00203{bottom:286.519467pt;}
.ye_c00203{bottom:314.119467pt;}
.yd_c00203{bottom:341.719467pt;}
.yc_c00203{bottom:369.319467pt;}
.yb_c00203{bottom:396.919467pt;}
.ya_c00203{bottom:452.119467pt;}
.y9_c00203{bottom:820.119467pt;}
.y8_c00203{bottom:847.719467pt;}
.y7_c00203{bottom:875.239467pt;}
.y6_c00203{bottom:930.439467pt;}
.y5_c00203{bottom:958.039467pt;}
.y4_c00203{bottom:985.639467pt;}
.y3_c00203{bottom:1013.239467pt;}
.y2_c00203{bottom:1061.399467pt;}
.h2_c00203{height:44.800000pt;}
.h3_c00203{height:48.294844pt;}
.h4_c00203{height:68.288000pt;}
.h5_c00203{height:69.376000pt;}
.h0_c00203{height:1122.520000pt;}
.h1_c00203{height:1122.666667pt;}
.w0_c00203{width:793.701333pt;}
.w1_c00203{width:794.000000pt;}
.x0_c00203{left:0.000000pt;}
.x1_c00203{left:48.000000pt;}
.x2_c00203{left:113.440000pt;}
.x3_c00203{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00204;src:url('chunks/assets/font_e0aa737cf101f8ab004ca144.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00204;src:url('chunks/assets/font_9f71445bc017a2d41e634b2f.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:1.575000;font-style:normal;font-weight:normal;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_caec545625f0fbbfbb14dedf.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00204;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00204{font-family:ff5_c00204;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00204;src:url('chunks/assets/font_5ee33b50a2e3deca0580b15e.woff2')format("woff");}.ff6_c00204{font-family:ff6_c00204;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00204;src:url('chunks/assets/font_5254cdff86f24f3bf2e0f29a.woff2')format("woff");}.ff7_c00204{font-family:ff7_c00204;line-height:1.575000;font-style:normal;font-weight:normal;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_0fe71838f401ba67176d1b75.woff2')format("woff");}.ff8_c00204{font-family:ff8_c00204;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.lsc_c00204{letter-spacing:-0.527040px;}
.lsb_c00204{letter-spacing:-0.288000px;}
.lsa_c00204{letter-spacing:-0.072000px;}
.lsd_c00204{letter-spacing:-0.065880px;}
.ls9_c00204{letter-spacing:0.000000px;}
.ls8_c00204{letter-spacing:0.065880px;}
.ls0_c00204{letter-spacing:0.072000px;}
.ls2_c00204{letter-spacing:0.144000px;}
.ls6_c00204{letter-spacing:0.197640px;}
.ls7_c00204{letter-spacing:16.492680px;}
.ls4_c00204{letter-spacing:18.504000px;}
.ls1_c00204{letter-spacing:19.584000px;}
.ls3_c00204{letter-spacing:20.880000px;}
.ls5_c00204{letter-spacing:54.720000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00204{word-spacing:-18.144000px;}
.ws1_c00204{word-spacing:-18.072000px;}
.ws3_c00204{word-spacing:-18.000000px;}
.ws8_c00204{word-spacing:-16.667640px;}
.ws9_c00204{word-spacing:-16.535880px;}
.ws7_c00204{word-spacing:-16.404120px;}
.ws6_c00204{word-spacing:-15.942960px;}
.ws14_c00204{word-spacing:-0.504000px;}
.ws26_c00204{word-spacing:-0.197640px;}
.ws12_c00204{word-spacing:-0.144000px;}
.ws20_c00204{word-spacing:-0.131760px;}
.ws2_c00204{word-spacing:-0.072000px;}
.ws5_c00204{word-spacing:0.000000px;}
.ws28_c00204{word-spacing:0.065880px;}
.ws10_c00204{word-spacing:0.072000px;}
.ws25_c00204{word-spacing:0.131760px;}
.ws11_c00204{word-spacing:0.288000px;}
.ws23_c00204{word-spacing:0.576000px;}
.ws21_c00204{word-spacing:0.648000px;}
.ws22_c00204{word-spacing:0.720000px;}
.wsa_c00204{word-spacing:1.368000px;}
.wsb_c00204{word-spacing:2.160000px;}
.wse_c00204{word-spacing:2.808000px;}
.wsd_c00204{word-spacing:2.880000px;}
.wsf_c00204{word-spacing:3.168000px;}
.wsc_c00204{word-spacing:3.240000px;}
.ws18_c00204{word-spacing:3.528000px;}
.ws19_c00204{word-spacing:3.816000px;}
.ws1a_c00204{word-spacing:3.888000px;}
.ws17_c00204{word-spacing:4.608000px;}
.ws16_c00204{word-spacing:8.208000px;}
.ws1d_c00204{word-spacing:8.280000px;}
.ws13_c00204{word-spacing:9.360000px;}
.ws1f_c00204{word-spacing:10.728000px;}
.ws1e_c00204{word-spacing:10.800000px;}
.ws2a_c00204{word-spacing:12.121920px;}
.ws24_c00204{word-spacing:13.608000px;}
.ws15_c00204{word-spacing:16.488000px;}
.ws2b_c00204{word-spacing:21.147480px;}
.ws27_c00204{word-spacing:24.705000px;}
.ws4_c00204{word-spacing:25.920000px;}
.ws1b_c00204{word-spacing:28.440000px;}
.ws1c_c00204{word-spacing:28.800000px;}
.ws29_c00204{word-spacing:50.200560px;}
._0_c00204{margin-left:-1.008000px;}
._1_c00204{width:1.008000px;}
.fc2_c00204{color:transparent;}
.fc1_c00204{color:rgb(0,0,0);}
.fc0_c00204{color:rgb(35,31,32);}
.fs1_c00204{font-size:65.880000px;}
.fs0_c00204{font-size:72.000000px;}
.y0_c00204{bottom:0.000000px;}
.y1b_c00204{bottom:3.689400px;}
.y2a_c00204{bottom:3.692400px;}
.y1f_c00204{bottom:3.779400px;}
.y2e_c00204{bottom:3.780900px;}
.y33_c00204{bottom:3.782400px;}
.y24_c00204{bottom:22.679250px;}
.y29_c00204{bottom:22.682400px;}
.y1d_c00204{bottom:41.669250px;}
.y19_c00204{bottom:41.669400px;}
.y21_c00204{bottom:41.759400px;}
.y2c_c00204{bottom:41.760750px;}
.y30_c00204{bottom:60.662400px;}
.y1_c00204{bottom:61.748550px;}
.y2f_c00204{bottom:121.722000px;}
.y32_c00204{bottom:144.486840px;}
.y31_c00204{bottom:163.394400px;}
.y2b_c00204{bottom:197.593500px;}
.y2d_c00204{bottom:220.364400px;}
.y12_c00204{bottom:229.184400px;}
.y28_c00204{bottom:254.562000px;}
.y11_c00204{bottom:260.234400px;}
.y10_c00204{bottom:291.284400px;}
.y26_c00204{bottom:292.455000px;}
.y27_c00204{bottom:315.224400px;}
.yf_c00204{bottom:322.334400px;}
.y23_c00204{bottom:349.425000px;}
.y25_c00204{bottom:353.204400px;}
.ye_c00204{bottom:353.384400px;}
.yd_c00204{bottom:384.434400px;}
.y20_c00204{bottom:387.315000px;}
.y22_c00204{bottom:410.084400px;}
.yc_c00204{bottom:415.484400px;}
.y1c_c00204{bottom:444.285000px;}
.yb_c00204{bottom:446.534400px;}
.y1e_c00204{bottom:466.964400px;}
.y18_c00204{bottom:501.975000px;}
.ya_c00204{bottom:508.634400px;}
.y1a_c00204{bottom:524.654400px;}
.y17_c00204{bottom:612.134100px;}
.y16_c00204{bottom:674.234100px;}
.y15_c00204{bottom:705.284100px;}
.y14_c00204{bottom:736.334100px;}
.y13_c00204{bottom:798.434100px;}
.y9_c00204{bottom:922.634400px;}
.y8_c00204{bottom:953.684400px;}
.y7_c00204{bottom:984.644400px;}
.y6_c00204{bottom:1046.744400px;}
.y5_c00204{bottom:1077.794400px;}
.y4_c00204{bottom:1108.844400px;}
.y3_c00204{bottom:1139.894400px;}
.y2_c00204{bottom:1194.074400px;}
.ha_c00204{height:37.888500px;}
.hb_c00204{height:37.890000px;}
.h2_c00204{height:50.400000px;}
.h3_c00204{height:54.331699px;}
.h6_c00204{height:56.880000px;}
.h8_c00204{height:56.881500px;}
.h9_c00204{height:56.970000px;}
.h7_c00204{height:70.293960px;}
.hc_c00204{height:75.870000px;}
.h4_c00204{height:76.824000px;}
.h5_c00204{height:78.048000px;}
.h0_c00204{height:1262.835000px;}
.h1_c00204{height:1263.000000px;}
.w2_c00204{width:0.000000px;}
.w3_c00204{width:0.066000px;}
.w5_c00204{width:53.190000px;}
.w4_c00204{width:71.910000px;}
.w7_c00204{width:85.050000px;}
.w6_c00204{width:106.200000px;}
.w8_c00204{width:138.240000px;}
.w9_c00204{width:191.340000px;}
.w0_c00204{width:892.914000px;}
.w1_c00204{width:893.250000px;}
.x1_c00204{left:-838.913400px;}
.x2_c00204{left:-765.293400px;}
.x3_c00204{left:-733.343400px;}
.x0_c00204{left:0.000000px;}
.x9_c00204{left:8.100000px;}
.x13_c00204{left:59.040000px;}
.x8_c00204{left:119.520000px;}
.x7_c00204{left:127.620000px;}
.x6_c00204{left:159.570000px;}
.xa_c00204{left:191.430000px;}
.xb_c00204{left:244.620000px;}
.xc_c00204{left:252.630000px;}
.xd_c00204{left:350.820000px;}
.xe_c00204{left:358.920000px;}
.xf_c00204{left:435.870000px;}
.x10_c00204{left:443.970000px;}
.x11_c00204{left:574.110000px;}
.x12_c00204{left:582.210000px;}
.x5_c00204{left:696.510000px;}
.x4_c00204{left:804.366150px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.lsc_c00204{letter-spacing:-0.468480pt;}
.lsb_c00204{letter-spacing:-0.256000pt;}
.lsa_c00204{letter-spacing:-0.064000pt;}
.lsd_c00204{letter-spacing:-0.058560pt;}
.ls9_c00204{letter-spacing:0.000000pt;}
.ls8_c00204{letter-spacing:0.058560pt;}
.ls0_c00204{letter-spacing:0.064000pt;}
.ls2_c00204{letter-spacing:0.128000pt;}
.ls6_c00204{letter-spacing:0.175680pt;}
.ls7_c00204{letter-spacing:14.660160pt;}
.ls4_c00204{letter-spacing:16.448000pt;}
.ls1_c00204{letter-spacing:17.408000pt;}
.ls3_c00204{letter-spacing:18.560000pt;}
.ls5_c00204{letter-spacing:48.640000pt;}
.ws0_c00204{word-spacing:-16.128000pt;}
.ws1_c00204{word-spacing:-16.064000pt;}
.ws3_c00204{word-spacing:-16.000000pt;}
.ws8_c00204{word-spacing:-14.815680pt;}
.ws9_c00204{word-spacing:-14.698560pt;}
.ws7_c00204{word-spacing:-14.581440pt;}
.ws6_c00204{word-spacing:-14.171520pt;}
.ws14_c00204{word-spacing:-0.448000pt;}
.ws26_c00204{word-spacing:-0.175680pt;}
.ws12_c00204{word-spacing:-0.128000pt;}
.ws20_c00204{word-spacing:-0.117120pt;}
.ws2_c00204{word-spacing:-0.064000pt;}
.ws5_c00204{word-spacing:0.000000pt;}
.ws28_c00204{word-spacing:0.058560pt;}
.ws10_c00204{word-spacing:0.064000pt;}
.ws25_c00204{word-spacing:0.117120pt;}
.ws11_c00204{word-spacing:0.256000pt;}
.ws23_c00204{word-spacing:0.512000pt;}
.ws21_c00204{word-spacing:0.576000pt;}
.ws22_c00204{word-spacing:0.640000pt;}
.wsa_c00204{word-spacing:1.216000pt;}
.wsb_c00204{word-spacing:1.920000pt;}
.wse_c00204{word-spacing:2.496000pt;}
.wsd_c00204{word-spacing:2.560000pt;}
.wsf_c00204{word-spacing:2.816000pt;}
.wsc_c00204{word-spacing:2.880000pt;}
.ws18_c00204{word-spacing:3.136000pt;}
.ws19_c00204{word-spacing:3.392000pt;}
.ws1a_c00204{word-spacing:3.456000pt;}
.ws17_c00204{word-spacing:4.096000pt;}
.ws16_c00204{word-spacing:7.296000pt;}
.ws1d_c00204{word-spacing:7.360000pt;}
.ws13_c00204{word-spacing:8.320000pt;}
.ws1f_c00204{word-spacing:9.536000pt;}
.ws1e_c00204{word-spacing:9.600000pt;}
.ws2a_c00204{word-spacing:10.775040pt;}
.ws24_c00204{word-spacing:12.096000pt;}
.ws15_c00204{word-spacing:14.656000pt;}
.ws2b_c00204{word-spacing:18.797760pt;}
.ws27_c00204{word-spacing:21.960000pt;}
.ws4_c00204{word-spacing:23.040000pt;}
.ws1b_c00204{word-spacing:25.280000pt;}
.ws1c_c00204{word-spacing:25.600000pt;}
.ws29_c00204{word-spacing:44.622720pt;}
._0_c00204{margin-left:-0.896000pt;}
._1_c00204{width:0.896000pt;}
.fs1_c00204{font-size:58.560000pt;}
.fs0_c00204{font-size:64.000000pt;}
.y0_c00204{bottom:0.000000pt;}
.y1b_c00204{bottom:3.279467pt;}
.y2a_c00204{bottom:3.282133pt;}
.y1f_c00204{bottom:3.359467pt;}
.y2e_c00204{bottom:3.360800pt;}
.y33_c00204{bottom:3.362133pt;}
.y24_c00204{bottom:20.159333pt;}
.y29_c00204{bottom:20.162133pt;}
.y1d_c00204{bottom:37.039333pt;}
.y19_c00204{bottom:37.039467pt;}
.y21_c00204{bottom:37.119467pt;}
.y2c_c00204{bottom:37.120667pt;}
.y30_c00204{bottom:53.922133pt;}
.y1_c00204{bottom:54.887600pt;}
.y2f_c00204{bottom:108.197333pt;}
.y32_c00204{bottom:128.432747pt;}
.y31_c00204{bottom:145.239467pt;}
.y2b_c00204{bottom:175.638667pt;}
.y2d_c00204{bottom:195.879467pt;}
.y12_c00204{bottom:203.719467pt;}
.y28_c00204{bottom:226.277333pt;}
.y11_c00204{bottom:231.319467pt;}
.y10_c00204{bottom:258.919467pt;}
.y26_c00204{bottom:259.960000pt;}
.y27_c00204{bottom:280.199467pt;}
.yf_c00204{bottom:286.519467pt;}
.y23_c00204{bottom:310.600000pt;}
.y25_c00204{bottom:313.959467pt;}
.ye_c00204{bottom:314.119467pt;}
.yd_c00204{bottom:341.719467pt;}
.y20_c00204{bottom:344.280000pt;}
.y22_c00204{bottom:364.519467pt;}
.yc_c00204{bottom:369.319467pt;}
.y1c_c00204{bottom:394.920000pt;}
.yb_c00204{bottom:396.919467pt;}
.y1e_c00204{bottom:415.079467pt;}
.y18_c00204{bottom:446.200000pt;}
.ya_c00204{bottom:452.119467pt;}
.y1a_c00204{bottom:466.359467pt;}
.y17_c00204{bottom:544.119200pt;}
.y16_c00204{bottom:599.319200pt;}
.y15_c00204{bottom:626.919200pt;}
.y14_c00204{bottom:654.519200pt;}
.y13_c00204{bottom:709.719200pt;}
.y9_c00204{bottom:820.119467pt;}
.y8_c00204{bottom:847.719467pt;}
.y7_c00204{bottom:875.239467pt;}
.y6_c00204{bottom:930.439467pt;}
.y5_c00204{bottom:958.039467pt;}
.y4_c00204{bottom:985.639467pt;}
.y3_c00204{bottom:1013.239467pt;}
.y2_c00204{bottom:1061.399467pt;}
.ha_c00204{height:33.678667pt;}
.hb_c00204{height:33.680000pt;}
.h2_c00204{height:44.800000pt;}
.h3_c00204{height:48.294844pt;}
.h6_c00204{height:50.560000pt;}
.h8_c00204{height:50.561333pt;}
.h9_c00204{height:50.640000pt;}
.h7_c00204{height:62.483520pt;}
.hc_c00204{height:67.440000pt;}
.h4_c00204{height:68.288000pt;}
.h5_c00204{height:69.376000pt;}
.h0_c00204{height:1122.520000pt;}
.h1_c00204{height:1122.666667pt;}
.w2_c00204{width:0.000000pt;}
.w3_c00204{width:0.058667pt;}
.w5_c00204{width:47.280000pt;}
.w4_c00204{width:63.920000pt;}
.w7_c00204{width:75.600000pt;}
.w6_c00204{width:94.400000pt;}
.w8_c00204{width:122.880000pt;}
.w9_c00204{width:170.080000pt;}
.w0_c00204{width:793.701333pt;}
.w1_c00204{width:794.000000pt;}
.x1_c00204{left:-745.700800pt;}
.x2_c00204{left:-680.260800pt;}
.x3_c00204{left:-651.860800pt;}
.x0_c00204{left:0.000000pt;}
.x9_c00204{left:7.200000pt;}
.x13_c00204{left:52.480000pt;}
.x8_c00204{left:106.240000pt;}
.x7_c00204{left:113.440000pt;}
.x6_c00204{left:141.840000pt;}
.xa_c00204{left:170.160000pt;}
.xb_c00204{left:217.440000pt;}
.xc_c00204{left:224.560000pt;}
.xd_c00204{left:311.840000pt;}
.xe_c00204{left:319.040000pt;}
.xf_c00204{left:387.440000pt;}
.x10_c00204{left:394.640000pt;}
.x11_c00204{left:510.320000pt;}
.x12_c00204{left:517.520000pt;}
.x5_c00204{left:619.120000pt;}
.x4_c00204{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00205;src:url('chunks/assets/font_f00c655737c9540997e5d90e.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00205;src:url('chunks/assets/font_abb3806c547723ff5474ac83.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00205;src:url('chunks/assets/font_deb757ecf81ba64f1db75a7e.woff2')format("woff");}.ff4_c00205{font-family:ff4_c00205;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.lsa_c00205{letter-spacing:-0.288000px;}
.ls9_c00205{letter-spacing:-0.216000px;}
.ls8_c00205{letter-spacing:0.000000px;}
.ls0_c00205{letter-spacing:0.072000px;}
.ls1_c00205{letter-spacing:0.144000px;}
.ls7_c00205{letter-spacing:0.158400px;}
.ls6_c00205{letter-spacing:18.072000px;}
.ls4_c00205{letter-spacing:18.360000px;}
.ls3_c00205{letter-spacing:18.720000px;}
.ls2_c00205{letter-spacing:21.960000px;}
.ls5_c00205{letter-spacing:32.760000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00205{word-spacing:-18.144000px;}
.ws6_c00205{word-spacing:-18.072000px;}
.ws0_c00205{word-spacing:-18.000000px;}
.ws2_c00205{word-spacing:-17.712000px;}
.ws18_c00205{word-spacing:-0.360000px;}
.ws13_c00205{word-spacing:-0.072000px;}
.ws7_c00205{word-spacing:0.000000px;}
.ws12_c00205{word-spacing:0.216000px;}
.ws16_c00205{word-spacing:0.288000px;}
.ws14_c00205{word-spacing:0.648000px;}
.ws15_c00205{word-spacing:0.720000px;}
.ws4_c00205{word-spacing:0.864000px;}
.ws1e_c00205{word-spacing:1.080000px;}
.ws3_c00205{word-spacing:1.296000px;}
.ws1d_c00205{word-spacing:1.440000px;}
.ws1c_c00205{word-spacing:3.168000px;}
.ws1b_c00205{word-spacing:3.240000px;}
.wsc_c00205{word-spacing:4.176000px;}
.wsb_c00205{word-spacing:4.320000px;}
.ws9_c00205{word-spacing:4.896000px;}
.wsa_c00205{word-spacing:4.968000px;}
.ws23_c00205{word-spacing:7.200000px;}
.ws21_c00205{word-spacing:7.920000px;}
.ws1f_c00205{word-spacing:8.208000px;}
.ws20_c00205{word-spacing:8.280000px;}
.ws10_c00205{word-spacing:10.008000px;}
.ws11_c00205{word-spacing:10.080000px;}
.ws1_c00205{word-spacing:10.094400px;}
.ws1a_c00205{word-spacing:10.728000px;}
.ws22_c00205{word-spacing:11.376000px;}
.ws8_c00205{word-spacing:11.520000px;}
.ws19_c00205{word-spacing:12.168000px;}
.ws17_c00205{word-spacing:14.760000px;}
.wsf_c00205{word-spacing:14.976000px;}
.wsd_c00205{word-spacing:15.408000px;}
.wse_c00205{word-spacing:15.480000px;}
._0_c00205{margin-left:-1.224000px;}
._3_c00205{width:1.440000px;}
._2_c00205{width:10.152000px;}
._1_c00205{width:29.145600px;}
.fc1_c00205{color:rgb(0,0,0);}
.fc0_c00205{color:rgb(35,31,32);}
.fs1_c00205{font-size:65.880000px;}
.fs0_c00205{font-size:72.000000px;}
.y0_c00205{bottom:0.000000px;}
.y1_c00205{bottom:61.748550px;}
.y14_c00205{bottom:146.384400px;}
.y13_c00205{bottom:177.434400px;}
.y12_c00205{bottom:208.484400px;}
.y11_c00205{bottom:239.534400px;}
.y10_c00205{bottom:270.584400px;}
.yf_c00205{bottom:301.634400px;}
.ye_c00205{bottom:332.684400px;}
.yd_c00205{bottom:363.734400px;}
.yc_c00205{bottom:425.834400px;}
.yb_c00205{bottom:829.484400px;}
.ya_c00205{bottom:860.534400px;}
.y9_c00205{bottom:891.584400px;}
.y8_c00205{bottom:953.684400px;}
.y7_c00205{bottom:984.644400px;}
.y6_c00205{bottom:1015.694400px;}
.y5_c00205{bottom:1046.744400px;}
.y4_c00205{bottom:1077.794400px;}
.y3_c00205{bottom:1139.804400px;}
.y2_c00205{bottom:1194.074400px;}
.h2_c00205{height:50.400000px;}
.h3_c00205{height:54.331699px;}
.h5_c00205{height:76.824000px;}
.h4_c00205{height:78.048000px;}
.h0_c00205{height:1262.835000px;}
.h1_c00205{height:1263.000000px;}
.w0_c00205{width:892.914000px;}
.w1_c00205{width:893.250000px;}
.x0_c00205{left:0.000000px;}
.x1_c00205{left:54.000000px;}
.x2_c00205{left:127.620000px;}
.x3_c00205{left:159.570000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.lsa_c00205{letter-spacing:-0.256000pt;}
.ls9_c00205{letter-spacing:-0.192000pt;}
.ls8_c00205{letter-spacing:0.000000pt;}
.ls0_c00205{letter-spacing:0.064000pt;}
.ls1_c00205{letter-spacing:0.128000pt;}
.ls7_c00205{letter-spacing:0.140800pt;}
.ls6_c00205{letter-spacing:16.064000pt;}
.ls4_c00205{letter-spacing:16.320000pt;}
.ls3_c00205{letter-spacing:16.640000pt;}
.ls2_c00205{letter-spacing:19.520000pt;}
.ls5_c00205{letter-spacing:29.120000pt;}
.ws5_c00205{word-spacing:-16.128000pt;}
.ws6_c00205{word-spacing:-16.064000pt;}
.ws0_c00205{word-spacing:-16.000000pt;}
.ws2_c00205{word-spacing:-15.744000pt;}
.ws18_c00205{word-spacing:-0.320000pt;}
.ws13_c00205{word-spacing:-0.064000pt;}
.ws7_c00205{word-spacing:0.000000pt;}
.ws12_c00205{word-spacing:0.192000pt;}
.ws16_c00205{word-spacing:0.256000pt;}
.ws14_c00205{word-spacing:0.576000pt;}
.ws15_c00205{word-spacing:0.640000pt;}
.ws4_c00205{word-spacing:0.768000pt;}
.ws1e_c00205{word-spacing:0.960000pt;}
.ws3_c00205{word-spacing:1.152000pt;}
.ws1d_c00205{word-spacing:1.280000pt;}
.ws1c_c00205{word-spacing:2.816000pt;}
.ws1b_c00205{word-spacing:2.880000pt;}
.wsc_c00205{word-spacing:3.712000pt;}
.wsb_c00205{word-spacing:3.840000pt;}
.ws9_c00205{word-spacing:4.352000pt;}
.wsa_c00205{word-spacing:4.416000pt;}
.ws23_c00205{word-spacing:6.400000pt;}
.ws21_c00205{word-spacing:7.040000pt;}
.ws1f_c00205{word-spacing:7.296000pt;}
.ws20_c00205{word-spacing:7.360000pt;}
.ws10_c00205{word-spacing:8.896000pt;}
.ws11_c00205{word-spacing:8.960000pt;}
.ws1_c00205{word-spacing:8.972800pt;}
.ws1a_c00205{word-spacing:9.536000pt;}
.ws22_c00205{word-spacing:10.112000pt;}
.ws8_c00205{word-spacing:10.240000pt;}
.ws19_c00205{word-spacing:10.816000pt;}
.ws17_c00205{word-spacing:13.120000pt;}
.wsf_c00205{word-spacing:13.312000pt;}
.wsd_c00205{word-spacing:13.696000pt;}
.wse_c00205{word-spacing:13.760000pt;}
._0_c00205{margin-left:-1.088000pt;}
._3_c00205{width:1.280000pt;}
._2_c00205{width:9.024000pt;}
._1_c00205{width:25.907200pt;}
.fs1_c00205{font-size:58.560000pt;}
.fs0_c00205{font-size:64.000000pt;}
.y0_c00205{bottom:0.000000pt;}
.y1_c00205{bottom:54.887600pt;}
.y14_c00205{bottom:130.119467pt;}
.y13_c00205{bottom:157.719467pt;}
.y12_c00205{bottom:185.319467pt;}
.y11_c00205{bottom:212.919467pt;}
.y10_c00205{bottom:240.519467pt;}
.yf_c00205{bottom:268.119467pt;}
.ye_c00205{bottom:295.719467pt;}
.yd_c00205{bottom:323.319467pt;}
.yc_c00205{bottom:378.519467pt;}
.yb_c00205{bottom:737.319467pt;}
.ya_c00205{bottom:764.919467pt;}
.y9_c00205{bottom:792.519467pt;}
.y8_c00205{bottom:847.719467pt;}
.y7_c00205{bottom:875.239467pt;}
.y6_c00205{bottom:902.839467pt;}
.y5_c00205{bottom:930.439467pt;}
.y4_c00205{bottom:958.039467pt;}
.y3_c00205{bottom:1013.159467pt;}
.y2_c00205{bottom:1061.399467pt;}
.h2_c00205{height:44.800000pt;}
.h3_c00205{height:48.294844pt;}
.h5_c00205{height:68.288000pt;}
.h4_c00205{height:69.376000pt;}
.h0_c00205{height:1122.520000pt;}
.h1_c00205{height:1122.666667pt;}
.w0_c00205{width:793.701333pt;}
.w1_c00205{width:794.000000pt;}
.x0_c00205{left:0.000000pt;}
.x1_c00205{left:48.000000pt;}
.x2_c00205{left:113.440000pt;}
.x3_c00205{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00206;src:url('chunks/assets/font_92df7816e7d5e0cee7d36427.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00206;src:url('chunks/assets/font_c7b5968b618475ff046f656b.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00206;src:url('chunks/assets/font_ea518bb725efd574cdc1bca7.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00206;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00206{font-family:ff5_c00206;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00206;src:url('chunks/assets/font_c17efc4293b4206c94a851bd.woff2')format("woff");}.ff6_c00206{font-family:ff6_c00206;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00206;src:url('chunks/assets/font_2646a638b3d658bc78c136b1.woff2')format("woff");}.ff7_c00206{font-family:ff7_c00206;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00206;src:url('chunks/assets/font_a9307f88ef3397457af9fd4d.woff2')format("woff");}.ff8_c00206{font-family:ff8_c00206;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls11_c00206{letter-spacing:-0.527040px;}
.lsf_c00206{letter-spacing:-0.288000px;}
.lse_c00206{letter-spacing:-0.216000px;}
.ls10_c00206{letter-spacing:-0.072000px;}
.ls12_c00206{letter-spacing:-0.065880px;}
.lsd_c00206{letter-spacing:0.000000px;}
.lsc_c00206{letter-spacing:0.065880px;}
.ls0_c00206{letter-spacing:0.072000px;}
.ls1_c00206{letter-spacing:0.144000px;}
.ls7_c00206{letter-spacing:0.165600px;}
.ls8_c00206{letter-spacing:0.172800px;}
.lsa_c00206{letter-spacing:0.197640px;}
.lsb_c00206{letter-spacing:16.492680px;}
.ls6_c00206{letter-spacing:18.072000px;}
.ls4_c00206{letter-spacing:18.360000px;}
.ls3_c00206{letter-spacing:18.720000px;}
.ls9_c00206{letter-spacing:20.880000px;}
.ls2_c00206{letter-spacing:21.960000px;}
.ls5_c00206{letter-spacing:32.760000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00206{word-spacing:-18.144000px;}
.ws6_c00206{word-spacing:-18.072000px;}
.ws0_c00206{word-spacing:-18.000000px;}
.ws2_c00206{word-spacing:-17.712000px;}
.wsc_c00206{word-spacing:-16.535880px;}
.wsb_c00206{word-spacing:-16.404120px;}
.wsa_c00206{word-spacing:-15.942960px;}
.ws29_c00206{word-spacing:-0.432000px;}
.ws1c_c00206{word-spacing:-0.360000px;}
.ws32_c00206{word-spacing:-0.197640px;}
.ws28_c00206{word-spacing:-0.131760px;}
.ws17_c00206{word-spacing:-0.072000px;}
.ws7_c00206{word-spacing:0.000000px;}
.ws35_c00206{word-spacing:0.065880px;}
.ws2a_c00206{word-spacing:0.072000px;}
.ws30_c00206{word-spacing:0.131760px;}
.ws16_c00206{word-spacing:0.216000px;}
.ws1a_c00206{word-spacing:0.288000px;}
.ws18_c00206{word-spacing:0.648000px;}
.ws19_c00206{word-spacing:0.720000px;}
.ws4_c00206{word-spacing:0.864000px;}
.ws22_c00206{word-spacing:1.080000px;}
.ws3_c00206{word-spacing:1.296000px;}
.ws21_c00206{word-spacing:1.440000px;}
.ws2b_c00206{word-spacing:1.728000px;}
.ws2c_c00206{word-spacing:1.800000px;}
.ws2e_c00206{word-spacing:2.736000px;}
.ws2d_c00206{word-spacing:2.808000px;}
.ws2f_c00206{word-spacing:2.880000px;}
.ws20_c00206{word-spacing:3.168000px;}
.ws1f_c00206{word-spacing:3.240000px;}
.ws10_c00206{word-spacing:4.176000px;}
.wsf_c00206{word-spacing:4.320000px;}
.wsd_c00206{word-spacing:4.896000px;}
.wse_c00206{word-spacing:4.968000px;}
.ws27_c00206{word-spacing:7.200000px;}
.ws25_c00206{word-spacing:7.920000px;}
.ws23_c00206{word-spacing:8.208000px;}
.ws24_c00206{word-spacing:8.280000px;}
.ws14_c00206{word-spacing:10.008000px;}
.ws15_c00206{word-spacing:10.080000px;}
.ws9_c00206{word-spacing:10.087200px;}
.ws1_c00206{word-spacing:10.094400px;}
.ws1e_c00206{word-spacing:10.728000px;}
.ws33_c00206{word-spacing:11.067840px;}
.ws26_c00206{word-spacing:11.376000px;}
.ws8_c00206{word-spacing:11.520000px;}
.ws1d_c00206{word-spacing:12.168000px;}
.ws1b_c00206{word-spacing:14.760000px;}
.ws13_c00206{word-spacing:14.976000px;}
.ws11_c00206{word-spacing:15.408000px;}
.ws12_c00206{word-spacing:15.480000px;}
.ws34_c00206{word-spacing:24.705000px;}
.ws36_c00206{word-spacing:50.200560px;}
.ws31_c00206{word-spacing:163.975320px;}
._0_c00206{margin-left:-1.224000px;}
._3_c00206{width:1.440000px;}
._2_c00206{width:10.152000px;}
._5_c00206{width:24.685560px;}
._4_c00206{width:27.712800px;}
._1_c00206{width:29.145600px;}
.fc2_c00206{color:transparent;}
.fc1_c00206{color:rgb(0,0,0);}
.fc0_c00206{color:rgb(35,31,32);}
.fs1_c00206{font-size:65.880000px;}
.fs0_c00206{font-size:72.000000px;}
.y0_c00206{bottom:0.000000px;}
.y2f_c00206{bottom:3.690900px;}
.y1d_c00206{bottom:3.779400px;}
.y2a_c00206{bottom:3.780900px;}
.y26_c00206{bottom:22.769250px;}
.y33_c00206{bottom:22.770900px;}
.y23_c00206{bottom:41.669400px;}
.y28_c00206{bottom:41.670900px;}
.y1b_c00206{bottom:41.759400px;}
.y31_c00206{bottom:41.760900px;}
.y1f_c00206{bottom:41.762250px;}
.y2c_c00206{bottom:60.660900px;}
.y1_c00206{bottom:61.748550px;}
.y14_c00206{bottom:146.384400px;}
.y30_c00206{bottom:156.283500px;}
.y13_c00206{bottom:177.434400px;}
.y32_c00206{bottom:179.054400px;}
.y12_c00206{bottom:208.484400px;}
.y2b_c00206{bottom:213.253500px;}
.y2e_c00206{bottom:235.934490px;}
.y11_c00206{bottom:239.534400px;}
.y2d_c00206{bottom:254.924400px;}
.y10_c00206{bottom:270.584400px;}
.y27_c00206{bottom:289.123500px;}
.yf_c00206{bottom:301.634400px;}
.y29_c00206{bottom:311.804400px;}
.ye_c00206{bottom:332.684400px;}
.y25_c00206{bottom:346.005000px;}
.yd_c00206{bottom:363.734400px;}
.y22_c00206{bottom:383.985000px;}
.y24_c00206{bottom:406.754400px;}
.yc_c00206{bottom:425.834400px;}
.y1e_c00206{bottom:440.862000px;}
.y21_c00206{bottom:444.644490px;}
.y20_c00206{bottom:463.634400px;}
.y1a_c00206{bottom:498.555000px;}
.y1c_c00206{bottom:521.324400px;}
.y19_c00206{bottom:601.784250px;}
.y18_c00206{bottom:663.884250px;}
.y17_c00206{bottom:694.934250px;}
.y16_c00206{bottom:725.984250px;}
.y15_c00206{bottom:788.084250px;}
.yb_c00206{bottom:829.484400px;}
.ya_c00206{bottom:860.534400px;}
.y9_c00206{bottom:891.584400px;}
.y8_c00206{bottom:953.684400px;}
.y7_c00206{bottom:984.644400px;}
.y6_c00206{bottom:1015.694400px;}
.y5_c00206{bottom:1046.744400px;}
.y4_c00206{bottom:1077.794400px;}
.y3_c00206{bottom:1139.804400px;}
.y2_c00206{bottom:1194.074400px;}
.h9_c00206{height:37.981500px;}
.h2_c00206{height:50.400000px;}
.h3_c00206{height:54.331699px;}
.h8_c00206{height:56.880000px;}
.ha_c00206{height:56.881500px;}
.h6_c00206{height:56.970000px;}
.h7_c00206{height:70.293960px;}
.hb_c00206{height:75.870000px;}
.h5_c00206{height:76.824000px;}
.h4_c00206{height:78.048000px;}
.h0_c00206{height:1262.835000px;}
.h1_c00206{height:1263.000000px;}
.w2_c00206{width:0.000000px;}
.w3_c00206{width:0.066000px;}
.w5_c00206{width:53.190000px;}
.w4_c00206{width:71.910000px;}
.w7_c00206{width:85.050000px;}
.w6_c00206{width:106.200000px;}
.w8_c00206{width:138.240000px;}
.w9_c00206{width:191.340000px;}
.w0_c00206{width:892.914000px;}
.w1_c00206{width:893.250000px;}
.x1_c00206{left:-838.913400px;}
.x2_c00206{left:-765.293400px;}
.x3_c00206{left:-733.343400px;}
.x0_c00206{left:0.000000px;}
.x9_c00206{left:8.100000px;}
.x8_c00206{left:119.520000px;}
.x7_c00206{left:127.620000px;}
.x6_c00206{left:159.570000px;}
.xa_c00206{left:191.430000px;}
.xb_c00206{left:244.620000px;}
.xc_c00206{left:252.630000px;}
.xd_c00206{left:350.820000px;}
.xe_c00206{left:358.920000px;}
.xf_c00206{left:435.870000px;}
.x10_c00206{left:443.970000px;}
.x11_c00206{left:574.110000px;}
.x12_c00206{left:582.210000px;}
.x5_c00206{left:696.510000px;}
.x4_c00206{left:804.366150px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls11_c00206{letter-spacing:-0.468480pt;}
.lsf_c00206{letter-spacing:-0.256000pt;}
.lse_c00206{letter-spacing:-0.192000pt;}
.ls10_c00206{letter-spacing:-0.064000pt;}
.ls12_c00206{letter-spacing:-0.058560pt;}
.lsd_c00206{letter-spacing:0.000000pt;}
.lsc_c00206{letter-spacing:0.058560pt;}
.ls0_c00206{letter-spacing:0.064000pt;}
.ls1_c00206{letter-spacing:0.128000pt;}
.ls7_c00206{letter-spacing:0.147200pt;}
.ls8_c00206{letter-spacing:0.153600pt;}
.lsa_c00206{letter-spacing:0.175680pt;}
.lsb_c00206{letter-spacing:14.660160pt;}
.ls6_c00206{letter-spacing:16.064000pt;}
.ls4_c00206{letter-spacing:16.320000pt;}
.ls3_c00206{letter-spacing:16.640000pt;}
.ls9_c00206{letter-spacing:18.560000pt;}
.ls2_c00206{letter-spacing:19.520000pt;}
.ls5_c00206{letter-spacing:29.120000pt;}
.ws5_c00206{word-spacing:-16.128000pt;}
.ws6_c00206{word-spacing:-16.064000pt;}
.ws0_c00206{word-spacing:-16.000000pt;}
.ws2_c00206{word-spacing:-15.744000pt;}
.wsc_c00206{word-spacing:-14.698560pt;}
.wsb_c00206{word-spacing:-14.581440pt;}
.wsa_c00206{word-spacing:-14.171520pt;}
.ws29_c00206{word-spacing:-0.384000pt;}
.ws1c_c00206{word-spacing:-0.320000pt;}
.ws32_c00206{word-spacing:-0.175680pt;}
.ws28_c00206{word-spacing:-0.117120pt;}
.ws17_c00206{word-spacing:-0.064000pt;}
.ws7_c00206{word-spacing:0.000000pt;}
.ws35_c00206{word-spacing:0.058560pt;}
.ws2a_c00206{word-spacing:0.064000pt;}
.ws30_c00206{word-spacing:0.117120pt;}
.ws16_c00206{word-spacing:0.192000pt;}
.ws1a_c00206{word-spacing:0.256000pt;}
.ws18_c00206{word-spacing:0.576000pt;}
.ws19_c00206{word-spacing:0.640000pt;}
.ws4_c00206{word-spacing:0.768000pt;}
.ws22_c00206{word-spacing:0.960000pt;}
.ws3_c00206{word-spacing:1.152000pt;}
.ws21_c00206{word-spacing:1.280000pt;}
.ws2b_c00206{word-spacing:1.536000pt;}
.ws2c_c00206{word-spacing:1.600000pt;}
.ws2e_c00206{word-spacing:2.432000pt;}
.ws2d_c00206{word-spacing:2.496000pt;}
.ws2f_c00206{word-spacing:2.560000pt;}
.ws20_c00206{word-spacing:2.816000pt;}
.ws1f_c00206{word-spacing:2.880000pt;}
.ws10_c00206{word-spacing:3.712000pt;}
.wsf_c00206{word-spacing:3.840000pt;}
.wsd_c00206{word-spacing:4.352000pt;}
.wse_c00206{word-spacing:4.416000pt;}
.ws27_c00206{word-spacing:6.400000pt;}
.ws25_c00206{word-spacing:7.040000pt;}
.ws23_c00206{word-spacing:7.296000pt;}
.ws24_c00206{word-spacing:7.360000pt;}
.ws14_c00206{word-spacing:8.896000pt;}
.ws15_c00206{word-spacing:8.960000pt;}
.ws9_c00206{word-spacing:8.966400pt;}
.ws1_c00206{word-spacing:8.972800pt;}
.ws1e_c00206{word-spacing:9.536000pt;}
.ws33_c00206{word-spacing:9.838080pt;}
.ws26_c00206{word-spacing:10.112000pt;}
.ws8_c00206{word-spacing:10.240000pt;}
.ws1d_c00206{word-spacing:10.816000pt;}
.ws1b_c00206{word-spacing:13.120000pt;}
.ws13_c00206{word-spacing:13.312000pt;}
.ws11_c00206{word-spacing:13.696000pt;}
.ws12_c00206{word-spacing:13.760000pt;}
.ws34_c00206{word-spacing:21.960000pt;}
.ws36_c00206{word-spacing:44.622720pt;}
.ws31_c00206{word-spacing:145.755840pt;}
._0_c00206{margin-left:-1.088000pt;}
._3_c00206{width:1.280000pt;}
._2_c00206{width:9.024000pt;}
._5_c00206{width:21.942720pt;}
._4_c00206{width:24.633600pt;}
._1_c00206{width:25.907200pt;}
.fs1_c00206{font-size:58.560000pt;}
.fs0_c00206{font-size:64.000000pt;}
.y0_c00206{bottom:0.000000pt;}
.y2f_c00206{bottom:3.280800pt;}
.y1d_c00206{bottom:3.359467pt;}
.y2a_c00206{bottom:3.360800pt;}
.y26_c00206{bottom:20.239333pt;}
.y33_c00206{bottom:20.240800pt;}
.y23_c00206{bottom:37.039467pt;}
.y28_c00206{bottom:37.040800pt;}
.y1b_c00206{bottom:37.119467pt;}
.y31_c00206{bottom:37.120800pt;}
.y1f_c00206{bottom:37.122000pt;}
.y2c_c00206{bottom:53.920800pt;}
.y1_c00206{bottom:54.887600pt;}
.y14_c00206{bottom:130.119467pt;}
.y30_c00206{bottom:138.918667pt;}
.y13_c00206{bottom:157.719467pt;}
.y32_c00206{bottom:159.159467pt;}
.y12_c00206{bottom:185.319467pt;}
.y2b_c00206{bottom:189.558667pt;}
.y2e_c00206{bottom:209.719547pt;}
.y11_c00206{bottom:212.919467pt;}
.y2d_c00206{bottom:226.599467pt;}
.y10_c00206{bottom:240.519467pt;}
.y27_c00206{bottom:256.998667pt;}
.yf_c00206{bottom:268.119467pt;}
.y29_c00206{bottom:277.159467pt;}
.ye_c00206{bottom:295.719467pt;}
.y25_c00206{bottom:307.560000pt;}
.yd_c00206{bottom:323.319467pt;}
.y22_c00206{bottom:341.320000pt;}
.y24_c00206{bottom:361.559467pt;}
.yc_c00206{bottom:378.519467pt;}
.y1e_c00206{bottom:391.877333pt;}
.y21_c00206{bottom:395.239547pt;}
.y20_c00206{bottom:412.119467pt;}
.y1a_c00206{bottom:443.160000pt;}
.y1c_c00206{bottom:463.399467pt;}
.y19_c00206{bottom:534.919333pt;}
.y18_c00206{bottom:590.119333pt;}
.y17_c00206{bottom:617.719333pt;}
.y16_c00206{bottom:645.319333pt;}
.y15_c00206{bottom:700.519333pt;}
.yb_c00206{bottom:737.319467pt;}
.ya_c00206{bottom:764.919467pt;}
.y9_c00206{bottom:792.519467pt;}
.y8_c00206{bottom:847.719467pt;}
.y7_c00206{bottom:875.239467pt;}
.y6_c00206{bottom:902.839467pt;}
.y5_c00206{bottom:930.439467pt;}
.y4_c00206{bottom:958.039467pt;}
.y3_c00206{bottom:1013.159467pt;}
.y2_c00206{bottom:1061.399467pt;}
.h9_c00206{height:33.761333pt;}
.h2_c00206{height:44.800000pt;}
.h3_c00206{height:48.294844pt;}
.h8_c00206{height:50.560000pt;}
.ha_c00206{height:50.561333pt;}
.h6_c00206{height:50.640000pt;}
.h7_c00206{height:62.483520pt;}
.hb_c00206{height:67.440000pt;}
.h5_c00206{height:68.288000pt;}
.h4_c00206{height:69.376000pt;}
.h0_c00206{height:1122.520000pt;}
.h1_c00206{height:1122.666667pt;}
.w2_c00206{width:0.000000pt;}
.w3_c00206{width:0.058667pt;}
.w5_c00206{width:47.280000pt;}
.w4_c00206{width:63.920000pt;}
.w7_c00206{width:75.600000pt;}
.w6_c00206{width:94.400000pt;}
.w8_c00206{width:122.880000pt;}
.w9_c00206{width:170.080000pt;}
.w0_c00206{width:793.701333pt;}
.w1_c00206{width:794.000000pt;}
.x1_c00206{left:-745.700800pt;}
.x2_c00206{left:-680.260800pt;}
.x3_c00206{left:-651.860800pt;}
.x0_c00206{left:0.000000pt;}
.x9_c00206{left:7.200000pt;}
.x8_c00206{left:106.240000pt;}
.x7_c00206{left:113.440000pt;}
.x6_c00206{left:141.840000pt;}
.xa_c00206{left:170.160000pt;}
.xb_c00206{left:217.440000pt;}
.xc_c00206{left:224.560000pt;}
.xd_c00206{left:311.840000pt;}
.xe_c00206{left:319.040000pt;}
.xf_c00206{left:387.440000pt;}
.x10_c00206{left:394.640000pt;}
.x11_c00206{left:510.320000pt;}
.x12_c00206{left:517.520000pt;}
.x5_c00206{left:619.120000pt;}
.x4_c00206{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00207;src:url('chunks/assets/font_3d57dd2086d23ccf7b018743.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00207;src:url('chunks/assets/font_b920ceafa094f2402b0c8a85.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00207;src:url('chunks/assets/font_357a7b5f79dffca154808d6f.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls7_c00207{letter-spacing:-0.527040px;}
.ls6_c00207{letter-spacing:-0.072000px;}
.ls8_c00207{letter-spacing:-0.065880px;}
.ls5_c00207{letter-spacing:0.000000px;}
.ls3_c00207{letter-spacing:0.065880px;}
.ls0_c00207{letter-spacing:0.072000px;}
.ls4_c00207{letter-spacing:0.144000px;}
.ls1_c00207{letter-spacing:0.197640px;}
.ls9_c00207{letter-spacing:0.263520px;}
.ls2_c00207{letter-spacing:16.492680px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00207{word-spacing:-16.733520px;}
.ws4_c00207{word-spacing:-16.535880px;}
.ws5_c00207{word-spacing:-16.470000px;}
.ws3_c00207{word-spacing:-16.404120px;}
.ws2_c00207{word-spacing:-15.942960px;}
.ws12_c00207{word-spacing:-0.197640px;}
.wse_c00207{word-spacing:-0.131760px;}
.wsd_c00207{word-spacing:-0.072000px;}
.ws13_c00207{word-spacing:-0.065880px;}
.ws1_c00207{word-spacing:0.000000px;}
.ws10_c00207{word-spacing:0.065880px;}
.ws9_c00207{word-spacing:0.072000px;}
.wsf_c00207{word-spacing:0.131760px;}
.ws18_c00207{word-spacing:0.936000px;}
.ws8_c00207{word-spacing:1.080000px;}
.wsa_c00207{word-spacing:1.728000px;}
.ws15_c00207{word-spacing:4.545720px;}
.ws14_c00207{word-spacing:11.067840px;}
.ws0_c00207{word-spacing:13.176000px;}
.wsb_c00207{word-spacing:13.608000px;}
.wsc_c00207{word-spacing:13.680000px;}
.ws19_c00207{word-spacing:16.488000px;}
.ws7_c00207{word-spacing:20.304000px;}
.ws17_c00207{word-spacing:50.200560px;}
.ws16_c00207{word-spacing:67.592880px;}
.ws11_c00207{word-spacing:163.975320px;}
._1_c00207{margin-left:-1.022400px;}
._2_c00207{width:1.001376px;}
._0_c00207{width:2.016000px;}
.fc1_c00207{color:rgb(0,0,0);}
.fc0_c00207{color:rgb(35,31,32);}
.fs1_c00207{font-size:65.880000px;}
.fs0_c00207{font-size:72.000000px;}
.y0_c00207{bottom:0.000000px;}
.y11_c00207{bottom:3.689400px;}
.yb_c00207{bottom:3.779250px;}
.y16_c00207{bottom:3.779400px;}
.y1c_c00207{bottom:3.780900px;}
.y29_c00207{bottom:3.782400px;}
.y1e_c00207{bottom:41.669400px;}
.y8_c00207{bottom:60.659400px;}
.y26_c00207{bottom:60.662400px;}
.y13_c00207{bottom:60.749400px;}
.y21_c00207{bottom:60.752250px;}
.y1_c00207{bottom:61.748550px;}
.yd_c00207{bottom:79.649250px;}
.y18_c00207{bottom:79.650900px;}
.y2c_c00207{bottom:245.924250px;}
.y2b_c00207{bottom:276.974250px;}
.y2a_c00207{bottom:308.024250px;}
.y25_c00207{bottom:387.402000px;}
.y28_c00207{bottom:410.174490px;}
.y27_c00207{bottom:429.164400px;}
.y20_c00207{bottom:463.272000px;}
.y24_c00207{bottom:467.054430px;}
.y23_c00207{bottom:486.044340px;}
.y22_c00207{bottom:505.034250px;}
.y1d_c00207{bottom:539.235000px;}
.y1f_c00207{bottom:561.914400px;}
.y17_c00207{bottom:596.113500px;}
.y1b_c00207{bottom:618.876780px;}
.y1a_c00207{bottom:637.866690px;}
.y19_c00207{bottom:656.774250px;}
.y12_c00207{bottom:690.975000px;}
.y15_c00207{bottom:713.744490px;}
.y14_c00207{bottom:732.734400px;}
.yc_c00207{bottom:766.935000px;}
.y10_c00207{bottom:789.614580px;}
.yf_c00207{bottom:808.604490px;}
.ye_c00207{bottom:827.594400px;}
.y7_c00207{bottom:862.515000px;}
.ya_c00207{bottom:885.276840px;}
.y9_c00207{bottom:904.184400px;}
.y6_c00207{bottom:984.644400px;}
.y5_c00207{bottom:1046.744400px;}
.y4_c00207{bottom:1077.794400px;}
.y3_c00207{bottom:1108.844400px;}
.y2_c00207{bottom:1194.074400px;}
.h2_c00207{height:50.400000px;}
.h3_c00207{height:54.331699px;}
.hb_c00207{height:56.880000px;}
.h7_c00207{height:70.293960px;}
.h6_c00207{height:75.870000px;}
.h9_c00207{height:75.958500px;}
.hc_c00207{height:75.960000px;}
.h4_c00207{height:76.824000px;}
.h5_c00207{height:78.048000px;}
.h8_c00207{height:94.857000px;}
.ha_c00207{height:94.860000px;}
.h0_c00207{height:1262.835000px;}
.h1_c00207{height:1263.000000px;}
.w3_c00207{width:53.190000px;}
.w2_c00207{width:71.910000px;}
.w5_c00207{width:74.340000px;}
.w4_c00207{width:116.910000px;}
.w6_c00207{width:138.240000px;}
.w7_c00207{width:191.340000px;}
.w0_c00207{width:892.914000px;}
.w1_c00207{width:893.250000px;}
.x0_c00207{left:0.000000px;}
.x5_c00207{left:8.100000px;}
.x1_c00207{left:54.000000px;}
.x4_c00207{left:119.520000px;}
.x2_c00207{left:127.620000px;}
.x3_c00207{left:159.570000px;}
.x6_c00207{left:191.430000px;}
.x7_c00207{left:244.620000px;}
.x8_c00207{left:252.630000px;}
.x9_c00207{left:361.530000px;}
.xa_c00207{left:369.630000px;}
.xb_c00207{left:435.870000px;}
.xc_c00207{left:443.970000px;}
.xd_c00207{left:574.110000px;}
.xe_c00207{left:582.210000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls7_c00207{letter-spacing:-0.468480pt;}
.ls6_c00207{letter-spacing:-0.064000pt;}
.ls8_c00207{letter-spacing:-0.058560pt;}
.ls5_c00207{letter-spacing:0.000000pt;}
.ls3_c00207{letter-spacing:0.058560pt;}
.ls0_c00207{letter-spacing:0.064000pt;}
.ls4_c00207{letter-spacing:0.128000pt;}
.ls1_c00207{letter-spacing:0.175680pt;}
.ls9_c00207{letter-spacing:0.234240pt;}
.ls2_c00207{letter-spacing:14.660160pt;}
.ws6_c00207{word-spacing:-14.874240pt;}
.ws4_c00207{word-spacing:-14.698560pt;}
.ws5_c00207{word-spacing:-14.640000pt;}
.ws3_c00207{word-spacing:-14.581440pt;}
.ws2_c00207{word-spacing:-14.171520pt;}
.ws12_c00207{word-spacing:-0.175680pt;}
.wse_c00207{word-spacing:-0.117120pt;}
.wsd_c00207{word-spacing:-0.064000pt;}
.ws13_c00207{word-spacing:-0.058560pt;}
.ws1_c00207{word-spacing:0.000000pt;}
.ws10_c00207{word-spacing:0.058560pt;}
.ws9_c00207{word-spacing:0.064000pt;}
.wsf_c00207{word-spacing:0.117120pt;}
.ws18_c00207{word-spacing:0.832000pt;}
.ws8_c00207{word-spacing:0.960000pt;}
.wsa_c00207{word-spacing:1.536000pt;}
.ws15_c00207{word-spacing:4.040640pt;}
.ws14_c00207{word-spacing:9.838080pt;}
.ws0_c00207{word-spacing:11.712000pt;}
.wsb_c00207{word-spacing:12.096000pt;}
.wsc_c00207{word-spacing:12.160000pt;}
.ws19_c00207{word-spacing:14.656000pt;}
.ws7_c00207{word-spacing:18.048000pt;}
.ws17_c00207{word-spacing:44.622720pt;}
.ws16_c00207{word-spacing:60.082560pt;}
.ws11_c00207{word-spacing:145.755840pt;}
._1_c00207{margin-left:-0.908800pt;}
._2_c00207{width:0.890112pt;}
._0_c00207{width:1.792000pt;}
.fs1_c00207{font-size:58.560000pt;}
.fs0_c00207{font-size:64.000000pt;}
.y0_c00207{bottom:0.000000pt;}
.y11_c00207{bottom:3.279467pt;}
.yb_c00207{bottom:3.359333pt;}
.y16_c00207{bottom:3.359467pt;}
.y1c_c00207{bottom:3.360800pt;}
.y29_c00207{bottom:3.362133pt;}
.y1e_c00207{bottom:37.039467pt;}
.y8_c00207{bottom:53.919467pt;}
.y26_c00207{bottom:53.922133pt;}
.y13_c00207{bottom:53.999467pt;}
.y21_c00207{bottom:54.002000pt;}
.y1_c00207{bottom:54.887600pt;}
.yd_c00207{bottom:70.799333pt;}
.y18_c00207{bottom:70.800800pt;}
.y2c_c00207{bottom:218.599333pt;}
.y2b_c00207{bottom:246.199333pt;}
.y2a_c00207{bottom:273.799333pt;}
.y25_c00207{bottom:344.357333pt;}
.y28_c00207{bottom:364.599547pt;}
.y27_c00207{bottom:381.479467pt;}
.y20_c00207{bottom:411.797333pt;}
.y24_c00207{bottom:415.159493pt;}
.y23_c00207{bottom:432.039413pt;}
.y22_c00207{bottom:448.919333pt;}
.y1d_c00207{bottom:479.320000pt;}
.y1f_c00207{bottom:499.479467pt;}
.y17_c00207{bottom:529.878667pt;}
.y1b_c00207{bottom:550.112693pt;}
.y1a_c00207{bottom:566.992613pt;}
.y19_c00207{bottom:583.799333pt;}
.y12_c00207{bottom:614.200000pt;}
.y15_c00207{bottom:634.439547pt;}
.y14_c00207{bottom:651.319467pt;}
.yc_c00207{bottom:681.720000pt;}
.y10_c00207{bottom:701.879627pt;}
.yf_c00207{bottom:718.759547pt;}
.ye_c00207{bottom:735.639467pt;}
.y7_c00207{bottom:766.680000pt;}
.ya_c00207{bottom:786.912747pt;}
.y9_c00207{bottom:803.719467pt;}
.y6_c00207{bottom:875.239467pt;}
.y5_c00207{bottom:930.439467pt;}
.y4_c00207{bottom:958.039467pt;}
.y3_c00207{bottom:985.639467pt;}
.y2_c00207{bottom:1061.399467pt;}
.h2_c00207{height:44.800000pt;}
.h3_c00207{height:48.294844pt;}
.hb_c00207{height:50.560000pt;}
.h7_c00207{height:62.483520pt;}
.h6_c00207{height:67.440000pt;}
.h9_c00207{height:67.518667pt;}
.hc_c00207{height:67.520000pt;}
.h4_c00207{height:68.288000pt;}
.h5_c00207{height:69.376000pt;}
.h8_c00207{height:84.317333pt;}
.ha_c00207{height:84.320000pt;}
.h0_c00207{height:1122.520000pt;}
.h1_c00207{height:1122.666667pt;}
.w3_c00207{width:47.280000pt;}
.w2_c00207{width:63.920000pt;}
.w5_c00207{width:66.080000pt;}
.w4_c00207{width:103.920000pt;}
.w6_c00207{width:122.880000pt;}
.w7_c00207{width:170.080000pt;}
.w0_c00207{width:793.701333pt;}
.w1_c00207{width:794.000000pt;}
.x0_c00207{left:0.000000pt;}
.x5_c00207{left:7.200000pt;}
.x1_c00207{left:48.000000pt;}
.x4_c00207{left:106.240000pt;}
.x2_c00207{left:113.440000pt;}
.x3_c00207{left:141.840000pt;}
.x6_c00207{left:170.160000pt;}
.x7_c00207{left:217.440000pt;}
.x8_c00207{left:224.560000pt;}
.x9_c00207{left:321.360000pt;}
.xa_c00207{left:328.560000pt;}
.xb_c00207{left:387.440000pt;}
.xc_c00207{left:394.640000pt;}
.xd_c00207{left:510.320000pt;}
.xe_c00207{left:517.520000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00208;src:url('chunks/assets/font_1850d3240ab826bd18b65c30.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00208;src:url('chunks/assets/font_8ad363cd81698ecb68322008.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00208;src:url('chunks/assets/font_4d8722e56429458f5edad0a7.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00208;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00208{font-family:ff5_c00208;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00208;src:url('chunks/assets/font_470d607d568ec58908abb565.woff2')format("woff");}.ff6_c00208{font-family:ff6_c00208;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00208;src:url('chunks/assets/font_2a0182b9d4e82dac87f154c8.woff2')format("woff");}.ff7_c00208{font-family:ff7_c00208;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00208;src:url('chunks/assets/font_d5f907569bda4b380f88df9a.woff2')format("woff");}.ff8_c00208{font-family:ff8_c00208;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00208{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00208{vertical-align:0.000000px;}
.ls7_c00208{letter-spacing:-0.527040px;}
.lsa_c00208{letter-spacing:-0.144000px;}
.ls6_c00208{letter-spacing:-0.072000px;}
.ls8_c00208{letter-spacing:-0.065880px;}
.ls5_c00208{letter-spacing:0.000000px;}
.ls3_c00208{letter-spacing:0.065880px;}
.ls0_c00208{letter-spacing:0.072000px;}
.ls4_c00208{letter-spacing:0.144000px;}
.ls1_c00208{letter-spacing:0.197640px;}
.ls9_c00208{letter-spacing:0.263520px;}
.ls2_c00208{letter-spacing:16.492680px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00208{word-spacing:-18.144000px;}
.wse_c00208{word-spacing:-18.072000px;}
.wsa_c00208{word-spacing:-18.000000px;}
.wsb_c00208{word-spacing:-17.856000px;}
.ws6_c00208{word-spacing:-16.733520px;}
.ws4_c00208{word-spacing:-16.535880px;}
.ws5_c00208{word-spacing:-16.470000px;}
.ws3_c00208{word-spacing:-16.404120px;}
.ws2_c00208{word-spacing:-15.942960px;}
.ws23_c00208{word-spacing:-0.360000px;}
.ws18_c00208{word-spacing:-0.197640px;}
.ws21_c00208{word-spacing:-0.144000px;}
.ws14_c00208{word-spacing:-0.131760px;}
.ws13_c00208{word-spacing:-0.072000px;}
.ws19_c00208{word-spacing:-0.065880px;}
.ws1_c00208{word-spacing:0.000000px;}
.ws16_c00208{word-spacing:0.065880px;}
.wsf_c00208{word-spacing:0.072000px;}
.ws15_c00208{word-spacing:0.131760px;}
.ws20_c00208{word-spacing:0.144000px;}
.ws22_c00208{word-spacing:0.504000px;}
.ws1e_c00208{word-spacing:0.936000px;}
.ws8_c00208{word-spacing:1.080000px;}
.ws10_c00208{word-spacing:1.728000px;}
.ws1b_c00208{word-spacing:4.545720px;}
.ws1a_c00208{word-spacing:11.067840px;}
.ws0_c00208{word-spacing:13.176000px;}
.ws11_c00208{word-spacing:13.608000px;}
.ws12_c00208{word-spacing:13.680000px;}
.ws1f_c00208{word-spacing:16.488000px;}
.ws7_c00208{word-spacing:20.304000px;}
.ws1d_c00208{word-spacing:50.200560px;}
.ws1c_c00208{word-spacing:67.592880px;}
.ws17_c00208{word-spacing:163.975320px;}
.wsc_c00208{word-spacing:638.280000px;}
.wsd_c00208{word-spacing:837.504000px;}
._1_c00208{margin-left:-1.022400px;}
._2_c00208{width:1.001376px;}
._0_c00208{width:2.016000px;}
._3_c00208{width:657.216000px;}
.fc2_c00208{color:transparent;}
.fc1_c00208{color:rgb(0,0,0);}
.fc0_c00208{color:rgb(35,31,32);}
.fs1_c00208{font-size:65.880000px;}
.fs0_c00208{font-size:72.000000px;}
.y0_c00208{bottom:0.000000px;}
.y11_c00208{bottom:3.689400px;}
.yb_c00208{bottom:3.779250px;}
.y16_c00208{bottom:3.779400px;}
.y1c_c00208{bottom:3.780900px;}
.y46_c00208{bottom:4.139250px;}
.y33_c00208{bottom:4.139400px;}
.y38_c00208{bottom:4.140900px;}
.y35_c00208{bottom:4.142250px;}
.y3a_c00208{bottom:4.142400px;}
.y1e_c00208{bottom:41.669400px;}
.y8_c00208{bottom:60.659400px;}
.y26_c00208{bottom:60.660900px;}
.y2f_c00208{bottom:60.749250px;}
.y13_c00208{bottom:60.749400px;}
.y21_c00208{bottom:60.750750px;}
.y1_c00208{bottom:61.748550px;}
.yd_c00208{bottom:79.649250px;}
.y2d_c00208{bottom:79.649400px;}
.y18_c00208{bottom:79.650900px;}
.y58_c00208{bottom:165.375000px;}
.y57_c00208{bottom:195.075000px;}
.y56_c00208{bottom:237.914400px;}
.y2b_c00208{bottom:245.924250px;}
.y53_c00208{bottom:258.614400px;}
.y2a_c00208{bottom:276.974250px;}
.y55_c00208{bottom:279.314400px;}
.y54_c00208{bottom:300.014400px;}
.y29_c00208{bottom:308.024250px;}
.y52_c00208{bottom:318.014400px;}
.y51_c00208{bottom:338.714400px;}
.y50_c00208{bottom:359.414400px;}
.y4f_c00208{bottom:380.114400px;}
.y25_c00208{bottom:387.403500px;}
.y30_c00208{bottom:387.405000px;}
.y4e_c00208{bottom:400.814400px;}
.y28_c00208{bottom:410.174490px;}
.y4d_c00208{bottom:421.424400px;}
.y27_c00208{bottom:429.164400px;}
.y4c_c00208{bottom:446.985000px;}
.y20_c00208{bottom:463.273500px;}
.y2e_c00208{bottom:463.275000px;}
.y24_c00208{bottom:467.054430px;}
.y4b_c00208{bottom:477.495000px;}
.y23_c00208{bottom:486.044340px;}
.y22_c00208{bottom:505.034250px;}
.y4a_c00208{bottom:507.915000px;}
.y1d_c00208{bottom:539.235000px;}
.y49_c00208{bottom:541.754400px;}
.y1f_c00208{bottom:561.914400px;}
.y48_c00208{bottom:567.315000px;}
.y17_c00208{bottom:596.113500px;}
.y2c_c00208{bottom:596.115000px;}
.y47_c00208{bottom:597.015000px;}
.y1b_c00208{bottom:618.876780px;}
.y45_c00208{bottom:626.715000px;}
.y1a_c00208{bottom:637.866690px;}
.y44_c00208{bottom:656.415000px;}
.y19_c00208{bottom:656.774250px;}
.y43_c00208{bottom:686.115000px;}
.y12_c00208{bottom:690.975000px;}
.y42_c00208{bottom:710.954250px;}
.y15_c00208{bottom:713.744490px;}
.y14_c00208{bottom:732.734400px;}
.y41_c00208{bottom:736.512000px;}
.y40_c00208{bottom:766.213500px;}
.yc_c00208{bottom:766.935000px;}
.y10_c00208{bottom:789.614580px;}
.y3f_c00208{bottom:795.912000px;}
.yf_c00208{bottom:808.604490px;}
.y3e_c00208{bottom:825.613500px;}
.ye_c00208{bottom:827.594400px;}
.y3d_c00208{bottom:855.312000px;}
.y7_c00208{bottom:862.515000px;}
.y3c_c00208{bottom:885.012000px;}
.ya_c00208{bottom:885.276840px;}
.y9_c00208{bottom:904.184400px;}
.y3b_c00208{bottom:914.712000px;}
.y39_c00208{bottom:944.412000px;}
.y37_c00208{bottom:974.113500px;}
.y6_c00208{bottom:984.644400px;}
.y36_c00208{bottom:1003.812000px;}
.y34_c00208{bottom:1033.512000px;}
.y5_c00208{bottom:1046.744400px;}
.y32_c00208{bottom:1063.935000px;}
.y4_c00208{bottom:1077.794400px;}
.y3_c00208{bottom:1108.844400px;}
.y31_c00208{bottom:1139.894400px;}
.y2_c00208{bottom:1194.074400px;}
.hd_c00208{height:29.700000px;}
.h2_c00208{height:50.400000px;}
.h3_c00208{height:54.331699px;}
.hb_c00208{height:56.880000px;}
.he_c00208{height:59.400000px;}
.h7_c00208{height:70.293960px;}
.h6_c00208{height:75.870000px;}
.h9_c00208{height:75.958500px;}
.hc_c00208{height:75.960000px;}
.h4_c00208{height:76.824000px;}
.h5_c00208{height:78.048000px;}
.h8_c00208{height:94.858500px;}
.ha_c00208{height:94.860000px;}
.h0_c00208{height:1262.835000px;}
.h1_c00208{height:1263.000000px;}
.w3_c00208{width:-701.484000px;}
.w4_c00208{width:-648.294000px;}
.w5_c00208{width:-531.384000px;}
.w6_c00208{width:-457.044000px;}
.w7_c00208{width:-318.804000px;}
.w8_c00208{width:-127.464000px;}
.w2_c00208{width:0.000000px;}
.w9_c00208{width:0.066000px;}
.we_c00208{width:95.937000px;}
.wd_c00208{width:103.591500px;}
.wb_c00208{width:146.520000px;}
.wc_c00208{width:199.530000px;}
.wa_c00208{width:307.890000px;}
.w0_c00208{width:892.914000px;}
.w1_c00208{width:893.250000px;}
.x1_c00208{left:-838.913400px;}
.x2_c00208{left:-765.293400px;}
.x3_c00208{left:-733.343400px;}
.x4_c00208{left:-693.383400px;}
.x5_c00208{left:-640.283550px;}
.x6_c00208{left:-523.283550px;}
.x7_c00208{left:-448.943400px;}
.x8_c00208{left:-310.703400px;}
.x0_c00208{left:0.000000px;}
.x12_c00208{left:8.100000px;}
.xd_c00208{left:13.950000px;}
.x25_c00208{left:16.200000px;}
.x23_c00208{left:20.070000px;}
.x35_c00208{left:24.660000px;}
.x34_c00208{left:28.530000px;}
.x1f_c00208{left:33.480000px;}
.x22_c00208{left:41.490000px;}
.xf_c00208{left:43.470000px;}
.x17_c00208{left:48.330000px;}
.x33_c00208{left:49.950000px;}
.x18_c00208{left:55.260000px;}
.x1b_c00208{left:59.760000px;}
.x15_c00208{left:64.260000px;}
.x13_c00208{left:65.700000px;}
.x11_c00208{left:67.050000px;}
.x1d_c00208{left:68.760000px;}
.x26_c00208{left:72.000000px;}
.x21_c00208{left:84.780000px;}
.x19_c00208{left:86.310000px;}
.x14_c00208{left:88.830000px;}
.x16_c00208{left:90.810000px;}
.x1e_c00208{left:95.310000px;}
.x1a_c00208{left:101.520000px;}
.xc_c00208{left:119.520000px;}
.xb_c00208{left:127.620000px;}
.xe_c00208{left:427.410000px;}
.x27_c00208{left:435.510000px;}
.x1c_c00208{left:496.170000px;}
.x10_c00208{left:573.930000px;}
.x2b_c00208{left:582.030000px;}
.x31_c00208{left:585.000000px;}
.x2a_c00208{left:588.330000px;}
.x28_c00208{left:590.760000px;}
.x30_c00208{left:592.650000px;}
.x2f_c00208{left:597.960000px;}
.x29_c00208{left:608.490000px;}
.x32_c00208{left:626.220000px;}
.x20_c00208{left:641.970000px;}
.x24_c00208{left:677.520000px;}
.x2d_c00208{left:681.480000px;}
.x2c_c00208{left:690.480000px;}
.xa_c00208{left:696.510000px;}
.x2e_c00208{left:714.690000px;}
.x9_c00208{left:804.366150px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls7_c00208{letter-spacing:-0.468480pt;}
.lsa_c00208{letter-spacing:-0.128000pt;}
.ls6_c00208{letter-spacing:-0.064000pt;}
.ls8_c00208{letter-spacing:-0.058560pt;}
.ls5_c00208{letter-spacing:0.000000pt;}
.ls3_c00208{letter-spacing:0.058560pt;}
.ls0_c00208{letter-spacing:0.064000pt;}
.ls4_c00208{letter-spacing:0.128000pt;}
.ls1_c00208{letter-spacing:0.175680pt;}
.ls9_c00208{letter-spacing:0.234240pt;}
.ls2_c00208{letter-spacing:14.660160pt;}
.ws9_c00208{word-spacing:-16.128000pt;}
.wse_c00208{word-spacing:-16.064000pt;}
.wsa_c00208{word-spacing:-16.000000pt;}
.wsb_c00208{word-spacing:-15.872000pt;}
.ws6_c00208{word-spacing:-14.874240pt;}
.ws4_c00208{word-spacing:-14.698560pt;}
.ws5_c00208{word-spacing:-14.640000pt;}
.ws3_c00208{word-spacing:-14.581440pt;}
.ws2_c00208{word-spacing:-14.171520pt;}
.ws23_c00208{word-spacing:-0.320000pt;}
.ws18_c00208{word-spacing:-0.175680pt;}
.ws21_c00208{word-spacing:-0.128000pt;}
.ws14_c00208{word-spacing:-0.117120pt;}
.ws13_c00208{word-spacing:-0.064000pt;}
.ws19_c00208{word-spacing:-0.058560pt;}
.ws1_c00208{word-spacing:0.000000pt;}
.ws16_c00208{word-spacing:0.058560pt;}
.wsf_c00208{word-spacing:0.064000pt;}
.ws15_c00208{word-spacing:0.117120pt;}
.ws20_c00208{word-spacing:0.128000pt;}
.ws22_c00208{word-spacing:0.448000pt;}
.ws1e_c00208{word-spacing:0.832000pt;}
.ws8_c00208{word-spacing:0.960000pt;}
.ws10_c00208{word-spacing:1.536000pt;}
.ws1b_c00208{word-spacing:4.040640pt;}
.ws1a_c00208{word-spacing:9.838080pt;}
.ws0_c00208{word-spacing:11.712000pt;}
.ws11_c00208{word-spacing:12.096000pt;}
.ws12_c00208{word-spacing:12.160000pt;}
.ws1f_c00208{word-spacing:14.656000pt;}
.ws7_c00208{word-spacing:18.048000pt;}
.ws1d_c00208{word-spacing:44.622720pt;}
.ws1c_c00208{word-spacing:60.082560pt;}
.ws17_c00208{word-spacing:145.755840pt;}
.wsc_c00208{word-spacing:567.360000pt;}
.wsd_c00208{word-spacing:744.448000pt;}
._1_c00208{margin-left:-0.908800pt;}
._2_c00208{width:0.890112pt;}
._0_c00208{width:1.792000pt;}
._3_c00208{width:584.192000pt;}
.fs1_c00208{font-size:58.560000pt;}
.fs0_c00208{font-size:64.000000pt;}
.y0_c00208{bottom:0.000000pt;}
.y11_c00208{bottom:3.279467pt;}
.yb_c00208{bottom:3.359333pt;}
.y16_c00208{bottom:3.359467pt;}
.y1c_c00208{bottom:3.360800pt;}
.y46_c00208{bottom:3.679333pt;}
.y33_c00208{bottom:3.679467pt;}
.y38_c00208{bottom:3.680800pt;}
.y35_c00208{bottom:3.682000pt;}
.y3a_c00208{bottom:3.682133pt;}
.y1e_c00208{bottom:37.039467pt;}
.y8_c00208{bottom:53.919467pt;}
.y26_c00208{bottom:53.920800pt;}
.y2f_c00208{bottom:53.999333pt;}
.y13_c00208{bottom:53.999467pt;}
.y21_c00208{bottom:54.000667pt;}
.y1_c00208{bottom:54.887600pt;}
.yd_c00208{bottom:70.799333pt;}
.y2d_c00208{bottom:70.799467pt;}
.y18_c00208{bottom:70.800800pt;}
.y58_c00208{bottom:147.000000pt;}
.y57_c00208{bottom:173.400000pt;}
.y56_c00208{bottom:211.479467pt;}
.y2b_c00208{bottom:218.599333pt;}
.y53_c00208{bottom:229.879467pt;}
.y2a_c00208{bottom:246.199333pt;}
.y55_c00208{bottom:248.279467pt;}
.y54_c00208{bottom:266.679467pt;}
.y29_c00208{bottom:273.799333pt;}
.y52_c00208{bottom:282.679467pt;}
.y51_c00208{bottom:301.079467pt;}
.y50_c00208{bottom:319.479467pt;}
.y4f_c00208{bottom:337.879467pt;}
.y25_c00208{bottom:344.358667pt;}
.y30_c00208{bottom:344.360000pt;}
.y4e_c00208{bottom:356.279467pt;}
.y28_c00208{bottom:364.599547pt;}
.y4d_c00208{bottom:374.599467pt;}
.y27_c00208{bottom:381.479467pt;}
.y4c_c00208{bottom:397.320000pt;}
.y20_c00208{bottom:411.798667pt;}
.y2e_c00208{bottom:411.800000pt;}
.y24_c00208{bottom:415.159493pt;}
.y4b_c00208{bottom:424.440000pt;}
.y23_c00208{bottom:432.039413pt;}
.y22_c00208{bottom:448.919333pt;}
.y4a_c00208{bottom:451.480000pt;}
.y1d_c00208{bottom:479.320000pt;}
.y49_c00208{bottom:481.559467pt;}
.y1f_c00208{bottom:499.479467pt;}
.y48_c00208{bottom:504.280000pt;}
.y17_c00208{bottom:529.878667pt;}
.y2c_c00208{bottom:529.880000pt;}
.y47_c00208{bottom:530.680000pt;}
.y1b_c00208{bottom:550.112693pt;}
.y45_c00208{bottom:557.080000pt;}
.y1a_c00208{bottom:566.992613pt;}
.y44_c00208{bottom:583.480000pt;}
.y19_c00208{bottom:583.799333pt;}
.y43_c00208{bottom:609.880000pt;}
.y12_c00208{bottom:614.200000pt;}
.y42_c00208{bottom:631.959333pt;}
.y15_c00208{bottom:634.439547pt;}
.y14_c00208{bottom:651.319467pt;}
.y41_c00208{bottom:654.677333pt;}
.y40_c00208{bottom:681.078667pt;}
.yc_c00208{bottom:681.720000pt;}
.y10_c00208{bottom:701.879627pt;}
.y3f_c00208{bottom:707.477333pt;}
.yf_c00208{bottom:718.759547pt;}
.y3e_c00208{bottom:733.878667pt;}
.ye_c00208{bottom:735.639467pt;}
.y3d_c00208{bottom:760.277333pt;}
.y7_c00208{bottom:766.680000pt;}
.y3c_c00208{bottom:786.677333pt;}
.ya_c00208{bottom:786.912747pt;}
.y9_c00208{bottom:803.719467pt;}
.y3b_c00208{bottom:813.077333pt;}
.y39_c00208{bottom:839.477333pt;}
.y37_c00208{bottom:865.878667pt;}
.y6_c00208{bottom:875.239467pt;}
.y36_c00208{bottom:892.277333pt;}
.y34_c00208{bottom:918.677333pt;}
.y5_c00208{bottom:930.439467pt;}
.y32_c00208{bottom:945.720000pt;}
.y4_c00208{bottom:958.039467pt;}
.y3_c00208{bottom:985.639467pt;}
.y31_c00208{bottom:1013.239467pt;}
.y2_c00208{bottom:1061.399467pt;}
.hd_c00208{height:26.400000pt;}
.h2_c00208{height:44.800000pt;}
.h3_c00208{height:48.294844pt;}
.hb_c00208{height:50.560000pt;}
.he_c00208{height:52.800000pt;}
.h7_c00208{height:62.483520pt;}
.h6_c00208{height:67.440000pt;}
.h9_c00208{height:67.518667pt;}
.hc_c00208{height:67.520000pt;}
.h4_c00208{height:68.288000pt;}
.h5_c00208{height:69.376000pt;}
.h8_c00208{height:84.318667pt;}
.ha_c00208{height:84.320000pt;}
.h0_c00208{height:1122.520000pt;}
.h1_c00208{height:1122.666667pt;}
.w3_c00208{width:-623.541333pt;}
.w4_c00208{width:-576.261333pt;}
.w5_c00208{width:-472.341333pt;}
.w6_c00208{width:-406.261333pt;}
.w7_c00208{width:-283.381333pt;}
.w8_c00208{width:-113.301333pt;}
.w2_c00208{width:0.000000pt;}
.w9_c00208{width:0.058667pt;}
.we_c00208{width:85.277333pt;}
.wd_c00208{width:92.081333pt;}
.wb_c00208{width:130.240000pt;}
.wc_c00208{width:177.360000pt;}
.wa_c00208{width:273.680000pt;}
.w0_c00208{width:793.701333pt;}
.w1_c00208{width:794.000000pt;}
.x1_c00208{left:-745.700800pt;}
.x2_c00208{left:-680.260800pt;}
.x3_c00208{left:-651.860800pt;}
.x4_c00208{left:-616.340800pt;}
.x5_c00208{left:-569.140933pt;}
.x6_c00208{left:-465.140933pt;}
.x7_c00208{left:-399.060800pt;}
.x8_c00208{left:-276.180800pt;}
.x0_c00208{left:0.000000pt;}
.x12_c00208{left:7.200000pt;}
.xd_c00208{left:12.400000pt;}
.x25_c00208{left:14.400000pt;}
.x23_c00208{left:17.840000pt;}
.x35_c00208{left:21.920000pt;}
.x34_c00208{left:25.360000pt;}
.x1f_c00208{left:29.760000pt;}
.x22_c00208{left:36.880000pt;}
.xf_c00208{left:38.640000pt;}
.x17_c00208{left:42.960000pt;}
.x33_c00208{left:44.400000pt;}
.x18_c00208{left:49.120000pt;}
.x1b_c00208{left:53.120000pt;}
.x15_c00208{left:57.120000pt;}
.x13_c00208{left:58.400000pt;}
.x11_c00208{left:59.600000pt;}
.x1d_c00208{left:61.120000pt;}
.x26_c00208{left:64.000000pt;}
.x21_c00208{left:75.360000pt;}
.x19_c00208{left:76.720000pt;}
.x14_c00208{left:78.960000pt;}
.x16_c00208{left:80.720000pt;}
.x1e_c00208{left:84.720000pt;}
.x1a_c00208{left:90.240000pt;}
.xc_c00208{left:106.240000pt;}
.xb_c00208{left:113.440000pt;}
.xe_c00208{left:379.920000pt;}
.x27_c00208{left:387.120000pt;}
.x1c_c00208{left:441.040000pt;}
.x10_c00208{left:510.160000pt;}
.x2b_c00208{left:517.360000pt;}
.x31_c00208{left:520.000000pt;}
.x2a_c00208{left:522.960000pt;}
.x28_c00208{left:525.120000pt;}
.x30_c00208{left:526.800000pt;}
.x2f_c00208{left:531.520000pt;}
.x29_c00208{left:540.880000pt;}
.x32_c00208{left:556.640000pt;}
.x20_c00208{left:570.640000pt;}
.x24_c00208{left:602.240000pt;}
.x2d_c00208{left:605.760000pt;}
.x2c_c00208{left:613.760000pt;}
.xa_c00208{left:619.120000pt;}
.x2e_c00208{left:635.280000pt;}
.x9_c00208{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00209;src:url('chunks/assets/font_db160cf9f9e1413e8d75ac0e.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00209;src:url('chunks/assets/font_dd9a20f32c66c377c3c4b8b0.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00209;src:url('chunks/assets/font_0aa551d5c154b2762ffa32a0.woff2')format("woff");}.ff4_c00209{font-family:ff4_c00209;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00209{letter-spacing:-0.360000px;}
.ls7_c00209{letter-spacing:-0.288000px;}
.ls6_c00209{letter-spacing:-0.144000px;}
.ls5_c00209{letter-spacing:0.000000px;}
.ls1_c00209{letter-spacing:0.072000px;}
.ls0_c00209{letter-spacing:0.144000px;}
.ls3_c00209{letter-spacing:25.200000px;}
.ls4_c00209{letter-spacing:34.920000px;}
.ls2_c00209{letter-spacing:39.024000px;}
.sc__c00209{text-shadow:none;}
.sc0_c00209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00209{-webkit-text-stroke:0px transparent;}
.sc0_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00209{word-spacing:-18.072000px;}
.ws7_c00209{word-spacing:-18.000000px;}
.ws2_c00209{word-spacing:-17.856000px;}
.ws1_c00209{word-spacing:-0.144000px;}
.wsa_c00209{word-spacing:-0.072000px;}
.ws9_c00209{word-spacing:0.000000px;}
.ws21_c00209{word-spacing:0.360000px;}
.ws23_c00209{word-spacing:1.008000px;}
.ws22_c00209{word-spacing:1.080000px;}
.ws2b_c00209{word-spacing:3.168000px;}
.ws26_c00209{word-spacing:4.248000px;}
.ws1e_c00209{word-spacing:4.320000px;}
.ws29_c00209{word-spacing:6.408000px;}
.ws14_c00209{word-spacing:6.768000px;}
.ws8_c00209{word-spacing:6.840000px;}
.ws20_c00209{word-spacing:8.208000px;}
.ws1f_c00209{word-spacing:8.280000px;}
.wsc_c00209{word-spacing:10.008000px;}
.wsb_c00209{word-spacing:10.080000px;}
.ws4_c00209{word-spacing:10.152000px;}
.ws3_c00209{word-spacing:10.656000px;}
.ws2c_c00209{word-spacing:16.560000px;}
.ws2a_c00209{word-spacing:16.920000px;}
.ws25_c00209{word-spacing:17.208000px;}
.ws24_c00209{word-spacing:17.280000px;}
.ws10_c00209{word-spacing:20.376000px;}
.ws1c_c00209{word-spacing:20.448000px;}
.wsf_c00209{word-spacing:20.880000px;}
.ws19_c00209{word-spacing:21.600000px;}
.ws1a_c00209{word-spacing:21.888000px;}
.ws11_c00209{word-spacing:22.680000px;}
.ws12_c00209{word-spacing:22.968000px;}
.ws13_c00209{word-spacing:23.040000px;}
.ws2e_c00209{word-spacing:24.696000px;}
.ws2d_c00209{word-spacing:24.840000px;}
.wsd_c00209{word-spacing:28.008000px;}
.wse_c00209{word-spacing:28.080000px;}
.ws18_c00209{word-spacing:28.440000px;}
.ws16_c00209{word-spacing:28.656000px;}
.ws15_c00209{word-spacing:28.728000px;}
.ws17_c00209{word-spacing:28.800000px;}
.ws28_c00209{word-spacing:29.448000px;}
.ws27_c00209{word-spacing:29.520000px;}
.ws1d_c00209{word-spacing:30.600000px;}
.ws1b_c00209{word-spacing:32.760000px;}
.ws6_c00209{word-spacing:50.400000px;}
.ws0_c00209{word-spacing:104.400000px;}
._0_c00209{margin-left:-1.008000px;}
._2_c00209{width:1.080000px;}
._1_c00209{width:10.008000px;}
._3_c00209{width:16.848000px;}
.fc1_c00209{color:rgb(0,0,0);}
.fc0_c00209{color:rgb(35,31,32);}
.fs1_c00209{font-size:65.880000px;}
.fs0_c00209{font-size:72.000000px;}
.y0_c00209{bottom:0.000000px;}
.y1_c00209{bottom:61.748550px;}
.y1e_c00209{bottom:115.334400px;}
.y1d_c00209{bottom:146.384400px;}
.y1c_c00209{bottom:177.434400px;}
.y1b_c00209{bottom:208.484400px;}
.y1a_c00209{bottom:270.584400px;}
.y19_c00209{bottom:301.634400px;}
.y18_c00209{bottom:332.684400px;}
.y17_c00209{bottom:363.734400px;}
.y16_c00209{bottom:394.784400px;}
.y15_c00209{bottom:425.834400px;}
.y14_c00209{bottom:487.754400px;}
.y13_c00209{bottom:550.034400px;}
.y12_c00209{bottom:581.084400px;}
.y11_c00209{bottom:612.134400px;}
.y10_c00209{bottom:674.234400px;}
.yf_c00209{bottom:705.284400px;}
.ye_c00209{bottom:736.334400px;}
.yd_c00209{bottom:767.384400px;}
.yc_c00209{bottom:798.434400px;}
.yb_c00209{bottom:829.484400px;}
.ya_c00209{bottom:860.534400px;}
.y9_c00209{bottom:922.634400px;}
.y8_c00209{bottom:953.684400px;}
.y7_c00209{bottom:984.644400px;}
.y6_c00209{bottom:1015.694400px;}
.y5_c00209{bottom:1046.744400px;}
.y4_c00209{bottom:1077.794400px;}
.y3_c00209{bottom:1139.714400px;}
.y2_c00209{bottom:1194.074400px;}
.h2_c00209{height:50.400000px;}
.h3_c00209{height:54.331699px;}
.h4_c00209{height:76.824000px;}
.h0_c00209{height:1262.835000px;}
.h1_c00209{height:1263.000000px;}
.w0_c00209{width:892.914000px;}
.w1_c00209{width:893.250000px;}
.x0_c00209{left:0.000000px;}
.x1_c00209{left:54.000000px;}
.x2_c00209{left:127.620000px;}
.x4_c00209{left:154.620000px;}
.x3_c00209{left:159.570000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls8_c00209{letter-spacing:-0.320000pt;}
.ls7_c00209{letter-spacing:-0.256000pt;}
.ls6_c00209{letter-spacing:-0.128000pt;}
.ls5_c00209{letter-spacing:0.000000pt;}
.ls1_c00209{letter-spacing:0.064000pt;}
.ls0_c00209{letter-spacing:0.128000pt;}
.ls3_c00209{letter-spacing:22.400000pt;}
.ls4_c00209{letter-spacing:31.040000pt;}
.ls2_c00209{letter-spacing:34.688000pt;}
.ws5_c00209{word-spacing:-16.064000pt;}
.ws7_c00209{word-spacing:-16.000000pt;}
.ws2_c00209{word-spacing:-15.872000pt;}
.ws1_c00209{word-spacing:-0.128000pt;}
.wsa_c00209{word-spacing:-0.064000pt;}
.ws9_c00209{word-spacing:0.000000pt;}
.ws21_c00209{word-spacing:0.320000pt;}
.ws23_c00209{word-spacing:0.896000pt;}
.ws22_c00209{word-spacing:0.960000pt;}
.ws2b_c00209{word-spacing:2.816000pt;}
.ws26_c00209{word-spacing:3.776000pt;}
.ws1e_c00209{word-spacing:3.840000pt;}
.ws29_c00209{word-spacing:5.696000pt;}
.ws14_c00209{word-spacing:6.016000pt;}
.ws8_c00209{word-spacing:6.080000pt;}
.ws20_c00209{word-spacing:7.296000pt;}
.ws1f_c00209{word-spacing:7.360000pt;}
.wsc_c00209{word-spacing:8.896000pt;}
.wsb_c00209{word-spacing:8.960000pt;}
.ws4_c00209{word-spacing:9.024000pt;}
.ws3_c00209{word-spacing:9.472000pt;}
.ws2c_c00209{word-spacing:14.720000pt;}
.ws2a_c00209{word-spacing:15.040000pt;}
.ws25_c00209{word-spacing:15.296000pt;}
.ws24_c00209{word-spacing:15.360000pt;}
.ws10_c00209{word-spacing:18.112000pt;}
.ws1c_c00209{word-spacing:18.176000pt;}
.wsf_c00209{word-spacing:18.560000pt;}
.ws19_c00209{word-spacing:19.200000pt;}
.ws1a_c00209{word-spacing:19.456000pt;}
.ws11_c00209{word-spacing:20.160000pt;}
.ws12_c00209{word-spacing:20.416000pt;}
.ws13_c00209{word-spacing:20.480000pt;}
.ws2e_c00209{word-spacing:21.952000pt;}
.ws2d_c00209{word-spacing:22.080000pt;}
.wsd_c00209{word-spacing:24.896000pt;}
.wse_c00209{word-spacing:24.960000pt;}
.ws18_c00209{word-spacing:25.280000pt;}
.ws16_c00209{word-spacing:25.472000pt;}
.ws15_c00209{word-spacing:25.536000pt;}
.ws17_c00209{word-spacing:25.600000pt;}
.ws28_c00209{word-spacing:26.176000pt;}
.ws27_c00209{word-spacing:26.240000pt;}
.ws1d_c00209{word-spacing:27.200000pt;}
.ws1b_c00209{word-spacing:29.120000pt;}
.ws6_c00209{word-spacing:44.800000pt;}
.ws0_c00209{word-spacing:92.800000pt;}
._0_c00209{margin-left:-0.896000pt;}
._2_c00209{width:0.960000pt;}
._1_c00209{width:8.896000pt;}
._3_c00209{width:14.976000pt;}
.fs1_c00209{font-size:58.560000pt;}
.fs0_c00209{font-size:64.000000pt;}
.y0_c00209{bottom:0.000000pt;}
.y1_c00209{bottom:54.887600pt;}
.y1e_c00209{bottom:102.519467pt;}
.y1d_c00209{bottom:130.119467pt;}
.y1c_c00209{bottom:157.719467pt;}
.y1b_c00209{bottom:185.319467pt;}
.y1a_c00209{bottom:240.519467pt;}
.y19_c00209{bottom:268.119467pt;}
.y18_c00209{bottom:295.719467pt;}
.y17_c00209{bottom:323.319467pt;}
.y16_c00209{bottom:350.919467pt;}
.y15_c00209{bottom:378.519467pt;}
.y14_c00209{bottom:433.559467pt;}
.y13_c00209{bottom:488.919467pt;}
.y12_c00209{bottom:516.519467pt;}
.y11_c00209{bottom:544.119467pt;}
.y10_c00209{bottom:599.319467pt;}
.yf_c00209{bottom:626.919467pt;}
.ye_c00209{bottom:654.519467pt;}
.yd_c00209{bottom:682.119467pt;}
.yc_c00209{bottom:709.719467pt;}
.yb_c00209{bottom:737.319467pt;}
.ya_c00209{bottom:764.919467pt;}
.y9_c00209{bottom:820.119467pt;}
.y8_c00209{bottom:847.719467pt;}
.y7_c00209{bottom:875.239467pt;}
.y6_c00209{bottom:902.839467pt;}
.y5_c00209{bottom:930.439467pt;}
.y4_c00209{bottom:958.039467pt;}
.y3_c00209{bottom:1013.079467pt;}
.y2_c00209{bottom:1061.399467pt;}
.h2_c00209{height:44.800000pt;}
.h3_c00209{height:48.294844pt;}
.h4_c00209{height:68.288000pt;}
.h0_c00209{height:1122.520000pt;}
.h1_c00209{height:1122.666667pt;}
.w0_c00209{width:793.701333pt;}
.w1_c00209{width:794.000000pt;}
.x0_c00209{left:0.000000pt;}
.x1_c00209{left:48.000000pt;}
.x2_c00209{left:113.440000pt;}
.x4_c00209{left:137.440000pt;}
.x3_c00209{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00210;src:url('chunks/assets/font_097d7e47c0cc134ff80b8b84.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00210;src:url('chunks/assets/font_e62642b5113db17caccbe453.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00210;src:url('chunks/assets/font_d6210a94ea62247bfc7f0352.woff2')format("woff");}.ff4_c00210{font-family:ff4_c00210;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00210;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00210{font-family:ff5_c00210;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00210;src:url('chunks/assets/font_a30dafe13479b3797c50ea57.woff2')format("woff");}.ff6_c00210{font-family:ff6_c00210;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00210;src:url('chunks/assets/font_0ebd55d6af413ad7257f58c0.woff2')format("woff");}.ff7_c00210{font-family:ff7_c00210;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00210;src:url('chunks/assets/font_538f1b271f87406a39e51826.woff2')format("woff");}.ff8_c00210{font-family:ff8_c00210;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00210;src:url('chunks/assets/font_26b09c6e551ae4fbeafc39d8.woff2')format("woff");}.ff9_c00210{font-family:ff9_c00210;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00210;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ffa_c00210{font-family:ffa_c00210;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls10_c00210{letter-spacing:-0.432000px;}
.lse_c00210{letter-spacing:-0.360000px;}
.lsd_c00210{letter-spacing:-0.288000px;}
.lsc_c00210{letter-spacing:-0.144000px;}
.lsf_c00210{letter-spacing:-0.072000px;}
.lsb_c00210{letter-spacing:0.000000px;}
.ls1_c00210{letter-spacing:0.072000px;}
.ls0_c00210{letter-spacing:0.144000px;}
.ls8_c00210{letter-spacing:18.360000px;}
.ls7_c00210{letter-spacing:18.720000px;}
.lsa_c00210{letter-spacing:22.320000px;}
.ls6_c00210{letter-spacing:22.348800px;}
.ls5_c00210{letter-spacing:24.120000px;}
.ls3_c00210{letter-spacing:25.200000px;}
.ls4_c00210{letter-spacing:34.920000px;}
.ls2_c00210{letter-spacing:39.024000px;}
.ls9_c00210{letter-spacing:45.432000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00210{word-spacing:-18.144000px;}
.ws5_c00210{word-spacing:-18.072000px;}
.ws7_c00210{word-spacing:-18.000000px;}
.ws2_c00210{word-spacing:-17.856000px;}
.ws1_c00210{word-spacing:-0.144000px;}
.ws33_c00210{word-spacing:-0.131760px;}
.wsf_c00210{word-spacing:-0.072000px;}
.wse_c00210{word-spacing:0.000000px;}
.ws36_c00210{word-spacing:0.072000px;}
.ws42_c00210{word-spacing:0.288000px;}
.ws25_c00210{word-spacing:0.360000px;}
.ws39_c00210{word-spacing:0.432000px;}
.ws41_c00210{word-spacing:0.648000px;}
.ws27_c00210{word-spacing:1.008000px;}
.ws26_c00210{word-spacing:1.080000px;}
.ws4c_c00210{word-spacing:1.728000px;}
.ws2f_c00210{word-spacing:3.168000px;}
.ws37_c00210{word-spacing:4.176000px;}
.ws2a_c00210{word-spacing:4.248000px;}
.wsa_c00210{word-spacing:4.320000px;}
.ws3b_c00210{word-spacing:4.608000px;}
.ws3c_c00210{word-spacing:4.680000px;}
.ws4a_c00210{word-spacing:5.688000px;}
.ws49_c00210{word-spacing:5.904000px;}
.ws34_c00210{word-spacing:6.048000px;}
.ws2d_c00210{word-spacing:6.408000px;}
.ws19_c00210{word-spacing:6.768000px;}
.ws8_c00210{word-spacing:6.840000px;}
.ws40_c00210{word-spacing:7.128000px;}
.ws46_c00210{word-spacing:7.200000px;}
.ws43_c00210{word-spacing:7.848000px;}
.ws24_c00210{word-spacing:8.208000px;}
.ws23_c00210{word-spacing:8.280000px;}
.ws3a_c00210{word-spacing:8.640000px;}
.ws38_c00210{word-spacing:9.648000px;}
.ws11_c00210{word-spacing:10.008000px;}
.ws10_c00210{word-spacing:10.080000px;}
.ws4_c00210{word-spacing:10.152000px;}
.ws3_c00210{word-spacing:10.656000px;}
.ws3f_c00210{word-spacing:11.808000px;}
.ws3e_c00210{word-spacing:11.880000px;}
.wsd_c00210{word-spacing:16.351200px;}
.ws4d_c00210{word-spacing:16.488000px;}
.ws30_c00210{word-spacing:16.560000px;}
.ws2e_c00210{word-spacing:16.920000px;}
.ws29_c00210{word-spacing:17.208000px;}
.ws28_c00210{word-spacing:17.280000px;}
.ws3d_c00210{word-spacing:19.728000px;}
.ws15_c00210{word-spacing:20.376000px;}
.ws21_c00210{word-spacing:20.448000px;}
.ws14_c00210{word-spacing:20.880000px;}
.ws1e_c00210{word-spacing:21.600000px;}
.ws1f_c00210{word-spacing:21.888000px;}
.ws16_c00210{word-spacing:22.680000px;}
.ws17_c00210{word-spacing:22.968000px;}
.ws18_c00210{word-spacing:23.040000px;}
.ws45_c00210{word-spacing:23.976000px;}
.ws44_c00210{word-spacing:24.048000px;}
.ws48_c00210{word-spacing:24.120000px;}
.ws32_c00210{word-spacing:24.696000px;}
.ws31_c00210{word-spacing:24.840000px;}
.ws47_c00210{word-spacing:27.360000px;}
.ws12_c00210{word-spacing:28.008000px;}
.ws13_c00210{word-spacing:28.080000px;}
.ws1d_c00210{word-spacing:28.440000px;}
.ws1b_c00210{word-spacing:28.656000px;}
.ws1a_c00210{word-spacing:28.728000px;}
.ws1c_c00210{word-spacing:28.800000px;}
.ws2c_c00210{word-spacing:29.448000px;}
.ws2b_c00210{word-spacing:29.520000px;}
.ws22_c00210{word-spacing:30.600000px;}
.ws20_c00210{word-spacing:32.760000px;}
.ws4b_c00210{word-spacing:39.384000px;}
.wsc_c00210{word-spacing:39.816000px;}
.ws9_c00210{word-spacing:44.640000px;}
.ws35_c00210{word-spacing:44.928000px;}
.ws6_c00210{word-spacing:50.400000px;}
.ws0_c00210{word-spacing:104.400000px;}
._0_c00210{margin-left:-1.008000px;}
._2_c00210{width:1.080000px;}
._4_c00210{width:4.464000px;}
._5_c00210{width:7.128000px;}
._1_c00210{width:10.008000px;}
._3_c00210{width:16.848000px;}
.fc2_c00210{color:transparent;}
.fc1_c00210{color:rgb(0,0,0);}
.fc0_c00210{color:rgb(35,31,32);}
.fs1_c00210{font-size:65.880000px;}
.fs0_c00210{font-size:72.000000px;}
.y0_c00210{bottom:0.000000px;}
.y1_c00210{bottom:61.748550px;}
.y1e_c00210{bottom:115.334400px;}
.y1d_c00210{bottom:146.384400px;}
.y1c_c00210{bottom:177.434400px;}
.y30_c00210{bottom:183.554400px;}
.y1b_c00210{bottom:208.484400px;}
.y2f_c00210{bottom:214.694400px;}
.y2e_c00210{bottom:245.744400px;}
.y1a_c00210{bottom:270.584400px;}
.y2d_c00210{bottom:276.704400px;}
.y19_c00210{bottom:301.634400px;}
.y2c_c00210{bottom:328.814400px;}
.y18_c00210{bottom:332.684400px;}
.y2b_c00210{bottom:359.864400px;}
.y17_c00210{bottom:363.734400px;}
.y2a_c00210{bottom:390.914400px;}
.y16_c00210{bottom:394.784400px;}
.y29_c00210{bottom:421.874400px;}
.y15_c00210{bottom:425.834400px;}
.y28_c00210{bottom:454.274400px;}
.y27_c00210{bottom:485.324400px;}
.y14_c00210{bottom:487.754400px;}
.y26_c00210{bottom:516.374400px;}
.y25_c00210{bottom:547.424400px;}
.y13_c00210{bottom:550.034400px;}
.y24_c00210{bottom:578.474400px;}
.y12_c00210{bottom:581.084400px;}
.y23_c00210{bottom:610.784400px;}
.y11_c00210{bottom:612.134400px;}
.y22_c00210{bottom:641.834400px;}
.y10_c00210{bottom:674.234400px;}
.yf_c00210{bottom:705.284400px;}
.ye_c00210{bottom:736.334400px;}
.yd_c00210{bottom:767.384400px;}
.yc_c00210{bottom:798.434400px;}
.yb_c00210{bottom:829.484400px;}
.ya_c00210{bottom:860.534400px;}
.y21_c00210{bottom:891.584400px;}
.y9_c00210{bottom:922.634400px;}
.y8_c00210{bottom:953.684400px;}
.y7_c00210{bottom:984.644400px;}
.y6_c00210{bottom:1015.694400px;}
.y5_c00210{bottom:1046.744400px;}
.y4_c00210{bottom:1077.794400px;}
.y20_c00210{bottom:1108.844400px;}
.y3_c00210{bottom:1139.714400px;}
.y1f_c00210{bottom:1139.894400px;}
.y2_c00210{bottom:1194.074400px;}
.h2_c00210{height:50.400000px;}
.h3_c00210{height:54.331699px;}
.h4_c00210{height:76.824000px;}
.h5_c00210{height:78.048000px;}
.h0_c00210{height:1262.835000px;}
.h1_c00210{height:1263.000000px;}
.w2_c00210{width:0.000000px;}
.w3_c00210{width:0.066000px;}
.w0_c00210{width:892.914000px;}
.w1_c00210{width:893.250000px;}
.x1_c00210{left:-838.913400px;}
.x2_c00210{left:-765.293400px;}
.x4_c00210{left:-738.293400px;}
.x3_c00210{left:-733.343400px;}
.x0_c00210{left:0.000000px;}
.x7_c00210{left:127.620000px;}
.x9_c00210{left:148.950000px;}
.xb_c00210{left:154.620000px;}
.x8_c00210{left:159.570000px;}
.xa_c00210{left:170.190000px;}
.x6_c00210{left:696.510000px;}
.x5_c00210{left:804.366150px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls10_c00210{letter-spacing:-0.384000pt;}
.lse_c00210{letter-spacing:-0.320000pt;}
.lsd_c00210{letter-spacing:-0.256000pt;}
.lsc_c00210{letter-spacing:-0.128000pt;}
.lsf_c00210{letter-spacing:-0.064000pt;}
.lsb_c00210{letter-spacing:0.000000pt;}
.ls1_c00210{letter-spacing:0.064000pt;}
.ls0_c00210{letter-spacing:0.128000pt;}
.ls8_c00210{letter-spacing:16.320000pt;}
.ls7_c00210{letter-spacing:16.640000pt;}
.lsa_c00210{letter-spacing:19.840000pt;}
.ls6_c00210{letter-spacing:19.865600pt;}
.ls5_c00210{letter-spacing:21.440000pt;}
.ls3_c00210{letter-spacing:22.400000pt;}
.ls4_c00210{letter-spacing:31.040000pt;}
.ls2_c00210{letter-spacing:34.688000pt;}
.ls9_c00210{letter-spacing:40.384000pt;}
.wsb_c00210{word-spacing:-16.128000pt;}
.ws5_c00210{word-spacing:-16.064000pt;}
.ws7_c00210{word-spacing:-16.000000pt;}
.ws2_c00210{word-spacing:-15.872000pt;}
.ws1_c00210{word-spacing:-0.128000pt;}
.ws33_c00210{word-spacing:-0.117120pt;}
.wsf_c00210{word-spacing:-0.064000pt;}
.wse_c00210{word-spacing:0.000000pt;}
.ws36_c00210{word-spacing:0.064000pt;}
.ws42_c00210{word-spacing:0.256000pt;}
.ws25_c00210{word-spacing:0.320000pt;}
.ws39_c00210{word-spacing:0.384000pt;}
.ws41_c00210{word-spacing:0.576000pt;}
.ws27_c00210{word-spacing:0.896000pt;}
.ws26_c00210{word-spacing:0.960000pt;}
.ws4c_c00210{word-spacing:1.536000pt;}
.ws2f_c00210{word-spacing:2.816000pt;}
.ws37_c00210{word-spacing:3.712000pt;}
.ws2a_c00210{word-spacing:3.776000pt;}
.wsa_c00210{word-spacing:3.840000pt;}
.ws3b_c00210{word-spacing:4.096000pt;}
.ws3c_c00210{word-spacing:4.160000pt;}
.ws4a_c00210{word-spacing:5.056000pt;}
.ws49_c00210{word-spacing:5.248000pt;}
.ws34_c00210{word-spacing:5.376000pt;}
.ws2d_c00210{word-spacing:5.696000pt;}
.ws19_c00210{word-spacing:6.016000pt;}
.ws8_c00210{word-spacing:6.080000pt;}
.ws40_c00210{word-spacing:6.336000pt;}
.ws46_c00210{word-spacing:6.400000pt;}
.ws43_c00210{word-spacing:6.976000pt;}
.ws24_c00210{word-spacing:7.296000pt;}
.ws23_c00210{word-spacing:7.360000pt;}
.ws3a_c00210{word-spacing:7.680000pt;}
.ws38_c00210{word-spacing:8.576000pt;}
.ws11_c00210{word-spacing:8.896000pt;}
.ws10_c00210{word-spacing:8.960000pt;}
.ws4_c00210{word-spacing:9.024000pt;}
.ws3_c00210{word-spacing:9.472000pt;}
.ws3f_c00210{word-spacing:10.496000pt;}
.ws3e_c00210{word-spacing:10.560000pt;}
.wsd_c00210{word-spacing:14.534400pt;}
.ws4d_c00210{word-spacing:14.656000pt;}
.ws30_c00210{word-spacing:14.720000pt;}
.ws2e_c00210{word-spacing:15.040000pt;}
.ws29_c00210{word-spacing:15.296000pt;}
.ws28_c00210{word-spacing:15.360000pt;}
.ws3d_c00210{word-spacing:17.536000pt;}
.ws15_c00210{word-spacing:18.112000pt;}
.ws21_c00210{word-spacing:18.176000pt;}
.ws14_c00210{word-spacing:18.560000pt;}
.ws1e_c00210{word-spacing:19.200000pt;}
.ws1f_c00210{word-spacing:19.456000pt;}
.ws16_c00210{word-spacing:20.160000pt;}
.ws17_c00210{word-spacing:20.416000pt;}
.ws18_c00210{word-spacing:20.480000pt;}
.ws45_c00210{word-spacing:21.312000pt;}
.ws44_c00210{word-spacing:21.376000pt;}
.ws48_c00210{word-spacing:21.440000pt;}
.ws32_c00210{word-spacing:21.952000pt;}
.ws31_c00210{word-spacing:22.080000pt;}
.ws47_c00210{word-spacing:24.320000pt;}
.ws12_c00210{word-spacing:24.896000pt;}
.ws13_c00210{word-spacing:24.960000pt;}
.ws1d_c00210{word-spacing:25.280000pt;}
.ws1b_c00210{word-spacing:25.472000pt;}
.ws1a_c00210{word-spacing:25.536000pt;}
.ws1c_c00210{word-spacing:25.600000pt;}
.ws2c_c00210{word-spacing:26.176000pt;}
.ws2b_c00210{word-spacing:26.240000pt;}
.ws22_c00210{word-spacing:27.200000pt;}
.ws20_c00210{word-spacing:29.120000pt;}
.ws4b_c00210{word-spacing:35.008000pt;}
.wsc_c00210{word-spacing:35.392000pt;}
.ws9_c00210{word-spacing:39.680000pt;}
.ws35_c00210{word-spacing:39.936000pt;}
.ws6_c00210{word-spacing:44.800000pt;}
.ws0_c00210{word-spacing:92.800000pt;}
._0_c00210{margin-left:-0.896000pt;}
._2_c00210{width:0.960000pt;}
._4_c00210{width:3.968000pt;}
._5_c00210{width:6.336000pt;}
._1_c00210{width:8.896000pt;}
._3_c00210{width:14.976000pt;}
.fs1_c00210{font-size:58.560000pt;}
.fs0_c00210{font-size:64.000000pt;}
.y0_c00210{bottom:0.000000pt;}
.y1_c00210{bottom:54.887600pt;}
.y1e_c00210{bottom:102.519467pt;}
.y1d_c00210{bottom:130.119467pt;}
.y1c_c00210{bottom:157.719467pt;}
.y30_c00210{bottom:163.159467pt;}
.y1b_c00210{bottom:185.319467pt;}
.y2f_c00210{bottom:190.839467pt;}
.y2e_c00210{bottom:218.439467pt;}
.y1a_c00210{bottom:240.519467pt;}
.y2d_c00210{bottom:245.959467pt;}
.y19_c00210{bottom:268.119467pt;}
.y2c_c00210{bottom:292.279467pt;}
.y18_c00210{bottom:295.719467pt;}
.y2b_c00210{bottom:319.879467pt;}
.y17_c00210{bottom:323.319467pt;}
.y2a_c00210{bottom:347.479467pt;}
.y16_c00210{bottom:350.919467pt;}
.y29_c00210{bottom:374.999467pt;}
.y15_c00210{bottom:378.519467pt;}
.y28_c00210{bottom:403.799467pt;}
.y27_c00210{bottom:431.399467pt;}
.y14_c00210{bottom:433.559467pt;}
.y26_c00210{bottom:458.999467pt;}
.y25_c00210{bottom:486.599467pt;}
.y13_c00210{bottom:488.919467pt;}
.y24_c00210{bottom:514.199467pt;}
.y12_c00210{bottom:516.519467pt;}
.y23_c00210{bottom:542.919467pt;}
.y11_c00210{bottom:544.119467pt;}
.y22_c00210{bottom:570.519467pt;}
.y10_c00210{bottom:599.319467pt;}
.yf_c00210{bottom:626.919467pt;}
.ye_c00210{bottom:654.519467pt;}
.yd_c00210{bottom:682.119467pt;}
.yc_c00210{bottom:709.719467pt;}
.yb_c00210{bottom:737.319467pt;}
.ya_c00210{bottom:764.919467pt;}
.y21_c00210{bottom:792.519467pt;}
.y9_c00210{bottom:820.119467pt;}
.y8_c00210{bottom:847.719467pt;}
.y7_c00210{bottom:875.239467pt;}
.y6_c00210{bottom:902.839467pt;}
.y5_c00210{bottom:930.439467pt;}
.y4_c00210{bottom:958.039467pt;}
.y20_c00210{bottom:985.639467pt;}
.y3_c00210{bottom:1013.079467pt;}
.y1f_c00210{bottom:1013.239467pt;}
.y2_c00210{bottom:1061.399467pt;}
.h2_c00210{height:44.800000pt;}
.h3_c00210{height:48.294844pt;}
.h4_c00210{height:68.288000pt;}
.h5_c00210{height:69.376000pt;}
.h0_c00210{height:1122.520000pt;}
.h1_c00210{height:1122.666667pt;}
.w2_c00210{width:0.000000pt;}
.w3_c00210{width:0.058667pt;}
.w0_c00210{width:793.701333pt;}
.w1_c00210{width:794.000000pt;}
.x1_c00210{left:-745.700800pt;}
.x2_c00210{left:-680.260800pt;}
.x4_c00210{left:-656.260800pt;}
.x3_c00210{left:-651.860800pt;}
.x0_c00210{left:0.000000pt;}
.x7_c00210{left:113.440000pt;}
.x9_c00210{left:132.400000pt;}
.xb_c00210{left:137.440000pt;}
.x8_c00210{left:141.840000pt;}
.xa_c00210{left:151.280000pt;}
.x6_c00210{left:619.120000pt;}
.x5_c00210{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00211;src:url('chunks/assets/font_5a13be3f3eb2011eeaccd9cd.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00211;src:url('chunks/assets/font_62ca764a87d810d8843346a3.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:1.575000;font-style:normal;font-weight:normal;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_47bc1971bba910f404e1bde6.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00211;src:url('chunks/assets/font_e2b171a26f7304e2477d6d0a.woff2')format("woff");}.ff5_c00211{font-family:ff5_c00211;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00211{letter-spacing:0.000000px;}
.ls0_c00211{letter-spacing:0.072000px;}
.ls1_c00211{letter-spacing:0.144000px;}
.ls2_c00211{letter-spacing:0.360000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c00211{word-spacing:-0.504000px;}
.ws1e_c00211{word-spacing:-0.432000px;}
.ws1a_c00211{word-spacing:-0.360000px;}
.ws8_c00211{word-spacing:-0.072000px;}
.ws0_c00211{word-spacing:0.000000px;}
.ws4_c00211{word-spacing:1.008000px;}
.ws5_c00211{word-spacing:1.080000px;}
.ws12_c00211{word-spacing:1.728000px;}
.ws11_c00211{word-spacing:1.800000px;}
.ws6_c00211{word-spacing:3.168000px;}
.ws7_c00211{word-spacing:3.240000px;}
.wse_c00211{word-spacing:4.536000px;}
.wsf_c00211{word-spacing:4.608000px;}
.ws16_c00211{word-spacing:6.120000px;}
.wsd_c00211{word-spacing:7.200000px;}
.ws13_c00211{word-spacing:9.000000px;}
.ws17_c00211{word-spacing:9.288000px;}
.ws19_c00211{word-spacing:10.080000px;}
.ws2_c00211{word-spacing:10.368000px;}
.ws3_c00211{word-spacing:12.888000px;}
.ws14_c00211{word-spacing:13.176000px;}
.ws15_c00211{word-spacing:13.320000px;}
.wsc_c00211{word-spacing:14.688000px;}
.ws1d_c00211{word-spacing:16.128000px;}
.ws18_c00211{word-spacing:16.560000px;}
.wsb_c00211{word-spacing:17.640000px;}
.ws1_c00211{word-spacing:19.728000px;}
.ws9_c00211{word-spacing:32.544000px;}
.wsa_c00211{word-spacing:32.688000px;}
.ws1c_c00211{word-spacing:38.448000px;}
.ws1b_c00211{word-spacing:38.520000px;}
._0_c00211{margin-left:-1.382400px;}
._1_c00211{width:1.029600px;}
._3_c00211{width:13.708800px;}
._2_c00211{width:68.400000px;}
.fc1_c00211{color:rgb(0,0,0);}
.fc0_c00211{color:rgb(35,31,32);}
.fs1_c00211{font-size:65.880000px;}
.fs0_c00211{font-size:72.000000px;}
.y0_c00211{bottom:0.000000px;}
.y1_c00211{bottom:61.748550px;}
.y1e_c00211{bottom:197.594400px;}
.y1d_c00211{bottom:228.554400px;}
.y1c_c00211{bottom:259.604400px;}
.y1b_c00211{bottom:290.654400px;}
.y1a_c00211{bottom:321.704400px;}
.y19_c00211{bottom:352.754400px;}
.y18_c00211{bottom:383.804400px;}
.y17_c00211{bottom:414.854400px;}
.y16_c00211{bottom:445.904400px;}
.y15_c00211{bottom:476.954400px;}
.y14_c00211{bottom:539.054400px;}
.y13_c00211{bottom:570.104400px;}
.y12_c00211{bottom:601.154400px;}
.y11_c00211{bottom:632.204400px;}
.y10_c00211{bottom:694.124400px;}
.yf_c00211{bottom:746.234400px;}
.ye_c00211{bottom:777.374400px;}
.yd_c00211{bottom:808.424400px;}
.yc_c00211{bottom:839.474400px;}
.yb_c00211{bottom:870.524400px;}
.ya_c00211{bottom:901.574400px;}
.y9_c00211{bottom:953.594400px;}
.y8_c00211{bottom:984.644400px;}
.y7_c00211{bottom:1015.694400px;}
.y6_c00211{bottom:1046.744400px;}
.y5_c00211{bottom:1077.794400px;}
.y4_c00211{bottom:1108.844400px;}
.y3_c00211{bottom:1139.894400px;}
.y2_c00211{bottom:1194.074400px;}
.h2_c00211{height:50.400000px;}
.h3_c00211{height:54.331699px;}
.h4_c00211{height:76.824000px;}
.h5_c00211{height:78.048000px;}
.h0_c00211{height:1262.835000px;}
.h1_c00211{height:1263.000000px;}
.w0_c00211{width:892.914000px;}
.w1_c00211{width:893.250000px;}
.x0_c00211{left:0.000000px;}
.x1_c00211{left:54.000000px;}
.x2_c00211{left:127.620000px;}
.x3_c00211{left:154.620000px;}
.x4_c00211{left:159.570000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls3_c00211{letter-spacing:0.000000pt;}
.ls0_c00211{letter-spacing:0.064000pt;}
.ls1_c00211{letter-spacing:0.128000pt;}
.ls2_c00211{letter-spacing:0.320000pt;}
.ws10_c00211{word-spacing:-0.448000pt;}
.ws1e_c00211{word-spacing:-0.384000pt;}
.ws1a_c00211{word-spacing:-0.320000pt;}
.ws8_c00211{word-spacing:-0.064000pt;}
.ws0_c00211{word-spacing:0.000000pt;}
.ws4_c00211{word-spacing:0.896000pt;}
.ws5_c00211{word-spacing:0.960000pt;}
.ws12_c00211{word-spacing:1.536000pt;}
.ws11_c00211{word-spacing:1.600000pt;}
.ws6_c00211{word-spacing:2.816000pt;}
.ws7_c00211{word-spacing:2.880000pt;}
.wse_c00211{word-spacing:4.032000pt;}
.wsf_c00211{word-spacing:4.096000pt;}
.ws16_c00211{word-spacing:5.440000pt;}
.wsd_c00211{word-spacing:6.400000pt;}
.ws13_c00211{word-spacing:8.000000pt;}
.ws17_c00211{word-spacing:8.256000pt;}
.ws19_c00211{word-spacing:8.960000pt;}
.ws2_c00211{word-spacing:9.216000pt;}
.ws3_c00211{word-spacing:11.456000pt;}
.ws14_c00211{word-spacing:11.712000pt;}
.ws15_c00211{word-spacing:11.840000pt;}
.wsc_c00211{word-spacing:13.056000pt;}
.ws1d_c00211{word-spacing:14.336000pt;}
.ws18_c00211{word-spacing:14.720000pt;}
.wsb_c00211{word-spacing:15.680000pt;}
.ws1_c00211{word-spacing:17.536000pt;}
.ws9_c00211{word-spacing:28.928000pt;}
.wsa_c00211{word-spacing:29.056000pt;}
.ws1c_c00211{word-spacing:34.176000pt;}
.ws1b_c00211{word-spacing:34.240000pt;}
._0_c00211{margin-left:-1.228800pt;}
._1_c00211{width:0.915200pt;}
._3_c00211{width:12.185600pt;}
._2_c00211{width:60.800000pt;}
.fs1_c00211{font-size:58.560000pt;}
.fs0_c00211{font-size:64.000000pt;}
.y0_c00211{bottom:0.000000pt;}
.y1_c00211{bottom:54.887600pt;}
.y1e_c00211{bottom:175.639467pt;}
.y1d_c00211{bottom:203.159467pt;}
.y1c_c00211{bottom:230.759467pt;}
.y1b_c00211{bottom:258.359467pt;}
.y1a_c00211{bottom:285.959467pt;}
.y19_c00211{bottom:313.559467pt;}
.y18_c00211{bottom:341.159467pt;}
.y17_c00211{bottom:368.759467pt;}
.y16_c00211{bottom:396.359467pt;}
.y15_c00211{bottom:423.959467pt;}
.y14_c00211{bottom:479.159467pt;}
.y13_c00211{bottom:506.759467pt;}
.y12_c00211{bottom:534.359467pt;}
.y11_c00211{bottom:561.959467pt;}
.y10_c00211{bottom:616.999467pt;}
.yf_c00211{bottom:663.319467pt;}
.ye_c00211{bottom:690.999467pt;}
.yd_c00211{bottom:718.599467pt;}
.yc_c00211{bottom:746.199467pt;}
.yb_c00211{bottom:773.799467pt;}
.ya_c00211{bottom:801.399467pt;}
.y9_c00211{bottom:847.639467pt;}
.y8_c00211{bottom:875.239467pt;}
.y7_c00211{bottom:902.839467pt;}
.y6_c00211{bottom:930.439467pt;}
.y5_c00211{bottom:958.039467pt;}
.y4_c00211{bottom:985.639467pt;}
.y3_c00211{bottom:1013.239467pt;}
.y2_c00211{bottom:1061.399467pt;}
.h2_c00211{height:44.800000pt;}
.h3_c00211{height:48.294844pt;}
.h4_c00211{height:68.288000pt;}
.h5_c00211{height:69.376000pt;}
.h0_c00211{height:1122.520000pt;}
.h1_c00211{height:1122.666667pt;}
.w0_c00211{width:793.701333pt;}
.w1_c00211{width:794.000000pt;}
.x0_c00211{left:0.000000pt;}
.x1_c00211{left:48.000000pt;}
.x2_c00211{left:113.440000pt;}
.x3_c00211{left:137.440000pt;}
.x4_c00211{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00212;src:url('chunks/assets/font_bd463e3d52eebce7454ffc0a.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00212;src:url('chunks/assets/font_90173232a4c9c7f63ea36215.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00212;src:url('chunks/assets/font_de64bd99a82a8fd478fbbf90.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00212;src:url('chunks/assets/font_d31bfe3058e1afc854be8dbe.woff2')format("woff");}.ff5_c00212{font-family:ff5_c00212;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00212;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00212{font-family:ff6_c00212;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00212;src:url('chunks/assets/font_dc38cddb4862d0c3a518bb38.woff2')format("woff");}.ff7_c00212{font-family:ff7_c00212;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00212;src:url('chunks/assets/font_db659dbb4155e012d462fb43.woff2')format("woff");}.ff8_c00212{font-family:ff8_c00212;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00212;src:url('chunks/assets/font_de64bd99a82a8fd478fbbf90.woff2')format("woff");}.ff9_c00212{font-family:ff9_c00212;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00212;src:url('chunks/assets/font_7061643772bbc7963f046025.woff2')format("woff");}.ffa_c00212{font-family:ffa_c00212;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00212{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls8_c00212{letter-spacing:-0.360000px;}
.ls9_c00212{letter-spacing:-0.216000px;}
.ls7_c00212{letter-spacing:-0.144000px;}
.ls6_c00212{letter-spacing:0.000000px;}
.ls0_c00212{letter-spacing:0.072000px;}
.ls1_c00212{letter-spacing:0.144000px;}
.ls2_c00212{letter-spacing:0.360000px;}
.ls4_c00212{letter-spacing:20.556000px;}
.ls3_c00212{letter-spacing:25.200000px;}
.ls5_c00212{letter-spacing:37.800000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00212{word-spacing:-18.072000px;}
.ws3_c00212{word-spacing:-18.000000px;}
.ws0_c00212{word-spacing:-17.856000px;}
.ws17_c00212{word-spacing:-0.504000px;}
.ws25_c00212{word-spacing:-0.432000px;}
.ws21_c00212{word-spacing:-0.360000px;}
.ws26_c00212{word-spacing:-0.131760px;}
.wsf_c00212{word-spacing:-0.072000px;}
.ws1_c00212{word-spacing:0.000000px;}
.ws36_c00212{word-spacing:0.216000px;}
.ws3b_c00212{word-spacing:0.288000px;}
.ws3c_c00212{word-spacing:0.648000px;}
.ws3a_c00212{word-spacing:0.720000px;}
.wsb_c00212{word-spacing:1.008000px;}
.wsc_c00212{word-spacing:1.080000px;}
.ws19_c00212{word-spacing:1.728000px;}
.ws18_c00212{word-spacing:1.800000px;}
.ws2c_c00212{word-spacing:2.808000px;}
.ws3e_c00212{word-spacing:2.880000px;}
.wsd_c00212{word-spacing:3.168000px;}
.wse_c00212{word-spacing:3.240000px;}
.ws3f_c00212{word-spacing:3.528000px;}
.ws4_c00212{word-spacing:4.183200px;}
.ws2b_c00212{word-spacing:4.320000px;}
.ws15_c00212{word-spacing:4.536000px;}
.ws16_c00212{word-spacing:4.608000px;}
.ws33_c00212{word-spacing:5.688000px;}
.ws34_c00212{word-spacing:5.760000px;}
.ws1d_c00212{word-spacing:6.120000px;}
.ws39_c00212{word-spacing:6.768000px;}
.ws37_c00212{word-spacing:6.840000px;}
.ws27_c00212{word-spacing:7.056000px;}
.ws14_c00212{word-spacing:7.200000px;}
.ws38_c00212{word-spacing:7.488000px;}
.ws5_c00212{word-spacing:7.776000px;}
.ws2d_c00212{word-spacing:7.848000px;}
.ws2e_c00212{word-spacing:7.920000px;}
.ws2f_c00212{word-spacing:8.136000px;}
.ws29_c00212{word-spacing:8.280000px;}
.ws28_c00212{word-spacing:8.640000px;}
.ws1a_c00212{word-spacing:9.000000px;}
.ws1e_c00212{word-spacing:9.288000px;}
.ws30_c00212{word-spacing:9.648000px;}
.ws2a_c00212{word-spacing:9.720000px;}
.ws20_c00212{word-spacing:10.080000px;}
.ws9_c00212{word-spacing:10.368000px;}
.wsa_c00212{word-spacing:12.888000px;}
.ws1b_c00212{word-spacing:13.176000px;}
.ws1c_c00212{word-spacing:13.320000px;}
.ws13_c00212{word-spacing:14.688000px;}
.ws24_c00212{word-spacing:16.128000px;}
.ws1f_c00212{word-spacing:16.560000px;}
.ws12_c00212{word-spacing:17.640000px;}
.ws35_c00212{word-spacing:19.080000px;}
.ws31_c00212{word-spacing:19.656000px;}
.ws8_c00212{word-spacing:19.728000px;}
.ws32_c00212{word-spacing:19.800000px;}
.ws6_c00212{word-spacing:20.520000px;}
.ws7_c00212{word-spacing:22.248000px;}
.ws3d_c00212{word-spacing:22.320000px;}
.ws10_c00212{word-spacing:32.544000px;}
.ws11_c00212{word-spacing:32.688000px;}
.ws23_c00212{word-spacing:38.448000px;}
.ws22_c00212{word-spacing:38.520000px;}
._0_c00212{margin-left:-1.382400px;}
._3_c00212{width:1.094400px;}
._6_c00212{width:2.952000px;}
._4_c00212{width:7.128000px;}
._2_c00212{width:13.708800px;}
._5_c00212{width:36.547200px;}
._1_c00212{width:68.400000px;}
.fc2_c00212{color:transparent;}
.fc1_c00212{color:rgb(0,0,0);}
.fc0_c00212{color:rgb(35,31,32);}
.fs1_c00212{font-size:65.880000px;}
.fs0_c00212{font-size:72.000000px;}
.y0_c00212{bottom:0.000000px;}
.y1_c00212{bottom:61.748550px;}
.y35_c00212{bottom:177.434400px;}
.y1e_c00212{bottom:197.594400px;}
.y34_c00212{bottom:208.484400px;}
.y1d_c00212{bottom:228.554400px;}
.y33_c00212{bottom:239.534400px;}
.y1c_c00212{bottom:259.604400px;}
.y32_c00212{bottom:270.584400px;}
.y1b_c00212{bottom:290.654400px;}
.y1a_c00212{bottom:321.704400px;}
.y31_c00212{bottom:332.684400px;}
.y19_c00212{bottom:352.754400px;}
.y30_c00212{bottom:363.734400px;}
.y18_c00212{bottom:383.804400px;}
.y2f_c00212{bottom:394.784400px;}
.y17_c00212{bottom:414.854400px;}
.y2e_c00212{bottom:425.834400px;}
.y16_c00212{bottom:445.904400px;}
.y2d_c00212{bottom:456.884400px;}
.y15_c00212{bottom:476.954400px;}
.y2c_c00212{bottom:487.934400px;}
.y2b_c00212{bottom:518.984400px;}
.y14_c00212{bottom:539.054400px;}
.y2a_c00212{bottom:550.034400px;}
.y13_c00212{bottom:570.104400px;}
.y29_c00212{bottom:581.084400px;}
.y12_c00212{bottom:601.154400px;}
.y28_c00212{bottom:612.134400px;}
.y11_c00212{bottom:632.204400px;}
.y27_c00212{bottom:643.184400px;}
.y26_c00212{bottom:674.234400px;}
.y10_c00212{bottom:694.124400px;}
.y25_c00212{bottom:736.334400px;}
.yf_c00212{bottom:746.234400px;}
.y24_c00212{bottom:767.384400px;}
.ye_c00212{bottom:777.374400px;}
.y23_c00212{bottom:798.434400px;}
.yd_c00212{bottom:808.424400px;}
.yc_c00212{bottom:839.474400px;}
.y22_c00212{bottom:860.534400px;}
.yb_c00212{bottom:870.524400px;}
.y21_c00212{bottom:891.584400px;}
.ya_c00212{bottom:901.574400px;}
.y20_c00212{bottom:922.634400px;}
.y9_c00212{bottom:953.594400px;}
.y1f_c00212{bottom:953.684400px;}
.y8_c00212{bottom:984.644400px;}
.y7_c00212{bottom:1015.694400px;}
.y6_c00212{bottom:1046.744400px;}
.y5_c00212{bottom:1077.794400px;}
.y4_c00212{bottom:1108.844400px;}
.y3_c00212{bottom:1139.894400px;}
.y2_c00212{bottom:1194.074400px;}
.h2_c00212{height:50.400000px;}
.h3_c00212{height:54.331699px;}
.h4_c00212{height:76.824000px;}
.h5_c00212{height:78.048000px;}
.h0_c00212{height:1262.835000px;}
.h1_c00212{height:1263.000000px;}
.w2_c00212{width:0.000000px;}
.w3_c00212{width:0.066000px;}
.w0_c00212{width:892.914000px;}
.w1_c00212{width:893.250000px;}
.x1_c00212{left:-838.913400px;}
.x2_c00212{left:-765.293400px;}
.x3_c00212{left:-738.293400px;}
.x4_c00212{left:-733.343400px;}
.x0_c00212{left:0.000000px;}
.x8_c00212{left:127.620000px;}
.x9_c00212{left:154.620000px;}
.x7_c00212{left:159.570000px;}
.x6_c00212{left:696.510000px;}
.x5_c00212{left:804.366150px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls8_c00212{letter-spacing:-0.320000pt;}
.ls9_c00212{letter-spacing:-0.192000pt;}
.ls7_c00212{letter-spacing:-0.128000pt;}
.ls6_c00212{letter-spacing:0.000000pt;}
.ls0_c00212{letter-spacing:0.064000pt;}
.ls1_c00212{letter-spacing:0.128000pt;}
.ls2_c00212{letter-spacing:0.320000pt;}
.ls4_c00212{letter-spacing:18.272000pt;}
.ls3_c00212{letter-spacing:22.400000pt;}
.ls5_c00212{letter-spacing:33.600000pt;}
.ws2_c00212{word-spacing:-16.064000pt;}
.ws3_c00212{word-spacing:-16.000000pt;}
.ws0_c00212{word-spacing:-15.872000pt;}
.ws17_c00212{word-spacing:-0.448000pt;}
.ws25_c00212{word-spacing:-0.384000pt;}
.ws21_c00212{word-spacing:-0.320000pt;}
.ws26_c00212{word-spacing:-0.117120pt;}
.wsf_c00212{word-spacing:-0.064000pt;}
.ws1_c00212{word-spacing:0.000000pt;}
.ws36_c00212{word-spacing:0.192000pt;}
.ws3b_c00212{word-spacing:0.256000pt;}
.ws3c_c00212{word-spacing:0.576000pt;}
.ws3a_c00212{word-spacing:0.640000pt;}
.wsb_c00212{word-spacing:0.896000pt;}
.wsc_c00212{word-spacing:0.960000pt;}
.ws19_c00212{word-spacing:1.536000pt;}
.ws18_c00212{word-spacing:1.600000pt;}
.ws2c_c00212{word-spacing:2.496000pt;}
.ws3e_c00212{word-spacing:2.560000pt;}
.wsd_c00212{word-spacing:2.816000pt;}
.wse_c00212{word-spacing:2.880000pt;}
.ws3f_c00212{word-spacing:3.136000pt;}
.ws4_c00212{word-spacing:3.718400pt;}
.ws2b_c00212{word-spacing:3.840000pt;}
.ws15_c00212{word-spacing:4.032000pt;}
.ws16_c00212{word-spacing:4.096000pt;}
.ws33_c00212{word-spacing:5.056000pt;}
.ws34_c00212{word-spacing:5.120000pt;}
.ws1d_c00212{word-spacing:5.440000pt;}
.ws39_c00212{word-spacing:6.016000pt;}
.ws37_c00212{word-spacing:6.080000pt;}
.ws27_c00212{word-spacing:6.272000pt;}
.ws14_c00212{word-spacing:6.400000pt;}
.ws38_c00212{word-spacing:6.656000pt;}
.ws5_c00212{word-spacing:6.912000pt;}
.ws2d_c00212{word-spacing:6.976000pt;}
.ws2e_c00212{word-spacing:7.040000pt;}
.ws2f_c00212{word-spacing:7.232000pt;}
.ws29_c00212{word-spacing:7.360000pt;}
.ws28_c00212{word-spacing:7.680000pt;}
.ws1a_c00212{word-spacing:8.000000pt;}
.ws1e_c00212{word-spacing:8.256000pt;}
.ws30_c00212{word-spacing:8.576000pt;}
.ws2a_c00212{word-spacing:8.640000pt;}
.ws20_c00212{word-spacing:8.960000pt;}
.ws9_c00212{word-spacing:9.216000pt;}
.wsa_c00212{word-spacing:11.456000pt;}
.ws1b_c00212{word-spacing:11.712000pt;}
.ws1c_c00212{word-spacing:11.840000pt;}
.ws13_c00212{word-spacing:13.056000pt;}
.ws24_c00212{word-spacing:14.336000pt;}
.ws1f_c00212{word-spacing:14.720000pt;}
.ws12_c00212{word-spacing:15.680000pt;}
.ws35_c00212{word-spacing:16.960000pt;}
.ws31_c00212{word-spacing:17.472000pt;}
.ws8_c00212{word-spacing:17.536000pt;}
.ws32_c00212{word-spacing:17.600000pt;}
.ws6_c00212{word-spacing:18.240000pt;}
.ws7_c00212{word-spacing:19.776000pt;}
.ws3d_c00212{word-spacing:19.840000pt;}
.ws10_c00212{word-spacing:28.928000pt;}
.ws11_c00212{word-spacing:29.056000pt;}
.ws23_c00212{word-spacing:34.176000pt;}
.ws22_c00212{word-spacing:34.240000pt;}
._0_c00212{margin-left:-1.228800pt;}
._3_c00212{width:0.972800pt;}
._6_c00212{width:2.624000pt;}
._4_c00212{width:6.336000pt;}
._2_c00212{width:12.185600pt;}
._5_c00212{width:32.486400pt;}
._1_c00212{width:60.800000pt;}
.fs1_c00212{font-size:58.560000pt;}
.fs0_c00212{font-size:64.000000pt;}
.y0_c00212{bottom:0.000000pt;}
.y1_c00212{bottom:54.887600pt;}
.y35_c00212{bottom:157.719467pt;}
.y1e_c00212{bottom:175.639467pt;}
.y34_c00212{bottom:185.319467pt;}
.y1d_c00212{bottom:203.159467pt;}
.y33_c00212{bottom:212.919467pt;}
.y1c_c00212{bottom:230.759467pt;}
.y32_c00212{bottom:240.519467pt;}
.y1b_c00212{bottom:258.359467pt;}
.y1a_c00212{bottom:285.959467pt;}
.y31_c00212{bottom:295.719467pt;}
.y19_c00212{bottom:313.559467pt;}
.y30_c00212{bottom:323.319467pt;}
.y18_c00212{bottom:341.159467pt;}
.y2f_c00212{bottom:350.919467pt;}
.y17_c00212{bottom:368.759467pt;}
.y2e_c00212{bottom:378.519467pt;}
.y16_c00212{bottom:396.359467pt;}
.y2d_c00212{bottom:406.119467pt;}
.y15_c00212{bottom:423.959467pt;}
.y2c_c00212{bottom:433.719467pt;}
.y2b_c00212{bottom:461.319467pt;}
.y14_c00212{bottom:479.159467pt;}
.y2a_c00212{bottom:488.919467pt;}
.y13_c00212{bottom:506.759467pt;}
.y29_c00212{bottom:516.519467pt;}
.y12_c00212{bottom:534.359467pt;}
.y28_c00212{bottom:544.119467pt;}
.y11_c00212{bottom:561.959467pt;}
.y27_c00212{bottom:571.719467pt;}
.y26_c00212{bottom:599.319467pt;}
.y10_c00212{bottom:616.999467pt;}
.y25_c00212{bottom:654.519467pt;}
.yf_c00212{bottom:663.319467pt;}
.y24_c00212{bottom:682.119467pt;}
.ye_c00212{bottom:690.999467pt;}
.y23_c00212{bottom:709.719467pt;}
.yd_c00212{bottom:718.599467pt;}
.yc_c00212{bottom:746.199467pt;}
.y22_c00212{bottom:764.919467pt;}
.yb_c00212{bottom:773.799467pt;}
.y21_c00212{bottom:792.519467pt;}
.ya_c00212{bottom:801.399467pt;}
.y20_c00212{bottom:820.119467pt;}
.y9_c00212{bottom:847.639467pt;}
.y1f_c00212{bottom:847.719467pt;}
.y8_c00212{bottom:875.239467pt;}
.y7_c00212{bottom:902.839467pt;}
.y6_c00212{bottom:930.439467pt;}
.y5_c00212{bottom:958.039467pt;}
.y4_c00212{bottom:985.639467pt;}
.y3_c00212{bottom:1013.239467pt;}
.y2_c00212{bottom:1061.399467pt;}
.h2_c00212{height:44.800000pt;}
.h3_c00212{height:48.294844pt;}
.h4_c00212{height:68.288000pt;}
.h5_c00212{height:69.376000pt;}
.h0_c00212{height:1122.520000pt;}
.h1_c00212{height:1122.666667pt;}
.w2_c00212{width:0.000000pt;}
.w3_c00212{width:0.058667pt;}
.w0_c00212{width:793.701333pt;}
.w1_c00212{width:794.000000pt;}
.x1_c00212{left:-745.700800pt;}
.x2_c00212{left:-680.260800pt;}
.x3_c00212{left:-656.260800pt;}
.x4_c00212{left:-651.860800pt;}
.x0_c00212{left:0.000000pt;}
.x8_c00212{left:113.440000pt;}
.x9_c00212{left:137.440000pt;}
.x7_c00212{left:141.840000pt;}
.x6_c00212{left:619.120000pt;}
.x5_c00212{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00213;src:url('chunks/assets/font_ac590f6cfe5b39bf26f1ce48.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00213;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00213;src:url('chunks/assets/font_13d3adc4afaf3799a932d030.woff2')format("woff");}.ff4_c00213{font-family:ff4_c00213;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00213;src:url('chunks/assets/font_c1c492ea0a2a5ef9fa591040.woff2')format("woff");}.ff5_c00213{font-family:ff5_c00213;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00213{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls6_c00213{letter-spacing:0.000000px;}
.ls1_c00213{letter-spacing:0.072000px;}
.ls2_c00213{letter-spacing:0.144000px;}
.ls3_c00213{letter-spacing:25.632000px;}
.ls5_c00213{letter-spacing:26.640000px;}
.ls4_c00213{letter-spacing:30.600000px;}
.ls0_c00213{letter-spacing:45.432000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00213{word-spacing:-18.072000px;}
.ws8_c00213{word-spacing:-0.144000px;}
.wsc_c00213{word-spacing:-0.072000px;}
.ws2_c00213{word-spacing:0.000000px;}
.ws0_c00213{word-spacing:0.072000px;}
.wsb_c00213{word-spacing:0.288000px;}
.ws14_c00213{word-spacing:0.360000px;}
.ws1e_c00213{word-spacing:0.576000px;}
.ws17_c00213{word-spacing:0.720000px;}
.ws18_c00213{word-spacing:1.080000px;}
.ws12_c00213{word-spacing:3.240000px;}
.wsa_c00213{word-spacing:5.400000px;}
.ws11_c00213{word-spacing:6.048000px;}
.ws5_c00213{word-spacing:7.416000px;}
.ws7_c00213{word-spacing:7.488000px;}
.ws6_c00213{word-spacing:7.560000px;}
.ws1b_c00213{word-spacing:8.280000px;}
.wsf_c00213{word-spacing:8.424000px;}
.ws1c_c00213{word-spacing:8.568000px;}
.ws10_c00213{word-spacing:8.640000px;}
.ws19_c00213{word-spacing:12.888000px;}
.ws1a_c00213{word-spacing:12.960000px;}
.ws13_c00213{word-spacing:15.552000px;}
.wsd_c00213{word-spacing:17.496000px;}
.ws4_c00213{word-spacing:17.568000px;}
.wse_c00213{word-spacing:17.640000px;}
.ws15_c00213{word-spacing:17.928000px;}
.ws16_c00213{word-spacing:18.000000px;}
.ws1d_c00213{word-spacing:20.160000px;}
.ws9_c00213{word-spacing:31.248000px;}
.ws3_c00213{word-spacing:57.528000px;}
._0_c00213{margin-left:-1.310400px;}
._2_c00213{width:1.036800px;}
._1_c00213{width:5.544000px;}
.fc1_c00213{color:rgb(0,0,0);}
.fc0_c00213{color:rgb(35,31,32);}
.fs1_c00213{font-size:65.880000px;}
.fs0_c00213{font-size:72.000000px;}
.y0_c00213{bottom:0.000000px;}
.y1_c00213{bottom:61.748550px;}
.y1e_c00213{bottom:191.384250px;}
.y1d_c00213{bottom:222.524250px;}
.y1c_c00213{bottom:253.574250px;}
.y1b_c00213{bottom:284.624250px;}
.y1a_c00213{bottom:336.554250px;}
.y19_c00213{bottom:367.694250px;}
.y18_c00213{bottom:398.744250px;}
.y17_c00213{bottom:429.794250px;}
.y16_c00213{bottom:460.844250px;}
.y15_c00213{bottom:512.774250px;}
.y14_c00213{bottom:543.914250px;}
.y13_c00213{bottom:574.964250px;}
.y12_c00213{bottom:626.984250px;}
.y11_c00213{bottom:658.124250px;}
.y10_c00213{bottom:689.174250px;}
.yf_c00213{bottom:720.224250px;}
.ye_c00213{bottom:751.274250px;}
.yd_c00213{bottom:803.204250px;}
.yc_c00213{bottom:834.344250px;}
.yb_c00213{bottom:865.304250px;}
.ya_c00213{bottom:917.414250px;}
.y9_c00213{bottom:948.374250px;}
.y8_c00213{bottom:980.774250px;}
.y7_c00213{bottom:1013.174250px;}
.y6_c00213{bottom:1044.224250px;}
.y5_c00213{bottom:1075.184250px;}
.y4_c00213{bottom:1107.584250px;}
.y3_c00213{bottom:1138.544250px;}
.y2_c00213{bottom:1194.074400px;}
.h2_c00213{height:50.400000px;}
.h3_c00213{height:54.331699px;}
.h4_c00213{height:76.824000px;}
.h5_c00213{height:78.048000px;}
.h0_c00213{height:1262.835000px;}
.h1_c00213{height:1263.000000px;}
.w0_c00213{width:892.914000px;}
.w1_c00213{width:893.250000px;}
.x0_c00213{left:0.000000px;}
.x1_c00213{left:54.000000px;}
.x2_c00213{left:127.620000px;}
.x3_c00213{left:148.950000px;}
.x5_c00213{left:154.620000px;}
.x4_c00213{left:170.190000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls6_c00213{letter-spacing:0.000000pt;}
.ls1_c00213{letter-spacing:0.064000pt;}
.ls2_c00213{letter-spacing:0.128000pt;}
.ls3_c00213{letter-spacing:22.784000pt;}
.ls5_c00213{letter-spacing:23.680000pt;}
.ls4_c00213{letter-spacing:27.200000pt;}
.ls0_c00213{letter-spacing:40.384000pt;}
.ws1_c00213{word-spacing:-16.064000pt;}
.ws8_c00213{word-spacing:-0.128000pt;}
.wsc_c00213{word-spacing:-0.064000pt;}
.ws2_c00213{word-spacing:0.000000pt;}
.ws0_c00213{word-spacing:0.064000pt;}
.wsb_c00213{word-spacing:0.256000pt;}
.ws14_c00213{word-spacing:0.320000pt;}
.ws1e_c00213{word-spacing:0.512000pt;}
.ws17_c00213{word-spacing:0.640000pt;}
.ws18_c00213{word-spacing:0.960000pt;}
.ws12_c00213{word-spacing:2.880000pt;}
.wsa_c00213{word-spacing:4.800000pt;}
.ws11_c00213{word-spacing:5.376000pt;}
.ws5_c00213{word-spacing:6.592000pt;}
.ws7_c00213{word-spacing:6.656000pt;}
.ws6_c00213{word-spacing:6.720000pt;}
.ws1b_c00213{word-spacing:7.360000pt;}
.wsf_c00213{word-spacing:7.488000pt;}
.ws1c_c00213{word-spacing:7.616000pt;}
.ws10_c00213{word-spacing:7.680000pt;}
.ws19_c00213{word-spacing:11.456000pt;}
.ws1a_c00213{word-spacing:11.520000pt;}
.ws13_c00213{word-spacing:13.824000pt;}
.wsd_c00213{word-spacing:15.552000pt;}
.ws4_c00213{word-spacing:15.616000pt;}
.wse_c00213{word-spacing:15.680000pt;}
.ws15_c00213{word-spacing:15.936000pt;}
.ws16_c00213{word-spacing:16.000000pt;}
.ws1d_c00213{word-spacing:17.920000pt;}
.ws9_c00213{word-spacing:27.776000pt;}
.ws3_c00213{word-spacing:51.136000pt;}
._0_c00213{margin-left:-1.164800pt;}
._2_c00213{width:0.921600pt;}
._1_c00213{width:4.928000pt;}
.fs1_c00213{font-size:58.560000pt;}
.fs0_c00213{font-size:64.000000pt;}
.y0_c00213{bottom:0.000000pt;}
.y1_c00213{bottom:54.887600pt;}
.y1e_c00213{bottom:170.119333pt;}
.y1d_c00213{bottom:197.799333pt;}
.y1c_c00213{bottom:225.399333pt;}
.y1b_c00213{bottom:252.999333pt;}
.y1a_c00213{bottom:299.159333pt;}
.y19_c00213{bottom:326.839333pt;}
.y18_c00213{bottom:354.439333pt;}
.y17_c00213{bottom:382.039333pt;}
.y16_c00213{bottom:409.639333pt;}
.y15_c00213{bottom:455.799333pt;}
.y14_c00213{bottom:483.479333pt;}
.y13_c00213{bottom:511.079333pt;}
.y12_c00213{bottom:557.319333pt;}
.y11_c00213{bottom:584.999333pt;}
.y10_c00213{bottom:612.599333pt;}
.yf_c00213{bottom:640.199333pt;}
.ye_c00213{bottom:667.799333pt;}
.yd_c00213{bottom:713.959333pt;}
.yc_c00213{bottom:741.639333pt;}
.yb_c00213{bottom:769.159333pt;}
.ya_c00213{bottom:815.479333pt;}
.y9_c00213{bottom:842.999333pt;}
.y8_c00213{bottom:871.799333pt;}
.y7_c00213{bottom:900.599333pt;}
.y6_c00213{bottom:928.199333pt;}
.y5_c00213{bottom:955.719333pt;}
.y4_c00213{bottom:984.519333pt;}
.y3_c00213{bottom:1012.039333pt;}
.y2_c00213{bottom:1061.399467pt;}
.h2_c00213{height:44.800000pt;}
.h3_c00213{height:48.294844pt;}
.h4_c00213{height:68.288000pt;}
.h5_c00213{height:69.376000pt;}
.h0_c00213{height:1122.520000pt;}
.h1_c00213{height:1122.666667pt;}
.w0_c00213{width:793.701333pt;}
.w1_c00213{width:794.000000pt;}
.x0_c00213{left:0.000000pt;}
.x1_c00213{left:48.000000pt;}
.x2_c00213{left:113.440000pt;}
.x3_c00213{left:132.400000pt;}
.x5_c00213{left:137.440000pt;}
.x4_c00213{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00214;src:url('chunks/assets/font_7907ce9e3cfb1d4b65a40b39.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00214;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00214;src:url('chunks/assets/font_49b1bc9fc3f0b6c613332b7a.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00214;src:url('chunks/assets/font_2e3cad29e0b7afd4aa64af4a.woff2')format("woff");}.ff5_c00214{font-family:ff5_c00214;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00214;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00214{font-family:ff6_c00214;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00214;src:url('chunks/assets/font_1e9ae0d56bba56b637cb7ae6.woff2')format("woff");}.ff7_c00214{font-family:ff7_c00214;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00214;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff8_c00214{font-family:ff8_c00214;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00214;src:url('chunks/assets/font_4febbdab53b7aa28d7132df3.woff2')format("woff");}.ff9_c00214{font-family:ff9_c00214;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00214;src:url('chunks/assets/font_380215dd7293a92a7d5c6ccd.woff2')format("woff");}.ffa_c00214{font-family:ffa_c00214;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00214{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.lsa_c00214{letter-spacing:-0.360000px;}
.ls9_c00214{letter-spacing:-0.288000px;}
.lsb_c00214{letter-spacing:-0.216000px;}
.ls8_c00214{letter-spacing:0.000000px;}
.ls1_c00214{letter-spacing:0.072000px;}
.ls2_c00214{letter-spacing:0.144000px;}
.ls6_c00214{letter-spacing:18.000000px;}
.ls3_c00214{letter-spacing:25.632000px;}
.ls5_c00214{letter-spacing:26.640000px;}
.ls4_c00214{letter-spacing:30.600000px;}
.ls0_c00214{letter-spacing:45.432000px;}
.ls7_c00214{letter-spacing:48.600000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00214{word-spacing:-18.144000px;}
.ws1_c00214{word-spacing:-18.072000px;}
.ws9_c00214{word-spacing:-18.000000px;}
.ws5_c00214{word-spacing:-17.784000px;}
.ws12_c00214{word-spacing:-0.144000px;}
.ws29_c00214{word-spacing:-0.131760px;}
.ws16_c00214{word-spacing:-0.072000px;}
.ws2_c00214{word-spacing:0.000000px;}
.ws0_c00214{word-spacing:0.072000px;}
.ws15_c00214{word-spacing:0.288000px;}
.ws1e_c00214{word-spacing:0.360000px;}
.ws28_c00214{word-spacing:0.576000px;}
.ws21_c00214{word-spacing:0.720000px;}
.ws3_c00214{word-spacing:0.792000px;}
.ws2e_c00214{word-spacing:1.008000px;}
.ws22_c00214{word-spacing:1.080000px;}
.ws36_c00214{word-spacing:1.800000px;}
.ws40_c00214{word-spacing:2.088000px;}
.wsc_c00214{word-spacing:2.160000px;}
.ws4_c00214{word-spacing:2.304000px;}
.ws1c_c00214{word-spacing:3.240000px;}
.ws2f_c00214{word-spacing:5.328000px;}
.ws14_c00214{word-spacing:5.400000px;}
.ws3d_c00214{word-spacing:5.760000px;}
.ws3c_c00214{word-spacing:5.904000px;}
.ws1b_c00214{word-spacing:6.048000px;}
.ws31_c00214{word-spacing:6.408000px;}
.ws30_c00214{word-spacing:6.480000px;}
.ws6_c00214{word-spacing:6.552000px;}
.wsf_c00214{word-spacing:7.416000px;}
.ws11_c00214{word-spacing:7.488000px;}
.ws10_c00214{word-spacing:7.560000px;}
.ws3a_c00214{word-spacing:7.848000px;}
.ws38_c00214{word-spacing:7.920000px;}
.ws39_c00214{word-spacing:8.208000px;}
.ws25_c00214{word-spacing:8.280000px;}
.ws19_c00214{word-spacing:8.424000px;}
.ws26_c00214{word-spacing:8.568000px;}
.ws1a_c00214{word-spacing:8.640000px;}
.ws3e_c00214{word-spacing:9.000000px;}
.ws3f_c00214{word-spacing:9.216000px;}
.ws33_c00214{word-spacing:9.936000px;}
.ws35_c00214{word-spacing:10.008000px;}
.ws37_c00214{word-spacing:10.080000px;}
.ws34_c00214{word-spacing:10.368000px;}
.ws32_c00214{word-spacing:10.440000px;}
.ws7_c00214{word-spacing:10.512000px;}
.wsb_c00214{word-spacing:10.605600px;}
.ws8_c00214{word-spacing:10.944000px;}
.ws23_c00214{word-spacing:12.888000px;}
.ws24_c00214{word-spacing:12.960000px;}
.ws3b_c00214{word-spacing:14.040000px;}
.ws2c_c00214{word-spacing:14.976000px;}
.ws2b_c00214{word-spacing:15.120000px;}
.ws2d_c00214{word-spacing:15.408000px;}
.ws2a_c00214{word-spacing:15.480000px;}
.ws1d_c00214{word-spacing:15.552000px;}
.ws17_c00214{word-spacing:17.496000px;}
.wse_c00214{word-spacing:17.568000px;}
.ws18_c00214{word-spacing:17.640000px;}
.ws1f_c00214{word-spacing:17.928000px;}
.ws20_c00214{word-spacing:18.000000px;}
.ws27_c00214{word-spacing:20.160000px;}
.ws13_c00214{word-spacing:31.248000px;}
.wsd_c00214{word-spacing:57.528000px;}
._0_c00214{margin-left:-1.310400px;}
._2_c00214{width:1.036800px;}
._1_c00214{width:5.544000px;}
._3_c00214{width:15.552000px;}
._4_c00214{width:29.952000px;}
.fc2_c00214{color:transparent;}
.fc1_c00214{color:rgb(0,0,0);}
.fc0_c00214{color:rgb(35,31,32);}
.fs1_c00214{font-size:65.880000px;}
.fs0_c00214{font-size:72.000000px;}
.y0_c00214{bottom:0.000000px;}
.y1_c00214{bottom:61.748550px;}
.y2f_c00214{bottom:132.344550px;}
.y2e_c00214{bottom:163.394550px;}
.y1e_c00214{bottom:191.384250px;}
.y2d_c00214{bottom:194.444550px;}
.y1d_c00214{bottom:222.524250px;}
.y2c_c00214{bottom:225.494550px;}
.y1c_c00214{bottom:253.574250px;}
.y2b_c00214{bottom:256.544550px;}
.y1b_c00214{bottom:284.624250px;}
.y2a_c00214{bottom:287.504550px;}
.y1a_c00214{bottom:336.554250px;}
.y29_c00214{bottom:350.954550px;}
.y19_c00214{bottom:367.694250px;}
.y28_c00214{bottom:382.004550px;}
.y18_c00214{bottom:398.744250px;}
.y27_c00214{bottom:413.054550px;}
.y17_c00214{bottom:429.794250px;}
.y26_c00214{bottom:444.104550px;}
.y16_c00214{bottom:460.844250px;}
.y25_c00214{bottom:506.204550px;}
.y15_c00214{bottom:512.774250px;}
.y24_c00214{bottom:537.254550px;}
.y14_c00214{bottom:543.914250px;}
.y23_c00214{bottom:568.304550px;}
.y13_c00214{bottom:574.964250px;}
.y22_c00214{bottom:599.354550px;}
.y12_c00214{bottom:626.984250px;}
.y21_c00214{bottom:630.404550px;}
.y11_c00214{bottom:658.124250px;}
.y20_c00214{bottom:661.454550px;}
.y10_c00214{bottom:689.174250px;}
.yf_c00214{bottom:720.224250px;}
.y1f_c00214{bottom:723.554550px;}
.ye_c00214{bottom:751.274250px;}
.yd_c00214{bottom:803.204250px;}
.yc_c00214{bottom:834.344250px;}
.yb_c00214{bottom:865.304250px;}
.ya_c00214{bottom:917.414250px;}
.y9_c00214{bottom:948.374250px;}
.y8_c00214{bottom:980.774250px;}
.y7_c00214{bottom:1013.174250px;}
.y6_c00214{bottom:1044.224250px;}
.y5_c00214{bottom:1075.184250px;}
.y4_c00214{bottom:1107.584250px;}
.y3_c00214{bottom:1138.544250px;}
.y2_c00214{bottom:1194.074400px;}
.h2_c00214{height:50.400000px;}
.h3_c00214{height:54.331699px;}
.h4_c00214{height:76.824000px;}
.h5_c00214{height:78.048000px;}
.h0_c00214{height:1262.835000px;}
.h1_c00214{height:1263.000000px;}
.w2_c00214{width:0.000000px;}
.w3_c00214{width:0.066000px;}
.w0_c00214{width:892.914000px;}
.w1_c00214{width:893.250000px;}
.x1_c00214{left:-838.913400px;}
.x2_c00214{left:-765.293400px;}
.x3_c00214{left:-743.963400px;}
.x5_c00214{left:-738.293400px;}
.x4_c00214{left:-722.723400px;}
.x0_c00214{left:0.000000px;}
.x9_c00214{left:127.620000px;}
.xb_c00214{left:148.950000px;}
.x8_c00214{left:154.440000px;}
.xa_c00214{left:159.570000px;}
.xc_c00214{left:170.190000px;}
.x7_c00214{left:696.510000px;}
.x6_c00214{left:804.366150px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.lsa_c00214{letter-spacing:-0.320000pt;}
.ls9_c00214{letter-spacing:-0.256000pt;}
.lsb_c00214{letter-spacing:-0.192000pt;}
.ls8_c00214{letter-spacing:0.000000pt;}
.ls1_c00214{letter-spacing:0.064000pt;}
.ls2_c00214{letter-spacing:0.128000pt;}
.ls6_c00214{letter-spacing:16.000000pt;}
.ls3_c00214{letter-spacing:22.784000pt;}
.ls5_c00214{letter-spacing:23.680000pt;}
.ls4_c00214{letter-spacing:27.200000pt;}
.ls0_c00214{letter-spacing:40.384000pt;}
.ls7_c00214{letter-spacing:43.200000pt;}
.wsa_c00214{word-spacing:-16.128000pt;}
.ws1_c00214{word-spacing:-16.064000pt;}
.ws9_c00214{word-spacing:-16.000000pt;}
.ws5_c00214{word-spacing:-15.808000pt;}
.ws12_c00214{word-spacing:-0.128000pt;}
.ws29_c00214{word-spacing:-0.117120pt;}
.ws16_c00214{word-spacing:-0.064000pt;}
.ws2_c00214{word-spacing:0.000000pt;}
.ws0_c00214{word-spacing:0.064000pt;}
.ws15_c00214{word-spacing:0.256000pt;}
.ws1e_c00214{word-spacing:0.320000pt;}
.ws28_c00214{word-spacing:0.512000pt;}
.ws21_c00214{word-spacing:0.640000pt;}
.ws3_c00214{word-spacing:0.704000pt;}
.ws2e_c00214{word-spacing:0.896000pt;}
.ws22_c00214{word-spacing:0.960000pt;}
.ws36_c00214{word-spacing:1.600000pt;}
.ws40_c00214{word-spacing:1.856000pt;}
.wsc_c00214{word-spacing:1.920000pt;}
.ws4_c00214{word-spacing:2.048000pt;}
.ws1c_c00214{word-spacing:2.880000pt;}
.ws2f_c00214{word-spacing:4.736000pt;}
.ws14_c00214{word-spacing:4.800000pt;}
.ws3d_c00214{word-spacing:5.120000pt;}
.ws3c_c00214{word-spacing:5.248000pt;}
.ws1b_c00214{word-spacing:5.376000pt;}
.ws31_c00214{word-spacing:5.696000pt;}
.ws30_c00214{word-spacing:5.760000pt;}
.ws6_c00214{word-spacing:5.824000pt;}
.wsf_c00214{word-spacing:6.592000pt;}
.ws11_c00214{word-spacing:6.656000pt;}
.ws10_c00214{word-spacing:6.720000pt;}
.ws3a_c00214{word-spacing:6.976000pt;}
.ws38_c00214{word-spacing:7.040000pt;}
.ws39_c00214{word-spacing:7.296000pt;}
.ws25_c00214{word-spacing:7.360000pt;}
.ws19_c00214{word-spacing:7.488000pt;}
.ws26_c00214{word-spacing:7.616000pt;}
.ws1a_c00214{word-spacing:7.680000pt;}
.ws3e_c00214{word-spacing:8.000000pt;}
.ws3f_c00214{word-spacing:8.192000pt;}
.ws33_c00214{word-spacing:8.832000pt;}
.ws35_c00214{word-spacing:8.896000pt;}
.ws37_c00214{word-spacing:8.960000pt;}
.ws34_c00214{word-spacing:9.216000pt;}
.ws32_c00214{word-spacing:9.280000pt;}
.ws7_c00214{word-spacing:9.344000pt;}
.wsb_c00214{word-spacing:9.427200pt;}
.ws8_c00214{word-spacing:9.728000pt;}
.ws23_c00214{word-spacing:11.456000pt;}
.ws24_c00214{word-spacing:11.520000pt;}
.ws3b_c00214{word-spacing:12.480000pt;}
.ws2c_c00214{word-spacing:13.312000pt;}
.ws2b_c00214{word-spacing:13.440000pt;}
.ws2d_c00214{word-spacing:13.696000pt;}
.ws2a_c00214{word-spacing:13.760000pt;}
.ws1d_c00214{word-spacing:13.824000pt;}
.ws17_c00214{word-spacing:15.552000pt;}
.wse_c00214{word-spacing:15.616000pt;}
.ws18_c00214{word-spacing:15.680000pt;}
.ws1f_c00214{word-spacing:15.936000pt;}
.ws20_c00214{word-spacing:16.000000pt;}
.ws27_c00214{word-spacing:17.920000pt;}
.ws13_c00214{word-spacing:27.776000pt;}
.wsd_c00214{word-spacing:51.136000pt;}
._0_c00214{margin-left:-1.164800pt;}
._2_c00214{width:0.921600pt;}
._1_c00214{width:4.928000pt;}
._3_c00214{width:13.824000pt;}
._4_c00214{width:26.624000pt;}
.fs1_c00214{font-size:58.560000pt;}
.fs0_c00214{font-size:64.000000pt;}
.y0_c00214{bottom:0.000000pt;}
.y1_c00214{bottom:54.887600pt;}
.y2f_c00214{bottom:117.639600pt;}
.y2e_c00214{bottom:145.239600pt;}
.y1e_c00214{bottom:170.119333pt;}
.y2d_c00214{bottom:172.839600pt;}
.y1d_c00214{bottom:197.799333pt;}
.y2c_c00214{bottom:200.439600pt;}
.y1c_c00214{bottom:225.399333pt;}
.y2b_c00214{bottom:228.039600pt;}
.y1b_c00214{bottom:252.999333pt;}
.y2a_c00214{bottom:255.559600pt;}
.y1a_c00214{bottom:299.159333pt;}
.y29_c00214{bottom:311.959600pt;}
.y19_c00214{bottom:326.839333pt;}
.y28_c00214{bottom:339.559600pt;}
.y18_c00214{bottom:354.439333pt;}
.y27_c00214{bottom:367.159600pt;}
.y17_c00214{bottom:382.039333pt;}
.y26_c00214{bottom:394.759600pt;}
.y16_c00214{bottom:409.639333pt;}
.y25_c00214{bottom:449.959600pt;}
.y15_c00214{bottom:455.799333pt;}
.y24_c00214{bottom:477.559600pt;}
.y14_c00214{bottom:483.479333pt;}
.y23_c00214{bottom:505.159600pt;}
.y13_c00214{bottom:511.079333pt;}
.y22_c00214{bottom:532.759600pt;}
.y12_c00214{bottom:557.319333pt;}
.y21_c00214{bottom:560.359600pt;}
.y11_c00214{bottom:584.999333pt;}
.y20_c00214{bottom:587.959600pt;}
.y10_c00214{bottom:612.599333pt;}
.yf_c00214{bottom:640.199333pt;}
.y1f_c00214{bottom:643.159600pt;}
.ye_c00214{bottom:667.799333pt;}
.yd_c00214{bottom:713.959333pt;}
.yc_c00214{bottom:741.639333pt;}
.yb_c00214{bottom:769.159333pt;}
.ya_c00214{bottom:815.479333pt;}
.y9_c00214{bottom:842.999333pt;}
.y8_c00214{bottom:871.799333pt;}
.y7_c00214{bottom:900.599333pt;}
.y6_c00214{bottom:928.199333pt;}
.y5_c00214{bottom:955.719333pt;}
.y4_c00214{bottom:984.519333pt;}
.y3_c00214{bottom:1012.039333pt;}
.y2_c00214{bottom:1061.399467pt;}
.h2_c00214{height:44.800000pt;}
.h3_c00214{height:48.294844pt;}
.h4_c00214{height:68.288000pt;}
.h5_c00214{height:69.376000pt;}
.h0_c00214{height:1122.520000pt;}
.h1_c00214{height:1122.666667pt;}
.w2_c00214{width:0.000000pt;}
.w3_c00214{width:0.058667pt;}
.w0_c00214{width:793.701333pt;}
.w1_c00214{width:794.000000pt;}
.x1_c00214{left:-745.700800pt;}
.x2_c00214{left:-680.260800pt;}
.x3_c00214{left:-661.300800pt;}
.x5_c00214{left:-656.260800pt;}
.x4_c00214{left:-642.420800pt;}
.x0_c00214{left:0.000000pt;}
.x9_c00214{left:113.440000pt;}
.xb_c00214{left:132.400000pt;}
.x8_c00214{left:137.280000pt;}
.xa_c00214{left:141.840000pt;}
.xc_c00214{left:151.280000pt;}
.x7_c00214{left:619.120000pt;}
.x6_c00214{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00215;src:url('chunks/assets/font_e8086f32f5265229095405d5.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_6daa4966b2814f00cb123e1e.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00215;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00215;src:url('chunks/assets/font_5c2d3cf7cd9bcfe99754e3ac.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls5_c00215{letter-spacing:-0.288000px;}
.ls4_c00215{letter-spacing:-0.216000px;}
.ls3_c00215{letter-spacing:0.000000px;}
.ls0_c00215{letter-spacing:0.072000px;}
.ls2_c00215{letter-spacing:0.144000px;}
.ls1_c00215{letter-spacing:45.432000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00215{word-spacing:-18.144000px;}
.ws9_c00215{word-spacing:-18.072000px;}
.ws3_c00215{word-spacing:-18.000000px;}
.ws6_c00215{word-spacing:-17.712000px;}
.ws1f_c00215{word-spacing:-0.360000px;}
.ws8_c00215{word-spacing:-0.288000px;}
.wsd_c00215{word-spacing:-0.072000px;}
.wsc_c00215{word-spacing:0.000000px;}
.ws16_c00215{word-spacing:0.216000px;}
.wsb_c00215{word-spacing:0.792000px;}
.ws17_c00215{word-spacing:0.936000px;}
.wsa_c00215{word-spacing:1.008000px;}
.ws2_c00215{word-spacing:1.368000px;}
.wse_c00215{word-spacing:1.440000px;}
.ws1_c00215{word-spacing:1.872000px;}
.ws15_c00215{word-spacing:3.816000px;}
.ws7_c00215{word-spacing:3.823200px;}
.ws14_c00215{word-spacing:3.960000px;}
.ws1e_c00215{word-spacing:5.688000px;}
.ws1a_c00215{word-spacing:5.976000px;}
.ws19_c00215{word-spacing:6.048000px;}
.ws18_c00215{word-spacing:6.120000px;}
.ws13_c00215{word-spacing:10.296000px;}
.ws5_c00215{word-spacing:10.382400px;}
.ws12_c00215{word-spacing:10.440000px;}
.ws1b_c00215{word-spacing:13.176000px;}
.ws1c_c00215{word-spacing:13.248000px;}
.ws1d_c00215{word-spacing:13.320000px;}
.ws4_c00215{word-spacing:23.695200px;}
.wsf_c00215{word-spacing:23.976000px;}
.ws11_c00215{word-spacing:24.048000px;}
.ws10_c00215{word-spacing:24.120000px;}
._0_c00215{margin-left:-1.224000px;}
._1_c00215{width:1.641600px;}
._2_c00215{width:6.336000px;}
.fc1_c00215{color:rgb(0,0,0);}
.fc0_c00215{color:rgb(35,31,32);}
.fs1_c00215{font-size:65.880000px;}
.fs0_c00215{font-size:72.000000px;}
.y0_c00215{bottom:0.000000px;}
.y1_c00215{bottom:61.748550px;}
.yf_c00215{bottom:671.624400px;}
.ye_c00215{bottom:702.674400px;}
.yd_c00215{bottom:733.724400px;}
.yc_c00215{bottom:764.774400px;}
.yb_c00215{bottom:795.824400px;}
.ya_c00215{bottom:857.834400px;}
.y9_c00215{bottom:921.284400px;}
.y8_c00215{bottom:952.334400px;}
.y7_c00215{bottom:983.384400px;}
.y6_c00215{bottom:1014.434400px;}
.y5_c00215{bottom:1045.394400px;}
.y4_c00215{bottom:1108.844400px;}
.y3_c00215{bottom:1139.894400px;}
.y2_c00215{bottom:1194.074400px;}
.h2_c00215{height:50.400000px;}
.h3_c00215{height:54.331699px;}
.h4_c00215{height:76.824000px;}
.h5_c00215{height:78.048000px;}
.h0_c00215{height:1262.835000px;}
.h1_c00215{height:1263.000000px;}
.w0_c00215{width:892.914000px;}
.w1_c00215{width:893.250000px;}
.x0_c00215{left:0.000000px;}
.x1_c00215{left:54.000000px;}
.x2_c00215{left:127.620000px;}
.x4_c00215{left:148.950000px;}
.x5_c00215{left:159.570000px;}
.x3_c00215{left:170.190000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls5_c00215{letter-spacing:-0.256000pt;}
.ls4_c00215{letter-spacing:-0.192000pt;}
.ls3_c00215{letter-spacing:0.000000pt;}
.ls0_c00215{letter-spacing:0.064000pt;}
.ls2_c00215{letter-spacing:0.128000pt;}
.ls1_c00215{letter-spacing:40.384000pt;}
.ws0_c00215{word-spacing:-16.128000pt;}
.ws9_c00215{word-spacing:-16.064000pt;}
.ws3_c00215{word-spacing:-16.000000pt;}
.ws6_c00215{word-spacing:-15.744000pt;}
.ws1f_c00215{word-spacing:-0.320000pt;}
.ws8_c00215{word-spacing:-0.256000pt;}
.wsd_c00215{word-spacing:-0.064000pt;}
.wsc_c00215{word-spacing:0.000000pt;}
.ws16_c00215{word-spacing:0.192000pt;}
.wsb_c00215{word-spacing:0.704000pt;}
.ws17_c00215{word-spacing:0.832000pt;}
.wsa_c00215{word-spacing:0.896000pt;}
.ws2_c00215{word-spacing:1.216000pt;}
.wse_c00215{word-spacing:1.280000pt;}
.ws1_c00215{word-spacing:1.664000pt;}
.ws15_c00215{word-spacing:3.392000pt;}
.ws7_c00215{word-spacing:3.398400pt;}
.ws14_c00215{word-spacing:3.520000pt;}
.ws1e_c00215{word-spacing:5.056000pt;}
.ws1a_c00215{word-spacing:5.312000pt;}
.ws19_c00215{word-spacing:5.376000pt;}
.ws18_c00215{word-spacing:5.440000pt;}
.ws13_c00215{word-spacing:9.152000pt;}
.ws5_c00215{word-spacing:9.228800pt;}
.ws12_c00215{word-spacing:9.280000pt;}
.ws1b_c00215{word-spacing:11.712000pt;}
.ws1c_c00215{word-spacing:11.776000pt;}
.ws1d_c00215{word-spacing:11.840000pt;}
.ws4_c00215{word-spacing:21.062400pt;}
.wsf_c00215{word-spacing:21.312000pt;}
.ws11_c00215{word-spacing:21.376000pt;}
.ws10_c00215{word-spacing:21.440000pt;}
._0_c00215{margin-left:-1.088000pt;}
._1_c00215{width:1.459200pt;}
._2_c00215{width:5.632000pt;}
.fs1_c00215{font-size:58.560000pt;}
.fs0_c00215{font-size:64.000000pt;}
.y0_c00215{bottom:0.000000pt;}
.y1_c00215{bottom:54.887600pt;}
.yf_c00215{bottom:596.999467pt;}
.ye_c00215{bottom:624.599467pt;}
.yd_c00215{bottom:652.199467pt;}
.yc_c00215{bottom:679.799467pt;}
.yb_c00215{bottom:707.399467pt;}
.ya_c00215{bottom:762.519467pt;}
.y9_c00215{bottom:818.919467pt;}
.y8_c00215{bottom:846.519467pt;}
.y7_c00215{bottom:874.119467pt;}
.y6_c00215{bottom:901.719467pt;}
.y5_c00215{bottom:929.239467pt;}
.y4_c00215{bottom:985.639467pt;}
.y3_c00215{bottom:1013.239467pt;}
.y2_c00215{bottom:1061.399467pt;}
.h2_c00215{height:44.800000pt;}
.h3_c00215{height:48.294844pt;}
.h4_c00215{height:68.288000pt;}
.h5_c00215{height:69.376000pt;}
.h0_c00215{height:1122.520000pt;}
.h1_c00215{height:1122.666667pt;}
.w0_c00215{width:793.701333pt;}
.w1_c00215{width:794.000000pt;}
.x0_c00215{left:0.000000pt;}
.x1_c00215{left:48.000000pt;}
.x2_c00215{left:113.440000pt;}
.x4_c00215{left:132.400000pt;}
.x5_c00215{left:141.840000pt;}
.x3_c00215{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00216;src:url('chunks/assets/font_ef2800d28232ea075595c370.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00216;src:url('chunks/assets/font_b712623c867cbb7fc8b84dcd.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00216;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.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_98ab1aa38bec62dad5bef007.woff2')format("woff");}.ff5_c00216{font-family:ff5_c00216;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00216;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00216{font-family:ff6_c00216;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00216;src:url('chunks/assets/font_8b1aaeaa9e8d0ba8b8e6bff2.woff2')format("woff");}.ff7_c00216{font-family:ff7_c00216;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00216;src:url('chunks/assets/font_2a51f6263a080e1dda51e01e.woff2')format("woff");}.ff8_c00216{font-family:ff8_c00216;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00216;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff9_c00216{font-family:ff9_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:ffa_c00216;src:url('chunks/assets/font_d8f8ea2a0e0a1f70a3f9277b.woff2')format("woff");}.ffa_c00216{font-family:ffa_c00216;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00216;src:url('chunks/assets/font_36c54059977c41b9e8850674.woff2')format("woff");}.ffb_c00216{font-family:ffb_c00216;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00216{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls8_c00216{letter-spacing:-0.360000px;}
.ls5_c00216{letter-spacing:-0.288000px;}
.ls4_c00216{letter-spacing:-0.216000px;}
.ls6_c00216{letter-spacing:-0.144000px;}
.ls7_c00216{letter-spacing:-0.072000px;}
.ls9_c00216{letter-spacing:-0.065880px;}
.ls3_c00216{letter-spacing:0.000000px;}
.ls0_c00216{letter-spacing:0.072000px;}
.ls2_c00216{letter-spacing:0.144000px;}
.ls1_c00216{letter-spacing:45.432000px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00216{word-spacing:-18.144000px;}
.ws9_c00216{word-spacing:-18.072000px;}
.ws3_c00216{word-spacing:-18.000000px;}
.wse_c00216{word-spacing:-17.928000px;}
.wsc_c00216{word-spacing:-17.856000px;}
.ws6_c00216{word-spacing:-17.712000px;}
.ws23_c00216{word-spacing:-0.360000px;}
.ws8_c00216{word-spacing:-0.288000px;}
.ws24_c00216{word-spacing:-0.131760px;}
.ws11_c00216{word-spacing:-0.072000px;}
.ws10_c00216{word-spacing:0.000000px;}
.ws36_c00216{word-spacing:0.065880px;}
.ws26_c00216{word-spacing:0.072000px;}
.ws2a_c00216{word-spacing:0.144000px;}
.ws1a_c00216{word-spacing:0.216000px;}
.ws35_c00216{word-spacing:0.263520px;}
.ws27_c00216{word-spacing:0.360000px;}
.ws25_c00216{word-spacing:0.504000px;}
.wsb_c00216{word-spacing:0.792000px;}
.ws1b_c00216{word-spacing:0.936000px;}
.wsa_c00216{word-spacing:1.008000px;}
.ws2_c00216{word-spacing:1.368000px;}
.ws12_c00216{word-spacing:1.440000px;}
.ws31_c00216{word-spacing:1.800000px;}
.ws1_c00216{word-spacing:1.872000px;}
.ws28_c00216{word-spacing:2.160000px;}
.ws19_c00216{word-spacing:3.816000px;}
.ws7_c00216{word-spacing:3.823200px;}
.ws18_c00216{word-spacing:3.960000px;}
.ws29_c00216{word-spacing:4.968000px;}
.ws22_c00216{word-spacing:5.688000px;}
.ws1e_c00216{word-spacing:5.976000px;}
.ws1d_c00216{word-spacing:6.048000px;}
.ws1c_c00216{word-spacing:6.120000px;}
.ws30_c00216{word-spacing:10.080000px;}
.ws17_c00216{word-spacing:10.296000px;}
.ws2d_c00216{word-spacing:10.368000px;}
.ws5_c00216{word-spacing:10.382400px;}
.ws16_c00216{word-spacing:10.440000px;}
.ws34_c00216{word-spacing:12.096000px;}
.ws1f_c00216{word-spacing:13.176000px;}
.ws20_c00216{word-spacing:13.248000px;}
.ws21_c00216{word-spacing:13.320000px;}
.ws33_c00216{word-spacing:15.048000px;}
.ws2f_c00216{word-spacing:16.560000px;}
.wsd_c00216{word-spacing:17.640000px;}
.wsf_c00216{word-spacing:18.432000px;}
.ws2c_c00216{word-spacing:19.368000px;}
.ws2e_c00216{word-spacing:19.728000px;}
.ws2b_c00216{word-spacing:19.800000px;}
.ws32_c00216{word-spacing:23.688000px;}
.ws4_c00216{word-spacing:23.695200px;}
.ws13_c00216{word-spacing:23.976000px;}
.ws15_c00216{word-spacing:24.048000px;}
.ws14_c00216{word-spacing:24.120000px;}
._0_c00216{margin-left:-1.224000px;}
._1_c00216{width:1.641600px;}
._2_c00216{width:6.336000px;}
.fc2_c00216{color:transparent;}
.fc1_c00216{color:rgb(0,0,0);}
.fc0_c00216{color:rgb(35,31,32);}
.fs1_c00216{font-size:65.880000px;}
.fs0_c00216{font-size:72.000000px;}
.y0_c00216{bottom:0.000000px;}
.y16_c00216{bottom:4.049400px;}
.y18_c00216{bottom:4.139250px;}
.y12_c00216{bottom:4.139400px;}
.y26_c00216{bottom:4.140750px;}
.y14_c00216{bottom:4.142250px;}
.y32_c00216{bottom:4.142400px;}
.y11_c00216{bottom:24.839250px;}
.y2a_c00216{bottom:24.839400px;}
.y31_c00216{bottom:24.842250px;}
.y1d_c00216{bottom:45.539250px;}
.y1a_c00216{bottom:45.539400px;}
.y1_c00216{bottom:61.748550px;}
.y3a_c00216{bottom:168.975840px;}
.y39_c00216{bottom:189.135120px;}
.y38_c00216{bottom:209.294400px;}
.y37_c00216{bottom:225.673500px;}
.y35_c00216{bottom:247.095000px;}
.y36_c00216{bottom:271.934400px;}
.y33_c00216{bottom:309.195000px;}
.y34_c00216{bottom:334.034400px;}
.y30_c00216{bottom:372.012000px;}
.y2e_c00216{bottom:414.225000px;}
.y2f_c00216{bottom:439.064400px;}
.y2c_c00216{bottom:476.325000px;}
.y2d_c00216{bottom:501.164400px;}
.y29_c00216{bottom:538.425000px;}
.y2b_c00216{bottom:542.564400px;}
.y28_c00216{bottom:580.545000px;}
.y27_c00216{bottom:601.965000px;}
.y25_c00216{bottom:623.383500px;}
.y22_c00216{bottom:644.895000px;}
.y24_c00216{bottom:649.034400px;}
.y23_c00216{bottom:669.734400px;}
.yf_c00216{bottom:671.624400px;}
.ye_c00216{bottom:702.674400px;}
.y20_c00216{bottom:706.995000px;}
.y21_c00216{bottom:731.834400px;}
.yd_c00216{bottom:733.724400px;}
.yc_c00216{bottom:764.774400px;}
.y1f_c00216{bottom:769.815000px;}
.yb_c00216{bottom:795.824400px;}
.y1c_c00216{bottom:811.935000px;}
.y1e_c00216{bottom:836.774250px;}
.ya_c00216{bottom:857.834400px;}
.y19_c00216{bottom:874.035000px;}
.y1b_c00216{bottom:898.874400px;}
.y9_c00216{bottom:921.284400px;}
.y17_c00216{bottom:936.135000px;}
.y8_c00216{bottom:952.334400px;}
.y15_c00216{bottom:978.345000px;}
.y7_c00216{bottom:983.384400px;}
.y13_c00216{bottom:999.762000px;}
.y6_c00216{bottom:1014.434400px;}
.y10_c00216{bottom:1021.185000px;}
.y5_c00216{bottom:1045.394400px;}
.y4_c00216{bottom:1108.844400px;}
.y3_c00216{bottom:1139.894400px;}
.y2_c00216{bottom:1194.074400px;}
.h8_c00216{height:20.608500px;}
.hb_c00216{height:20.700000px;}
.ha_c00216{height:20.701500px;}
.h7_c00216{height:20.703000px;}
.h6_c00216{height:41.398500px;}
.hc_c00216{height:41.400000px;}
.h2_c00216{height:50.400000px;}
.h3_c00216{height:54.331699px;}
.h9_c00216{height:62.100000px;}
.h4_c00216{height:76.824000px;}
.h5_c00216{height:78.048000px;}
.h0_c00216{height:1262.835000px;}
.h1_c00216{height:1263.000000px;}
.w2_c00216{width:0.000000px;}
.w3_c00216{width:0.066000px;}
.w6_c00216{width:136.170000px;}
.w8_c00216{width:138.150000px;}
.w7_c00216{width:150.930000px;}
.w4_c00216{width:220.680000px;}
.w5_c00216{width:425.250000px;}
.w0_c00216{width:892.914000px;}
.w1_c00216{width:893.250000px;}
.x1_c00216{left:-838.913400px;}
.x2_c00216{left:-765.293400px;}
.x4_c00216{left:-743.963400px;}
.x5_c00216{left:-733.343400px;}
.x3_c00216{left:-722.723400px;}
.x0_c00216{left:0.000000px;}
.xa_c00216{left:8.100000px;}
.x11_c00216{left:33.030000px;}
.xf_c00216{left:42.390000px;}
.xd_c00216{left:45.540000px;}
.xc_c00216{left:77.670000px;}
.x14_c00216{left:80.640000px;}
.x9_c00216{left:119.520000px;}
.x12_c00216{left:127.620000px;}
.x8_c00216{left:154.440000px;}
.xb_c00216{left:340.200000px;}
.x13_c00216{left:348.300000px;}
.xe_c00216{left:476.370000px;}
.x10_c00216{left:627.300000px;}
.x7_c00216{left:696.510000px;}
.x6_c00216{left:804.366150px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls8_c00216{letter-spacing:-0.320000pt;}
.ls5_c00216{letter-spacing:-0.256000pt;}
.ls4_c00216{letter-spacing:-0.192000pt;}
.ls6_c00216{letter-spacing:-0.128000pt;}
.ls7_c00216{letter-spacing:-0.064000pt;}
.ls9_c00216{letter-spacing:-0.058560pt;}
.ls3_c00216{letter-spacing:0.000000pt;}
.ls0_c00216{letter-spacing:0.064000pt;}
.ls2_c00216{letter-spacing:0.128000pt;}
.ls1_c00216{letter-spacing:40.384000pt;}
.ws0_c00216{word-spacing:-16.128000pt;}
.ws9_c00216{word-spacing:-16.064000pt;}
.ws3_c00216{word-spacing:-16.000000pt;}
.wse_c00216{word-spacing:-15.936000pt;}
.wsc_c00216{word-spacing:-15.872000pt;}
.ws6_c00216{word-spacing:-15.744000pt;}
.ws23_c00216{word-spacing:-0.320000pt;}
.ws8_c00216{word-spacing:-0.256000pt;}
.ws24_c00216{word-spacing:-0.117120pt;}
.ws11_c00216{word-spacing:-0.064000pt;}
.ws10_c00216{word-spacing:0.000000pt;}
.ws36_c00216{word-spacing:0.058560pt;}
.ws26_c00216{word-spacing:0.064000pt;}
.ws2a_c00216{word-spacing:0.128000pt;}
.ws1a_c00216{word-spacing:0.192000pt;}
.ws35_c00216{word-spacing:0.234240pt;}
.ws27_c00216{word-spacing:0.320000pt;}
.ws25_c00216{word-spacing:0.448000pt;}
.wsb_c00216{word-spacing:0.704000pt;}
.ws1b_c00216{word-spacing:0.832000pt;}
.wsa_c00216{word-spacing:0.896000pt;}
.ws2_c00216{word-spacing:1.216000pt;}
.ws12_c00216{word-spacing:1.280000pt;}
.ws31_c00216{word-spacing:1.600000pt;}
.ws1_c00216{word-spacing:1.664000pt;}
.ws28_c00216{word-spacing:1.920000pt;}
.ws19_c00216{word-spacing:3.392000pt;}
.ws7_c00216{word-spacing:3.398400pt;}
.ws18_c00216{word-spacing:3.520000pt;}
.ws29_c00216{word-spacing:4.416000pt;}
.ws22_c00216{word-spacing:5.056000pt;}
.ws1e_c00216{word-spacing:5.312000pt;}
.ws1d_c00216{word-spacing:5.376000pt;}
.ws1c_c00216{word-spacing:5.440000pt;}
.ws30_c00216{word-spacing:8.960000pt;}
.ws17_c00216{word-spacing:9.152000pt;}
.ws2d_c00216{word-spacing:9.216000pt;}
.ws5_c00216{word-spacing:9.228800pt;}
.ws16_c00216{word-spacing:9.280000pt;}
.ws34_c00216{word-spacing:10.752000pt;}
.ws1f_c00216{word-spacing:11.712000pt;}
.ws20_c00216{word-spacing:11.776000pt;}
.ws21_c00216{word-spacing:11.840000pt;}
.ws33_c00216{word-spacing:13.376000pt;}
.ws2f_c00216{word-spacing:14.720000pt;}
.wsd_c00216{word-spacing:15.680000pt;}
.wsf_c00216{word-spacing:16.384000pt;}
.ws2c_c00216{word-spacing:17.216000pt;}
.ws2e_c00216{word-spacing:17.536000pt;}
.ws2b_c00216{word-spacing:17.600000pt;}
.ws32_c00216{word-spacing:21.056000pt;}
.ws4_c00216{word-spacing:21.062400pt;}
.ws13_c00216{word-spacing:21.312000pt;}
.ws15_c00216{word-spacing:21.376000pt;}
.ws14_c00216{word-spacing:21.440000pt;}
._0_c00216{margin-left:-1.088000pt;}
._1_c00216{width:1.459200pt;}
._2_c00216{width:5.632000pt;}
.fs1_c00216{font-size:58.560000pt;}
.fs0_c00216{font-size:64.000000pt;}
.y0_c00216{bottom:0.000000pt;}
.y16_c00216{bottom:3.599467pt;}
.y18_c00216{bottom:3.679333pt;}
.y12_c00216{bottom:3.679467pt;}
.y26_c00216{bottom:3.680667pt;}
.y14_c00216{bottom:3.682000pt;}
.y32_c00216{bottom:3.682133pt;}
.y11_c00216{bottom:22.079333pt;}
.y2a_c00216{bottom:22.079467pt;}
.y31_c00216{bottom:22.082000pt;}
.y1d_c00216{bottom:40.479333pt;}
.y1a_c00216{bottom:40.479467pt;}
.y1_c00216{bottom:54.887600pt;}
.y3a_c00216{bottom:150.200747pt;}
.y39_c00216{bottom:168.120107pt;}
.y38_c00216{bottom:186.039467pt;}
.y37_c00216{bottom:200.598667pt;}
.y35_c00216{bottom:219.640000pt;}
.y36_c00216{bottom:241.719467pt;}
.y33_c00216{bottom:274.840000pt;}
.y34_c00216{bottom:296.919467pt;}
.y30_c00216{bottom:330.677333pt;}
.y2e_c00216{bottom:368.200000pt;}
.y2f_c00216{bottom:390.279467pt;}
.y2c_c00216{bottom:423.400000pt;}
.y2d_c00216{bottom:445.479467pt;}
.y29_c00216{bottom:478.600000pt;}
.y2b_c00216{bottom:482.279467pt;}
.y28_c00216{bottom:516.040000pt;}
.y27_c00216{bottom:535.080000pt;}
.y25_c00216{bottom:554.118667pt;}
.y22_c00216{bottom:573.240000pt;}
.y24_c00216{bottom:576.919467pt;}
.y23_c00216{bottom:595.319467pt;}
.yf_c00216{bottom:596.999467pt;}
.ye_c00216{bottom:624.599467pt;}
.y20_c00216{bottom:628.440000pt;}
.y21_c00216{bottom:650.519467pt;}
.yd_c00216{bottom:652.199467pt;}
.yc_c00216{bottom:679.799467pt;}
.y1f_c00216{bottom:684.280000pt;}
.yb_c00216{bottom:707.399467pt;}
.y1c_c00216{bottom:721.720000pt;}
.y1e_c00216{bottom:743.799333pt;}
.ya_c00216{bottom:762.519467pt;}
.y19_c00216{bottom:776.920000pt;}
.y1b_c00216{bottom:798.999467pt;}
.y9_c00216{bottom:818.919467pt;}
.y17_c00216{bottom:832.120000pt;}
.y8_c00216{bottom:846.519467pt;}
.y15_c00216{bottom:869.640000pt;}
.y7_c00216{bottom:874.119467pt;}
.y13_c00216{bottom:888.677333pt;}
.y6_c00216{bottom:901.719467pt;}
.y10_c00216{bottom:907.720000pt;}
.y5_c00216{bottom:929.239467pt;}
.y4_c00216{bottom:985.639467pt;}
.y3_c00216{bottom:1013.239467pt;}
.y2_c00216{bottom:1061.399467pt;}
.h8_c00216{height:18.318667pt;}
.hb_c00216{height:18.400000pt;}
.ha_c00216{height:18.401333pt;}
.h7_c00216{height:18.402667pt;}
.h6_c00216{height:36.798667pt;}
.hc_c00216{height:36.800000pt;}
.h2_c00216{height:44.800000pt;}
.h3_c00216{height:48.294844pt;}
.h9_c00216{height:55.200000pt;}
.h4_c00216{height:68.288000pt;}
.h5_c00216{height:69.376000pt;}
.h0_c00216{height:1122.520000pt;}
.h1_c00216{height:1122.666667pt;}
.w2_c00216{width:0.000000pt;}
.w3_c00216{width:0.058667pt;}
.w6_c00216{width:121.040000pt;}
.w8_c00216{width:122.800000pt;}
.w7_c00216{width:134.160000pt;}
.w4_c00216{width:196.160000pt;}
.w5_c00216{width:378.000000pt;}
.w0_c00216{width:793.701333pt;}
.w1_c00216{width:794.000000pt;}
.x1_c00216{left:-745.700800pt;}
.x2_c00216{left:-680.260800pt;}
.x4_c00216{left:-661.300800pt;}
.x5_c00216{left:-651.860800pt;}
.x3_c00216{left:-642.420800pt;}
.x0_c00216{left:0.000000pt;}
.xa_c00216{left:7.200000pt;}
.x11_c00216{left:29.360000pt;}
.xf_c00216{left:37.680000pt;}
.xd_c00216{left:40.480000pt;}
.xc_c00216{left:69.040000pt;}
.x14_c00216{left:71.680000pt;}
.x9_c00216{left:106.240000pt;}
.x12_c00216{left:113.440000pt;}
.x8_c00216{left:137.280000pt;}
.xb_c00216{left:302.400000pt;}
.x13_c00216{left:309.600000pt;}
.xe_c00216{left:423.440000pt;}
.x10_c00216{left:557.600000pt;}
.x7_c00216{left:619.120000pt;}
.x6_c00216{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00217;src:url('chunks/assets/font_dee7dc5085061365bb203633.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00217;src:url('chunks/assets/font_c2290f3adbab95ca5576bf3e.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00217;src:url('chunks/assets/font_9d55a4a2eab14d3eca7d66bb.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00217;src:url('chunks/assets/font_a91984460b9541a06d2678cc.woff2')format("woff");}.ff5_c00217{font-family:ff5_c00217;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00217{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls2_c00217{letter-spacing:0.000000px;}
.ls0_c00217{letter-spacing:0.072000px;}
.ls3_c00217{letter-spacing:0.144000px;}
.ls1_c00217{letter-spacing:18.360000px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00217{word-spacing:-18.144000px;}
.ws0_c00217{word-spacing:-18.000000px;}
.ws13_c00217{word-spacing:-0.360000px;}
.ws12_c00217{word-spacing:-0.072000px;}
.ws6_c00217{word-spacing:0.000000px;}
.ws9_c00217{word-spacing:0.720000px;}
.ws15_c00217{word-spacing:1.008000px;}
.ws2_c00217{word-spacing:1.368000px;}
.wse_c00217{word-spacing:1.440000px;}
.ws18_c00217{word-spacing:2.808000px;}
.ws19_c00217{word-spacing:2.880000px;}
.ws3_c00217{word-spacing:2.923200px;}
.ws1d_c00217{word-spacing:3.528000px;}
.ws1e_c00217{word-spacing:3.600000px;}
.wsd_c00217{word-spacing:4.320000px;}
.wsa_c00217{word-spacing:4.536000px;}
.ws8_c00217{word-spacing:6.048000px;}
.ws14_c00217{word-spacing:6.480000px;}
.ws1b_c00217{word-spacing:7.488000px;}
.ws1a_c00217{word-spacing:7.560000px;}
.wsb_c00217{word-spacing:7.848000px;}
.wsc_c00217{word-spacing:7.920000px;}
.ws11_c00217{word-spacing:8.280000px;}
.wsf_c00217{word-spacing:9.000000px;}
.ws10_c00217{word-spacing:10.368000px;}
.ws7_c00217{word-spacing:14.688000px;}
.ws17_c00217{word-spacing:15.840000px;}
.ws16_c00217{word-spacing:16.560000px;}
.ws4_c00217{word-spacing:27.230400px;}
.ws1c_c00217{word-spacing:27.720000px;}
.ws5_c00217{word-spacing:27.792000px;}
._1_c00217{margin-left:-1.094400px;}
._2_c00217{width:1.108800px;}
._0_c00217{width:68.400000px;}
.fc1_c00217{color:rgb(0,0,0);}
.fc0_c00217{color:rgb(35,31,32);}
.fs1_c00217{font-size:65.880000px;}
.fs0_c00217{font-size:72.000000px;}
.y0_c00217{bottom:0.000000px;}
.y1_c00217{bottom:61.748550px;}
.y1b_c00217{bottom:239.534400px;}
.y1a_c00217{bottom:270.584400px;}
.y19_c00217{bottom:301.634400px;}
.y18_c00217{bottom:332.684400px;}
.y17_c00217{bottom:363.734400px;}
.y16_c00217{bottom:425.834400px;}
.y15_c00217{bottom:456.884400px;}
.y14_c00217{bottom:487.934400px;}
.y13_c00217{bottom:518.984400px;}
.y12_c00217{bottom:550.034400px;}
.y11_c00217{bottom:581.084400px;}
.y10_c00217{bottom:643.184400px;}
.yf_c00217{bottom:674.234400px;}
.ye_c00217{bottom:705.284400px;}
.yd_c00217{bottom:736.334400px;}
.yc_c00217{bottom:798.434400px;}
.yb_c00217{bottom:829.484400px;}
.ya_c00217{bottom:860.534400px;}
.y9_c00217{bottom:891.584400px;}
.y8_c00217{bottom:953.684400px;}
.y7_c00217{bottom:984.644400px;}
.y6_c00217{bottom:1015.694400px;}
.y5_c00217{bottom:1046.744400px;}
.y4_c00217{bottom:1077.794400px;}
.y3_c00217{bottom:1139.714400px;}
.y2_c00217{bottom:1194.074400px;}
.h2_c00217{height:50.400000px;}
.h3_c00217{height:54.331699px;}
.h4_c00217{height:76.824000px;}
.h5_c00217{height:78.048000px;}
.h0_c00217{height:1262.835000px;}
.h1_c00217{height:1263.000000px;}
.w0_c00217{width:892.914000px;}
.w1_c00217{width:893.250000px;}
.x0_c00217{left:0.000000px;}
.x1_c00217{left:54.000000px;}
.x2_c00217{left:127.620000px;}
.x3_c00217{left:159.570000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls2_c00217{letter-spacing:0.000000pt;}
.ls0_c00217{letter-spacing:0.064000pt;}
.ls3_c00217{letter-spacing:0.128000pt;}
.ls1_c00217{letter-spacing:16.320000pt;}
.ws1_c00217{word-spacing:-16.128000pt;}
.ws0_c00217{word-spacing:-16.000000pt;}
.ws13_c00217{word-spacing:-0.320000pt;}
.ws12_c00217{word-spacing:-0.064000pt;}
.ws6_c00217{word-spacing:0.000000pt;}
.ws9_c00217{word-spacing:0.640000pt;}
.ws15_c00217{word-spacing:0.896000pt;}
.ws2_c00217{word-spacing:1.216000pt;}
.wse_c00217{word-spacing:1.280000pt;}
.ws18_c00217{word-spacing:2.496000pt;}
.ws19_c00217{word-spacing:2.560000pt;}
.ws3_c00217{word-spacing:2.598400pt;}
.ws1d_c00217{word-spacing:3.136000pt;}
.ws1e_c00217{word-spacing:3.200000pt;}
.wsd_c00217{word-spacing:3.840000pt;}
.wsa_c00217{word-spacing:4.032000pt;}
.ws8_c00217{word-spacing:5.376000pt;}
.ws14_c00217{word-spacing:5.760000pt;}
.ws1b_c00217{word-spacing:6.656000pt;}
.ws1a_c00217{word-spacing:6.720000pt;}
.wsb_c00217{word-spacing:6.976000pt;}
.wsc_c00217{word-spacing:7.040000pt;}
.ws11_c00217{word-spacing:7.360000pt;}
.wsf_c00217{word-spacing:8.000000pt;}
.ws10_c00217{word-spacing:9.216000pt;}
.ws7_c00217{word-spacing:13.056000pt;}
.ws17_c00217{word-spacing:14.080000pt;}
.ws16_c00217{word-spacing:14.720000pt;}
.ws4_c00217{word-spacing:24.204800pt;}
.ws1c_c00217{word-spacing:24.640000pt;}
.ws5_c00217{word-spacing:24.704000pt;}
._1_c00217{margin-left:-0.972800pt;}
._2_c00217{width:0.985600pt;}
._0_c00217{width:60.800000pt;}
.fs1_c00217{font-size:58.560000pt;}
.fs0_c00217{font-size:64.000000pt;}
.y0_c00217{bottom:0.000000pt;}
.y1_c00217{bottom:54.887600pt;}
.y1b_c00217{bottom:212.919467pt;}
.y1a_c00217{bottom:240.519467pt;}
.y19_c00217{bottom:268.119467pt;}
.y18_c00217{bottom:295.719467pt;}
.y17_c00217{bottom:323.319467pt;}
.y16_c00217{bottom:378.519467pt;}
.y15_c00217{bottom:406.119467pt;}
.y14_c00217{bottom:433.719467pt;}
.y13_c00217{bottom:461.319467pt;}
.y12_c00217{bottom:488.919467pt;}
.y11_c00217{bottom:516.519467pt;}
.y10_c00217{bottom:571.719467pt;}
.yf_c00217{bottom:599.319467pt;}
.ye_c00217{bottom:626.919467pt;}
.yd_c00217{bottom:654.519467pt;}
.yc_c00217{bottom:709.719467pt;}
.yb_c00217{bottom:737.319467pt;}
.ya_c00217{bottom:764.919467pt;}
.y9_c00217{bottom:792.519467pt;}
.y8_c00217{bottom:847.719467pt;}
.y7_c00217{bottom:875.239467pt;}
.y6_c00217{bottom:902.839467pt;}
.y5_c00217{bottom:930.439467pt;}
.y4_c00217{bottom:958.039467pt;}
.y3_c00217{bottom:1013.079467pt;}
.y2_c00217{bottom:1061.399467pt;}
.h2_c00217{height:44.800000pt;}
.h3_c00217{height:48.294844pt;}
.h4_c00217{height:68.288000pt;}
.h5_c00217{height:69.376000pt;}
.h0_c00217{height:1122.520000pt;}
.h1_c00217{height:1122.666667pt;}
.w0_c00217{width:793.701333pt;}
.w1_c00217{width:794.000000pt;}
.x0_c00217{left:0.000000pt;}
.x1_c00217{left:48.000000pt;}
.x2_c00217{left:113.440000pt;}
.x3_c00217{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00218;src:url('chunks/assets/font_f6ee14226b8634324ee60ab8.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00218;src:url('chunks/assets/font_c3f67565227efd7e5e2d6fac.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00218;src:url('chunks/assets/font_69cfbd0530a2bfab64805f2d.woff2')format("woff");}.ff4_c00218{font-family:ff4_c00218;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00218;src:url('chunks/assets/font_c75758a016b1f9953cad002a.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00218;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00218{font-family:ff6_c00218;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00218;src:url('chunks/assets/font_145a40cfd58a1e595f20133d.woff2')format("woff");}.ff7_c00218{font-family:ff7_c00218;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00218;src:url('chunks/assets/font_950ef215ddd0b3d96f31e928.woff2')format("woff");}.ff8_c00218{font-family:ff8_c00218;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00218;src:url('chunks/assets/font_4d98a88876adce35bf2bbf6e.woff2')format("woff");}.ff9_c00218{font-family:ff9_c00218;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00218;src:url('chunks/assets/font_67a37bac869570558f386d01.woff2')format("woff");}.ffa_c00218{font-family:ffa_c00218;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb_c00218{letter-spacing:-0.288000px;}
.lsa_c00218{letter-spacing:-0.072000px;}
.ls9_c00218{letter-spacing:0.000000px;}
.ls0_c00218{letter-spacing:0.072000px;}
.ls2_c00218{letter-spacing:0.144000px;}
.ls6_c00218{letter-spacing:18.007200px;}
.ls1_c00218{letter-spacing:18.360000px;}
.ls4_c00218{letter-spacing:20.160000px;}
.ls3_c00218{letter-spacing:26.280000px;}
.ls7_c00218{letter-spacing:28.872000px;}
.ls8_c00218{letter-spacing:39.600000px;}
.ls5_c00218{letter-spacing:51.480000px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00218{word-spacing:-18.144000px;}
.ws0_c00218{word-spacing:-18.000000px;}
.ws7_c00218{word-spacing:-17.928000px;}
.ws3b_c00218{word-spacing:-0.432000px;}
.ws18_c00218{word-spacing:-0.360000px;}
.ws24_c00218{word-spacing:-0.131760px;}
.ws17_c00218{word-spacing:-0.072000px;}
.wsb_c00218{word-spacing:0.000000px;}
.ws30_c00218{word-spacing:0.288000px;}
.ws3a_c00218{word-spacing:0.648000px;}
.wse_c00218{word-spacing:0.720000px;}
.ws1a_c00218{word-spacing:1.008000px;}
.ws2_c00218{word-spacing:1.368000px;}
.ws13_c00218{word-spacing:1.440000px;}
.ws32_c00218{word-spacing:1.728000px;}
.ws35_c00218{word-spacing:2.088000px;}
.ws34_c00218{word-spacing:2.160000px;}
.ws3f_c00218{word-spacing:2.520000px;}
.ws1d_c00218{word-spacing:2.808000px;}
.ws1e_c00218{word-spacing:2.880000px;}
.ws3_c00218{word-spacing:2.923200px;}
.ws2a_c00218{word-spacing:3.456000px;}
.ws22_c00218{word-spacing:3.528000px;}
.ws23_c00218{word-spacing:3.600000px;}
.ws12_c00218{word-spacing:4.320000px;}
.wsf_c00218{word-spacing:4.536000px;}
.ws2f_c00218{word-spacing:4.608000px;}
.ws2e_c00218{word-spacing:4.968000px;}
.ws31_c00218{word-spacing:5.400000px;}
.wsd_c00218{word-spacing:6.048000px;}
.ws19_c00218{word-spacing:6.480000px;}
.ws2b_c00218{word-spacing:6.768000px;}
.wsa_c00218{word-spacing:7.344000px;}
.ws20_c00218{word-spacing:7.488000px;}
.ws1f_c00218{word-spacing:7.560000px;}
.ws10_c00218{word-spacing:7.848000px;}
.ws11_c00218{word-spacing:7.920000px;}
.ws29_c00218{word-spacing:8.136000px;}
.ws38_c00218{word-spacing:8.208000px;}
.ws16_c00218{word-spacing:8.280000px;}
.ws28_c00218{word-spacing:8.640000px;}
.ws14_c00218{word-spacing:9.000000px;}
.ws37_c00218{word-spacing:9.648000px;}
.ws15_c00218{word-spacing:10.368000px;}
.ws27_c00218{word-spacing:10.440000px;}
.ws3c_c00218{word-spacing:10.656000px;}
.ws3d_c00218{word-spacing:10.728000px;}
.ws26_c00218{word-spacing:12.744000px;}
.ws25_c00218{word-spacing:12.960000px;}
.wsc_c00218{word-spacing:14.688000px;}
.ws1c_c00218{word-spacing:15.840000px;}
.ws1b_c00218{word-spacing:16.560000px;}
.ws2d_c00218{word-spacing:17.208000px;}
.ws2c_c00218{word-spacing:17.280000px;}
.ws39_c00218{word-spacing:21.096000px;}
.ws9_c00218{word-spacing:21.240000px;}
.ws3e_c00218{word-spacing:21.600000px;}
.ws33_c00218{word-spacing:24.480000px;}
.ws4_c00218{word-spacing:27.230400px;}
.ws21_c00218{word-spacing:27.720000px;}
.ws5_c00218{word-spacing:27.792000px;}
.ws36_c00218{word-spacing:33.408000px;}
.ws6_c00218{word-spacing:50.400000px;}
.ws8_c00218{word-spacing:104.400000px;}
._1_c00218{margin-left:-1.094400px;}
._2_c00218{width:1.108800px;}
._3_c00218{width:6.192000px;}
._4_c00218{width:21.312000px;}
._0_c00218{width:68.400000px;}
.fc2_c00218{color:transparent;}
.fc1_c00218{color:rgb(0,0,0);}
.fc0_c00218{color:rgb(35,31,32);}
.fs1_c00218{font-size:65.880000px;}
.fs0_c00218{font-size:72.000000px;}
.y0_c00218{bottom:0.000000px;}
.y1_c00218{bottom:61.748550px;}
.y23_c00218{bottom:125.414400px;}
.y22_c00218{bottom:156.464400px;}
.y21_c00218{bottom:187.424400px;}
.y1b_c00218{bottom:239.534400px;}
.y1a_c00218{bottom:270.584400px;}
.y19_c00218{bottom:301.634400px;}
.y18_c00218{bottom:332.684400px;}
.y17_c00218{bottom:363.734400px;}
.y20_c00218{bottom:394.784400px;}
.y16_c00218{bottom:425.834400px;}
.y15_c00218{bottom:456.884400px;}
.y14_c00218{bottom:487.934400px;}
.y13_c00218{bottom:518.984400px;}
.y1f_c00218{bottom:549.944400px;}
.y12_c00218{bottom:550.034400px;}
.y11_c00218{bottom:581.084400px;}
.y1e_c00218{bottom:611.954400px;}
.y10_c00218{bottom:643.184400px;}
.yf_c00218{bottom:674.234400px;}
.ye_c00218{bottom:705.284400px;}
.yd_c00218{bottom:736.334400px;}
.y1d_c00218{bottom:767.384400px;}
.yc_c00218{bottom:798.434400px;}
.yb_c00218{bottom:829.484400px;}
.ya_c00218{bottom:860.534400px;}
.y9_c00218{bottom:891.584400px;}
.y1c_c00218{bottom:922.634400px;}
.y8_c00218{bottom:953.684400px;}
.y7_c00218{bottom:984.644400px;}
.y6_c00218{bottom:1015.694400px;}
.y5_c00218{bottom:1046.744400px;}
.y4_c00218{bottom:1077.794400px;}
.y3_c00218{bottom:1139.714400px;}
.y2_c00218{bottom:1194.074400px;}
.h2_c00218{height:50.400000px;}
.h3_c00218{height:54.331699px;}
.h4_c00218{height:76.824000px;}
.h5_c00218{height:78.048000px;}
.h0_c00218{height:1262.835000px;}
.h1_c00218{height:1263.000000px;}
.w2_c00218{width:0.000000px;}
.w3_c00218{width:0.066000px;}
.w0_c00218{width:892.914000px;}
.w1_c00218{width:893.250000px;}
.x1_c00218{left:-838.913400px;}
.x2_c00218{left:-765.293400px;}
.x3_c00218{left:-733.343400px;}
.x0_c00218{left:0.000000px;}
.x6_c00218{left:127.620000px;}
.x8_c00218{left:154.620000px;}
.x7_c00218{left:159.570000px;}
.x5_c00218{left:696.510000px;}
.x4_c00218{left:804.366150px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.lsb_c00218{letter-spacing:-0.256000pt;}
.lsa_c00218{letter-spacing:-0.064000pt;}
.ls9_c00218{letter-spacing:0.000000pt;}
.ls0_c00218{letter-spacing:0.064000pt;}
.ls2_c00218{letter-spacing:0.128000pt;}
.ls6_c00218{letter-spacing:16.006400pt;}
.ls1_c00218{letter-spacing:16.320000pt;}
.ls4_c00218{letter-spacing:17.920000pt;}
.ls3_c00218{letter-spacing:23.360000pt;}
.ls7_c00218{letter-spacing:25.664000pt;}
.ls8_c00218{letter-spacing:35.200000pt;}
.ls5_c00218{letter-spacing:45.760000pt;}
.ws1_c00218{word-spacing:-16.128000pt;}
.ws0_c00218{word-spacing:-16.000000pt;}
.ws7_c00218{word-spacing:-15.936000pt;}
.ws3b_c00218{word-spacing:-0.384000pt;}
.ws18_c00218{word-spacing:-0.320000pt;}
.ws24_c00218{word-spacing:-0.117120pt;}
.ws17_c00218{word-spacing:-0.064000pt;}
.wsb_c00218{word-spacing:0.000000pt;}
.ws30_c00218{word-spacing:0.256000pt;}
.ws3a_c00218{word-spacing:0.576000pt;}
.wse_c00218{word-spacing:0.640000pt;}
.ws1a_c00218{word-spacing:0.896000pt;}
.ws2_c00218{word-spacing:1.216000pt;}
.ws13_c00218{word-spacing:1.280000pt;}
.ws32_c00218{word-spacing:1.536000pt;}
.ws35_c00218{word-spacing:1.856000pt;}
.ws34_c00218{word-spacing:1.920000pt;}
.ws3f_c00218{word-spacing:2.240000pt;}
.ws1d_c00218{word-spacing:2.496000pt;}
.ws1e_c00218{word-spacing:2.560000pt;}
.ws3_c00218{word-spacing:2.598400pt;}
.ws2a_c00218{word-spacing:3.072000pt;}
.ws22_c00218{word-spacing:3.136000pt;}
.ws23_c00218{word-spacing:3.200000pt;}
.ws12_c00218{word-spacing:3.840000pt;}
.wsf_c00218{word-spacing:4.032000pt;}
.ws2f_c00218{word-spacing:4.096000pt;}
.ws2e_c00218{word-spacing:4.416000pt;}
.ws31_c00218{word-spacing:4.800000pt;}
.wsd_c00218{word-spacing:5.376000pt;}
.ws19_c00218{word-spacing:5.760000pt;}
.ws2b_c00218{word-spacing:6.016000pt;}
.wsa_c00218{word-spacing:6.528000pt;}
.ws20_c00218{word-spacing:6.656000pt;}
.ws1f_c00218{word-spacing:6.720000pt;}
.ws10_c00218{word-spacing:6.976000pt;}
.ws11_c00218{word-spacing:7.040000pt;}
.ws29_c00218{word-spacing:7.232000pt;}
.ws38_c00218{word-spacing:7.296000pt;}
.ws16_c00218{word-spacing:7.360000pt;}
.ws28_c00218{word-spacing:7.680000pt;}
.ws14_c00218{word-spacing:8.000000pt;}
.ws37_c00218{word-spacing:8.576000pt;}
.ws15_c00218{word-spacing:9.216000pt;}
.ws27_c00218{word-spacing:9.280000pt;}
.ws3c_c00218{word-spacing:9.472000pt;}
.ws3d_c00218{word-spacing:9.536000pt;}
.ws26_c00218{word-spacing:11.328000pt;}
.ws25_c00218{word-spacing:11.520000pt;}
.wsc_c00218{word-spacing:13.056000pt;}
.ws1c_c00218{word-spacing:14.080000pt;}
.ws1b_c00218{word-spacing:14.720000pt;}
.ws2d_c00218{word-spacing:15.296000pt;}
.ws2c_c00218{word-spacing:15.360000pt;}
.ws39_c00218{word-spacing:18.752000pt;}
.ws9_c00218{word-spacing:18.880000pt;}
.ws3e_c00218{word-spacing:19.200000pt;}
.ws33_c00218{word-spacing:21.760000pt;}
.ws4_c00218{word-spacing:24.204800pt;}
.ws21_c00218{word-spacing:24.640000pt;}
.ws5_c00218{word-spacing:24.704000pt;}
.ws36_c00218{word-spacing:29.696000pt;}
.ws6_c00218{word-spacing:44.800000pt;}
.ws8_c00218{word-spacing:92.800000pt;}
._1_c00218{margin-left:-0.972800pt;}
._2_c00218{width:0.985600pt;}
._3_c00218{width:5.504000pt;}
._4_c00218{width:18.944000pt;}
._0_c00218{width:60.800000pt;}
.fs1_c00218{font-size:58.560000pt;}
.fs0_c00218{font-size:64.000000pt;}
.y0_c00218{bottom:0.000000pt;}
.y1_c00218{bottom:54.887600pt;}
.y23_c00218{bottom:111.479467pt;}
.y22_c00218{bottom:139.079467pt;}
.y21_c00218{bottom:166.599467pt;}
.y1b_c00218{bottom:212.919467pt;}
.y1a_c00218{bottom:240.519467pt;}
.y19_c00218{bottom:268.119467pt;}
.y18_c00218{bottom:295.719467pt;}
.y17_c00218{bottom:323.319467pt;}
.y20_c00218{bottom:350.919467pt;}
.y16_c00218{bottom:378.519467pt;}
.y15_c00218{bottom:406.119467pt;}
.y14_c00218{bottom:433.719467pt;}
.y13_c00218{bottom:461.319467pt;}
.y1f_c00218{bottom:488.839467pt;}
.y12_c00218{bottom:488.919467pt;}
.y11_c00218{bottom:516.519467pt;}
.y1e_c00218{bottom:543.959467pt;}
.y10_c00218{bottom:571.719467pt;}
.yf_c00218{bottom:599.319467pt;}
.ye_c00218{bottom:626.919467pt;}
.yd_c00218{bottom:654.519467pt;}
.y1d_c00218{bottom:682.119467pt;}
.yc_c00218{bottom:709.719467pt;}
.yb_c00218{bottom:737.319467pt;}
.ya_c00218{bottom:764.919467pt;}
.y9_c00218{bottom:792.519467pt;}
.y1c_c00218{bottom:820.119467pt;}
.y8_c00218{bottom:847.719467pt;}
.y7_c00218{bottom:875.239467pt;}
.y6_c00218{bottom:902.839467pt;}
.y5_c00218{bottom:930.439467pt;}
.y4_c00218{bottom:958.039467pt;}
.y3_c00218{bottom:1013.079467pt;}
.y2_c00218{bottom:1061.399467pt;}
.h2_c00218{height:44.800000pt;}
.h3_c00218{height:48.294844pt;}
.h4_c00218{height:68.288000pt;}
.h5_c00218{height:69.376000pt;}
.h0_c00218{height:1122.520000pt;}
.h1_c00218{height:1122.666667pt;}
.w2_c00218{width:0.000000pt;}
.w3_c00218{width:0.058667pt;}
.w0_c00218{width:793.701333pt;}
.w1_c00218{width:794.000000pt;}
.x1_c00218{left:-745.700800pt;}
.x2_c00218{left:-680.260800pt;}
.x3_c00218{left:-651.860800pt;}
.x0_c00218{left:0.000000pt;}
.x6_c00218{left:113.440000pt;}
.x8_c00218{left:137.440000pt;}
.x7_c00218{left:141.840000pt;}
.x5_c00218{left:619.120000pt;}
.x4_c00218{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00219;src:url('chunks/assets/font_ae2ea421f51cd6324eb43fc8.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00219;src:url('chunks/assets/font_f73cabde2e823e7c46f7b01f.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00219{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls5_c00219{letter-spacing:-0.288000px;}
.ls6_c00219{letter-spacing:-0.216000px;}
.ls4_c00219{letter-spacing:0.000000px;}
.ls0_c00219{letter-spacing:0.072000px;}
.ls1_c00219{letter-spacing:0.144000px;}
.ls3_c00219{letter-spacing:20.894400px;}
.ls2_c00219{letter-spacing:25.560000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00219{word-spacing:-18.144000px;}
.ws8_c00219{word-spacing:-18.000000px;}
.ws4_c00219{word-spacing:-0.288000px;}
.ws19_c00219{word-spacing:-0.072000px;}
.wsa_c00219{word-spacing:0.000000px;}
.ws29_c00219{word-spacing:0.216000px;}
.wsd_c00219{word-spacing:0.288000px;}
.ws1f_c00219{word-spacing:1.368000px;}
.ws6_c00219{word-spacing:1.440000px;}
.ws24_c00219{word-spacing:1.800000px;}
.ws14_c00219{word-spacing:2.088000px;}
.ws13_c00219{word-spacing:2.160000px;}
.ws10_c00219{word-spacing:2.808000px;}
.ws2a_c00219{word-spacing:2.880000px;}
.wsb_c00219{word-spacing:5.256000px;}
.ws17_c00219{word-spacing:5.400000px;}
.ws12_c00219{word-spacing:5.688000px;}
.ws11_c00219{word-spacing:5.760000px;}
.ws1a_c00219{word-spacing:6.120000px;}
.ws28_c00219{word-spacing:6.768000px;}
.ws9_c00219{word-spacing:6.840000px;}
.ws1_c00219{word-spacing:7.488000px;}
.wsc_c00219{word-spacing:7.560000px;}
.ws16_c00219{word-spacing:9.288000px;}
.ws5_c00219{word-spacing:9.720000px;}
.ws2b_c00219{word-spacing:11.160000px;}
.wse_c00219{word-spacing:11.448000px;}
.ws2_c00219{word-spacing:11.520000px;}
.ws3_c00219{word-spacing:11.541600px;}
.ws1e_c00219{word-spacing:11.808000px;}
.ws18_c00219{word-spacing:12.168000px;}
.ws21_c00219{word-spacing:12.456000px;}
.ws20_c00219{word-spacing:12.528000px;}
.wsf_c00219{word-spacing:16.848000px;}
.ws1b_c00219{word-spacing:19.368000px;}
.ws1c_c00219{word-spacing:19.440000px;}
.ws26_c00219{word-spacing:20.448000px;}
.ws27_c00219{word-spacing:20.808000px;}
.ws7_c00219{word-spacing:24.192000px;}
.ws25_c00219{word-spacing:24.480000px;}
.ws23_c00219{word-spacing:27.648000px;}
.ws22_c00219{word-spacing:27.720000px;}
.ws1d_c00219{word-spacing:28.080000px;}
.ws15_c00219{word-spacing:33.048000px;}
._0_c00219{margin-left:-1.080000px;}
._1_c00219{width:1.080000px;}
._5_c00219{width:6.264000px;}
._2_c00219{width:11.714400px;}
._4_c00219{width:24.408000px;}
._3_c00219{width:29.592000px;}
.fc1_c00219{color:rgb(0,0,0);}
.fc0_c00219{color:rgb(35,31,32);}
.fs1_c00219{font-size:65.880000px;}
.fs0_c00219{font-size:72.000000px;}
.y0_c00219{bottom:0.000000px;}
.y1_c00219{bottom:61.748550px;}
.y22_c00219{bottom:114.434400px;}
.y21_c00219{bottom:145.484400px;}
.y20_c00219{bottom:176.534400px;}
.y1f_c00219{bottom:207.584400px;}
.y1e_c00219{bottom:238.634400px;}
.y1d_c00219{bottom:269.684400px;}
.y1c_c00219{bottom:300.734400px;}
.y1b_c00219{bottom:352.664400px;}
.y1a_c00219{bottom:383.804400px;}
.y19_c00219{bottom:414.854400px;}
.y18_c00219{bottom:445.904400px;}
.y17_c00219{bottom:476.954400px;}
.y16_c00219{bottom:508.004400px;}
.y15_c00219{bottom:539.054400px;}
.y14_c00219{bottom:570.104400px;}
.y13_c00219{bottom:601.154400px;}
.y12_c00219{bottom:632.204400px;}
.y11_c00219{bottom:663.254400px;}
.y10_c00219{bottom:715.184400px;}
.yf_c00219{bottom:746.324400px;}
.ye_c00219{bottom:777.374400px;}
.yd_c00219{bottom:808.424400px;}
.yc_c00219{bottom:839.474400px;}
.yb_c00219{bottom:870.524400px;}
.ya_c00219{bottom:901.574400px;}
.y9_c00219{bottom:932.624400px;}
.y8_c00219{bottom:963.674400px;}
.y7_c00219{bottom:1015.604400px;}
.y6_c00219{bottom:1046.744400px;}
.y5_c00219{bottom:1077.794400px;}
.y4_c00219{bottom:1108.844400px;}
.y3_c00219{bottom:1139.894400px;}
.y2_c00219{bottom:1194.074400px;}
.h2_c00219{height:50.400000px;}
.h3_c00219{height:54.331699px;}
.h4_c00219{height:76.824000px;}
.h0_c00219{height:1262.835000px;}
.h1_c00219{height:1263.000000px;}
.w0_c00219{width:892.914000px;}
.w1_c00219{width:893.250000px;}
.x0_c00219{left:0.000000px;}
.x1_c00219{left:54.000000px;}
.x2_c00219{left:127.620000px;}
.x3_c00219{left:154.620000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls5_c00219{letter-spacing:-0.256000pt;}
.ls6_c00219{letter-spacing:-0.192000pt;}
.ls4_c00219{letter-spacing:0.000000pt;}
.ls0_c00219{letter-spacing:0.064000pt;}
.ls1_c00219{letter-spacing:0.128000pt;}
.ls3_c00219{letter-spacing:18.572800pt;}
.ls2_c00219{letter-spacing:22.720000pt;}
.ws0_c00219{word-spacing:-16.128000pt;}
.ws8_c00219{word-spacing:-16.000000pt;}
.ws4_c00219{word-spacing:-0.256000pt;}
.ws19_c00219{word-spacing:-0.064000pt;}
.wsa_c00219{word-spacing:0.000000pt;}
.ws29_c00219{word-spacing:0.192000pt;}
.wsd_c00219{word-spacing:0.256000pt;}
.ws1f_c00219{word-spacing:1.216000pt;}
.ws6_c00219{word-spacing:1.280000pt;}
.ws24_c00219{word-spacing:1.600000pt;}
.ws14_c00219{word-spacing:1.856000pt;}
.ws13_c00219{word-spacing:1.920000pt;}
.ws10_c00219{word-spacing:2.496000pt;}
.ws2a_c00219{word-spacing:2.560000pt;}
.wsb_c00219{word-spacing:4.672000pt;}
.ws17_c00219{word-spacing:4.800000pt;}
.ws12_c00219{word-spacing:5.056000pt;}
.ws11_c00219{word-spacing:5.120000pt;}
.ws1a_c00219{word-spacing:5.440000pt;}
.ws28_c00219{word-spacing:6.016000pt;}
.ws9_c00219{word-spacing:6.080000pt;}
.ws1_c00219{word-spacing:6.656000pt;}
.wsc_c00219{word-spacing:6.720000pt;}
.ws16_c00219{word-spacing:8.256000pt;}
.ws5_c00219{word-spacing:8.640000pt;}
.ws2b_c00219{word-spacing:9.920000pt;}
.wse_c00219{word-spacing:10.176000pt;}
.ws2_c00219{word-spacing:10.240000pt;}
.ws3_c00219{word-spacing:10.259200pt;}
.ws1e_c00219{word-spacing:10.496000pt;}
.ws18_c00219{word-spacing:10.816000pt;}
.ws21_c00219{word-spacing:11.072000pt;}
.ws20_c00219{word-spacing:11.136000pt;}
.wsf_c00219{word-spacing:14.976000pt;}
.ws1b_c00219{word-spacing:17.216000pt;}
.ws1c_c00219{word-spacing:17.280000pt;}
.ws26_c00219{word-spacing:18.176000pt;}
.ws27_c00219{word-spacing:18.496000pt;}
.ws7_c00219{word-spacing:21.504000pt;}
.ws25_c00219{word-spacing:21.760000pt;}
.ws23_c00219{word-spacing:24.576000pt;}
.ws22_c00219{word-spacing:24.640000pt;}
.ws1d_c00219{word-spacing:24.960000pt;}
.ws15_c00219{word-spacing:29.376000pt;}
._0_c00219{margin-left:-0.960000pt;}
._1_c00219{width:0.960000pt;}
._5_c00219{width:5.568000pt;}
._2_c00219{width:10.412800pt;}
._4_c00219{width:21.696000pt;}
._3_c00219{width:26.304000pt;}
.fs1_c00219{font-size:58.560000pt;}
.fs0_c00219{font-size:64.000000pt;}
.y0_c00219{bottom:0.000000pt;}
.y1_c00219{bottom:54.887600pt;}
.y22_c00219{bottom:101.719467pt;}
.y21_c00219{bottom:129.319467pt;}
.y20_c00219{bottom:156.919467pt;}
.y1f_c00219{bottom:184.519467pt;}
.y1e_c00219{bottom:212.119467pt;}
.y1d_c00219{bottom:239.719467pt;}
.y1c_c00219{bottom:267.319467pt;}
.y1b_c00219{bottom:313.479467pt;}
.y1a_c00219{bottom:341.159467pt;}
.y19_c00219{bottom:368.759467pt;}
.y18_c00219{bottom:396.359467pt;}
.y17_c00219{bottom:423.959467pt;}
.y16_c00219{bottom:451.559467pt;}
.y15_c00219{bottom:479.159467pt;}
.y14_c00219{bottom:506.759467pt;}
.y13_c00219{bottom:534.359467pt;}
.y12_c00219{bottom:561.959467pt;}
.y11_c00219{bottom:589.559467pt;}
.y10_c00219{bottom:635.719467pt;}
.yf_c00219{bottom:663.399467pt;}
.ye_c00219{bottom:690.999467pt;}
.yd_c00219{bottom:718.599467pt;}
.yc_c00219{bottom:746.199467pt;}
.yb_c00219{bottom:773.799467pt;}
.ya_c00219{bottom:801.399467pt;}
.y9_c00219{bottom:828.999467pt;}
.y8_c00219{bottom:856.599467pt;}
.y7_c00219{bottom:902.759467pt;}
.y6_c00219{bottom:930.439467pt;}
.y5_c00219{bottom:958.039467pt;}
.y4_c00219{bottom:985.639467pt;}
.y3_c00219{bottom:1013.239467pt;}
.y2_c00219{bottom:1061.399467pt;}
.h2_c00219{height:44.800000pt;}
.h3_c00219{height:48.294844pt;}
.h4_c00219{height:68.288000pt;}
.h0_c00219{height:1122.520000pt;}
.h1_c00219{height:1122.666667pt;}
.w0_c00219{width:793.701333pt;}
.w1_c00219{width:794.000000pt;}
.x0_c00219{left:0.000000pt;}
.x1_c00219{left:48.000000pt;}
.x2_c00219{left:113.440000pt;}
.x3_c00219{left:137.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00220;src:url('chunks/assets/font_3fd66c104f7e071b42948cfa.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00220;src:url('chunks/assets/font_1ddde6734a835e24384b5328.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00220;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00220;src:url('chunks/assets/font_86306795a87d5284bdb7cc64.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00220;src:url('chunks/assets/font_75ec532d13222195d4b72dc3.woff2')format("woff");}.ff6_c00220{font-family:ff6_c00220;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00220;src:url('chunks/assets/font_fd0ff0eab6e1893aa85a7d3e.woff2')format("woff");}.ff7_c00220{font-family:ff7_c00220;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00220;src:url('chunks/assets/font_227af9ce25bafe48fe4f2c1c.woff2')format("woff");}.ff8_c00220{font-family:ff8_c00220;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls6_c00220{letter-spacing:-0.288000px;}
.ls7_c00220{letter-spacing:-0.216000px;}
.ls8_c00220{letter-spacing:-0.072000px;}
.ls5_c00220{letter-spacing:0.000000px;}
.ls0_c00220{letter-spacing:0.072000px;}
.ls1_c00220{letter-spacing:0.144000px;}
.ls3_c00220{letter-spacing:20.894400px;}
.ls4_c00220{letter-spacing:22.752000px;}
.ls2_c00220{letter-spacing:25.560000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00220{word-spacing:-18.144000px;}
.wsb_c00220{word-spacing:-18.072000px;}
.ws8_c00220{word-spacing:-18.000000px;}
.wsc_c00220{word-spacing:-17.712000px;}
.ws4_c00220{word-spacing:-0.288000px;}
.ws31_c00220{word-spacing:-0.131760px;}
.ws1e_c00220{word-spacing:-0.072000px;}
.wsf_c00220{word-spacing:0.000000px;}
.ws2e_c00220{word-spacing:0.216000px;}
.ws12_c00220{word-spacing:0.288000px;}
.ws39_c00220{word-spacing:0.360000px;}
.ws33_c00220{word-spacing:0.648000px;}
.wsa_c00220{word-spacing:1.008000px;}
.ws45_c00220{word-spacing:1.080000px;}
.ws24_c00220{word-spacing:1.368000px;}
.ws6_c00220{word-spacing:1.440000px;}
.ws29_c00220{word-spacing:1.800000px;}
.ws19_c00220{word-spacing:2.088000px;}
.ws18_c00220{word-spacing:2.160000px;}
.ws15_c00220{word-spacing:2.808000px;}
.ws2f_c00220{word-spacing:2.880000px;}
.ws3b_c00220{word-spacing:3.096000px;}
.ws3c_c00220{word-spacing:3.168000px;}
.ws3e_c00220{word-spacing:4.320000px;}
.ws41_c00220{word-spacing:4.536000px;}
.ws3d_c00220{word-spacing:4.680000px;}
.ws10_c00220{word-spacing:5.256000px;}
.ws1c_c00220{word-spacing:5.400000px;}
.ws17_c00220{word-spacing:5.688000px;}
.ws16_c00220{word-spacing:5.760000px;}
.ws1f_c00220{word-spacing:6.120000px;}
.ws2d_c00220{word-spacing:6.768000px;}
.ws9_c00220{word-spacing:6.840000px;}
.ws34_c00220{word-spacing:7.056000px;}
.wsd_c00220{word-spacing:7.128000px;}
.ws1_c00220{word-spacing:7.488000px;}
.ws11_c00220{word-spacing:7.560000px;}
.ws42_c00220{word-spacing:7.848000px;}
.ws1b_c00220{word-spacing:9.288000px;}
.ws5_c00220{word-spacing:9.720000px;}
.ws3f_c00220{word-spacing:11.016000px;}
.ws40_c00220{word-spacing:11.088000px;}
.ws30_c00220{word-spacing:11.160000px;}
.ws13_c00220{word-spacing:11.448000px;}
.ws2_c00220{word-spacing:11.520000px;}
.ws3_c00220{word-spacing:11.541600px;}
.ws23_c00220{word-spacing:11.808000px;}
.ws1d_c00220{word-spacing:12.168000px;}
.ws26_c00220{word-spacing:12.456000px;}
.ws25_c00220{word-spacing:12.528000px;}
.ws38_c00220{word-spacing:13.320000px;}
.ws14_c00220{word-spacing:16.848000px;}
.ws35_c00220{word-spacing:17.640000px;}
.ws20_c00220{word-spacing:19.368000px;}
.ws21_c00220{word-spacing:19.440000px;}
.ws2b_c00220{word-spacing:20.448000px;}
.ws3a_c00220{word-spacing:20.520000px;}
.ws2c_c00220{word-spacing:20.808000px;}
.ws32_c00220{word-spacing:22.176000px;}
.ws7_c00220{word-spacing:24.192000px;}
.ws2a_c00220{word-spacing:24.480000px;}
.wse_c00220{word-spacing:24.984000px;}
.ws43_c00220{word-spacing:25.056000px;}
.ws44_c00220{word-spacing:25.128000px;}
.ws28_c00220{word-spacing:27.648000px;}
.ws27_c00220{word-spacing:27.720000px;}
.ws22_c00220{word-spacing:28.080000px;}
.ws36_c00220{word-spacing:29.808000px;}
.ws37_c00220{word-spacing:29.880000px;}
.ws1a_c00220{word-spacing:33.048000px;}
._0_c00220{margin-left:-1.080000px;}
._1_c00220{width:1.080000px;}
._5_c00220{width:6.264000px;}
._7_c00220{width:7.560000px;}
._2_c00220{width:11.714400px;}
._6_c00220{width:20.736000px;}
._4_c00220{width:24.408000px;}
._3_c00220{width:29.592000px;}
.fc2_c00220{color:transparent;}
.fc1_c00220{color:rgb(0,0,0);}
.fc0_c00220{color:rgb(35,31,32);}
.fs1_c00220{font-size:65.880000px;}
.fs0_c00220{font-size:72.000000px;}
.y0_c00220{bottom:0.000000px;}
.y1_c00220{bottom:61.748550px;}
.y22_c00220{bottom:114.434400px;}
.y21_c00220{bottom:145.484400px;}
.y20_c00220{bottom:176.534400px;}
.y3c_c00220{bottom:185.714400px;}
.y1f_c00220{bottom:207.584400px;}
.y3b_c00220{bottom:216.764400px;}
.y1e_c00220{bottom:238.634400px;}
.y3a_c00220{bottom:247.814400px;}
.y1d_c00220{bottom:269.684400px;}
.y39_c00220{bottom:278.864400px;}
.y1c_c00220{bottom:300.734400px;}
.y38_c00220{bottom:330.794400px;}
.y1b_c00220{bottom:352.664400px;}
.y37_c00220{bottom:361.934400px;}
.y1a_c00220{bottom:383.804400px;}
.y36_c00220{bottom:392.984400px;}
.y19_c00220{bottom:414.854400px;}
.y35_c00220{bottom:424.034400px;}
.y18_c00220{bottom:445.904400px;}
.y34_c00220{bottom:455.084400px;}
.y17_c00220{bottom:476.954400px;}
.y33_c00220{bottom:486.134400px;}
.y16_c00220{bottom:508.004400px;}
.y32_c00220{bottom:517.184400px;}
.y15_c00220{bottom:539.054400px;}
.y31_c00220{bottom:548.234400px;}
.y14_c00220{bottom:570.104400px;}
.y30_c00220{bottom:579.284400px;}
.y13_c00220{bottom:601.154400px;}
.y2f_c00220{bottom:631.214400px;}
.y12_c00220{bottom:632.204400px;}
.y2e_c00220{bottom:662.354400px;}
.y11_c00220{bottom:663.254400px;}
.y2d_c00220{bottom:693.404400px;}
.y10_c00220{bottom:715.184400px;}
.y2c_c00220{bottom:745.334400px;}
.yf_c00220{bottom:746.324400px;}
.ye_c00220{bottom:777.374400px;}
.y2b_c00220{bottom:797.444400px;}
.yd_c00220{bottom:808.424400px;}
.y2a_c00220{bottom:828.584400px;}
.yc_c00220{bottom:839.474400px;}
.y29_c00220{bottom:859.634400px;}
.yb_c00220{bottom:870.524400px;}
.ya_c00220{bottom:901.574400px;}
.y28_c00220{bottom:911.564400px;}
.y9_c00220{bottom:932.624400px;}
.y27_c00220{bottom:942.704400px;}
.y8_c00220{bottom:963.674400px;}
.y26_c00220{bottom:973.754400px;}
.y25_c00220{bottom:1004.714400px;}
.y7_c00220{bottom:1015.604400px;}
.y6_c00220{bottom:1046.744400px;}
.y24_c00220{bottom:1056.734400px;}
.y5_c00220{bottom:1077.794400px;}
.y23_c00220{bottom:1108.754400px;}
.y4_c00220{bottom:1108.844400px;}
.y3_c00220{bottom:1139.894400px;}
.y2_c00220{bottom:1194.074400px;}
.h2_c00220{height:50.400000px;}
.h3_c00220{height:54.331699px;}
.h4_c00220{height:76.824000px;}
.h5_c00220{height:78.048000px;}
.h0_c00220{height:1262.835000px;}
.h1_c00220{height:1263.000000px;}
.w2_c00220{width:0.000000px;}
.w3_c00220{width:0.066000px;}
.w0_c00220{width:892.914000px;}
.w1_c00220{width:893.250000px;}
.x1_c00220{left:-838.913400px;}
.x2_c00220{left:-765.293400px;}
.x3_c00220{left:-738.293400px;}
.x0_c00220{left:0.000000px;}
.x6_c00220{left:127.620000px;}
.x7_c00220{left:154.620000px;}
.x8_c00220{left:159.570000px;}
.x5_c00220{left:696.510000px;}
.x4_c00220{left:804.366150px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls6_c00220{letter-spacing:-0.256000pt;}
.ls7_c00220{letter-spacing:-0.192000pt;}
.ls8_c00220{letter-spacing:-0.064000pt;}
.ls5_c00220{letter-spacing:0.000000pt;}
.ls0_c00220{letter-spacing:0.064000pt;}
.ls1_c00220{letter-spacing:0.128000pt;}
.ls3_c00220{letter-spacing:18.572800pt;}
.ls4_c00220{letter-spacing:20.224000pt;}
.ls2_c00220{letter-spacing:22.720000pt;}
.ws0_c00220{word-spacing:-16.128000pt;}
.wsb_c00220{word-spacing:-16.064000pt;}
.ws8_c00220{word-spacing:-16.000000pt;}
.wsc_c00220{word-spacing:-15.744000pt;}
.ws4_c00220{word-spacing:-0.256000pt;}
.ws31_c00220{word-spacing:-0.117120pt;}
.ws1e_c00220{word-spacing:-0.064000pt;}
.wsf_c00220{word-spacing:0.000000pt;}
.ws2e_c00220{word-spacing:0.192000pt;}
.ws12_c00220{word-spacing:0.256000pt;}
.ws39_c00220{word-spacing:0.320000pt;}
.ws33_c00220{word-spacing:0.576000pt;}
.wsa_c00220{word-spacing:0.896000pt;}
.ws45_c00220{word-spacing:0.960000pt;}
.ws24_c00220{word-spacing:1.216000pt;}
.ws6_c00220{word-spacing:1.280000pt;}
.ws29_c00220{word-spacing:1.600000pt;}
.ws19_c00220{word-spacing:1.856000pt;}
.ws18_c00220{word-spacing:1.920000pt;}
.ws15_c00220{word-spacing:2.496000pt;}
.ws2f_c00220{word-spacing:2.560000pt;}
.ws3b_c00220{word-spacing:2.752000pt;}
.ws3c_c00220{word-spacing:2.816000pt;}
.ws3e_c00220{word-spacing:3.840000pt;}
.ws41_c00220{word-spacing:4.032000pt;}
.ws3d_c00220{word-spacing:4.160000pt;}
.ws10_c00220{word-spacing:4.672000pt;}
.ws1c_c00220{word-spacing:4.800000pt;}
.ws17_c00220{word-spacing:5.056000pt;}
.ws16_c00220{word-spacing:5.120000pt;}
.ws1f_c00220{word-spacing:5.440000pt;}
.ws2d_c00220{word-spacing:6.016000pt;}
.ws9_c00220{word-spacing:6.080000pt;}
.ws34_c00220{word-spacing:6.272000pt;}
.wsd_c00220{word-spacing:6.336000pt;}
.ws1_c00220{word-spacing:6.656000pt;}
.ws11_c00220{word-spacing:6.720000pt;}
.ws42_c00220{word-spacing:6.976000pt;}
.ws1b_c00220{word-spacing:8.256000pt;}
.ws5_c00220{word-spacing:8.640000pt;}
.ws3f_c00220{word-spacing:9.792000pt;}
.ws40_c00220{word-spacing:9.856000pt;}
.ws30_c00220{word-spacing:9.920000pt;}
.ws13_c00220{word-spacing:10.176000pt;}
.ws2_c00220{word-spacing:10.240000pt;}
.ws3_c00220{word-spacing:10.259200pt;}
.ws23_c00220{word-spacing:10.496000pt;}
.ws1d_c00220{word-spacing:10.816000pt;}
.ws26_c00220{word-spacing:11.072000pt;}
.ws25_c00220{word-spacing:11.136000pt;}
.ws38_c00220{word-spacing:11.840000pt;}
.ws14_c00220{word-spacing:14.976000pt;}
.ws35_c00220{word-spacing:15.680000pt;}
.ws20_c00220{word-spacing:17.216000pt;}
.ws21_c00220{word-spacing:17.280000pt;}
.ws2b_c00220{word-spacing:18.176000pt;}
.ws3a_c00220{word-spacing:18.240000pt;}
.ws2c_c00220{word-spacing:18.496000pt;}
.ws32_c00220{word-spacing:19.712000pt;}
.ws7_c00220{word-spacing:21.504000pt;}
.ws2a_c00220{word-spacing:21.760000pt;}
.wse_c00220{word-spacing:22.208000pt;}
.ws43_c00220{word-spacing:22.272000pt;}
.ws44_c00220{word-spacing:22.336000pt;}
.ws28_c00220{word-spacing:24.576000pt;}
.ws27_c00220{word-spacing:24.640000pt;}
.ws22_c00220{word-spacing:24.960000pt;}
.ws36_c00220{word-spacing:26.496000pt;}
.ws37_c00220{word-spacing:26.560000pt;}
.ws1a_c00220{word-spacing:29.376000pt;}
._0_c00220{margin-left:-0.960000pt;}
._1_c00220{width:0.960000pt;}
._5_c00220{width:5.568000pt;}
._7_c00220{width:6.720000pt;}
._2_c00220{width:10.412800pt;}
._6_c00220{width:18.432000pt;}
._4_c00220{width:21.696000pt;}
._3_c00220{width:26.304000pt;}
.fs1_c00220{font-size:58.560000pt;}
.fs0_c00220{font-size:64.000000pt;}
.y0_c00220{bottom:0.000000pt;}
.y1_c00220{bottom:54.887600pt;}
.y22_c00220{bottom:101.719467pt;}
.y21_c00220{bottom:129.319467pt;}
.y20_c00220{bottom:156.919467pt;}
.y3c_c00220{bottom:165.079467pt;}
.y1f_c00220{bottom:184.519467pt;}
.y3b_c00220{bottom:192.679467pt;}
.y1e_c00220{bottom:212.119467pt;}
.y3a_c00220{bottom:220.279467pt;}
.y1d_c00220{bottom:239.719467pt;}
.y39_c00220{bottom:247.879467pt;}
.y1c_c00220{bottom:267.319467pt;}
.y38_c00220{bottom:294.039467pt;}
.y1b_c00220{bottom:313.479467pt;}
.y37_c00220{bottom:321.719467pt;}
.y1a_c00220{bottom:341.159467pt;}
.y36_c00220{bottom:349.319467pt;}
.y19_c00220{bottom:368.759467pt;}
.y35_c00220{bottom:376.919467pt;}
.y18_c00220{bottom:396.359467pt;}
.y34_c00220{bottom:404.519467pt;}
.y17_c00220{bottom:423.959467pt;}
.y33_c00220{bottom:432.119467pt;}
.y16_c00220{bottom:451.559467pt;}
.y32_c00220{bottom:459.719467pt;}
.y15_c00220{bottom:479.159467pt;}
.y31_c00220{bottom:487.319467pt;}
.y14_c00220{bottom:506.759467pt;}
.y30_c00220{bottom:514.919467pt;}
.y13_c00220{bottom:534.359467pt;}
.y2f_c00220{bottom:561.079467pt;}
.y12_c00220{bottom:561.959467pt;}
.y2e_c00220{bottom:588.759467pt;}
.y11_c00220{bottom:589.559467pt;}
.y2d_c00220{bottom:616.359467pt;}
.y10_c00220{bottom:635.719467pt;}
.y2c_c00220{bottom:662.519467pt;}
.yf_c00220{bottom:663.399467pt;}
.ye_c00220{bottom:690.999467pt;}
.y2b_c00220{bottom:708.839467pt;}
.yd_c00220{bottom:718.599467pt;}
.y2a_c00220{bottom:736.519467pt;}
.yc_c00220{bottom:746.199467pt;}
.y29_c00220{bottom:764.119467pt;}
.yb_c00220{bottom:773.799467pt;}
.ya_c00220{bottom:801.399467pt;}
.y28_c00220{bottom:810.279467pt;}
.y9_c00220{bottom:828.999467pt;}
.y27_c00220{bottom:837.959467pt;}
.y8_c00220{bottom:856.599467pt;}
.y26_c00220{bottom:865.559467pt;}
.y25_c00220{bottom:893.079467pt;}
.y7_c00220{bottom:902.759467pt;}
.y6_c00220{bottom:930.439467pt;}
.y24_c00220{bottom:939.319467pt;}
.y5_c00220{bottom:958.039467pt;}
.y23_c00220{bottom:985.559467pt;}
.y4_c00220{bottom:985.639467pt;}
.y3_c00220{bottom:1013.239467pt;}
.y2_c00220{bottom:1061.399467pt;}
.h2_c00220{height:44.800000pt;}
.h3_c00220{height:48.294844pt;}
.h4_c00220{height:68.288000pt;}
.h5_c00220{height:69.376000pt;}
.h0_c00220{height:1122.520000pt;}
.h1_c00220{height:1122.666667pt;}
.w2_c00220{width:0.000000pt;}
.w3_c00220{width:0.058667pt;}
.w0_c00220{width:793.701333pt;}
.w1_c00220{width:794.000000pt;}
.x1_c00220{left:-745.700800pt;}
.x2_c00220{left:-680.260800pt;}
.x3_c00220{left:-656.260800pt;}
.x0_c00220{left:0.000000pt;}
.x6_c00220{left:113.440000pt;}
.x7_c00220{left:137.440000pt;}
.x8_c00220{left:141.840000pt;}
.x5_c00220{left:619.120000pt;}
.x4_c00220{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00221;src:url('chunks/assets/font_34932b9b48c858a51cf5780a.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_cbb08c6cecf309c6e2ef8778.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00221;src:url('chunks/assets/font_b1127ad10d564fa0cea677a9.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.lsb_c00221{letter-spacing:-0.288000px;}
.lsd_c00221{letter-spacing:-0.216000px;}
.lsc_c00221{letter-spacing:-0.072000px;}
.lsa_c00221{letter-spacing:0.000000px;}
.ls0_c00221{letter-spacing:0.072000px;}
.ls3_c00221{letter-spacing:0.144000px;}
.ls7_c00221{letter-spacing:0.360000px;}
.ls8_c00221{letter-spacing:19.101600px;}
.ls1_c00221{letter-spacing:21.672000px;}
.ls2_c00221{letter-spacing:21.960000px;}
.ls4_c00221{letter-spacing:27.720000px;}
.ls6_c00221{letter-spacing:35.640000px;}
.ls5_c00221{letter-spacing:38.160000px;}
.ls9_c00221{letter-spacing:39.240000px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00221{word-spacing:-18.144000px;}
.ws1_c00221{word-spacing:-18.072000px;}
.ws0_c00221{word-spacing:-18.000000px;}
.ws28_c00221{word-spacing:-0.360000px;}
.ws19_c00221{word-spacing:-0.072000px;}
.wsa_c00221{word-spacing:0.000000px;}
.ws1e_c00221{word-spacing:0.360000px;}
.ws2a_c00221{word-spacing:1.008000px;}
.ws29_c00221{word-spacing:1.080000px;}
.ws1d_c00221{word-spacing:2.088000px;}
.ws17_c00221{word-spacing:2.448000px;}
.ws16_c00221{word-spacing:3.528000px;}
.wse_c00221{word-spacing:3.888000px;}
.wsc_c00221{word-spacing:3.960000px;}
.wsd_c00221{word-spacing:4.248000px;}
.ws1a_c00221{word-spacing:4.320000px;}
.ws25_c00221{word-spacing:5.328000px;}
.ws26_c00221{word-spacing:5.400000px;}
.ws21_c00221{word-spacing:7.200000px;}
.ws22_c00221{word-spacing:7.488000px;}
.ws9_c00221{word-spacing:7.560000px;}
.ws8_c00221{word-spacing:7.776000px;}
.ws24_c00221{word-spacing:7.920000px;}
.ws20_c00221{word-spacing:8.568000px;}
.ws23_c00221{word-spacing:8.928000px;}
.ws1c_c00221{word-spacing:9.720000px;}
.wsb_c00221{word-spacing:12.168000px;}
.ws10_c00221{word-spacing:13.680000px;}
.ws14_c00221{word-spacing:15.840000px;}
.ws1b_c00221{word-spacing:17.280000px;}
.ws27_c00221{word-spacing:17.640000px;}
.ws18_c00221{word-spacing:19.800000px;}
.ws1f_c00221{word-spacing:20.088000px;}
.ws7_c00221{word-spacing:20.232000px;}
.ws5_c00221{word-spacing:20.448000px;}
.ws2c_c00221{word-spacing:20.880000px;}
.ws2b_c00221{word-spacing:21.168000px;}
.ws15_c00221{word-spacing:23.688000px;}
.ws4_c00221{word-spacing:23.760000px;}
.ws3_c00221{word-spacing:24.256800px;}
.ws13_c00221{word-spacing:24.768000px;}
.ws2_c00221{word-spacing:24.984000px;}
.wsf_c00221{word-spacing:27.720000px;}
.ws11_c00221{word-spacing:30.888000px;}
.ws12_c00221{word-spacing:30.960000px;}
._0_c00221{margin-left:-1.252800px;}
._1_c00221{width:1.296000px;}
._3_c00221{width:4.464000px;}
._4_c00221{width:16.948800px;}
._2_c00221{width:21.254400px;}
.fc1_c00221{color:rgb(0,0,0);}
.fc0_c00221{color:rgb(35,31,32);}
.fs1_c00221{font-size:65.880000px;}
.fs0_c00221{font-size:72.000000px;}
.y0_c00221{bottom:0.000000px;}
.y1_c00221{bottom:61.748550px;}
.y21_c00221{bottom:124.514400px;}
.y20_c00221{bottom:155.564400px;}
.y1f_c00221{bottom:186.614400px;}
.y1e_c00221{bottom:217.664400px;}
.y1d_c00221{bottom:248.714400px;}
.y1c_c00221{bottom:279.764400px;}
.y1b_c00221{bottom:310.814400px;}
.y1a_c00221{bottom:341.864400px;}
.y19_c00221{bottom:393.794400px;}
.y18_c00221{bottom:424.934400px;}
.y17_c00221{bottom:455.984400px;}
.y16_c00221{bottom:507.914400px;}
.y15_c00221{bottom:539.054400px;}
.y14_c00221{bottom:570.104400px;}
.y13_c00221{bottom:601.154400px;}
.y12_c00221{bottom:632.204400px;}
.y11_c00221{bottom:663.254400px;}
.y10_c00221{bottom:694.304400px;}
.yf_c00221{bottom:746.234400px;}
.ye_c00221{bottom:777.374400px;}
.yd_c00221{bottom:808.424400px;}
.yc_c00221{bottom:839.474400px;}
.yb_c00221{bottom:870.524400px;}
.ya_c00221{bottom:901.574400px;}
.y9_c00221{bottom:932.624400px;}
.y8_c00221{bottom:984.644400px;}
.y7_c00221{bottom:1015.694400px;}
.y6_c00221{bottom:1046.744400px;}
.y5_c00221{bottom:1077.794400px;}
.y4_c00221{bottom:1108.844400px;}
.y3_c00221{bottom:1139.894400px;}
.y2_c00221{bottom:1194.074400px;}
.h2_c00221{height:50.400000px;}
.h3_c00221{height:54.331699px;}
.h4_c00221{height:76.824000px;}
.h5_c00221{height:78.048000px;}
.h0_c00221{height:1262.835000px;}
.h1_c00221{height:1263.000000px;}
.w0_c00221{width:892.914000px;}
.w1_c00221{width:893.250000px;}
.x0_c00221{left:0.000000px;}
.x1_c00221{left:54.000000px;}
.x2_c00221{left:127.620000px;}
.x4_c00221{left:154.620000px;}
.x3_c00221{left:159.570000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.lsb_c00221{letter-spacing:-0.256000pt;}
.lsd_c00221{letter-spacing:-0.192000pt;}
.lsc_c00221{letter-spacing:-0.064000pt;}
.lsa_c00221{letter-spacing:0.000000pt;}
.ls0_c00221{letter-spacing:0.064000pt;}
.ls3_c00221{letter-spacing:0.128000pt;}
.ls7_c00221{letter-spacing:0.320000pt;}
.ls8_c00221{letter-spacing:16.979200pt;}
.ls1_c00221{letter-spacing:19.264000pt;}
.ls2_c00221{letter-spacing:19.520000pt;}
.ls4_c00221{letter-spacing:24.640000pt;}
.ls6_c00221{letter-spacing:31.680000pt;}
.ls5_c00221{letter-spacing:33.920000pt;}
.ls9_c00221{letter-spacing:34.880000pt;}
.ws6_c00221{word-spacing:-16.128000pt;}
.ws1_c00221{word-spacing:-16.064000pt;}
.ws0_c00221{word-spacing:-16.000000pt;}
.ws28_c00221{word-spacing:-0.320000pt;}
.ws19_c00221{word-spacing:-0.064000pt;}
.wsa_c00221{word-spacing:0.000000pt;}
.ws1e_c00221{word-spacing:0.320000pt;}
.ws2a_c00221{word-spacing:0.896000pt;}
.ws29_c00221{word-spacing:0.960000pt;}
.ws1d_c00221{word-spacing:1.856000pt;}
.ws17_c00221{word-spacing:2.176000pt;}
.ws16_c00221{word-spacing:3.136000pt;}
.wse_c00221{word-spacing:3.456000pt;}
.wsc_c00221{word-spacing:3.520000pt;}
.wsd_c00221{word-spacing:3.776000pt;}
.ws1a_c00221{word-spacing:3.840000pt;}
.ws25_c00221{word-spacing:4.736000pt;}
.ws26_c00221{word-spacing:4.800000pt;}
.ws21_c00221{word-spacing:6.400000pt;}
.ws22_c00221{word-spacing:6.656000pt;}
.ws9_c00221{word-spacing:6.720000pt;}
.ws8_c00221{word-spacing:6.912000pt;}
.ws24_c00221{word-spacing:7.040000pt;}
.ws20_c00221{word-spacing:7.616000pt;}
.ws23_c00221{word-spacing:7.936000pt;}
.ws1c_c00221{word-spacing:8.640000pt;}
.wsb_c00221{word-spacing:10.816000pt;}
.ws10_c00221{word-spacing:12.160000pt;}
.ws14_c00221{word-spacing:14.080000pt;}
.ws1b_c00221{word-spacing:15.360000pt;}
.ws27_c00221{word-spacing:15.680000pt;}
.ws18_c00221{word-spacing:17.600000pt;}
.ws1f_c00221{word-spacing:17.856000pt;}
.ws7_c00221{word-spacing:17.984000pt;}
.ws5_c00221{word-spacing:18.176000pt;}
.ws2c_c00221{word-spacing:18.560000pt;}
.ws2b_c00221{word-spacing:18.816000pt;}
.ws15_c00221{word-spacing:21.056000pt;}
.ws4_c00221{word-spacing:21.120000pt;}
.ws3_c00221{word-spacing:21.561600pt;}
.ws13_c00221{word-spacing:22.016000pt;}
.ws2_c00221{word-spacing:22.208000pt;}
.wsf_c00221{word-spacing:24.640000pt;}
.ws11_c00221{word-spacing:27.456000pt;}
.ws12_c00221{word-spacing:27.520000pt;}
._0_c00221{margin-left:-1.113600pt;}
._1_c00221{width:1.152000pt;}
._3_c00221{width:3.968000pt;}
._4_c00221{width:15.065600pt;}
._2_c00221{width:18.892800pt;}
.fs1_c00221{font-size:58.560000pt;}
.fs0_c00221{font-size:64.000000pt;}
.y0_c00221{bottom:0.000000pt;}
.y1_c00221{bottom:54.887600pt;}
.y21_c00221{bottom:110.679467pt;}
.y20_c00221{bottom:138.279467pt;}
.y1f_c00221{bottom:165.879467pt;}
.y1e_c00221{bottom:193.479467pt;}
.y1d_c00221{bottom:221.079467pt;}
.y1c_c00221{bottom:248.679467pt;}
.y1b_c00221{bottom:276.279467pt;}
.y1a_c00221{bottom:303.879467pt;}
.y19_c00221{bottom:350.039467pt;}
.y18_c00221{bottom:377.719467pt;}
.y17_c00221{bottom:405.319467pt;}
.y16_c00221{bottom:451.479467pt;}
.y15_c00221{bottom:479.159467pt;}
.y14_c00221{bottom:506.759467pt;}
.y13_c00221{bottom:534.359467pt;}
.y12_c00221{bottom:561.959467pt;}
.y11_c00221{bottom:589.559467pt;}
.y10_c00221{bottom:617.159467pt;}
.yf_c00221{bottom:663.319467pt;}
.ye_c00221{bottom:690.999467pt;}
.yd_c00221{bottom:718.599467pt;}
.yc_c00221{bottom:746.199467pt;}
.yb_c00221{bottom:773.799467pt;}
.ya_c00221{bottom:801.399467pt;}
.y9_c00221{bottom:828.999467pt;}
.y8_c00221{bottom:875.239467pt;}
.y7_c00221{bottom:902.839467pt;}
.y6_c00221{bottom:930.439467pt;}
.y5_c00221{bottom:958.039467pt;}
.y4_c00221{bottom:985.639467pt;}
.y3_c00221{bottom:1013.239467pt;}
.y2_c00221{bottom:1061.399467pt;}
.h2_c00221{height:44.800000pt;}
.h3_c00221{height:48.294844pt;}
.h4_c00221{height:68.288000pt;}
.h5_c00221{height:69.376000pt;}
.h0_c00221{height:1122.520000pt;}
.h1_c00221{height:1122.666667pt;}
.w0_c00221{width:793.701333pt;}
.w1_c00221{width:794.000000pt;}
.x0_c00221{left:0.000000pt;}
.x1_c00221{left:48.000000pt;}
.x2_c00221{left:113.440000pt;}
.x4_c00221{left:137.440000pt;}
.x3_c00221{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00222;src:url('chunks/assets/font_43a26a332677ee30c5ea103d.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00222;src:url('chunks/assets/font_c3649cd3604a6d85861b63eb.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00222;src:url('chunks/assets/font_c433f7c9e87e884d251109fa.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00222;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00222{font-family:ff5_c00222;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00222;src:url('chunks/assets/font_772f4557c5b7fd12f246599b.woff2')format("woff");}.ff6_c00222{font-family:ff6_c00222;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00222;src:url('chunks/assets/font_1d79769bd9b05950d066d728.woff2')format("woff");}.ff7_c00222{font-family:ff7_c00222;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00222;src:url('chunks/assets/font_b60780ddd9ec347efbb74cea.woff2')format("woff");}.ff8_c00222{font-family:ff8_c00222;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls17_c00222{letter-spacing:-0.576000px;}
.ls13_c00222{letter-spacing:-0.288000px;}
.ls15_c00222{letter-spacing:-0.216000px;}
.ls16_c00222{letter-spacing:-0.144000px;}
.ls14_c00222{letter-spacing:-0.072000px;}
.ls12_c00222{letter-spacing:0.000000px;}
.ls0_c00222{letter-spacing:0.072000px;}
.ls3_c00222{letter-spacing:0.144000px;}
.ls7_c00222{letter-spacing:0.360000px;}
.lsa_c00222{letter-spacing:19.094400px;}
.ls8_c00222{letter-spacing:19.101600px;}
.ls1_c00222{letter-spacing:21.672000px;}
.ls2_c00222{letter-spacing:21.960000px;}
.lsb_c00222{letter-spacing:22.320000px;}
.ls4_c00222{letter-spacing:27.720000px;}
.lsf_c00222{letter-spacing:28.440000px;}
.lse_c00222{letter-spacing:28.800000px;}
.lsd_c00222{letter-spacing:28.972800px;}
.ls10_c00222{letter-spacing:29.160000px;}
.lsc_c00222{letter-spacing:29.880000px;}
.ls6_c00222{letter-spacing:35.640000px;}
.ls5_c00222{letter-spacing:38.160000px;}
.ls9_c00222{letter-spacing:39.240000px;}
.ls11_c00222{letter-spacing:40.680000px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00222{word-spacing:-18.144000px;}
.ws1_c00222{word-spacing:-18.072000px;}
.ws0_c00222{word-spacing:-18.000000px;}
.wsc_c00222{word-spacing:-17.424000px;}
.ws2c_c00222{word-spacing:-0.360000px;}
.ws31_c00222{word-spacing:-0.131760px;}
.ws1d_c00222{word-spacing:-0.072000px;}
.wse_c00222{word-spacing:0.000000px;}
.ws32_c00222{word-spacing:0.144000px;}
.ws22_c00222{word-spacing:0.360000px;}
.ws2e_c00222{word-spacing:1.008000px;}
.ws2d_c00222{word-spacing:1.080000px;}
.ws21_c00222{word-spacing:2.088000px;}
.ws1b_c00222{word-spacing:2.448000px;}
.ws1a_c00222{word-spacing:3.528000px;}
.ws12_c00222{word-spacing:3.888000px;}
.ws10_c00222{word-spacing:3.960000px;}
.ws11_c00222{word-spacing:4.248000px;}
.ws1e_c00222{word-spacing:4.320000px;}
.ws29_c00222{word-spacing:5.328000px;}
.ws2a_c00222{word-spacing:5.400000px;}
.ws44_c00222{word-spacing:7.128000px;}
.ws25_c00222{word-spacing:7.200000px;}
.ws26_c00222{word-spacing:7.488000px;}
.ws9_c00222{word-spacing:7.560000px;}
.ws8_c00222{word-spacing:7.776000px;}
.ws28_c00222{word-spacing:7.920000px;}
.ws3b_c00222{word-spacing:8.208000px;}
.ws3c_c00222{word-spacing:8.280000px;}
.ws24_c00222{word-spacing:8.568000px;}
.ws27_c00222{word-spacing:8.928000px;}
.ws20_c00222{word-spacing:9.720000px;}
.ws38_c00222{word-spacing:10.368000px;}
.ws39_c00222{word-spacing:10.440000px;}
.wsb_c00222{word-spacing:10.670400px;}
.ws34_c00222{word-spacing:10.728000px;}
.ws35_c00222{word-spacing:10.800000px;}
.ws3f_c00222{word-spacing:11.088000px;}
.ws40_c00222{word-spacing:11.160000px;}
.ws47_c00222{word-spacing:11.520000px;}
.ws41_c00222{word-spacing:11.808000px;}
.ws37_c00222{word-spacing:11.880000px;}
.wsf_c00222{word-spacing:12.168000px;}
.ws42_c00222{word-spacing:13.248000px;}
.ws43_c00222{word-spacing:13.320000px;}
.ws3a_c00222{word-spacing:13.608000px;}
.ws14_c00222{word-spacing:13.680000px;}
.ws18_c00222{word-spacing:15.840000px;}
.ws3d_c00222{word-spacing:16.848000px;}
.ws1f_c00222{word-spacing:17.280000px;}
.ws2b_c00222{word-spacing:17.640000px;}
.ws1c_c00222{word-spacing:19.800000px;}
.ws23_c00222{word-spacing:20.088000px;}
.ws7_c00222{word-spacing:20.232000px;}
.ws5_c00222{word-spacing:20.448000px;}
.ws30_c00222{word-spacing:20.880000px;}
.ws2f_c00222{word-spacing:21.168000px;}
.ws3e_c00222{word-spacing:22.320000px;}
.wsd_c00222{word-spacing:22.392000px;}
.ws45_c00222{word-spacing:22.968000px;}
.ws46_c00222{word-spacing:23.040000px;}
.ws36_c00222{word-spacing:23.400000px;}
.ws19_c00222{word-spacing:23.688000px;}
.ws4_c00222{word-spacing:23.760000px;}
.ws3_c00222{word-spacing:24.249600px;}
.wsa_c00222{word-spacing:24.256800px;}
.ws17_c00222{word-spacing:24.768000px;}
.ws2_c00222{word-spacing:24.984000px;}
.ws13_c00222{word-spacing:27.720000px;}
.ws15_c00222{word-spacing:30.888000px;}
.ws16_c00222{word-spacing:30.960000px;}
.ws33_c00222{word-spacing:31.968000px;}
._0_c00222{margin-left:-1.252800px;}
._1_c00222{width:1.296000px;}
._3_c00222{width:4.464000px;}
._6_c00222{width:13.752000px;}
._4_c00222{width:16.948800px;}
._2_c00222{width:21.254400px;}
._5_c00222{width:32.112000px;}
._7_c00222{width:41.140800px;}
.fc2_c00222{color:transparent;}
.fc1_c00222{color:rgb(0,0,0);}
.fc0_c00222{color:rgb(35,31,32);}
.fs1_c00222{font-size:65.880000px;}
.fs0_c00222{font-size:72.000000px;}
.y0_c00222{bottom:0.000000px;}
.y1_c00222{bottom:61.748550px;}
.y21_c00222{bottom:124.514400px;}
.y20_c00222{bottom:155.564400px;}
.y1f_c00222{bottom:186.614400px;}
.y1e_c00222{bottom:217.664400px;}
.y1d_c00222{bottom:248.714400px;}
.y33_c00222{bottom:259.604400px;}
.y1c_c00222{bottom:279.764400px;}
.y32_c00222{bottom:290.654400px;}
.y1b_c00222{bottom:310.814400px;}
.y31_c00222{bottom:321.704400px;}
.y1a_c00222{bottom:341.864400px;}
.y30_c00222{bottom:352.754400px;}
.y19_c00222{bottom:393.794400px;}
.y2f_c00222{bottom:414.854400px;}
.y18_c00222{bottom:424.934400px;}
.y2e_c00222{bottom:445.904400px;}
.y17_c00222{bottom:455.984400px;}
.y2d_c00222{bottom:476.954400px;}
.y16_c00222{bottom:507.914400px;}
.y2c_c00222{bottom:508.004400px;}
.y15_c00222{bottom:539.054400px;}
.y14_c00222{bottom:570.104400px;}
.y13_c00222{bottom:601.154400px;}
.y12_c00222{bottom:632.204400px;}
.y11_c00222{bottom:663.254400px;}
.y10_c00222{bottom:694.304400px;}
.y2b_c00222{bottom:725.354400px;}
.yf_c00222{bottom:746.234400px;}
.ye_c00222{bottom:777.374400px;}
.y2a_c00222{bottom:787.454400px;}
.yd_c00222{bottom:808.424400px;}
.y29_c00222{bottom:818.504400px;}
.yc_c00222{bottom:839.474400px;}
.y28_c00222{bottom:849.554400px;}
.yb_c00222{bottom:870.524400px;}
.y27_c00222{bottom:880.604400px;}
.ya_c00222{bottom:901.574400px;}
.y26_c00222{bottom:911.654400px;}
.y9_c00222{bottom:932.624400px;}
.y25_c00222{bottom:942.704400px;}
.y24_c00222{bottom:973.754400px;}
.y8_c00222{bottom:984.644400px;}
.y23_c00222{bottom:1004.804400px;}
.y7_c00222{bottom:1015.694400px;}
.y6_c00222{bottom:1046.744400px;}
.y22_c00222{bottom:1056.734400px;}
.y5_c00222{bottom:1077.794400px;}
.y4_c00222{bottom:1108.844400px;}
.y3_c00222{bottom:1139.894400px;}
.y2_c00222{bottom:1194.074400px;}
.h2_c00222{height:50.400000px;}
.h3_c00222{height:54.331699px;}
.h4_c00222{height:76.824000px;}
.h5_c00222{height:78.048000px;}
.h0_c00222{height:1262.835000px;}
.h1_c00222{height:1263.000000px;}
.w2_c00222{width:0.000000px;}
.w3_c00222{width:0.066000px;}
.w0_c00222{width:892.914000px;}
.w1_c00222{width:893.250000px;}
.x1_c00222{left:-838.913400px;}
.x2_c00222{left:-765.293400px;}
.x4_c00222{left:-738.293400px;}
.x3_c00222{left:-733.343400px;}
.x0_c00222{left:0.000000px;}
.x7_c00222{left:127.620000px;}
.x8_c00222{left:154.620000px;}
.x9_c00222{left:159.570000px;}
.x6_c00222{left:696.510000px;}
.x5_c00222{left:804.366150px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls17_c00222{letter-spacing:-0.512000pt;}
.ls13_c00222{letter-spacing:-0.256000pt;}
.ls15_c00222{letter-spacing:-0.192000pt;}
.ls16_c00222{letter-spacing:-0.128000pt;}
.ls14_c00222{letter-spacing:-0.064000pt;}
.ls12_c00222{letter-spacing:0.000000pt;}
.ls0_c00222{letter-spacing:0.064000pt;}
.ls3_c00222{letter-spacing:0.128000pt;}
.ls7_c00222{letter-spacing:0.320000pt;}
.lsa_c00222{letter-spacing:16.972800pt;}
.ls8_c00222{letter-spacing:16.979200pt;}
.ls1_c00222{letter-spacing:19.264000pt;}
.ls2_c00222{letter-spacing:19.520000pt;}
.lsb_c00222{letter-spacing:19.840000pt;}
.ls4_c00222{letter-spacing:24.640000pt;}
.lsf_c00222{letter-spacing:25.280000pt;}
.lse_c00222{letter-spacing:25.600000pt;}
.lsd_c00222{letter-spacing:25.753600pt;}
.ls10_c00222{letter-spacing:25.920000pt;}
.lsc_c00222{letter-spacing:26.560000pt;}
.ls6_c00222{letter-spacing:31.680000pt;}
.ls5_c00222{letter-spacing:33.920000pt;}
.ls9_c00222{letter-spacing:34.880000pt;}
.ls11_c00222{letter-spacing:36.160000pt;}
.ws6_c00222{word-spacing:-16.128000pt;}
.ws1_c00222{word-spacing:-16.064000pt;}
.ws0_c00222{word-spacing:-16.000000pt;}
.wsc_c00222{word-spacing:-15.488000pt;}
.ws2c_c00222{word-spacing:-0.320000pt;}
.ws31_c00222{word-spacing:-0.117120pt;}
.ws1d_c00222{word-spacing:-0.064000pt;}
.wse_c00222{word-spacing:0.000000pt;}
.ws32_c00222{word-spacing:0.128000pt;}
.ws22_c00222{word-spacing:0.320000pt;}
.ws2e_c00222{word-spacing:0.896000pt;}
.ws2d_c00222{word-spacing:0.960000pt;}
.ws21_c00222{word-spacing:1.856000pt;}
.ws1b_c00222{word-spacing:2.176000pt;}
.ws1a_c00222{word-spacing:3.136000pt;}
.ws12_c00222{word-spacing:3.456000pt;}
.ws10_c00222{word-spacing:3.520000pt;}
.ws11_c00222{word-spacing:3.776000pt;}
.ws1e_c00222{word-spacing:3.840000pt;}
.ws29_c00222{word-spacing:4.736000pt;}
.ws2a_c00222{word-spacing:4.800000pt;}
.ws44_c00222{word-spacing:6.336000pt;}
.ws25_c00222{word-spacing:6.400000pt;}
.ws26_c00222{word-spacing:6.656000pt;}
.ws9_c00222{word-spacing:6.720000pt;}
.ws8_c00222{word-spacing:6.912000pt;}
.ws28_c00222{word-spacing:7.040000pt;}
.ws3b_c00222{word-spacing:7.296000pt;}
.ws3c_c00222{word-spacing:7.360000pt;}
.ws24_c00222{word-spacing:7.616000pt;}
.ws27_c00222{word-spacing:7.936000pt;}
.ws20_c00222{word-spacing:8.640000pt;}
.ws38_c00222{word-spacing:9.216000pt;}
.ws39_c00222{word-spacing:9.280000pt;}
.wsb_c00222{word-spacing:9.484800pt;}
.ws34_c00222{word-spacing:9.536000pt;}
.ws35_c00222{word-spacing:9.600000pt;}
.ws3f_c00222{word-spacing:9.856000pt;}
.ws40_c00222{word-spacing:9.920000pt;}
.ws47_c00222{word-spacing:10.240000pt;}
.ws41_c00222{word-spacing:10.496000pt;}
.ws37_c00222{word-spacing:10.560000pt;}
.wsf_c00222{word-spacing:10.816000pt;}
.ws42_c00222{word-spacing:11.776000pt;}
.ws43_c00222{word-spacing:11.840000pt;}
.ws3a_c00222{word-spacing:12.096000pt;}
.ws14_c00222{word-spacing:12.160000pt;}
.ws18_c00222{word-spacing:14.080000pt;}
.ws3d_c00222{word-spacing:14.976000pt;}
.ws1f_c00222{word-spacing:15.360000pt;}
.ws2b_c00222{word-spacing:15.680000pt;}
.ws1c_c00222{word-spacing:17.600000pt;}
.ws23_c00222{word-spacing:17.856000pt;}
.ws7_c00222{word-spacing:17.984000pt;}
.ws5_c00222{word-spacing:18.176000pt;}
.ws30_c00222{word-spacing:18.560000pt;}
.ws2f_c00222{word-spacing:18.816000pt;}
.ws3e_c00222{word-spacing:19.840000pt;}
.wsd_c00222{word-spacing:19.904000pt;}
.ws45_c00222{word-spacing:20.416000pt;}
.ws46_c00222{word-spacing:20.480000pt;}
.ws36_c00222{word-spacing:20.800000pt;}
.ws19_c00222{word-spacing:21.056000pt;}
.ws4_c00222{word-spacing:21.120000pt;}
.ws3_c00222{word-spacing:21.555200pt;}
.wsa_c00222{word-spacing:21.561600pt;}
.ws17_c00222{word-spacing:22.016000pt;}
.ws2_c00222{word-spacing:22.208000pt;}
.ws13_c00222{word-spacing:24.640000pt;}
.ws15_c00222{word-spacing:27.456000pt;}
.ws16_c00222{word-spacing:27.520000pt;}
.ws33_c00222{word-spacing:28.416000pt;}
._0_c00222{margin-left:-1.113600pt;}
._1_c00222{width:1.152000pt;}
._3_c00222{width:3.968000pt;}
._6_c00222{width:12.224000pt;}
._4_c00222{width:15.065600pt;}
._2_c00222{width:18.892800pt;}
._5_c00222{width:28.544000pt;}
._7_c00222{width:36.569600pt;}
.fs1_c00222{font-size:58.560000pt;}
.fs0_c00222{font-size:64.000000pt;}
.y0_c00222{bottom:0.000000pt;}
.y1_c00222{bottom:54.887600pt;}
.y21_c00222{bottom:110.679467pt;}
.y20_c00222{bottom:138.279467pt;}
.y1f_c00222{bottom:165.879467pt;}
.y1e_c00222{bottom:193.479467pt;}
.y1d_c00222{bottom:221.079467pt;}
.y33_c00222{bottom:230.759467pt;}
.y1c_c00222{bottom:248.679467pt;}
.y32_c00222{bottom:258.359467pt;}
.y1b_c00222{bottom:276.279467pt;}
.y31_c00222{bottom:285.959467pt;}
.y1a_c00222{bottom:303.879467pt;}
.y30_c00222{bottom:313.559467pt;}
.y19_c00222{bottom:350.039467pt;}
.y2f_c00222{bottom:368.759467pt;}
.y18_c00222{bottom:377.719467pt;}
.y2e_c00222{bottom:396.359467pt;}
.y17_c00222{bottom:405.319467pt;}
.y2d_c00222{bottom:423.959467pt;}
.y16_c00222{bottom:451.479467pt;}
.y2c_c00222{bottom:451.559467pt;}
.y15_c00222{bottom:479.159467pt;}
.y14_c00222{bottom:506.759467pt;}
.y13_c00222{bottom:534.359467pt;}
.y12_c00222{bottom:561.959467pt;}
.y11_c00222{bottom:589.559467pt;}
.y10_c00222{bottom:617.159467pt;}
.y2b_c00222{bottom:644.759467pt;}
.yf_c00222{bottom:663.319467pt;}
.ye_c00222{bottom:690.999467pt;}
.y2a_c00222{bottom:699.959467pt;}
.yd_c00222{bottom:718.599467pt;}
.y29_c00222{bottom:727.559467pt;}
.yc_c00222{bottom:746.199467pt;}
.y28_c00222{bottom:755.159467pt;}
.yb_c00222{bottom:773.799467pt;}
.y27_c00222{bottom:782.759467pt;}
.ya_c00222{bottom:801.399467pt;}
.y26_c00222{bottom:810.359467pt;}
.y9_c00222{bottom:828.999467pt;}
.y25_c00222{bottom:837.959467pt;}
.y24_c00222{bottom:865.559467pt;}
.y8_c00222{bottom:875.239467pt;}
.y23_c00222{bottom:893.159467pt;}
.y7_c00222{bottom:902.839467pt;}
.y6_c00222{bottom:930.439467pt;}
.y22_c00222{bottom:939.319467pt;}
.y5_c00222{bottom:958.039467pt;}
.y4_c00222{bottom:985.639467pt;}
.y3_c00222{bottom:1013.239467pt;}
.y2_c00222{bottom:1061.399467pt;}
.h2_c00222{height:44.800000pt;}
.h3_c00222{height:48.294844pt;}
.h4_c00222{height:68.288000pt;}
.h5_c00222{height:69.376000pt;}
.h0_c00222{height:1122.520000pt;}
.h1_c00222{height:1122.666667pt;}
.w2_c00222{width:0.000000pt;}
.w3_c00222{width:0.058667pt;}
.w0_c00222{width:793.701333pt;}
.w1_c00222{width:794.000000pt;}
.x1_c00222{left:-745.700800pt;}
.x2_c00222{left:-680.260800pt;}
.x4_c00222{left:-656.260800pt;}
.x3_c00222{left:-651.860800pt;}
.x0_c00222{left:0.000000pt;}
.x7_c00222{left:113.440000pt;}
.x8_c00222{left:137.440000pt;}
.x9_c00222{left:141.840000pt;}
.x6_c00222{left:619.120000pt;}
.x5_c00222{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00223;src:url('chunks/assets/font_1420bf945db9c246918a61c9.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_2d8f8f212a77b5979279378f.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00223;src:url('chunks/assets/font_42a2d547374ab22f4357e31f.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00223;src:url('chunks/assets/font_a4078489e4b3ca5af0a2851d.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00223{letter-spacing:-0.072000px;}
.ls5_c00223{letter-spacing:0.000000px;}
.ls0_c00223{letter-spacing:0.072000px;}
.ls2_c00223{letter-spacing:0.144000px;}
.ls4_c00223{letter-spacing:18.360000px;}
.ls3_c00223{letter-spacing:24.120000px;}
.ls1_c00223{letter-spacing:30.240000px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00223{word-spacing:-18.000000px;}
.ws27_c00223{word-spacing:-0.504000px;}
.ws10_c00223{word-spacing:-0.144000px;}
.wsf_c00223{word-spacing:-0.072000px;}
.ws5_c00223{word-spacing:0.000000px;}
.ws18_c00223{word-spacing:0.288000px;}
.ws19_c00223{word-spacing:0.360000px;}
.wsb_c00223{word-spacing:1.728000px;}
.wsc_c00223{word-spacing:1.800000px;}
.ws17_c00223{word-spacing:3.168000px;}
.ws1f_c00223{word-spacing:3.528000px;}
.ws2_c00223{word-spacing:4.464000px;}
.wsa_c00223{word-spacing:4.608000px;}
.ws25_c00223{word-spacing:4.968000px;}
.ws13_c00223{word-spacing:5.040000px;}
.ws21_c00223{word-spacing:5.400000px;}
.ws20_c00223{word-spacing:5.544000px;}
.ws22_c00223{word-spacing:5.688000px;}
.ws14_c00223{word-spacing:6.408000px;}
.ws15_c00223{word-spacing:6.480000px;}
.ws16_c00223{word-spacing:9.648000px;}
.wse_c00223{word-spacing:12.240000px;}
.wsd_c00223{word-spacing:12.456000px;}
.ws4_c00223{word-spacing:12.700800px;}
.ws26_c00223{word-spacing:12.816000px;}
.ws6_c00223{word-spacing:12.888000px;}
.ws7_c00223{word-spacing:12.960000px;}
.ws1b_c00223{word-spacing:14.616000px;}
.ws1c_c00223{word-spacing:14.688000px;}
.ws1a_c00223{word-spacing:14.760000px;}
.ws0_c00223{word-spacing:17.640000px;}
.ws9_c00223{word-spacing:17.928000px;}
.ws8_c00223{word-spacing:18.000000px;}
.ws1d_c00223{word-spacing:19.008000px;}
.ws1e_c00223{word-spacing:19.080000px;}
.ws24_c00223{word-spacing:19.296000px;}
.ws23_c00223{word-spacing:19.440000px;}
.ws12_c00223{word-spacing:28.440000px;}
.ws11_c00223{word-spacing:30.960000px;}
.ws3_c00223{word-spacing:140.400000px;}
._0_c00223{margin-left:-1.094400px;}
._1_c00223{width:1.008000px;}
._2_c00223{width:14.688000px;}
.fc1_c00223{color:rgb(0,0,0);}
.fc0_c00223{color:rgb(35,31,32);}
.fs1_c00223{font-size:65.880000px;}
.fs0_c00223{font-size:72.000000px;}
.y0_c00223{bottom:0.000000px;}
.y1_c00223{bottom:61.748550px;}
.y1d_c00223{bottom:146.384400px;}
.y1c_c00223{bottom:177.434400px;}
.y1b_c00223{bottom:208.484400px;}
.y1a_c00223{bottom:239.534400px;}
.y19_c00223{bottom:270.584400px;}
.y18_c00223{bottom:301.634400px;}
.y17_c00223{bottom:332.684400px;}
.y16_c00223{bottom:363.734400px;}
.y15_c00223{bottom:425.834400px;}
.y14_c00223{bottom:456.884400px;}
.y13_c00223{bottom:487.934400px;}
.y12_c00223{bottom:518.984400px;}
.y11_c00223{bottom:581.084400px;}
.y10_c00223{bottom:612.134400px;}
.yf_c00223{bottom:643.184400px;}
.ye_c00223{bottom:674.234400px;}
.yd_c00223{bottom:736.334400px;}
.yc_c00223{bottom:767.384400px;}
.yb_c00223{bottom:798.434400px;}
.ya_c00223{bottom:860.354400px;}
.y9_c00223{bottom:922.634400px;}
.y8_c00223{bottom:953.684400px;}
.y7_c00223{bottom:984.644400px;}
.y6_c00223{bottom:1015.694400px;}
.y5_c00223{bottom:1046.744400px;}
.y4_c00223{bottom:1077.794400px;}
.y3_c00223{bottom:1139.804400px;}
.y2_c00223{bottom:1194.074400px;}
.h2_c00223{height:50.400000px;}
.h3_c00223{height:54.331699px;}
.h5_c00223{height:76.824000px;}
.h4_c00223{height:78.048000px;}
.h0_c00223{height:1262.835000px;}
.h1_c00223{height:1263.000000px;}
.w0_c00223{width:892.914000px;}
.w1_c00223{width:893.250000px;}
.x0_c00223{left:0.000000px;}
.x1_c00223{left:54.000000px;}
.x2_c00223{left:127.620000px;}
.x3_c00223{left:154.620000px;}
.x4_c00223{left:159.570000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls6_c00223{letter-spacing:-0.064000pt;}
.ls5_c00223{letter-spacing:0.000000pt;}
.ls0_c00223{letter-spacing:0.064000pt;}
.ls2_c00223{letter-spacing:0.128000pt;}
.ls4_c00223{letter-spacing:16.320000pt;}
.ls3_c00223{letter-spacing:21.440000pt;}
.ls1_c00223{letter-spacing:26.880000pt;}
.ws1_c00223{word-spacing:-16.000000pt;}
.ws27_c00223{word-spacing:-0.448000pt;}
.ws10_c00223{word-spacing:-0.128000pt;}
.wsf_c00223{word-spacing:-0.064000pt;}
.ws5_c00223{word-spacing:0.000000pt;}
.ws18_c00223{word-spacing:0.256000pt;}
.ws19_c00223{word-spacing:0.320000pt;}
.wsb_c00223{word-spacing:1.536000pt;}
.wsc_c00223{word-spacing:1.600000pt;}
.ws17_c00223{word-spacing:2.816000pt;}
.ws1f_c00223{word-spacing:3.136000pt;}
.ws2_c00223{word-spacing:3.968000pt;}
.wsa_c00223{word-spacing:4.096000pt;}
.ws25_c00223{word-spacing:4.416000pt;}
.ws13_c00223{word-spacing:4.480000pt;}
.ws21_c00223{word-spacing:4.800000pt;}
.ws20_c00223{word-spacing:4.928000pt;}
.ws22_c00223{word-spacing:5.056000pt;}
.ws14_c00223{word-spacing:5.696000pt;}
.ws15_c00223{word-spacing:5.760000pt;}
.ws16_c00223{word-spacing:8.576000pt;}
.wse_c00223{word-spacing:10.880000pt;}
.wsd_c00223{word-spacing:11.072000pt;}
.ws4_c00223{word-spacing:11.289600pt;}
.ws26_c00223{word-spacing:11.392000pt;}
.ws6_c00223{word-spacing:11.456000pt;}
.ws7_c00223{word-spacing:11.520000pt;}
.ws1b_c00223{word-spacing:12.992000pt;}
.ws1c_c00223{word-spacing:13.056000pt;}
.ws1a_c00223{word-spacing:13.120000pt;}
.ws0_c00223{word-spacing:15.680000pt;}
.ws9_c00223{word-spacing:15.936000pt;}
.ws8_c00223{word-spacing:16.000000pt;}
.ws1d_c00223{word-spacing:16.896000pt;}
.ws1e_c00223{word-spacing:16.960000pt;}
.ws24_c00223{word-spacing:17.152000pt;}
.ws23_c00223{word-spacing:17.280000pt;}
.ws12_c00223{word-spacing:25.280000pt;}
.ws11_c00223{word-spacing:27.520000pt;}
.ws3_c00223{word-spacing:124.800000pt;}
._0_c00223{margin-left:-0.972800pt;}
._1_c00223{width:0.896000pt;}
._2_c00223{width:13.056000pt;}
.fs1_c00223{font-size:58.560000pt;}
.fs0_c00223{font-size:64.000000pt;}
.y0_c00223{bottom:0.000000pt;}
.y1_c00223{bottom:54.887600pt;}
.y1d_c00223{bottom:130.119467pt;}
.y1c_c00223{bottom:157.719467pt;}
.y1b_c00223{bottom:185.319467pt;}
.y1a_c00223{bottom:212.919467pt;}
.y19_c00223{bottom:240.519467pt;}
.y18_c00223{bottom:268.119467pt;}
.y17_c00223{bottom:295.719467pt;}
.y16_c00223{bottom:323.319467pt;}
.y15_c00223{bottom:378.519467pt;}
.y14_c00223{bottom:406.119467pt;}
.y13_c00223{bottom:433.719467pt;}
.y12_c00223{bottom:461.319467pt;}
.y11_c00223{bottom:516.519467pt;}
.y10_c00223{bottom:544.119467pt;}
.yf_c00223{bottom:571.719467pt;}
.ye_c00223{bottom:599.319467pt;}
.yd_c00223{bottom:654.519467pt;}
.yc_c00223{bottom:682.119467pt;}
.yb_c00223{bottom:709.719467pt;}
.ya_c00223{bottom:764.759467pt;}
.y9_c00223{bottom:820.119467pt;}
.y8_c00223{bottom:847.719467pt;}
.y7_c00223{bottom:875.239467pt;}
.y6_c00223{bottom:902.839467pt;}
.y5_c00223{bottom:930.439467pt;}
.y4_c00223{bottom:958.039467pt;}
.y3_c00223{bottom:1013.159467pt;}
.y2_c00223{bottom:1061.399467pt;}
.h2_c00223{height:44.800000pt;}
.h3_c00223{height:48.294844pt;}
.h5_c00223{height:68.288000pt;}
.h4_c00223{height:69.376000pt;}
.h0_c00223{height:1122.520000pt;}
.h1_c00223{height:1122.666667pt;}
.w0_c00223{width:793.701333pt;}
.w1_c00223{width:794.000000pt;}
.x0_c00223{left:0.000000pt;}
.x1_c00223{left:48.000000pt;}
.x2_c00223{left:113.440000pt;}
.x3_c00223{left:137.440000pt;}
.x4_c00223{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00224;src:url('chunks/assets/font_d408466ec8acb5e58e84ea73.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00224;src:url('chunks/assets/font_e42ff6281493e1e1192c1694.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00224;src:url('chunks/assets/font_c9001b6fbfc588af72ad1ef3.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00224;src:url('chunks/assets/font_ed1717681669f7fff6c4750f.woff2')format("woff");}.ff5_c00224{font-family:ff5_c00224;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00224;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00224{font-family:ff6_c00224;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00224;src:url('chunks/assets/font_1891bed585de1646c301bdab.woff2')format("woff");}.ff7_c00224{font-family:ff7_c00224;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00224;src:url('chunks/assets/font_ab161a27207be3a69028d984.woff2')format("woff");}.ff8_c00224{font-family:ff8_c00224;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00224;src:url('chunks/assets/font_4cb411262b1c5f1da117b2c1.woff2')format("woff");}.ff9_c00224{font-family:ff9_c00224;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00224;src:url('chunks/assets/font_1066266031cae75896d66280.woff2')format("woff");}.ffa_c00224{font-family:ffa_c00224;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00224;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ffb_c00224{font-family:ffb_c00224;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.lsa_c00224{letter-spacing:-0.360000px;}
.ls9_c00224{letter-spacing:-0.072000px;}
.ls8_c00224{letter-spacing:0.000000px;}
.ls0_c00224{letter-spacing:0.072000px;}
.ls2_c00224{letter-spacing:0.144000px;}
.ls6_c00224{letter-spacing:18.000000px;}
.ls4_c00224{letter-spacing:18.360000px;}
.ls5_c00224{letter-spacing:18.720000px;}
.ls3_c00224{letter-spacing:24.120000px;}
.ls1_c00224{letter-spacing:30.240000px;}
.ls7_c00224{letter-spacing:45.432000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00224{word-spacing:-18.000000px;}
.ws29_c00224{word-spacing:-0.504000px;}
.ws12_c00224{word-spacing:-0.144000px;}
.ws2a_c00224{word-spacing:-0.131760px;}
.ws11_c00224{word-spacing:-0.072000px;}
.ws7_c00224{word-spacing:0.000000px;}
.ws34_c00224{word-spacing:0.072000px;}
.ws44_c00224{word-spacing:0.216000px;}
.ws1a_c00224{word-spacing:0.288000px;}
.ws1b_c00224{word-spacing:0.360000px;}
.ws31_c00224{word-spacing:1.368000px;}
.ws30_c00224{word-spacing:1.440000px;}
.wsd_c00224{word-spacing:1.728000px;}
.wse_c00224{word-spacing:1.800000px;}
.ws19_c00224{word-spacing:3.168000px;}
.ws21_c00224{word-spacing:3.528000px;}
.ws2_c00224{word-spacing:4.464000px;}
.wsc_c00224{word-spacing:4.608000px;}
.ws27_c00224{word-spacing:4.968000px;}
.ws15_c00224{word-spacing:5.040000px;}
.ws23_c00224{word-spacing:5.400000px;}
.ws22_c00224{word-spacing:5.544000px;}
.ws32_c00224{word-spacing:5.616000px;}
.ws24_c00224{word-spacing:5.688000px;}
.ws16_c00224{word-spacing:6.408000px;}
.ws17_c00224{word-spacing:6.480000px;}
.ws2f_c00224{word-spacing:7.920000px;}
.ws2d_c00224{word-spacing:8.208000px;}
.ws2e_c00224{word-spacing:8.280000px;}
.ws38_c00224{word-spacing:8.928000px;}
.ws37_c00224{word-spacing:9.000000px;}
.ws18_c00224{word-spacing:9.648000px;}
.ws36_c00224{word-spacing:11.448000px;}
.ws35_c00224{word-spacing:11.520000px;}
.ws3b_c00224{word-spacing:12.168000px;}
.ws10_c00224{word-spacing:12.240000px;}
.wsf_c00224{word-spacing:12.456000px;}
.ws4_c00224{word-spacing:12.693600px;}
.ws5_c00224{word-spacing:12.708000px;}
.ws28_c00224{word-spacing:12.816000px;}
.ws8_c00224{word-spacing:12.888000px;}
.ws9_c00224{word-spacing:12.960000px;}
.ws3a_c00224{word-spacing:13.320000px;}
.ws1d_c00224{word-spacing:14.616000px;}
.ws1e_c00224{word-spacing:14.688000px;}
.ws1c_c00224{word-spacing:14.760000px;}
.ws2c_c00224{word-spacing:15.480000px;}
.ws2b_c00224{word-spacing:17.496000px;}
.ws0_c00224{word-spacing:17.640000px;}
.wsb_c00224{word-spacing:17.928000px;}
.wsa_c00224{word-spacing:18.000000px;}
.ws3c_c00224{word-spacing:18.288000px;}
.ws3d_c00224{word-spacing:18.720000px;}
.ws1f_c00224{word-spacing:19.008000px;}
.ws20_c00224{word-spacing:19.080000px;}
.ws26_c00224{word-spacing:19.296000px;}
.ws25_c00224{word-spacing:19.440000px;}
.ws45_c00224{word-spacing:20.088000px;}
.ws46_c00224{word-spacing:20.160000px;}
.ws40_c00224{word-spacing:21.240000px;}
.ws14_c00224{word-spacing:28.440000px;}
.ws41_c00224{word-spacing:29.808000px;}
.ws13_c00224{word-spacing:30.960000px;}
.ws39_c00224{word-spacing:31.680000px;}
.ws33_c00224{word-spacing:33.048000px;}
.ws3f_c00224{word-spacing:34.200000px;}
.ws3e_c00224{word-spacing:34.488000px;}
.ws42_c00224{word-spacing:40.896000px;}
.ws43_c00224{word-spacing:41.040000px;}
.ws6_c00224{word-spacing:104.400000px;}
.ws3_c00224{word-spacing:140.400000px;}
._0_c00224{margin-left:-1.094400px;}
._1_c00224{width:1.000800px;}
._3_c00224{width:11.664000px;}
._2_c00224{width:14.688000px;}
.fc2_c00224{color:transparent;}
.fc1_c00224{color:rgb(0,0,0);}
.fc0_c00224{color:rgb(35,31,32);}
.fs1_c00224{font-size:65.880000px;}
.fs0_c00224{font-size:72.000000px;}
.y0_c00224{bottom:0.000000px;}
.y1_c00224{bottom:61.748550px;}
.y35_c00224{bottom:142.514400px;}
.y1d_c00224{bottom:146.384400px;}
.y34_c00224{bottom:173.564400px;}
.y1c_c00224{bottom:177.434400px;}
.y33_c00224{bottom:204.614400px;}
.y1b_c00224{bottom:208.484400px;}
.y1a_c00224{bottom:239.534400px;}
.y32_c00224{bottom:266.714400px;}
.y19_c00224{bottom:270.584400px;}
.y31_c00224{bottom:297.764400px;}
.y18_c00224{bottom:301.634400px;}
.y30_c00224{bottom:328.814400px;}
.y17_c00224{bottom:332.684400px;}
.y2f_c00224{bottom:359.864400px;}
.y16_c00224{bottom:363.734400px;}
.y2e_c00224{bottom:390.914400px;}
.y2d_c00224{bottom:421.964400px;}
.y15_c00224{bottom:425.834400px;}
.y2c_c00224{bottom:452.924400px;}
.y14_c00224{bottom:456.884400px;}
.y2b_c00224{bottom:485.324400px;}
.y13_c00224{bottom:487.934400px;}
.y2a_c00224{bottom:516.374400px;}
.y12_c00224{bottom:518.984400px;}
.y29_c00224{bottom:547.424400px;}
.y28_c00224{bottom:578.474400px;}
.y11_c00224{bottom:581.084400px;}
.y27_c00224{bottom:609.524400px;}
.y10_c00224{bottom:612.134400px;}
.y26_c00224{bottom:640.574400px;}
.yf_c00224{bottom:643.184400px;}
.y25_c00224{bottom:671.534400px;}
.ye_c00224{bottom:674.234400px;}
.y24_c00224{bottom:703.934400px;}
.y23_c00224{bottom:734.984400px;}
.yd_c00224{bottom:736.334400px;}
.y22_c00224{bottom:766.034400px;}
.yc_c00224{bottom:767.384400px;}
.y21_c00224{bottom:797.084400px;}
.yb_c00224{bottom:798.434400px;}
.y20_c00224{bottom:828.134400px;}
.ya_c00224{bottom:860.354400px;}
.y1f_c00224{bottom:891.584400px;}
.y9_c00224{bottom:922.634400px;}
.y8_c00224{bottom:953.684400px;}
.y7_c00224{bottom:984.644400px;}
.y6_c00224{bottom:1015.694400px;}
.y5_c00224{bottom:1046.744400px;}
.y4_c00224{bottom:1077.794400px;}
.y1e_c00224{bottom:1139.714400px;}
.y3_c00224{bottom:1139.804400px;}
.y2_c00224{bottom:1194.074400px;}
.h2_c00224{height:50.400000px;}
.h3_c00224{height:54.331699px;}
.h5_c00224{height:76.824000px;}
.h4_c00224{height:78.048000px;}
.h0_c00224{height:1262.835000px;}
.h1_c00224{height:1263.000000px;}
.w2_c00224{width:0.000000px;}
.w3_c00224{width:0.066000px;}
.w0_c00224{width:892.914000px;}
.w1_c00224{width:893.250000px;}
.x1_c00224{left:-838.913400px;}
.x2_c00224{left:-765.293400px;}
.x3_c00224{left:-738.293400px;}
.x4_c00224{left:-733.343400px;}
.x0_c00224{left:0.000000px;}
.x7_c00224{left:127.620000px;}
.x9_c00224{left:148.950000px;}
.x8_c00224{left:159.570000px;}
.xa_c00224{left:170.190000px;}
.x6_c00224{left:696.510000px;}
.x5_c00224{left:804.366150px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.lsa_c00224{letter-spacing:-0.320000pt;}
.ls9_c00224{letter-spacing:-0.064000pt;}
.ls8_c00224{letter-spacing:0.000000pt;}
.ls0_c00224{letter-spacing:0.064000pt;}
.ls2_c00224{letter-spacing:0.128000pt;}
.ls6_c00224{letter-spacing:16.000000pt;}
.ls4_c00224{letter-spacing:16.320000pt;}
.ls5_c00224{letter-spacing:16.640000pt;}
.ls3_c00224{letter-spacing:21.440000pt;}
.ls1_c00224{letter-spacing:26.880000pt;}
.ls7_c00224{letter-spacing:40.384000pt;}
.ws1_c00224{word-spacing:-16.000000pt;}
.ws29_c00224{word-spacing:-0.448000pt;}
.ws12_c00224{word-spacing:-0.128000pt;}
.ws2a_c00224{word-spacing:-0.117120pt;}
.ws11_c00224{word-spacing:-0.064000pt;}
.ws7_c00224{word-spacing:0.000000pt;}
.ws34_c00224{word-spacing:0.064000pt;}
.ws44_c00224{word-spacing:0.192000pt;}
.ws1a_c00224{word-spacing:0.256000pt;}
.ws1b_c00224{word-spacing:0.320000pt;}
.ws31_c00224{word-spacing:1.216000pt;}
.ws30_c00224{word-spacing:1.280000pt;}
.wsd_c00224{word-spacing:1.536000pt;}
.wse_c00224{word-spacing:1.600000pt;}
.ws19_c00224{word-spacing:2.816000pt;}
.ws21_c00224{word-spacing:3.136000pt;}
.ws2_c00224{word-spacing:3.968000pt;}
.wsc_c00224{word-spacing:4.096000pt;}
.ws27_c00224{word-spacing:4.416000pt;}
.ws15_c00224{word-spacing:4.480000pt;}
.ws23_c00224{word-spacing:4.800000pt;}
.ws22_c00224{word-spacing:4.928000pt;}
.ws32_c00224{word-spacing:4.992000pt;}
.ws24_c00224{word-spacing:5.056000pt;}
.ws16_c00224{word-spacing:5.696000pt;}
.ws17_c00224{word-spacing:5.760000pt;}
.ws2f_c00224{word-spacing:7.040000pt;}
.ws2d_c00224{word-spacing:7.296000pt;}
.ws2e_c00224{word-spacing:7.360000pt;}
.ws38_c00224{word-spacing:7.936000pt;}
.ws37_c00224{word-spacing:8.000000pt;}
.ws18_c00224{word-spacing:8.576000pt;}
.ws36_c00224{word-spacing:10.176000pt;}
.ws35_c00224{word-spacing:10.240000pt;}
.ws3b_c00224{word-spacing:10.816000pt;}
.ws10_c00224{word-spacing:10.880000pt;}
.wsf_c00224{word-spacing:11.072000pt;}
.ws4_c00224{word-spacing:11.283200pt;}
.ws5_c00224{word-spacing:11.296000pt;}
.ws28_c00224{word-spacing:11.392000pt;}
.ws8_c00224{word-spacing:11.456000pt;}
.ws9_c00224{word-spacing:11.520000pt;}
.ws3a_c00224{word-spacing:11.840000pt;}
.ws1d_c00224{word-spacing:12.992000pt;}
.ws1e_c00224{word-spacing:13.056000pt;}
.ws1c_c00224{word-spacing:13.120000pt;}
.ws2c_c00224{word-spacing:13.760000pt;}
.ws2b_c00224{word-spacing:15.552000pt;}
.ws0_c00224{word-spacing:15.680000pt;}
.wsb_c00224{word-spacing:15.936000pt;}
.wsa_c00224{word-spacing:16.000000pt;}
.ws3c_c00224{word-spacing:16.256000pt;}
.ws3d_c00224{word-spacing:16.640000pt;}
.ws1f_c00224{word-spacing:16.896000pt;}
.ws20_c00224{word-spacing:16.960000pt;}
.ws26_c00224{word-spacing:17.152000pt;}
.ws25_c00224{word-spacing:17.280000pt;}
.ws45_c00224{word-spacing:17.856000pt;}
.ws46_c00224{word-spacing:17.920000pt;}
.ws40_c00224{word-spacing:18.880000pt;}
.ws14_c00224{word-spacing:25.280000pt;}
.ws41_c00224{word-spacing:26.496000pt;}
.ws13_c00224{word-spacing:27.520000pt;}
.ws39_c00224{word-spacing:28.160000pt;}
.ws33_c00224{word-spacing:29.376000pt;}
.ws3f_c00224{word-spacing:30.400000pt;}
.ws3e_c00224{word-spacing:30.656000pt;}
.ws42_c00224{word-spacing:36.352000pt;}
.ws43_c00224{word-spacing:36.480000pt;}
.ws6_c00224{word-spacing:92.800000pt;}
.ws3_c00224{word-spacing:124.800000pt;}
._0_c00224{margin-left:-0.972800pt;}
._1_c00224{width:0.889600pt;}
._3_c00224{width:10.368000pt;}
._2_c00224{width:13.056000pt;}
.fs1_c00224{font-size:58.560000pt;}
.fs0_c00224{font-size:64.000000pt;}
.y0_c00224{bottom:0.000000pt;}
.y1_c00224{bottom:54.887600pt;}
.y35_c00224{bottom:126.679467pt;}
.y1d_c00224{bottom:130.119467pt;}
.y34_c00224{bottom:154.279467pt;}
.y1c_c00224{bottom:157.719467pt;}
.y33_c00224{bottom:181.879467pt;}
.y1b_c00224{bottom:185.319467pt;}
.y1a_c00224{bottom:212.919467pt;}
.y32_c00224{bottom:237.079467pt;}
.y19_c00224{bottom:240.519467pt;}
.y31_c00224{bottom:264.679467pt;}
.y18_c00224{bottom:268.119467pt;}
.y30_c00224{bottom:292.279467pt;}
.y17_c00224{bottom:295.719467pt;}
.y2f_c00224{bottom:319.879467pt;}
.y16_c00224{bottom:323.319467pt;}
.y2e_c00224{bottom:347.479467pt;}
.y2d_c00224{bottom:375.079467pt;}
.y15_c00224{bottom:378.519467pt;}
.y2c_c00224{bottom:402.599467pt;}
.y14_c00224{bottom:406.119467pt;}
.y2b_c00224{bottom:431.399467pt;}
.y13_c00224{bottom:433.719467pt;}
.y2a_c00224{bottom:458.999467pt;}
.y12_c00224{bottom:461.319467pt;}
.y29_c00224{bottom:486.599467pt;}
.y28_c00224{bottom:514.199467pt;}
.y11_c00224{bottom:516.519467pt;}
.y27_c00224{bottom:541.799467pt;}
.y10_c00224{bottom:544.119467pt;}
.y26_c00224{bottom:569.399467pt;}
.yf_c00224{bottom:571.719467pt;}
.y25_c00224{bottom:596.919467pt;}
.ye_c00224{bottom:599.319467pt;}
.y24_c00224{bottom:625.719467pt;}
.y23_c00224{bottom:653.319467pt;}
.yd_c00224{bottom:654.519467pt;}
.y22_c00224{bottom:680.919467pt;}
.yc_c00224{bottom:682.119467pt;}
.y21_c00224{bottom:708.519467pt;}
.yb_c00224{bottom:709.719467pt;}
.y20_c00224{bottom:736.119467pt;}
.ya_c00224{bottom:764.759467pt;}
.y1f_c00224{bottom:792.519467pt;}
.y9_c00224{bottom:820.119467pt;}
.y8_c00224{bottom:847.719467pt;}
.y7_c00224{bottom:875.239467pt;}
.y6_c00224{bottom:902.839467pt;}
.y5_c00224{bottom:930.439467pt;}
.y4_c00224{bottom:958.039467pt;}
.y1e_c00224{bottom:1013.079467pt;}
.y3_c00224{bottom:1013.159467pt;}
.y2_c00224{bottom:1061.399467pt;}
.h2_c00224{height:44.800000pt;}
.h3_c00224{height:48.294844pt;}
.h5_c00224{height:68.288000pt;}
.h4_c00224{height:69.376000pt;}
.h0_c00224{height:1122.520000pt;}
.h1_c00224{height:1122.666667pt;}
.w2_c00224{width:0.000000pt;}
.w3_c00224{width:0.058667pt;}
.w0_c00224{width:793.701333pt;}
.w1_c00224{width:794.000000pt;}
.x1_c00224{left:-745.700800pt;}
.x2_c00224{left:-680.260800pt;}
.x3_c00224{left:-656.260800pt;}
.x4_c00224{left:-651.860800pt;}
.x0_c00224{left:0.000000pt;}
.x7_c00224{left:113.440000pt;}
.x9_c00224{left:132.400000pt;}
.x8_c00224{left:141.840000pt;}
.xa_c00224{left:151.280000pt;}
.x6_c00224{left:619.120000pt;}
.x5_c00224{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00225;src:url('chunks/assets/font_a77a2222bce00da221b5e19b.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00225;src:url('chunks/assets/font_4a3fad1f3ab63ff9104272c9.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00225;src:url('chunks/assets/font_e55d22d4eadedb230165a2f0.woff2')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00225;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.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;}
.m0_c00225{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.lsa_c00225{letter-spacing:-0.216000px;}
.ls9_c00225{letter-spacing:-0.072000px;}
.ls8_c00225{letter-spacing:0.000000px;}
.ls1_c00225{letter-spacing:0.072000px;}
.ls6_c00225{letter-spacing:0.144000px;}
.ls7_c00225{letter-spacing:20.880000px;}
.ls2_c00225{letter-spacing:24.480000px;}
.ls4_c00225{letter-spacing:27.000000px;}
.ls0_c00225{letter-spacing:36.000000px;}
.ls3_c00225{letter-spacing:37.440000px;}
.ls5_c00225{letter-spacing:68.472000px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00225{word-spacing:-18.072000px;}
.ws10_c00225{word-spacing:-0.072000px;}
.ws4_c00225{word-spacing:0.000000px;}
.wsa_c00225{word-spacing:0.648000px;}
.ws9_c00225{word-spacing:0.720000px;}
.ws13_c00225{word-spacing:1.368000px;}
.ws12_c00225{word-spacing:1.440000px;}
.wse_c00225{word-spacing:2.160000px;}
.ws21_c00225{word-spacing:2.448000px;}
.ws28_c00225{word-spacing:2.808000px;}
.ws29_c00225{word-spacing:2.880000px;}
.ws2a_c00225{word-spacing:3.168000px;}
.ws24_c00225{word-spacing:4.248000px;}
.ws23_c00225{word-spacing:4.536000px;}
.ws18_c00225{word-spacing:4.968000px;}
.ws15_c00225{word-spacing:6.408000px;}
.ws22_c00225{word-spacing:6.480000px;}
.ws27_c00225{word-spacing:6.768000px;}
.ws14_c00225{word-spacing:6.840000px;}
.ws1_c00225{word-spacing:7.056000px;}
.wsf_c00225{word-spacing:7.128000px;}
.ws2_c00225{word-spacing:7.200000px;}
.ws16_c00225{word-spacing:7.344000px;}
.ws1b_c00225{word-spacing:8.568000px;}
.ws1c_c00225{word-spacing:8.712000px;}
.ws1d_c00225{word-spacing:9.000000px;}
.wsd_c00225{word-spacing:11.520000px;}
.ws17_c00225{word-spacing:13.320000px;}
.wsb_c00225{word-spacing:14.688000px;}
.wsc_c00225{word-spacing:14.760000px;}
.ws5_c00225{word-spacing:16.200000px;}
.ws25_c00225{word-spacing:16.920000px;}
.ws0_c00225{word-spacing:17.424000px;}
.ws8_c00225{word-spacing:17.568000px;}
.ws7_c00225{word-spacing:17.640000px;}
.ws6_c00225{word-spacing:18.000000px;}
.ws19_c00225{word-spacing:19.728000px;}
.ws1a_c00225{word-spacing:19.800000px;}
.ws26_c00225{word-spacing:30.600000px;}
.ws1e_c00225{word-spacing:37.008000px;}
.ws20_c00225{word-spacing:39.960000px;}
.ws1f_c00225{word-spacing:40.176000px;}
.ws11_c00225{word-spacing:50.688000px;}
._0_c00225{margin-left:-1.224000px;}
._1_c00225{width:1.008000px;}
.fc1_c00225{color:rgb(0,0,0);}
.fc0_c00225{color:rgb(35,31,32);}
.fs1_c00225{font-size:65.880000px;}
.fs0_c00225{font-size:72.000000px;}
.y0_c00225{bottom:0.000000px;}
.y1_c00225{bottom:61.748550px;}
.y21_c00225{bottom:112.814400px;}
.y20_c00225{bottom:143.864400px;}
.y1f_c00225{bottom:174.824400px;}
.y1e_c00225{bottom:207.224400px;}
.y1d_c00225{bottom:238.274400px;}
.y1c_c00225{bottom:269.324400px;}
.y1b_c00225{bottom:300.374400px;}
.y1a_c00225{bottom:331.424400px;}
.y19_c00225{bottom:362.474400px;}
.y18_c00225{bottom:393.524400px;}
.y17_c00225{bottom:424.574400px;}
.y16_c00225{bottom:455.534400px;}
.y15_c00225{bottom:518.984400px;}
.y14_c00225{bottom:550.034400px;}
.y13_c00225{bottom:581.084400px;}
.y12_c00225{bottom:612.134400px;}
.y11_c00225{bottom:643.184400px;}
.y10_c00225{bottom:674.234400px;}
.yf_c00225{bottom:705.284400px;}
.ye_c00225{bottom:767.384400px;}
.yd_c00225{bottom:798.434400px;}
.yc_c00225{bottom:829.484400px;}
.yb_c00225{bottom:860.534400px;}
.ya_c00225{bottom:891.584400px;}
.y9_c00225{bottom:953.684400px;}
.y8_c00225{bottom:984.644400px;}
.y7_c00225{bottom:1015.694400px;}
.y6_c00225{bottom:1046.744400px;}
.y5_c00225{bottom:1077.794400px;}
.y4_c00225{bottom:1108.844400px;}
.y3_c00225{bottom:1139.894400px;}
.y2_c00225{bottom:1194.074400px;}
.h2_c00225{height:50.400000px;}
.h3_c00225{height:54.331699px;}
.h4_c00225{height:76.824000px;}
.h5_c00225{height:78.048000px;}
.h0_c00225{height:1262.835000px;}
.h1_c00225{height:1263.000000px;}
.w0_c00225{width:892.914000px;}
.w1_c00225{width:893.250000px;}
.x0_c00225{left:0.000000px;}
.x1_c00225{left:54.000000px;}
.x2_c00225{left:127.620000px;}
.x4_c00225{left:143.190000px;}
.x3_c00225{left:159.570000px;}
.x5_c00225{left:170.190000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.lsa_c00225{letter-spacing:-0.192000pt;}
.ls9_c00225{letter-spacing:-0.064000pt;}
.ls8_c00225{letter-spacing:0.000000pt;}
.ls1_c00225{letter-spacing:0.064000pt;}
.ls6_c00225{letter-spacing:0.128000pt;}
.ls7_c00225{letter-spacing:18.560000pt;}
.ls2_c00225{letter-spacing:21.760000pt;}
.ls4_c00225{letter-spacing:24.000000pt;}
.ls0_c00225{letter-spacing:32.000000pt;}
.ls3_c00225{letter-spacing:33.280000pt;}
.ls5_c00225{letter-spacing:60.864000pt;}
.ws3_c00225{word-spacing:-16.064000pt;}
.ws10_c00225{word-spacing:-0.064000pt;}
.ws4_c00225{word-spacing:0.000000pt;}
.wsa_c00225{word-spacing:0.576000pt;}
.ws9_c00225{word-spacing:0.640000pt;}
.ws13_c00225{word-spacing:1.216000pt;}
.ws12_c00225{word-spacing:1.280000pt;}
.wse_c00225{word-spacing:1.920000pt;}
.ws21_c00225{word-spacing:2.176000pt;}
.ws28_c00225{word-spacing:2.496000pt;}
.ws29_c00225{word-spacing:2.560000pt;}
.ws2a_c00225{word-spacing:2.816000pt;}
.ws24_c00225{word-spacing:3.776000pt;}
.ws23_c00225{word-spacing:4.032000pt;}
.ws18_c00225{word-spacing:4.416000pt;}
.ws15_c00225{word-spacing:5.696000pt;}
.ws22_c00225{word-spacing:5.760000pt;}
.ws27_c00225{word-spacing:6.016000pt;}
.ws14_c00225{word-spacing:6.080000pt;}
.ws1_c00225{word-spacing:6.272000pt;}
.wsf_c00225{word-spacing:6.336000pt;}
.ws2_c00225{word-spacing:6.400000pt;}
.ws16_c00225{word-spacing:6.528000pt;}
.ws1b_c00225{word-spacing:7.616000pt;}
.ws1c_c00225{word-spacing:7.744000pt;}
.ws1d_c00225{word-spacing:8.000000pt;}
.wsd_c00225{word-spacing:10.240000pt;}
.ws17_c00225{word-spacing:11.840000pt;}
.wsb_c00225{word-spacing:13.056000pt;}
.wsc_c00225{word-spacing:13.120000pt;}
.ws5_c00225{word-spacing:14.400000pt;}
.ws25_c00225{word-spacing:15.040000pt;}
.ws0_c00225{word-spacing:15.488000pt;}
.ws8_c00225{word-spacing:15.616000pt;}
.ws7_c00225{word-spacing:15.680000pt;}
.ws6_c00225{word-spacing:16.000000pt;}
.ws19_c00225{word-spacing:17.536000pt;}
.ws1a_c00225{word-spacing:17.600000pt;}
.ws26_c00225{word-spacing:27.200000pt;}
.ws1e_c00225{word-spacing:32.896000pt;}
.ws20_c00225{word-spacing:35.520000pt;}
.ws1f_c00225{word-spacing:35.712000pt;}
.ws11_c00225{word-spacing:45.056000pt;}
._0_c00225{margin-left:-1.088000pt;}
._1_c00225{width:0.896000pt;}
.fs1_c00225{font-size:58.560000pt;}
.fs0_c00225{font-size:64.000000pt;}
.y0_c00225{bottom:0.000000pt;}
.y1_c00225{bottom:54.887600pt;}
.y21_c00225{bottom:100.279467pt;}
.y20_c00225{bottom:127.879467pt;}
.y1f_c00225{bottom:155.399467pt;}
.y1e_c00225{bottom:184.199467pt;}
.y1d_c00225{bottom:211.799467pt;}
.y1c_c00225{bottom:239.399467pt;}
.y1b_c00225{bottom:266.999467pt;}
.y1a_c00225{bottom:294.599467pt;}
.y19_c00225{bottom:322.199467pt;}
.y18_c00225{bottom:349.799467pt;}
.y17_c00225{bottom:377.399467pt;}
.y16_c00225{bottom:404.919467pt;}
.y15_c00225{bottom:461.319467pt;}
.y14_c00225{bottom:488.919467pt;}
.y13_c00225{bottom:516.519467pt;}
.y12_c00225{bottom:544.119467pt;}
.y11_c00225{bottom:571.719467pt;}
.y10_c00225{bottom:599.319467pt;}
.yf_c00225{bottom:626.919467pt;}
.ye_c00225{bottom:682.119467pt;}
.yd_c00225{bottom:709.719467pt;}
.yc_c00225{bottom:737.319467pt;}
.yb_c00225{bottom:764.919467pt;}
.ya_c00225{bottom:792.519467pt;}
.y9_c00225{bottom:847.719467pt;}
.y8_c00225{bottom:875.239467pt;}
.y7_c00225{bottom:902.839467pt;}
.y6_c00225{bottom:930.439467pt;}
.y5_c00225{bottom:958.039467pt;}
.y4_c00225{bottom:985.639467pt;}
.y3_c00225{bottom:1013.239467pt;}
.y2_c00225{bottom:1061.399467pt;}
.h2_c00225{height:44.800000pt;}
.h3_c00225{height:48.294844pt;}
.h4_c00225{height:68.288000pt;}
.h5_c00225{height:69.376000pt;}
.h0_c00225{height:1122.520000pt;}
.h1_c00225{height:1122.666667pt;}
.w0_c00225{width:793.701333pt;}
.w1_c00225{width:794.000000pt;}
.x0_c00225{left:0.000000pt;}
.x1_c00225{left:48.000000pt;}
.x2_c00225{left:113.440000pt;}
.x4_c00225{left:127.280000pt;}
.x3_c00225{left:141.840000pt;}
.x5_c00225{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00226;src:url('chunks/assets/font_49348b871901ce181adb9e6f.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00226;src:url('chunks/assets/font_60337ef398e055029a1e934d.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00226;src:url('chunks/assets/font_20659466eb055fe38bc4efab.woff2')format("woff");}.ff4_c00226{font-family:ff4_c00226;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00226;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff5_c00226{font-family:ff5_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:ff6_c00226;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00226{font-family:ff6_c00226;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00226;src:url('chunks/assets/font_179092653443aee948469622.woff2')format("woff");}.ff7_c00226{font-family:ff7_c00226;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00226;src:url('chunks/assets/font_fe074c4c9ab6cb00beab18d4.woff2')format("woff");}.ff8_c00226{font-family:ff8_c00226;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00226;src:url('chunks/assets/font_72fbbb706c27bc457cb6b4f1.woff2')format("woff");}.ff9_c00226{font-family:ff9_c00226;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00226;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ffa_c00226{font-family:ffa_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;}
.m0_c00226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.lse_c00226{letter-spacing:-0.360000px;}
.lsd_c00226{letter-spacing:-0.216000px;}
.lsc_c00226{letter-spacing:-0.072000px;}
.lsb_c00226{letter-spacing:0.000000px;}
.ls1_c00226{letter-spacing:0.072000px;}
.ls6_c00226{letter-spacing:0.144000px;}
.ls7_c00226{letter-spacing:20.880000px;}
.ls2_c00226{letter-spacing:24.480000px;}
.lsa_c00226{letter-spacing:25.920000px;}
.ls9_c00226{letter-spacing:26.280000px;}
.ls4_c00226{letter-spacing:27.000000px;}
.ls0_c00226{letter-spacing:36.000000px;}
.ls3_c00226{letter-spacing:37.440000px;}
.ls8_c00226{letter-spacing:46.512000px;}
.ls5_c00226{letter-spacing:68.472000px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00226{word-spacing:-18.144000px;}
.ws3_c00226{word-spacing:-18.072000px;}
.ws7_c00226{word-spacing:-18.000000px;}
.ws8_c00226{word-spacing:-17.640000px;}
.ws48_c00226{word-spacing:-0.144000px;}
.ws2f_c00226{word-spacing:-0.131760px;}
.ws14_c00226{word-spacing:-0.072000px;}
.ws4_c00226{word-spacing:0.000000px;}
.wse_c00226{word-spacing:0.648000px;}
.wsd_c00226{word-spacing:0.720000px;}
.ws40_c00226{word-spacing:0.936000px;}
.ws41_c00226{word-spacing:1.008000px;}
.ws17_c00226{word-spacing:1.368000px;}
.ws16_c00226{word-spacing:1.440000px;}
.ws45_c00226{word-spacing:1.800000px;}
.ws9_c00226{word-spacing:1.872000px;}
.ws12_c00226{word-spacing:2.160000px;}
.ws25_c00226{word-spacing:2.448000px;}
.ws2c_c00226{word-spacing:2.808000px;}
.ws2d_c00226{word-spacing:2.880000px;}
.ws33_c00226{word-spacing:3.096000px;}
.ws2e_c00226{word-spacing:3.168000px;}
.ws34_c00226{word-spacing:3.240000px;}
.ws28_c00226{word-spacing:4.248000px;}
.ws27_c00226{word-spacing:4.536000px;}
.ws35_c00226{word-spacing:4.680000px;}
.ws1c_c00226{word-spacing:4.968000px;}
.ws4c_c00226{word-spacing:5.328000px;}
.ws4b_c00226{word-spacing:5.400000px;}
.ws42_c00226{word-spacing:6.048000px;}
.ws36_c00226{word-spacing:6.120000px;}
.ws19_c00226{word-spacing:6.408000px;}
.ws26_c00226{word-spacing:6.480000px;}
.ws2b_c00226{word-spacing:6.768000px;}
.ws18_c00226{word-spacing:6.840000px;}
.ws1_c00226{word-spacing:7.056000px;}
.ws13_c00226{word-spacing:7.128000px;}
.ws2_c00226{word-spacing:7.200000px;}
.ws1a_c00226{word-spacing:7.344000px;}
.ws3c_c00226{word-spacing:7.848000px;}
.ws39_c00226{word-spacing:8.136000px;}
.ws3b_c00226{word-spacing:8.208000px;}
.ws3a_c00226{word-spacing:8.280000px;}
.ws1f_c00226{word-spacing:8.568000px;}
.ws20_c00226{word-spacing:8.712000px;}
.ws21_c00226{word-spacing:9.000000px;}
.ws38_c00226{word-spacing:10.368000px;}
.ws37_c00226{word-spacing:10.440000px;}
.ws3e_c00226{word-spacing:11.232000px;}
.ws46_c00226{word-spacing:11.448000px;}
.ws11_c00226{word-spacing:11.520000px;}
.ws47_c00226{word-spacing:12.600000px;}
.ws1b_c00226{word-spacing:13.320000px;}
.ws3f_c00226{word-spacing:14.328000px;}
.ws3d_c00226{word-spacing:14.400000px;}
.wsf_c00226{word-spacing:14.688000px;}
.ws10_c00226{word-spacing:14.760000px;}
.ws5_c00226{word-spacing:16.200000px;}
.ws29_c00226{word-spacing:16.920000px;}
.ws0_c00226{word-spacing:17.424000px;}
.wsc_c00226{word-spacing:17.568000px;}
.wsb_c00226{word-spacing:17.640000px;}
.wsa_c00226{word-spacing:18.000000px;}
.ws1d_c00226{word-spacing:19.728000px;}
.ws1e_c00226{word-spacing:19.800000px;}
.ws32_c00226{word-spacing:28.800000px;}
.ws30_c00226{word-spacing:29.088000px;}
.ws4d_c00226{word-spacing:29.808000px;}
.ws2a_c00226{word-spacing:30.600000px;}
.ws31_c00226{word-spacing:36.648000px;}
.ws22_c00226{word-spacing:37.008000px;}
.ws24_c00226{word-spacing:39.960000px;}
.ws23_c00226{word-spacing:40.176000px;}
.ws4a_c00226{word-spacing:42.768000px;}
.ws49_c00226{word-spacing:42.840000px;}
.ws43_c00226{word-spacing:45.648000px;}
.ws44_c00226{word-spacing:45.720000px;}
.ws15_c00226{word-spacing:50.688000px;}
._0_c00226{margin-left:-1.224000px;}
._1_c00226{width:1.008000px;}
._3_c00226{width:12.816000px;}
._2_c00226{width:28.296000px;}
._4_c00226{width:42.480000px;}
.fc2_c00226{color:transparent;}
.fc1_c00226{color:rgb(0,0,0);}
.fc0_c00226{color:rgb(35,31,32);}
.fs1_c00226{font-size:65.880000px;}
.fs0_c00226{font-size:72.000000px;}
.y0_c00226{bottom:0.000000px;}
.y1_c00226{bottom:61.748550px;}
.y40_c00226{bottom:112.814250px;}
.y21_c00226{bottom:112.814400px;}
.y3f_c00226{bottom:143.864250px;}
.y20_c00226{bottom:143.864400px;}
.y1f_c00226{bottom:174.824400px;}
.y3e_c00226{bottom:174.914250px;}
.y3d_c00226{bottom:205.964250px;}
.y1e_c00226{bottom:207.224400px;}
.y3c_c00226{bottom:236.924250px;}
.y1d_c00226{bottom:238.274400px;}
.y1c_c00226{bottom:269.324400px;}
.y3b_c00226{bottom:299.024250px;}
.y1b_c00226{bottom:300.374400px;}
.y3a_c00226{bottom:330.074250px;}
.y1a_c00226{bottom:331.424400px;}
.y39_c00226{bottom:361.124250px;}
.y19_c00226{bottom:362.474400px;}
.y38_c00226{bottom:392.174250px;}
.y18_c00226{bottom:393.524400px;}
.y37_c00226{bottom:423.224250px;}
.y17_c00226{bottom:424.574400px;}
.y36_c00226{bottom:454.274250px;}
.y16_c00226{bottom:455.534400px;}
.y35_c00226{bottom:485.324250px;}
.y34_c00226{bottom:516.374250px;}
.y15_c00226{bottom:518.984400px;}
.y33_c00226{bottom:547.424250px;}
.y14_c00226{bottom:550.034400px;}
.y13_c00226{bottom:581.084400px;}
.y32_c00226{bottom:609.524250px;}
.y12_c00226{bottom:612.134400px;}
.y31_c00226{bottom:640.574250px;}
.y11_c00226{bottom:643.184400px;}
.y30_c00226{bottom:671.624250px;}
.y10_c00226{bottom:674.234400px;}
.y2f_c00226{bottom:702.674250px;}
.yf_c00226{bottom:705.284400px;}
.y2e_c00226{bottom:733.724250px;}
.y2d_c00226{bottom:764.774250px;}
.ye_c00226{bottom:767.384400px;}
.yd_c00226{bottom:798.434400px;}
.y2c_c00226{bottom:826.874250px;}
.yc_c00226{bottom:829.484400px;}
.y2b_c00226{bottom:857.924250px;}
.yb_c00226{bottom:860.534400px;}
.y2a_c00226{bottom:888.974250px;}
.ya_c00226{bottom:891.584400px;}
.y29_c00226{bottom:920.024250px;}
.y28_c00226{bottom:950.984250px;}
.y9_c00226{bottom:953.684400px;}
.y27_c00226{bottom:983.384250px;}
.y8_c00226{bottom:984.644400px;}
.y26_c00226{bottom:1014.434250px;}
.y7_c00226{bottom:1015.694400px;}
.y25_c00226{bottom:1045.484250px;}
.y6_c00226{bottom:1046.744400px;}
.y24_c00226{bottom:1076.534250px;}
.y5_c00226{bottom:1077.794400px;}
.y23_c00226{bottom:1107.584250px;}
.y4_c00226{bottom:1108.844400px;}
.y22_c00226{bottom:1138.544250px;}
.y3_c00226{bottom:1139.894400px;}
.y2_c00226{bottom:1194.074400px;}
.h2_c00226{height:50.400000px;}
.h3_c00226{height:54.331699px;}
.h4_c00226{height:76.824000px;}
.h5_c00226{height:78.048000px;}
.h0_c00226{height:1262.835000px;}
.h1_c00226{height:1263.000000px;}
.w2_c00226{width:0.000000px;}
.w3_c00226{width:0.066000px;}
.w0_c00226{width:892.914000px;}
.w1_c00226{width:893.250000px;}
.x1_c00226{left:-838.913400px;}
.x2_c00226{left:-765.293400px;}
.x4_c00226{left:-749.723400px;}
.x3_c00226{left:-733.343400px;}
.x5_c00226{left:-722.723400px;}
.x0_c00226{left:0.000000px;}
.xb_c00226{left:127.620000px;}
.x8_c00226{left:143.190000px;}
.xa_c00226{left:159.570000px;}
.x9_c00226{left:170.190000px;}
.x7_c00226{left:696.510000px;}
.x6_c00226{left:804.366150px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.lse_c00226{letter-spacing:-0.320000pt;}
.lsd_c00226{letter-spacing:-0.192000pt;}
.lsc_c00226{letter-spacing:-0.064000pt;}
.lsb_c00226{letter-spacing:0.000000pt;}
.ls1_c00226{letter-spacing:0.064000pt;}
.ls6_c00226{letter-spacing:0.128000pt;}
.ls7_c00226{letter-spacing:18.560000pt;}
.ls2_c00226{letter-spacing:21.760000pt;}
.lsa_c00226{letter-spacing:23.040000pt;}
.ls9_c00226{letter-spacing:23.360000pt;}
.ls4_c00226{letter-spacing:24.000000pt;}
.ls0_c00226{letter-spacing:32.000000pt;}
.ls3_c00226{letter-spacing:33.280000pt;}
.ls8_c00226{letter-spacing:41.344000pt;}
.ls5_c00226{letter-spacing:60.864000pt;}
.ws6_c00226{word-spacing:-16.128000pt;}
.ws3_c00226{word-spacing:-16.064000pt;}
.ws7_c00226{word-spacing:-16.000000pt;}
.ws8_c00226{word-spacing:-15.680000pt;}
.ws48_c00226{word-spacing:-0.128000pt;}
.ws2f_c00226{word-spacing:-0.117120pt;}
.ws14_c00226{word-spacing:-0.064000pt;}
.ws4_c00226{word-spacing:0.000000pt;}
.wse_c00226{word-spacing:0.576000pt;}
.wsd_c00226{word-spacing:0.640000pt;}
.ws40_c00226{word-spacing:0.832000pt;}
.ws41_c00226{word-spacing:0.896000pt;}
.ws17_c00226{word-spacing:1.216000pt;}
.ws16_c00226{word-spacing:1.280000pt;}
.ws45_c00226{word-spacing:1.600000pt;}
.ws9_c00226{word-spacing:1.664000pt;}
.ws12_c00226{word-spacing:1.920000pt;}
.ws25_c00226{word-spacing:2.176000pt;}
.ws2c_c00226{word-spacing:2.496000pt;}
.ws2d_c00226{word-spacing:2.560000pt;}
.ws33_c00226{word-spacing:2.752000pt;}
.ws2e_c00226{word-spacing:2.816000pt;}
.ws34_c00226{word-spacing:2.880000pt;}
.ws28_c00226{word-spacing:3.776000pt;}
.ws27_c00226{word-spacing:4.032000pt;}
.ws35_c00226{word-spacing:4.160000pt;}
.ws1c_c00226{word-spacing:4.416000pt;}
.ws4c_c00226{word-spacing:4.736000pt;}
.ws4b_c00226{word-spacing:4.800000pt;}
.ws42_c00226{word-spacing:5.376000pt;}
.ws36_c00226{word-spacing:5.440000pt;}
.ws19_c00226{word-spacing:5.696000pt;}
.ws26_c00226{word-spacing:5.760000pt;}
.ws2b_c00226{word-spacing:6.016000pt;}
.ws18_c00226{word-spacing:6.080000pt;}
.ws1_c00226{word-spacing:6.272000pt;}
.ws13_c00226{word-spacing:6.336000pt;}
.ws2_c00226{word-spacing:6.400000pt;}
.ws1a_c00226{word-spacing:6.528000pt;}
.ws3c_c00226{word-spacing:6.976000pt;}
.ws39_c00226{word-spacing:7.232000pt;}
.ws3b_c00226{word-spacing:7.296000pt;}
.ws3a_c00226{word-spacing:7.360000pt;}
.ws1f_c00226{word-spacing:7.616000pt;}
.ws20_c00226{word-spacing:7.744000pt;}
.ws21_c00226{word-spacing:8.000000pt;}
.ws38_c00226{word-spacing:9.216000pt;}
.ws37_c00226{word-spacing:9.280000pt;}
.ws3e_c00226{word-spacing:9.984000pt;}
.ws46_c00226{word-spacing:10.176000pt;}
.ws11_c00226{word-spacing:10.240000pt;}
.ws47_c00226{word-spacing:11.200000pt;}
.ws1b_c00226{word-spacing:11.840000pt;}
.ws3f_c00226{word-spacing:12.736000pt;}
.ws3d_c00226{word-spacing:12.800000pt;}
.wsf_c00226{word-spacing:13.056000pt;}
.ws10_c00226{word-spacing:13.120000pt;}
.ws5_c00226{word-spacing:14.400000pt;}
.ws29_c00226{word-spacing:15.040000pt;}
.ws0_c00226{word-spacing:15.488000pt;}
.wsc_c00226{word-spacing:15.616000pt;}
.wsb_c00226{word-spacing:15.680000pt;}
.wsa_c00226{word-spacing:16.000000pt;}
.ws1d_c00226{word-spacing:17.536000pt;}
.ws1e_c00226{word-spacing:17.600000pt;}
.ws32_c00226{word-spacing:25.600000pt;}
.ws30_c00226{word-spacing:25.856000pt;}
.ws4d_c00226{word-spacing:26.496000pt;}
.ws2a_c00226{word-spacing:27.200000pt;}
.ws31_c00226{word-spacing:32.576000pt;}
.ws22_c00226{word-spacing:32.896000pt;}
.ws24_c00226{word-spacing:35.520000pt;}
.ws23_c00226{word-spacing:35.712000pt;}
.ws4a_c00226{word-spacing:38.016000pt;}
.ws49_c00226{word-spacing:38.080000pt;}
.ws43_c00226{word-spacing:40.576000pt;}
.ws44_c00226{word-spacing:40.640000pt;}
.ws15_c00226{word-spacing:45.056000pt;}
._0_c00226{margin-left:-1.088000pt;}
._1_c00226{width:0.896000pt;}
._3_c00226{width:11.392000pt;}
._2_c00226{width:25.152000pt;}
._4_c00226{width:37.760000pt;}
.fs1_c00226{font-size:58.560000pt;}
.fs0_c00226{font-size:64.000000pt;}
.y0_c00226{bottom:0.000000pt;}
.y1_c00226{bottom:54.887600pt;}
.y40_c00226{bottom:100.279333pt;}
.y21_c00226{bottom:100.279467pt;}
.y3f_c00226{bottom:127.879333pt;}
.y20_c00226{bottom:127.879467pt;}
.y1f_c00226{bottom:155.399467pt;}
.y3e_c00226{bottom:155.479333pt;}
.y3d_c00226{bottom:183.079333pt;}
.y1e_c00226{bottom:184.199467pt;}
.y3c_c00226{bottom:210.599333pt;}
.y1d_c00226{bottom:211.799467pt;}
.y1c_c00226{bottom:239.399467pt;}
.y3b_c00226{bottom:265.799333pt;}
.y1b_c00226{bottom:266.999467pt;}
.y3a_c00226{bottom:293.399333pt;}
.y1a_c00226{bottom:294.599467pt;}
.y39_c00226{bottom:320.999333pt;}
.y19_c00226{bottom:322.199467pt;}
.y38_c00226{bottom:348.599333pt;}
.y18_c00226{bottom:349.799467pt;}
.y37_c00226{bottom:376.199333pt;}
.y17_c00226{bottom:377.399467pt;}
.y36_c00226{bottom:403.799333pt;}
.y16_c00226{bottom:404.919467pt;}
.y35_c00226{bottom:431.399333pt;}
.y34_c00226{bottom:458.999333pt;}
.y15_c00226{bottom:461.319467pt;}
.y33_c00226{bottom:486.599333pt;}
.y14_c00226{bottom:488.919467pt;}
.y13_c00226{bottom:516.519467pt;}
.y32_c00226{bottom:541.799333pt;}
.y12_c00226{bottom:544.119467pt;}
.y31_c00226{bottom:569.399333pt;}
.y11_c00226{bottom:571.719467pt;}
.y30_c00226{bottom:596.999333pt;}
.y10_c00226{bottom:599.319467pt;}
.y2f_c00226{bottom:624.599333pt;}
.yf_c00226{bottom:626.919467pt;}
.y2e_c00226{bottom:652.199333pt;}
.y2d_c00226{bottom:679.799333pt;}
.ye_c00226{bottom:682.119467pt;}
.yd_c00226{bottom:709.719467pt;}
.y2c_c00226{bottom:734.999333pt;}
.yc_c00226{bottom:737.319467pt;}
.y2b_c00226{bottom:762.599333pt;}
.yb_c00226{bottom:764.919467pt;}
.y2a_c00226{bottom:790.199333pt;}
.ya_c00226{bottom:792.519467pt;}
.y29_c00226{bottom:817.799333pt;}
.y28_c00226{bottom:845.319333pt;}
.y9_c00226{bottom:847.719467pt;}
.y27_c00226{bottom:874.119333pt;}
.y8_c00226{bottom:875.239467pt;}
.y26_c00226{bottom:901.719333pt;}
.y7_c00226{bottom:902.839467pt;}
.y25_c00226{bottom:929.319333pt;}
.y6_c00226{bottom:930.439467pt;}
.y24_c00226{bottom:956.919333pt;}
.y5_c00226{bottom:958.039467pt;}
.y23_c00226{bottom:984.519333pt;}
.y4_c00226{bottom:985.639467pt;}
.y22_c00226{bottom:1012.039333pt;}
.y3_c00226{bottom:1013.239467pt;}
.y2_c00226{bottom:1061.399467pt;}
.h2_c00226{height:44.800000pt;}
.h3_c00226{height:48.294844pt;}
.h4_c00226{height:68.288000pt;}
.h5_c00226{height:69.376000pt;}
.h0_c00226{height:1122.520000pt;}
.h1_c00226{height:1122.666667pt;}
.w2_c00226{width:0.000000pt;}
.w3_c00226{width:0.058667pt;}
.w0_c00226{width:793.701333pt;}
.w1_c00226{width:794.000000pt;}
.x1_c00226{left:-745.700800pt;}
.x2_c00226{left:-680.260800pt;}
.x4_c00226{left:-666.420800pt;}
.x3_c00226{left:-651.860800pt;}
.x5_c00226{left:-642.420800pt;}
.x0_c00226{left:0.000000pt;}
.xb_c00226{left:113.440000pt;}
.x8_c00226{left:127.280000pt;}
.xa_c00226{left:141.840000pt;}
.x9_c00226{left:151.280000pt;}
.x7_c00226{left:619.120000pt;}
.x6_c00226{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00227;src:url('chunks/assets/font_4e1c47afb33fec726eb16119.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00227;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00227;src:url('chunks/assets/font_0f6e5be7577292c2b18b3da9.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00227;src:url('chunks/assets/font_eea025c483b8714c031903a5.woff2')format("woff");}.ff5_c00227{font-family:ff5_c00227;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00227;src:url('chunks/assets/font_72bd23fd8e71f52dad0a4795.woff2')format("woff");}.ff6_c00227{font-family:ff6_c00227;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00227{letter-spacing:-0.072000px;}
.ls6_c00227{letter-spacing:0.000000px;}
.ls1_c00227{letter-spacing:0.072000px;}
.ls3_c00227{letter-spacing:0.144000px;}
.ls5_c00227{letter-spacing:31.680000px;}
.ls2_c00227{letter-spacing:32.400000px;}
.ls4_c00227{letter-spacing:35.280000px;}
.ls0_c00227{letter-spacing:45.432000px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c00227{word-spacing:-0.072000px;}
.ws3_c00227{word-spacing:0.000000px;}
.ws4_c00227{word-spacing:0.072000px;}
.ws14_c00227{word-spacing:0.288000px;}
.ws13_c00227{word-spacing:0.360000px;}
.ws19_c00227{word-spacing:0.720000px;}
.ws18_c00227{word-spacing:1.008000px;}
.ws15_c00227{word-spacing:1.728000px;}
.ws22_c00227{word-spacing:2.448000px;}
.ws17_c00227{word-spacing:2.520000px;}
.ws12_c00227{word-spacing:2.808000px;}
.ws11_c00227{word-spacing:2.880000px;}
.wsa_c00227{word-spacing:4.248000px;}
.wsb_c00227{word-spacing:4.320000px;}
.ws9_c00227{word-spacing:4.896000px;}
.ws6_c00227{word-spacing:4.968000px;}
.ws5_c00227{word-spacing:5.400000px;}
.ws21_c00227{word-spacing:7.488000px;}
.ws26_c00227{word-spacing:13.536000px;}
.ws25_c00227{word-spacing:13.680000px;}
.ws8_c00227{word-spacing:13.968000px;}
.ws7_c00227{word-spacing:14.400000px;}
.ws1e_c00227{word-spacing:15.696000px;}
.ws1d_c00227{word-spacing:15.840000px;}
.ws2_c00227{word-spacing:17.064000px;}
.ws20_c00227{word-spacing:17.208000px;}
.ws1f_c00227{word-spacing:17.280000px;}
.ws0_c00227{word-spacing:19.944000px;}
.ws16_c00227{word-spacing:20.088000px;}
.ws23_c00227{word-spacing:20.808000px;}
.ws24_c00227{word-spacing:20.880000px;}
.ws1b_c00227{word-spacing:21.528000px;}
.ws1a_c00227{word-spacing:21.600000px;}
.wsc_c00227{word-spacing:22.680000px;}
.ws1_c00227{word-spacing:27.432000px;}
.ws1c_c00227{word-spacing:27.720000px;}
.wsf_c00227{word-spacing:33.048000px;}
.wsd_c00227{word-spacing:40.968000px;}
.wse_c00227{word-spacing:41.328000px;}
._1_c00227{margin-left:-1.022400px;}
._2_c00227{width:3.096000px;}
._0_c00227{width:5.184000px;}
._3_c00227{width:20.304000px;}
._4_c00227{width:68.400000px;}
.fc1_c00227{color:rgb(0,0,0);}
.fc0_c00227{color:rgb(35,31,32);}
.fs1_c00227{font-size:65.880000px;}
.fs0_c00227{font-size:72.000000px;}
.y0_c00227{bottom:0.000000px;}
.y1_c00227{bottom:61.748550px;}
.y1f_c00227{bottom:141.254250px;}
.y1e_c00227{bottom:172.304250px;}
.y1d_c00227{bottom:203.354250px;}
.y1c_c00227{bottom:234.404250px;}
.y1b_c00227{bottom:296.504250px;}
.y1a_c00227{bottom:327.554250px;}
.y19_c00227{bottom:358.604250px;}
.y18_c00227{bottom:389.654250px;}
.y17_c00227{bottom:420.704250px;}
.y16_c00227{bottom:451.754250px;}
.y15_c00227{bottom:482.804250px;}
.y14_c00227{bottom:544.634250px;}
.y13_c00227{bottom:606.914250px;}
.y12_c00227{bottom:637.964250px;}
.y11_c00227{bottom:669.014250px;}
.y10_c00227{bottom:700.064250px;}
.yf_c00227{bottom:732.464250px;}
.ye_c00227{bottom:763.514250px;}
.yd_c00227{bottom:794.564250px;}
.yc_c00227{bottom:825.524250px;}
.yb_c00227{bottom:857.924250px;}
.ya_c00227{bottom:888.974250px;}
.y9_c00227{bottom:920.024250px;}
.y8_c00227{bottom:951.074250px;}
.y7_c00227{bottom:982.034250px;}
.y6_c00227{bottom:1014.434250px;}
.y5_c00227{bottom:1045.484250px;}
.y4_c00227{bottom:1076.534250px;}
.y3_c00227{bottom:1107.494250px;}
.y2_c00227{bottom:1194.074400px;}
.h2_c00227{height:50.400000px;}
.h3_c00227{height:54.331699px;}
.h5_c00227{height:76.824000px;}
.h4_c00227{height:78.048000px;}
.h0_c00227{height:1262.835000px;}
.h1_c00227{height:1263.000000px;}
.w0_c00227{width:892.914000px;}
.w1_c00227{width:893.250000px;}
.x0_c00227{left:0.000000px;}
.x1_c00227{left:54.000000px;}
.x2_c00227{left:127.620000px;}
.x3_c00227{left:148.950000px;}
.x5_c00227{left:159.570000px;}
.x4_c00227{left:170.190000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls7_c00227{letter-spacing:-0.064000pt;}
.ls6_c00227{letter-spacing:0.000000pt;}
.ls1_c00227{letter-spacing:0.064000pt;}
.ls3_c00227{letter-spacing:0.128000pt;}
.ls5_c00227{letter-spacing:28.160000pt;}
.ls2_c00227{letter-spacing:28.800000pt;}
.ls4_c00227{letter-spacing:31.360000pt;}
.ls0_c00227{letter-spacing:40.384000pt;}
.ws10_c00227{word-spacing:-0.064000pt;}
.ws3_c00227{word-spacing:0.000000pt;}
.ws4_c00227{word-spacing:0.064000pt;}
.ws14_c00227{word-spacing:0.256000pt;}
.ws13_c00227{word-spacing:0.320000pt;}
.ws19_c00227{word-spacing:0.640000pt;}
.ws18_c00227{word-spacing:0.896000pt;}
.ws15_c00227{word-spacing:1.536000pt;}
.ws22_c00227{word-spacing:2.176000pt;}
.ws17_c00227{word-spacing:2.240000pt;}
.ws12_c00227{word-spacing:2.496000pt;}
.ws11_c00227{word-spacing:2.560000pt;}
.wsa_c00227{word-spacing:3.776000pt;}
.wsb_c00227{word-spacing:3.840000pt;}
.ws9_c00227{word-spacing:4.352000pt;}
.ws6_c00227{word-spacing:4.416000pt;}
.ws5_c00227{word-spacing:4.800000pt;}
.ws21_c00227{word-spacing:6.656000pt;}
.ws26_c00227{word-spacing:12.032000pt;}
.ws25_c00227{word-spacing:12.160000pt;}
.ws8_c00227{word-spacing:12.416000pt;}
.ws7_c00227{word-spacing:12.800000pt;}
.ws1e_c00227{word-spacing:13.952000pt;}
.ws1d_c00227{word-spacing:14.080000pt;}
.ws2_c00227{word-spacing:15.168000pt;}
.ws20_c00227{word-spacing:15.296000pt;}
.ws1f_c00227{word-spacing:15.360000pt;}
.ws0_c00227{word-spacing:17.728000pt;}
.ws16_c00227{word-spacing:17.856000pt;}
.ws23_c00227{word-spacing:18.496000pt;}
.ws24_c00227{word-spacing:18.560000pt;}
.ws1b_c00227{word-spacing:19.136000pt;}
.ws1a_c00227{word-spacing:19.200000pt;}
.wsc_c00227{word-spacing:20.160000pt;}
.ws1_c00227{word-spacing:24.384000pt;}
.ws1c_c00227{word-spacing:24.640000pt;}
.wsf_c00227{word-spacing:29.376000pt;}
.wsd_c00227{word-spacing:36.416000pt;}
.wse_c00227{word-spacing:36.736000pt;}
._1_c00227{margin-left:-0.908800pt;}
._2_c00227{width:2.752000pt;}
._0_c00227{width:4.608000pt;}
._3_c00227{width:18.048000pt;}
._4_c00227{width:60.800000pt;}
.fs1_c00227{font-size:58.560000pt;}
.fs0_c00227{font-size:64.000000pt;}
.y0_c00227{bottom:0.000000pt;}
.y1_c00227{bottom:54.887600pt;}
.y1f_c00227{bottom:125.559333pt;}
.y1e_c00227{bottom:153.159333pt;}
.y1d_c00227{bottom:180.759333pt;}
.y1c_c00227{bottom:208.359333pt;}
.y1b_c00227{bottom:263.559333pt;}
.y1a_c00227{bottom:291.159333pt;}
.y19_c00227{bottom:318.759333pt;}
.y18_c00227{bottom:346.359333pt;}
.y17_c00227{bottom:373.959333pt;}
.y16_c00227{bottom:401.559333pt;}
.y15_c00227{bottom:429.159333pt;}
.y14_c00227{bottom:484.119333pt;}
.y13_c00227{bottom:539.479333pt;}
.y12_c00227{bottom:567.079333pt;}
.y11_c00227{bottom:594.679333pt;}
.y10_c00227{bottom:622.279333pt;}
.yf_c00227{bottom:651.079333pt;}
.ye_c00227{bottom:678.679333pt;}
.yd_c00227{bottom:706.279333pt;}
.yc_c00227{bottom:733.799333pt;}
.yb_c00227{bottom:762.599333pt;}
.ya_c00227{bottom:790.199333pt;}
.y9_c00227{bottom:817.799333pt;}
.y8_c00227{bottom:845.399333pt;}
.y7_c00227{bottom:872.919333pt;}
.y6_c00227{bottom:901.719333pt;}
.y5_c00227{bottom:929.319333pt;}
.y4_c00227{bottom:956.919333pt;}
.y3_c00227{bottom:984.439333pt;}
.y2_c00227{bottom:1061.399467pt;}
.h2_c00227{height:44.800000pt;}
.h3_c00227{height:48.294844pt;}
.h5_c00227{height:68.288000pt;}
.h4_c00227{height:69.376000pt;}
.h0_c00227{height:1122.520000pt;}
.h1_c00227{height:1122.666667pt;}
.w0_c00227{width:793.701333pt;}
.w1_c00227{width:794.000000pt;}
.x0_c00227{left:0.000000pt;}
.x1_c00227{left:48.000000pt;}
.x2_c00227{left:113.440000pt;}
.x3_c00227{left:132.400000pt;}
.x5_c00227{left:141.840000pt;}
.x4_c00227{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00228;src:url('chunks/assets/font_145a1090991137ded535e6f4.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00228;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00228;src:url('chunks/assets/font_913c0ace6798228dfca5b064.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00228;src:url('chunks/assets/font_eebf49ea7c65365c35c2cbc6.woff2')format("woff");}.ff5_c00228{font-family:ff5_c00228;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00228;src:url('chunks/assets/font_9ccebd86f5d76282404c2d3a.woff2')format("woff");}.ff6_c00228{font-family:ff6_c00228;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00228;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff7_c00228{font-family:ff7_c00228;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00228;src:url('chunks/assets/font_b2b51bc58cb77b7b40d20e5a.woff2')format("woff");}.ff8_c00228{font-family:ff8_c00228;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00228;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff9_c00228{font-family:ff9_c00228;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00228;src:url('chunks/assets/font_ab7a5f0b143507ce88b6e058.woff2')format("woff");}.ffa_c00228{font-family:ffa_c00228;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00228;src:url('chunks/assets/font_f45711159a3aa503b70d0767.woff2')format("woff");}.ffb_c00228{font-family:ffb_c00228;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00228;src:url('chunks/assets/font_9ccebd86f5d76282404c2d3a.woff2')format("woff");}.ffc_c00228{font-family:ffc_c00228;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00228{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls8_c00228{letter-spacing:-0.360000px;}
.ls7_c00228{letter-spacing:-0.072000px;}
.ls6_c00228{letter-spacing:0.000000px;}
.ls1_c00228{letter-spacing:0.072000px;}
.ls3_c00228{letter-spacing:0.144000px;}
.ls5_c00228{letter-spacing:31.680000px;}
.ls2_c00228{letter-spacing:32.400000px;}
.ls4_c00228{letter-spacing:35.280000px;}
.ls0_c00228{letter-spacing:45.432000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00228{word-spacing:-18.072000px;}
.ws5_c00228{word-spacing:-17.640000px;}
.ws34_c00228{word-spacing:-0.432000px;}
.ws31_c00228{word-spacing:-0.144000px;}
.ws2b_c00228{word-spacing:-0.131760px;}
.ws14_c00228{word-spacing:-0.072000px;}
.ws7_c00228{word-spacing:0.000000px;}
.ws8_c00228{word-spacing:0.072000px;}
.ws18_c00228{word-spacing:0.288000px;}
.ws17_c00228{word-spacing:0.360000px;}
.ws1d_c00228{word-spacing:0.720000px;}
.ws1c_c00228{word-spacing:1.008000px;}
.ws32_c00228{word-spacing:1.080000px;}
.ws19_c00228{word-spacing:1.728000px;}
.ws26_c00228{word-spacing:2.448000px;}
.ws1b_c00228{word-spacing:2.520000px;}
.ws16_c00228{word-spacing:2.808000px;}
.ws15_c00228{word-spacing:2.880000px;}
.ws2f_c00228{word-spacing:3.744000px;}
.wse_c00228{word-spacing:4.248000px;}
.wsf_c00228{word-spacing:4.320000px;}
.wsd_c00228{word-spacing:4.896000px;}
.wsa_c00228{word-spacing:4.968000px;}
.ws9_c00228{word-spacing:5.400000px;}
.ws2d_c00228{word-spacing:6.048000px;}
.ws2e_c00228{word-spacing:6.480000px;}
.ws25_c00228{word-spacing:7.488000px;}
.ws2c_c00228{word-spacing:10.008000px;}
.ws35_c00228{word-spacing:10.440000px;}
.ws2a_c00228{word-spacing:13.536000px;}
.ws29_c00228{word-spacing:13.680000px;}
.wsc_c00228{word-spacing:13.968000px;}
.wsb_c00228{word-spacing:14.400000px;}
.ws22_c00228{word-spacing:15.696000px;}
.ws21_c00228{word-spacing:15.840000px;}
.ws2_c00228{word-spacing:17.064000px;}
.ws24_c00228{word-spacing:17.208000px;}
.ws23_c00228{word-spacing:17.280000px;}
.ws0_c00228{word-spacing:19.944000px;}
.ws1a_c00228{word-spacing:20.088000px;}
.ws27_c00228{word-spacing:20.808000px;}
.ws28_c00228{word-spacing:20.880000px;}
.ws1f_c00228{word-spacing:21.528000px;}
.ws1e_c00228{word-spacing:21.600000px;}
.ws10_c00228{word-spacing:22.680000px;}
.ws30_c00228{word-spacing:26.928000px;}
.ws3_c00228{word-spacing:27.000000px;}
.ws1_c00228{word-spacing:27.432000px;}
.ws20_c00228{word-spacing:27.720000px;}
.ws33_c00228{word-spacing:29.448000px;}
.ws13_c00228{word-spacing:33.048000px;}
.ws11_c00228{word-spacing:40.968000px;}
.ws12_c00228{word-spacing:41.328000px;}
.ws4_c00228{word-spacing:42.984000px;}
._1_c00228{margin-left:-1.022400px;}
._6_c00228{width:1.080000px;}
._2_c00228{width:3.096000px;}
._0_c00228{width:5.184000px;}
._3_c00228{width:20.304000px;}
._5_c00228{width:60.984000px;}
._4_c00228{width:68.400000px;}
.fc2_c00228{color:transparent;}
.fc1_c00228{color:rgb(0,0,0);}
.fc0_c00228{color:rgb(35,31,32);}
.fs1_c00228{font-size:65.880000px;}
.fs0_c00228{font-size:72.000000px;}
.y0_c00228{bottom:0.000000px;}
.y1_c00228{bottom:61.748550px;}
.y3b_c00228{bottom:115.334400px;}
.y1f_c00228{bottom:141.254250px;}
.y3a_c00228{bottom:146.384400px;}
.y1e_c00228{bottom:172.304250px;}
.y39_c00228{bottom:177.434400px;}
.y1d_c00228{bottom:203.354250px;}
.y38_c00228{bottom:208.484400px;}
.y1c_c00228{bottom:234.404250px;}
.y37_c00228{bottom:239.534400px;}
.y36_c00228{bottom:270.584400px;}
.y1b_c00228{bottom:296.504250px;}
.y35_c00228{bottom:301.634400px;}
.y1a_c00228{bottom:327.554250px;}
.y34_c00228{bottom:332.684400px;}
.y19_c00228{bottom:358.604250px;}
.y33_c00228{bottom:363.734400px;}
.y18_c00228{bottom:389.654250px;}
.y17_c00228{bottom:420.704250px;}
.y32_c00228{bottom:425.834400px;}
.y16_c00228{bottom:451.754250px;}
.y31_c00228{bottom:456.884400px;}
.y15_c00228{bottom:482.804250px;}
.y30_c00228{bottom:518.984400px;}
.y14_c00228{bottom:544.634250px;}
.y2f_c00228{bottom:550.034400px;}
.y2e_c00228{bottom:581.084400px;}
.y13_c00228{bottom:606.914250px;}
.y2d_c00228{bottom:612.134400px;}
.y12_c00228{bottom:637.964250px;}
.y2c_c00228{bottom:643.184400px;}
.y11_c00228{bottom:669.014250px;}
.y10_c00228{bottom:700.064250px;}
.y2b_c00228{bottom:705.284400px;}
.yf_c00228{bottom:732.464250px;}
.y2a_c00228{bottom:736.334400px;}
.ye_c00228{bottom:763.514250px;}
.yd_c00228{bottom:794.564250px;}
.y29_c00228{bottom:798.434400px;}
.yc_c00228{bottom:825.524250px;}
.y28_c00228{bottom:829.484400px;}
.yb_c00228{bottom:857.924250px;}
.y27_c00228{bottom:860.534400px;}
.ya_c00228{bottom:888.974250px;}
.y26_c00228{bottom:891.584400px;}
.y9_c00228{bottom:920.024250px;}
.y8_c00228{bottom:951.074250px;}
.y25_c00228{bottom:953.684400px;}
.y7_c00228{bottom:982.034250px;}
.y24_c00228{bottom:984.644400px;}
.y6_c00228{bottom:1014.434250px;}
.y23_c00228{bottom:1015.694400px;}
.y5_c00228{bottom:1045.484250px;}
.y4_c00228{bottom:1076.534250px;}
.y22_c00228{bottom:1077.794400px;}
.y3_c00228{bottom:1107.494250px;}
.y21_c00228{bottom:1108.844400px;}
.y20_c00228{bottom:1139.894400px;}
.y2_c00228{bottom:1194.074400px;}
.h2_c00228{height:50.400000px;}
.h3_c00228{height:54.331699px;}
.h5_c00228{height:76.824000px;}
.h4_c00228{height:78.048000px;}
.h0_c00228{height:1262.835000px;}
.h1_c00228{height:1263.000000px;}
.w2_c00228{width:0.000000px;}
.w3_c00228{width:0.066000px;}
.w0_c00228{width:892.914000px;}
.w1_c00228{width:893.250000px;}
.x1_c00228{left:-838.913400px;}
.x2_c00228{left:-765.293400px;}
.x3_c00228{left:-743.963400px;}
.x5_c00228{left:-733.343400px;}
.x4_c00228{left:-722.723400px;}
.x0_c00228{left:0.000000px;}
.x8_c00228{left:127.620000px;}
.xa_c00228{left:148.950000px;}
.x9_c00228{left:159.570000px;}
.xb_c00228{left:170.190000px;}
.x7_c00228{left:696.510000px;}
.x6_c00228{left:804.366150px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls8_c00228{letter-spacing:-0.320000pt;}
.ls7_c00228{letter-spacing:-0.064000pt;}
.ls6_c00228{letter-spacing:0.000000pt;}
.ls1_c00228{letter-spacing:0.064000pt;}
.ls3_c00228{letter-spacing:0.128000pt;}
.ls5_c00228{letter-spacing:28.160000pt;}
.ls2_c00228{letter-spacing:28.800000pt;}
.ls4_c00228{letter-spacing:31.360000pt;}
.ls0_c00228{letter-spacing:40.384000pt;}
.ws6_c00228{word-spacing:-16.064000pt;}
.ws5_c00228{word-spacing:-15.680000pt;}
.ws34_c00228{word-spacing:-0.384000pt;}
.ws31_c00228{word-spacing:-0.128000pt;}
.ws2b_c00228{word-spacing:-0.117120pt;}
.ws14_c00228{word-spacing:-0.064000pt;}
.ws7_c00228{word-spacing:0.000000pt;}
.ws8_c00228{word-spacing:0.064000pt;}
.ws18_c00228{word-spacing:0.256000pt;}
.ws17_c00228{word-spacing:0.320000pt;}
.ws1d_c00228{word-spacing:0.640000pt;}
.ws1c_c00228{word-spacing:0.896000pt;}
.ws32_c00228{word-spacing:0.960000pt;}
.ws19_c00228{word-spacing:1.536000pt;}
.ws26_c00228{word-spacing:2.176000pt;}
.ws1b_c00228{word-spacing:2.240000pt;}
.ws16_c00228{word-spacing:2.496000pt;}
.ws15_c00228{word-spacing:2.560000pt;}
.ws2f_c00228{word-spacing:3.328000pt;}
.wse_c00228{word-spacing:3.776000pt;}
.wsf_c00228{word-spacing:3.840000pt;}
.wsd_c00228{word-spacing:4.352000pt;}
.wsa_c00228{word-spacing:4.416000pt;}
.ws9_c00228{word-spacing:4.800000pt;}
.ws2d_c00228{word-spacing:5.376000pt;}
.ws2e_c00228{word-spacing:5.760000pt;}
.ws25_c00228{word-spacing:6.656000pt;}
.ws2c_c00228{word-spacing:8.896000pt;}
.ws35_c00228{word-spacing:9.280000pt;}
.ws2a_c00228{word-spacing:12.032000pt;}
.ws29_c00228{word-spacing:12.160000pt;}
.wsc_c00228{word-spacing:12.416000pt;}
.wsb_c00228{word-spacing:12.800000pt;}
.ws22_c00228{word-spacing:13.952000pt;}
.ws21_c00228{word-spacing:14.080000pt;}
.ws2_c00228{word-spacing:15.168000pt;}
.ws24_c00228{word-spacing:15.296000pt;}
.ws23_c00228{word-spacing:15.360000pt;}
.ws0_c00228{word-spacing:17.728000pt;}
.ws1a_c00228{word-spacing:17.856000pt;}
.ws27_c00228{word-spacing:18.496000pt;}
.ws28_c00228{word-spacing:18.560000pt;}
.ws1f_c00228{word-spacing:19.136000pt;}
.ws1e_c00228{word-spacing:19.200000pt;}
.ws10_c00228{word-spacing:20.160000pt;}
.ws30_c00228{word-spacing:23.936000pt;}
.ws3_c00228{word-spacing:24.000000pt;}
.ws1_c00228{word-spacing:24.384000pt;}
.ws20_c00228{word-spacing:24.640000pt;}
.ws33_c00228{word-spacing:26.176000pt;}
.ws13_c00228{word-spacing:29.376000pt;}
.ws11_c00228{word-spacing:36.416000pt;}
.ws12_c00228{word-spacing:36.736000pt;}
.ws4_c00228{word-spacing:38.208000pt;}
._1_c00228{margin-left:-0.908800pt;}
._6_c00228{width:0.960000pt;}
._2_c00228{width:2.752000pt;}
._0_c00228{width:4.608000pt;}
._3_c00228{width:18.048000pt;}
._5_c00228{width:54.208000pt;}
._4_c00228{width:60.800000pt;}
.fs1_c00228{font-size:58.560000pt;}
.fs0_c00228{font-size:64.000000pt;}
.y0_c00228{bottom:0.000000pt;}
.y1_c00228{bottom:54.887600pt;}
.y3b_c00228{bottom:102.519467pt;}
.y1f_c00228{bottom:125.559333pt;}
.y3a_c00228{bottom:130.119467pt;}
.y1e_c00228{bottom:153.159333pt;}
.y39_c00228{bottom:157.719467pt;}
.y1d_c00228{bottom:180.759333pt;}
.y38_c00228{bottom:185.319467pt;}
.y1c_c00228{bottom:208.359333pt;}
.y37_c00228{bottom:212.919467pt;}
.y36_c00228{bottom:240.519467pt;}
.y1b_c00228{bottom:263.559333pt;}
.y35_c00228{bottom:268.119467pt;}
.y1a_c00228{bottom:291.159333pt;}
.y34_c00228{bottom:295.719467pt;}
.y19_c00228{bottom:318.759333pt;}
.y33_c00228{bottom:323.319467pt;}
.y18_c00228{bottom:346.359333pt;}
.y17_c00228{bottom:373.959333pt;}
.y32_c00228{bottom:378.519467pt;}
.y16_c00228{bottom:401.559333pt;}
.y31_c00228{bottom:406.119467pt;}
.y15_c00228{bottom:429.159333pt;}
.y30_c00228{bottom:461.319467pt;}
.y14_c00228{bottom:484.119333pt;}
.y2f_c00228{bottom:488.919467pt;}
.y2e_c00228{bottom:516.519467pt;}
.y13_c00228{bottom:539.479333pt;}
.y2d_c00228{bottom:544.119467pt;}
.y12_c00228{bottom:567.079333pt;}
.y2c_c00228{bottom:571.719467pt;}
.y11_c00228{bottom:594.679333pt;}
.y10_c00228{bottom:622.279333pt;}
.y2b_c00228{bottom:626.919467pt;}
.yf_c00228{bottom:651.079333pt;}
.y2a_c00228{bottom:654.519467pt;}
.ye_c00228{bottom:678.679333pt;}
.yd_c00228{bottom:706.279333pt;}
.y29_c00228{bottom:709.719467pt;}
.yc_c00228{bottom:733.799333pt;}
.y28_c00228{bottom:737.319467pt;}
.yb_c00228{bottom:762.599333pt;}
.y27_c00228{bottom:764.919467pt;}
.ya_c00228{bottom:790.199333pt;}
.y26_c00228{bottom:792.519467pt;}
.y9_c00228{bottom:817.799333pt;}
.y8_c00228{bottom:845.399333pt;}
.y25_c00228{bottom:847.719467pt;}
.y7_c00228{bottom:872.919333pt;}
.y24_c00228{bottom:875.239467pt;}
.y6_c00228{bottom:901.719333pt;}
.y23_c00228{bottom:902.839467pt;}
.y5_c00228{bottom:929.319333pt;}
.y4_c00228{bottom:956.919333pt;}
.y22_c00228{bottom:958.039467pt;}
.y3_c00228{bottom:984.439333pt;}
.y21_c00228{bottom:985.639467pt;}
.y20_c00228{bottom:1013.239467pt;}
.y2_c00228{bottom:1061.399467pt;}
.h2_c00228{height:44.800000pt;}
.h3_c00228{height:48.294844pt;}
.h5_c00228{height:68.288000pt;}
.h4_c00228{height:69.376000pt;}
.h0_c00228{height:1122.520000pt;}
.h1_c00228{height:1122.666667pt;}
.w2_c00228{width:0.000000pt;}
.w3_c00228{width:0.058667pt;}
.w0_c00228{width:793.701333pt;}
.w1_c00228{width:794.000000pt;}
.x1_c00228{left:-745.700800pt;}
.x2_c00228{left:-680.260800pt;}
.x3_c00228{left:-661.300800pt;}
.x5_c00228{left:-651.860800pt;}
.x4_c00228{left:-642.420800pt;}
.x0_c00228{left:0.000000pt;}
.x8_c00228{left:113.440000pt;}
.xa_c00228{left:132.400000pt;}
.x9_c00228{left:141.840000pt;}
.xb_c00228{left:151.280000pt;}
.x7_c00228{left:619.120000pt;}
.x6_c00228{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00229;src:url('chunks/assets/font_2a929f2ae281077718fd6dd0.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00229;src:url('chunks/assets/font_7ef064dc7b8ca7ab5db76060.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00229;src:url('chunks/assets/font_96d82d7168e0c261615834ad.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00229;src:url('chunks/assets/font_1f202b17868d2d1faf8f428b.woff2')format("woff");}.ff5_c00229{font-family:ff5_c00229;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.va_c00229{vertical-align:-32.769360px;}
.v6_c00229{vertical-align:-3.580200px;}
.v0_c00229{vertical-align:0.000000px;}
.v9_c00229{vertical-align:14.742000px;}
.vb_c00229{vertical-align:17.648280px;}
.v5_c00229{vertical-align:20.512440px;}
.v7_c00229{vertical-align:24.134760px;}
.v4_c00229{vertical-align:25.566840px;}
.v3_c00229{vertical-align:33.822360px;}
.v1_c00229{vertical-align:48.227400px;}
.v2_c00229{vertical-align:55.092960px;}
.v8_c00229{vertical-align:65.875680px;}
.ls5_c00229{letter-spacing:-0.168480px;}
.ls4_c00229{letter-spacing:-0.042120px;}
.ls2_c00229{letter-spacing:0.000000px;}
.ls3_c00229{letter-spacing:0.168480px;}
.ls0_c00229{letter-spacing:11.962080px;}
.ls1_c00229{letter-spacing:775.639800px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00229{word-spacing:-11.877840px;}
.ws0_c00229{word-spacing:-11.709360px;}
.ws8_c00229{word-spacing:-11.667240px;}
.ws11_c00229{word-spacing:-0.210600px;}
.wse_c00229{word-spacing:-0.131760px;}
.ws6_c00229{word-spacing:-0.084240px;}
.wsd_c00229{word-spacing:0.000000px;}
.wsf_c00229{word-spacing:0.168480px;}
.ws10_c00229{word-spacing:0.210600px;}
.ws7_c00229{word-spacing:115.366680px;}
.ws3_c00229{word-spacing:116.461800px;}
.ws5_c00229{word-spacing:139.796280px;}
.wsa_c00229{word-spacing:142.028640px;}
.wsc_c00229{word-spacing:142.197120px;}
.ws2_c00229{word-spacing:144.555840px;}
.wsb_c00229{word-spacing:145.608840px;}
.ws9_c00229{word-spacing:161.740800px;}
.ws4_c00229{word-spacing:901.452240px;}
._1_c00229{margin-left:-1.297296px;}
._0_c00229{width:1.185840px;}
._2_c00229{width:10.782720px;}
._4_c00229{width:42.204240px;}
._3_c00229{width:80.659800px;}
.fc1_c00229{color:rgb(0,0,0);}
.fc0_c00229{color:rgb(35,31,32);}
.fs2_c00229{font-size:42.120000px;}
.fs1_c00229{font-size:65.880000px;}
.fs0_c00229{font-size:72.000000px;}
.y0_c00229{bottom:0.000000px;}
.y8_c00229{bottom:2.339400px;}
.y26_c00229{bottom:2.342400px;}
.y21_c00229{bottom:9.629400px;}
.y4e_c00229{bottom:13.049400px;}
.y16_c00229{bottom:14.399250px;}
.y3b_c00229{bottom:14.399400px;}
.y46_c00229{bottom:17.642400px;}
.y49_c00229{bottom:19.079250px;}
.y19_c00229{bottom:25.289250px;}
.y1d_c00229{bottom:25.830750px;}
.y32_c00229{bottom:31.859250px;}
.y7_c00229{bottom:35.459400px;}
.y24_c00229{bottom:35.462250px;}
.y41_c00229{bottom:35.462400px;}
.y13_c00229{bottom:42.659400px;}
.y1_c00229{bottom:61.748550px;}
.y50_c00229{bottom:112.724400px;}
.y4f_c00229{bottom:135.854400px;}
.y4d_c00229{bottom:149.985000px;}
.y4c_c00229{bottom:157.723050px;}
.y4b_c00229{bottom:191.471700px;}
.y48_c00229{bottom:201.195000px;}
.y4a_c00229{bottom:208.214400px;}
.y45_c00229{bottom:229.992000px;}
.y47_c00229{bottom:240.884400px;}
.y44_c00229{bottom:261.677550px;}
.y43_c00229{bottom:273.734400px;}
.y40_c00229{bottom:286.152000px;}
.y42_c00229{bottom:288.584400px;}
.y3f_c00229{bottom:337.186290px;}
.y3e_c00229{bottom:349.243140px;}
.y3d_c00229{bottom:379.569540px;}
.y3a_c00229{bottom:403.155000px;}
.y3c_c00229{bottom:405.494400px;}
.y39_c00229{bottom:412.429890px;}
.y38_c00229{bottom:439.881600px;}
.y37_c00229{bottom:446.810340px;}
.y31_c00229{bottom:472.005000px;}
.y34_c00229{bottom:476.146920px;}
.y36_c00229{bottom:483.075660px;}
.y33_c00229{bottom:490.004400px;}
.y35_c00229{bottom:495.132510px;}
.y2e_c00229{bottom:521.684670px;}
.y30_c00229{bottom:528.613410px;}
.y2d_c00229{bottom:535.636920px;}
.y2f_c00229{bottom:540.765030px;}
.y2c_c00229{bottom:549.494400px;}
.y2a_c00229{bottom:566.230440px;}
.y2b_c00229{bottom:583.689180px;}
.y29_c00229{bottom:599.263050px;}
.y27_c00229{bottom:609.795000px;}
.y28_c00229{bottom:618.164400px;}
.y23_c00229{bottom:633.912000px;}
.y25_c00229{bottom:657.314400px;}
.y20_c00229{bottom:679.095000px;}
.y22_c00229{bottom:686.024250px;}
.y1c_c00229{bottom:698.443500px;}
.y1f_c00229{bottom:706.549260px;}
.y1e_c00229{bottom:712.214400px;}
.y18_c00229{bottom:733.995000px;}
.y1b_c00229{bottom:741.822510px;}
.y1a_c00229{bottom:747.224400px;}
.y15_c00229{bottom:769.005000px;}
.y17_c00229{bottom:778.274250px;}
.y12_c00229{bottom:793.845000px;}
.y14_c00229{bottom:803.474250px;}
.y11_c00229{bottom:863.687400px;}
.y10_c00229{bottom:875.744250px;}
.yf_c00229{bottom:911.927550px;}
.ye_c00229{bottom:923.984400px;}
.yd_c00229{bottom:959.177550px;}
.yc_c00229{bottom:971.234400px;}
.yb_c00229{bottom:1012.547550px;}
.ya_c00229{bottom:1024.604400px;}
.y6_c00229{bottom:1050.165000px;}
.y9_c00229{bottom:1069.064250px;}
.y5_c00229{bottom:1100.557740px;}
.y4_c00229{bottom:1120.717020px;}
.y3_c00229{bottom:1140.793950px;}
.y2_c00229{bottom:1194.074400px;}
.hf_c00229{height:19.350000px;}
.h19_c00229{height:22.768500px;}
.h11_c00229{height:24.117000px;}
.ha_c00229{height:24.118500px;}
.h16_c00229{height:27.360000px;}
.h17_c00229{height:28.800000px;}
.hb_c00229{height:35.011500px;}
.hd_c00229{height:35.551500px;}
.h12_c00229{height:41.580000px;}
.h6_c00229{height:44.942040px;}
.h5_c00229{height:45.178500px;}
.h10_c00229{height:45.180000px;}
.h4_c00229{height:45.646348px;}
.h2_c00229{height:50.400000px;}
.h8_c00229{height:52.380000px;}
.h3_c00229{height:54.331699px;}
.h18_c00229{height:59.684040px;}
.h1a_c00229{height:62.590320px;}
.h13_c00229{height:65.454480px;}
.h14_c00229{height:69.076800px;}
.he_c00229{height:70.508880px;}
.hc_c00229{height:78.764400px;}
.h7_c00229{height:93.169440px;}
.h9_c00229{height:100.035000px;}
.h15_c00229{height:110.817720px;}
.h0_c00229{height:1262.835000px;}
.h1_c00229{height:1263.000000px;}
.w2_c00229{width:106.920000px;}
.w3_c00229{width:541.440000px;}
.w0_c00229{width:892.914000px;}
.w1_c00229{width:893.250000px;}
.x0_c00229{left:0.000000px;}
.x5_c00229{left:5.310000px;}
.x1f_c00229{left:6.480000px;}
.x10_c00229{left:8.820000px;}
.x14_c00229{left:10.260000px;}
.x16_c00229{left:12.060000px;}
.x12_c00229{left:13.230000px;}
.xe_c00229{left:14.670000px;}
.x13_c00229{left:17.910000px;}
.x17_c00229{left:21.690000px;}
.xf_c00229{left:22.860000px;}
.x1c_c00229{left:26.370000px;}
.x1_c00229{left:54.000000px;}
.x4_c00229{left:56.070000px;}
.xd_c00229{left:67.230000px;}
.x3_c00229{left:122.310000px;}
.x2_c00229{left:127.620000px;}
.x1d_c00229{left:130.863600px;}
.x1e_c00229{left:132.835500px;}
.xa_c00229{left:136.710000px;}
.x7_c00229{left:140.130000px;}
.x1a_c00229{left:141.660000px;}
.xb_c00229{left:146.340000px;}
.xc_c00229{left:149.225220px;}
.x20_c00229{left:153.636120px;}
.x11_c00229{left:155.070000px;}
.x8_c00229{left:156.240900px;}
.x1b_c00229{left:160.287570px;}
.x18_c00229{left:189.539550px;}
.x15_c00229{left:229.230000px;}
.x9_c00229{left:234.447210px;}
.x6_c00229{left:331.290000px;}
.x19_c00229{left:408.868920px;}
@media print{
.va_c00229{vertical-align:-29.128320pt;}
.v6_c00229{vertical-align:-3.182400pt;}
.v0_c00229{vertical-align:0.000000pt;}
.v9_c00229{vertical-align:13.104000pt;}
.vb_c00229{vertical-align:15.687360pt;}
.v5_c00229{vertical-align:18.233280pt;}
.v7_c00229{vertical-align:21.453120pt;}
.v4_c00229{vertical-align:22.726080pt;}
.v3_c00229{vertical-align:30.064320pt;}
.v1_c00229{vertical-align:42.868800pt;}
.v2_c00229{vertical-align:48.971520pt;}
.v8_c00229{vertical-align:58.556160pt;}
.ls5_c00229{letter-spacing:-0.149760pt;}
.ls4_c00229{letter-spacing:-0.037440pt;}
.ls2_c00229{letter-spacing:0.000000pt;}
.ls3_c00229{letter-spacing:0.149760pt;}
.ls0_c00229{letter-spacing:10.632960pt;}
.ls1_c00229{letter-spacing:689.457600pt;}
.ws1_c00229{word-spacing:-10.558080pt;}
.ws0_c00229{word-spacing:-10.408320pt;}
.ws8_c00229{word-spacing:-10.370880pt;}
.ws11_c00229{word-spacing:-0.187200pt;}
.wse_c00229{word-spacing:-0.117120pt;}
.ws6_c00229{word-spacing:-0.074880pt;}
.wsd_c00229{word-spacing:0.000000pt;}
.wsf_c00229{word-spacing:0.149760pt;}
.ws10_c00229{word-spacing:0.187200pt;}
.ws7_c00229{word-spacing:102.548160pt;}
.ws3_c00229{word-spacing:103.521600pt;}
.ws5_c00229{word-spacing:124.263360pt;}
.wsa_c00229{word-spacing:126.247680pt;}
.wsc_c00229{word-spacing:126.397440pt;}
.ws2_c00229{word-spacing:128.494080pt;}
.wsb_c00229{word-spacing:129.430080pt;}
.ws9_c00229{word-spacing:143.769600pt;}
.ws4_c00229{word-spacing:801.290880pt;}
._1_c00229{margin-left:-1.153152pt;}
._0_c00229{width:1.054080pt;}
._2_c00229{width:9.584640pt;}
._4_c00229{width:37.514880pt;}
._3_c00229{width:71.697600pt;}
.fs2_c00229{font-size:37.440000pt;}
.fs1_c00229{font-size:58.560000pt;}
.fs0_c00229{font-size:64.000000pt;}
.y0_c00229{bottom:0.000000pt;}
.y8_c00229{bottom:2.079467pt;}
.y26_c00229{bottom:2.082133pt;}
.y21_c00229{bottom:8.559467pt;}
.y4e_c00229{bottom:11.599467pt;}
.y16_c00229{bottom:12.799333pt;}
.y3b_c00229{bottom:12.799467pt;}
.y46_c00229{bottom:15.682133pt;}
.y49_c00229{bottom:16.959333pt;}
.y19_c00229{bottom:22.479333pt;}
.y1d_c00229{bottom:22.960667pt;}
.y32_c00229{bottom:28.319333pt;}
.y7_c00229{bottom:31.519467pt;}
.y24_c00229{bottom:31.522000pt;}
.y41_c00229{bottom:31.522133pt;}
.y13_c00229{bottom:37.919467pt;}
.y1_c00229{bottom:54.887600pt;}
.y50_c00229{bottom:100.199467pt;}
.y4f_c00229{bottom:120.759467pt;}
.y4d_c00229{bottom:133.320000pt;}
.y4c_c00229{bottom:140.198267pt;}
.y4b_c00229{bottom:170.197067pt;}
.y48_c00229{bottom:178.840000pt;}
.y4a_c00229{bottom:185.079467pt;}
.y45_c00229{bottom:204.437333pt;}
.y47_c00229{bottom:214.119467pt;}
.y44_c00229{bottom:232.602267pt;}
.y43_c00229{bottom:243.319467pt;}
.y40_c00229{bottom:254.357333pt;}
.y42_c00229{bottom:256.519467pt;}
.y3f_c00229{bottom:299.721147pt;}
.y3e_c00229{bottom:310.438347pt;}
.y3d_c00229{bottom:337.395147pt;}
.y3a_c00229{bottom:358.360000pt;}
.y3c_c00229{bottom:360.439467pt;}
.y39_c00229{bottom:366.604347pt;}
.y38_c00229{bottom:391.005867pt;}
.y37_c00229{bottom:397.164747pt;}
.y31_c00229{bottom:419.560000pt;}
.y34_c00229{bottom:423.241707pt;}
.y36_c00229{bottom:429.400587pt;}
.y33_c00229{bottom:435.559467pt;}
.y35_c00229{bottom:440.117787pt;}
.y2e_c00229{bottom:463.719707pt;}
.y30_c00229{bottom:469.878587pt;}
.y2d_c00229{bottom:476.121707pt;}
.y2f_c00229{bottom:480.680027pt;}
.y2c_c00229{bottom:488.439467pt;}
.y2a_c00229{bottom:503.315947pt;}
.y2b_c00229{bottom:518.834827pt;}
.y29_c00229{bottom:532.678267pt;}
.y27_c00229{bottom:542.040000pt;}
.y28_c00229{bottom:549.479467pt;}
.y23_c00229{bottom:563.477333pt;}
.y25_c00229{bottom:584.279467pt;}
.y20_c00229{bottom:603.640000pt;}
.y22_c00229{bottom:609.799333pt;}
.y1c_c00229{bottom:620.838667pt;}
.y1f_c00229{bottom:628.043787pt;}
.y1e_c00229{bottom:633.079467pt;}
.y18_c00229{bottom:652.440000pt;}
.y1b_c00229{bottom:659.397787pt;}
.y1a_c00229{bottom:664.199467pt;}
.y15_c00229{bottom:683.560000pt;}
.y17_c00229{bottom:691.799333pt;}
.y12_c00229{bottom:705.640000pt;}
.y14_c00229{bottom:714.199333pt;}
.y11_c00229{bottom:767.722133pt;}
.y10_c00229{bottom:778.439333pt;}
.yf_c00229{bottom:810.602267pt;}
.ye_c00229{bottom:821.319467pt;}
.yd_c00229{bottom:852.602267pt;}
.yc_c00229{bottom:863.319467pt;}
.yb_c00229{bottom:900.042267pt;}
.ya_c00229{bottom:910.759467pt;}
.y6_c00229{bottom:933.480000pt;}
.y9_c00229{bottom:950.279333pt;}
.y5_c00229{bottom:978.273547pt;}
.y4_c00229{bottom:996.192907pt;}
.y3_c00229{bottom:1014.039067pt;}
.y2_c00229{bottom:1061.399467pt;}
.hf_c00229{height:17.200000pt;}
.h19_c00229{height:20.238667pt;}
.h11_c00229{height:21.437333pt;}
.ha_c00229{height:21.438667pt;}
.h16_c00229{height:24.320000pt;}
.h17_c00229{height:25.600000pt;}
.hb_c00229{height:31.121333pt;}
.hd_c00229{height:31.601333pt;}
.h12_c00229{height:36.960000pt;}
.h6_c00229{height:39.948480pt;}
.h5_c00229{height:40.158667pt;}
.h10_c00229{height:40.160000pt;}
.h4_c00229{height:40.574531pt;}
.h2_c00229{height:44.800000pt;}
.h8_c00229{height:46.560000pt;}
.h3_c00229{height:48.294844pt;}
.h18_c00229{height:53.052480pt;}
.h1a_c00229{height:55.635840pt;}
.h13_c00229{height:58.181760pt;}
.h14_c00229{height:61.401600pt;}
.he_c00229{height:62.674560pt;}
.hc_c00229{height:70.012800pt;}
.h7_c00229{height:82.817280pt;}
.h9_c00229{height:88.920000pt;}
.h15_c00229{height:98.504640pt;}
.h0_c00229{height:1122.520000pt;}
.h1_c00229{height:1122.666667pt;}
.w2_c00229{width:95.040000pt;}
.w3_c00229{width:481.280000pt;}
.w0_c00229{width:793.701333pt;}
.w1_c00229{width:794.000000pt;}
.x0_c00229{left:0.000000pt;}
.x5_c00229{left:4.720000pt;}
.x1f_c00229{left:5.760000pt;}
.x10_c00229{left:7.840000pt;}
.x14_c00229{left:9.120000pt;}
.x16_c00229{left:10.720000pt;}
.x12_c00229{left:11.760000pt;}
.xe_c00229{left:13.040000pt;}
.x13_c00229{left:15.920000pt;}
.x17_c00229{left:19.280000pt;}
.xf_c00229{left:20.320000pt;}
.x1c_c00229{left:23.440000pt;}
.x1_c00229{left:48.000000pt;}
.x4_c00229{left:49.840000pt;}
.xd_c00229{left:59.760000pt;}
.x3_c00229{left:108.720000pt;}
.x2_c00229{left:113.440000pt;}
.x1d_c00229{left:116.323200pt;}
.x1e_c00229{left:118.076000pt;}
.xa_c00229{left:121.520000pt;}
.x7_c00229{left:124.560000pt;}
.x1a_c00229{left:125.920000pt;}
.xb_c00229{left:130.080000pt;}
.xc_c00229{left:132.644640pt;}
.x20_c00229{left:136.565440pt;}
.x11_c00229{left:137.840000pt;}
.x8_c00229{left:138.880800pt;}
.x1b_c00229{left:142.477840pt;}
.x18_c00229{left:168.479600pt;}
.x15_c00229{left:203.760000pt;}
.x9_c00229{left:208.397520pt;}
.x6_c00229{left:294.480000pt;}
.x19_c00229{left:363.439040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00230;src:url('chunks/assets/font_9653972d252098fbcd8b1264.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00230;src:url('chunks/assets/font_e340abe608d8b848d4935154.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00230;src:url('chunks/assets/font_29d4c49f563aa72d2322feef.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00230;src:url('chunks/assets/font_1f202b17868d2d1faf8f428b.woff2')format("woff");}.ff5_c00230{font-family:ff5_c00230;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00230;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00230{font-family:ff6_c00230;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00230;src:url('chunks/assets/font_cdf5e43369a96dfe87fdba0d.woff2')format("woff");}.ff7_c00230{font-family:ff7_c00230;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00230;src:url('chunks/assets/font_0b42ac64f899de369ddb9332.woff2')format("woff");}.ff8_c00230{font-family:ff8_c00230;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00230;src:url('chunks/assets/font_2261be8b81ef4ebbc144237f.woff2')format("woff");}.ff9_c00230{font-family:ff9_c00230;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00230;src:url('chunks/assets/font_1f202b17868d2d1faf8f428b.woff2')format("woff");}.ffa_c00230{font-family:ffa_c00230;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.va_c00230{vertical-align:-32.769360px;}
.v6_c00230{vertical-align:-3.580200px;}
.v0_c00230{vertical-align:0.000000px;}
.vd_c00230{vertical-align:8.297640px;}
.v9_c00230{vertical-align:14.742000px;}
.vb_c00230{vertical-align:17.648280px;}
.v5_c00230{vertical-align:20.512440px;}
.v7_c00230{vertical-align:24.134760px;}
.v4_c00230{vertical-align:25.566840px;}
.v3_c00230{vertical-align:33.822360px;}
.vf_c00230{vertical-align:36.012600px;}
.vc_c00230{vertical-align:42.120000px;}
.ve_c00230{vertical-align:43.215120px;}
.v1_c00230{vertical-align:48.227400px;}
.v2_c00230{vertical-align:55.092960px;}
.v8_c00230{vertical-align:65.875680px;}
.ls5_c00230{letter-spacing:-0.168480px;}
.ls4_c00230{letter-spacing:-0.042120px;}
.ls2_c00230{letter-spacing:0.000000px;}
.ls3_c00230{letter-spacing:0.168480px;}
.ls0_c00230{letter-spacing:11.962080px;}
.ls1_c00230{letter-spacing:775.639800px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00230{word-spacing:-11.877840px;}
.ws0_c00230{word-spacing:-11.709360px;}
.ws8_c00230{word-spacing:-11.667240px;}
.ws1e_c00230{word-spacing:-0.210600px;}
.ws1b_c00230{word-spacing:-0.131760px;}
.ws6_c00230{word-spacing:-0.084240px;}
.ws1f_c00230{word-spacing:-0.042120px;}
.ws1a_c00230{word-spacing:0.000000px;}
.ws22_c00230{word-spacing:0.042120px;}
.ws1c_c00230{word-spacing:0.168480px;}
.ws1d_c00230{word-spacing:0.210600px;}
.ws21_c00230{word-spacing:5.938920px;}
.ws20_c00230{word-spacing:8.803080px;}
.ws7_c00230{word-spacing:115.366680px;}
.ws3_c00230{word-spacing:116.461800px;}
.ws11_c00230{word-spacing:121.853160px;}
.ws18_c00230{word-spacing:129.392640px;}
.wsf_c00230{word-spacing:131.245920px;}
.ws17_c00230{word-spacing:136.890000px;}
.ws5_c00230{word-spacing:139.796280px;}
.wsa_c00230{word-spacing:142.028640px;}
.wsc_c00230{word-spacing:142.197120px;}
.ws13_c00230{word-spacing:143.123760px;}
.ws2_c00230{word-spacing:144.555840px;}
.wsb_c00230{word-spacing:145.608840px;}
.ws15_c00230{word-spacing:153.569520px;}
.ws19_c00230{word-spacing:157.528800px;}
.wse_c00230{word-spacing:159.297840px;}
.ws9_c00230{word-spacing:161.740800px;}
.ws12_c00230{word-spacing:166.163400px;}
.ws14_c00230{word-spacing:344.541600px;}
.wsd_c00230{word-spacing:703.109160px;}
.ws16_c00230{word-spacing:859.332240px;}
.ws4_c00230{word-spacing:901.452240px;}
.ws10_c00230{word-spacing:916.236360px;}
._1_c00230{margin-left:-1.297296px;}
._0_c00230{width:1.185840px;}
._2_c00230{width:10.782720px;}
._4_c00230{width:42.204240px;}
._8_c00230{width:51.209496px;}
._7_c00230{width:53.147016px;}
._3_c00230{width:80.659800px;}
._6_c00230{width:121.600440px;}
._5_c00230{width:131.372280px;}
.fc2_c00230{color:transparent;}
.fc1_c00230{color:rgb(0,0,0);}
.fc0_c00230{color:rgb(35,31,32);}
.fs2_c00230{font-size:42.120000px;}
.fs1_c00230{font-size:65.880000px;}
.fs0_c00230{font-size:72.000000px;}
.y0_c00230{bottom:0.000000px;}
.y8_c00230{bottom:2.339400px;}
.y26_c00230{bottom:2.340900px;}
.y21_c00230{bottom:9.629400px;}
.y4e_c00230{bottom:13.049400px;}
.y16_c00230{bottom:14.399250px;}
.y3b_c00230{bottom:14.399400px;}
.y5c_c00230{bottom:17.639400px;}
.y46_c00230{bottom:17.640900px;}
.y49_c00230{bottom:19.079250px;}
.y19_c00230{bottom:25.289250px;}
.y52_c00230{bottom:25.829250px;}
.y1d_c00230{bottom:25.830750px;}
.y32_c00230{bottom:31.859250px;}
.y54_c00230{bottom:35.459250px;}
.y7_c00230{bottom:35.459400px;}
.y24_c00230{bottom:35.460750px;}
.y41_c00230{bottom:35.460900px;}
.y13_c00230{bottom:42.659400px;}
.y1_c00230{bottom:61.748550px;}
.y50_c00230{bottom:112.724400px;}
.y4f_c00230{bottom:135.854400px;}
.y4d_c00230{bottom:149.985000px;}
.y4c_c00230{bottom:157.723050px;}
.y4b_c00230{bottom:191.471700px;}
.y48_c00230{bottom:201.195000px;}
.y4a_c00230{bottom:208.214400px;}
.y86_c00230{bottom:211.025100px;}
.y85_c00230{bottom:214.078800px;}
.y84_c00230{bottom:227.936280px;}
.y45_c00230{bottom:229.993500px;}
.y5b_c00230{bottom:229.995000px;}
.y47_c00230{bottom:240.884400px;}
.y83_c00230{bottom:255.293220px;}
.y44_c00230{bottom:261.680250px;}
.y82_c00230{bottom:269.150700px;}
.y81_c00230{bottom:272.204400px;}
.y43_c00230{bottom:273.737100px;}
.y40_c00230{bottom:286.153500px;}
.y5a_c00230{bottom:286.155000px;}
.y42_c00230{bottom:288.584400px;}
.y80_c00230{bottom:308.661960px;}
.y7f_c00230{bottom:318.644400px;}
.y3f_c00230{bottom:337.186290px;}
.y3e_c00230{bottom:349.243140px;}
.y7e_c00230{bottom:351.493440px;}
.y7d_c00230{bottom:372.553440px;}
.y3d_c00230{bottom:379.569540px;}
.y3a_c00230{bottom:403.155000px;}
.y7c_c00230{bottom:403.427400px;}
.y3c_c00230{bottom:405.494400px;}
.y39_c00230{bottom:412.429890px;}
.y7b_c00230{bottom:415.484250px;}
.y38_c00230{bottom:439.881600px;}
.y7a_c00230{bottom:445.547400px;}
.y37_c00230{bottom:446.810340px;}
.y79_c00230{bottom:457.604250px;}
.y31_c00230{bottom:472.005000px;}
.y34_c00230{bottom:476.146920px;}
.y36_c00230{bottom:483.075660px;}
.y78_c00230{bottom:487.662780px;}
.y33_c00230{bottom:490.004400px;}
.y35_c00230{bottom:495.132510px;}
.y77_c00230{bottom:499.814400px;}
.y57_c00230{bottom:521.678010px;}
.y2e_c00230{bottom:521.688540px;}
.y59_c00230{bottom:528.606750px;}
.y30_c00230{bottom:528.617280px;}
.y76_c00230{bottom:530.588670px;}
.y56_c00230{bottom:535.630260px;}
.y2d_c00230{bottom:535.640790px;}
.y58_c00230{bottom:540.758370px;}
.y2f_c00230{bottom:540.768900px;}
.y55_c00230{bottom:549.487740px;}
.y2c_c00230{bottom:549.498270px;}
.y75_c00230{bottom:551.648670px;}
.y2a_c00230{bottom:566.230440px;}
.y74_c00230{bottom:582.522630px;}
.y2b_c00230{bottom:583.689180px;}
.y73_c00230{bottom:594.579480px;}
.y29_c00230{bottom:599.263050px;}
.y27_c00230{bottom:609.795000px;}
.y28_c00230{bottom:618.164400px;}
.y72_c00230{bottom:624.642630px;}
.y23_c00230{bottom:633.913500px;}
.y53_c00230{bottom:633.915000px;}
.y71_c00230{bottom:636.699480px;}
.y25_c00230{bottom:657.314400px;}
.y70_c00230{bottom:666.762630px;}
.y6f_c00230{bottom:672.796320px;}
.y20_c00230{bottom:679.095000px;}
.y22_c00230{bottom:686.024250px;}
.y1c_c00230{bottom:698.443500px;}
.y51_c00230{bottom:698.445000px;}
.y1f_c00230{bottom:706.549260px;}
.y6e_c00230{bottom:708.977400px;}
.y1e_c00230{bottom:712.214400px;}
.y6d_c00230{bottom:721.034250px;}
.y18_c00230{bottom:733.995000px;}
.y1b_c00230{bottom:741.822510px;}
.y1a_c00230{bottom:747.224400px;}
.y6c_c00230{bottom:751.097550px;}
.y6b_c00230{bottom:763.154400px;}
.y15_c00230{bottom:769.005000px;}
.y17_c00230{bottom:778.274250px;}
.y12_c00230{bottom:793.845000px;}
.y6a_c00230{bottom:794.034120px;}
.y14_c00230{bottom:803.474250px;}
.y69_c00230{bottom:815.094120px;}
.y68_c00230{bottom:845.873310px;}
.y67_c00230{bottom:857.930160px;}
.y11_c00230{bottom:863.697660px;}
.y10_c00230{bottom:875.754510px;}
.y66_c00230{bottom:888.077550px;}
.y65_c00230{bottom:900.134400px;}
.yf_c00230{bottom:911.935590px;}
.ye_c00230{bottom:923.992440px;}
.y64_c00230{bottom:930.197550px;}
.y63_c00230{bottom:942.254400px;}
.yd_c00230{bottom:959.183700px;}
.yc_c00230{bottom:971.240550px;}
.y62_c00230{bottom:972.317550px;}
.y61_c00230{bottom:984.374400px;}
.yb_c00230{bottom:1012.549740px;}
.y60_c00230{bottom:1015.244400px;}
.ya_c00230{bottom:1024.606590px;}
.y5f_c00230{bottom:1036.304400px;}
.y6_c00230{bottom:1050.165000px;}
.y5e_c00230{bottom:1060.239180px;}
.y9_c00230{bottom:1069.064250px;}
.y5d_c00230{bottom:1080.398460px;}
.y5_c00230{bottom:1100.557740px;}
.y4_c00230{bottom:1120.717020px;}
.y3_c00230{bottom:1140.793950px;}
.y2_c00230{bottom:1194.074400px;}
.hf_c00230{height:19.350000px;}
.h18_c00230{height:22.768500px;}
.h1c_c00230{height:22.770000px;}
.ha_c00230{height:24.118500px;}
.h1b_c00230{height:24.120000px;}
.h15_c00230{height:27.360000px;}
.h16_c00230{height:28.800000px;}
.hb_c00230{height:35.011500px;}
.h1a_c00230{height:35.550000px;}
.hd_c00230{height:35.551500px;}
.h11_c00230{height:41.580000px;}
.h6_c00230{height:44.942040px;}
.h5_c00230{height:45.178500px;}
.h10_c00230{height:45.180000px;}
.h4_c00230{height:45.646348px;}
.h2_c00230{height:50.400000px;}
.h8_c00230{height:52.380000px;}
.h1f_c00230{height:53.239680px;}
.h3_c00230{height:54.331699px;}
.h17_c00230{height:59.684040px;}
.h19_c00230{height:62.590320px;}
.h12_c00230{height:65.454480px;}
.h13_c00230{height:69.076800px;}
.h1e_c00230{height:69.413760px;}
.he_c00230{height:70.508880px;}
.hc_c00230{height:78.764400px;}
.h21_c00230{height:80.954640px;}
.h1d_c00230{height:87.062040px;}
.h20_c00230{height:88.157160px;}
.h7_c00230{height:93.169440px;}
.h9_c00230{height:100.035000px;}
.h14_c00230{height:110.817720px;}
.h0_c00230{height:1262.835000px;}
.h1_c00230{height:1263.000000px;}
.w3_c00230{width:-663.684000px;}
.w4_c00230{width:-122.244000px;}
.w2_c00230{width:0.000000px;}
.w5_c00230{width:0.066000px;}
.w0_c00230{width:892.914000px;}
.w1_c00230{width:893.250000px;}
.x1_c00230{left:-838.913400px;}
.x2_c00230{left:-765.293400px;}
.x16_c00230{left:-764.123400px;}
.xd_c00230{left:-761.783550px;}
.x10_c00230{left:-760.343400px;}
.x11_c00230{left:-758.543400px;}
.xf_c00230{left:-757.373400px;}
.x8_c00230{left:-756.207270px;}
.x5_c00230{left:-752.785020px;}
.x14_c00230{left:-751.253760px;}
.x12_c00230{left:-748.913400px;}
.xc_c00230{left:-747.743400px;}
.x9_c00230{left:-746.572320px;}
.xa_c00230{left:-743.687100px;}
.x17_c00230{left:-739.277280px;}
.xe_c00230{left:-737.843400px;}
.x6_c00230{left:-736.674120px;}
.x15_c00230{left:-732.626190px;}
.x3_c00230{left:-714.533550px;}
.xb_c00230{left:-703.373400px;}
.x7_c00230{left:-658.467810px;}
.x4_c00230{left:-561.623400px;}
.x13_c00230{left:-484.044480px;}
.x0_c00230{left:0.000000px;}
.x1a_c00230{left:127.619730px;}
.x23_c00230{left:130.410000px;}
.x22_c00230{left:136.260000px;}
.x1f_c00230{left:140.310000px;}
.x1c_c00230{left:143.820000px;}
.x24_c00230{left:147.594960px;}
.x20_c00230{left:149.934420px;}
.x21_c00230{left:152.903880px;}
.x28_c00230{left:154.350000px;}
.x26_c00230{left:155.797830px;}
.x27_c00230{left:158.400000px;}
.x1d_c00230{left:159.930900px;}
.x25_c00230{left:161.631450px;}
.x1b_c00230{left:196.832850px;}
.x1e_c00230{left:241.822710px;}
.x29_c00230{left:244.619010px;}
.x19_c00230{left:696.510000px;}
.x18_c00230{left:804.366150px;}
@media print{
.va_c00230{vertical-align:-29.128320pt;}
.v6_c00230{vertical-align:-3.182400pt;}
.v0_c00230{vertical-align:0.000000pt;}
.vd_c00230{vertical-align:7.375680pt;}
.v9_c00230{vertical-align:13.104000pt;}
.vb_c00230{vertical-align:15.687360pt;}
.v5_c00230{vertical-align:18.233280pt;}
.v7_c00230{vertical-align:21.453120pt;}
.v4_c00230{vertical-align:22.726080pt;}
.v3_c00230{vertical-align:30.064320pt;}
.vf_c00230{vertical-align:32.011200pt;}
.vc_c00230{vertical-align:37.440000pt;}
.ve_c00230{vertical-align:38.413440pt;}
.v1_c00230{vertical-align:42.868800pt;}
.v2_c00230{vertical-align:48.971520pt;}
.v8_c00230{vertical-align:58.556160pt;}
.ls5_c00230{letter-spacing:-0.149760pt;}
.ls4_c00230{letter-spacing:-0.037440pt;}
.ls2_c00230{letter-spacing:0.000000pt;}
.ls3_c00230{letter-spacing:0.149760pt;}
.ls0_c00230{letter-spacing:10.632960pt;}
.ls1_c00230{letter-spacing:689.457600pt;}
.ws1_c00230{word-spacing:-10.558080pt;}
.ws0_c00230{word-spacing:-10.408320pt;}
.ws8_c00230{word-spacing:-10.370880pt;}
.ws1e_c00230{word-spacing:-0.187200pt;}
.ws1b_c00230{word-spacing:-0.117120pt;}
.ws6_c00230{word-spacing:-0.074880pt;}
.ws1f_c00230{word-spacing:-0.037440pt;}
.ws1a_c00230{word-spacing:0.000000pt;}
.ws22_c00230{word-spacing:0.037440pt;}
.ws1c_c00230{word-spacing:0.149760pt;}
.ws1d_c00230{word-spacing:0.187200pt;}
.ws21_c00230{word-spacing:5.279040pt;}
.ws20_c00230{word-spacing:7.824960pt;}
.ws7_c00230{word-spacing:102.548160pt;}
.ws3_c00230{word-spacing:103.521600pt;}
.ws11_c00230{word-spacing:108.313920pt;}
.ws18_c00230{word-spacing:115.015680pt;}
.wsf_c00230{word-spacing:116.663040pt;}
.ws17_c00230{word-spacing:121.680000pt;}
.ws5_c00230{word-spacing:124.263360pt;}
.wsa_c00230{word-spacing:126.247680pt;}
.wsc_c00230{word-spacing:126.397440pt;}
.ws13_c00230{word-spacing:127.221120pt;}
.ws2_c00230{word-spacing:128.494080pt;}
.wsb_c00230{word-spacing:129.430080pt;}
.ws15_c00230{word-spacing:136.506240pt;}
.ws19_c00230{word-spacing:140.025600pt;}
.wse_c00230{word-spacing:141.598080pt;}
.ws9_c00230{word-spacing:143.769600pt;}
.ws12_c00230{word-spacing:147.700800pt;}
.ws14_c00230{word-spacing:306.259200pt;}
.wsd_c00230{word-spacing:624.985920pt;}
.ws16_c00230{word-spacing:763.850880pt;}
.ws4_c00230{word-spacing:801.290880pt;}
.ws10_c00230{word-spacing:814.432320pt;}
._1_c00230{margin-left:-1.153152pt;}
._0_c00230{width:1.054080pt;}
._2_c00230{width:9.584640pt;}
._4_c00230{width:37.514880pt;}
._8_c00230{width:45.519552pt;}
._7_c00230{width:47.241792pt;}
._3_c00230{width:71.697600pt;}
._6_c00230{width:108.089280pt;}
._5_c00230{width:116.775360pt;}
.fs2_c00230{font-size:37.440000pt;}
.fs1_c00230{font-size:58.560000pt;}
.fs0_c00230{font-size:64.000000pt;}
.y0_c00230{bottom:0.000000pt;}
.y8_c00230{bottom:2.079467pt;}
.y26_c00230{bottom:2.080800pt;}
.y21_c00230{bottom:8.559467pt;}
.y4e_c00230{bottom:11.599467pt;}
.y16_c00230{bottom:12.799333pt;}
.y3b_c00230{bottom:12.799467pt;}
.y5c_c00230{bottom:15.679467pt;}
.y46_c00230{bottom:15.680800pt;}
.y49_c00230{bottom:16.959333pt;}
.y19_c00230{bottom:22.479333pt;}
.y52_c00230{bottom:22.959333pt;}
.y1d_c00230{bottom:22.960667pt;}
.y32_c00230{bottom:28.319333pt;}
.y54_c00230{bottom:31.519333pt;}
.y7_c00230{bottom:31.519467pt;}
.y24_c00230{bottom:31.520667pt;}
.y41_c00230{bottom:31.520800pt;}
.y13_c00230{bottom:37.919467pt;}
.y1_c00230{bottom:54.887600pt;}
.y50_c00230{bottom:100.199467pt;}
.y4f_c00230{bottom:120.759467pt;}
.y4d_c00230{bottom:133.320000pt;}
.y4c_c00230{bottom:140.198267pt;}
.y4b_c00230{bottom:170.197067pt;}
.y48_c00230{bottom:178.840000pt;}
.y4a_c00230{bottom:185.079467pt;}
.y86_c00230{bottom:187.577867pt;}
.y85_c00230{bottom:190.292267pt;}
.y84_c00230{bottom:202.610027pt;}
.y45_c00230{bottom:204.438667pt;}
.y5b_c00230{bottom:204.440000pt;}
.y47_c00230{bottom:214.119467pt;}
.y83_c00230{bottom:226.927307pt;}
.y44_c00230{bottom:232.604667pt;}
.y82_c00230{bottom:239.245067pt;}
.y81_c00230{bottom:241.959467pt;}
.y43_c00230{bottom:243.321867pt;}
.y40_c00230{bottom:254.358667pt;}
.y5a_c00230{bottom:254.360000pt;}
.y42_c00230{bottom:256.519467pt;}
.y80_c00230{bottom:274.366187pt;}
.y7f_c00230{bottom:283.239467pt;}
.y3f_c00230{bottom:299.721147pt;}
.y3e_c00230{bottom:310.438347pt;}
.y7e_c00230{bottom:312.438613pt;}
.y7d_c00230{bottom:331.158613pt;}
.y3d_c00230{bottom:337.395147pt;}
.y3a_c00230{bottom:358.360000pt;}
.y7c_c00230{bottom:358.602133pt;}
.y3c_c00230{bottom:360.439467pt;}
.y39_c00230{bottom:366.604347pt;}
.y7b_c00230{bottom:369.319333pt;}
.y38_c00230{bottom:391.005867pt;}
.y7a_c00230{bottom:396.042133pt;}
.y37_c00230{bottom:397.164747pt;}
.y79_c00230{bottom:406.759333pt;}
.y31_c00230{bottom:419.560000pt;}
.y34_c00230{bottom:423.241707pt;}
.y36_c00230{bottom:429.400587pt;}
.y78_c00230{bottom:433.478027pt;}
.y33_c00230{bottom:435.559467pt;}
.y35_c00230{bottom:440.117787pt;}
.y77_c00230{bottom:444.279467pt;}
.y57_c00230{bottom:463.713787pt;}
.y2e_c00230{bottom:463.723147pt;}
.y59_c00230{bottom:469.872667pt;}
.y30_c00230{bottom:469.882027pt;}
.y76_c00230{bottom:471.634373pt;}
.y56_c00230{bottom:476.115787pt;}
.y2d_c00230{bottom:476.125147pt;}
.y58_c00230{bottom:480.674107pt;}
.y2f_c00230{bottom:480.683467pt;}
.y55_c00230{bottom:488.433547pt;}
.y2c_c00230{bottom:488.442907pt;}
.y75_c00230{bottom:490.354373pt;}
.y2a_c00230{bottom:503.315947pt;}
.y74_c00230{bottom:517.797893pt;}
.y2b_c00230{bottom:518.834827pt;}
.y73_c00230{bottom:528.515093pt;}
.y29_c00230{bottom:532.678267pt;}
.y27_c00230{bottom:542.040000pt;}
.y28_c00230{bottom:549.479467pt;}
.y72_c00230{bottom:555.237893pt;}
.y23_c00230{bottom:563.478667pt;}
.y53_c00230{bottom:563.480000pt;}
.y71_c00230{bottom:565.955093pt;}
.y25_c00230{bottom:584.279467pt;}
.y70_c00230{bottom:592.677893pt;}
.y6f_c00230{bottom:598.041173pt;}
.y20_c00230{bottom:603.640000pt;}
.y22_c00230{bottom:609.799333pt;}
.y1c_c00230{bottom:620.838667pt;}
.y51_c00230{bottom:620.840000pt;}
.y1f_c00230{bottom:628.043787pt;}
.y6e_c00230{bottom:630.202133pt;}
.y1e_c00230{bottom:633.079467pt;}
.y6d_c00230{bottom:640.919333pt;}
.y18_c00230{bottom:652.440000pt;}
.y1b_c00230{bottom:659.397787pt;}
.y1a_c00230{bottom:664.199467pt;}
.y6c_c00230{bottom:667.642267pt;}
.y6b_c00230{bottom:678.359467pt;}
.y15_c00230{bottom:683.560000pt;}
.y17_c00230{bottom:691.799333pt;}
.y12_c00230{bottom:705.640000pt;}
.y6a_c00230{bottom:705.808107pt;}
.y14_c00230{bottom:714.199333pt;}
.y69_c00230{bottom:724.528107pt;}
.y68_c00230{bottom:751.887387pt;}
.y67_c00230{bottom:762.604587pt;}
.y11_c00230{bottom:767.731253pt;}
.y10_c00230{bottom:778.448453pt;}
.y66_c00230{bottom:789.402267pt;}
.y65_c00230{bottom:800.119467pt;}
.yf_c00230{bottom:810.609413pt;}
.ye_c00230{bottom:821.326613pt;}
.y64_c00230{bottom:826.842267pt;}
.y63_c00230{bottom:837.559467pt;}
.yd_c00230{bottom:852.607733pt;}
.yc_c00230{bottom:863.324933pt;}
.y62_c00230{bottom:864.282267pt;}
.y61_c00230{bottom:874.999467pt;}
.yb_c00230{bottom:900.044213pt;}
.y60_c00230{bottom:902.439467pt;}
.ya_c00230{bottom:910.761413pt;}
.y5f_c00230{bottom:921.159467pt;}
.y6_c00230{bottom:933.480000pt;}
.y5e_c00230{bottom:942.434827pt;}
.y9_c00230{bottom:950.279333pt;}
.y5d_c00230{bottom:960.354187pt;}
.y5_c00230{bottom:978.273547pt;}
.y4_c00230{bottom:996.192907pt;}
.y3_c00230{bottom:1014.039067pt;}
.y2_c00230{bottom:1061.399467pt;}
.hf_c00230{height:17.200000pt;}
.h18_c00230{height:20.238667pt;}
.h1c_c00230{height:20.240000pt;}
.ha_c00230{height:21.438667pt;}
.h1b_c00230{height:21.440000pt;}
.h15_c00230{height:24.320000pt;}
.h16_c00230{height:25.600000pt;}
.hb_c00230{height:31.121333pt;}
.h1a_c00230{height:31.600000pt;}
.hd_c00230{height:31.601333pt;}
.h11_c00230{height:36.960000pt;}
.h6_c00230{height:39.948480pt;}
.h5_c00230{height:40.158667pt;}
.h10_c00230{height:40.160000pt;}
.h4_c00230{height:40.574531pt;}
.h2_c00230{height:44.800000pt;}
.h8_c00230{height:46.560000pt;}
.h1f_c00230{height:47.324160pt;}
.h3_c00230{height:48.294844pt;}
.h17_c00230{height:53.052480pt;}
.h19_c00230{height:55.635840pt;}
.h12_c00230{height:58.181760pt;}
.h13_c00230{height:61.401600pt;}
.h1e_c00230{height:61.701120pt;}
.he_c00230{height:62.674560pt;}
.hc_c00230{height:70.012800pt;}
.h21_c00230{height:71.959680pt;}
.h1d_c00230{height:77.388480pt;}
.h20_c00230{height:78.361920pt;}
.h7_c00230{height:82.817280pt;}
.h9_c00230{height:88.920000pt;}
.h14_c00230{height:98.504640pt;}
.h0_c00230{height:1122.520000pt;}
.h1_c00230{height:1122.666667pt;}
.w3_c00230{width:-589.941333pt;}
.w4_c00230{width:-108.661333pt;}
.w2_c00230{width:0.000000pt;}
.w5_c00230{width:0.058667pt;}
.w0_c00230{width:793.701333pt;}
.w1_c00230{width:794.000000pt;}
.x1_c00230{left:-745.700800pt;}
.x2_c00230{left:-680.260800pt;}
.x16_c00230{left:-679.220800pt;}
.xd_c00230{left:-677.140933pt;}
.x10_c00230{left:-675.860800pt;}
.x11_c00230{left:-674.260800pt;}
.xf_c00230{left:-673.220800pt;}
.x8_c00230{left:-672.184240pt;}
.x5_c00230{left:-669.142240pt;}
.x14_c00230{left:-667.781120pt;}
.x12_c00230{left:-665.700800pt;}
.xc_c00230{left:-664.660800pt;}
.x9_c00230{left:-663.619840pt;}
.xa_c00230{left:-661.055200pt;}
.x17_c00230{left:-657.135360pt;}
.xe_c00230{left:-655.860800pt;}
.x6_c00230{left:-654.821440pt;}
.x15_c00230{left:-651.223280pt;}
.x3_c00230{left:-635.140933pt;}
.xb_c00230{left:-625.220800pt;}
.x7_c00230{left:-585.304720pt;}
.x4_c00230{left:-499.220800pt;}
.x13_c00230{left:-430.261760pt;}
.x0_c00230{left:0.000000pt;}
.x1a_c00230{left:113.439760pt;}
.x23_c00230{left:115.920000pt;}
.x22_c00230{left:121.120000pt;}
.x1f_c00230{left:124.720000pt;}
.x1c_c00230{left:127.840000pt;}
.x24_c00230{left:131.195520pt;}
.x20_c00230{left:133.275040pt;}
.x21_c00230{left:135.914560pt;}
.x28_c00230{left:137.200000pt;}
.x26_c00230{left:138.486960pt;}
.x27_c00230{left:140.800000pt;}
.x1d_c00230{left:142.160800pt;}
.x25_c00230{left:143.672400pt;}
.x1b_c00230{left:174.962533pt;}
.x1e_c00230{left:214.953520pt;}
.x29_c00230{left:217.439120pt;}
.x19_c00230{left:619.120000pt;}
.x18_c00230{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00231;src:url('chunks/assets/font_9a020b71647483d013778da2.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_9b23600642e33d9f1cca4051.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-21.607560px;}
.v5_c00231{vertical-align:-15.837120px;}
.v0_c00231{vertical-align:0.000000px;}
.v4_c00231{vertical-align:2.148120px;}
.v6_c00231{vertical-align:7.918560px;}
.v7_c00231{vertical-align:24.134760px;}
.v1_c00231{vertical-align:42.120000px;}
.v8_c00231{vertical-align:45.363240px;}
.v3_c00231{vertical-align:48.227400px;}
.ls4_c00231{letter-spacing:-0.379080px;}
.ls5_c00231{letter-spacing:-0.336960px;}
.ls6_c00231{letter-spacing:-0.168480px;}
.ls2_c00231{letter-spacing:-0.042120px;}
.ls0_c00231{letter-spacing:0.000000px;}
.ls1_c00231{letter-spacing:0.131760px;}
.ls3_c00231{letter-spacing:0.168480px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00231{word-spacing:-11.709360px;}
.ws0_c00231{word-spacing:-11.667240px;}
.ws19_c00231{word-spacing:-0.263520px;}
.ws1e_c00231{word-spacing:-0.210600px;}
.ws18_c00231{word-spacing:-0.131760px;}
.ws17_c00231{word-spacing:0.000000px;}
.ws1a_c00231{word-spacing:0.168480px;}
.ws20_c00231{word-spacing:0.210600px;}
.ws26_c00231{word-spacing:0.336960px;}
.ws22_c00231{word-spacing:0.379080px;}
.ws28_c00231{word-spacing:1.600560px;}
.ws1b_c00231{word-spacing:1.979640px;}
.ws2b_c00231{word-spacing:2.316600px;}
.ws1f_c00231{word-spacing:2.695680px;}
.ws21_c00231{word-spacing:3.411720px;}
.ws24_c00231{word-spacing:4.127760px;}
.ws25_c00231{word-spacing:4.506840px;}
.wse_c00231{word-spacing:4.599504px;}
.ws2a_c00231{word-spacing:5.938920px;}
.ws29_c00231{word-spacing:6.275880px;}
.ws14_c00231{word-spacing:6.444360px;}
.ws7_c00231{word-spacing:6.612840px;}
.ws1d_c00231{word-spacing:6.991920px;}
.ws27_c00231{word-spacing:10.614240px;}
.wsc_c00231{word-spacing:12.425400px;}
.ws23_c00231{word-spacing:12.762360px;}
.ws1c_c00231{word-spacing:13.478400px;}
.ws11_c00231{word-spacing:71.435520px;}
.ws2_c00231{word-spacing:98.097480px;}
.ws15_c00231{word-spacing:106.437240px;}
.ws16_c00231{word-spacing:112.418280px;}
.ws12_c00231{word-spacing:113.555520px;}
.ws4_c00231{word-spacing:119.368080px;}
.wsb_c00231{word-spacing:128.887200px;}
.ws8_c00231{word-spacing:129.813840px;}
.wsd_c00231{word-spacing:133.646760px;}
.ws9_c00231{word-spacing:149.947200px;}
.wsf_c00231{word-spacing:154.959480px;}
.ws6_c00231{word-spacing:161.024760px;}
.ws5_c00231{word-spacing:320.785920px;}
.wsa_c00231{word-spacing:697.675680px;}
.ws13_c00231{word-spacing:757.443960px;}
.ws10_c00231{word-spacing:864.723600px;}
.ws1_c00231{word-spacing:892.480680px;}
._1_c00231{margin-left:-1.185840px;}
._0_c00231{width:1.317600px;}
._3_c00231{width:13.225680px;}
._4_c00231{width:56.531520px;}
._2_c00231{width:98.139600px;}
._5_c00231{width:101.593440px;}
.fc1_c00231{color:rgb(0,0,0);}
.fc0_c00231{color:rgb(35,31,32);}
.fs2_c00231{font-size:42.120000px;}
.fs1_c00231{font-size:65.880000px;}
.fs0_c00231{font-size:72.000000px;}
.y0_c00231{bottom:0.000000px;}
.y27_c00231{bottom:23.399400px;}
.y1b_c00231{bottom:23.402400px;}
.yb_c00231{bottom:23.492250px;}
.y1_c00231{bottom:61.748550px;}
.y33_c00231{bottom:120.642000px;}
.y34_c00231{bottom:131.984400px;}
.y32_c00231{bottom:138.014400px;}
.y31_c00231{bottom:174.111240px;}
.y30_c00231{bottom:180.134400px;}
.y2f_c00231{bottom:216.220710px;}
.y2e_c00231{bottom:222.254400px;}
.y2d_c00231{bottom:259.147830px;}
.y2c_c00231{bottom:280.207830px;}
.y2b_c00231{bottom:311.808360px;}
.y2a_c00231{bottom:312.524400px;}
.y29_c00231{bottom:324.581250px;}
.y26_c00231{bottom:343.305000px;}
.y28_c00231{bottom:354.644400px;}
.y25_c00231{bottom:366.704400px;}
.y24_c00231{bottom:396.767550px;}
.y23_c00231{bottom:408.824400px;}
.y22_c00231{bottom:439.700820px;}
.y21_c00231{bottom:460.760820px;}
.y20_c00231{bottom:491.540010px;}
.y1f_c00231{bottom:497.657940px;}
.y1e_c00231{bottom:533.754780px;}
.y1d_c00231{bottom:539.777940px;}
.y1a_c00231{bottom:564.522000px;}
.y1c_c00231{bottom:575.864250px;}
.y19_c00231{bottom:585.944250px;}
.y18_c00231{bottom:625.904400px;}
.y17_c00231{bottom:656.683440px;}
.y16_c00231{bottom:677.743440px;}
.y15_c00231{bottom:708.522630px;}
.y14_c00231{bottom:720.579480px;}
.y13_c00231{bottom:750.737400px;}
.y12_c00231{bottom:762.794250px;}
.y11_c00231{bottom:792.857550px;}
.y10_c00231{bottom:804.914400px;}
.yf_c00231{bottom:835.778280px;}
.ye_c00231{bottom:856.838280px;}
.yd_c00231{bottom:898.421250px;}
.ya_c00231{bottom:917.142000px;}
.yc_c00231{bottom:928.484400px;}
.y9_c00231{bottom:940.634250px;}
.y8_c00231{bottom:970.697550px;}
.y7_c00231{bottom:982.754400px;}
.y6_c00231{bottom:1013.534400px;}
.y5_c00231{bottom:1034.594400px;}
.y4_c00231{bottom:1089.671070px;}
.y3_c00231{bottom:1109.748000px;}
.y2_c00231{bottom:1194.074400px;}
.ha_c00231{height:42.120000px;}
.h6_c00231{height:42.210000px;}
.h4_c00231{height:44.942040px;}
.h8_c00231{height:47.090160px;}
.h2_c00231{height:50.400000px;}
.h9_c00231{height:52.860600px;}
.h3_c00231{height:54.331699px;}
.hb_c00231{height:69.076800px;}
.hd_c00231{height:69.413760px;}
.h5_c00231{height:87.062040px;}
.hc_c00231{height:90.305280px;}
.h7_c00231{height:93.169440px;}
.h0_c00231{height:1262.835000px;}
.h1_c00231{height:1263.000000px;}
.w2_c00231{width:545.851500px;}
.w0_c00231{width:892.914000px;}
.w1_c00231{width:893.250000px;}
.x0_c00231{left:0.000000px;}
.x8_c00231{left:5.220000px;}
.x1_c00231{left:54.000000px;}
.x2_c00231{left:127.620000px;}
.x13_c00231{left:131.310000px;}
.x12_c00231{left:137.974680px;}
.xa_c00231{left:139.140000px;}
.xd_c00231{left:141.482970px;}
.x11_c00231{left:142.650000px;}
.x4_c00231{left:144.720000px;}
.x16_c00231{left:146.700000px;}
.x15_c00231{left:148.495680px;}
.x9_c00231{left:149.938290px;}
.xc_c00231{left:152.550000px;}
.x6_c00231{left:155.790000px;}
.xe_c00231{left:157.499100px;}
.x10_c00231{left:158.667660px;}
.xb_c00231{left:160.473780px;}
.x3_c00231{left:185.132700px;}
.x7_c00231{left:224.820000px;}
.x5_c00231{left:230.034060px;}
.xf_c00231{left:234.270000px;}
.x17_c00231{left:397.080000px;}
.x14_c00231{left:406.620000px;}
@media print{
.v2_c00231{vertical-align:-19.206720pt;}
.v5_c00231{vertical-align:-14.077440pt;}
.v0_c00231{vertical-align:0.000000pt;}
.v4_c00231{vertical-align:1.909440pt;}
.v6_c00231{vertical-align:7.038720pt;}
.v7_c00231{vertical-align:21.453120pt;}
.v1_c00231{vertical-align:37.440000pt;}
.v8_c00231{vertical-align:40.322880pt;}
.v3_c00231{vertical-align:42.868800pt;}
.ls4_c00231{letter-spacing:-0.336960pt;}
.ls5_c00231{letter-spacing:-0.299520pt;}
.ls6_c00231{letter-spacing:-0.149760pt;}
.ls2_c00231{letter-spacing:-0.037440pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ls1_c00231{letter-spacing:0.117120pt;}
.ls3_c00231{letter-spacing:0.149760pt;}
.ws3_c00231{word-spacing:-10.408320pt;}
.ws0_c00231{word-spacing:-10.370880pt;}
.ws19_c00231{word-spacing:-0.234240pt;}
.ws1e_c00231{word-spacing:-0.187200pt;}
.ws18_c00231{word-spacing:-0.117120pt;}
.ws17_c00231{word-spacing:0.000000pt;}
.ws1a_c00231{word-spacing:0.149760pt;}
.ws20_c00231{word-spacing:0.187200pt;}
.ws26_c00231{word-spacing:0.299520pt;}
.ws22_c00231{word-spacing:0.336960pt;}
.ws28_c00231{word-spacing:1.422720pt;}
.ws1b_c00231{word-spacing:1.759680pt;}
.ws2b_c00231{word-spacing:2.059200pt;}
.ws1f_c00231{word-spacing:2.396160pt;}
.ws21_c00231{word-spacing:3.032640pt;}
.ws24_c00231{word-spacing:3.669120pt;}
.ws25_c00231{word-spacing:4.006080pt;}
.wse_c00231{word-spacing:4.088448pt;}
.ws2a_c00231{word-spacing:5.279040pt;}
.ws29_c00231{word-spacing:5.578560pt;}
.ws14_c00231{word-spacing:5.728320pt;}
.ws7_c00231{word-spacing:5.878080pt;}
.ws1d_c00231{word-spacing:6.215040pt;}
.ws27_c00231{word-spacing:9.434880pt;}
.wsc_c00231{word-spacing:11.044800pt;}
.ws23_c00231{word-spacing:11.344320pt;}
.ws1c_c00231{word-spacing:11.980800pt;}
.ws11_c00231{word-spacing:63.498240pt;}
.ws2_c00231{word-spacing:87.197760pt;}
.ws15_c00231{word-spacing:94.610880pt;}
.ws16_c00231{word-spacing:99.927360pt;}
.ws12_c00231{word-spacing:100.938240pt;}
.ws4_c00231{word-spacing:106.104960pt;}
.wsb_c00231{word-spacing:114.566400pt;}
.ws8_c00231{word-spacing:115.390080pt;}
.wsd_c00231{word-spacing:118.797120pt;}
.ws9_c00231{word-spacing:133.286400pt;}
.wsf_c00231{word-spacing:137.741760pt;}
.ws6_c00231{word-spacing:143.133120pt;}
.ws5_c00231{word-spacing:285.143040pt;}
.wsa_c00231{word-spacing:620.156160pt;}
.ws13_c00231{word-spacing:673.283520pt;}
.ws10_c00231{word-spacing:768.643200pt;}
.ws1_c00231{word-spacing:793.316160pt;}
._1_c00231{margin-left:-1.054080pt;}
._0_c00231{width:1.171200pt;}
._3_c00231{width:11.756160pt;}
._4_c00231{width:50.250240pt;}
._2_c00231{width:87.235200pt;}
._5_c00231{width:90.305280pt;}
.fs2_c00231{font-size:37.440000pt;}
.fs1_c00231{font-size:58.560000pt;}
.fs0_c00231{font-size:64.000000pt;}
.y0_c00231{bottom:0.000000pt;}
.y27_c00231{bottom:20.799467pt;}
.y1b_c00231{bottom:20.802133pt;}
.yb_c00231{bottom:20.882000pt;}
.y1_c00231{bottom:54.887600pt;}
.y33_c00231{bottom:107.237333pt;}
.y34_c00231{bottom:117.319467pt;}
.y32_c00231{bottom:122.679467pt;}
.y31_c00231{bottom:154.765547pt;}
.y30_c00231{bottom:160.119467pt;}
.y2f_c00231{bottom:192.196187pt;}
.y2e_c00231{bottom:197.559467pt;}
.y2d_c00231{bottom:230.353627pt;}
.y2c_c00231{bottom:249.073627pt;}
.y2b_c00231{bottom:277.162987pt;}
.y2a_c00231{bottom:277.799467pt;}
.y29_c00231{bottom:288.516667pt;}
.y26_c00231{bottom:305.160000pt;}
.y28_c00231{bottom:315.239467pt;}
.y25_c00231{bottom:325.959467pt;}
.y24_c00231{bottom:352.682267pt;}
.y23_c00231{bottom:363.399467pt;}
.y22_c00231{bottom:390.845173pt;}
.y21_c00231{bottom:409.565173pt;}
.y20_c00231{bottom:436.924453pt;}
.y1f_c00231{bottom:442.362613pt;}
.y1e_c00231{bottom:474.448693pt;}
.y1d_c00231{bottom:479.802613pt;}
.y1a_c00231{bottom:501.797333pt;}
.y1c_c00231{bottom:511.879333pt;}
.y19_c00231{bottom:520.839333pt;}
.y18_c00231{bottom:556.359467pt;}
.y17_c00231{bottom:583.718613pt;}
.y16_c00231{bottom:602.438613pt;}
.y15_c00231{bottom:629.797893pt;}
.y14_c00231{bottom:640.515093pt;}
.y13_c00231{bottom:667.322133pt;}
.y12_c00231{bottom:678.039333pt;}
.y11_c00231{bottom:704.762267pt;}
.y10_c00231{bottom:715.479467pt;}
.yf_c00231{bottom:742.914027pt;}
.ye_c00231{bottom:761.634027pt;}
.yd_c00231{bottom:798.596667pt;}
.ya_c00231{bottom:815.237333pt;}
.yc_c00231{bottom:825.319467pt;}
.y9_c00231{bottom:836.119333pt;}
.y8_c00231{bottom:862.842267pt;}
.y7_c00231{bottom:873.559467pt;}
.y6_c00231{bottom:900.919467pt;}
.y5_c00231{bottom:919.639467pt;}
.y4_c00231{bottom:968.596507pt;}
.y3_c00231{bottom:986.442667pt;}
.y2_c00231{bottom:1061.399467pt;}
.ha_c00231{height:37.440000pt;}
.h6_c00231{height:37.520000pt;}
.h4_c00231{height:39.948480pt;}
.h8_c00231{height:41.857920pt;}
.h2_c00231{height:44.800000pt;}
.h9_c00231{height:46.987200pt;}
.h3_c00231{height:48.294844pt;}
.hb_c00231{height:61.401600pt;}
.hd_c00231{height:61.701120pt;}
.h5_c00231{height:77.388480pt;}
.hc_c00231{height:80.271360pt;}
.h7_c00231{height:82.817280pt;}
.h0_c00231{height:1122.520000pt;}
.h1_c00231{height:1122.666667pt;}
.w2_c00231{width:485.201333pt;}
.w0_c00231{width:793.701333pt;}
.w1_c00231{width:794.000000pt;}
.x0_c00231{left:0.000000pt;}
.x8_c00231{left:4.640000pt;}
.x1_c00231{left:48.000000pt;}
.x2_c00231{left:113.440000pt;}
.x13_c00231{left:116.720000pt;}
.x12_c00231{left:122.644160pt;}
.xa_c00231{left:123.680000pt;}
.xd_c00231{left:125.762640pt;}
.x11_c00231{left:126.800000pt;}
.x4_c00231{left:128.640000pt;}
.x16_c00231{left:130.400000pt;}
.x15_c00231{left:131.996160pt;}
.x9_c00231{left:133.278480pt;}
.xc_c00231{left:135.600000pt;}
.x6_c00231{left:138.480000pt;}
.xe_c00231{left:139.999200pt;}
.x10_c00231{left:141.037920pt;}
.xb_c00231{left:142.643360pt;}
.x3_c00231{left:164.562400pt;}
.x7_c00231{left:199.840000pt;}
.x5_c00231{left:204.474720pt;}
.xf_c00231{left:208.240000pt;}
.x17_c00231{left:352.960000pt;}
.x14_c00231{left:361.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00232;src:url('chunks/assets/font_a8fe7649827bcf5e6345d8b6.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00232;src:url('chunks/assets/font_0776ca45361bd2dcaa4a18f5.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00232;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00232;src:url('chunks/assets/font_d7ceedac0146561ccc962abd.woff2')format("woff");}.ff5_c00232{font-family:ff5_c00232;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00232;src:url('chunks/assets/font_8750912ac11c9beb77d74e4b.woff2')format("woff");}.ff6_c00232{font-family:ff6_c00232;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00232;src:url('chunks/assets/font_caf542032b08291ded0f4c25.woff2')format("woff");}.ff7_c00232{font-family:ff7_c00232;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00232;src:url('chunks/assets/font_19e62cb6018bc939e096445d.woff2')format("woff");}.ff8_c00232{font-family:ff8_c00232;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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:-21.607560px;}
.v5_c00232{vertical-align:-15.837120px;}
.v0_c00232{vertical-align:0.000000px;}
.v4_c00232{vertical-align:2.148120px;}
.v6_c00232{vertical-align:7.918560px;}
.v7_c00232{vertical-align:24.134760px;}
.v9_c00232{vertical-align:32.390280px;}
.va_c00232{vertical-align:35.970480px;}
.v1_c00232{vertical-align:42.120000px;}
.v8_c00232{vertical-align:45.363240px;}
.v3_c00232{vertical-align:48.227400px;}
.lsa_c00232{letter-spacing:-0.547560px;}
.ls7_c00232{letter-spacing:-0.379080px;}
.ls8_c00232{letter-spacing:-0.336960px;}
.ls9_c00232{letter-spacing:-0.168480px;}
.ls5_c00232{letter-spacing:-0.042120px;}
.ls3_c00232{letter-spacing:0.000000px;}
.ls4_c00232{letter-spacing:0.131760px;}
.ls6_c00232{letter-spacing:0.168480px;}
.ls2_c00232{letter-spacing:11.690640px;}
.ls1_c00232{letter-spacing:11.709360px;}
.ls0_c00232{letter-spacing:12.050640px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00232{word-spacing:-11.709360px;}
.ws0_c00232{word-spacing:-11.667240px;}
.ws21_c00232{word-spacing:-0.263520px;}
.ws26_c00232{word-spacing:-0.210600px;}
.ws36_c00232{word-spacing:-0.168480px;}
.ws20_c00232{word-spacing:-0.131760px;}
.ws37_c00232{word-spacing:-0.126360px;}
.ws39_c00232{word-spacing:-0.042120px;}
.ws1f_c00232{word-spacing:0.000000px;}
.ws22_c00232{word-spacing:0.168480px;}
.ws28_c00232{word-spacing:0.210600px;}
.ws2e_c00232{word-spacing:0.336960px;}
.ws2a_c00232{word-spacing:0.379080px;}
.ws34_c00232{word-spacing:0.547560px;}
.ws3d_c00232{word-spacing:1.263600px;}
.ws30_c00232{word-spacing:1.600560px;}
.ws23_c00232{word-spacing:1.979640px;}
.ws33_c00232{word-spacing:2.316600px;}
.ws27_c00232{word-spacing:2.695680px;}
.ws29_c00232{word-spacing:3.411720px;}
.ws2c_c00232{word-spacing:4.127760px;}
.ws2d_c00232{word-spacing:4.506840px;}
.wse_c00232{word-spacing:4.599504px;}
.ws32_c00232{word-spacing:5.938920px;}
.ws31_c00232{word-spacing:6.275880px;}
.ws14_c00232{word-spacing:6.444360px;}
.ws7_c00232{word-spacing:6.612840px;}
.ws35_c00232{word-spacing:6.654960px;}
.ws25_c00232{word-spacing:6.991920px;}
.ws3c_c00232{word-spacing:8.087040px;}
.ws38_c00232{word-spacing:9.898200px;}
.ws2f_c00232{word-spacing:10.614240px;}
.wsc_c00232{word-spacing:12.425400px;}
.ws2b_c00232{word-spacing:12.762360px;}
.ws24_c00232{word-spacing:13.478400px;}
.ws3a_c00232{word-spacing:16.005600px;}
.ws3b_c00232{word-spacing:16.384680px;}
.ws11_c00232{word-spacing:71.435520px;}
.ws1c_c00232{word-spacing:94.475160px;}
.ws2_c00232{word-spacing:98.097480px;}
.ws15_c00232{word-spacing:106.437240px;}
.ws16_c00232{word-spacing:112.418280px;}
.ws12_c00232{word-spacing:113.555520px;}
.ws4_c00232{word-spacing:119.368080px;}
.ws1a_c00232{word-spacing:120.378960px;}
.wsb_c00232{word-spacing:128.887200px;}
.ws8_c00232{word-spacing:129.813840px;}
.wsd_c00232{word-spacing:133.646760px;}
.ws1d_c00232{word-spacing:133.731000px;}
.ws1e_c00232{word-spacing:133.773120px;}
.ws18_c00232{word-spacing:149.610240px;}
.ws9_c00232{word-spacing:149.947200px;}
.wsf_c00232{word-spacing:154.959480px;}
.ws6_c00232{word-spacing:161.024760px;}
.ws5_c00232{word-spacing:320.785920px;}
.wsa_c00232{word-spacing:697.675680px;}
.ws13_c00232{word-spacing:757.443960px;}
.ws17_c00232{word-spacing:827.321040px;}
.ws1b_c00232{word-spacing:835.576560px;}
.ws10_c00232{word-spacing:864.723600px;}
.ws1_c00232{word-spacing:892.480680px;}
.ws19_c00232{word-spacing:1107.376920px;}
._1_c00232{margin-left:-1.185840px;}
._0_c00232{width:1.317600px;}
._7_c00232{width:6.156000px;}
._3_c00232{width:13.225680px;}
._8_c00232{width:52.018200px;}
._4_c00232{width:56.531520px;}
._6_c00232{width:68.655600px;}
._2_c00232{width:98.139600px;}
._5_c00232{width:101.593440px;}
.fc2_c00232{color:transparent;}
.fc1_c00232{color:rgb(0,0,0);}
.fc0_c00232{color:rgb(35,31,32);}
.fs2_c00232{font-size:42.120000px;}
.fs1_c00232{font-size:65.880000px;}
.fs0_c00232{font-size:72.000000px;}
.y0_c00232{bottom:0.000000px;}
.y27_c00232{bottom:23.399400px;}
.y1b_c00232{bottom:23.400900px;}
.y66_c00232{bottom:23.402400px;}
.y36_c00232{bottom:23.489250px;}
.yb_c00232{bottom:23.490750px;}
.y72_c00232{bottom:28.259400px;}
.y60_c00232{bottom:33.029250px;}
.y56_c00232{bottom:33.119400px;}
.y6c_c00232{bottom:35.459250px;}
.y5b_c00232{bottom:46.889400px;}
.y50_c00232{bottom:46.890900px;}
.y1_c00232{bottom:61.748550px;}
.y33_c00232{bottom:120.643500px;}
.y42_c00232{bottom:120.645000px;}
.y34_c00232{bottom:131.984400px;}
.y32_c00232{bottom:138.010710px;}
.y31_c00232{bottom:174.107550px;}
.y30_c00232{bottom:180.130710px;}
.y2f_c00232{bottom:216.217020px;}
.y2e_c00232{bottom:222.250710px;}
.y2d_c00232{bottom:259.147830px;}
.y2c_c00232{bottom:280.207830px;}
.y2b_c00232{bottom:311.808360px;}
.y2a_c00232{bottom:312.524400px;}
.y29_c00232{bottom:324.581250px;}
.y76_c00232{bottom:326.029830px;}
.y75_c00232{bottom:329.083530px;}
.y74_c00232{bottom:342.856770px;}
.y26_c00232{bottom:343.305000px;}
.y28_c00232{bottom:354.644400px;}
.y71_c00232{bottom:361.575000px;}
.y25_c00232{bottom:366.706860px;}
.y73_c00232{bottom:377.774250px;}
.y70_c00232{bottom:380.836770px;}
.y6f_c00232{bottom:394.694250px;}
.y24_c00232{bottom:396.770010px;}
.y23_c00232{bottom:408.826860px;}
.y6b_c00232{bottom:413.415000px;}
.y6e_c00232{bottom:424.757550px;}
.y6d_c00232{bottom:436.814400px;}
.y22_c00232{bottom:439.700820px;}
.y6a_c00232{bottom:440.774250px;}
.y21_c00232{bottom:460.760820px;}
.y69_c00232{bottom:479.745210px;}
.y20_c00232{bottom:491.540010px;}
.y1f_c00232{bottom:497.657940px;}
.y68_c00232{bottom:500.805210px;}
.y65_c00232{bottom:520.242000px;}
.y67_c00232{bottom:531.584400px;}
.y1e_c00232{bottom:533.754780px;}
.y64_c00232{bottom:537.614760px;}
.y1d_c00232{bottom:539.777940px;}
.y1a_c00232{bottom:564.523500px;}
.y41_c00232{bottom:564.525000px;}
.y63_c00232{bottom:573.701070px;}
.y1c_c00232{bottom:575.864250px;}
.y62_c00232{bottom:585.852690px;}
.y40_c00232{bottom:585.932970px;}
.y19_c00232{bottom:585.943500px;}
.y5f_c00232{bottom:604.575000px;}
.y5e_c00232{bottom:622.218120px;}
.y61_c00232{bottom:623.834400px;}
.y3f_c00232{bottom:625.894320px;}
.y18_c00232{bottom:625.904850px;}
.y5a_c00232{bottom:647.325000px;}
.y3e_c00232{bottom:656.673510px;}
.y17_c00232{bottom:656.684040px;}
.y59_c00232{bottom:665.953170px;}
.y5d_c00232{bottom:666.581010px;}
.y3d_c00232{bottom:677.733510px;}
.y16_c00232{bottom:677.744040px;}
.y58_c00232{bottom:678.010020px;}
.y5c_c00232{bottom:680.354250px;}
.y55_c00232{bottom:703.935000px;}
.y3c_c00232{bottom:708.512700px;}
.y15_c00232{bottom:708.523230px;}
.y54_c00232{bottom:715.637400px;}
.y3b_c00232{bottom:720.569550px;}
.y14_c00232{bottom:720.580080px;}
.y57_c00232{bottom:723.194250px;}
.y53_c00232{bottom:727.694250px;}
.y4f_c00232{bottom:746.773500px;}
.y3a_c00232{bottom:750.727470px;}
.y13_c00232{bottom:750.738000px;}
.y39_c00232{bottom:762.784320px;}
.y12_c00232{bottom:762.794850px;}
.y52_c00232{bottom:766.031160px;}
.y4e_c00232{bottom:771.344400px;}
.y51_c00232{bottom:779.804400px;}
.y38_c00232{bottom:792.847470px;}
.y11_c00232{bottom:792.858000px;}
.y37_c00232{bottom:804.904320px;}
.y10_c00232{bottom:804.914850px;}
.y4d_c00232{bottom:815.530290px;}
.yf_c00232{bottom:835.778280px;}
.y4c_c00232{bottom:836.590290px;}
.ye_c00232{bottom:856.838280px;}
.y4b_c00232{bottom:867.369480px;}
.y4a_c00232{bottom:897.432630px;}
.yd_c00232{bottom:898.421250px;}
.y49_c00232{bottom:909.584250px;}
.ya_c00232{bottom:917.143500px;}
.y35_c00232{bottom:917.145000px;}
.yc_c00232{bottom:928.484400px;}
.y48_c00232{bottom:939.647400px;}
.y9_c00232{bottom:940.635210px;}
.y47_c00232{bottom:951.704250px;}
.y8_c00232{bottom:970.698360px;}
.y46_c00232{bottom:982.484250px;}
.y7_c00232{bottom:982.755210px;}
.y45_c00232{bottom:1003.544250px;}
.y6_c00232{bottom:1013.534400px;}
.y5_c00232{bottom:1034.594400px;}
.y44_c00232{bottom:1058.625120px;}
.y43_c00232{bottom:1078.702050px;}
.y4_c00232{bottom:1089.671070px;}
.y3_c00232{bottom:1109.748000px;}
.y2_c00232{bottom:1194.074400px;}
.ha_c00232{height:42.120000px;}
.h6_c00232{height:42.210000px;}
.h10_c00232{height:42.748500px;}
.hf_c00232{height:42.840000px;}
.h4_c00232{height:44.942040px;}
.h8_c00232{height:47.090160px;}
.h2_c00232{height:50.400000px;}
.h15_c00232{height:51.840000px;}
.h9_c00232{height:52.860600px;}
.h13_c00232{height:54.180000px;}
.h3_c00232{height:54.331699px;}
.he_c00232{height:56.611500px;}
.hb_c00232{height:69.076800px;}
.hd_c00232{height:69.413760px;}
.h12_c00232{height:77.332320px;}
.h14_c00232{height:80.912520px;}
.h16_c00232{height:80.954640px;}
.h5_c00232{height:87.062040px;}
.hc_c00232{height:90.305280px;}
.h7_c00232{height:93.169440px;}
.h11_c00232{height:93.548520px;}
.h0_c00232{height:1262.835000px;}
.h1_c00232{height:1263.000000px;}
.w3_c00232{width:-122.242500px;}
.w2_c00232{width:0.000000px;}
.w4_c00232{width:0.066000px;}
.w5_c00232{width:545.851500px;}
.w0_c00232{width:892.914000px;}
.w1_c00232{width:893.250000px;}
.x1_c00232{left:-838.913400px;}
.x2_c00232{left:-765.293400px;}
.x11_c00232{left:-761.602680px;}
.x10_c00232{left:-754.937190px;}
.x8_c00232{left:-753.768360px;}
.xb_c00232{left:-751.420170px;}
.xf_c00232{left:-750.261870px;}
.x4_c00232{left:-748.194840px;}
.x14_c00232{left:-746.218350px;}
.x13_c00232{left:-744.417720px;}
.x7_c00232{left:-742.975110px;}
.xa_c00232{left:-740.353140px;}
.x6_c00232{left:-737.127810px;}
.xc_c00232{left:-735.404040px;}
.xe_c00232{left:-734.245740px;}
.x9_c00232{left:-732.434580px;}
.x3_c00232{left:-707.780700px;}
.x5_c00232{left:-662.880780px;}
.xd_c00232{left:-433.823400px;}
.x15_c00232{left:-271.013400px;}
.x12_c00232{left:-261.473400px;}
.x0_c00232{left:0.000000px;}
.x1f_c00232{left:5.220000px;}
.x18_c00232{left:127.619730px;}
.x1d_c00232{left:130.405950px;}
.x1c_c00232{left:134.460000px;}
.x29_c00232{left:137.340000px;}
.x27_c00232{left:138.510000px;}
.x26_c00232{left:141.840000px;}
.x25_c00232{left:143.820000px;}
.x21_c00232{left:146.433510px;}
.x24_c00232{left:147.600630px;}
.x20_c00232{left:149.940000px;}
.x23_c00232{left:152.012700px;}
.x28_c00232{left:153.452070px;}
.x22_c00232{left:155.792970px;}
.x1a_c00232{left:157.504320px;}
.x19_c00232{left:185.130000px;}
.x1e_c00232{left:224.820000px;}
.x1b_c00232{left:230.045490px;}
.x17_c00232{left:696.510000px;}
.x16_c00232{left:804.366150px;}
@media print{
.v2_c00232{vertical-align:-19.206720pt;}
.v5_c00232{vertical-align:-14.077440pt;}
.v0_c00232{vertical-align:0.000000pt;}
.v4_c00232{vertical-align:1.909440pt;}
.v6_c00232{vertical-align:7.038720pt;}
.v7_c00232{vertical-align:21.453120pt;}
.v9_c00232{vertical-align:28.791360pt;}
.va_c00232{vertical-align:31.973760pt;}
.v1_c00232{vertical-align:37.440000pt;}
.v8_c00232{vertical-align:40.322880pt;}
.v3_c00232{vertical-align:42.868800pt;}
.lsa_c00232{letter-spacing:-0.486720pt;}
.ls7_c00232{letter-spacing:-0.336960pt;}
.ls8_c00232{letter-spacing:-0.299520pt;}
.ls9_c00232{letter-spacing:-0.149760pt;}
.ls5_c00232{letter-spacing:-0.037440pt;}
.ls3_c00232{letter-spacing:0.000000pt;}
.ls4_c00232{letter-spacing:0.117120pt;}
.ls6_c00232{letter-spacing:0.149760pt;}
.ls2_c00232{letter-spacing:10.391680pt;}
.ls1_c00232{letter-spacing:10.408320pt;}
.ls0_c00232{letter-spacing:10.711680pt;}
.ws3_c00232{word-spacing:-10.408320pt;}
.ws0_c00232{word-spacing:-10.370880pt;}
.ws21_c00232{word-spacing:-0.234240pt;}
.ws26_c00232{word-spacing:-0.187200pt;}
.ws36_c00232{word-spacing:-0.149760pt;}
.ws20_c00232{word-spacing:-0.117120pt;}
.ws37_c00232{word-spacing:-0.112320pt;}
.ws39_c00232{word-spacing:-0.037440pt;}
.ws1f_c00232{word-spacing:0.000000pt;}
.ws22_c00232{word-spacing:0.149760pt;}
.ws28_c00232{word-spacing:0.187200pt;}
.ws2e_c00232{word-spacing:0.299520pt;}
.ws2a_c00232{word-spacing:0.336960pt;}
.ws34_c00232{word-spacing:0.486720pt;}
.ws3d_c00232{word-spacing:1.123200pt;}
.ws30_c00232{word-spacing:1.422720pt;}
.ws23_c00232{word-spacing:1.759680pt;}
.ws33_c00232{word-spacing:2.059200pt;}
.ws27_c00232{word-spacing:2.396160pt;}
.ws29_c00232{word-spacing:3.032640pt;}
.ws2c_c00232{word-spacing:3.669120pt;}
.ws2d_c00232{word-spacing:4.006080pt;}
.wse_c00232{word-spacing:4.088448pt;}
.ws32_c00232{word-spacing:5.279040pt;}
.ws31_c00232{word-spacing:5.578560pt;}
.ws14_c00232{word-spacing:5.728320pt;}
.ws7_c00232{word-spacing:5.878080pt;}
.ws35_c00232{word-spacing:5.915520pt;}
.ws25_c00232{word-spacing:6.215040pt;}
.ws3c_c00232{word-spacing:7.188480pt;}
.ws38_c00232{word-spacing:8.798400pt;}
.ws2f_c00232{word-spacing:9.434880pt;}
.wsc_c00232{word-spacing:11.044800pt;}
.ws2b_c00232{word-spacing:11.344320pt;}
.ws24_c00232{word-spacing:11.980800pt;}
.ws3a_c00232{word-spacing:14.227200pt;}
.ws3b_c00232{word-spacing:14.564160pt;}
.ws11_c00232{word-spacing:63.498240pt;}
.ws1c_c00232{word-spacing:83.977920pt;}
.ws2_c00232{word-spacing:87.197760pt;}
.ws15_c00232{word-spacing:94.610880pt;}
.ws16_c00232{word-spacing:99.927360pt;}
.ws12_c00232{word-spacing:100.938240pt;}
.ws4_c00232{word-spacing:106.104960pt;}
.ws1a_c00232{word-spacing:107.003520pt;}
.wsb_c00232{word-spacing:114.566400pt;}
.ws8_c00232{word-spacing:115.390080pt;}
.wsd_c00232{word-spacing:118.797120pt;}
.ws1d_c00232{word-spacing:118.872000pt;}
.ws1e_c00232{word-spacing:118.909440pt;}
.ws18_c00232{word-spacing:132.986880pt;}
.ws9_c00232{word-spacing:133.286400pt;}
.wsf_c00232{word-spacing:137.741760pt;}
.ws6_c00232{word-spacing:143.133120pt;}
.ws5_c00232{word-spacing:285.143040pt;}
.wsa_c00232{word-spacing:620.156160pt;}
.ws13_c00232{word-spacing:673.283520pt;}
.ws17_c00232{word-spacing:735.396480pt;}
.ws1b_c00232{word-spacing:742.734720pt;}
.ws10_c00232{word-spacing:768.643200pt;}
.ws1_c00232{word-spacing:793.316160pt;}
.ws19_c00232{word-spacing:984.335040pt;}
._1_c00232{margin-left:-1.054080pt;}
._0_c00232{width:1.171200pt;}
._7_c00232{width:5.472000pt;}
._3_c00232{width:11.756160pt;}
._8_c00232{width:46.238400pt;}
._4_c00232{width:50.250240pt;}
._6_c00232{width:61.027200pt;}
._2_c00232{width:87.235200pt;}
._5_c00232{width:90.305280pt;}
.fs2_c00232{font-size:37.440000pt;}
.fs1_c00232{font-size:58.560000pt;}
.fs0_c00232{font-size:64.000000pt;}
.y0_c00232{bottom:0.000000pt;}
.y27_c00232{bottom:20.799467pt;}
.y1b_c00232{bottom:20.800800pt;}
.y66_c00232{bottom:20.802133pt;}
.y36_c00232{bottom:20.879333pt;}
.yb_c00232{bottom:20.880667pt;}
.y72_c00232{bottom:25.119467pt;}
.y60_c00232{bottom:29.359333pt;}
.y56_c00232{bottom:29.439467pt;}
.y6c_c00232{bottom:31.519333pt;}
.y5b_c00232{bottom:41.679467pt;}
.y50_c00232{bottom:41.680800pt;}
.y1_c00232{bottom:54.887600pt;}
.y33_c00232{bottom:107.238667pt;}
.y42_c00232{bottom:107.240000pt;}
.y34_c00232{bottom:117.319467pt;}
.y32_c00232{bottom:122.676187pt;}
.y31_c00232{bottom:154.762267pt;}
.y30_c00232{bottom:160.116187pt;}
.y2f_c00232{bottom:192.192907pt;}
.y2e_c00232{bottom:197.556187pt;}
.y2d_c00232{bottom:230.353627pt;}
.y2c_c00232{bottom:249.073627pt;}
.y2b_c00232{bottom:277.162987pt;}
.y2a_c00232{bottom:277.799467pt;}
.y29_c00232{bottom:288.516667pt;}
.y76_c00232{bottom:289.804293pt;}
.y75_c00232{bottom:292.518693pt;}
.y74_c00232{bottom:304.761573pt;}
.y26_c00232{bottom:305.160000pt;}
.y28_c00232{bottom:315.239467pt;}
.y71_c00232{bottom:321.400000pt;}
.y25_c00232{bottom:325.961653pt;}
.y73_c00232{bottom:335.799333pt;}
.y70_c00232{bottom:338.521573pt;}
.y6f_c00232{bottom:350.839333pt;}
.y24_c00232{bottom:352.684453pt;}
.y23_c00232{bottom:363.401653pt;}
.y6b_c00232{bottom:367.480000pt;}
.y6e_c00232{bottom:377.562267pt;}
.y6d_c00232{bottom:388.279467pt;}
.y22_c00232{bottom:390.845173pt;}
.y6a_c00232{bottom:391.799333pt;}
.y21_c00232{bottom:409.565173pt;}
.y69_c00232{bottom:426.440187pt;}
.y20_c00232{bottom:436.924453pt;}
.y1f_c00232{bottom:442.362613pt;}
.y68_c00232{bottom:445.160187pt;}
.y65_c00232{bottom:462.437333pt;}
.y67_c00232{bottom:472.519467pt;}
.y1e_c00232{bottom:474.448693pt;}
.y64_c00232{bottom:477.879787pt;}
.y1d_c00232{bottom:479.802613pt;}
.y1a_c00232{bottom:501.798667pt;}
.y41_c00232{bottom:501.800000pt;}
.y63_c00232{bottom:509.956507pt;}
.y1c_c00232{bottom:511.879333pt;}
.y62_c00232{bottom:520.757947pt;}
.y40_c00232{bottom:520.829307pt;}
.y19_c00232{bottom:520.838667pt;}
.y5f_c00232{bottom:537.400000pt;}
.y5e_c00232{bottom:553.082773pt;}
.y61_c00232{bottom:554.519467pt;}
.y3f_c00232{bottom:556.350507pt;}
.y18_c00232{bottom:556.359867pt;}
.y5a_c00232{bottom:575.400000pt;}
.y3e_c00232{bottom:583.709787pt;}
.y17_c00232{bottom:583.719147pt;}
.y59_c00232{bottom:591.958373pt;}
.y5d_c00232{bottom:592.516453pt;}
.y3d_c00232{bottom:602.429787pt;}
.y16_c00232{bottom:602.439147pt;}
.y58_c00232{bottom:602.675573pt;}
.y5c_c00232{bottom:604.759333pt;}
.y55_c00232{bottom:625.720000pt;}
.y3c_c00232{bottom:629.789067pt;}
.y15_c00232{bottom:629.798427pt;}
.y54_c00232{bottom:636.122133pt;}
.y3b_c00232{bottom:640.506267pt;}
.y14_c00232{bottom:640.515627pt;}
.y57_c00232{bottom:642.839333pt;}
.y53_c00232{bottom:646.839333pt;}
.y4f_c00232{bottom:663.798667pt;}
.y3a_c00232{bottom:667.313307pt;}
.y13_c00232{bottom:667.322667pt;}
.y39_c00232{bottom:678.030507pt;}
.y12_c00232{bottom:678.039867pt;}
.y52_c00232{bottom:680.916587pt;}
.y4e_c00232{bottom:685.639467pt;}
.y51_c00232{bottom:693.159467pt;}
.y38_c00232{bottom:704.753307pt;}
.y11_c00232{bottom:704.762667pt;}
.y37_c00232{bottom:715.470507pt;}
.y10_c00232{bottom:715.479867pt;}
.y4d_c00232{bottom:724.915813pt;}
.yf_c00232{bottom:742.914027pt;}
.y4c_c00232{bottom:743.635813pt;}
.ye_c00232{bottom:761.634027pt;}
.y4b_c00232{bottom:770.995093pt;}
.y4a_c00232{bottom:797.717893pt;}
.yd_c00232{bottom:798.596667pt;}
.y49_c00232{bottom:808.519333pt;}
.ya_c00232{bottom:815.238667pt;}
.y35_c00232{bottom:815.240000pt;}
.yc_c00232{bottom:825.319467pt;}
.y48_c00232{bottom:835.242133pt;}
.y9_c00232{bottom:836.120187pt;}
.y47_c00232{bottom:845.959333pt;}
.y8_c00232{bottom:862.842987pt;}
.y46_c00232{bottom:873.319333pt;}
.y7_c00232{bottom:873.560187pt;}
.y45_c00232{bottom:892.039333pt;}
.y6_c00232{bottom:900.919467pt;}
.y5_c00232{bottom:919.639467pt;}
.y44_c00232{bottom:941.000107pt;}
.y43_c00232{bottom:958.846267pt;}
.y4_c00232{bottom:968.596507pt;}
.y3_c00232{bottom:986.442667pt;}
.y2_c00232{bottom:1061.399467pt;}
.ha_c00232{height:37.440000pt;}
.h6_c00232{height:37.520000pt;}
.h10_c00232{height:37.998667pt;}
.hf_c00232{height:38.080000pt;}
.h4_c00232{height:39.948480pt;}
.h8_c00232{height:41.857920pt;}
.h2_c00232{height:44.800000pt;}
.h15_c00232{height:46.080000pt;}
.h9_c00232{height:46.987200pt;}
.h13_c00232{height:48.160000pt;}
.h3_c00232{height:48.294844pt;}
.he_c00232{height:50.321333pt;}
.hb_c00232{height:61.401600pt;}
.hd_c00232{height:61.701120pt;}
.h12_c00232{height:68.739840pt;}
.h14_c00232{height:71.922240pt;}
.h16_c00232{height:71.959680pt;}
.h5_c00232{height:77.388480pt;}
.hc_c00232{height:80.271360pt;}
.h7_c00232{height:82.817280pt;}
.h11_c00232{height:83.154240pt;}
.h0_c00232{height:1122.520000pt;}
.h1_c00232{height:1122.666667pt;}
.w3_c00232{width:-108.660000pt;}
.w2_c00232{width:0.000000pt;}
.w4_c00232{width:0.058667pt;}
.w5_c00232{width:485.201333pt;}
.w0_c00232{width:793.701333pt;}
.w1_c00232{width:794.000000pt;}
.x1_c00232{left:-745.700800pt;}
.x2_c00232{left:-680.260800pt;}
.x11_c00232{left:-676.980160pt;}
.x10_c00232{left:-671.055280pt;}
.x8_c00232{left:-670.016320pt;}
.xb_c00232{left:-667.929040pt;}
.xf_c00232{left:-666.899440pt;}
.x4_c00232{left:-665.062080pt;}
.x14_c00232{left:-663.305200pt;}
.x13_c00232{left:-661.704640pt;}
.x7_c00232{left:-660.422320pt;}
.xa_c00232{left:-658.091680pt;}
.x6_c00232{left:-655.224720pt;}
.xc_c00232{left:-653.692480pt;}
.xe_c00232{left:-652.662880pt;}
.x9_c00232{left:-651.052960pt;}
.x3_c00232{left:-629.138400pt;}
.x5_c00232{left:-589.227360pt;}
.xd_c00232{left:-385.620800pt;}
.x15_c00232{left:-240.900800pt;}
.x12_c00232{left:-232.420800pt;}
.x0_c00232{left:0.000000pt;}
.x1f_c00232{left:4.640000pt;}
.x18_c00232{left:113.439760pt;}
.x1d_c00232{left:115.916400pt;}
.x1c_c00232{left:119.520000pt;}
.x29_c00232{left:122.080000pt;}
.x27_c00232{left:123.120000pt;}
.x26_c00232{left:126.080000pt;}
.x25_c00232{left:127.840000pt;}
.x21_c00232{left:130.163120pt;}
.x24_c00232{left:131.200560pt;}
.x20_c00232{left:133.280000pt;}
.x23_c00232{left:135.122400pt;}
.x28_c00232{left:136.401840pt;}
.x22_c00232{left:138.482640pt;}
.x1a_c00232{left:140.003840pt;}
.x19_c00232{left:164.560000pt;}
.x1e_c00232{left:199.840000pt;}
.x1b_c00232{left:204.484880pt;}
.x17_c00232{left:619.120000pt;}
.x16_c00232{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00233;src:url('chunks/assets/font_52b7644f182949bd3d6948ad.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_de25e90913a4da5529ec4d93.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00233;src:url('chunks/assets/font_07aa23ea37d0e389a92ab78e.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00233;src:url('chunks/assets/font_0152102a7cae34a35963e383.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls6_c00233{letter-spacing:-0.360000px;}
.ls7_c00233{letter-spacing:-0.072000px;}
.ls5_c00233{letter-spacing:0.000000px;}
.ls0_c00233{letter-spacing:0.072000px;}
.ls4_c00233{letter-spacing:18.000000px;}
.ls2_c00233{letter-spacing:18.396000px;}
.ls3_c00233{letter-spacing:22.032000px;}
.ls1_c00233{letter-spacing:23.054400px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00233{word-spacing:-18.000000px;}
.ws0_c00233{word-spacing:-17.640000px;}
.ws18_c00233{word-spacing:-0.360000px;}
.ws7_c00233{word-spacing:-0.072000px;}
.ws1_c00233{word-spacing:0.000000px;}
.wsc_c00233{word-spacing:0.072000px;}
.ws14_c00233{word-spacing:0.648000px;}
.ws15_c00233{word-spacing:0.720000px;}
.wsb_c00233{word-spacing:1.728000px;}
.wsa_c00233{word-spacing:1.800000px;}
.ws3_c00233{word-spacing:3.744000px;}
.ws1a_c00233{word-spacing:3.816000px;}
.ws19_c00233{word-spacing:3.960000px;}
.ws6_c00233{word-spacing:4.968000px;}
.ws13_c00233{word-spacing:6.408000px;}
.ws9_c00233{word-spacing:6.480000px;}
.ws5_c00233{word-spacing:6.732000px;}
.ws20_c00233{word-spacing:6.768000px;}
.ws1f_c00233{word-spacing:6.840000px;}
.ws10_c00233{word-spacing:7.848000px;}
.wsf_c00233{word-spacing:7.920000px;}
.ws22_c00233{word-spacing:8.640000px;}
.ws21_c00233{word-spacing:8.928000px;}
.ws1e_c00233{word-spacing:12.960000px;}
.ws16_c00233{word-spacing:17.928000px;}
.ws17_c00233{word-spacing:18.000000px;}
.ws4_c00233{word-spacing:18.720000px;}
.ws1d_c00233{word-spacing:19.080000px;}
.ws8_c00233{word-spacing:20.160000px;}
.ws11_c00233{word-spacing:21.168000px;}
.ws12_c00233{word-spacing:21.600000px;}
.ws1c_c00233{word-spacing:25.488000px;}
.ws1b_c00233{word-spacing:25.920000px;}
.wse_c00233{word-spacing:29.520000px;}
.wsd_c00233{word-spacing:29.880000px;}
._1_c00233{margin-left:-1.008000px;}
._2_c00233{width:1.008000px;}
._4_c00233{width:6.624000px;}
._6_c00233{width:12.672000px;}
._3_c00233{width:29.664000px;}
._5_c00233{width:30.960000px;}
._0_c00233{width:68.400000px;}
.fc1_c00233{color:rgb(0,0,0);}
.fc0_c00233{color:rgb(35,31,32);}
.fs1_c00233{font-size:65.880000px;}
.fs0_c00233{font-size:72.000000px;}
.y0_c00233{bottom:0.000000px;}
.y1_c00233{bottom:61.748550px;}
.y1c_c00233{bottom:177.434400px;}
.y1b_c00233{bottom:208.484400px;}
.y1a_c00233{bottom:239.534400px;}
.y19_c00233{bottom:301.634400px;}
.y18_c00233{bottom:332.684400px;}
.y17_c00233{bottom:363.734400px;}
.y16_c00233{bottom:394.784400px;}
.y15_c00233{bottom:425.834400px;}
.y14_c00233{bottom:456.884400px;}
.y13_c00233{bottom:518.984400px;}
.y12_c00233{bottom:550.034400px;}
.y11_c00233{bottom:612.044400px;}
.y10_c00233{bottom:643.184400px;}
.yf_c00233{bottom:674.234400px;}
.ye_c00233{bottom:705.284400px;}
.yd_c00233{bottom:767.384400px;}
.yc_c00233{bottom:798.434400px;}
.yb_c00233{bottom:829.484400px;}
.ya_c00233{bottom:860.534400px;}
.y9_c00233{bottom:922.634400px;}
.y8_c00233{bottom:953.684400px;}
.y7_c00233{bottom:984.644400px;}
.y6_c00233{bottom:1015.694400px;}
.y5_c00233{bottom:1046.744400px;}
.y4_c00233{bottom:1077.794400px;}
.y3_c00233{bottom:1139.714400px;}
.y2_c00233{bottom:1194.074400px;}
.h2_c00233{height:50.400000px;}
.h3_c00233{height:54.331699px;}
.h4_c00233{height:76.824000px;}
.h5_c00233{height:78.048000px;}
.h0_c00233{height:1262.835000px;}
.h1_c00233{height:1263.000000px;}
.w0_c00233{width:892.914000px;}
.w1_c00233{width:893.250000px;}
.x0_c00233{left:0.000000px;}
.x1_c00233{left:54.000000px;}
.x2_c00233{left:127.620000px;}
.x3_c00233{left:159.570000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls6_c00233{letter-spacing:-0.320000pt;}
.ls7_c00233{letter-spacing:-0.064000pt;}
.ls5_c00233{letter-spacing:0.000000pt;}
.ls0_c00233{letter-spacing:0.064000pt;}
.ls4_c00233{letter-spacing:16.000000pt;}
.ls2_c00233{letter-spacing:16.352000pt;}
.ls3_c00233{letter-spacing:19.584000pt;}
.ls1_c00233{letter-spacing:20.492800pt;}
.ws2_c00233{word-spacing:-16.000000pt;}
.ws0_c00233{word-spacing:-15.680000pt;}
.ws18_c00233{word-spacing:-0.320000pt;}
.ws7_c00233{word-spacing:-0.064000pt;}
.ws1_c00233{word-spacing:0.000000pt;}
.wsc_c00233{word-spacing:0.064000pt;}
.ws14_c00233{word-spacing:0.576000pt;}
.ws15_c00233{word-spacing:0.640000pt;}
.wsb_c00233{word-spacing:1.536000pt;}
.wsa_c00233{word-spacing:1.600000pt;}
.ws3_c00233{word-spacing:3.328000pt;}
.ws1a_c00233{word-spacing:3.392000pt;}
.ws19_c00233{word-spacing:3.520000pt;}
.ws6_c00233{word-spacing:4.416000pt;}
.ws13_c00233{word-spacing:5.696000pt;}
.ws9_c00233{word-spacing:5.760000pt;}
.ws5_c00233{word-spacing:5.984000pt;}
.ws20_c00233{word-spacing:6.016000pt;}
.ws1f_c00233{word-spacing:6.080000pt;}
.ws10_c00233{word-spacing:6.976000pt;}
.wsf_c00233{word-spacing:7.040000pt;}
.ws22_c00233{word-spacing:7.680000pt;}
.ws21_c00233{word-spacing:7.936000pt;}
.ws1e_c00233{word-spacing:11.520000pt;}
.ws16_c00233{word-spacing:15.936000pt;}
.ws17_c00233{word-spacing:16.000000pt;}
.ws4_c00233{word-spacing:16.640000pt;}
.ws1d_c00233{word-spacing:16.960000pt;}
.ws8_c00233{word-spacing:17.920000pt;}
.ws11_c00233{word-spacing:18.816000pt;}
.ws12_c00233{word-spacing:19.200000pt;}
.ws1c_c00233{word-spacing:22.656000pt;}
.ws1b_c00233{word-spacing:23.040000pt;}
.wse_c00233{word-spacing:26.240000pt;}
.wsd_c00233{word-spacing:26.560000pt;}
._1_c00233{margin-left:-0.896000pt;}
._2_c00233{width:0.896000pt;}
._4_c00233{width:5.888000pt;}
._6_c00233{width:11.264000pt;}
._3_c00233{width:26.368000pt;}
._5_c00233{width:27.520000pt;}
._0_c00233{width:60.800000pt;}
.fs1_c00233{font-size:58.560000pt;}
.fs0_c00233{font-size:64.000000pt;}
.y0_c00233{bottom:0.000000pt;}
.y1_c00233{bottom:54.887600pt;}
.y1c_c00233{bottom:157.719467pt;}
.y1b_c00233{bottom:185.319467pt;}
.y1a_c00233{bottom:212.919467pt;}
.y19_c00233{bottom:268.119467pt;}
.y18_c00233{bottom:295.719467pt;}
.y17_c00233{bottom:323.319467pt;}
.y16_c00233{bottom:350.919467pt;}
.y15_c00233{bottom:378.519467pt;}
.y14_c00233{bottom:406.119467pt;}
.y13_c00233{bottom:461.319467pt;}
.y12_c00233{bottom:488.919467pt;}
.y11_c00233{bottom:544.039467pt;}
.y10_c00233{bottom:571.719467pt;}
.yf_c00233{bottom:599.319467pt;}
.ye_c00233{bottom:626.919467pt;}
.yd_c00233{bottom:682.119467pt;}
.yc_c00233{bottom:709.719467pt;}
.yb_c00233{bottom:737.319467pt;}
.ya_c00233{bottom:764.919467pt;}
.y9_c00233{bottom:820.119467pt;}
.y8_c00233{bottom:847.719467pt;}
.y7_c00233{bottom:875.239467pt;}
.y6_c00233{bottom:902.839467pt;}
.y5_c00233{bottom:930.439467pt;}
.y4_c00233{bottom:958.039467pt;}
.y3_c00233{bottom:1013.079467pt;}
.y2_c00233{bottom:1061.399467pt;}
.h2_c00233{height:44.800000pt;}
.h3_c00233{height:48.294844pt;}
.h4_c00233{height:68.288000pt;}
.h5_c00233{height:69.376000pt;}
.h0_c00233{height:1122.520000pt;}
.h1_c00233{height:1122.666667pt;}
.w0_c00233{width:793.701333pt;}
.w1_c00233{width:794.000000pt;}
.x0_c00233{left:0.000000pt;}
.x1_c00233{left:48.000000pt;}
.x2_c00233{left:113.440000pt;}
.x3_c00233{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00234;src:url('chunks/assets/font_30910d517e7bf5c8061c06bb.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00234;src:url('chunks/assets/font_782a559fdc4e1aa190a41489.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00234;src:url('chunks/assets/font_53ec74a4f94ab4ec3ef67dff.woff2')format("woff");}.ff4_c00234{font-family:ff4_c00234;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00234;src:url('chunks/assets/font_07968f707f731a7c40ac4d0d.woff2')format("woff");}.ff5_c00234{font-family:ff5_c00234;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00234;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00234{font-family:ff6_c00234;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00234;src:url('chunks/assets/font_c2efc996d6ceed0d0152a1a8.woff2')format("woff");}.ff7_c00234{font-family:ff7_c00234;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00234;src:url('chunks/assets/font_d7804fb1fc03eb4913ee88ef.woff2')format("woff");}.ff8_c00234{font-family:ff8_c00234;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00234;src:url('chunks/assets/font_f4a1a3830d4805939c7bebd5.woff2')format("woff");}.ff9_c00234{font-family:ff9_c00234;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00234;src:url('chunks/assets/font_0b7a5c8776d4dbf3090b7cad.woff2')format("woff");}.ffa_c00234{font-family:ffa_c00234;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00234;src:url('chunks/assets/font_b2e182db8b92356f0fb08b47.woff2')format("woff");}.ffb_c00234{font-family:ffb_c00234;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00234;src:url('chunks/assets/font_15ae5c7676e9b129efdff7de.woff2')format("woff");}.ffc_c00234{font-family:ffc_c00234;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00234{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls9_c00234{letter-spacing:-0.360000px;}
.lsb_c00234{letter-spacing:-0.144000px;}
.lsa_c00234{letter-spacing:-0.072000px;}
.ls8_c00234{letter-spacing:0.000000px;}
.ls0_c00234{letter-spacing:0.072000px;}
.ls6_c00234{letter-spacing:0.144000px;}
.ls4_c00234{letter-spacing:18.000000px;}
.ls7_c00234{letter-spacing:18.360000px;}
.ls2_c00234{letter-spacing:18.396000px;}
.ls3_c00234{letter-spacing:22.032000px;}
.ls1_c00234{letter-spacing:23.061600px;}
.ls5_c00234{letter-spacing:23.068800px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00234{word-spacing:-18.144000px;}
.ws7_c00234{word-spacing:-18.072000px;}
.ws2_c00234{word-spacing:-18.000000px;}
.wsa_c00234{word-spacing:-17.928000px;}
.ws6_c00234{word-spacing:-17.856000px;}
.ws0_c00234{word-spacing:-17.640000px;}
.wsb_c00234{word-spacing:-0.576000px;}
.ws2d_c00234{word-spacing:-0.504000px;}
.ws2c_c00234{word-spacing:-0.432000px;}
.ws1e_c00234{word-spacing:-0.360000px;}
.ws8_c00234{word-spacing:-0.216000px;}
.ws2b_c00234{word-spacing:-0.144000px;}
.ws29_c00234{word-spacing:-0.131760px;}
.wsd_c00234{word-spacing:-0.072000px;}
.ws1_c00234{word-spacing:0.000000px;}
.ws12_c00234{word-spacing:0.072000px;}
.ws2a_c00234{word-spacing:0.144000px;}
.ws1a_c00234{word-spacing:0.648000px;}
.ws1b_c00234{word-spacing:0.720000px;}
.ws11_c00234{word-spacing:1.728000px;}
.ws10_c00234{word-spacing:1.800000px;}
.ws3_c00234{word-spacing:3.744000px;}
.ws20_c00234{word-spacing:3.816000px;}
.ws1f_c00234{word-spacing:3.960000px;}
.wsc_c00234{word-spacing:4.968000px;}
.ws19_c00234{word-spacing:6.408000px;}
.wsf_c00234{word-spacing:6.480000px;}
.ws5_c00234{word-spacing:6.732000px;}
.ws26_c00234{word-spacing:6.768000px;}
.ws25_c00234{word-spacing:6.840000px;}
.ws16_c00234{word-spacing:7.848000px;}
.ws15_c00234{word-spacing:7.920000px;}
.ws28_c00234{word-spacing:8.640000px;}
.ws27_c00234{word-spacing:8.928000px;}
.ws24_c00234{word-spacing:12.960000px;}
.ws1c_c00234{word-spacing:17.928000px;}
.ws1d_c00234{word-spacing:18.000000px;}
.ws4_c00234{word-spacing:18.720000px;}
.ws23_c00234{word-spacing:19.080000px;}
.wse_c00234{word-spacing:20.160000px;}
.ws17_c00234{word-spacing:21.168000px;}
.ws18_c00234{word-spacing:21.600000px;}
.ws22_c00234{word-spacing:25.488000px;}
.ws21_c00234{word-spacing:25.920000px;}
.ws14_c00234{word-spacing:29.520000px;}
.ws13_c00234{word-spacing:29.880000px;}
._1_c00234{margin-left:-1.008000px;}
._2_c00234{width:1.008000px;}
._4_c00234{width:6.624000px;}
._6_c00234{width:12.672000px;}
._3_c00234{width:29.664000px;}
._5_c00234{width:30.960000px;}
._0_c00234{width:68.400000px;}
.fc2_c00234{color:transparent;}
.fc1_c00234{color:rgb(0,0,0);}
.fc0_c00234{color:rgb(35,31,32);}
.fs1_c00234{font-size:65.880000px;}
.fs0_c00234{font-size:72.000000px;}
.y0_c00234{bottom:0.000000px;}
.y21_c00234{bottom:3.959250px;}
.y23_c00234{bottom:3.962400px;}
.y1_c00234{bottom:61.748550px;}
.y1c_c00234{bottom:177.434400px;}
.y1b_c00234{bottom:208.484400px;}
.y1a_c00234{bottom:239.534400px;}
.y19_c00234{bottom:301.634400px;}
.y4a_c00234{bottom:303.524400px;}
.y49_c00234{bottom:324.224400px;}
.y18_c00234{bottom:332.684400px;}
.y48_c00234{bottom:355.094400px;}
.y17_c00234{bottom:363.734400px;}
.y47_c00234{bottom:375.794400px;}
.y16_c00234{bottom:394.784400px;}
.y46_c00234{bottom:396.404400px;}
.y3e_c00234{bottom:403.694400px;}
.y3d_c00234{bottom:424.394400px;}
.y15_c00234{bottom:425.834400px;}
.y45_c00234{bottom:427.274400px;}
.y3c_c00234{bottom:445.094400px;}
.y44_c00234{bottom:447.974400px;}
.y14_c00234{bottom:456.884400px;}
.y3b_c00234{bottom:465.794400px;}
.y43_c00234{bottom:468.674400px;}
.y3a_c00234{bottom:486.494400px;}
.y42_c00234{bottom:499.454400px;}
.y13_c00234{bottom:518.984400px;}
.y41_c00234{bottom:520.154400px;}
.y12_c00234{bottom:550.034400px;}
.y40_c00234{bottom:551.024400px;}
.y3f_c00234{bottom:571.724400px;}
.y39_c00234{bottom:603.674400px;}
.y11_c00234{bottom:612.044400px;}
.y38_c00234{bottom:624.374400px;}
.y10_c00234{bottom:643.184400px;}
.y37_c00234{bottom:645.074400px;}
.y32_c00234{bottom:655.154400px;}
.yf_c00234{bottom:674.234400px;}
.y31_c00234{bottom:675.854400px;}
.y30_c00234{bottom:696.554400px;}
.ye_c00234{bottom:705.284400px;}
.y2f_c00234{bottom:717.254400px;}
.y36_c00234{bottom:748.124400px;}
.y2e_c00234{bottom:752.894400px;}
.yd_c00234{bottom:767.384400px;}
.y35_c00234{bottom:768.824400px;}
.y2d_c00234{bottom:773.594400px;}
.y34_c00234{bottom:789.524400px;}
.yc_c00234{bottom:798.434400px;}
.y33_c00234{bottom:810.224400px;}
.yb_c00234{bottom:829.484400px;}
.y2c_c00234{bottom:842.174400px;}
.ya_c00234{bottom:860.534400px;}
.y2b_c00234{bottom:862.874400px;}
.y26_c00234{bottom:890.774250px;}
.y2a_c00234{bottom:893.654400px;}
.y25_c00234{bottom:911.474250px;}
.y29_c00234{bottom:914.354400px;}
.y9_c00234{bottom:922.634400px;}
.y24_c00234{bottom:932.084250px;}
.y28_c00234{bottom:945.224250px;}
.y8_c00234{bottom:953.684400px;}
.y27_c00234{bottom:965.924250px;}
.y7_c00234{bottom:984.644400px;}
.y22_c00234{bottom:989.232000px;}
.y20_c00234{bottom:1011.015000px;}
.y6_c00234{bottom:1015.694400px;}
.y5_c00234{bottom:1046.744400px;}
.y4_c00234{bottom:1077.794400px;}
.y1f_c00234{bottom:1100.557740px;}
.y1e_c00234{bottom:1120.717020px;}
.y3_c00234{bottom:1139.714400px;}
.y1d_c00234{bottom:1140.793950px;}
.y2_c00234{bottom:1194.074400px;}
.h7_c00234{height:20.701500px;}
.h8_c00234{height:20.703000px;}
.h6_c00234{height:45.646348px;}
.h2_c00234{height:50.400000px;}
.h3_c00234{height:54.331699px;}
.h4_c00234{height:76.824000px;}
.h5_c00234{height:78.048000px;}
.h0_c00234{height:1262.835000px;}
.h1_c00234{height:1263.000000px;}
.w2_c00234{width:0.000000px;}
.w3_c00234{width:0.066000px;}
.w4_c00234{width:210.600000px;}
.w5_c00234{width:472.411500px;}
.w6_c00234{width:683.011500px;}
.w0_c00234{width:892.914000px;}
.w1_c00234{width:893.250000px;}
.x1_c00234{left:-838.913400px;}
.x2_c00234{left:-765.293400px;}
.x3_c00234{left:-733.343400px;}
.x0_c00234{left:0.000000px;}
.x8_c00234{left:66.600000px;}
.x7_c00234{left:119.520000px;}
.x6_c00234{left:127.619730px;}
.x15_c00234{left:128.880000px;}
.xe_c00234{left:131.580000px;}
.x16_c00234{left:132.660000px;}
.x12_c00234{left:135.630000px;}
.xc_c00234{left:138.060000px;}
.x14_c00234{left:144.540000px;}
.xd_c00234{left:149.760000px;}
.x10_c00234{left:156.060000px;}
.xa_c00234{left:158.130000px;}
.x11_c00234{left:186.570000px;}
.x13_c00234{left:192.870000px;}
.xb_c00234{left:206.010000px;}
.x9_c00234{left:330.120000px;}
.xf_c00234{left:338.220000px;}
.x5_c00234{left:696.510000px;}
.x4_c00234{left:804.366150px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls9_c00234{letter-spacing:-0.320000pt;}
.lsb_c00234{letter-spacing:-0.128000pt;}
.lsa_c00234{letter-spacing:-0.064000pt;}
.ls8_c00234{letter-spacing:0.000000pt;}
.ls0_c00234{letter-spacing:0.064000pt;}
.ls6_c00234{letter-spacing:0.128000pt;}
.ls4_c00234{letter-spacing:16.000000pt;}
.ls7_c00234{letter-spacing:16.320000pt;}
.ls2_c00234{letter-spacing:16.352000pt;}
.ls3_c00234{letter-spacing:19.584000pt;}
.ls1_c00234{letter-spacing:20.499200pt;}
.ls5_c00234{letter-spacing:20.505600pt;}
.ws9_c00234{word-spacing:-16.128000pt;}
.ws7_c00234{word-spacing:-16.064000pt;}
.ws2_c00234{word-spacing:-16.000000pt;}
.wsa_c00234{word-spacing:-15.936000pt;}
.ws6_c00234{word-spacing:-15.872000pt;}
.ws0_c00234{word-spacing:-15.680000pt;}
.wsb_c00234{word-spacing:-0.512000pt;}
.ws2d_c00234{word-spacing:-0.448000pt;}
.ws2c_c00234{word-spacing:-0.384000pt;}
.ws1e_c00234{word-spacing:-0.320000pt;}
.ws8_c00234{word-spacing:-0.192000pt;}
.ws2b_c00234{word-spacing:-0.128000pt;}
.ws29_c00234{word-spacing:-0.117120pt;}
.wsd_c00234{word-spacing:-0.064000pt;}
.ws1_c00234{word-spacing:0.000000pt;}
.ws12_c00234{word-spacing:0.064000pt;}
.ws2a_c00234{word-spacing:0.128000pt;}
.ws1a_c00234{word-spacing:0.576000pt;}
.ws1b_c00234{word-spacing:0.640000pt;}
.ws11_c00234{word-spacing:1.536000pt;}
.ws10_c00234{word-spacing:1.600000pt;}
.ws3_c00234{word-spacing:3.328000pt;}
.ws20_c00234{word-spacing:3.392000pt;}
.ws1f_c00234{word-spacing:3.520000pt;}
.wsc_c00234{word-spacing:4.416000pt;}
.ws19_c00234{word-spacing:5.696000pt;}
.wsf_c00234{word-spacing:5.760000pt;}
.ws5_c00234{word-spacing:5.984000pt;}
.ws26_c00234{word-spacing:6.016000pt;}
.ws25_c00234{word-spacing:6.080000pt;}
.ws16_c00234{word-spacing:6.976000pt;}
.ws15_c00234{word-spacing:7.040000pt;}
.ws28_c00234{word-spacing:7.680000pt;}
.ws27_c00234{word-spacing:7.936000pt;}
.ws24_c00234{word-spacing:11.520000pt;}
.ws1c_c00234{word-spacing:15.936000pt;}
.ws1d_c00234{word-spacing:16.000000pt;}
.ws4_c00234{word-spacing:16.640000pt;}
.ws23_c00234{word-spacing:16.960000pt;}
.wse_c00234{word-spacing:17.920000pt;}
.ws17_c00234{word-spacing:18.816000pt;}
.ws18_c00234{word-spacing:19.200000pt;}
.ws22_c00234{word-spacing:22.656000pt;}
.ws21_c00234{word-spacing:23.040000pt;}
.ws14_c00234{word-spacing:26.240000pt;}
.ws13_c00234{word-spacing:26.560000pt;}
._1_c00234{margin-left:-0.896000pt;}
._2_c00234{width:0.896000pt;}
._4_c00234{width:5.888000pt;}
._6_c00234{width:11.264000pt;}
._3_c00234{width:26.368000pt;}
._5_c00234{width:27.520000pt;}
._0_c00234{width:60.800000pt;}
.fs1_c00234{font-size:58.560000pt;}
.fs0_c00234{font-size:64.000000pt;}
.y0_c00234{bottom:0.000000pt;}
.y21_c00234{bottom:3.519333pt;}
.y23_c00234{bottom:3.522133pt;}
.y1_c00234{bottom:54.887600pt;}
.y1c_c00234{bottom:157.719467pt;}
.y1b_c00234{bottom:185.319467pt;}
.y1a_c00234{bottom:212.919467pt;}
.y19_c00234{bottom:268.119467pt;}
.y4a_c00234{bottom:269.799467pt;}
.y49_c00234{bottom:288.199467pt;}
.y18_c00234{bottom:295.719467pt;}
.y48_c00234{bottom:315.639467pt;}
.y17_c00234{bottom:323.319467pt;}
.y47_c00234{bottom:334.039467pt;}
.y16_c00234{bottom:350.919467pt;}
.y46_c00234{bottom:352.359467pt;}
.y3e_c00234{bottom:358.839467pt;}
.y3d_c00234{bottom:377.239467pt;}
.y15_c00234{bottom:378.519467pt;}
.y45_c00234{bottom:379.799467pt;}
.y3c_c00234{bottom:395.639467pt;}
.y44_c00234{bottom:398.199467pt;}
.y14_c00234{bottom:406.119467pt;}
.y3b_c00234{bottom:414.039467pt;}
.y43_c00234{bottom:416.599467pt;}
.y3a_c00234{bottom:432.439467pt;}
.y42_c00234{bottom:443.959467pt;}
.y13_c00234{bottom:461.319467pt;}
.y41_c00234{bottom:462.359467pt;}
.y12_c00234{bottom:488.919467pt;}
.y40_c00234{bottom:489.799467pt;}
.y3f_c00234{bottom:508.199467pt;}
.y39_c00234{bottom:536.599467pt;}
.y11_c00234{bottom:544.039467pt;}
.y38_c00234{bottom:554.999467pt;}
.y10_c00234{bottom:571.719467pt;}
.y37_c00234{bottom:573.399467pt;}
.y32_c00234{bottom:582.359467pt;}
.yf_c00234{bottom:599.319467pt;}
.y31_c00234{bottom:600.759467pt;}
.y30_c00234{bottom:619.159467pt;}
.ye_c00234{bottom:626.919467pt;}
.y2f_c00234{bottom:637.559467pt;}
.y36_c00234{bottom:664.999467pt;}
.y2e_c00234{bottom:669.239467pt;}
.yd_c00234{bottom:682.119467pt;}
.y35_c00234{bottom:683.399467pt;}
.y2d_c00234{bottom:687.639467pt;}
.y34_c00234{bottom:701.799467pt;}
.yc_c00234{bottom:709.719467pt;}
.y33_c00234{bottom:720.199467pt;}
.yb_c00234{bottom:737.319467pt;}
.y2c_c00234{bottom:748.599467pt;}
.ya_c00234{bottom:764.919467pt;}
.y2b_c00234{bottom:766.999467pt;}
.y26_c00234{bottom:791.799333pt;}
.y2a_c00234{bottom:794.359467pt;}
.y25_c00234{bottom:810.199333pt;}
.y29_c00234{bottom:812.759467pt;}
.y9_c00234{bottom:820.119467pt;}
.y24_c00234{bottom:828.519333pt;}
.y28_c00234{bottom:840.199333pt;}
.y8_c00234{bottom:847.719467pt;}
.y27_c00234{bottom:858.599333pt;}
.y7_c00234{bottom:875.239467pt;}
.y22_c00234{bottom:879.317333pt;}
.y20_c00234{bottom:898.680000pt;}
.y6_c00234{bottom:902.839467pt;}
.y5_c00234{bottom:930.439467pt;}
.y4_c00234{bottom:958.039467pt;}
.y1f_c00234{bottom:978.273547pt;}
.y1e_c00234{bottom:996.192907pt;}
.y3_c00234{bottom:1013.079467pt;}
.y1d_c00234{bottom:1014.039067pt;}
.y2_c00234{bottom:1061.399467pt;}
.h7_c00234{height:18.401333pt;}
.h8_c00234{height:18.402667pt;}
.h6_c00234{height:40.574531pt;}
.h2_c00234{height:44.800000pt;}
.h3_c00234{height:48.294844pt;}
.h4_c00234{height:68.288000pt;}
.h5_c00234{height:69.376000pt;}
.h0_c00234{height:1122.520000pt;}
.h1_c00234{height:1122.666667pt;}
.w2_c00234{width:0.000000pt;}
.w3_c00234{width:0.058667pt;}
.w4_c00234{width:187.200000pt;}
.w5_c00234{width:419.921333pt;}
.w6_c00234{width:607.121333pt;}
.w0_c00234{width:793.701333pt;}
.w1_c00234{width:794.000000pt;}
.x1_c00234{left:-745.700800pt;}
.x2_c00234{left:-680.260800pt;}
.x3_c00234{left:-651.860800pt;}
.x0_c00234{left:0.000000pt;}
.x8_c00234{left:59.200000pt;}
.x7_c00234{left:106.240000pt;}
.x6_c00234{left:113.439760pt;}
.x15_c00234{left:114.560000pt;}
.xe_c00234{left:116.960000pt;}
.x16_c00234{left:117.920000pt;}
.x12_c00234{left:120.560000pt;}
.xc_c00234{left:122.720000pt;}
.x14_c00234{left:128.480000pt;}
.xd_c00234{left:133.120000pt;}
.x10_c00234{left:138.720000pt;}
.xa_c00234{left:140.560000pt;}
.x11_c00234{left:165.840000pt;}
.x13_c00234{left:171.440000pt;}
.xb_c00234{left:183.120000pt;}
.x9_c00234{left:293.440000pt;}
.xf_c00234{left:300.640000pt;}
.x5_c00234{left:619.120000pt;}
.x4_c00234{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00235;src:url('chunks/assets/font_62ab810079cb85683853ba0a.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_2d929f6b15047eed8511a21c.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00235;src:url('chunks/assets/font_0a3e44df41bd3f7dcbb20f0f.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00235;src:url('chunks/assets/font_9415bdfbdd012d846c0a77c8.woff2')format("woff");}.ff5_c00235{font-family:ff5_c00235;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00235;src:url('chunks/assets/font_ea6e878222812168a29ae90e.woff2')format("woff");}.ff6_c00235{font-family:ff6_c00235;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00235;src:url('chunks/assets/font_c0df9de990922deb996605cb.woff2')format("woff");}.ff7_c00235{font-family:ff7_c00235;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00235{letter-spacing:-0.432000px;}
.ls7_c00235{letter-spacing:-0.288000px;}
.ls6_c00235{letter-spacing:-0.144000px;}
.ls5_c00235{letter-spacing:-0.065880px;}
.ls4_c00235{letter-spacing:0.000000px;}
.ls1_c00235{letter-spacing:0.072000px;}
.ls0_c00235{letter-spacing:0.144000px;}
.ls3_c00235{letter-spacing:17.640000px;}
.ls2_c00235{letter-spacing:18.000000px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00235{word-spacing:-18.144000px;}
.ws4_c00235{word-spacing:-18.000000px;}
.ws1_c00235{word-spacing:-17.856000px;}
.ws0_c00235{word-spacing:-14.823000px;}
.wse_c00235{word-spacing:-0.504000px;}
.wsd_c00235{word-spacing:-0.432000px;}
.ws9_c00235{word-spacing:-0.360000px;}
.ws8_c00235{word-spacing:-0.144000px;}
.ws6_c00235{word-spacing:-0.131760px;}
.wsa_c00235{word-spacing:-0.072000px;}
.ws2_c00235{word-spacing:0.000000px;}
.ws3_c00235{word-spacing:0.144000px;}
.wsb_c00235{word-spacing:0.288000px;}
.wsc_c00235{word-spacing:0.432000px;}
.ws7_c00235{word-spacing:2.371680px;}
._1_c00235{margin-left:-1.008000px;}
._0_c00235{width:1.185840px;}
.fc2_c00235{color:transparent;}
.fc1_c00235{color:rgb(0,0,0);}
.fc0_c00235{color:rgb(35,31,32);}
.fs1_c00235{font-size:65.880000px;}
.fs0_c00235{font-size:72.000000px;}
.y0_c00235{bottom:0.000000px;}
.ya_c00235{bottom:3.959250px;}
.y8_c00235{bottom:3.962250px;}
.y11_c00235{bottom:39.779400px;}
.y28_c00235{bottom:39.869250px;}
.y18_c00235{bottom:39.869400px;}
.y39_c00235{bottom:60.480900px;}
.y14_c00235{bottom:60.569250px;}
.y24_c00235{bottom:60.569400px;}
.y1_c00235{bottom:61.748550px;}
.y37_c00235{bottom:81.179250px;}
.y32_c00235{bottom:81.182400px;}
.y1f_c00235{bottom:81.272400px;}
.y3e_c00235{bottom:123.975000px;}
.y3f_c00235{bottom:143.054400px;}
.y3c_c00235{bottom:181.035000px;}
.y3d_c00235{bottom:200.204400px;}
.y38_c00235{bottom:238.633500px;}
.y3b_c00235{bottom:257.714400px;}
.y3a_c00235{bottom:278.414400px;}
.y36_c00235{bottom:316.845000px;}
.y30_c00235{bottom:335.924400px;}
.y2f_c00235{bottom:356.624400px;}
.y2e_c00235{bottom:377.324400px;}
.y2d_c00235{bottom:398.024400px;}
.y31_c00235{bottom:415.752000px;}
.y2c_c00235{bottom:418.634400px;}
.y35_c00235{bottom:434.834400px;}
.y34_c00235{bottom:455.534400px;}
.y33_c00235{bottom:476.234400px;}
.y2a_c00235{bottom:514.665000px;}
.y2b_c00235{bottom:533.834400px;}
.y27_c00235{bottom:572.175000px;}
.y29_c00235{bottom:591.344400px;}
.y23_c00235{bottom:629.685000px;}
.y1d_c00235{bottom:630.404250px;}
.y26_c00235{bottom:648.854400px;}
.y1c_c00235{bottom:651.104250px;}
.y25_c00235{bottom:669.554400px;}
.y1b_c00235{bottom:671.804250px;}
.y1a_c00235{bottom:692.504250px;}
.y1e_c00235{bottom:707.892000px;}
.y22_c00235{bottom:727.064400px;}
.y21_c00235{bottom:747.764400px;}
.y20_c00235{bottom:768.464400px;}
.y17_c00235{bottom:806.805000px;}
.y19_c00235{bottom:825.974250px;}
.yf_c00235{bottom:862.784250px;}
.y13_c00235{bottom:864.315000px;}
.ye_c00235{bottom:883.484250px;}
.y16_c00235{bottom:883.484400px;}
.yd_c00235{bottom:904.184250px;}
.y15_c00235{bottom:904.184400px;}
.yc_c00235{bottom:924.884250px;}
.y10_c00235{bottom:942.615000px;}
.yb_c00235{bottom:945.494250px;}
.y12_c00235{bottom:961.694400px;}
.y9_c00235{bottom:1000.125000px;}
.y7_c00235{bottom:1021.902000px;}
.y6_c00235{bottom:1080.398460px;}
.y5_c00235{bottom:1100.557740px;}
.y4_c00235{bottom:1120.717020px;}
.y3_c00235{bottom:1140.793950px;}
.y2_c00235{bottom:1194.074400px;}
.h7_c00235{height:20.700000px;}
.h5_c00235{height:20.703000px;}
.h4_c00235{height:45.646348px;}
.h2_c00235{height:50.400000px;}
.h3_c00235{height:54.331699px;}
.h9_c00235{height:56.340000px;}
.hb_c00235{height:56.430000px;}
.h6_c00235{height:76.824000px;}
.he_c00235{height:77.040000px;}
.ha_c00235{height:77.130000px;}
.h8_c00235{height:78.048000px;}
.hd_c00235{height:97.740000px;}
.hc_c00235{height:97.830000px;}
.h0_c00235{height:1262.835000px;}
.h1_c00235{height:1263.000000px;}
.w2_c00235{width:210.600000px;}
.w3_c00235{width:472.411500px;}
.w4_c00235{width:683.011500px;}
.w0_c00235{width:892.914000px;}
.w1_c00235{width:893.250000px;}
.x0_c00235{left:0.000000px;}
.xd_c00235{left:8.100000px;}
.x1_c00235{left:54.000000px;}
.x4_c00235{left:66.600000px;}
.x3_c00235{left:119.520000px;}
.x2_c00235{left:127.620000px;}
.x12_c00235{left:131.040000px;}
.xa_c00235{left:133.380000px;}
.x7_c00235{left:135.180000px;}
.xf_c00235{left:138.060000px;}
.x9_c00235{left:140.130000px;}
.xc_c00235{left:144.630000px;}
.x13_c00235{left:146.160000px;}
.x11_c00235{left:154.350000px;}
.x6_c00235{left:158.130000px;}
.xb_c00235{left:165.330000px;}
.x8_c00235{left:167.580000px;}
.x10_c00235{left:168.930000px;}
.x14_c00235{left:187.380000px;}
.x5_c00235{left:330.120000px;}
.xe_c00235{left:338.220000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls8_c00235{letter-spacing:-0.384000pt;}
.ls7_c00235{letter-spacing:-0.256000pt;}
.ls6_c00235{letter-spacing:-0.128000pt;}
.ls5_c00235{letter-spacing:-0.058560pt;}
.ls4_c00235{letter-spacing:0.000000pt;}
.ls1_c00235{letter-spacing:0.064000pt;}
.ls0_c00235{letter-spacing:0.128000pt;}
.ls3_c00235{letter-spacing:15.680000pt;}
.ls2_c00235{letter-spacing:16.000000pt;}
.ws5_c00235{word-spacing:-16.128000pt;}
.ws4_c00235{word-spacing:-16.000000pt;}
.ws1_c00235{word-spacing:-15.872000pt;}
.ws0_c00235{word-spacing:-13.176000pt;}
.wse_c00235{word-spacing:-0.448000pt;}
.wsd_c00235{word-spacing:-0.384000pt;}
.ws9_c00235{word-spacing:-0.320000pt;}
.ws8_c00235{word-spacing:-0.128000pt;}
.ws6_c00235{word-spacing:-0.117120pt;}
.wsa_c00235{word-spacing:-0.064000pt;}
.ws2_c00235{word-spacing:0.000000pt;}
.ws3_c00235{word-spacing:0.128000pt;}
.wsb_c00235{word-spacing:0.256000pt;}
.wsc_c00235{word-spacing:0.384000pt;}
.ws7_c00235{word-spacing:2.108160pt;}
._1_c00235{margin-left:-0.896000pt;}
._0_c00235{width:1.054080pt;}
.fs1_c00235{font-size:58.560000pt;}
.fs0_c00235{font-size:64.000000pt;}
.y0_c00235{bottom:0.000000pt;}
.ya_c00235{bottom:3.519333pt;}
.y8_c00235{bottom:3.522000pt;}
.y11_c00235{bottom:35.359467pt;}
.y28_c00235{bottom:35.439333pt;}
.y18_c00235{bottom:35.439467pt;}
.y39_c00235{bottom:53.760800pt;}
.y14_c00235{bottom:53.839333pt;}
.y24_c00235{bottom:53.839467pt;}
.y1_c00235{bottom:54.887600pt;}
.y37_c00235{bottom:72.159333pt;}
.y32_c00235{bottom:72.162133pt;}
.y1f_c00235{bottom:72.242133pt;}
.y3e_c00235{bottom:110.200000pt;}
.y3f_c00235{bottom:127.159467pt;}
.y3c_c00235{bottom:160.920000pt;}
.y3d_c00235{bottom:177.959467pt;}
.y38_c00235{bottom:212.118667pt;}
.y3b_c00235{bottom:229.079467pt;}
.y3a_c00235{bottom:247.479467pt;}
.y36_c00235{bottom:281.640000pt;}
.y30_c00235{bottom:298.599467pt;}
.y2f_c00235{bottom:316.999467pt;}
.y2e_c00235{bottom:335.399467pt;}
.y2d_c00235{bottom:353.799467pt;}
.y31_c00235{bottom:369.557333pt;}
.y2c_c00235{bottom:372.119467pt;}
.y35_c00235{bottom:386.519467pt;}
.y34_c00235{bottom:404.919467pt;}
.y33_c00235{bottom:423.319467pt;}
.y2a_c00235{bottom:457.480000pt;}
.y2b_c00235{bottom:474.519467pt;}
.y27_c00235{bottom:508.600000pt;}
.y29_c00235{bottom:525.639467pt;}
.y23_c00235{bottom:559.720000pt;}
.y1d_c00235{bottom:560.359333pt;}
.y26_c00235{bottom:576.759467pt;}
.y1c_c00235{bottom:578.759333pt;}
.y25_c00235{bottom:595.159467pt;}
.y1b_c00235{bottom:597.159333pt;}
.y1a_c00235{bottom:615.559333pt;}
.y1e_c00235{bottom:629.237333pt;}
.y22_c00235{bottom:646.279467pt;}
.y21_c00235{bottom:664.679467pt;}
.y20_c00235{bottom:683.079467pt;}
.y17_c00235{bottom:717.160000pt;}
.y19_c00235{bottom:734.199333pt;}
.yf_c00235{bottom:766.919333pt;}
.y13_c00235{bottom:768.280000pt;}
.ye_c00235{bottom:785.319333pt;}
.y16_c00235{bottom:785.319467pt;}
.yd_c00235{bottom:803.719333pt;}
.y15_c00235{bottom:803.719467pt;}
.yc_c00235{bottom:822.119333pt;}
.y10_c00235{bottom:837.880000pt;}
.yb_c00235{bottom:840.439333pt;}
.y12_c00235{bottom:854.839467pt;}
.y9_c00235{bottom:889.000000pt;}
.y7_c00235{bottom:908.357333pt;}
.y6_c00235{bottom:960.354187pt;}
.y5_c00235{bottom:978.273547pt;}
.y4_c00235{bottom:996.192907pt;}
.y3_c00235{bottom:1014.039067pt;}
.y2_c00235{bottom:1061.399467pt;}
.h7_c00235{height:18.400000pt;}
.h5_c00235{height:18.402667pt;}
.h4_c00235{height:40.574531pt;}
.h2_c00235{height:44.800000pt;}
.h3_c00235{height:48.294844pt;}
.h9_c00235{height:50.080000pt;}
.hb_c00235{height:50.160000pt;}
.h6_c00235{height:68.288000pt;}
.he_c00235{height:68.480000pt;}
.ha_c00235{height:68.560000pt;}
.h8_c00235{height:69.376000pt;}
.hd_c00235{height:86.880000pt;}
.hc_c00235{height:86.960000pt;}
.h0_c00235{height:1122.520000pt;}
.h1_c00235{height:1122.666667pt;}
.w2_c00235{width:187.200000pt;}
.w3_c00235{width:419.921333pt;}
.w4_c00235{width:607.121333pt;}
.w0_c00235{width:793.701333pt;}
.w1_c00235{width:794.000000pt;}
.x0_c00235{left:0.000000pt;}
.xd_c00235{left:7.200000pt;}
.x1_c00235{left:48.000000pt;}
.x4_c00235{left:59.200000pt;}
.x3_c00235{left:106.240000pt;}
.x2_c00235{left:113.440000pt;}
.x12_c00235{left:116.480000pt;}
.xa_c00235{left:118.560000pt;}
.x7_c00235{left:120.160000pt;}
.xf_c00235{left:122.720000pt;}
.x9_c00235{left:124.560000pt;}
.xc_c00235{left:128.560000pt;}
.x13_c00235{left:129.920000pt;}
.x11_c00235{left:137.200000pt;}
.x6_c00235{left:140.560000pt;}
.xb_c00235{left:146.960000pt;}
.x8_c00235{left:148.960000pt;}
.x10_c00235{left:150.160000pt;}
.x14_c00235{left:166.560000pt;}
.x5_c00235{left:293.440000pt;}
.xe_c00235{left:300.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00236;src:url('chunks/assets/font_6fece90344f9bed70516eb79.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00236;src:url('chunks/assets/font_643c11345988c0e08365a344.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00236;src:url('chunks/assets/font_705a620f618bb86ff1910c1e.woff2')format("woff");}.ff4_c00236{font-family:ff4_c00236;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00236;src:url('chunks/assets/font_3f87b497359a40cb65f3db99.woff2')format("woff");}.ff5_c00236{font-family:ff5_c00236;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00236;src:url('chunks/assets/font_2ddb2112bd53efda36ef617e.woff2')format("woff");}.ff6_c00236{font-family:ff6_c00236;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00236;src:url('chunks/assets/font_6bb3b0b61778f8b46bcb2a89.woff2')format("woff");}.ff7_c00236{font-family:ff7_c00236;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00236;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff8_c00236{font-family:ff8_c00236;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00236;src:url('chunks/assets/font_be037b95edb8d7b642c4db7d.woff2')format("woff");}.ff9_c00236{font-family:ff9_c00236;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00236;src:url('chunks/assets/font_5970e36ad346fca84b337d59.woff2')format("woff");}.ffa_c00236{font-family:ffa_c00236;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00236;src:url('chunks/assets/font_6cf947774244d79dfa44b240.woff2')format("woff");}.ffb_c00236{font-family:ffb_c00236;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00236;src:url('chunks/assets/font_d5ad3d53f57805b5fa7ee1b6.woff2')format("woff");}.ffc_c00236{font-family:ffc_c00236;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00236;src:url('chunks/assets/font_ba56b4b215b418be672be114.woff2')format("woff");}.ffd_c00236{font-family:ffd_c00236;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00236;src:url('chunks/assets/font_47978f1163a311e44a39fadb.woff2')format("woff");}.ffe_c00236{font-family:ffe_c00236;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00236{letter-spacing:-0.432000px;}
.ls7_c00236{letter-spacing:-0.288000px;}
.ls6_c00236{letter-spacing:-0.144000px;}
.ls5_c00236{letter-spacing:-0.065880px;}
.ls4_c00236{letter-spacing:0.000000px;}
.ls1_c00236{letter-spacing:0.072000px;}
.ls0_c00236{letter-spacing:0.144000px;}
.ls3_c00236{letter-spacing:17.640000px;}
.ls2_c00236{letter-spacing:18.000000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00236{word-spacing:-18.144000px;}
.ws7_c00236{word-spacing:-18.072000px;}
.ws4_c00236{word-spacing:-18.000000px;}
.ws1_c00236{word-spacing:-17.856000px;}
.ws8_c00236{word-spacing:-17.712000px;}
.ws6_c00236{word-spacing:-14.888880px;}
.ws0_c00236{word-spacing:-14.823000px;}
.ws12_c00236{word-spacing:-0.504000px;}
.ws11_c00236{word-spacing:-0.432000px;}
.wsd_c00236{word-spacing:-0.360000px;}
.wsc_c00236{word-spacing:-0.144000px;}
.ws9_c00236{word-spacing:-0.131760px;}
.wse_c00236{word-spacing:-0.072000px;}
.ws2_c00236{word-spacing:0.000000px;}
.wsb_c00236{word-spacing:0.144000px;}
.ws3_c00236{word-spacing:0.144600px;}
.wsf_c00236{word-spacing:0.288000px;}
.ws10_c00236{word-spacing:0.432000px;}
.wsa_c00236{word-spacing:2.371680px;}
.ws13_c00236{word-spacing:35.179920px;}
._1_c00236{margin-left:-1.008000px;}
._0_c00236{width:1.185840px;}
.fc2_c00236{color:transparent;}
.fc1_c00236{color:rgb(0,0,0);}
.fc0_c00236{color:rgb(35,31,32);}
.fs1_c00236{font-size:65.880000px;}
.fs0_c00236{font-size:72.000000px;}
.y0_c00236{bottom:0.000000px;}
.ya_c00236{bottom:3.959250px;}
.y8_c00236{bottom:3.960750px;}
.y4a_c00236{bottom:3.962250px;}
.y4c_c00236{bottom:3.962400px;}
.y74_c00236{bottom:19.172400px;}
.y5d_c00236{bottom:39.779250px;}
.y11_c00236{bottom:39.779400px;}
.y28_c00236{bottom:39.869250px;}
.y18_c00236{bottom:39.869400px;}
.y55_c00236{bottom:39.870900px;}
.y66_c00236{bottom:39.872400px;}
.y46_c00236{bottom:60.479400px;}
.y39_c00236{bottom:60.480900px;}
.y14_c00236{bottom:60.569250px;}
.y24_c00236{bottom:60.569400px;}
.y1_c00236{bottom:61.748550px;}
.y37_c00236{bottom:81.179250px;}
.y44_c00236{bottom:81.179400px;}
.y32_c00236{bottom:81.180900px;}
.y58_c00236{bottom:81.269250px;}
.y42_c00236{bottom:81.269400px;}
.y1f_c00236{bottom:81.270900px;}
.y3e_c00236{bottom:123.975000px;}
.y3f_c00236{bottom:143.054400px;}
.y3c_c00236{bottom:181.035000px;}
.y3d_c00236{bottom:200.204400px;}
.y78_c00236{bottom:223.605000px;}
.y38_c00236{bottom:238.633500px;}
.y45_c00236{bottom:238.635000px;}
.y79_c00236{bottom:242.684400px;}
.y3b_c00236{bottom:257.714400px;}
.y3a_c00236{bottom:278.414400px;}
.y75_c00236{bottom:281.115000px;}
.y77_c00236{bottom:300.284400px;}
.y36_c00236{bottom:316.845000px;}
.y76_c00236{bottom:320.984400px;}
.y6d_c00236{bottom:326.744250px;}
.y30_c00236{bottom:335.924400px;}
.y6c_c00236{bottom:347.444250px;}
.y2f_c00236{bottom:356.624400px;}
.y73_c00236{bottom:359.322000px;}
.y6b_c00236{bottom:368.144250px;}
.y2e_c00236{bottom:377.324400px;}
.y6a_c00236{bottom:388.844250px;}
.y71_c00236{bottom:396.135000px;}
.y2d_c00236{bottom:398.024400px;}
.y69_c00236{bottom:409.544250px;}
.y72_c00236{bottom:415.304400px;}
.y31_c00236{bottom:415.753500px;}
.y43_c00236{bottom:415.755000px;}
.y2c_c00236{bottom:418.634400px;}
.y68_c00236{bottom:430.154250px;}
.y35_c00236{bottom:434.834400px;}
.y6e_c00236{bottom:453.645000px;}
.y34_c00236{bottom:455.534400px;}
.y70_c00236{bottom:472.814400px;}
.y33_c00236{bottom:476.234400px;}
.y6f_c00236{bottom:493.514400px;}
.y2a_c00236{bottom:514.665000px;}
.y65_c00236{bottom:531.852000px;}
.y2b_c00236{bottom:533.834400px;}
.y67_c00236{bottom:551.024250px;}
.y27_c00236{bottom:572.175000px;}
.y63_c00236{bottom:589.455000px;}
.y29_c00236{bottom:591.344400px;}
.y64_c00236{bottom:608.534250px;}
.y23_c00236{bottom:629.685000px;}
.y1d_c00236{bottom:630.404250px;}
.y5f_c00236{bottom:646.965000px;}
.y26_c00236{bottom:648.854400px;}
.y1c_c00236{bottom:651.104250px;}
.y62_c00236{bottom:666.044250px;}
.y25_c00236{bottom:669.554400px;}
.y1b_c00236{bottom:671.804250px;}
.y53_c00236{bottom:684.494400px;}
.y61_c00236{bottom:686.744250px;}
.y1a_c00236{bottom:692.504250px;}
.y52_c00236{bottom:705.194400px;}
.y60_c00236{bottom:707.444250px;}
.y1e_c00236{bottom:707.893500px;}
.y41_c00236{bottom:707.895000px;}
.y51_c00236{bottom:725.894400px;}
.y22_c00236{bottom:727.064400px;}
.y5c_c00236{bottom:745.875000px;}
.y50_c00236{bottom:746.594400px;}
.y21_c00236{bottom:747.764400px;}
.y5e_c00236{bottom:764.954250px;}
.y4f_c00236{bottom:767.294400px;}
.y20_c00236{bottom:768.464400px;}
.y4e_c00236{bottom:787.994400px;}
.y57_c00236{bottom:803.385000px;}
.y17_c00236{bottom:806.805000px;}
.y4d_c00236{bottom:808.604400px;}
.y5b_c00236{bottom:822.554250px;}
.y19_c00236{bottom:825.974250px;}
.y5a_c00236{bottom:843.254250px;}
.yf_c00236{bottom:862.784250px;}
.y59_c00236{bottom:863.954250px;}
.y13_c00236{bottom:864.315000px;}
.ye_c00236{bottom:883.484250px;}
.y16_c00236{bottom:883.484400px;}
.y54_c00236{bottom:902.293500px;}
.yd_c00236{bottom:904.184250px;}
.y15_c00236{bottom:904.184400px;}
.y56_c00236{bottom:921.464400px;}
.yc_c00236{bottom:924.884250px;}
.y10_c00236{bottom:942.615000px;}
.yb_c00236{bottom:945.494250px;}
.y4b_c00236{bottom:959.802000px;}
.y12_c00236{bottom:961.694400px;}
.y49_c00236{bottom:981.672000px;}
.y9_c00236{bottom:1000.125000px;}
.y7_c00236{bottom:1021.903500px;}
.y40_c00236{bottom:1021.905000px;}
.y48_c00236{bottom:1040.079900px;}
.y47_c00236{bottom:1060.239180px;}
.y6_c00236{bottom:1080.398460px;}
.y5_c00236{bottom:1100.557740px;}
.y4_c00236{bottom:1120.717020px;}
.y3_c00236{bottom:1140.793950px;}
.y2_c00236{bottom:1194.074400px;}
.h7_c00236{height:20.700000px;}
.h5_c00236{height:20.701500px;}
.hf_c00236{height:20.703000px;}
.h12_c00236{height:35.730000px;}
.h4_c00236{height:45.646348px;}
.h2_c00236{height:50.400000px;}
.h3_c00236{height:54.331699px;}
.h9_c00236{height:56.340000px;}
.h11_c00236{height:56.341500px;}
.hb_c00236{height:56.430000px;}
.h6_c00236{height:76.824000px;}
.he_c00236{height:77.040000px;}
.ha_c00236{height:77.130000px;}
.h8_c00236{height:78.048000px;}
.hd_c00236{height:97.740000px;}
.h10_c00236{height:97.828500px;}
.hc_c00236{height:97.830000px;}
.h0_c00236{height:1262.835000px;}
.h1_c00236{height:1263.000000px;}
.w3_c00236{width:-562.794000px;}
.w4_c00236{width:-90.382500px;}
.w2_c00236{width:0.000000px;}
.w5_c00236{width:0.066000px;}
.w6_c00236{width:210.600000px;}
.w7_c00236{width:472.411500px;}
.w8_c00236{width:683.011500px;}
.w0_c00236{width:892.914000px;}
.w1_c00236{width:893.250000px;}
.x1_c00236{left:-838.913400px;}
.x2_c00236{left:-765.293400px;}
.xf_c00236{left:-761.873550px;}
.x8_c00236{left:-759.533400px;}
.xc_c00236{left:-754.853550px;}
.x7_c00236{left:-752.783400px;}
.xa_c00236{left:-748.283400px;}
.x10_c00236{left:-746.753550px;}
.xe_c00236{left:-738.563550px;}
.x9_c00236{left:-727.583400px;}
.x6_c00236{left:-725.333400px;}
.xd_c00236{left:-723.983550px;}
.x3_c00236{left:-706.793400px;}
.x11_c00236{left:-705.533550px;}
.x5_c00236{left:-638.213400px;}
.xb_c00236{left:-554.693550px;}
.x4_c00236{left:-404.663400px;}
.x0_c00236{left:0.000000px;}
.x21_c00236{left:8.100000px;}
.x16_c00236{left:66.600000px;}
.x15_c00236{left:119.520000px;}
.x14_c00236{left:127.619730px;}
.x1c_c00236{left:130.860000px;}
.x1b_c00236{left:132.840000px;}
.x24_c00236{left:134.820000px;}
.x23_c00236{left:140.580000px;}
.x25_c00236{left:141.840000px;}
.x1a_c00236{left:152.100000px;}
.x19_c00236{left:156.240000px;}
.x18_c00236{left:158.130000px;}
.x1e_c00236{left:162.360000px;}
.x1f_c00236{left:167.580000px;}
.x20_c00236{left:179.820000px;}
.x1d_c00236{left:186.030000px;}
.x17_c00236{left:330.120000px;}
.x22_c00236{left:338.220000px;}
.x13_c00236{left:696.510000px;}
.x12_c00236{left:804.366150px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls8_c00236{letter-spacing:-0.384000pt;}
.ls7_c00236{letter-spacing:-0.256000pt;}
.ls6_c00236{letter-spacing:-0.128000pt;}
.ls5_c00236{letter-spacing:-0.058560pt;}
.ls4_c00236{letter-spacing:0.000000pt;}
.ls1_c00236{letter-spacing:0.064000pt;}
.ls0_c00236{letter-spacing:0.128000pt;}
.ls3_c00236{letter-spacing:15.680000pt;}
.ls2_c00236{letter-spacing:16.000000pt;}
.ws5_c00236{word-spacing:-16.128000pt;}
.ws7_c00236{word-spacing:-16.064000pt;}
.ws4_c00236{word-spacing:-16.000000pt;}
.ws1_c00236{word-spacing:-15.872000pt;}
.ws8_c00236{word-spacing:-15.744000pt;}
.ws6_c00236{word-spacing:-13.234560pt;}
.ws0_c00236{word-spacing:-13.176000pt;}
.ws12_c00236{word-spacing:-0.448000pt;}
.ws11_c00236{word-spacing:-0.384000pt;}
.wsd_c00236{word-spacing:-0.320000pt;}
.wsc_c00236{word-spacing:-0.128000pt;}
.ws9_c00236{word-spacing:-0.117120pt;}
.wse_c00236{word-spacing:-0.064000pt;}
.ws2_c00236{word-spacing:0.000000pt;}
.wsb_c00236{word-spacing:0.128000pt;}
.ws3_c00236{word-spacing:0.128533pt;}
.wsf_c00236{word-spacing:0.256000pt;}
.ws10_c00236{word-spacing:0.384000pt;}
.wsa_c00236{word-spacing:2.108160pt;}
.ws13_c00236{word-spacing:31.271040pt;}
._1_c00236{margin-left:-0.896000pt;}
._0_c00236{width:1.054080pt;}
.fs1_c00236{font-size:58.560000pt;}
.fs0_c00236{font-size:64.000000pt;}
.y0_c00236{bottom:0.000000pt;}
.ya_c00236{bottom:3.519333pt;}
.y8_c00236{bottom:3.520667pt;}
.y4a_c00236{bottom:3.522000pt;}
.y4c_c00236{bottom:3.522133pt;}
.y74_c00236{bottom:17.042133pt;}
.y5d_c00236{bottom:35.359333pt;}
.y11_c00236{bottom:35.359467pt;}
.y28_c00236{bottom:35.439333pt;}
.y18_c00236{bottom:35.439467pt;}
.y55_c00236{bottom:35.440800pt;}
.y66_c00236{bottom:35.442133pt;}
.y46_c00236{bottom:53.759467pt;}
.y39_c00236{bottom:53.760800pt;}
.y14_c00236{bottom:53.839333pt;}
.y24_c00236{bottom:53.839467pt;}
.y1_c00236{bottom:54.887600pt;}
.y37_c00236{bottom:72.159333pt;}
.y44_c00236{bottom:72.159467pt;}
.y32_c00236{bottom:72.160800pt;}
.y58_c00236{bottom:72.239333pt;}
.y42_c00236{bottom:72.239467pt;}
.y1f_c00236{bottom:72.240800pt;}
.y3e_c00236{bottom:110.200000pt;}
.y3f_c00236{bottom:127.159467pt;}
.y3c_c00236{bottom:160.920000pt;}
.y3d_c00236{bottom:177.959467pt;}
.y78_c00236{bottom:198.760000pt;}
.y38_c00236{bottom:212.118667pt;}
.y45_c00236{bottom:212.120000pt;}
.y79_c00236{bottom:215.719467pt;}
.y3b_c00236{bottom:229.079467pt;}
.y3a_c00236{bottom:247.479467pt;}
.y75_c00236{bottom:249.880000pt;}
.y77_c00236{bottom:266.919467pt;}
.y36_c00236{bottom:281.640000pt;}
.y76_c00236{bottom:285.319467pt;}
.y6d_c00236{bottom:290.439333pt;}
.y30_c00236{bottom:298.599467pt;}
.y6c_c00236{bottom:308.839333pt;}
.y2f_c00236{bottom:316.999467pt;}
.y73_c00236{bottom:319.397333pt;}
.y6b_c00236{bottom:327.239333pt;}
.y2e_c00236{bottom:335.399467pt;}
.y6a_c00236{bottom:345.639333pt;}
.y71_c00236{bottom:352.120000pt;}
.y2d_c00236{bottom:353.799467pt;}
.y69_c00236{bottom:364.039333pt;}
.y72_c00236{bottom:369.159467pt;}
.y31_c00236{bottom:369.558667pt;}
.y43_c00236{bottom:369.560000pt;}
.y2c_c00236{bottom:372.119467pt;}
.y68_c00236{bottom:382.359333pt;}
.y35_c00236{bottom:386.519467pt;}
.y6e_c00236{bottom:403.240000pt;}
.y34_c00236{bottom:404.919467pt;}
.y70_c00236{bottom:420.279467pt;}
.y33_c00236{bottom:423.319467pt;}
.y6f_c00236{bottom:438.679467pt;}
.y2a_c00236{bottom:457.480000pt;}
.y65_c00236{bottom:472.757333pt;}
.y2b_c00236{bottom:474.519467pt;}
.y67_c00236{bottom:489.799333pt;}
.y27_c00236{bottom:508.600000pt;}
.y63_c00236{bottom:523.960000pt;}
.y29_c00236{bottom:525.639467pt;}
.y64_c00236{bottom:540.919333pt;}
.y23_c00236{bottom:559.720000pt;}
.y1d_c00236{bottom:560.359333pt;}
.y5f_c00236{bottom:575.080000pt;}
.y26_c00236{bottom:576.759467pt;}
.y1c_c00236{bottom:578.759333pt;}
.y62_c00236{bottom:592.039333pt;}
.y25_c00236{bottom:595.159467pt;}
.y1b_c00236{bottom:597.159333pt;}
.y53_c00236{bottom:608.439467pt;}
.y61_c00236{bottom:610.439333pt;}
.y1a_c00236{bottom:615.559333pt;}
.y52_c00236{bottom:626.839467pt;}
.y60_c00236{bottom:628.839333pt;}
.y1e_c00236{bottom:629.238667pt;}
.y41_c00236{bottom:629.240000pt;}
.y51_c00236{bottom:645.239467pt;}
.y22_c00236{bottom:646.279467pt;}
.y5c_c00236{bottom:663.000000pt;}
.y50_c00236{bottom:663.639467pt;}
.y21_c00236{bottom:664.679467pt;}
.y5e_c00236{bottom:679.959333pt;}
.y4f_c00236{bottom:682.039467pt;}
.y20_c00236{bottom:683.079467pt;}
.y4e_c00236{bottom:700.439467pt;}
.y57_c00236{bottom:714.120000pt;}
.y17_c00236{bottom:717.160000pt;}
.y4d_c00236{bottom:718.759467pt;}
.y5b_c00236{bottom:731.159333pt;}
.y19_c00236{bottom:734.199333pt;}
.y5a_c00236{bottom:749.559333pt;}
.yf_c00236{bottom:766.919333pt;}
.y59_c00236{bottom:767.959333pt;}
.y13_c00236{bottom:768.280000pt;}
.ye_c00236{bottom:785.319333pt;}
.y16_c00236{bottom:785.319467pt;}
.y54_c00236{bottom:802.038667pt;}
.yd_c00236{bottom:803.719333pt;}
.y15_c00236{bottom:803.719467pt;}
.y56_c00236{bottom:819.079467pt;}
.yc_c00236{bottom:822.119333pt;}
.y10_c00236{bottom:837.880000pt;}
.yb_c00236{bottom:840.439333pt;}
.y4b_c00236{bottom:853.157333pt;}
.y12_c00236{bottom:854.839467pt;}
.y49_c00236{bottom:872.597333pt;}
.y9_c00236{bottom:889.000000pt;}
.y7_c00236{bottom:908.358667pt;}
.y40_c00236{bottom:908.360000pt;}
.y48_c00236{bottom:924.515467pt;}
.y47_c00236{bottom:942.434827pt;}
.y6_c00236{bottom:960.354187pt;}
.y5_c00236{bottom:978.273547pt;}
.y4_c00236{bottom:996.192907pt;}
.y3_c00236{bottom:1014.039067pt;}
.y2_c00236{bottom:1061.399467pt;}
.h7_c00236{height:18.400000pt;}
.h5_c00236{height:18.401333pt;}
.hf_c00236{height:18.402667pt;}
.h12_c00236{height:31.760000pt;}
.h4_c00236{height:40.574531pt;}
.h2_c00236{height:44.800000pt;}
.h3_c00236{height:48.294844pt;}
.h9_c00236{height:50.080000pt;}
.h11_c00236{height:50.081333pt;}
.hb_c00236{height:50.160000pt;}
.h6_c00236{height:68.288000pt;}
.he_c00236{height:68.480000pt;}
.ha_c00236{height:68.560000pt;}
.h8_c00236{height:69.376000pt;}
.hd_c00236{height:86.880000pt;}
.h10_c00236{height:86.958667pt;}
.hc_c00236{height:86.960000pt;}
.h0_c00236{height:1122.520000pt;}
.h1_c00236{height:1122.666667pt;}
.w3_c00236{width:-500.261333pt;}
.w4_c00236{width:-80.340000pt;}
.w2_c00236{width:0.000000pt;}
.w5_c00236{width:0.058667pt;}
.w6_c00236{width:187.200000pt;}
.w7_c00236{width:419.921333pt;}
.w8_c00236{width:607.121333pt;}
.w0_c00236{width:793.701333pt;}
.w1_c00236{width:794.000000pt;}
.x1_c00236{left:-745.700800pt;}
.x2_c00236{left:-680.260800pt;}
.xf_c00236{left:-677.220933pt;}
.x8_c00236{left:-675.140800pt;}
.xc_c00236{left:-670.980933pt;}
.x7_c00236{left:-669.140800pt;}
.xa_c00236{left:-665.140800pt;}
.x10_c00236{left:-663.780933pt;}
.xe_c00236{left:-656.500933pt;}
.x9_c00236{left:-646.740800pt;}
.x6_c00236{left:-644.740800pt;}
.xd_c00236{left:-643.540933pt;}
.x3_c00236{left:-628.260800pt;}
.x11_c00236{left:-627.140933pt;}
.x5_c00236{left:-567.300800pt;}
.xb_c00236{left:-493.060933pt;}
.x4_c00236{left:-359.700800pt;}
.x0_c00236{left:0.000000pt;}
.x21_c00236{left:7.200000pt;}
.x16_c00236{left:59.200000pt;}
.x15_c00236{left:106.240000pt;}
.x14_c00236{left:113.439760pt;}
.x1c_c00236{left:116.320000pt;}
.x1b_c00236{left:118.080000pt;}
.x24_c00236{left:119.840000pt;}
.x23_c00236{left:124.960000pt;}
.x25_c00236{left:126.080000pt;}
.x1a_c00236{left:135.200000pt;}
.x19_c00236{left:138.880000pt;}
.x18_c00236{left:140.560000pt;}
.x1e_c00236{left:144.320000pt;}
.x1f_c00236{left:148.960000pt;}
.x20_c00236{left:159.840000pt;}
.x1d_c00236{left:165.360000pt;}
.x17_c00236{left:293.440000pt;}
.x22_c00236{left:300.640000pt;}
.x13_c00236{left:619.120000pt;}
.x12_c00236{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00237;src:url('chunks/assets/font_402c3fffc48ffa83b21b2696.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00237;src:url('chunks/assets/font_08fe5dcd3314bb6391ed4402.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00237;src:url('chunks/assets/font_c113c1cf72baba1da02b2764.woff2')format("woff");}.ff4_c00237{font-family:ff4_c00237;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00237;src:url('chunks/assets/font_eff8b95e4e047ef51c37fe2e.woff2')format("woff");}.ff5_c00237{font-family:ff5_c00237;line-height:1.592000;font-style: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;}
.ls8_c00237{letter-spacing:-0.288000px;}
.ls7_c00237{letter-spacing:-0.144000px;}
.ls6_c00237{letter-spacing:0.000000px;}
.ls0_c00237{letter-spacing:0.072000px;}
.ls4_c00237{letter-spacing:0.144000px;}
.ls1_c00237{letter-spacing:18.144000px;}
.ls5_c00237{letter-spacing:23.414400px;}
.ls2_c00237{letter-spacing:26.424000px;}
.ls3_c00237{letter-spacing:33.120000px;}
.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;}
}
.ws1_c00237{word-spacing:-18.144000px;}
.ws2_c00237{word-spacing:-18.072000px;}
.ws19_c00237{word-spacing:-0.144000px;}
.ws5_c00237{word-spacing:-0.072000px;}
.ws4_c00237{word-spacing:0.000000px;}
.ws3_c00237{word-spacing:0.144000px;}
.ws14_c00237{word-spacing:1.728000px;}
.ws13_c00237{word-spacing:1.800000px;}
.ws18_c00237{word-spacing:3.888000px;}
.ws6_c00237{word-spacing:4.248000px;}
.ws16_c00237{word-spacing:5.688000px;}
.ws17_c00237{word-spacing:5.760000px;}
.ws7_c00237{word-spacing:7.128000px;}
.wse_c00237{word-spacing:8.280000px;}
.ws10_c00237{word-spacing:9.648000px;}
.wsd_c00237{word-spacing:11.232000px;}
.wsb_c00237{word-spacing:11.448000px;}
.wsc_c00237{word-spacing:11.520000px;}
.wsf_c00237{word-spacing:14.688000px;}
.ws12_c00237{word-spacing:15.264000px;}
.ws11_c00237{word-spacing:15.480000px;}
.ws15_c00237{word-spacing:16.848000px;}
.ws8_c00237{word-spacing:26.568000px;}
.ws9_c00237{word-spacing:26.640000px;}
.wsa_c00237{word-spacing:26.928000px;}
.ws0_c00237{word-spacing:104.400000px;}
._0_c00237{margin-left:-1.238400px;}
._2_c00237{width:1.065600px;}
._1_c00237{width:26.481600px;}
.fc1_c00237{color:rgb(0,0,0);}
.fc0_c00237{color:rgb(35,31,32);}
.fs1_c00237{font-size:65.880000px;}
.fs0_c00237{font-size:72.000000px;}
.y0_c00237{bottom:0.000000px;}
.y1_c00237{bottom:61.748550px;}
.y1c_c00237{bottom:146.384400px;}
.y1b_c00237{bottom:177.434400px;}
.y1a_c00237{bottom:208.484400px;}
.y19_c00237{bottom:239.534400px;}
.y18_c00237{bottom:301.634400px;}
.y17_c00237{bottom:332.684400px;}
.y16_c00237{bottom:363.734400px;}
.y15_c00237{bottom:425.834400px;}
.y14_c00237{bottom:456.884400px;}
.y13_c00237{bottom:487.934400px;}
.y12_c00237{bottom:518.984400px;}
.y11_c00237{bottom:580.904400px;}
.y10_c00237{bottom:643.184400px;}
.yf_c00237{bottom:674.234400px;}
.ye_c00237{bottom:705.284400px;}
.yd_c00237{bottom:767.384400px;}
.yc_c00237{bottom:798.434400px;}
.yb_c00237{bottom:829.484400px;}
.ya_c00237{bottom:860.534400px;}
.y9_c00237{bottom:891.584400px;}
.y8_c00237{bottom:953.684400px;}
.y7_c00237{bottom:984.644400px;}
.y6_c00237{bottom:1015.694400px;}
.y5_c00237{bottom:1046.744400px;}
.y4_c00237{bottom:1077.794400px;}
.y3_c00237{bottom:1139.714400px;}
.y2_c00237{bottom:1194.074400px;}
.h2_c00237{height:50.400000px;}
.h3_c00237{height:54.331699px;}
.h4_c00237{height:76.824000px;}
.h5_c00237{height:78.048000px;}
.h0_c00237{height:1262.835000px;}
.h1_c00237{height:1263.000000px;}
.w0_c00237{width:892.914000px;}
.w1_c00237{width:893.250000px;}
.x0_c00237{left:0.000000px;}
.x1_c00237{left:54.000000px;}
.x2_c00237{left:127.620000px;}
.x4_c00237{left:148.950000px;}
.x3_c00237{left:159.570000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls8_c00237{letter-spacing:-0.256000pt;}
.ls7_c00237{letter-spacing:-0.128000pt;}
.ls6_c00237{letter-spacing:0.000000pt;}
.ls0_c00237{letter-spacing:0.064000pt;}
.ls4_c00237{letter-spacing:0.128000pt;}
.ls1_c00237{letter-spacing:16.128000pt;}
.ls5_c00237{letter-spacing:20.812800pt;}
.ls2_c00237{letter-spacing:23.488000pt;}
.ls3_c00237{letter-spacing:29.440000pt;}
.ws1_c00237{word-spacing:-16.128000pt;}
.ws2_c00237{word-spacing:-16.064000pt;}
.ws19_c00237{word-spacing:-0.128000pt;}
.ws5_c00237{word-spacing:-0.064000pt;}
.ws4_c00237{word-spacing:0.000000pt;}
.ws3_c00237{word-spacing:0.128000pt;}
.ws14_c00237{word-spacing:1.536000pt;}
.ws13_c00237{word-spacing:1.600000pt;}
.ws18_c00237{word-spacing:3.456000pt;}
.ws6_c00237{word-spacing:3.776000pt;}
.ws16_c00237{word-spacing:5.056000pt;}
.ws17_c00237{word-spacing:5.120000pt;}
.ws7_c00237{word-spacing:6.336000pt;}
.wse_c00237{word-spacing:7.360000pt;}
.ws10_c00237{word-spacing:8.576000pt;}
.wsd_c00237{word-spacing:9.984000pt;}
.wsb_c00237{word-spacing:10.176000pt;}
.wsc_c00237{word-spacing:10.240000pt;}
.wsf_c00237{word-spacing:13.056000pt;}
.ws12_c00237{word-spacing:13.568000pt;}
.ws11_c00237{word-spacing:13.760000pt;}
.ws15_c00237{word-spacing:14.976000pt;}
.ws8_c00237{word-spacing:23.616000pt;}
.ws9_c00237{word-spacing:23.680000pt;}
.wsa_c00237{word-spacing:23.936000pt;}
.ws0_c00237{word-spacing:92.800000pt;}
._0_c00237{margin-left:-1.100800pt;}
._2_c00237{width:0.947200pt;}
._1_c00237{width:23.539200pt;}
.fs1_c00237{font-size:58.560000pt;}
.fs0_c00237{font-size:64.000000pt;}
.y0_c00237{bottom:0.000000pt;}
.y1_c00237{bottom:54.887600pt;}
.y1c_c00237{bottom:130.119467pt;}
.y1b_c00237{bottom:157.719467pt;}
.y1a_c00237{bottom:185.319467pt;}
.y19_c00237{bottom:212.919467pt;}
.y18_c00237{bottom:268.119467pt;}
.y17_c00237{bottom:295.719467pt;}
.y16_c00237{bottom:323.319467pt;}
.y15_c00237{bottom:378.519467pt;}
.y14_c00237{bottom:406.119467pt;}
.y13_c00237{bottom:433.719467pt;}
.y12_c00237{bottom:461.319467pt;}
.y11_c00237{bottom:516.359467pt;}
.y10_c00237{bottom:571.719467pt;}
.yf_c00237{bottom:599.319467pt;}
.ye_c00237{bottom:626.919467pt;}
.yd_c00237{bottom:682.119467pt;}
.yc_c00237{bottom:709.719467pt;}
.yb_c00237{bottom:737.319467pt;}
.ya_c00237{bottom:764.919467pt;}
.y9_c00237{bottom:792.519467pt;}
.y8_c00237{bottom:847.719467pt;}
.y7_c00237{bottom:875.239467pt;}
.y6_c00237{bottom:902.839467pt;}
.y5_c00237{bottom:930.439467pt;}
.y4_c00237{bottom:958.039467pt;}
.y3_c00237{bottom:1013.079467pt;}
.y2_c00237{bottom:1061.399467pt;}
.h2_c00237{height:44.800000pt;}
.h3_c00237{height:48.294844pt;}
.h4_c00237{height:68.288000pt;}
.h5_c00237{height:69.376000pt;}
.h0_c00237{height:1122.520000pt;}
.h1_c00237{height:1122.666667pt;}
.w0_c00237{width:793.701333pt;}
.w1_c00237{width:794.000000pt;}
.x0_c00237{left:0.000000pt;}
.x1_c00237{left:48.000000pt;}
.x2_c00237{left:113.440000pt;}
.x4_c00237{left:132.400000pt;}
.x3_c00237{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00238;src:url('chunks/assets/font_be62cf3632dd3560eb442025.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00238;src:url('chunks/assets/font_3c90a776a2b428c58618d821.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00238;src:url('chunks/assets/font_dce68060547fa8cbf3a5a011.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00238;src:url('chunks/assets/font_c1cd99c907d862e1f3cbca3b.woff2')format("woff");}.ff5_c00238{font-family:ff5_c00238;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00238;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00238{font-family:ff6_c00238;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00238;src:url('chunks/assets/font_391a9143b378c64dbf2f5bcd.woff2')format("woff");}.ff7_c00238{font-family:ff7_c00238;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00238;src:url('chunks/assets/font_9a45f140a2bfee04715eb756.woff2')format("woff");}.ff8_c00238{font-family:ff8_c00238;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00238;src:url('chunks/assets/font_646445d89c62da07ef6fe00e.woff2')format("woff");}.ff9_c00238{font-family:ff9_c00238;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00238;src:url('chunks/assets/font_c0d27f0a28068ee39c7da434.woff2')format("woff");}.ffa_c00238{font-family:ffa_c00238;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00238;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ffb_c00238{font-family:ffb_c00238;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb_c00238{letter-spacing:-0.288000px;}
.lsa_c00238{letter-spacing:-0.144000px;}
.ls9_c00238{letter-spacing:0.000000px;}
.ls0_c00238{letter-spacing:0.072000px;}
.ls4_c00238{letter-spacing:0.144000px;}
.ls1_c00238{letter-spacing:18.144000px;}
.ls5_c00238{letter-spacing:23.414400px;}
.ls2_c00238{letter-spacing:26.424000px;}
.ls8_c00238{letter-spacing:31.680000px;}
.ls3_c00238{letter-spacing:33.120000px;}
.ls6_c00238{letter-spacing:45.432000px;}
.ls7_c00238{letter-spacing:55.872000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00238{word-spacing:-18.144000px;}
.ws2_c00238{word-spacing:-18.072000px;}
.ws4_c00238{word-spacing:-18.000000px;}
.ws1c_c00238{word-spacing:-0.144000px;}
.ws1d_c00238{word-spacing:-0.131760px;}
.ws8_c00238{word-spacing:-0.072000px;}
.ws7_c00238{word-spacing:0.000000px;}
.ws3_c00238{word-spacing:0.144000px;}
.ws31_c00238{word-spacing:0.216000px;}
.ws30_c00238{word-spacing:0.360000px;}
.ws2d_c00238{word-spacing:0.720000px;}
.ws1f_c00238{word-spacing:1.080000px;}
.ws2a_c00238{word-spacing:1.368000px;}
.ws29_c00238{word-spacing:1.440000px;}
.ws17_c00238{word-spacing:1.728000px;}
.ws16_c00238{word-spacing:1.800000px;}
.ws1b_c00238{word-spacing:3.888000px;}
.ws9_c00238{word-spacing:4.248000px;}
.ws26_c00238{word-spacing:5.328000px;}
.ws19_c00238{word-spacing:5.688000px;}
.ws1a_c00238{word-spacing:5.760000px;}
.wsa_c00238{word-spacing:7.128000px;}
.ws11_c00238{word-spacing:8.280000px;}
.ws21_c00238{word-spacing:9.288000px;}
.ws13_c00238{word-spacing:9.648000px;}
.ws27_c00238{word-spacing:10.008000px;}
.ws28_c00238{word-spacing:10.080000px;}
.ws32_c00238{word-spacing:10.368000px;}
.ws20_c00238{word-spacing:10.728000px;}
.ws33_c00238{word-spacing:10.800000px;}
.ws10_c00238{word-spacing:11.232000px;}
.wse_c00238{word-spacing:11.448000px;}
.wsf_c00238{word-spacing:11.520000px;}
.ws34_c00238{word-spacing:13.320000px;}
.ws35_c00238{word-spacing:13.680000px;}
.ws12_c00238{word-spacing:14.688000px;}
.ws2e_c00238{word-spacing:15.048000px;}
.ws15_c00238{word-spacing:15.264000px;}
.ws14_c00238{word-spacing:15.480000px;}
.ws18_c00238{word-spacing:16.848000px;}
.ws22_c00238{word-spacing:19.008000px;}
.ws23_c00238{word-spacing:21.600000px;}
.ws36_c00238{word-spacing:22.248000px;}
.wsb_c00238{word-spacing:26.568000px;}
.wsc_c00238{word-spacing:26.640000px;}
.wsd_c00238{word-spacing:26.928000px;}
.ws24_c00238{word-spacing:32.328000px;}
.ws2f_c00238{word-spacing:32.616000px;}
.ws25_c00238{word-spacing:32.688000px;}
.ws5_c00238{word-spacing:32.760000px;}
.ws1e_c00238{word-spacing:35.928000px;}
.ws6_c00238{word-spacing:37.440000px;}
.ws2c_c00238{word-spacing:37.728000px;}
.ws2b_c00238{word-spacing:37.800000px;}
.ws37_c00238{word-spacing:45.000000px;}
.ws0_c00238{word-spacing:104.400000px;}
._0_c00238{margin-left:-1.238400px;}
._2_c00238{width:1.072800px;}
._5_c00238{width:13.608000px;}
._1_c00238{width:26.481600px;}
._4_c00238{width:45.662400px;}
._6_c00238{width:62.654400px;}
._3_c00238{width:158.400000px;}
.fc2_c00238{color:transparent;}
.fc1_c00238{color:rgb(0,0,0);}
.fc0_c00238{color:rgb(35,31,32);}
.fs1_c00238{font-size:65.880000px;}
.fs0_c00238{font-size:72.000000px;}
.y0_c00238{bottom:0.000000px;}
.y1_c00238{bottom:61.748550px;}
.y2d_c00238{bottom:111.464400px;}
.y2c_c00238{bottom:142.514400px;}
.y1c_c00238{bottom:146.384400px;}
.y2b_c00238{bottom:173.564400px;}
.y1b_c00238{bottom:177.434400px;}
.y1a_c00238{bottom:208.484400px;}
.y2a_c00238{bottom:235.664400px;}
.y19_c00238{bottom:239.534400px;}
.y29_c00238{bottom:266.714400px;}
.y28_c00238{bottom:297.764400px;}
.y18_c00238{bottom:301.634400px;}
.y27_c00238{bottom:328.724400px;}
.y17_c00238{bottom:332.684400px;}
.y26_c00238{bottom:361.124400px;}
.y16_c00238{bottom:363.734400px;}
.y25_c00238{bottom:392.174400px;}
.y24_c00238{bottom:423.224400px;}
.y15_c00238{bottom:425.834400px;}
.y23_c00238{bottom:454.274400px;}
.y14_c00238{bottom:456.884400px;}
.y22_c00238{bottom:485.324400px;}
.y13_c00238{bottom:487.934400px;}
.y21_c00238{bottom:517.724400px;}
.y12_c00238{bottom:518.984400px;}
.y20_c00238{bottom:548.774400px;}
.y1f_c00238{bottom:579.734400px;}
.y11_c00238{bottom:580.904400px;}
.y10_c00238{bottom:643.184400px;}
.yf_c00238{bottom:674.234400px;}
.ye_c00238{bottom:705.284400px;}
.y1e_c00238{bottom:736.334400px;}
.yd_c00238{bottom:767.384400px;}
.yc_c00238{bottom:798.434400px;}
.yb_c00238{bottom:829.484400px;}
.ya_c00238{bottom:860.534400px;}
.y9_c00238{bottom:891.584400px;}
.y1d_c00238{bottom:922.634400px;}
.y8_c00238{bottom:953.684400px;}
.y7_c00238{bottom:984.644400px;}
.y6_c00238{bottom:1015.694400px;}
.y5_c00238{bottom:1046.744400px;}
.y4_c00238{bottom:1077.794400px;}
.y3_c00238{bottom:1139.714400px;}
.y2_c00238{bottom:1194.074400px;}
.h2_c00238{height:50.400000px;}
.h3_c00238{height:54.331699px;}
.h4_c00238{height:76.824000px;}
.h5_c00238{height:78.048000px;}
.h0_c00238{height:1262.835000px;}
.h1_c00238{height:1263.000000px;}
.w2_c00238{width:0.000000px;}
.w3_c00238{width:0.066000px;}
.w0_c00238{width:892.914000px;}
.w1_c00238{width:893.250000px;}
.x1_c00238{left:-838.913400px;}
.x2_c00238{left:-765.293400px;}
.x4_c00238{left:-743.963400px;}
.x3_c00238{left:-733.343400px;}
.x0_c00238{left:0.000000px;}
.x7_c00238{left:127.620000px;}
.x9_c00238{left:148.950000px;}
.x8_c00238{left:159.570000px;}
.xa_c00238{left:170.190000px;}
.x6_c00238{left:696.510000px;}
.x5_c00238{left:804.366150px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.lsb_c00238{letter-spacing:-0.256000pt;}
.lsa_c00238{letter-spacing:-0.128000pt;}
.ls9_c00238{letter-spacing:0.000000pt;}
.ls0_c00238{letter-spacing:0.064000pt;}
.ls4_c00238{letter-spacing:0.128000pt;}
.ls1_c00238{letter-spacing:16.128000pt;}
.ls5_c00238{letter-spacing:20.812800pt;}
.ls2_c00238{letter-spacing:23.488000pt;}
.ls8_c00238{letter-spacing:28.160000pt;}
.ls3_c00238{letter-spacing:29.440000pt;}
.ls6_c00238{letter-spacing:40.384000pt;}
.ls7_c00238{letter-spacing:49.664000pt;}
.ws1_c00238{word-spacing:-16.128000pt;}
.ws2_c00238{word-spacing:-16.064000pt;}
.ws4_c00238{word-spacing:-16.000000pt;}
.ws1c_c00238{word-spacing:-0.128000pt;}
.ws1d_c00238{word-spacing:-0.117120pt;}
.ws8_c00238{word-spacing:-0.064000pt;}
.ws7_c00238{word-spacing:0.000000pt;}
.ws3_c00238{word-spacing:0.128000pt;}
.ws31_c00238{word-spacing:0.192000pt;}
.ws30_c00238{word-spacing:0.320000pt;}
.ws2d_c00238{word-spacing:0.640000pt;}
.ws1f_c00238{word-spacing:0.960000pt;}
.ws2a_c00238{word-spacing:1.216000pt;}
.ws29_c00238{word-spacing:1.280000pt;}
.ws17_c00238{word-spacing:1.536000pt;}
.ws16_c00238{word-spacing:1.600000pt;}
.ws1b_c00238{word-spacing:3.456000pt;}
.ws9_c00238{word-spacing:3.776000pt;}
.ws26_c00238{word-spacing:4.736000pt;}
.ws19_c00238{word-spacing:5.056000pt;}
.ws1a_c00238{word-spacing:5.120000pt;}
.wsa_c00238{word-spacing:6.336000pt;}
.ws11_c00238{word-spacing:7.360000pt;}
.ws21_c00238{word-spacing:8.256000pt;}
.ws13_c00238{word-spacing:8.576000pt;}
.ws27_c00238{word-spacing:8.896000pt;}
.ws28_c00238{word-spacing:8.960000pt;}
.ws32_c00238{word-spacing:9.216000pt;}
.ws20_c00238{word-spacing:9.536000pt;}
.ws33_c00238{word-spacing:9.600000pt;}
.ws10_c00238{word-spacing:9.984000pt;}
.wse_c00238{word-spacing:10.176000pt;}
.wsf_c00238{word-spacing:10.240000pt;}
.ws34_c00238{word-spacing:11.840000pt;}
.ws35_c00238{word-spacing:12.160000pt;}
.ws12_c00238{word-spacing:13.056000pt;}
.ws2e_c00238{word-spacing:13.376000pt;}
.ws15_c00238{word-spacing:13.568000pt;}
.ws14_c00238{word-spacing:13.760000pt;}
.ws18_c00238{word-spacing:14.976000pt;}
.ws22_c00238{word-spacing:16.896000pt;}
.ws23_c00238{word-spacing:19.200000pt;}
.ws36_c00238{word-spacing:19.776000pt;}
.wsb_c00238{word-spacing:23.616000pt;}
.wsc_c00238{word-spacing:23.680000pt;}
.wsd_c00238{word-spacing:23.936000pt;}
.ws24_c00238{word-spacing:28.736000pt;}
.ws2f_c00238{word-spacing:28.992000pt;}
.ws25_c00238{word-spacing:29.056000pt;}
.ws5_c00238{word-spacing:29.120000pt;}
.ws1e_c00238{word-spacing:31.936000pt;}
.ws6_c00238{word-spacing:33.280000pt;}
.ws2c_c00238{word-spacing:33.536000pt;}
.ws2b_c00238{word-spacing:33.600000pt;}
.ws37_c00238{word-spacing:40.000000pt;}
.ws0_c00238{word-spacing:92.800000pt;}
._0_c00238{margin-left:-1.100800pt;}
._2_c00238{width:0.953600pt;}
._5_c00238{width:12.096000pt;}
._1_c00238{width:23.539200pt;}
._4_c00238{width:40.588800pt;}
._6_c00238{width:55.692800pt;}
._3_c00238{width:140.800000pt;}
.fs1_c00238{font-size:58.560000pt;}
.fs0_c00238{font-size:64.000000pt;}
.y0_c00238{bottom:0.000000pt;}
.y1_c00238{bottom:54.887600pt;}
.y2d_c00238{bottom:99.079467pt;}
.y2c_c00238{bottom:126.679467pt;}
.y1c_c00238{bottom:130.119467pt;}
.y2b_c00238{bottom:154.279467pt;}
.y1b_c00238{bottom:157.719467pt;}
.y1a_c00238{bottom:185.319467pt;}
.y2a_c00238{bottom:209.479467pt;}
.y19_c00238{bottom:212.919467pt;}
.y29_c00238{bottom:237.079467pt;}
.y28_c00238{bottom:264.679467pt;}
.y18_c00238{bottom:268.119467pt;}
.y27_c00238{bottom:292.199467pt;}
.y17_c00238{bottom:295.719467pt;}
.y26_c00238{bottom:320.999467pt;}
.y16_c00238{bottom:323.319467pt;}
.y25_c00238{bottom:348.599467pt;}
.y24_c00238{bottom:376.199467pt;}
.y15_c00238{bottom:378.519467pt;}
.y23_c00238{bottom:403.799467pt;}
.y14_c00238{bottom:406.119467pt;}
.y22_c00238{bottom:431.399467pt;}
.y13_c00238{bottom:433.719467pt;}
.y21_c00238{bottom:460.199467pt;}
.y12_c00238{bottom:461.319467pt;}
.y20_c00238{bottom:487.799467pt;}
.y1f_c00238{bottom:515.319467pt;}
.y11_c00238{bottom:516.359467pt;}
.y10_c00238{bottom:571.719467pt;}
.yf_c00238{bottom:599.319467pt;}
.ye_c00238{bottom:626.919467pt;}
.y1e_c00238{bottom:654.519467pt;}
.yd_c00238{bottom:682.119467pt;}
.yc_c00238{bottom:709.719467pt;}
.yb_c00238{bottom:737.319467pt;}
.ya_c00238{bottom:764.919467pt;}
.y9_c00238{bottom:792.519467pt;}
.y1d_c00238{bottom:820.119467pt;}
.y8_c00238{bottom:847.719467pt;}
.y7_c00238{bottom:875.239467pt;}
.y6_c00238{bottom:902.839467pt;}
.y5_c00238{bottom:930.439467pt;}
.y4_c00238{bottom:958.039467pt;}
.y3_c00238{bottom:1013.079467pt;}
.y2_c00238{bottom:1061.399467pt;}
.h2_c00238{height:44.800000pt;}
.h3_c00238{height:48.294844pt;}
.h4_c00238{height:68.288000pt;}
.h5_c00238{height:69.376000pt;}
.h0_c00238{height:1122.520000pt;}
.h1_c00238{height:1122.666667pt;}
.w2_c00238{width:0.000000pt;}
.w3_c00238{width:0.058667pt;}
.w0_c00238{width:793.701333pt;}
.w1_c00238{width:794.000000pt;}
.x1_c00238{left:-745.700800pt;}
.x2_c00238{left:-680.260800pt;}
.x4_c00238{left:-661.300800pt;}
.x3_c00238{left:-651.860800pt;}
.x0_c00238{left:0.000000pt;}
.x7_c00238{left:113.440000pt;}
.x9_c00238{left:132.400000pt;}
.x8_c00238{left:141.840000pt;}
.xa_c00238{left:151.280000pt;}
.x6_c00238{left:619.120000pt;}
.x5_c00238{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00239;src:url('chunks/assets/font_0798f61090b3313381a34385.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00239;src:url('chunks/assets/font_dc74aefb8ca32b9e0a8e5852.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00239;src:url('chunks/assets/font_359b0519b6e184152ba72aa1.woff2')format("woff");}.ff4_c00239{font-family:ff4_c00239;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00239{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls6_c00239{letter-spacing:-0.360000px;}
.ls5_c00239{letter-spacing:0.000000px;}
.ls0_c00239{letter-spacing:0.072000px;}
.ls1_c00239{letter-spacing:0.144000px;}
.ls4_c00239{letter-spacing:35.640000px;}
.ls2_c00239{letter-spacing:36.144000px;}
.ls3_c00239{letter-spacing:46.944000px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00239{word-spacing:-18.144000px;}
.ws4_c00239{word-spacing:-18.072000px;}
.ws0_c00239{word-spacing:-18.000000px;}
.ws3_c00239{word-spacing:-17.640000px;}
.wsc_c00239{word-spacing:-0.072000px;}
.ws7_c00239{word-spacing:0.000000px;}
.ws23_c00239{word-spacing:2.088000px;}
.ws1e_c00239{word-spacing:2.808000px;}
.ws1d_c00239{word-spacing:3.168000px;}
.ws17_c00239{word-spacing:4.608000px;}
.ws18_c00239{word-spacing:4.680000px;}
.ws19_c00239{word-spacing:5.328000px;}
.ws14_c00239{word-spacing:8.856000px;}
.ws13_c00239{word-spacing:9.000000px;}
.ws1_c00239{word-spacing:9.144000px;}
.ws12_c00239{word-spacing:9.360000px;}
.ws6_c00239{word-spacing:9.576000px;}
.ws1f_c00239{word-spacing:9.936000px;}
.ws20_c00239{word-spacing:10.008000px;}
.wse_c00239{word-spacing:10.080000px;}
.wsb_c00239{word-spacing:12.456000px;}
.wsa_c00239{word-spacing:12.528000px;}
.wsd_c00239{word-spacing:12.600000px;}
.ws9_c00239{word-spacing:13.608000px;}
.ws8_c00239{word-spacing:13.680000px;}
.ws1b_c00239{word-spacing:17.208000px;}
.ws1c_c00239{word-spacing:17.640000px;}
.ws5_c00239{word-spacing:18.432000px;}
.ws11_c00239{word-spacing:19.368000px;}
.ws1a_c00239{word-spacing:21.240000px;}
.ws22_c00239{word-spacing:21.960000px;}
.ws21_c00239{word-spacing:22.320000px;}
.ws15_c00239{word-spacing:31.824000px;}
.ws16_c00239{word-spacing:32.328000px;}
.ws10_c00239{word-spacing:39.096000px;}
.wsf_c00239{word-spacing:39.240000px;}
._0_c00239{margin-left:-1.008000px;}
._2_c00239{width:1.008000px;}
._1_c00239{width:12.528000px;}
._3_c00239{width:36.144000px;}
.fc1_c00239{color:rgb(0,0,0);}
.fc0_c00239{color:rgb(35,31,32);}
.fs1_c00239{font-size:65.880000px;}
.fs0_c00239{font-size:72.000000px;}
.y0_c00239{bottom:0.000000px;}
.y1_c00239{bottom:61.748550px;}
.y1c_c00239{bottom:146.384400px;}
.y1b_c00239{bottom:177.434400px;}
.y1a_c00239{bottom:208.484400px;}
.y19_c00239{bottom:239.534400px;}
.y18_c00239{bottom:270.584400px;}
.y17_c00239{bottom:301.634400px;}
.y16_c00239{bottom:332.684400px;}
.y15_c00239{bottom:394.784400px;}
.y14_c00239{bottom:425.834400px;}
.y13_c00239{bottom:456.884400px;}
.y12_c00239{bottom:518.984400px;}
.y11_c00239{bottom:550.034400px;}
.y10_c00239{bottom:612.134400px;}
.yf_c00239{bottom:643.184400px;}
.ye_c00239{bottom:705.284400px;}
.yd_c00239{bottom:736.334400px;}
.yc_c00239{bottom:798.434400px;}
.yb_c00239{bottom:829.484400px;}
.ya_c00239{bottom:891.584400px;}
.y9_c00239{bottom:922.634400px;}
.y8_c00239{bottom:953.684400px;}
.y7_c00239{bottom:1015.694400px;}
.y6_c00239{bottom:1046.744400px;}
.y5_c00239{bottom:1077.794400px;}
.y4_c00239{bottom:1108.844400px;}
.y3_c00239{bottom:1139.894400px;}
.y2_c00239{bottom:1194.074400px;}
.h2_c00239{height:50.400000px;}
.h3_c00239{height:54.331699px;}
.h4_c00239{height:76.824000px;}
.h5_c00239{height:78.048000px;}
.h0_c00239{height:1262.835000px;}
.h1_c00239{height:1263.000000px;}
.w0_c00239{width:892.914000px;}
.w1_c00239{width:893.250000px;}
.x0_c00239{left:0.000000px;}
.x1_c00239{left:54.000000px;}
.x2_c00239{left:127.620000px;}
.x4_c00239{left:148.950000px;}
.x3_c00239{left:159.570000px;}
.x5_c00239{left:170.190000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls6_c00239{letter-spacing:-0.320000pt;}
.ls5_c00239{letter-spacing:0.000000pt;}
.ls0_c00239{letter-spacing:0.064000pt;}
.ls1_c00239{letter-spacing:0.128000pt;}
.ls4_c00239{letter-spacing:31.680000pt;}
.ls2_c00239{letter-spacing:32.128000pt;}
.ls3_c00239{letter-spacing:41.728000pt;}
.ws2_c00239{word-spacing:-16.128000pt;}
.ws4_c00239{word-spacing:-16.064000pt;}
.ws0_c00239{word-spacing:-16.000000pt;}
.ws3_c00239{word-spacing:-15.680000pt;}
.wsc_c00239{word-spacing:-0.064000pt;}
.ws7_c00239{word-spacing:0.000000pt;}
.ws23_c00239{word-spacing:1.856000pt;}
.ws1e_c00239{word-spacing:2.496000pt;}
.ws1d_c00239{word-spacing:2.816000pt;}
.ws17_c00239{word-spacing:4.096000pt;}
.ws18_c00239{word-spacing:4.160000pt;}
.ws19_c00239{word-spacing:4.736000pt;}
.ws14_c00239{word-spacing:7.872000pt;}
.ws13_c00239{word-spacing:8.000000pt;}
.ws1_c00239{word-spacing:8.128000pt;}
.ws12_c00239{word-spacing:8.320000pt;}
.ws6_c00239{word-spacing:8.512000pt;}
.ws1f_c00239{word-spacing:8.832000pt;}
.ws20_c00239{word-spacing:8.896000pt;}
.wse_c00239{word-spacing:8.960000pt;}
.wsb_c00239{word-spacing:11.072000pt;}
.wsa_c00239{word-spacing:11.136000pt;}
.wsd_c00239{word-spacing:11.200000pt;}
.ws9_c00239{word-spacing:12.096000pt;}
.ws8_c00239{word-spacing:12.160000pt;}
.ws1b_c00239{word-spacing:15.296000pt;}
.ws1c_c00239{word-spacing:15.680000pt;}
.ws5_c00239{word-spacing:16.384000pt;}
.ws11_c00239{word-spacing:17.216000pt;}
.ws1a_c00239{word-spacing:18.880000pt;}
.ws22_c00239{word-spacing:19.520000pt;}
.ws21_c00239{word-spacing:19.840000pt;}
.ws15_c00239{word-spacing:28.288000pt;}
.ws16_c00239{word-spacing:28.736000pt;}
.ws10_c00239{word-spacing:34.752000pt;}
.wsf_c00239{word-spacing:34.880000pt;}
._0_c00239{margin-left:-0.896000pt;}
._2_c00239{width:0.896000pt;}
._1_c00239{width:11.136000pt;}
._3_c00239{width:32.128000pt;}
.fs1_c00239{font-size:58.560000pt;}
.fs0_c00239{font-size:64.000000pt;}
.y0_c00239{bottom:0.000000pt;}
.y1_c00239{bottom:54.887600pt;}
.y1c_c00239{bottom:130.119467pt;}
.y1b_c00239{bottom:157.719467pt;}
.y1a_c00239{bottom:185.319467pt;}
.y19_c00239{bottom:212.919467pt;}
.y18_c00239{bottom:240.519467pt;}
.y17_c00239{bottom:268.119467pt;}
.y16_c00239{bottom:295.719467pt;}
.y15_c00239{bottom:350.919467pt;}
.y14_c00239{bottom:378.519467pt;}
.y13_c00239{bottom:406.119467pt;}
.y12_c00239{bottom:461.319467pt;}
.y11_c00239{bottom:488.919467pt;}
.y10_c00239{bottom:544.119467pt;}
.yf_c00239{bottom:571.719467pt;}
.ye_c00239{bottom:626.919467pt;}
.yd_c00239{bottom:654.519467pt;}
.yc_c00239{bottom:709.719467pt;}
.yb_c00239{bottom:737.319467pt;}
.ya_c00239{bottom:792.519467pt;}
.y9_c00239{bottom:820.119467pt;}
.y8_c00239{bottom:847.719467pt;}
.y7_c00239{bottom:902.839467pt;}
.y6_c00239{bottom:930.439467pt;}
.y5_c00239{bottom:958.039467pt;}
.y4_c00239{bottom:985.639467pt;}
.y3_c00239{bottom:1013.239467pt;}
.y2_c00239{bottom:1061.399467pt;}
.h2_c00239{height:44.800000pt;}
.h3_c00239{height:48.294844pt;}
.h4_c00239{height:68.288000pt;}
.h5_c00239{height:69.376000pt;}
.h0_c00239{height:1122.520000pt;}
.h1_c00239{height:1122.666667pt;}
.w0_c00239{width:793.701333pt;}
.w1_c00239{width:794.000000pt;}
.x0_c00239{left:0.000000pt;}
.x1_c00239{left:48.000000pt;}
.x2_c00239{left:113.440000pt;}
.x4_c00239{left:132.400000pt;}
.x3_c00239{left:141.840000pt;}
.x5_c00239{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00240;src:url('chunks/assets/font_da55ea1e6317947a7810f14c.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00240;src:url('chunks/assets/font_c199cbb79da77056f8301cd9.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00240;src:url('chunks/assets/font_b8a93d15f46f1d95f82f9027.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00240;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00240{font-family:ff5_c00240;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00240;src:url('chunks/assets/font_95e8331ae50dd1a6b2f2e43d.woff2')format("woff");}.ff6_c00240{font-family:ff6_c00240;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00240;src:url('chunks/assets/font_8dae8aa0078513143d04b455.woff2')format("woff");}.ff7_c00240{font-family:ff7_c00240;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00240;src:url('chunks/assets/font_c60946b001cd7aafcd81c265.woff2')format("woff");}.ff8_c00240{font-family:ff8_c00240;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00240;src:url('chunks/assets/font_42c0080a2c4eda7617e3a1e0.woff2')format("woff");}.ff9_c00240{font-family:ff9_c00240;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00240;src:url('chunks/assets/font_cdac17b4b8f406a772fc9108.woff2')format("woff");}.ffa_c00240{font-family:ffa_c00240;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v7_c00240{vertical-align:-73.439400px;}
.v6_c00240{vertical-align:-25.559400px;}
.v8_c00240{vertical-align:-12.240000px;}
.v2_c00240{vertical-align:-8.640000px;}
.v4_c00240{vertical-align:-4.320000px;}
.v0_c00240{vertical-align:0.000000px;}
.v5_c00240{vertical-align:1.080600px;}
.v3_c00240{vertical-align:15.466800px;}
.v1_c00240{vertical-align:55.445040px;}
.ls7_c00240{letter-spacing:-0.360000px;}
.lsc_c00240{letter-spacing:-0.168480px;}
.lsb_c00240{letter-spacing:-0.042120px;}
.ls6_c00240{letter-spacing:0.000000px;}
.ls8_c00240{letter-spacing:0.065880px;}
.ls0_c00240{letter-spacing:0.072000px;}
.ls9_c00240{letter-spacing:0.095760px;}
.ls1_c00240{letter-spacing:0.144000px;}
.lsa_c00240{letter-spacing:0.168480px;}
.ls4_c00240{letter-spacing:35.640000px;}
.ls2_c00240{letter-spacing:36.144000px;}
.ls3_c00240{letter-spacing:46.944000px;}
.ls5_c00240{letter-spacing:251.266320px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14_c00240{word-spacing:-269.580960px;}
.ws2_c00240{word-spacing:-18.144000px;}
.ws4_c00240{word-spacing:-18.072000px;}
.ws0_c00240{word-spacing:-18.000000px;}
.ws3_c00240{word-spacing:-17.640000px;}
.ws7_c00240{word-spacing:-11.709360px;}
.ws3b_c00240{word-spacing:-0.210600px;}
.ws36_c00240{word-spacing:-0.131760px;}
.ws39_c00240{word-spacing:-0.095760px;}
.ws15_c00240{word-spacing:-0.084240px;}
.ws1e_c00240{word-spacing:-0.072000px;}
.ws37_c00240{word-spacing:-0.065880px;}
.ws19_c00240{word-spacing:0.000000px;}
.ws3a_c00240{word-spacing:0.168480px;}
.ws38_c00240{word-spacing:0.197640px;}
.ws3c_c00240{word-spacing:0.210600px;}
.ws35_c00240{word-spacing:2.088000px;}
.ws30_c00240{word-spacing:2.808000px;}
.ws2f_c00240{word-spacing:3.168000px;}
.ws29_c00240{word-spacing:4.608000px;}
.ws2a_c00240{word-spacing:4.680000px;}
.ws2b_c00240{word-spacing:5.328000px;}
.ws26_c00240{word-spacing:8.856000px;}
.ws25_c00240{word-spacing:9.000000px;}
.ws1_c00240{word-spacing:9.144000px;}
.ws24_c00240{word-spacing:9.360000px;}
.ws6_c00240{word-spacing:9.576000px;}
.ws31_c00240{word-spacing:9.936000px;}
.ws32_c00240{word-spacing:10.008000px;}
.ws20_c00240{word-spacing:10.080000px;}
.ws1d_c00240{word-spacing:12.456000px;}
.ws1c_c00240{word-spacing:12.528000px;}
.ws1f_c00240{word-spacing:12.600000px;}
.ws1b_c00240{word-spacing:13.608000px;}
.ws1a_c00240{word-spacing:13.680000px;}
.ws2d_c00240{word-spacing:17.208000px;}
.ws2e_c00240{word-spacing:17.640000px;}
.ws5_c00240{word-spacing:18.432000px;}
.ws23_c00240{word-spacing:19.368000px;}
.ws2c_c00240{word-spacing:21.240000px;}
.ws34_c00240{word-spacing:21.960000px;}
.ws33_c00240{word-spacing:22.320000px;}
.ws27_c00240{word-spacing:31.824000px;}
.ws28_c00240{word-spacing:32.328000px;}
.ws22_c00240{word-spacing:39.096000px;}
.ws21_c00240{word-spacing:39.240000px;}
.ws8_c00240{word-spacing:66.361680px;}
.wsc_c00240{word-spacing:79.145640px;}
.ws9_c00240{word-spacing:85.896720px;}
.wsa_c00240{word-spacing:91.307160px;}
.wsb_c00240{word-spacing:106.293600px;}
.wse_c00240{word-spacing:231.831720px;}
.ws13_c00240{word-spacing:232.951680px;}
.ws18_c00240{word-spacing:260.830800px;}
.ws17_c00240{word-spacing:285.245280px;}
.wsf_c00240{word-spacing:285.255720px;}
.ws11_c00240{word-spacing:286.365960px;}
.wsd_c00240{word-spacing:289.998000px;}
.ws10_c00240{word-spacing:296.086320px;}
.ws12_c00240{word-spacing:546.671640px;}
.ws16_c00240{word-spacing:1410.556680px;}
._a_c00240{margin-left:-251.266320px;}
._9_c00240{margin-left:-2.174040px;}
._0_c00240{margin-left:-1.008000px;}
._2_c00240{width:1.008000px;}
._1_c00240{width:12.528000px;}
._3_c00240{width:36.144000px;}
._5_c00240{width:149.297040px;}
._4_c00240{width:152.925480px;}
._6_c00240{width:157.803840px;}
._e_c00240{width:187.648920px;}
._d_c00240{width:199.505520px;}
._c_c00240{width:206.312400px;}
._7_c00240{width:245.028960px;}
._b_c00240{width:251.908560px;}
._8_c00240{width:546.179760px;}
.fc2_c00240{color:transparent;}
.fc1_c00240{color:rgb(0,0,0);}
.fc0_c00240{color:rgb(35,31,32);}
.fs2_c00240{font-size:42.120000px;}
.fs3_c00240{font-size:47.880000px;}
.fs1_c00240{font-size:65.880000px;}
.fs0_c00240{font-size:72.000000px;}
.y0_c00240{bottom:0.000000px;}
.y45_c00240{bottom:17.999250px;}
.y35_c00240{bottom:21.060900px;}
.y38_c00240{bottom:21.509400px;}
.y32_c00240{bottom:21.692400px;}
.y2f_c00240{bottom:24.389250px;}
.y3b_c00240{bottom:35.009400px;}
.y41_c00240{bottom:35.012400px;}
.y20_c00240{bottom:53.729400px;}
.y1_c00240{bottom:61.748550px;}
.y1c_c00240{bottom:146.384400px;}
.y1b_c00240{bottom:177.434400px;}
.y4e_c00240{bottom:183.194400px;}
.y1a_c00240{bottom:208.484400px;}
.y4d_c00240{bottom:214.337550px;}
.y4c_c00240{bottom:226.394400px;}
.y19_c00240{bottom:239.534400px;}
.y4b_c00240{bottom:267.974400px;}
.y18_c00240{bottom:270.584400px;}
.y17_c00240{bottom:301.634400px;}
.y4a_c00240{bottom:312.704400px;}
.y16_c00240{bottom:332.684400px;}
.y49_c00240{bottom:357.434400px;}
.y15_c00240{bottom:394.784400px;}
.y48_c00240{bottom:395.142150px;}
.y47_c00240{bottom:409.094400px;}
.y14_c00240{bottom:425.834400px;}
.y44_c00240{bottom:427.275000px;}
.y46_c00240{bottom:431.414400px;}
.y13_c00240{bottom:456.884400px;}
.y43_c00240{bottom:465.884400px;}
.y40_c00240{bottom:484.062000px;}
.y42_c00240{bottom:500.624250px;}
.y12_c00240{bottom:518.984400px;}
.y3e_c00240{bottom:528.795000px;}
.y3f_c00240{bottom:545.354250px;}
.y11_c00240{bottom:550.034400px;}
.y3d_c00240{bottom:608.444250px;}
.y10_c00240{bottom:612.134400px;}
.y3a_c00240{bottom:618.165000px;}
.y3c_c00240{bottom:641.114250px;}
.yf_c00240{bottom:643.184400px;}
.y37_c00240{bottom:662.895000px;}
.y39_c00240{bottom:672.344400px;}
.y34_c00240{bottom:694.123500px;}
.y36_c00240{bottom:703.664400px;}
.ye_c00240{bottom:705.284400px;}
.y31_c00240{bottom:724.902000px;}
.y33_c00240{bottom:734.534250px;}
.yd_c00240{bottom:736.334400px;}
.y2e_c00240{bottom:756.315000px;}
.y30_c00240{bottom:768.644400px;}
.y2d_c00240{bottom:792.767550px;}
.yc_c00240{bottom:798.434400px;}
.y2c_c00240{bottom:804.824400px;}
.y2b_c00240{bottom:823.544250px;}
.yb_c00240{bottom:829.484400px;}
.y2a_c00240{bottom:857.384250px;}
.ya_c00240{bottom:891.584400px;}
.y29_c00240{bottom:899.504400px;}
.y9_c00240{bottom:922.634400px;}
.y28_c00240{bottom:929.657550px;}
.y27_c00240{bottom:941.714400px;}
.y8_c00240{bottom:953.684400px;}
.y26_c00240{bottom:970.244250px;}
.y25_c00240{bottom:1003.364250px;}
.y7_c00240{bottom:1015.694400px;}
.y1f_c00240{bottom:1020.915000px;}
.y21_c00240{bottom:1026.413850px;}
.y24_c00240{bottom:1028.653140px;}
.y23_c00240{bottom:1042.514400px;}
.y6_c00240{bottom:1046.744400px;}
.y22_c00240{bottom:1067.714400px;}
.y5_c00240{bottom:1077.794400px;}
.y4_c00240{bottom:1108.844400px;}
.y1e_c00240{bottom:1120.717020px;}
.y3_c00240{bottom:1139.894400px;}
.y1d_c00240{bottom:1140.793950px;}
.y2_c00240{bottom:1194.074400px;}
.h17_c00240{height:27.721500px;}
.h11_c00240{height:30.780000px;}
.h13_c00240{height:31.230000px;}
.hf_c00240{height:31.410000px;}
.hd_c00240{height:34.108500px;}
.h15_c00240{height:44.731500px;}
.h16_c00240{height:44.733000px;}
.h7_c00240{height:44.942040px;}
.h2_c00240{height:50.400000px;}
.h8_c00240{height:51.087960px;}
.h3_c00240{height:54.331699px;}
.h1a_c00240{height:58.053960px;}
.h1b_c00240{height:58.413960px;}
.ha_c00240{height:61.653960px;}
.hc_c00240{height:62.013960px;}
.h6_c00240{height:63.450000px;}
.he_c00240{height:65.973960px;}
.h12_c00240{height:70.293960px;}
.h10_c00240{height:71.374560px;}
.h14_c00240{height:71.733360px;}
.h4_c00240{height:76.824000px;}
.h5_c00240{height:78.048000px;}
.hb_c00240{height:85.760760px;}
.h1c_c00240{height:85.761360px;}
.h18_c00240{height:85.773360px;}
.h19_c00240{height:86.142360px;}
.h9_c00240{height:106.533000px;}
.h0_c00240{height:1262.835000px;}
.h1_c00240{height:1263.000000px;}
.w2_c00240{width:0.000000px;}
.w3_c00240{width:0.066000px;}
.w4_c00240{width:127.530000px;}
.w0_c00240{width:892.914000px;}
.w1_c00240{width:893.250000px;}
.x1_c00240{left:-838.913400px;}
.x2_c00240{left:-765.293400px;}
.x4_c00240{left:-743.963400px;}
.x3_c00240{left:-733.343400px;}
.x5_c00240{left:-722.723400px;}
.x0_c00240{left:0.000000px;}
.x1f_c00240{left:9.180000px;}
.x21_c00240{left:10.890000px;}
.x1a_c00240{left:19.080000px;}
.x1c_c00240{left:23.490000px;}
.x1d_c00240{left:28.170000px;}
.x25_c00240{left:40.140000px;}
.x23_c00240{left:45.900000px;}
.xa_c00240{left:119.430000px;}
.x8_c00240{left:127.619730px;}
.x9_c00240{left:157.140000px;}
.x14_c00240{left:164.250000px;}
.x17_c00240{left:165.420000px;}
.x2a_c00240{left:173.070000px;}
.x29_c00240{left:175.950000px;}
.x28_c00240{left:177.660000px;}
.x15_c00240{left:181.800000px;}
.xb_c00240{left:186.479550px;}
.x27_c00240{left:189.090000px;}
.x19_c00240{left:190.262340px;}
.x22_c00240{left:191.970000px;}
.x2b_c00240{left:194.040900px;}
.x1b_c00240{left:200.160000px;}
.x16_c00240{left:201.333150px;}
.x20_c00240{left:202.770000px;}
.x13_c00240{left:272.880000px;}
.xd_c00240{left:294.660000px;}
.x1e_c00240{left:315.900000px;}
.x18_c00240{left:326.160000px;}
.x26_c00240{left:350.370000px;}
.xc_c00240{left:368.550000px;}
.xe_c00240{left:372.596670px;}
.x24_c00240{left:389.427600px;}
.xf_c00240{left:447.744330px;}
.x10_c00240{left:525.226140px;}
.x11_c00240{left:596.687040px;}
.x12_c00240{left:677.233170px;}
.x7_c00240{left:696.510000px;}
.x6_c00240{left:804.366150px;}
@media print{
.v7_c00240{vertical-align:-65.279467pt;}
.v6_c00240{vertical-align:-22.719467pt;}
.v8_c00240{vertical-align:-10.880000pt;}
.v2_c00240{vertical-align:-7.680000pt;}
.v4_c00240{vertical-align:-3.840000pt;}
.v0_c00240{vertical-align:0.000000pt;}
.v5_c00240{vertical-align:0.960533pt;}
.v3_c00240{vertical-align:13.748267pt;}
.v1_c00240{vertical-align:49.284480pt;}
.ls7_c00240{letter-spacing:-0.320000pt;}
.lsc_c00240{letter-spacing:-0.149760pt;}
.lsb_c00240{letter-spacing:-0.037440pt;}
.ls6_c00240{letter-spacing:0.000000pt;}
.ls8_c00240{letter-spacing:0.058560pt;}
.ls0_c00240{letter-spacing:0.064000pt;}
.ls9_c00240{letter-spacing:0.085120pt;}
.ls1_c00240{letter-spacing:0.128000pt;}
.lsa_c00240{letter-spacing:0.149760pt;}
.ls4_c00240{letter-spacing:31.680000pt;}
.ls2_c00240{letter-spacing:32.128000pt;}
.ls3_c00240{letter-spacing:41.728000pt;}
.ls5_c00240{letter-spacing:223.347840pt;}
.ws14_c00240{word-spacing:-239.627520pt;}
.ws2_c00240{word-spacing:-16.128000pt;}
.ws4_c00240{word-spacing:-16.064000pt;}
.ws0_c00240{word-spacing:-16.000000pt;}
.ws3_c00240{word-spacing:-15.680000pt;}
.ws7_c00240{word-spacing:-10.408320pt;}
.ws3b_c00240{word-spacing:-0.187200pt;}
.ws36_c00240{word-spacing:-0.117120pt;}
.ws39_c00240{word-spacing:-0.085120pt;}
.ws15_c00240{word-spacing:-0.074880pt;}
.ws1e_c00240{word-spacing:-0.064000pt;}
.ws37_c00240{word-spacing:-0.058560pt;}
.ws19_c00240{word-spacing:0.000000pt;}
.ws3a_c00240{word-spacing:0.149760pt;}
.ws38_c00240{word-spacing:0.175680pt;}
.ws3c_c00240{word-spacing:0.187200pt;}
.ws35_c00240{word-spacing:1.856000pt;}
.ws30_c00240{word-spacing:2.496000pt;}
.ws2f_c00240{word-spacing:2.816000pt;}
.ws29_c00240{word-spacing:4.096000pt;}
.ws2a_c00240{word-spacing:4.160000pt;}
.ws2b_c00240{word-spacing:4.736000pt;}
.ws26_c00240{word-spacing:7.872000pt;}
.ws25_c00240{word-spacing:8.000000pt;}
.ws1_c00240{word-spacing:8.128000pt;}
.ws24_c00240{word-spacing:8.320000pt;}
.ws6_c00240{word-spacing:8.512000pt;}
.ws31_c00240{word-spacing:8.832000pt;}
.ws32_c00240{word-spacing:8.896000pt;}
.ws20_c00240{word-spacing:8.960000pt;}
.ws1d_c00240{word-spacing:11.072000pt;}
.ws1c_c00240{word-spacing:11.136000pt;}
.ws1f_c00240{word-spacing:11.200000pt;}
.ws1b_c00240{word-spacing:12.096000pt;}
.ws1a_c00240{word-spacing:12.160000pt;}
.ws2d_c00240{word-spacing:15.296000pt;}
.ws2e_c00240{word-spacing:15.680000pt;}
.ws5_c00240{word-spacing:16.384000pt;}
.ws23_c00240{word-spacing:17.216000pt;}
.ws2c_c00240{word-spacing:18.880000pt;}
.ws34_c00240{word-spacing:19.520000pt;}
.ws33_c00240{word-spacing:19.840000pt;}
.ws27_c00240{word-spacing:28.288000pt;}
.ws28_c00240{word-spacing:28.736000pt;}
.ws22_c00240{word-spacing:34.752000pt;}
.ws21_c00240{word-spacing:34.880000pt;}
.ws8_c00240{word-spacing:58.988160pt;}
.wsc_c00240{word-spacing:70.351680pt;}
.ws9_c00240{word-spacing:76.352640pt;}
.wsa_c00240{word-spacing:81.161920pt;}
.wsb_c00240{word-spacing:94.483200pt;}
.wse_c00240{word-spacing:206.072640pt;}
.ws13_c00240{word-spacing:207.068160pt;}
.ws18_c00240{word-spacing:231.849600pt;}
.ws17_c00240{word-spacing:253.551360pt;}
.wsf_c00240{word-spacing:253.560640pt;}
.ws11_c00240{word-spacing:254.547520pt;}
.wsd_c00240{word-spacing:257.776000pt;}
.ws10_c00240{word-spacing:263.187840pt;}
.ws12_c00240{word-spacing:485.930347pt;}
.ws16_c00240{word-spacing:1253.828160pt;}
._a_c00240{margin-left:-223.347840pt;}
._9_c00240{margin-left:-1.932480pt;}
._0_c00240{margin-left:-0.896000pt;}
._2_c00240{width:0.896000pt;}
._1_c00240{width:11.136000pt;}
._3_c00240{width:32.128000pt;}
._5_c00240{width:132.708480pt;}
._4_c00240{width:135.933760pt;}
._6_c00240{width:140.270080pt;}
._e_c00240{width:166.799040pt;}
._d_c00240{width:177.338240pt;}
._c_c00240{width:183.388800pt;}
._7_c00240{width:217.803520pt;}
._b_c00240{width:223.918720pt;}
._8_c00240{width:485.493120pt;}
.fs2_c00240{font-size:37.440000pt;}
.fs3_c00240{font-size:42.560000pt;}
.fs1_c00240{font-size:58.560000pt;}
.fs0_c00240{font-size:64.000000pt;}
.y0_c00240{bottom:0.000000pt;}
.y45_c00240{bottom:15.999333pt;}
.y35_c00240{bottom:18.720800pt;}
.y38_c00240{bottom:19.119467pt;}
.y32_c00240{bottom:19.282133pt;}
.y2f_c00240{bottom:21.679333pt;}
.y3b_c00240{bottom:31.119467pt;}
.y41_c00240{bottom:31.122133pt;}
.y20_c00240{bottom:47.759467pt;}
.y1_c00240{bottom:54.887600pt;}
.y1c_c00240{bottom:130.119467pt;}
.y1b_c00240{bottom:157.719467pt;}
.y4e_c00240{bottom:162.839467pt;}
.y1a_c00240{bottom:185.319467pt;}
.y4d_c00240{bottom:190.522267pt;}
.y4c_c00240{bottom:201.239467pt;}
.y19_c00240{bottom:212.919467pt;}
.y4b_c00240{bottom:238.199467pt;}
.y18_c00240{bottom:240.519467pt;}
.y17_c00240{bottom:268.119467pt;}
.y4a_c00240{bottom:277.959467pt;}
.y16_c00240{bottom:295.719467pt;}
.y49_c00240{bottom:317.719467pt;}
.y15_c00240{bottom:350.919467pt;}
.y48_c00240{bottom:351.237467pt;}
.y47_c00240{bottom:363.639467pt;}
.y14_c00240{bottom:378.519467pt;}
.y44_c00240{bottom:379.800000pt;}
.y46_c00240{bottom:383.479467pt;}
.y13_c00240{bottom:406.119467pt;}
.y43_c00240{bottom:414.119467pt;}
.y40_c00240{bottom:430.277333pt;}
.y42_c00240{bottom:444.999333pt;}
.y12_c00240{bottom:461.319467pt;}
.y3e_c00240{bottom:470.040000pt;}
.y3f_c00240{bottom:484.759333pt;}
.y11_c00240{bottom:488.919467pt;}
.y3d_c00240{bottom:540.839333pt;}
.y10_c00240{bottom:544.119467pt;}
.y3a_c00240{bottom:549.480000pt;}
.y3c_c00240{bottom:569.879333pt;}
.yf_c00240{bottom:571.719467pt;}
.y37_c00240{bottom:589.240000pt;}
.y39_c00240{bottom:597.639467pt;}
.y34_c00240{bottom:616.998667pt;}
.y36_c00240{bottom:625.479467pt;}
.ye_c00240{bottom:626.919467pt;}
.y31_c00240{bottom:644.357333pt;}
.y33_c00240{bottom:652.919333pt;}
.yd_c00240{bottom:654.519467pt;}
.y2e_c00240{bottom:672.280000pt;}
.y30_c00240{bottom:683.239467pt;}
.y2d_c00240{bottom:704.682267pt;}
.yc_c00240{bottom:709.719467pt;}
.y2c_c00240{bottom:715.399467pt;}
.y2b_c00240{bottom:732.039333pt;}
.yb_c00240{bottom:737.319467pt;}
.y2a_c00240{bottom:762.119333pt;}
.ya_c00240{bottom:792.519467pt;}
.y29_c00240{bottom:799.559467pt;}
.y9_c00240{bottom:820.119467pt;}
.y28_c00240{bottom:826.362267pt;}
.y27_c00240{bottom:837.079467pt;}
.y8_c00240{bottom:847.719467pt;}
.y26_c00240{bottom:862.439333pt;}
.y25_c00240{bottom:891.879333pt;}
.y7_c00240{bottom:902.839467pt;}
.y1f_c00240{bottom:907.480000pt;}
.y21_c00240{bottom:912.367867pt;}
.y24_c00240{bottom:914.358347pt;}
.y23_c00240{bottom:926.679467pt;}
.y6_c00240{bottom:930.439467pt;}
.y22_c00240{bottom:949.079467pt;}
.y5_c00240{bottom:958.039467pt;}
.y4_c00240{bottom:985.639467pt;}
.y1e_c00240{bottom:996.192907pt;}
.y3_c00240{bottom:1013.239467pt;}
.y1d_c00240{bottom:1014.039067pt;}
.y2_c00240{bottom:1061.399467pt;}
.h17_c00240{height:24.641333pt;}
.h11_c00240{height:27.360000pt;}
.h13_c00240{height:27.760000pt;}
.hf_c00240{height:27.920000pt;}
.hd_c00240{height:30.318667pt;}
.h15_c00240{height:39.761333pt;}
.h16_c00240{height:39.762667pt;}
.h7_c00240{height:39.948480pt;}
.h2_c00240{height:44.800000pt;}
.h8_c00240{height:45.411520pt;}
.h3_c00240{height:48.294844pt;}
.h1a_c00240{height:51.603520pt;}
.h1b_c00240{height:51.923520pt;}
.ha_c00240{height:54.803520pt;}
.hc_c00240{height:55.123520pt;}
.h6_c00240{height:56.400000pt;}
.he_c00240{height:58.643520pt;}
.h12_c00240{height:62.483520pt;}
.h10_c00240{height:63.444053pt;}
.h14_c00240{height:63.762987pt;}
.h4_c00240{height:68.288000pt;}
.h5_c00240{height:69.376000pt;}
.hb_c00240{height:76.231787pt;}
.h1c_c00240{height:76.232320pt;}
.h18_c00240{height:76.242987pt;}
.h19_c00240{height:76.570987pt;}
.h9_c00240{height:94.696000pt;}
.h0_c00240{height:1122.520000pt;}
.h1_c00240{height:1122.666667pt;}
.w2_c00240{width:0.000000pt;}
.w3_c00240{width:0.058667pt;}
.w4_c00240{width:113.360000pt;}
.w0_c00240{width:793.701333pt;}
.w1_c00240{width:794.000000pt;}
.x1_c00240{left:-745.700800pt;}
.x2_c00240{left:-680.260800pt;}
.x4_c00240{left:-661.300800pt;}
.x3_c00240{left:-651.860800pt;}
.x5_c00240{left:-642.420800pt;}
.x0_c00240{left:0.000000pt;}
.x1f_c00240{left:8.160000pt;}
.x21_c00240{left:9.680000pt;}
.x1a_c00240{left:16.960000pt;}
.x1c_c00240{left:20.880000pt;}
.x1d_c00240{left:25.040000pt;}
.x25_c00240{left:35.680000pt;}
.x23_c00240{left:40.800000pt;}
.xa_c00240{left:106.160000pt;}
.x8_c00240{left:113.439760pt;}
.x9_c00240{left:139.680000pt;}
.x14_c00240{left:146.000000pt;}
.x17_c00240{left:147.040000pt;}
.x2a_c00240{left:153.840000pt;}
.x29_c00240{left:156.400000pt;}
.x28_c00240{left:157.920000pt;}
.x15_c00240{left:161.600000pt;}
.xb_c00240{left:165.759600pt;}
.x27_c00240{left:168.080000pt;}
.x19_c00240{left:169.122080pt;}
.x22_c00240{left:170.640000pt;}
.x2b_c00240{left:172.480800pt;}
.x1b_c00240{left:177.920000pt;}
.x16_c00240{left:178.962800pt;}
.x20_c00240{left:180.240000pt;}
.x13_c00240{left:242.560000pt;}
.xd_c00240{left:261.920000pt;}
.x1e_c00240{left:280.800000pt;}
.x18_c00240{left:289.920000pt;}
.x26_c00240{left:311.440000pt;}
.xc_c00240{left:327.600000pt;}
.xe_c00240{left:331.197040pt;}
.x24_c00240{left:346.157867pt;}
.xf_c00240{left:397.994960pt;}
.x10_c00240{left:466.867680pt;}
.x11_c00240{left:530.388480pt;}
.x12_c00240{left:601.985040pt;}
.x7_c00240{left:619.120000pt;}
.x6_c00240{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00241;src:url('chunks/assets/font_67b6d5162f5a5ba8fae5f7a6.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00241;src:url('chunks/assets/font_b513b87af34a7bc2bc30dd4b.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00241;src:url('chunks/assets/font_e944e9515f5f01b902244cd5.woff2')format("woff");}.ff4_c00241{font-family:ff4_c00241;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c00241{vertical-align:-25.199400px;}
.v4_c00241{vertical-align:-20.520000px;}
.v5_c00241{vertical-align:-12.240600px;}
.v2_c00241{vertical-align:-8.640000px;}
.v0_c00241{vertical-align:0.000000px;}
.v8_c00241{vertical-align:15.827400px;}
.v9_c00241{vertical-align:23.034000px;}
.v6_c00241{vertical-align:25.199400px;}
.v7_c00241{vertical-align:27.000000px;}
.v1_c00241{vertical-align:55.062000px;}
.ls5_c00241{letter-spacing:-0.168480px;}
.ls4_c00241{letter-spacing:-0.042120px;}
.ls2_c00241{letter-spacing:0.000000px;}
.ls3_c00241{letter-spacing:0.095760px;}
.ls1_c00241{letter-spacing:247.176000px;}
.ls0_c00241{letter-spacing:251.266320px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00241{word-spacing:-269.580960px;}
.wsf_c00241{word-spacing:-224.352000px;}
.ws0_c00241{word-spacing:-11.709360px;}
.ws18_c00241{word-spacing:-0.210600px;}
.ws15_c00241{word-spacing:-0.131760px;}
.ws16_c00241{word-spacing:-0.095760px;}
.ws14_c00241{word-spacing:0.000000px;}
.ws17_c00241{word-spacing:0.168480px;}
.ws19_c00241{word-spacing:0.336960px;}
.ws1_c00241{word-spacing:66.361680px;}
.ws2_c00241{word-spacing:85.848840px;}
.ws3_c00241{word-spacing:91.307160px;}
.ws4_c00241{word-spacing:106.293600px;}
.ws5_c00241{word-spacing:122.716440px;}
.ws11_c00241{word-spacing:227.160000px;}
.wsb_c00241{word-spacing:232.951680px;}
.ws7_c00241{word-spacing:278.417880px;}
.ws8_c00241{word-spacing:286.901640px;}
.ws6_c00241{word-spacing:289.956600px;}
.wsa_c00241{word-spacing:577.283160px;}
.ws12_c00241{word-spacing:814.109520px;}
.wse_c00241{word-spacing:874.505880px;}
.wsc_c00241{word-spacing:897.109200px;}
.wsd_c00241{word-spacing:1135.965720px;}
.ws13_c00241{word-spacing:1151.483520px;}
.ws10_c00241{word-spacing:1191.030120px;}
._6_c00241{margin-left:-251.266320px;}
._1_c00241{margin-left:-1.053000px;}
._0_c00241{width:1.067256px;}
._2_c00241{width:168.499080px;}
._4_c00241{width:172.270080px;}
._3_c00241{width:191.036880px;}
._a_c00241{width:289.426320px;}
._9_c00241{width:291.888360px;}
._7_c00241{width:474.676680px;}
._5_c00241{width:476.621400px;}
._8_c00241{width:587.451960px;}
._b_c00241{width:799.079760px;}
.fc1_c00241{color:rgb(0,0,0);}
.fc0_c00241{color:rgb(35,31,32);}
.fs2_c00241{font-size:42.120000px;}
.fs3_c00241{font-size:47.880000px;}
.fs1_c00241{font-size:65.880000px;}
.fs0_c00241{font-size:72.000000px;}
.y0_c00241{bottom:0.000000px;}
.y1_c00241{bottom:61.748550px;}
.y6_c00241{bottom:64.350900px;}
.y21_c00241{bottom:147.554400px;}
.y20_c00241{bottom:174.735900px;}
.y1f_c00241{bottom:186.792750px;}
.y1e_c00241{bottom:231.524250px;}
.y1d_c00241{bottom:262.577550px;}
.y1c_c00241{bottom:274.634400px;}
.y1b_c00241{bottom:302.804400px;}
.y1a_c00241{bottom:340.334400px;}
.y19_c00241{bottom:385.064400px;}
.y18_c00241{bottom:430.604250px;}
.y17_c00241{bottom:477.854250px;}
.y16_c00241{bottom:520.244400px;}
.y15_c00241{bottom:563.444250px;}
.y14_c00241{bottom:601.424400px;}
.y13_c00241{bottom:643.724400px;}
.y12_c00241{bottom:679.634400px;}
.y11_c00241{bottom:719.864250px;}
.y10_c00241{bottom:764.504400px;}
.yf_c00241{bottom:813.464400px;}
.ye_c00241{bottom:858.194400px;}
.yd_c00241{bottom:902.834250px;}
.yc_c00241{bottom:938.564250px;}
.yb_c00241{bottom:981.404250px;}
.y5_c00241{bottom:1010.293500px;}
.ya_c00241{bottom:1023.348750px;}
.y7_c00241{bottom:1026.413850px;}
.y9_c00241{bottom:1037.114250px;}
.y8_c00241{bottom:1067.714400px;}
.y4_c00241{bottom:1120.717020px;}
.y3_c00241{bottom:1140.793950px;}
.y2_c00241{bottom:1194.074400px;}
.h5_c00241{height:44.942040px;}
.h9_c00241{height:45.094560px;}
.hb_c00241{height:49.773960px;}
.h2_c00241{height:50.400000px;}
.h6_c00241{height:51.087960px;}
.h3_c00241{height:54.331699px;}
.hc_c00241{height:58.053360px;}
.hd_c00241{height:58.414560px;}
.h8_c00241{height:61.653960px;}
.ha_c00241{height:62.013960px;}
.h4_c00241{height:74.070000px;}
.h10_c00241{height:86.121360px;}
.h11_c00241{height:93.327960px;}
.he_c00241{height:102.023400px;}
.hf_c00241{height:102.024000px;}
.h7_c00241{height:106.149960px;}
.h0_c00241{height:1262.835000px;}
.h1_c00241{height:1263.000000px;}
.w2_c00241{width:127.260000px;}
.w0_c00241{width:892.914000px;}
.w1_c00241{width:893.250000px;}
.x0_c00241{left:0.000000px;}
.x1_c00241{left:54.000000px;}
.x4_c00241{left:119.160000px;}
.x2_c00241{left:127.620000px;}
.x3_c00241{left:146.520000px;}
.xe_c00241{left:157.590000px;}
.x13_c00241{left:161.100000px;}
.xf_c00241{left:163.170000px;}
.x1b_c00241{left:167.850000px;}
.x1a_c00241{left:174.514680px;}
.x5_c00241{left:175.674750px;}
.x19_c00241{left:179.190000px;}
.x16_c00241{left:181.260000px;}
.x12_c00241{left:183.330000px;}
.x1c_c00241{left:185.035860px;}
.x11_c00241{left:187.920000px;}
.x14_c00241{left:189.090000px;}
.x10_c00241{left:190.890000px;}
.x17_c00241{left:195.210000px;}
.x15_c00241{left:277.560000px;}
.x7_c00241{left:283.680000px;}
.xd_c00241{left:291.870000px;}
.x18_c00241{left:319.320000px;}
.x8_c00241{left:361.616670px;}
.x6_c00241{left:368.460000px;}
.x9_c00241{left:436.764330px;}
.xa_c00241{left:514.246140px;}
.xb_c00241{left:585.707040px;}
.xc_c00241{left:677.062080px;}
@media print{
.v3_c00241{vertical-align:-22.399467pt;}
.v4_c00241{vertical-align:-18.240000pt;}
.v5_c00241{vertical-align:-10.880533pt;}
.v2_c00241{vertical-align:-7.680000pt;}
.v0_c00241{vertical-align:0.000000pt;}
.v8_c00241{vertical-align:14.068800pt;}
.v9_c00241{vertical-align:20.474667pt;}
.v6_c00241{vertical-align:22.399467pt;}
.v7_c00241{vertical-align:24.000000pt;}
.v1_c00241{vertical-align:48.944000pt;}
.ls5_c00241{letter-spacing:-0.149760pt;}
.ls4_c00241{letter-spacing:-0.037440pt;}
.ls2_c00241{letter-spacing:0.000000pt;}
.ls3_c00241{letter-spacing:0.085120pt;}
.ls1_c00241{letter-spacing:219.712000pt;}
.ls0_c00241{letter-spacing:223.347840pt;}
.ws9_c00241{word-spacing:-239.627520pt;}
.wsf_c00241{word-spacing:-199.424000pt;}
.ws0_c00241{word-spacing:-10.408320pt;}
.ws18_c00241{word-spacing:-0.187200pt;}
.ws15_c00241{word-spacing:-0.117120pt;}
.ws16_c00241{word-spacing:-0.085120pt;}
.ws14_c00241{word-spacing:0.000000pt;}
.ws17_c00241{word-spacing:0.149760pt;}
.ws19_c00241{word-spacing:0.299520pt;}
.ws1_c00241{word-spacing:58.988160pt;}
.ws2_c00241{word-spacing:76.310080pt;}
.ws3_c00241{word-spacing:81.161920pt;}
.ws4_c00241{word-spacing:94.483200pt;}
.ws5_c00241{word-spacing:109.081280pt;}
.ws11_c00241{word-spacing:201.920000pt;}
.wsb_c00241{word-spacing:207.068160pt;}
.ws7_c00241{word-spacing:247.482560pt;}
.ws8_c00241{word-spacing:255.023680pt;}
.ws6_c00241{word-spacing:257.739200pt;}
.wsa_c00241{word-spacing:513.140587pt;}
.ws12_c00241{word-spacing:723.652907pt;}
.wse_c00241{word-spacing:777.338560pt;}
.wsc_c00241{word-spacing:797.430400pt;}
.wsd_c00241{word-spacing:1009.747307pt;}
.ws13_c00241{word-spacing:1023.540907pt;}
.ws10_c00241{word-spacing:1058.693440pt;}
._6_c00241{margin-left:-223.347840pt;}
._1_c00241{margin-left:-0.936000pt;}
._0_c00241{width:0.948672pt;}
._2_c00241{width:149.776960pt;}
._4_c00241{width:153.128960pt;}
._3_c00241{width:169.810560pt;}
._a_c00241{width:257.267840pt;}
._9_c00241{width:259.456320pt;}
._7_c00241{width:421.934827pt;}
._5_c00241{width:423.663467pt;}
._8_c00241{width:522.179520pt;}
._b_c00241{width:710.293120pt;}
.fs2_c00241{font-size:37.440000pt;}
.fs3_c00241{font-size:42.560000pt;}
.fs1_c00241{font-size:58.560000pt;}
.fs0_c00241{font-size:64.000000pt;}
.y0_c00241{bottom:0.000000pt;}
.y1_c00241{bottom:54.887600pt;}
.y6_c00241{bottom:57.200800pt;}
.y21_c00241{bottom:131.159467pt;}
.y20_c00241{bottom:155.320800pt;}
.y1f_c00241{bottom:166.038000pt;}
.y1e_c00241{bottom:205.799333pt;}
.y1d_c00241{bottom:233.402267pt;}
.y1c_c00241{bottom:244.119467pt;}
.y1b_c00241{bottom:269.159467pt;}
.y1a_c00241{bottom:302.519467pt;}
.y19_c00241{bottom:342.279467pt;}
.y18_c00241{bottom:382.759333pt;}
.y17_c00241{bottom:424.759333pt;}
.y16_c00241{bottom:462.439467pt;}
.y15_c00241{bottom:500.839333pt;}
.y14_c00241{bottom:534.599467pt;}
.y13_c00241{bottom:572.199467pt;}
.y12_c00241{bottom:604.119467pt;}
.y11_c00241{bottom:639.879333pt;}
.y10_c00241{bottom:679.559467pt;}
.yf_c00241{bottom:723.079467pt;}
.ye_c00241{bottom:762.839467pt;}
.yd_c00241{bottom:802.519333pt;}
.yc_c00241{bottom:834.279333pt;}
.yb_c00241{bottom:872.359333pt;}
.y5_c00241{bottom:898.038667pt;}
.ya_c00241{bottom:909.643333pt;}
.y7_c00241{bottom:912.367867pt;}
.y9_c00241{bottom:921.879333pt;}
.y8_c00241{bottom:949.079467pt;}
.y4_c00241{bottom:996.192907pt;}
.y3_c00241{bottom:1014.039067pt;}
.y2_c00241{bottom:1061.399467pt;}
.h5_c00241{height:39.948480pt;}
.h9_c00241{height:40.084053pt;}
.hb_c00241{height:44.243520pt;}
.h2_c00241{height:44.800000pt;}
.h6_c00241{height:45.411520pt;}
.h3_c00241{height:48.294844pt;}
.hc_c00241{height:51.602987pt;}
.hd_c00241{height:51.924053pt;}
.h8_c00241{height:54.803520pt;}
.ha_c00241{height:55.123520pt;}
.h4_c00241{height:65.840000pt;}
.h10_c00241{height:76.552320pt;}
.h11_c00241{height:82.958187pt;}
.he_c00241{height:90.687467pt;}
.hf_c00241{height:90.688000pt;}
.h7_c00241{height:94.355520pt;}
.h0_c00241{height:1122.520000pt;}
.h1_c00241{height:1122.666667pt;}
.w2_c00241{width:113.120000pt;}
.w0_c00241{width:793.701333pt;}
.w1_c00241{width:794.000000pt;}
.x0_c00241{left:0.000000pt;}
.x1_c00241{left:48.000000pt;}
.x4_c00241{left:105.920000pt;}
.x2_c00241{left:113.440000pt;}
.x3_c00241{left:130.240000pt;}
.xe_c00241{left:140.080000pt;}
.x13_c00241{left:143.200000pt;}
.xf_c00241{left:145.040000pt;}
.x1b_c00241{left:149.200000pt;}
.x1a_c00241{left:155.124160pt;}
.x5_c00241{left:156.155333pt;}
.x19_c00241{left:159.280000pt;}
.x16_c00241{left:161.120000pt;}
.x12_c00241{left:162.960000pt;}
.x1c_c00241{left:164.476320pt;}
.x11_c00241{left:167.040000pt;}
.x14_c00241{left:168.080000pt;}
.x10_c00241{left:169.680000pt;}
.x17_c00241{left:173.520000pt;}
.x15_c00241{left:246.720000pt;}
.x7_c00241{left:252.160000pt;}
.xd_c00241{left:259.440000pt;}
.x18_c00241{left:283.840000pt;}
.x8_c00241{left:321.437040pt;}
.x6_c00241{left:327.520000pt;}
.x9_c00241{left:388.234960pt;}
.xa_c00241{left:457.107680pt;}
.xb_c00241{left:520.628480pt;}
.xc_c00241{left:601.832960pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00242;src:url('chunks/assets/font_326b95f404b95f70ca6bb473.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_59aa14804e40a61f90c3d00d.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00242;src:url('chunks/assets/font_be3828432ba141e7ccdfb0dc.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00242;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00242;src:url('chunks/assets/font_5be352308bf2c1b67c14fd8b.woff2')format("woff");}.ff6_c00242{font-family:ff6_c00242;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00242;src:url('chunks/assets/font_84ea3626aadb74dc0a9e63be.woff2')format("woff");}.ff7_c00242{font-family:ff7_c00242;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00242;src:url('chunks/assets/font_2f5f46950ea9955d2d4dcda4.woff2')format("woff");}.ff8_c00242{font-family:ff8_c00242;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3_c00242{vertical-align:-25.199400px;}
.v4_c00242{vertical-align:-20.530800px;}
.v5_c00242{vertical-align:-12.240600px;}
.v2_c00242{vertical-align:-8.655840px;}
.v0_c00242{vertical-align:0.000000px;}
.va_c00242{vertical-align:8.640600px;}
.v8_c00242{vertical-align:15.818400px;}
.v9_c00242{vertical-align:23.034000px;}
.v6_c00242{vertical-align:25.199400px;}
.v7_c00242{vertical-align:27.000000px;}
.v1_c00242{vertical-align:55.062000px;}
.ls7_c00242{letter-spacing:-0.547560px;}
.ls6_c00242{letter-spacing:-0.168480px;}
.ls5_c00242{letter-spacing:-0.042120px;}
.ls3_c00242{letter-spacing:0.000000px;}
.ls4_c00242{letter-spacing:0.095760px;}
.ls8_c00242{letter-spacing:0.168480px;}
.ls2_c00242{letter-spacing:0.191520px;}
.ls1_c00242{letter-spacing:247.176000px;}
.ls0_c00242{letter-spacing:251.266320px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00242{word-spacing:-269.580960px;}
.wsf_c00242{word-spacing:-224.352000px;}
.ws0_c00242{word-spacing:-11.709360px;}
.ws29_c00242{word-spacing:-0.210600px;}
.ws2b_c00242{word-spacing:-0.191520px;}
.ws2e_c00242{word-spacing:-0.168480px;}
.ws26_c00242{word-spacing:-0.131760px;}
.ws27_c00242{word-spacing:-0.095760px;}
.ws2f_c00242{word-spacing:-0.042120px;}
.ws25_c00242{word-spacing:0.000000px;}
.ws2d_c00242{word-spacing:0.042120px;}
.ws28_c00242{word-spacing:0.168480px;}
.ws2a_c00242{word-spacing:0.336960px;}
.ws2c_c00242{word-spacing:0.547560px;}
.ws1_c00242{word-spacing:66.361680px;}
.ws14_c00242{word-spacing:66.696840px;}
.ws15_c00242{word-spacing:85.561560px;}
.ws2_c00242{word-spacing:85.848840px;}
.ws16_c00242{word-spacing:90.588960px;}
.ws3_c00242{word-spacing:91.307160px;}
.ws18_c00242{word-spacing:100.739520px;}
.ws17_c00242{word-spacing:105.910560px;}
.ws4_c00242{word-spacing:106.293600px;}
.ws5_c00242{word-spacing:122.716440px;}
.ws1e_c00242{word-spacing:226.440000px;}
.ws11_c00242{word-spacing:227.160000px;}
.ws1a_c00242{word-spacing:232.227000px;}
.ws1f_c00242{word-spacing:232.556400px;}
.wsb_c00242{word-spacing:232.951680px;}
.ws7_c00242{word-spacing:278.417880px;}
.ws8_c00242{word-spacing:286.901640px;}
.ws6_c00242{word-spacing:289.956600px;}
.ws22_c00242{word-spacing:527.040000px;}
.ws24_c00242{word-spacing:543.062400px;}
.ws23_c00242{word-spacing:561.744960px;}
.wsa_c00242{word-spacing:577.283160px;}
.ws12_c00242{word-spacing:814.122480px;}
.ws19_c00242{word-spacing:845.517960px;}
.ws1b_c00242{word-spacing:850.211640px;}
.ws21_c00242{word-spacing:853.772040px;}
.ws1c_c00242{word-spacing:856.222200px;}
.wse_c00242{word-spacing:874.505880px;}
.ws20_c00242{word-spacing:886.508640px;}
.ws1d_c00242{word-spacing:893.395560px;}
.wsc_c00242{word-spacing:897.101880px;}
.wsd_c00242{word-spacing:1135.965720px;}
.ws13_c00242{word-spacing:1151.483520px;}
.ws10_c00242{word-spacing:1191.030120px;}
._6_c00242{margin-left:-251.266320px;}
._1_c00242{margin-left:-1.053000px;}
._0_c00242{width:1.067256px;}
._2_c00242{width:168.493320px;}
._4_c00242{width:172.270080px;}
._3_c00242{width:191.036880px;}
._d_c00242{width:248.976000px;}
._a_c00242{width:289.426320px;}
._9_c00242{width:291.888360px;}
._11_c00242{width:447.029160px;}
._7_c00242{width:474.676680px;}
._5_c00242{width:476.616720px;}
._8_c00242{width:587.451960px;}
._12_c00242{width:760.548960px;}
._b_c00242{width:799.079760px;}
._c_c00242{width:810.210240px;}
._f_c00242{width:889.739280px;}
._e_c00242{width:1055.242560px;}
._10_c00242{width:1078.385160px;}
.fc2_c00242{color:transparent;}
.fc1_c00242{color:rgb(0,0,0);}
.fc0_c00242{color:rgb(35,31,32);}
.fs2_c00242{font-size:42.120000px;}
.fs3_c00242{font-size:47.880000px;}
.fs1_c00242{font-size:65.880000px;}
.fs0_c00242{font-size:72.000000px;}
.y0_c00242{bottom:0.000000px;}
.y2f_c00242{bottom:17.999250px;}
.y2d_c00242{bottom:21.600900px;}
.y33_c00242{bottom:35.012400px;}
.y1_c00242{bottom:61.748550px;}
.y23_c00242{bottom:64.349400px;}
.y6_c00242{bottom:64.350900px;}
.y25_c00242{bottom:75.152400px;}
.y43_c00242{bottom:131.084400px;}
.y21_c00242{bottom:147.554400px;}
.y20_c00242{bottom:174.735900px;}
.y42_c00242{bottom:183.734400px;}
.y1f_c00242{bottom:186.792750px;}
.y41_c00242{bottom:219.734400px;}
.y1e_c00242{bottom:231.524250px;}
.y1d_c00242{bottom:262.579800px;}
.y40_c00242{bottom:264.464400px;}
.y1c_c00242{bottom:274.636650px;}
.y1b_c00242{bottom:302.804400px;}
.y3f_c00242{bottom:308.204400px;}
.y1a_c00242{bottom:340.334400px;}
.y3e_c00242{bottom:343.844400px;}
.y3d_c00242{bottom:374.084400px;}
.y19_c00242{bottom:385.064400px;}
.y3c_c00242{bottom:413.504400px;}
.y18_c00242{bottom:430.604250px;}
.y3b_c00242{bottom:458.234400px;}
.y17_c00242{bottom:477.850620px;}
.y3a_c00242{bottom:502.964400px;}
.y16_c00242{bottom:520.244400px;}
.y39_c00242{bottom:541.577550px;}
.y38_c00242{bottom:553.634400px;}
.y15_c00242{bottom:563.444250px;}
.y37_c00242{bottom:592.334400px;}
.y14_c00242{bottom:601.424400px;}
.y36_c00242{bottom:633.644400px;}
.y13_c00242{bottom:643.727100px;}
.y35_c00242{bottom:668.474400px;}
.y12_c00242{bottom:679.634400px;}
.y32_c00242{bottom:687.912000px;}
.y34_c00242{bottom:704.474400px;}
.y11_c00242{bottom:719.864250px;}
.y31_c00242{bottom:755.054400px;}
.y10_c00242{bottom:764.504400px;}
.y2e_c00242{bottom:776.835000px;}
.y30_c00242{bottom:782.774250px;}
.y2c_c00242{bottom:805.363500px;}
.yf_c00242{bottom:813.464400px;}
.y2b_c00242{bottom:856.124400px;}
.ye_c00242{bottom:858.194400px;}
.y2a_c00242{bottom:900.764400px;}
.yd_c00242{bottom:902.834250px;}
.y29_c00242{bottom:937.394400px;}
.yc_c00242{bottom:938.568210px;}
.y28_c00242{bottom:973.754400px;}
.yb_c00242{bottom:981.404250px;}
.y24_c00242{bottom:999.492000px;}
.y5_c00242{bottom:1010.293500px;}
.y22_c00242{bottom:1010.295000px;}
.y27_c00242{bottom:1017.948900px;}
.ya_c00242{bottom:1023.353580px;}
.y7_c00242{bottom:1026.413850px;}
.y26_c00242{bottom:1031.714400px;}
.y9_c00242{bottom:1037.119080px;}
.y8_c00242{bottom:1067.714400px;}
.y4_c00242{bottom:1120.717020px;}
.y3_c00242{bottom:1140.793950px;}
.y2_c00242{bottom:1194.074400px;}
.h17_c00242{height:27.720000px;}
.h16_c00242{height:31.320000px;}
.h1a_c00242{height:44.733000px;}
.h5_c00242{height:44.942040px;}
.h9_c00242{height:45.094560px;}
.h14_c00242{height:45.646348px;}
.hc_c00242{height:49.763160px;}
.h2_c00242{height:50.400000px;}
.h6_c00242{height:51.087960px;}
.h3_c00242{height:54.331699px;}
.hd_c00242{height:58.053360px;}
.h1d_c00242{height:58.053960px;}
.hf_c00242{height:58.414560px;}
.h1e_c00242{height:59.378906px;}
.h8_c00242{height:61.638120px;}
.hb_c00242{height:61.653960px;}
.he_c00242{height:61.668480px;}
.ha_c00242{height:62.013960px;}
.h1b_c00242{height:70.293960px;}
.h4_c00242{height:74.070000px;}
.h18_c00242{height:78.934560px;}
.h15_c00242{height:84.870000px;}
.h12_c00242{height:86.112360px;}
.h1c_c00242{height:86.120760px;}
.h19_c00242{height:86.184000px;}
.h13_c00242{height:93.327960px;}
.h10_c00242{height:102.023400px;}
.h11_c00242{height:102.024000px;}
.h7_c00242{height:106.149960px;}
.h0_c00242{height:1262.835000px;}
.h1_c00242{height:1263.000000px;}
.w3_c00242{width:-619.134000px;}
.w2_c00242{width:0.000000px;}
.w4_c00242{width:0.066000px;}
.w5_c00242{width:127.530000px;}
.w6_c00242{width:579.330000px;}
.w0_c00242{width:892.914000px;}
.w1_c00242{width:893.250000px;}
.x1_c00242{left:-838.913400px;}
.x2_c00242{left:-765.293400px;}
.xd_c00242{left:-735.321960px;}
.x12_c00242{left:-731.812230px;}
.xe_c00242{left:-729.743400px;}
.x1a_c00242{left:-725.063400px;}
.x19_c00242{left:-718.401960px;}
.x4_c00242{left:-717.238650px;}
.x18_c00242{left:-713.726640px;}
.x15_c00242{left:-711.653400px;}
.x11_c00242{left:-709.583400px;}
.x1b_c00242{left:-707.877540px;}
.x10_c00242{left:-704.993400px;}
.x13_c00242{left:-703.823400px;}
.xf_c00242{left:-702.023400px;}
.x16_c00242{left:-697.703400px;}
.x3_c00242{left:-627.233400px;}
.x14_c00242{left:-615.353550px;}
.x6_c00242{left:-609.236910px;}
.xc_c00242{left:-601.043400px;}
.x17_c00242{left:-573.593400px;}
.x7_c00242{left:-531.300240px;}
.x5_c00242{left:-524.453400px;}
.x8_c00242{left:-456.152580px;}
.x9_c00242{left:-378.670770px;}
.xa_c00242{left:-307.209870px;}
.xb_c00242{left:-215.854830px;}
.x0_c00242{left:0.000000px;}
.x2e_c00242{left:18.810000px;}
.x31_c00242{left:20.610000px;}
.x20_c00242{left:119.430000px;}
.x1e_c00242{left:127.619730px;}
.x1f_c00242{left:151.470000px;}
.x36_c00242{left:156.870000px;}
.x2d_c00242{left:158.130000px;}
.x35_c00242{left:162.990000px;}
.x39_c00242{left:168.840000px;}
.x34_c00242{left:172.980000px;}
.x30_c00242{left:176.130000px;}
.x21_c00242{left:180.804750px;}
.x3b_c00242{left:185.490000px;}
.x2a_c00242{left:187.290000px;}
.x2b_c00242{left:188.370000px;}
.x2c_c00242{left:189.900000px;}
.x37_c00242{left:195.388740px;}
.x38_c00242{left:197.460000px;}
.x2f_c00242{left:199.170000px;}
.x23_c00242{left:288.990000px;}
.x29_c00242{left:290.700000px;}
.x3a_c00242{left:311.670000px;}
.x24_c00242{left:367.010460px;}
.x22_c00242{left:368.100000px;}
.x33_c00242{left:379.620000px;}
.x25_c00242{left:442.074330px;}
.x32_c00242{left:457.658550px;}
.x26_c00242{left:519.376590px;}
.x27_c00242{left:590.741730px;}
.x28_c00242{left:676.686330px;}
.x1d_c00242{left:696.510000px;}
.x1c_c00242{left:804.366150px;}
@media print{
.v3_c00242{vertical-align:-22.399467pt;}
.v4_c00242{vertical-align:-18.249600pt;}
.v5_c00242{vertical-align:-10.880533pt;}
.v2_c00242{vertical-align:-7.694080pt;}
.v0_c00242{vertical-align:0.000000pt;}
.va_c00242{vertical-align:7.680533pt;}
.v8_c00242{vertical-align:14.060800pt;}
.v9_c00242{vertical-align:20.474667pt;}
.v6_c00242{vertical-align:22.399467pt;}
.v7_c00242{vertical-align:24.000000pt;}
.v1_c00242{vertical-align:48.944000pt;}
.ls7_c00242{letter-spacing:-0.486720pt;}
.ls6_c00242{letter-spacing:-0.149760pt;}
.ls5_c00242{letter-spacing:-0.037440pt;}
.ls3_c00242{letter-spacing:0.000000pt;}
.ls4_c00242{letter-spacing:0.085120pt;}
.ls8_c00242{letter-spacing:0.149760pt;}
.ls2_c00242{letter-spacing:0.170240pt;}
.ls1_c00242{letter-spacing:219.712000pt;}
.ls0_c00242{letter-spacing:223.347840pt;}
.ws9_c00242{word-spacing:-239.627520pt;}
.wsf_c00242{word-spacing:-199.424000pt;}
.ws0_c00242{word-spacing:-10.408320pt;}
.ws29_c00242{word-spacing:-0.187200pt;}
.ws2b_c00242{word-spacing:-0.170240pt;}
.ws2e_c00242{word-spacing:-0.149760pt;}
.ws26_c00242{word-spacing:-0.117120pt;}
.ws27_c00242{word-spacing:-0.085120pt;}
.ws2f_c00242{word-spacing:-0.037440pt;}
.ws25_c00242{word-spacing:0.000000pt;}
.ws2d_c00242{word-spacing:0.037440pt;}
.ws28_c00242{word-spacing:0.149760pt;}
.ws2a_c00242{word-spacing:0.299520pt;}
.ws2c_c00242{word-spacing:0.486720pt;}
.ws1_c00242{word-spacing:58.988160pt;}
.ws14_c00242{word-spacing:59.286080pt;}
.ws15_c00242{word-spacing:76.054720pt;}
.ws2_c00242{word-spacing:76.310080pt;}
.ws16_c00242{word-spacing:80.523520pt;}
.ws3_c00242{word-spacing:81.161920pt;}
.ws18_c00242{word-spacing:89.546240pt;}
.ws17_c00242{word-spacing:94.142720pt;}
.ws4_c00242{word-spacing:94.483200pt;}
.ws5_c00242{word-spacing:109.081280pt;}
.ws1e_c00242{word-spacing:201.280000pt;}
.ws11_c00242{word-spacing:201.920000pt;}
.ws1a_c00242{word-spacing:206.424000pt;}
.ws1f_c00242{word-spacing:206.716800pt;}
.wsb_c00242{word-spacing:207.068160pt;}
.ws7_c00242{word-spacing:247.482560pt;}
.ws8_c00242{word-spacing:255.023680pt;}
.ws6_c00242{word-spacing:257.739200pt;}
.ws22_c00242{word-spacing:468.480000pt;}
.ws24_c00242{word-spacing:482.722133pt;}
.ws23_c00242{word-spacing:499.328853pt;}
.wsa_c00242{word-spacing:513.140587pt;}
.ws12_c00242{word-spacing:723.664427pt;}
.ws19_c00242{word-spacing:751.571520pt;}
.ws1b_c00242{word-spacing:755.743680pt;}
.ws21_c00242{word-spacing:758.908480pt;}
.ws1c_c00242{word-spacing:761.086400pt;}
.wse_c00242{word-spacing:777.338560pt;}
.ws20_c00242{word-spacing:788.007680pt;}
.ws1d_c00242{word-spacing:794.129387pt;}
.wsc_c00242{word-spacing:797.423893pt;}
.wsd_c00242{word-spacing:1009.747307pt;}
.ws13_c00242{word-spacing:1023.540907pt;}
.ws10_c00242{word-spacing:1058.693440pt;}
._6_c00242{margin-left:-223.347840pt;}
._1_c00242{margin-left:-0.936000pt;}
._0_c00242{width:0.948672pt;}
._2_c00242{width:149.771840pt;}
._4_c00242{width:153.128960pt;}
._3_c00242{width:169.810560pt;}
._d_c00242{width:221.312000pt;}
._a_c00242{width:257.267840pt;}
._9_c00242{width:259.456320pt;}
._11_c00242{width:397.359253pt;}
._7_c00242{width:421.934827pt;}
._5_c00242{width:423.659307pt;}
._8_c00242{width:522.179520pt;}
._12_c00242{width:676.043520pt;}
._b_c00242{width:710.293120pt;}
._c_c00242{width:720.186880pt;}
._f_c00242{width:790.879360pt;}
._e_c00242{width:937.993387pt;}
._10_c00242{width:958.564587pt;}
.fs2_c00242{font-size:37.440000pt;}
.fs3_c00242{font-size:42.560000pt;}
.fs1_c00242{font-size:58.560000pt;}
.fs0_c00242{font-size:64.000000pt;}
.y0_c00242{bottom:0.000000pt;}
.y2f_c00242{bottom:15.999333pt;}
.y2d_c00242{bottom:19.200800pt;}
.y33_c00242{bottom:31.122133pt;}
.y1_c00242{bottom:54.887600pt;}
.y23_c00242{bottom:57.199467pt;}
.y6_c00242{bottom:57.200800pt;}
.y25_c00242{bottom:66.802133pt;}
.y43_c00242{bottom:116.519467pt;}
.y21_c00242{bottom:131.159467pt;}
.y20_c00242{bottom:155.320800pt;}
.y42_c00242{bottom:163.319467pt;}
.y1f_c00242{bottom:166.038000pt;}
.y41_c00242{bottom:195.319467pt;}
.y1e_c00242{bottom:205.799333pt;}
.y1d_c00242{bottom:233.404267pt;}
.y40_c00242{bottom:235.079467pt;}
.y1c_c00242{bottom:244.121467pt;}
.y1b_c00242{bottom:269.159467pt;}
.y3f_c00242{bottom:273.959467pt;}
.y1a_c00242{bottom:302.519467pt;}
.y3e_c00242{bottom:305.639467pt;}
.y3d_c00242{bottom:332.519467pt;}
.y19_c00242{bottom:342.279467pt;}
.y3c_c00242{bottom:367.559467pt;}
.y18_c00242{bottom:382.759333pt;}
.y3b_c00242{bottom:407.319467pt;}
.y17_c00242{bottom:424.756107pt;}
.y3a_c00242{bottom:447.079467pt;}
.y16_c00242{bottom:462.439467pt;}
.y39_c00242{bottom:481.402267pt;}
.y38_c00242{bottom:492.119467pt;}
.y15_c00242{bottom:500.839333pt;}
.y37_c00242{bottom:526.519467pt;}
.y14_c00242{bottom:534.599467pt;}
.y36_c00242{bottom:563.239467pt;}
.y13_c00242{bottom:572.201867pt;}
.y35_c00242{bottom:594.199467pt;}
.y12_c00242{bottom:604.119467pt;}
.y32_c00242{bottom:611.477333pt;}
.y34_c00242{bottom:626.199467pt;}
.y11_c00242{bottom:639.879333pt;}
.y31_c00242{bottom:671.159467pt;}
.y10_c00242{bottom:679.559467pt;}
.y2e_c00242{bottom:690.520000pt;}
.y30_c00242{bottom:695.799333pt;}
.y2c_c00242{bottom:715.878667pt;}
.yf_c00242{bottom:723.079467pt;}
.y2b_c00242{bottom:760.999467pt;}
.ye_c00242{bottom:762.839467pt;}
.y2a_c00242{bottom:800.679467pt;}
.yd_c00242{bottom:802.519333pt;}
.y29_c00242{bottom:833.239467pt;}
.yc_c00242{bottom:834.282853pt;}
.y28_c00242{bottom:865.559467pt;}
.yb_c00242{bottom:872.359333pt;}
.y24_c00242{bottom:888.437333pt;}
.y5_c00242{bottom:898.038667pt;}
.y22_c00242{bottom:898.040000pt;}
.y27_c00242{bottom:904.843467pt;}
.ya_c00242{bottom:909.647627pt;}
.y7_c00242{bottom:912.367867pt;}
.y26_c00242{bottom:917.079467pt;}
.y9_c00242{bottom:921.883627pt;}
.y8_c00242{bottom:949.079467pt;}
.y4_c00242{bottom:996.192907pt;}
.y3_c00242{bottom:1014.039067pt;}
.y2_c00242{bottom:1061.399467pt;}
.h17_c00242{height:24.640000pt;}
.h16_c00242{height:27.840000pt;}
.h1a_c00242{height:39.762667pt;}
.h5_c00242{height:39.948480pt;}
.h9_c00242{height:40.084053pt;}
.h14_c00242{height:40.574531pt;}
.hc_c00242{height:44.233920pt;}
.h2_c00242{height:44.800000pt;}
.h6_c00242{height:45.411520pt;}
.h3_c00242{height:48.294844pt;}
.hd_c00242{height:51.602987pt;}
.h1d_c00242{height:51.603520pt;}
.hf_c00242{height:51.924053pt;}
.h1e_c00242{height:52.781250pt;}
.h8_c00242{height:54.789440pt;}
.hb_c00242{height:54.803520pt;}
.he_c00242{height:54.816427pt;}
.ha_c00242{height:55.123520pt;}
.h1b_c00242{height:62.483520pt;}
.h4_c00242{height:65.840000pt;}
.h18_c00242{height:70.164053pt;}
.h15_c00242{height:75.440000pt;}
.h12_c00242{height:76.544320pt;}
.h1c_c00242{height:76.551787pt;}
.h19_c00242{height:76.608000pt;}
.h13_c00242{height:82.958187pt;}
.h10_c00242{height:90.687467pt;}
.h11_c00242{height:90.688000pt;}
.h7_c00242{height:94.355520pt;}
.h0_c00242{height:1122.520000pt;}
.h1_c00242{height:1122.666667pt;}
.w3_c00242{width:-550.341333pt;}
.w2_c00242{width:0.000000pt;}
.w4_c00242{width:0.058667pt;}
.w5_c00242{width:113.360000pt;}
.w6_c00242{width:514.960000pt;}
.w0_c00242{width:793.701333pt;}
.w1_c00242{width:794.000000pt;}
.x1_c00242{left:-745.700800pt;}
.x2_c00242{left:-680.260800pt;}
.xd_c00242{left:-653.619520pt;}
.x12_c00242{left:-650.499760pt;}
.xe_c00242{left:-648.660800pt;}
.x1a_c00242{left:-644.500800pt;}
.x19_c00242{left:-638.579520pt;}
.x4_c00242{left:-637.545467pt;}
.x18_c00242{left:-634.423680pt;}
.x15_c00242{left:-632.580800pt;}
.x11_c00242{left:-630.740800pt;}
.x1b_c00242{left:-629.224480pt;}
.x10_c00242{left:-626.660800pt;}
.x13_c00242{left:-625.620800pt;}
.xf_c00242{left:-624.020800pt;}
.x16_c00242{left:-620.180800pt;}
.x3_c00242{left:-557.540800pt;}
.x14_c00242{left:-546.980933pt;}
.x6_c00242{left:-541.543920pt;}
.xc_c00242{left:-534.260800pt;}
.x17_c00242{left:-509.860800pt;}
.x7_c00242{left:-472.266880pt;}
.x5_c00242{left:-466.180800pt;}
.x8_c00242{left:-405.468960pt;}
.x9_c00242{left:-336.596240pt;}
.xa_c00242{left:-273.075440pt;}
.xb_c00242{left:-191.870960pt;}
.x0_c00242{left:0.000000pt;}
.x2e_c00242{left:16.720000pt;}
.x31_c00242{left:18.320000pt;}
.x20_c00242{left:106.160000pt;}
.x1e_c00242{left:113.439760pt;}
.x1f_c00242{left:134.640000pt;}
.x36_c00242{left:139.440000pt;}
.x2d_c00242{left:140.560000pt;}
.x35_c00242{left:144.880000pt;}
.x39_c00242{left:150.080000pt;}
.x34_c00242{left:153.760000pt;}
.x30_c00242{left:156.560000pt;}
.x21_c00242{left:160.715333pt;}
.x3b_c00242{left:164.880000pt;}
.x2a_c00242{left:166.480000pt;}
.x2b_c00242{left:167.440000pt;}
.x2c_c00242{left:168.800000pt;}
.x37_c00242{left:173.678880pt;}
.x38_c00242{left:175.520000pt;}
.x2f_c00242{left:177.040000pt;}
.x23_c00242{left:256.880000pt;}
.x29_c00242{left:258.400000pt;}
.x3a_c00242{left:277.040000pt;}
.x24_c00242{left:326.231520pt;}
.x22_c00242{left:327.200000pt;}
.x33_c00242{left:337.440000pt;}
.x25_c00242{left:392.954960pt;}
.x32_c00242{left:406.807600pt;}
.x26_c00242{left:461.668080pt;}
.x27_c00242{left:525.103760pt;}
.x28_c00242{left:601.498960pt;}
.x1d_c00242{left:619.120000pt;}
.x1c_c00242{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00243{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00243{-webkit-text-stroke:0px transparent;}
}
.y0_c00243{bottom:0.000000px;}
.h0_c00243{height:1262.835000px;}
.h1_c00243{height:1263.000000px;}
.w0_c00243{width:892.914000px;}
.w1_c00243{width:893.250000px;}
.x0_c00243{left:0.000000px;}
@media print{
.y0_c00243{bottom:0.000000pt;}
.h0_c00243{height:1122.520000pt;}
.h1_c00243{height:1122.666667pt;}
.w0_c00243{width:793.701333pt;}
.w1_c00243{width:794.000000pt;}
.x0_c00243{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_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;}
.sc__c00244{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
}
.y0_c00244{bottom:0.000000px;}
.h0_c00244{height:1262.835000px;}
.h1_c00244{height:1263.000000px;}
.w0_c00244{width:892.914000px;}
.w1_c00244{width:893.250000px;}
.x0_c00244{left:0.000000px;}
@media print{
.y0_c00244{bottom:0.000000pt;}
.h0_c00244{height:1122.520000pt;}
.h1_c00244{height:1122.666667pt;}
.w0_c00244{width:793.701333pt;}
.w1_c00244{width:794.000000pt;}
.x0_c00244{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_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;}
.sc__c00245{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
}
.y0_c00245{bottom:0.000000px;}
.h0_c00245{height:1262.835000px;}
.h1_c00245{height:1263.000000px;}
.w0_c00245{width:892.914000px;}
.w1_c00245{width:893.250000px;}
.x0_c00245{left:0.000000px;}
@media print{
.y0_c00245{bottom:0.000000pt;}
.h0_c00245{height:1122.520000pt;}
.h1_c00245{height:1122.666667pt;}
.w0_c00245{width:793.701333pt;}
.w1_c00245{width:794.000000pt;}
.x0_c00245{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_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00246;src:url('chunks/assets/font_a123cad3ffbcc8621c9ff48f.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.575000;font-style:normal;font-weight:normal;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_e8ac53433aaf284680f1390b.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00246;src:url('chunks/assets/font_3df16ba789bb1791b36a5c3d.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00246{letter-spacing:-0.288000px;}
.ls9_c00246{letter-spacing:-0.144000px;}
.ls8_c00246{letter-spacing:-0.072000px;}
.ls6_c00246{letter-spacing:0.000000px;}
.ls0_c00246{letter-spacing:0.072000px;}
.ls2_c00246{letter-spacing:0.144000px;}
.ls5_c00246{letter-spacing:22.680000px;}
.ls4_c00246{letter-spacing:24.120000px;}
.ls3_c00246{letter-spacing:24.264000px;}
.ls1_c00246{letter-spacing:28.821600px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00246{word-spacing:-18.072000px;}
.ws1_c00246{word-spacing:-18.000000px;}
.ws7_c00246{word-spacing:-17.856000px;}
.wsb_c00246{word-spacing:-0.072000px;}
.wsa_c00246{word-spacing:0.000000px;}
.ws14_c00246{word-spacing:0.072000px;}
.ws19_c00246{word-spacing:0.360000px;}
.ws1f_c00246{word-spacing:0.648000px;}
.ws1e_c00246{word-spacing:0.720000px;}
.ws5_c00246{word-spacing:0.792000px;}
.ws1d_c00246{word-spacing:3.888000px;}
.ws4_c00246{word-spacing:4.118400px;}
.ws24_c00246{word-spacing:4.608000px;}
.ws9_c00246{word-spacing:4.680000px;}
.wsd_c00246{word-spacing:5.328000px;}
.ws21_c00246{word-spacing:5.760000px;}
.ws20_c00246{word-spacing:6.120000px;}
.ws1a_c00246{word-spacing:6.408000px;}
.ws27_c00246{word-spacing:6.480000px;}
.ws26_c00246{word-spacing:7.488000px;}
.ws22_c00246{word-spacing:7.848000px;}
.ws17_c00246{word-spacing:8.208000px;}
.ws18_c00246{word-spacing:8.280000px;}
.wsc_c00246{word-spacing:9.648000px;}
.ws11_c00246{word-spacing:10.728000px;}
.ws13_c00246{word-spacing:11.160000px;}
.ws12_c00246{word-spacing:11.376000px;}
.wsf_c00246{word-spacing:11.520000px;}
.ws25_c00246{word-spacing:12.528000px;}
.ws0_c00246{word-spacing:12.600000px;}
.ws1b_c00246{word-spacing:13.176000px;}
.ws1c_c00246{word-spacing:13.320000px;}
.ws10_c00246{word-spacing:13.608000px;}
.ws2_c00246{word-spacing:13.644000px;}
.ws8_c00246{word-spacing:15.408000px;}
.ws23_c00246{word-spacing:15.480000px;}
.wse_c00246{word-spacing:18.000000px;}
.ws16_c00246{word-spacing:20.088000px;}
.ws15_c00246{word-spacing:25.200000px;}
.ws6_c00246{word-spacing:104.400000px;}
._0_c00246{margin-left:-1.008000px;}
._1_c00246{width:1.008000px;}
._3_c00246{width:6.336000px;}
._2_c00246{width:25.416000px;}
.fc1_c00246{color:rgb(0,0,0);}
.fc0_c00246{color:rgb(35,31,32);}
.fs0_c00246{font-size:72.000000px;}
.y0_c00246{bottom:0.000000px;}
.y1_c00246{bottom:61.748550px;}
.y1e_c00246{bottom:146.474400px;}
.y1d_c00246{bottom:177.524400px;}
.y1c_c00246{bottom:208.574400px;}
.y1b_c00246{bottom:239.624400px;}
.y1a_c00246{bottom:270.674400px;}
.y19_c00246{bottom:301.724400px;}
.y18_c00246{bottom:332.774400px;}
.y17_c00246{bottom:363.824400px;}
.y16_c00246{bottom:425.744400px;}
.y15_c00246{bottom:488.024400px;}
.y14_c00246{bottom:519.074400px;}
.y13_c00246{bottom:550.124400px;}
.y12_c00246{bottom:581.174400px;}
.y11_c00246{bottom:643.274400px;}
.y10_c00246{bottom:674.324400px;}
.yf_c00246{bottom:705.374400px;}
.ye_c00246{bottom:736.424400px;}
.yd_c00246{bottom:767.474400px;}
.yc_c00246{bottom:798.434400px;}
.yb_c00246{bottom:829.484400px;}
.ya_c00246{bottom:891.584400px;}
.y9_c00246{bottom:922.634400px;}
.y8_c00246{bottom:953.684400px;}
.y7_c00246{bottom:984.734400px;}
.y6_c00246{bottom:1015.784400px;}
.y5_c00246{bottom:1046.834400px;}
.y4_c00246{bottom:1077.884400px;}
.y3_c00246{bottom:1139.804400px;}
.y2_c00246{bottom:1193.174400px;}
.h2_c00246{height:50.400000px;}
.h3_c00246{height:76.824000px;}
.h4_c00246{height:78.048000px;}
.h0_c00246{height:1262.835000px;}
.h1_c00246{height:1263.000000px;}
.w0_c00246{width:892.914000px;}
.w1_c00246{width:893.250000px;}
.x0_c00246{left:0.000000px;}
.x4_c00246{left:127.620000px;}
.x3_c00246{left:159.570000px;}
.x2_c00246{left:679.950000px;}
.x1_c00246{left:804.366150px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls7_c00246{letter-spacing:-0.256000pt;}
.ls9_c00246{letter-spacing:-0.128000pt;}
.ls8_c00246{letter-spacing:-0.064000pt;}
.ls6_c00246{letter-spacing:0.000000pt;}
.ls0_c00246{letter-spacing:0.064000pt;}
.ls2_c00246{letter-spacing:0.128000pt;}
.ls5_c00246{letter-spacing:20.160000pt;}
.ls4_c00246{letter-spacing:21.440000pt;}
.ls3_c00246{letter-spacing:21.568000pt;}
.ls1_c00246{letter-spacing:25.619200pt;}
.ws3_c00246{word-spacing:-16.064000pt;}
.ws1_c00246{word-spacing:-16.000000pt;}
.ws7_c00246{word-spacing:-15.872000pt;}
.wsb_c00246{word-spacing:-0.064000pt;}
.wsa_c00246{word-spacing:0.000000pt;}
.ws14_c00246{word-spacing:0.064000pt;}
.ws19_c00246{word-spacing:0.320000pt;}
.ws1f_c00246{word-spacing:0.576000pt;}
.ws1e_c00246{word-spacing:0.640000pt;}
.ws5_c00246{word-spacing:0.704000pt;}
.ws1d_c00246{word-spacing:3.456000pt;}
.ws4_c00246{word-spacing:3.660800pt;}
.ws24_c00246{word-spacing:4.096000pt;}
.ws9_c00246{word-spacing:4.160000pt;}
.wsd_c00246{word-spacing:4.736000pt;}
.ws21_c00246{word-spacing:5.120000pt;}
.ws20_c00246{word-spacing:5.440000pt;}
.ws1a_c00246{word-spacing:5.696000pt;}
.ws27_c00246{word-spacing:5.760000pt;}
.ws26_c00246{word-spacing:6.656000pt;}
.ws22_c00246{word-spacing:6.976000pt;}
.ws17_c00246{word-spacing:7.296000pt;}
.ws18_c00246{word-spacing:7.360000pt;}
.wsc_c00246{word-spacing:8.576000pt;}
.ws11_c00246{word-spacing:9.536000pt;}
.ws13_c00246{word-spacing:9.920000pt;}
.ws12_c00246{word-spacing:10.112000pt;}
.wsf_c00246{word-spacing:10.240000pt;}
.ws25_c00246{word-spacing:11.136000pt;}
.ws0_c00246{word-spacing:11.200000pt;}
.ws1b_c00246{word-spacing:11.712000pt;}
.ws1c_c00246{word-spacing:11.840000pt;}
.ws10_c00246{word-spacing:12.096000pt;}
.ws2_c00246{word-spacing:12.128000pt;}
.ws8_c00246{word-spacing:13.696000pt;}
.ws23_c00246{word-spacing:13.760000pt;}
.wse_c00246{word-spacing:16.000000pt;}
.ws16_c00246{word-spacing:17.856000pt;}
.ws15_c00246{word-spacing:22.400000pt;}
.ws6_c00246{word-spacing:92.800000pt;}
._0_c00246{margin-left:-0.896000pt;}
._1_c00246{width:0.896000pt;}
._3_c00246{width:5.632000pt;}
._2_c00246{width:22.592000pt;}
.fs0_c00246{font-size:64.000000pt;}
.y0_c00246{bottom:0.000000pt;}
.y1_c00246{bottom:54.887600pt;}
.y1e_c00246{bottom:130.199467pt;}
.y1d_c00246{bottom:157.799467pt;}
.y1c_c00246{bottom:185.399467pt;}
.y1b_c00246{bottom:212.999467pt;}
.y1a_c00246{bottom:240.599467pt;}
.y19_c00246{bottom:268.199467pt;}
.y18_c00246{bottom:295.799467pt;}
.y17_c00246{bottom:323.399467pt;}
.y16_c00246{bottom:378.439467pt;}
.y15_c00246{bottom:433.799467pt;}
.y14_c00246{bottom:461.399467pt;}
.y13_c00246{bottom:488.999467pt;}
.y12_c00246{bottom:516.599467pt;}
.y11_c00246{bottom:571.799467pt;}
.y10_c00246{bottom:599.399467pt;}
.yf_c00246{bottom:626.999467pt;}
.ye_c00246{bottom:654.599467pt;}
.yd_c00246{bottom:682.199467pt;}
.yc_c00246{bottom:709.719467pt;}
.yb_c00246{bottom:737.319467pt;}
.ya_c00246{bottom:792.519467pt;}
.y9_c00246{bottom:820.119467pt;}
.y8_c00246{bottom:847.719467pt;}
.y7_c00246{bottom:875.319467pt;}
.y6_c00246{bottom:902.919467pt;}
.y5_c00246{bottom:930.519467pt;}
.y4_c00246{bottom:958.119467pt;}
.y3_c00246{bottom:1013.159467pt;}
.y2_c00246{bottom:1060.599467pt;}
.h2_c00246{height:44.800000pt;}
.h3_c00246{height:68.288000pt;}
.h4_c00246{height:69.376000pt;}
.h0_c00246{height:1122.520000pt;}
.h1_c00246{height:1122.666667pt;}
.w0_c00246{width:793.701333pt;}
.w1_c00246{width:794.000000pt;}
.x0_c00246{left:0.000000pt;}
.x4_c00246{left:113.440000pt;}
.x3_c00246{left:141.840000pt;}
.x2_c00246{left:604.400000pt;}
.x1_c00246{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00247;src:url('chunks/assets/font_76fc8e2609705e00c0cc4419.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00247;src:url('chunks/assets/font_cb2f6c7bb6ebca79de14c0a3.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00247;src:url('chunks/assets/font_bc50391b66c957a658337a42.woff2')format("woff");}.ff4_c00247{font-family:ff4_c00247;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00247;src:url('chunks/assets/font_60f61c47ca751421ca62f891.woff2')format("woff");}.ff5_c00247{font-family:ff5_c00247;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v2_c00247{vertical-align:-29.880000px;}
.v0_c00247{vertical-align:0.000000px;}
.v1_c00247{vertical-align:29.939040px;}
.lsf_c00247{letter-spacing:-0.197640px;}
.ls10_c00247{letter-spacing:-0.120240px;}
.lse_c00247{letter-spacing:-0.065880px;}
.ls11_c00247{letter-spacing:-0.060120px;}
.lsd_c00247{letter-spacing:0.000000px;}
.ls8_c00247{letter-spacing:0.065880px;}
.ls0_c00247{letter-spacing:0.072000px;}
.lsb_c00247{letter-spacing:0.087840px;}
.lsc_c00247{letter-spacing:0.120240px;}
.ls5_c00247{letter-spacing:0.144000px;}
.ls1_c00247{letter-spacing:0.197640px;}
.ls4_c00247{letter-spacing:3.261960px;}
.ls2_c00247{letter-spacing:15.896844px;}
.ls3_c00247{letter-spacing:16.667640px;}
.ls7_c00247{letter-spacing:18.630864px;}
.lsa_c00247{letter-spacing:21.672000px;}
.ls9_c00247{letter-spacing:21.960000px;}
.ls6_c00247{letter-spacing:31.680000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00247{word-spacing:-18.000000px;}
.ws4_c00247{word-spacing:-16.470000px;}
.ws3_c00247{word-spacing:-16.272360px;}
.ws8_c00247{word-spacing:-13.707360px;}
.wsb_c00247{word-spacing:-0.432000px;}
.ws35_c00247{word-spacing:-0.420840px;}
.ws34_c00247{word-spacing:-0.240480px;}
.ws13_c00247{word-spacing:-0.197640px;}
.ws15_c00247{word-spacing:-0.131760px;}
.ws33_c00247{word-spacing:-0.120240px;}
.ws2e_c00247{word-spacing:-0.072000px;}
.ws31_c00247{word-spacing:-0.060120px;}
.ws9_c00247{word-spacing:0.000000px;}
.wsf_c00247{word-spacing:0.065880px;}
.ws14_c00247{word-spacing:0.131760px;}
.ws32_c00247{word-spacing:0.180360px;}
.ws36_c00247{word-spacing:0.240480px;}
.wse_c00247{word-spacing:0.263520px;}
.ws2d_c00247{word-spacing:0.288000px;}
.ws1c_c00247{word-spacing:1.008000px;}
.ws12_c00247{word-spacing:1.712880px;}
.ws11_c00247{word-spacing:1.976400px;}
.ws1f_c00247{word-spacing:2.042280px;}
.ws1e_c00247{word-spacing:2.305800px;}
.ws2_c00247{word-spacing:2.371680px;}
.ws20_c00247{word-spacing:2.437560px;}
.ws23_c00247{word-spacing:2.766960px;}
.ws7_c00247{word-spacing:2.880000px;}
.ws2b_c00247{word-spacing:3.312000px;}
.ws2c_c00247{word-spacing:3.528000px;}
.ws2a_c00247{word-spacing:3.600000px;}
.ws26_c00247{word-spacing:3.888000px;}
.ws1b_c00247{word-spacing:3.960000px;}
.ws2f_c00247{word-spacing:6.696000px;}
.ws1d_c00247{word-spacing:6.719760px;}
.ws30_c00247{word-spacing:6.768000px;}
.ws29_c00247{word-spacing:7.128000px;}
.ws19_c00247{word-spacing:7.848000px;}
.ws5_c00247{word-spacing:7.918776px;}
.ws6_c00247{word-spacing:7.971480px;}
.ws1a_c00247{word-spacing:8.208000px;}
.ws18_c00247{word-spacing:8.280000px;}
.ws21_c00247{word-spacing:8.432640px;}
.ws22_c00247{word-spacing:8.498520px;}
.ws10_c00247{word-spacing:12.517200px;}
.ws1_c00247{word-spacing:12.846600px;}
.wsa_c00247{word-spacing:12.960000px;}
.ws16_c00247{word-spacing:13.536000px;}
.ws17_c00247{word-spacing:13.680000px;}
.ws25_c00247{word-spacing:15.048000px;}
.ws27_c00247{word-spacing:19.728000px;}
.ws28_c00247{word-spacing:19.800000px;}
.ws24_c00247{word-spacing:20.422800px;}
.wsd_c00247{word-spacing:22.596840px;}
.wsc_c00247{word-spacing:23.189760px;}
._3_c00247{margin-left:-6.670080px;}
._0_c00247{margin-left:-1.144800px;}
._1_c00247{width:1.001376px;}
._2_c00247{width:4.392000px;}
.fc1_c00247{color:rgb(0,0,0);}
.fc0_c00247{color:rgb(35,31,32);}
.fs3_c00247{font-size:38.880000px;}
.fs2_c00247{font-size:42.120000px;}
.fs4_c00247{font-size:60.120000px;}
.fs1_c00247{font-size:65.880000px;}
.fs0_c00247{font-size:72.000000px;}
.y0_c00247{bottom:0.000000px;}
.y1_c00247{bottom:61.748550px;}
.y22_c00247{bottom:110.364780px;}
.y21_c00247{bottom:128.641260px;}
.y20_c00247{bottom:147.007920px;}
.y1f_c00247{bottom:172.754400px;}
.y1e_c00247{bottom:184.004400px;}
.y1d_c00247{bottom:205.964400px;}
.y1c_c00247{bottom:237.014400px;}
.y1b_c00247{bottom:299.114400px;}
.y1a_c00247{bottom:330.164400px;}
.y19_c00247{bottom:361.214400px;}
.y18_c00247{bottom:392.264400px;}
.y17_c00247{bottom:423.314400px;}
.y16_c00247{bottom:454.364400px;}
.y15_c00247{bottom:485.414400px;}
.y14_c00247{bottom:546.063450px;}
.y13_c00247{bottom:574.507140px;}
.y12_c00247{bottom:603.033180px;}
.y11_c00247{bottom:631.476870px;}
.y10_c00247{bottom:659.920560px;}
.yf_c00247{bottom:688.364250px;}
.ye_c00247{bottom:749.294250px;}
.yd_c00247{bottom:780.344250px;}
.yc_c00247{bottom:811.394250px;}
.yb_c00247{bottom:842.444250px;}
.ya_c00247{bottom:873.494250px;}
.y9_c00247{bottom:934.229640px;}
.y8_c00247{bottom:962.673330px;}
.y7_c00247{bottom:991.117020px;}
.y6_c00247{bottom:1019.560710px;}
.y5_c00247{bottom:1048.004400px;}
.y4_c00247{bottom:1108.934400px;}
.y3_c00247{bottom:1139.984400px;}
.y2_c00247{bottom:1193.174400px;}
.h7_c00247{height:32.064609px;}
.h8_c00247{height:49.581387px;}
.h2_c00247{height:50.400000px;}
.h6_c00247{height:54.331699px;}
.h4_c00247{height:71.413920px;}
.h5_c00247{height:74.881080px;}
.h3_c00247{height:76.824000px;}
.h0_c00247{height:1262.835000px;}
.h1_c00247{height:1263.000000px;}
.w0_c00247{width:892.914000px;}
.w1_c00247{width:893.250000px;}
.x0_c00247{left:0.000000px;}
.x1_c00247{left:54.000000px;}
.x2_c00247{left:127.620000px;}
.x3_c00247{left:148.950000px;}
.x4_c00247{left:159.570000px;}
@media print{
.v2_c00247{vertical-align:-26.560000pt;}
.v0_c00247{vertical-align:0.000000pt;}
.v1_c00247{vertical-align:26.612480pt;}
.lsf_c00247{letter-spacing:-0.175680pt;}
.ls10_c00247{letter-spacing:-0.106880pt;}
.lse_c00247{letter-spacing:-0.058560pt;}
.ls11_c00247{letter-spacing:-0.053440pt;}
.lsd_c00247{letter-spacing:0.000000pt;}
.ls8_c00247{letter-spacing:0.058560pt;}
.ls0_c00247{letter-spacing:0.064000pt;}
.lsb_c00247{letter-spacing:0.078080pt;}
.lsc_c00247{letter-spacing:0.106880pt;}
.ls5_c00247{letter-spacing:0.128000pt;}
.ls1_c00247{letter-spacing:0.175680pt;}
.ls4_c00247{letter-spacing:2.899520pt;}
.ls2_c00247{letter-spacing:14.130528pt;}
.ls3_c00247{letter-spacing:14.815680pt;}
.ls7_c00247{letter-spacing:16.560768pt;}
.lsa_c00247{letter-spacing:19.264000pt;}
.ls9_c00247{letter-spacing:19.520000pt;}
.ls6_c00247{letter-spacing:28.160000pt;}
.ws0_c00247{word-spacing:-16.000000pt;}
.ws4_c00247{word-spacing:-14.640000pt;}
.ws3_c00247{word-spacing:-14.464320pt;}
.ws8_c00247{word-spacing:-12.184320pt;}
.wsb_c00247{word-spacing:-0.384000pt;}
.ws35_c00247{word-spacing:-0.374080pt;}
.ws34_c00247{word-spacing:-0.213760pt;}
.ws13_c00247{word-spacing:-0.175680pt;}
.ws15_c00247{word-spacing:-0.117120pt;}
.ws33_c00247{word-spacing:-0.106880pt;}
.ws2e_c00247{word-spacing:-0.064000pt;}
.ws31_c00247{word-spacing:-0.053440pt;}
.ws9_c00247{word-spacing:0.000000pt;}
.wsf_c00247{word-spacing:0.058560pt;}
.ws14_c00247{word-spacing:0.117120pt;}
.ws32_c00247{word-spacing:0.160320pt;}
.ws36_c00247{word-spacing:0.213760pt;}
.wse_c00247{word-spacing:0.234240pt;}
.ws2d_c00247{word-spacing:0.256000pt;}
.ws1c_c00247{word-spacing:0.896000pt;}
.ws12_c00247{word-spacing:1.522560pt;}
.ws11_c00247{word-spacing:1.756800pt;}
.ws1f_c00247{word-spacing:1.815360pt;}
.ws1e_c00247{word-spacing:2.049600pt;}
.ws2_c00247{word-spacing:2.108160pt;}
.ws20_c00247{word-spacing:2.166720pt;}
.ws23_c00247{word-spacing:2.459520pt;}
.ws7_c00247{word-spacing:2.560000pt;}
.ws2b_c00247{word-spacing:2.944000pt;}
.ws2c_c00247{word-spacing:3.136000pt;}
.ws2a_c00247{word-spacing:3.200000pt;}
.ws26_c00247{word-spacing:3.456000pt;}
.ws1b_c00247{word-spacing:3.520000pt;}
.ws2f_c00247{word-spacing:5.952000pt;}
.ws1d_c00247{word-spacing:5.973120pt;}
.ws30_c00247{word-spacing:6.016000pt;}
.ws29_c00247{word-spacing:6.336000pt;}
.ws19_c00247{word-spacing:6.976000pt;}
.ws5_c00247{word-spacing:7.038912pt;}
.ws6_c00247{word-spacing:7.085760pt;}
.ws1a_c00247{word-spacing:7.296000pt;}
.ws18_c00247{word-spacing:7.360000pt;}
.ws21_c00247{word-spacing:7.495680pt;}
.ws22_c00247{word-spacing:7.554240pt;}
.ws10_c00247{word-spacing:11.126400pt;}
.ws1_c00247{word-spacing:11.419200pt;}
.wsa_c00247{word-spacing:11.520000pt;}
.ws16_c00247{word-spacing:12.032000pt;}
.ws17_c00247{word-spacing:12.160000pt;}
.ws25_c00247{word-spacing:13.376000pt;}
.ws27_c00247{word-spacing:17.536000pt;}
.ws28_c00247{word-spacing:17.600000pt;}
.ws24_c00247{word-spacing:18.153600pt;}
.wsd_c00247{word-spacing:20.086080pt;}
.wsc_c00247{word-spacing:20.613120pt;}
._3_c00247{margin-left:-5.928960pt;}
._0_c00247{margin-left:-1.017600pt;}
._1_c00247{width:0.890112pt;}
._2_c00247{width:3.904000pt;}
.fs3_c00247{font-size:34.560000pt;}
.fs2_c00247{font-size:37.440000pt;}
.fs4_c00247{font-size:53.440000pt;}
.fs1_c00247{font-size:58.560000pt;}
.fs0_c00247{font-size:64.000000pt;}
.y0_c00247{bottom:0.000000pt;}
.y1_c00247{bottom:54.887600pt;}
.y22_c00247{bottom:98.102027pt;}
.y21_c00247{bottom:114.347787pt;}
.y20_c00247{bottom:130.673707pt;}
.y1f_c00247{bottom:153.559467pt;}
.y1e_c00247{bottom:163.559467pt;}
.y1d_c00247{bottom:183.079467pt;}
.y1c_c00247{bottom:210.679467pt;}
.y1b_c00247{bottom:265.879467pt;}
.y1a_c00247{bottom:293.479467pt;}
.y19_c00247{bottom:321.079467pt;}
.y18_c00247{bottom:348.679467pt;}
.y17_c00247{bottom:376.279467pt;}
.y16_c00247{bottom:403.879467pt;}
.y15_c00247{bottom:431.479467pt;}
.y14_c00247{bottom:485.389733pt;}
.y13_c00247{bottom:510.673013pt;}
.y12_c00247{bottom:536.029493pt;}
.y11_c00247{bottom:561.312773pt;}
.y10_c00247{bottom:586.596053pt;}
.yf_c00247{bottom:611.879333pt;}
.ye_c00247{bottom:666.039333pt;}
.yd_c00247{bottom:693.639333pt;}
.yc_c00247{bottom:721.239333pt;}
.yb_c00247{bottom:748.839333pt;}
.ya_c00247{bottom:776.439333pt;}
.y9_c00247{bottom:830.426347pt;}
.y8_c00247{bottom:855.709627pt;}
.y7_c00247{bottom:880.992907pt;}
.y6_c00247{bottom:906.276187pt;}
.y5_c00247{bottom:931.559467pt;}
.y4_c00247{bottom:985.719467pt;}
.y3_c00247{bottom:1013.319467pt;}
.y2_c00247{bottom:1060.599467pt;}
.h7_c00247{height:28.501875pt;}
.h8_c00247{height:44.072344pt;}
.h2_c00247{height:44.800000pt;}
.h6_c00247{height:48.294844pt;}
.h4_c00247{height:63.479040pt;}
.h5_c00247{height:66.560960pt;}
.h3_c00247{height:68.288000pt;}
.h0_c00247{height:1122.520000pt;}
.h1_c00247{height:1122.666667pt;}
.w0_c00247{width:793.701333pt;}
.w1_c00247{width:794.000000pt;}
.x0_c00247{left:0.000000pt;}
.x1_c00247{left:48.000000pt;}
.x2_c00247{left:113.440000pt;}
.x3_c00247{left:132.400000pt;}
.x4_c00247{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00248;src:url('chunks/assets/font_4691e8e7d8df929a32028c61.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00248;src:url('chunks/assets/font_ed61feb718b73945c4401ee9.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00248;src:url('chunks/assets/font_85952138b5ccd1ac3435b5c0.woff2')format("woff");}.ff4_c00248{font-family:ff4_c00248;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00248;src:url('chunks/assets/font_20e8ab04db19515b119b267e.woff2')format("woff");}.ff5_c00248{font-family:ff5_c00248;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00248;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00248{font-family:ff6_c00248;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00248;src:url('chunks/assets/font_fff7114732695cee68d89487.woff2')format("woff");}.ff7_c00248{font-family:ff7_c00248;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00248;src:url('chunks/assets/font_1d62c2996e5f4140614c2228.woff2')format("woff");}.ff8_c00248{font-family:ff8_c00248;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00248;src:url('chunks/assets/font_85952138b5ccd1ac3435b5c0.woff2')format("woff");}.ff9_c00248{font-family:ff9_c00248;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00248;src:url('chunks/assets/font_20e8ab04db19515b119b267e.woff2')format("woff");}.ffa_c00248{font-family:ffa_c00248;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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:-29.880000px;}
.v0_c00248{vertical-align:0.000000px;}
.v1_c00248{vertical-align:29.939040px;}
.ls17_c00248{letter-spacing:-0.288000px;}
.ls14_c00248{letter-spacing:-0.197640px;}
.ls15_c00248{letter-spacing:-0.120240px;}
.ls13_c00248{letter-spacing:-0.065880px;}
.ls16_c00248{letter-spacing:-0.060120px;}
.ls12_c00248{letter-spacing:0.000000px;}
.ls8_c00248{letter-spacing:0.065880px;}
.ls0_c00248{letter-spacing:0.072000px;}
.lsb_c00248{letter-spacing:0.087840px;}
.lsc_c00248{letter-spacing:0.120240px;}
.ls5_c00248{letter-spacing:0.144000px;}
.ls1_c00248{letter-spacing:0.197640px;}
.ls4_c00248{letter-spacing:3.261960px;}
.ls2_c00248{letter-spacing:15.896844px;}
.ls3_c00248{letter-spacing:16.667640px;}
.ls7_c00248{letter-spacing:18.630864px;}
.ls11_c00248{letter-spacing:21.240000px;}
.lsa_c00248{letter-spacing:21.672000px;}
.ls9_c00248{letter-spacing:21.960000px;}
.lsd_c00248{letter-spacing:22.623192px;}
.ls6_c00248{letter-spacing:31.680000px;}
.lsf_c00248{letter-spacing:34.125840px;}
.ls10_c00248{letter-spacing:36.720000px;}
.lse_c00248{letter-spacing:57.500064px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00248{word-spacing:-18.000000px;}
.wsa_c00248{word-spacing:-17.712000px;}
.wse_c00248{word-spacing:-16.535880px;}
.ws4_c00248{word-spacing:-16.470000px;}
.wsb_c00248{word-spacing:-16.404120px;}
.ws3_c00248{word-spacing:-16.272360px;}
.ws8_c00248{word-spacing:-13.707360px;}
.ws14_c00248{word-spacing:-0.432000px;}
.ws3e_c00248{word-spacing:-0.420840px;}
.ws3d_c00248{word-spacing:-0.240480px;}
.ws1c_c00248{word-spacing:-0.197640px;}
.ws1e_c00248{word-spacing:-0.131760px;}
.ws3c_c00248{word-spacing:-0.120240px;}
.ws37_c00248{word-spacing:-0.072000px;}
.ws3a_c00248{word-spacing:-0.060120px;}
.ws12_c00248{word-spacing:0.000000px;}
.ws18_c00248{word-spacing:0.065880px;}
.ws1d_c00248{word-spacing:0.131760px;}
.ws3b_c00248{word-spacing:0.180360px;}
.ws3f_c00248{word-spacing:0.240480px;}
.ws17_c00248{word-spacing:0.263520px;}
.ws36_c00248{word-spacing:0.288000px;}
.ws25_c00248{word-spacing:1.008000px;}
.ws40_c00248{word-spacing:1.317600px;}
.ws1b_c00248{word-spacing:1.712880px;}
.ws1a_c00248{word-spacing:1.976400px;}
.ws28_c00248{word-spacing:2.042280px;}
.ws4a_c00248{word-spacing:2.160000px;}
.ws27_c00248{word-spacing:2.305800px;}
.ws2_c00248{word-spacing:2.371680px;}
.ws29_c00248{word-spacing:2.437560px;}
.ws45_c00248{word-spacing:2.448000px;}
.ws46_c00248{word-spacing:2.520000px;}
.ws2c_c00248{word-spacing:2.766960px;}
.ws7_c00248{word-spacing:2.880000px;}
.ws4e_c00248{word-spacing:3.030480px;}
.ws34_c00248{word-spacing:3.312000px;}
.ws4f_c00248{word-spacing:3.425760px;}
.ws5f_c00248{word-spacing:3.456000px;}
.ws35_c00248{word-spacing:3.528000px;}
.ws33_c00248{word-spacing:3.600000px;}
.ws2f_c00248{word-spacing:3.888000px;}
.ws24_c00248{word-spacing:3.960000px;}
.wsc_c00248{word-spacing:5.415336px;}
.wsd_c00248{word-spacing:5.540508px;}
.ws55_c00248{word-spacing:5.995080px;}
.ws50_c00248{word-spacing:6.390360px;}
.ws38_c00248{word-spacing:6.696000px;}
.ws26_c00248{word-spacing:6.719760px;}
.ws39_c00248{word-spacing:6.768000px;}
.ws41_c00248{word-spacing:6.983280px;}
.ws32_c00248{word-spacing:7.128000px;}
.ws4b_c00248{word-spacing:7.776000px;}
.ws22_c00248{word-spacing:7.848000px;}
.ws5_c00248{word-spacing:7.918776px;}
.ws6_c00248{word-spacing:7.971480px;}
.ws59_c00248{word-spacing:8.136000px;}
.ws23_c00248{word-spacing:8.208000px;}
.ws21_c00248{word-spacing:8.280000px;}
.ws2a_c00248{word-spacing:8.432640px;}
.ws2b_c00248{word-spacing:8.498520px;}
.ws5d_c00248{word-spacing:8.928000px;}
.ws5e_c00248{word-spacing:9.000000px;}
.ws60_c00248{word-spacing:9.648000px;}
.ws61_c00248{word-spacing:9.720000px;}
.ws5a_c00248{word-spacing:11.088000px;}
.ws51_c00248{word-spacing:12.121920px;}
.ws52_c00248{word-spacing:12.385440px;}
.ws19_c00248{word-spacing:12.517200px;}
.ws1_c00248{word-spacing:12.846600px;}
.ws13_c00248{word-spacing:12.960000px;}
.ws1f_c00248{word-spacing:13.536000px;}
.ws20_c00248{word-spacing:13.680000px;}
.ws2e_c00248{word-spacing:15.048000px;}
.ws57_c00248{word-spacing:17.524080px;}
.ws11_c00248{word-spacing:17.655840px;}
.ws58_c00248{word-spacing:17.787600px;}
.ws10_c00248{word-spacing:17.794188px;}
.ws56_c00248{word-spacing:17.853480px;}
.wsf_c00248{word-spacing:17.985240px;}
.ws48_c00248{word-spacing:18.216000px;}
.ws47_c00248{word-spacing:18.360000px;}
.ws5b_c00248{word-spacing:18.648000px;}
.ws5c_c00248{word-spacing:18.720000px;}
.ws42_c00248{word-spacing:19.080000px;}
.ws4c_c00248{word-spacing:19.368000px;}
.ws4d_c00248{word-spacing:19.440000px;}
.ws30_c00248{word-spacing:19.728000px;}
.ws31_c00248{word-spacing:19.800000px;}
.ws2d_c00248{word-spacing:20.422800px;}
.ws49_c00248{word-spacing:22.320000px;}
.ws16_c00248{word-spacing:22.596840px;}
.ws15_c00248{word-spacing:23.189760px;}
.ws43_c00248{word-spacing:25.056000px;}
.ws44_c00248{word-spacing:25.128000px;}
.ws9_c00248{word-spacing:25.200000px;}
.ws54_c00248{word-spacing:40.911480px;}
.ws53_c00248{word-spacing:41.175000px;}
._5_c00248{margin-left:-6.653880px;}
._0_c00248{margin-left:-1.216800px;}
._1_c00248{width:1.126548px;}
._4_c00248{width:4.392000px;}
._2_c00248{width:17.309304px;}
._3_c00248{width:19.434600px;}
._8_c00248{width:27.993600px;}
._6_c00248{width:44.208000px;}
._7_c00248{width:56.178504px;}
.fc2_c00248{color:transparent;}
.fc1_c00248{color:rgb(0,0,0);}
.fc0_c00248{color:rgb(35,31,32);}
.fs3_c00248{font-size:38.880000px;}
.fs2_c00248{font-size:42.120000px;}
.fs4_c00248{font-size:60.120000px;}
.fs1_c00248{font-size:65.880000px;}
.fs0_c00248{font-size:72.000000px;}
.y0_c00248{bottom:0.000000px;}
.y1_c00248{bottom:61.748550px;}
.y22_c00248{bottom:110.364780px;}
.y21_c00248{bottom:128.641260px;}
.y39_c00248{bottom:143.864400px;}
.y20_c00248{bottom:147.007920px;}
.y1f_c00248{bottom:172.754400px;}
.y38_c00248{bottom:174.914400px;}
.y1e_c00248{bottom:184.004400px;}
.y1d_c00248{bottom:205.964400px;}
.y1c_c00248{bottom:237.014400px;}
.y37_c00248{bottom:268.064400px;}
.y1b_c00248{bottom:299.114400px;}
.y1a_c00248{bottom:330.164400px;}
.y19_c00248{bottom:361.214400px;}
.y36_c00248{bottom:390.813870px;}
.y18_c00248{bottom:392.264400px;}
.y35_c00248{bottom:419.339910px;}
.y17_c00248{bottom:423.314400px;}
.y34_c00248{bottom:447.783600px;}
.y16_c00248{bottom:454.364400px;}
.y33_c00248{bottom:476.227290px;}
.y15_c00248{bottom:485.414400px;}
.y32_c00248{bottom:504.670980px;}
.y31_c00248{bottom:533.114670px;}
.y14_c00248{bottom:546.063450px;}
.y30_c00248{bottom:561.640710px;}
.y13_c00248{bottom:574.507140px;}
.y2f_c00248{bottom:590.084400px;}
.y12_c00248{bottom:603.033180px;}
.y11_c00248{bottom:631.476870px;}
.y2e_c00248{bottom:651.014400px;}
.y10_c00248{bottom:659.920560px;}
.y2d_c00248{bottom:682.064400px;}
.yf_c00248{bottom:688.364250px;}
.y2c_c00248{bottom:713.114400px;}
.y2b_c00248{bottom:744.164400px;}
.ye_c00248{bottom:749.294250px;}
.y2a_c00248{bottom:775.214400px;}
.yd_c00248{bottom:780.344250px;}
.y29_c00248{bottom:806.264400px;}
.yc_c00248{bottom:811.394250px;}
.y28_c00248{bottom:837.314400px;}
.yb_c00248{bottom:842.444250px;}
.y27_c00248{bottom:868.364400px;}
.ya_c00248{bottom:873.494250px;}
.y26_c00248{bottom:899.414400px;}
.y25_c00248{bottom:930.464400px;}
.y9_c00248{bottom:934.229640px;}
.y8_c00248{bottom:962.673330px;}
.y7_c00248{bottom:991.117020px;}
.y6_c00248{bottom:1019.560710px;}
.y5_c00248{bottom:1048.004400px;}
.y4_c00248{bottom:1108.934400px;}
.y24_c00248{bottom:1139.984400px;}
.y3_c00248{bottom:1139.984550px;}
.y23_c00248{bottom:1193.174400px;}
.y2_c00248{bottom:1193.174550px;}
.h7_c00248{height:32.064609px;}
.h8_c00248{height:49.581387px;}
.h2_c00248{height:50.400000px;}
.h6_c00248{height:54.331699px;}
.h4_c00248{height:71.413920px;}
.h5_c00248{height:74.881080px;}
.h3_c00248{height:76.824000px;}
.h0_c00248{height:1262.835000px;}
.h1_c00248{height:1263.000000px;}
.w2_c00248{width:0.000000px;}
.w3_c00248{width:0.066000px;}
.w0_c00248{width:892.914000px;}
.w1_c00248{width:893.250000px;}
.x1_c00248{left:-838.913400px;}
.x2_c00248{left:-765.293400px;}
.x3_c00248{left:-743.963400px;}
.x4_c00248{left:-733.343400px;}
.x0_c00248{left:0.000000px;}
.x7_c00248{left:127.620000px;}
.x8_c00248{left:148.950000px;}
.x9_c00248{left:159.570000px;}
.x6_c00248{left:679.950000px;}
.x5_c00248{left:804.366150px;}
@media print{
.v2_c00248{vertical-align:-26.560000pt;}
.v0_c00248{vertical-align:0.000000pt;}
.v1_c00248{vertical-align:26.612480pt;}
.ls17_c00248{letter-spacing:-0.256000pt;}
.ls14_c00248{letter-spacing:-0.175680pt;}
.ls15_c00248{letter-spacing:-0.106880pt;}
.ls13_c00248{letter-spacing:-0.058560pt;}
.ls16_c00248{letter-spacing:-0.053440pt;}
.ls12_c00248{letter-spacing:0.000000pt;}
.ls8_c00248{letter-spacing:0.058560pt;}
.ls0_c00248{letter-spacing:0.064000pt;}
.lsb_c00248{letter-spacing:0.078080pt;}
.lsc_c00248{letter-spacing:0.106880pt;}
.ls5_c00248{letter-spacing:0.128000pt;}
.ls1_c00248{letter-spacing:0.175680pt;}
.ls4_c00248{letter-spacing:2.899520pt;}
.ls2_c00248{letter-spacing:14.130528pt;}
.ls3_c00248{letter-spacing:14.815680pt;}
.ls7_c00248{letter-spacing:16.560768pt;}
.ls11_c00248{letter-spacing:18.880000pt;}
.lsa_c00248{letter-spacing:19.264000pt;}
.ls9_c00248{letter-spacing:19.520000pt;}
.lsd_c00248{letter-spacing:20.109504pt;}
.ls6_c00248{letter-spacing:28.160000pt;}
.lsf_c00248{letter-spacing:30.334080pt;}
.ls10_c00248{letter-spacing:32.640000pt;}
.lse_c00248{letter-spacing:51.111168pt;}
.ws0_c00248{word-spacing:-16.000000pt;}
.wsa_c00248{word-spacing:-15.744000pt;}
.wse_c00248{word-spacing:-14.698560pt;}
.ws4_c00248{word-spacing:-14.640000pt;}
.wsb_c00248{word-spacing:-14.581440pt;}
.ws3_c00248{word-spacing:-14.464320pt;}
.ws8_c00248{word-spacing:-12.184320pt;}
.ws14_c00248{word-spacing:-0.384000pt;}
.ws3e_c00248{word-spacing:-0.374080pt;}
.ws3d_c00248{word-spacing:-0.213760pt;}
.ws1c_c00248{word-spacing:-0.175680pt;}
.ws1e_c00248{word-spacing:-0.117120pt;}
.ws3c_c00248{word-spacing:-0.106880pt;}
.ws37_c00248{word-spacing:-0.064000pt;}
.ws3a_c00248{word-spacing:-0.053440pt;}
.ws12_c00248{word-spacing:0.000000pt;}
.ws18_c00248{word-spacing:0.058560pt;}
.ws1d_c00248{word-spacing:0.117120pt;}
.ws3b_c00248{word-spacing:0.160320pt;}
.ws3f_c00248{word-spacing:0.213760pt;}
.ws17_c00248{word-spacing:0.234240pt;}
.ws36_c00248{word-spacing:0.256000pt;}
.ws25_c00248{word-spacing:0.896000pt;}
.ws40_c00248{word-spacing:1.171200pt;}
.ws1b_c00248{word-spacing:1.522560pt;}
.ws1a_c00248{word-spacing:1.756800pt;}
.ws28_c00248{word-spacing:1.815360pt;}
.ws4a_c00248{word-spacing:1.920000pt;}
.ws27_c00248{word-spacing:2.049600pt;}
.ws2_c00248{word-spacing:2.108160pt;}
.ws29_c00248{word-spacing:2.166720pt;}
.ws45_c00248{word-spacing:2.176000pt;}
.ws46_c00248{word-spacing:2.240000pt;}
.ws2c_c00248{word-spacing:2.459520pt;}
.ws7_c00248{word-spacing:2.560000pt;}
.ws4e_c00248{word-spacing:2.693760pt;}
.ws34_c00248{word-spacing:2.944000pt;}
.ws4f_c00248{word-spacing:3.045120pt;}
.ws5f_c00248{word-spacing:3.072000pt;}
.ws35_c00248{word-spacing:3.136000pt;}
.ws33_c00248{word-spacing:3.200000pt;}
.ws2f_c00248{word-spacing:3.456000pt;}
.ws24_c00248{word-spacing:3.520000pt;}
.wsc_c00248{word-spacing:4.813632pt;}
.wsd_c00248{word-spacing:4.924896pt;}
.ws55_c00248{word-spacing:5.328960pt;}
.ws50_c00248{word-spacing:5.680320pt;}
.ws38_c00248{word-spacing:5.952000pt;}
.ws26_c00248{word-spacing:5.973120pt;}
.ws39_c00248{word-spacing:6.016000pt;}
.ws41_c00248{word-spacing:6.207360pt;}
.ws32_c00248{word-spacing:6.336000pt;}
.ws4b_c00248{word-spacing:6.912000pt;}
.ws22_c00248{word-spacing:6.976000pt;}
.ws5_c00248{word-spacing:7.038912pt;}
.ws6_c00248{word-spacing:7.085760pt;}
.ws59_c00248{word-spacing:7.232000pt;}
.ws23_c00248{word-spacing:7.296000pt;}
.ws21_c00248{word-spacing:7.360000pt;}
.ws2a_c00248{word-spacing:7.495680pt;}
.ws2b_c00248{word-spacing:7.554240pt;}
.ws5d_c00248{word-spacing:7.936000pt;}
.ws5e_c00248{word-spacing:8.000000pt;}
.ws60_c00248{word-spacing:8.576000pt;}
.ws61_c00248{word-spacing:8.640000pt;}
.ws5a_c00248{word-spacing:9.856000pt;}
.ws51_c00248{word-spacing:10.775040pt;}
.ws52_c00248{word-spacing:11.009280pt;}
.ws19_c00248{word-spacing:11.126400pt;}
.ws1_c00248{word-spacing:11.419200pt;}
.ws13_c00248{word-spacing:11.520000pt;}
.ws1f_c00248{word-spacing:12.032000pt;}
.ws20_c00248{word-spacing:12.160000pt;}
.ws2e_c00248{word-spacing:13.376000pt;}
.ws57_c00248{word-spacing:15.576960pt;}
.ws11_c00248{word-spacing:15.694080pt;}
.ws58_c00248{word-spacing:15.811200pt;}
.ws10_c00248{word-spacing:15.817056pt;}
.ws56_c00248{word-spacing:15.869760pt;}
.wsf_c00248{word-spacing:15.986880pt;}
.ws48_c00248{word-spacing:16.192000pt;}
.ws47_c00248{word-spacing:16.320000pt;}
.ws5b_c00248{word-spacing:16.576000pt;}
.ws5c_c00248{word-spacing:16.640000pt;}
.ws42_c00248{word-spacing:16.960000pt;}
.ws4c_c00248{word-spacing:17.216000pt;}
.ws4d_c00248{word-spacing:17.280000pt;}
.ws30_c00248{word-spacing:17.536000pt;}
.ws31_c00248{word-spacing:17.600000pt;}
.ws2d_c00248{word-spacing:18.153600pt;}
.ws49_c00248{word-spacing:19.840000pt;}
.ws16_c00248{word-spacing:20.086080pt;}
.ws15_c00248{word-spacing:20.613120pt;}
.ws43_c00248{word-spacing:22.272000pt;}
.ws44_c00248{word-spacing:22.336000pt;}
.ws9_c00248{word-spacing:22.400000pt;}
.ws54_c00248{word-spacing:36.365760pt;}
.ws53_c00248{word-spacing:36.600000pt;}
._5_c00248{margin-left:-5.914560pt;}
._0_c00248{margin-left:-1.081600pt;}
._1_c00248{width:1.001376pt;}
._4_c00248{width:3.904000pt;}
._2_c00248{width:15.386048pt;}
._3_c00248{width:17.275200pt;}
._8_c00248{width:24.883200pt;}
._6_c00248{width:39.296000pt;}
._7_c00248{width:49.936448pt;}
.fs3_c00248{font-size:34.560000pt;}
.fs2_c00248{font-size:37.440000pt;}
.fs4_c00248{font-size:53.440000pt;}
.fs1_c00248{font-size:58.560000pt;}
.fs0_c00248{font-size:64.000000pt;}
.y0_c00248{bottom:0.000000pt;}
.y1_c00248{bottom:54.887600pt;}
.y22_c00248{bottom:98.102027pt;}
.y21_c00248{bottom:114.347787pt;}
.y39_c00248{bottom:127.879467pt;}
.y20_c00248{bottom:130.673707pt;}
.y1f_c00248{bottom:153.559467pt;}
.y38_c00248{bottom:155.479467pt;}
.y1e_c00248{bottom:163.559467pt;}
.y1d_c00248{bottom:183.079467pt;}
.y1c_c00248{bottom:210.679467pt;}
.y37_c00248{bottom:238.279467pt;}
.y1b_c00248{bottom:265.879467pt;}
.y1a_c00248{bottom:293.479467pt;}
.y19_c00248{bottom:321.079467pt;}
.y36_c00248{bottom:347.390107pt;}
.y18_c00248{bottom:348.679467pt;}
.y35_c00248{bottom:372.746587pt;}
.y17_c00248{bottom:376.279467pt;}
.y34_c00248{bottom:398.029867pt;}
.y16_c00248{bottom:403.879467pt;}
.y33_c00248{bottom:423.313147pt;}
.y15_c00248{bottom:431.479467pt;}
.y32_c00248{bottom:448.596427pt;}
.y31_c00248{bottom:473.879707pt;}
.y14_c00248{bottom:485.389733pt;}
.y30_c00248{bottom:499.236187pt;}
.y13_c00248{bottom:510.673013pt;}
.y2f_c00248{bottom:524.519467pt;}
.y12_c00248{bottom:536.029493pt;}
.y11_c00248{bottom:561.312773pt;}
.y2e_c00248{bottom:578.679467pt;}
.y10_c00248{bottom:586.596053pt;}
.y2d_c00248{bottom:606.279467pt;}
.yf_c00248{bottom:611.879333pt;}
.y2c_c00248{bottom:633.879467pt;}
.y2b_c00248{bottom:661.479467pt;}
.ye_c00248{bottom:666.039333pt;}
.y2a_c00248{bottom:689.079467pt;}
.yd_c00248{bottom:693.639333pt;}
.y29_c00248{bottom:716.679467pt;}
.yc_c00248{bottom:721.239333pt;}
.y28_c00248{bottom:744.279467pt;}
.yb_c00248{bottom:748.839333pt;}
.y27_c00248{bottom:771.879467pt;}
.ya_c00248{bottom:776.439333pt;}
.y26_c00248{bottom:799.479467pt;}
.y25_c00248{bottom:827.079467pt;}
.y9_c00248{bottom:830.426347pt;}
.y8_c00248{bottom:855.709627pt;}
.y7_c00248{bottom:880.992907pt;}
.y6_c00248{bottom:906.276187pt;}
.y5_c00248{bottom:931.559467pt;}
.y4_c00248{bottom:985.719467pt;}
.y24_c00248{bottom:1013.319467pt;}
.y3_c00248{bottom:1013.319600pt;}
.y23_c00248{bottom:1060.599467pt;}
.y2_c00248{bottom:1060.599600pt;}
.h7_c00248{height:28.501875pt;}
.h8_c00248{height:44.072344pt;}
.h2_c00248{height:44.800000pt;}
.h6_c00248{height:48.294844pt;}
.h4_c00248{height:63.479040pt;}
.h5_c00248{height:66.560960pt;}
.h3_c00248{height:68.288000pt;}
.h0_c00248{height:1122.520000pt;}
.h1_c00248{height:1122.666667pt;}
.w2_c00248{width:0.000000pt;}
.w3_c00248{width:0.058667pt;}
.w0_c00248{width:793.701333pt;}
.w1_c00248{width:794.000000pt;}
.x1_c00248{left:-745.700800pt;}
.x2_c00248{left:-680.260800pt;}
.x3_c00248{left:-661.300800pt;}
.x4_c00248{left:-651.860800pt;}
.x0_c00248{left:0.000000pt;}
.x7_c00248{left:113.440000pt;}
.x8_c00248{left:132.400000pt;}
.x9_c00248{left:141.840000pt;}
.x6_c00248{left:604.400000pt;}
.x5_c00248{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00249;src:url('chunks/assets/font_227f9140ae3597a0276b350a.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00249;src:url('chunks/assets/font_3a2287c2d529b3ff76fd4117.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:1.592000;font-style:normal;font-weight:normal;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_40652a6098a0c4d1f9595ea8.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.lsc_c00249{letter-spacing:-0.216000px;}
.lsd_c00249{letter-spacing:-0.072000px;}
.lsb_c00249{letter-spacing:-0.065880px;}
.ls9_c00249{letter-spacing:0.000000px;}
.lsa_c00249{letter-spacing:0.065880px;}
.ls1_c00249{letter-spacing:0.072000px;}
.ls8_c00249{letter-spacing:0.144000px;}
.ls4_c00249{letter-spacing:0.197640px;}
.ls5_c00249{letter-spacing:16.226244px;}
.ls6_c00249{letter-spacing:16.667640px;}
.ls7_c00249{letter-spacing:19.512000px;}
.ls0_c00249{letter-spacing:24.552000px;}
.ls3_c00249{letter-spacing:26.344800px;}
.ls2_c00249{letter-spacing:32.760000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00249{word-spacing:-18.000000px;}
.ws1_c00249{word-spacing:-16.535880px;}
.ws1b_c00249{word-spacing:-0.131760px;}
.ws1c_c00249{word-spacing:-0.072000px;}
.ws7_c00249{word-spacing:-0.065880px;}
.ws6_c00249{word-spacing:0.000000px;}
.ws9_c00249{word-spacing:0.065880px;}
.wsd_c00249{word-spacing:0.131760px;}
.ws16_c00249{word-spacing:0.216000px;}
.wsa_c00249{word-spacing:0.856440px;}
.ws1a_c00249{word-spacing:0.988200px;}
.ws19_c00249{word-spacing:1.251720px;}
.ws1d_c00249{word-spacing:1.296000px;}
.ws1e_c00249{word-spacing:1.368000px;}
.ws4_c00249{word-spacing:1.440000px;}
.ws3_c00249{word-spacing:1.512000px;}
.ws24_c00249{word-spacing:1.728000px;}
.ws18_c00249{word-spacing:1.800000px;}
.ws10_c00249{word-spacing:2.088000px;}
.ws11_c00249{word-spacing:2.160000px;}
.ws23_c00249{word-spacing:3.600000px;}
.wse_c00249{word-spacing:6.480000px;}
.wsc_c00249{word-spacing:6.719760px;}
.wsb_c00249{word-spacing:6.983280px;}
.ws15_c00249{word-spacing:8.208000px;}
.ws26_c00249{word-spacing:8.928000px;}
.ws25_c00249{word-spacing:9.000000px;}
.ws5_c00249{word-spacing:9.072000px;}
.ws17_c00249{word-spacing:9.648000px;}
.ws8_c00249{word-spacing:10.606680px;}
.ws1f_c00249{word-spacing:10.728000px;}
.ws13_c00249{word-spacing:14.688000px;}
.ws12_c00249{word-spacing:14.760000px;}
.ws20_c00249{word-spacing:15.120000px;}
.wsf_c00249{word-spacing:18.288000px;}
.ws14_c00249{word-spacing:21.528000px;}
.ws21_c00249{word-spacing:38.016000px;}
.ws22_c00249{word-spacing:38.088000px;}
.ws2_c00249{word-spacing:104.400000px;}
._2_c00249{margin-left:-1.106784px;}
._1_c00249{width:1.054080px;}
._0_c00249{width:10.540800px;}
._3_c00249{width:21.977568px;}
.fc1_c00249{color:rgb(0,0,0);}
.fc0_c00249{color:rgb(35,31,32);}
.fs1_c00249{font-size:65.880000px;}
.fs0_c00249{font-size:72.000000px;}
.y0_c00249{bottom:0.000000px;}
.y1_c00249{bottom:61.748550px;}
.y1d_c00249{bottom:190.484400px;}
.y1c_c00249{bottom:221.534400px;}
.y1b_c00249{bottom:252.584400px;}
.y1a_c00249{bottom:314.684400px;}
.y19_c00249{bottom:345.734400px;}
.y18_c00249{bottom:376.784400px;}
.y17_c00249{bottom:407.834400px;}
.y16_c00249{bottom:469.934400px;}
.y15_c00249{bottom:500.984400px;}
.y14_c00249{bottom:531.944400px;}
.y13_c00249{bottom:562.994400px;}
.y12_c00249{bottom:594.044400px;}
.y11_c00249{bottom:625.094400px;}
.y10_c00249{bottom:687.014400px;}
.yf_c00249{bottom:747.947820px;}
.ye_c00249{bottom:777.824250px;}
.yd_c00249{bottom:808.784250px;}
.yc_c00249{bottom:839.834250px;}
.yb_c00249{bottom:870.884250px;}
.ya_c00249{bottom:901.934250px;}
.y9_c00249{bottom:932.984250px;}
.y8_c00249{bottom:964.034250px;}
.y7_c00249{bottom:995.084250px;}
.y6_c00249{bottom:1055.740830px;}
.y5_c00249{bottom:1084.266870px;}
.y4_c00249{bottom:1112.710560px;}
.y3_c00249{bottom:1141.154250px;}
.y2_c00249{bottom:1193.174400px;}
.h2_c00249{height:50.400000px;}
.h4_c00249{height:71.413920px;}
.h3_c00249{height:76.824000px;}
.h5_c00249{height:78.048000px;}
.h0_c00249{height:1262.835000px;}
.h1_c00249{height:1263.000000px;}
.w0_c00249{width:892.914000px;}
.w1_c00249{width:893.250000px;}
.x0_c00249{left:0.000000px;}
.x1_c00249{left:54.000000px;}
.x2_c00249{left:127.620000px;}
.x3_c00249{left:148.950000px;}
.x4_c00249{left:159.570000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.lsc_c00249{letter-spacing:-0.192000pt;}
.lsd_c00249{letter-spacing:-0.064000pt;}
.lsb_c00249{letter-spacing:-0.058560pt;}
.ls9_c00249{letter-spacing:0.000000pt;}
.lsa_c00249{letter-spacing:0.058560pt;}
.ls1_c00249{letter-spacing:0.064000pt;}
.ls8_c00249{letter-spacing:0.128000pt;}
.ls4_c00249{letter-spacing:0.175680pt;}
.ls5_c00249{letter-spacing:14.423328pt;}
.ls6_c00249{letter-spacing:14.815680pt;}
.ls7_c00249{letter-spacing:17.344000pt;}
.ls0_c00249{letter-spacing:21.824000pt;}
.ls3_c00249{letter-spacing:23.417600pt;}
.ls2_c00249{letter-spacing:29.120000pt;}
.ws0_c00249{word-spacing:-16.000000pt;}
.ws1_c00249{word-spacing:-14.698560pt;}
.ws1b_c00249{word-spacing:-0.117120pt;}
.ws1c_c00249{word-spacing:-0.064000pt;}
.ws7_c00249{word-spacing:-0.058560pt;}
.ws6_c00249{word-spacing:0.000000pt;}
.ws9_c00249{word-spacing:0.058560pt;}
.wsd_c00249{word-spacing:0.117120pt;}
.ws16_c00249{word-spacing:0.192000pt;}
.wsa_c00249{word-spacing:0.761280pt;}
.ws1a_c00249{word-spacing:0.878400pt;}
.ws19_c00249{word-spacing:1.112640pt;}
.ws1d_c00249{word-spacing:1.152000pt;}
.ws1e_c00249{word-spacing:1.216000pt;}
.ws4_c00249{word-spacing:1.280000pt;}
.ws3_c00249{word-spacing:1.344000pt;}
.ws24_c00249{word-spacing:1.536000pt;}
.ws18_c00249{word-spacing:1.600000pt;}
.ws10_c00249{word-spacing:1.856000pt;}
.ws11_c00249{word-spacing:1.920000pt;}
.ws23_c00249{word-spacing:3.200000pt;}
.wse_c00249{word-spacing:5.760000pt;}
.wsc_c00249{word-spacing:5.973120pt;}
.wsb_c00249{word-spacing:6.207360pt;}
.ws15_c00249{word-spacing:7.296000pt;}
.ws26_c00249{word-spacing:7.936000pt;}
.ws25_c00249{word-spacing:8.000000pt;}
.ws5_c00249{word-spacing:8.064000pt;}
.ws17_c00249{word-spacing:8.576000pt;}
.ws8_c00249{word-spacing:9.428160pt;}
.ws1f_c00249{word-spacing:9.536000pt;}
.ws13_c00249{word-spacing:13.056000pt;}
.ws12_c00249{word-spacing:13.120000pt;}
.ws20_c00249{word-spacing:13.440000pt;}
.wsf_c00249{word-spacing:16.256000pt;}
.ws14_c00249{word-spacing:19.136000pt;}
.ws21_c00249{word-spacing:33.792000pt;}
.ws22_c00249{word-spacing:33.856000pt;}
.ws2_c00249{word-spacing:92.800000pt;}
._2_c00249{margin-left:-0.983808pt;}
._1_c00249{width:0.936960pt;}
._0_c00249{width:9.369600pt;}
._3_c00249{width:19.535616pt;}
.fs1_c00249{font-size:58.560000pt;}
.fs0_c00249{font-size:64.000000pt;}
.y0_c00249{bottom:0.000000pt;}
.y1_c00249{bottom:54.887600pt;}
.y1d_c00249{bottom:169.319467pt;}
.y1c_c00249{bottom:196.919467pt;}
.y1b_c00249{bottom:224.519467pt;}
.y1a_c00249{bottom:279.719467pt;}
.y19_c00249{bottom:307.319467pt;}
.y18_c00249{bottom:334.919467pt;}
.y17_c00249{bottom:362.519467pt;}
.y16_c00249{bottom:417.719467pt;}
.y15_c00249{bottom:445.319467pt;}
.y14_c00249{bottom:472.839467pt;}
.y13_c00249{bottom:500.439467pt;}
.y12_c00249{bottom:528.039467pt;}
.y11_c00249{bottom:555.639467pt;}
.y10_c00249{bottom:610.679467pt;}
.yf_c00249{bottom:664.842507pt;}
.ye_c00249{bottom:691.399333pt;}
.yd_c00249{bottom:718.919333pt;}
.yc_c00249{bottom:746.519333pt;}
.yb_c00249{bottom:774.119333pt;}
.ya_c00249{bottom:801.719333pt;}
.y9_c00249{bottom:829.319333pt;}
.y8_c00249{bottom:856.919333pt;}
.y7_c00249{bottom:884.519333pt;}
.y6_c00249{bottom:938.436293pt;}
.y5_c00249{bottom:963.792773pt;}
.y4_c00249{bottom:989.076053pt;}
.y3_c00249{bottom:1014.359333pt;}
.y2_c00249{bottom:1060.599467pt;}
.h2_c00249{height:44.800000pt;}
.h4_c00249{height:63.479040pt;}
.h3_c00249{height:68.288000pt;}
.h5_c00249{height:69.376000pt;}
.h0_c00249{height:1122.520000pt;}
.h1_c00249{height:1122.666667pt;}
.w0_c00249{width:793.701333pt;}
.w1_c00249{width:794.000000pt;}
.x0_c00249{left:0.000000pt;}
.x1_c00249{left:48.000000pt;}
.x2_c00249{left:113.440000pt;}
.x3_c00249{left:132.400000pt;}
.x4_c00249{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00250;src:url('chunks/assets/font_3fca0e67b9e17048158e7538.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.575000;font-style:normal;font-weight:normal;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_749656c51dba4cf0a136d23c.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00250;src:url('chunks/assets/font_b363bb74d10552988546c2d2.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00250;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00250{font-family:ff5_c00250;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00250;src:url('chunks/assets/font_4974c3f462e5ccbf92735aeb.woff2')format("woff");}.ff6_c00250{font-family:ff6_c00250;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00250;src:url('chunks/assets/font_40e9bb1c99272b7e32b1c5c8.woff2')format("woff");}.ff7_c00250{font-family:ff7_c00250;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00250;src:url('chunks/assets/font_1c698cd36c11863cf6e7452e.woff2')format("woff");}.ff8_c00250{font-family:ff8_c00250;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls10_c00250{letter-spacing:-0.432000px;}
.lse_c00250{letter-spacing:-0.216000px;}
.ls11_c00250{letter-spacing:-0.144000px;}
.lsf_c00250{letter-spacing:-0.072000px;}
.lsd_c00250{letter-spacing:-0.065880px;}
.lsc_c00250{letter-spacing:0.000000px;}
.lsa_c00250{letter-spacing:0.065880px;}
.ls1_c00250{letter-spacing:0.072000px;}
.ls8_c00250{letter-spacing:0.144000px;}
.ls4_c00250{letter-spacing:0.197640px;}
.ls9_c00250{letter-spacing:16.226244px;}
.ls5_c00250{letter-spacing:16.232832px;}
.ls6_c00250{letter-spacing:16.667640px;}
.ls7_c00250{letter-spacing:19.512000px;}
.ls0_c00250{letter-spacing:24.552000px;}
.ls3_c00250{letter-spacing:26.344800px;}
.ls2_c00250{letter-spacing:32.760000px;}
.lsb_c00250{letter-spacing:36.000000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00250{word-spacing:-18.144000px;}
.ws0_c00250{word-spacing:-18.000000px;}
.ws1_c00250{word-spacing:-16.535880px;}
.ws7_c00250{word-spacing:-16.470000px;}
.ws3a_c00250{word-spacing:-0.197640px;}
.ws21_c00250{word-spacing:-0.131760px;}
.ws22_c00250{word-spacing:-0.072000px;}
.wsd_c00250{word-spacing:-0.065880px;}
.wsc_c00250{word-spacing:0.000000px;}
.wsf_c00250{word-spacing:0.065880px;}
.ws13_c00250{word-spacing:0.131760px;}
.ws1c_c00250{word-spacing:0.216000px;}
.ws10_c00250{word-spacing:0.856440px;}
.ws20_c00250{word-spacing:0.988200px;}
.ws1f_c00250{word-spacing:1.251720px;}
.ws23_c00250{word-spacing:1.296000px;}
.ws24_c00250{word-spacing:1.368000px;}
.ws4_c00250{word-spacing:1.440000px;}
.ws3_c00250{word-spacing:1.512000px;}
.ws2a_c00250{word-spacing:1.728000px;}
.ws1e_c00250{word-spacing:1.800000px;}
.ws3d_c00250{word-spacing:2.042280px;}
.ws16_c00250{word-spacing:2.088000px;}
.ws17_c00250{word-spacing:2.160000px;}
.ws43_c00250{word-spacing:2.305800px;}
.ws35_c00250{word-spacing:2.880000px;}
.wsa_c00250{word-spacing:3.096000px;}
.ws41_c00250{word-spacing:3.096360px;}
.ws37_c00250{word-spacing:3.168000px;}
.ws40_c00250{word-spacing:3.359880px;}
.ws29_c00250{word-spacing:3.600000px;}
.ws33_c00250{word-spacing:3.623400px;}
.ws32_c00250{word-spacing:3.755160px;}
.ws36_c00250{word-spacing:3.960000px;}
.ws3c_c00250{word-spacing:4.216320px;}
.ws2d_c00250{word-spacing:4.941000px;}
.ws3f_c00250{word-spacing:5.665680px;}
.ws47_c00250{word-spacing:5.688000px;}
.ws48_c00250{word-spacing:5.904000px;}
.ws31_c00250{word-spacing:5.929200px;}
.ws3b_c00250{word-spacing:6.390360px;}
.ws14_c00250{word-spacing:6.480000px;}
.ws12_c00250{word-spacing:6.719760px;}
.ws11_c00250{word-spacing:6.983280px;}
.ws3e_c00250{word-spacing:7.378560px;}
.ws1b_c00250{word-spacing:8.208000px;}
.ws2f_c00250{word-spacing:8.893800px;}
.ws2c_c00250{word-spacing:8.928000px;}
.ws2b_c00250{word-spacing:9.000000px;}
.ws6_c00250{word-spacing:9.032148px;}
.ws5_c00250{word-spacing:9.072000px;}
.ws30_c00250{word-spacing:9.157320px;}
.ws2e_c00250{word-spacing:9.223200px;}
.ws42_c00250{word-spacing:9.486720px;}
.ws1d_c00250{word-spacing:9.648000px;}
.wse_c00250{word-spacing:10.606680px;}
.wsb_c00250{word-spacing:10.679148px;}
.ws25_c00250{word-spacing:10.728000px;}
.ws39_c00250{word-spacing:11.067840px;}
.ws38_c00250{word-spacing:11.331360px;}
.ws4b_c00250{word-spacing:13.248000px;}
.ws45_c00250{word-spacing:13.571280px;}
.ws46_c00250{word-spacing:13.703040px;}
.ws44_c00250{word-spacing:13.834800px;}
.ws19_c00250{word-spacing:14.688000px;}
.ws18_c00250{word-spacing:14.760000px;}
.ws34_c00250{word-spacing:15.048000px;}
.ws26_c00250{word-spacing:15.120000px;}
.ws8_c00250{word-spacing:15.998400px;}
.ws4d_c00250{word-spacing:17.928000px;}
.ws4c_c00250{word-spacing:18.000000px;}
.ws15_c00250{word-spacing:18.288000px;}
.ws1a_c00250{word-spacing:21.528000px;}
.ws49_c00250{word-spacing:24.768000px;}
.ws4a_c00250{word-spacing:24.840000px;}
.ws4e_c00250{word-spacing:32.760000px;}
.ws27_c00250{word-spacing:38.016000px;}
.ws28_c00250{word-spacing:38.088000px;}
.ws2_c00250{word-spacing:104.400000px;}
._2_c00250{margin-left:-1.106784px;}
._1_c00250{width:1.054080px;}
._0_c00250{width:10.540800px;}
._4_c00250{width:13.248000px;}
._3_c00250{width:21.977568px;}
.fc2_c00250{color:transparent;}
.fc1_c00250{color:rgb(0,0,0);}
.fc0_c00250{color:rgb(35,31,32);}
.fs1_c00250{font-size:65.880000px;}
.fs0_c00250{font-size:72.000000px;}
.y0_c00250{bottom:0.000000px;}
.y1_c00250{bottom:61.748550px;}
.y39_c00250{bottom:164.564400px;}
.y1d_c00250{bottom:190.484400px;}
.y38_c00250{bottom:195.614400px;}
.y1c_c00250{bottom:221.534400px;}
.y37_c00250{bottom:226.664400px;}
.y1b_c00250{bottom:252.584400px;}
.y36_c00250{bottom:257.714400px;}
.y35_c00250{bottom:288.764400px;}
.y1a_c00250{bottom:314.684400px;}
.y34_c00250{bottom:319.814400px;}
.y19_c00250{bottom:345.734400px;}
.y33_c00250{bottom:350.864400px;}
.y18_c00250{bottom:376.784400px;}
.y17_c00250{bottom:407.834400px;}
.y32_c00250{bottom:411.503070px;}
.y31_c00250{bottom:440.029110px;}
.y30_c00250{bottom:468.472800px;}
.y16_c00250{bottom:469.934400px;}
.y2f_c00250{bottom:496.916490px;}
.y15_c00250{bottom:500.984400px;}
.y2e_c00250{bottom:525.360180px;}
.y14_c00250{bottom:531.944400px;}
.y2d_c00250{bottom:553.803870px;}
.y13_c00250{bottom:562.994400px;}
.y2c_c00250{bottom:582.329910px;}
.y12_c00250{bottom:594.044400px;}
.y2b_c00250{bottom:610.773600px;}
.y11_c00250{bottom:625.094400px;}
.y2a_c00250{bottom:639.217290px;}
.y29_c00250{bottom:667.660980px;}
.y10_c00250{bottom:687.014400px;}
.y28_c00250{bottom:696.187020px;}
.y27_c00250{bottom:724.630710px;}
.yf_c00250{bottom:747.947820px;}
.y26_c00250{bottom:753.074400px;}
.ye_c00250{bottom:777.824250px;}
.yd_c00250{bottom:808.784250px;}
.y25_c00250{bottom:814.004250px;}
.yc_c00250{bottom:839.834250px;}
.y24_c00250{bottom:845.054250px;}
.yb_c00250{bottom:870.884250px;}
.y23_c00250{bottom:876.104250px;}
.ya_c00250{bottom:901.934250px;}
.y22_c00250{bottom:907.154250px;}
.y9_c00250{bottom:932.984250px;}
.y21_c00250{bottom:938.204250px;}
.y8_c00250{bottom:964.034250px;}
.y7_c00250{bottom:995.084250px;}
.y20_c00250{bottom:998.853450px;}
.y1f_c00250{bottom:1027.297140px;}
.y6_c00250{bottom:1055.740830px;}
.y5_c00250{bottom:1084.266870px;}
.y4_c00250{bottom:1112.710560px;}
.y3_c00250{bottom:1141.154250px;}
.y1e_c00250{bottom:1193.174400px;}
.y2_c00250{bottom:1193.174550px;}
.h2_c00250{height:50.400000px;}
.h4_c00250{height:71.413920px;}
.h3_c00250{height:76.824000px;}
.h5_c00250{height:78.048000px;}
.h0_c00250{height:1262.835000px;}
.h1_c00250{height:1263.000000px;}
.w2_c00250{width:0.000000px;}
.w3_c00250{width:0.066000px;}
.w0_c00250{width:892.914000px;}
.w1_c00250{width:893.250000px;}
.x1_c00250{left:-838.913400px;}
.x2_c00250{left:-765.293400px;}
.x3_c00250{left:-743.963400px;}
.x4_c00250{left:-733.343400px;}
.x0_c00250{left:0.000000px;}
.x9_c00250{left:127.620000px;}
.x7_c00250{left:148.950000px;}
.x8_c00250{left:159.570000px;}
.x6_c00250{left:679.950000px;}
.x5_c00250{left:804.366150px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls10_c00250{letter-spacing:-0.384000pt;}
.lse_c00250{letter-spacing:-0.192000pt;}
.ls11_c00250{letter-spacing:-0.128000pt;}
.lsf_c00250{letter-spacing:-0.064000pt;}
.lsd_c00250{letter-spacing:-0.058560pt;}
.lsc_c00250{letter-spacing:0.000000pt;}
.lsa_c00250{letter-spacing:0.058560pt;}
.ls1_c00250{letter-spacing:0.064000pt;}
.ls8_c00250{letter-spacing:0.128000pt;}
.ls4_c00250{letter-spacing:0.175680pt;}
.ls9_c00250{letter-spacing:14.423328pt;}
.ls5_c00250{letter-spacing:14.429184pt;}
.ls6_c00250{letter-spacing:14.815680pt;}
.ls7_c00250{letter-spacing:17.344000pt;}
.ls0_c00250{letter-spacing:21.824000pt;}
.ls3_c00250{letter-spacing:23.417600pt;}
.ls2_c00250{letter-spacing:29.120000pt;}
.lsb_c00250{letter-spacing:32.000000pt;}
.ws9_c00250{word-spacing:-16.128000pt;}
.ws0_c00250{word-spacing:-16.000000pt;}
.ws1_c00250{word-spacing:-14.698560pt;}
.ws7_c00250{word-spacing:-14.640000pt;}
.ws3a_c00250{word-spacing:-0.175680pt;}
.ws21_c00250{word-spacing:-0.117120pt;}
.ws22_c00250{word-spacing:-0.064000pt;}
.wsd_c00250{word-spacing:-0.058560pt;}
.wsc_c00250{word-spacing:0.000000pt;}
.wsf_c00250{word-spacing:0.058560pt;}
.ws13_c00250{word-spacing:0.117120pt;}
.ws1c_c00250{word-spacing:0.192000pt;}
.ws10_c00250{word-spacing:0.761280pt;}
.ws20_c00250{word-spacing:0.878400pt;}
.ws1f_c00250{word-spacing:1.112640pt;}
.ws23_c00250{word-spacing:1.152000pt;}
.ws24_c00250{word-spacing:1.216000pt;}
.ws4_c00250{word-spacing:1.280000pt;}
.ws3_c00250{word-spacing:1.344000pt;}
.ws2a_c00250{word-spacing:1.536000pt;}
.ws1e_c00250{word-spacing:1.600000pt;}
.ws3d_c00250{word-spacing:1.815360pt;}
.ws16_c00250{word-spacing:1.856000pt;}
.ws17_c00250{word-spacing:1.920000pt;}
.ws43_c00250{word-spacing:2.049600pt;}
.ws35_c00250{word-spacing:2.560000pt;}
.wsa_c00250{word-spacing:2.752000pt;}
.ws41_c00250{word-spacing:2.752320pt;}
.ws37_c00250{word-spacing:2.816000pt;}
.ws40_c00250{word-spacing:2.986560pt;}
.ws29_c00250{word-spacing:3.200000pt;}
.ws33_c00250{word-spacing:3.220800pt;}
.ws32_c00250{word-spacing:3.337920pt;}
.ws36_c00250{word-spacing:3.520000pt;}
.ws3c_c00250{word-spacing:3.747840pt;}
.ws2d_c00250{word-spacing:4.392000pt;}
.ws3f_c00250{word-spacing:5.036160pt;}
.ws47_c00250{word-spacing:5.056000pt;}
.ws48_c00250{word-spacing:5.248000pt;}
.ws31_c00250{word-spacing:5.270400pt;}
.ws3b_c00250{word-spacing:5.680320pt;}
.ws14_c00250{word-spacing:5.760000pt;}
.ws12_c00250{word-spacing:5.973120pt;}
.ws11_c00250{word-spacing:6.207360pt;}
.ws3e_c00250{word-spacing:6.558720pt;}
.ws1b_c00250{word-spacing:7.296000pt;}
.ws2f_c00250{word-spacing:7.905600pt;}
.ws2c_c00250{word-spacing:7.936000pt;}
.ws2b_c00250{word-spacing:8.000000pt;}
.ws6_c00250{word-spacing:8.028576pt;}
.ws5_c00250{word-spacing:8.064000pt;}
.ws30_c00250{word-spacing:8.139840pt;}
.ws2e_c00250{word-spacing:8.198400pt;}
.ws42_c00250{word-spacing:8.432640pt;}
.ws1d_c00250{word-spacing:8.576000pt;}
.wse_c00250{word-spacing:9.428160pt;}
.wsb_c00250{word-spacing:9.492576pt;}
.ws25_c00250{word-spacing:9.536000pt;}
.ws39_c00250{word-spacing:9.838080pt;}
.ws38_c00250{word-spacing:10.072320pt;}
.ws4b_c00250{word-spacing:11.776000pt;}
.ws45_c00250{word-spacing:12.063360pt;}
.ws46_c00250{word-spacing:12.180480pt;}
.ws44_c00250{word-spacing:12.297600pt;}
.ws19_c00250{word-spacing:13.056000pt;}
.ws18_c00250{word-spacing:13.120000pt;}
.ws34_c00250{word-spacing:13.376000pt;}
.ws26_c00250{word-spacing:13.440000pt;}
.ws8_c00250{word-spacing:14.220800pt;}
.ws4d_c00250{word-spacing:15.936000pt;}
.ws4c_c00250{word-spacing:16.000000pt;}
.ws15_c00250{word-spacing:16.256000pt;}
.ws1a_c00250{word-spacing:19.136000pt;}
.ws49_c00250{word-spacing:22.016000pt;}
.ws4a_c00250{word-spacing:22.080000pt;}
.ws4e_c00250{word-spacing:29.120000pt;}
.ws27_c00250{word-spacing:33.792000pt;}
.ws28_c00250{word-spacing:33.856000pt;}
.ws2_c00250{word-spacing:92.800000pt;}
._2_c00250{margin-left:-0.983808pt;}
._1_c00250{width:0.936960pt;}
._0_c00250{width:9.369600pt;}
._4_c00250{width:11.776000pt;}
._3_c00250{width:19.535616pt;}
.fs1_c00250{font-size:58.560000pt;}
.fs0_c00250{font-size:64.000000pt;}
.y0_c00250{bottom:0.000000pt;}
.y1_c00250{bottom:54.887600pt;}
.y39_c00250{bottom:146.279467pt;}
.y1d_c00250{bottom:169.319467pt;}
.y38_c00250{bottom:173.879467pt;}
.y1c_c00250{bottom:196.919467pt;}
.y37_c00250{bottom:201.479467pt;}
.y1b_c00250{bottom:224.519467pt;}
.y36_c00250{bottom:229.079467pt;}
.y35_c00250{bottom:256.679467pt;}
.y1a_c00250{bottom:279.719467pt;}
.y34_c00250{bottom:284.279467pt;}
.y19_c00250{bottom:307.319467pt;}
.y33_c00250{bottom:311.879467pt;}
.y18_c00250{bottom:334.919467pt;}
.y17_c00250{bottom:362.519467pt;}
.y32_c00250{bottom:365.780507pt;}
.y31_c00250{bottom:391.136987pt;}
.y30_c00250{bottom:416.420267pt;}
.y16_c00250{bottom:417.719467pt;}
.y2f_c00250{bottom:441.703547pt;}
.y15_c00250{bottom:445.319467pt;}
.y2e_c00250{bottom:466.986827pt;}
.y14_c00250{bottom:472.839467pt;}
.y2d_c00250{bottom:492.270107pt;}
.y13_c00250{bottom:500.439467pt;}
.y2c_c00250{bottom:517.626587pt;}
.y12_c00250{bottom:528.039467pt;}
.y2b_c00250{bottom:542.909867pt;}
.y11_c00250{bottom:555.639467pt;}
.y2a_c00250{bottom:568.193147pt;}
.y29_c00250{bottom:593.476427pt;}
.y10_c00250{bottom:610.679467pt;}
.y28_c00250{bottom:618.832907pt;}
.y27_c00250{bottom:644.116187pt;}
.yf_c00250{bottom:664.842507pt;}
.y26_c00250{bottom:669.399467pt;}
.ye_c00250{bottom:691.399333pt;}
.yd_c00250{bottom:718.919333pt;}
.y25_c00250{bottom:723.559333pt;}
.yc_c00250{bottom:746.519333pt;}
.y24_c00250{bottom:751.159333pt;}
.yb_c00250{bottom:774.119333pt;}
.y23_c00250{bottom:778.759333pt;}
.ya_c00250{bottom:801.719333pt;}
.y22_c00250{bottom:806.359333pt;}
.y9_c00250{bottom:829.319333pt;}
.y21_c00250{bottom:833.959333pt;}
.y8_c00250{bottom:856.919333pt;}
.y7_c00250{bottom:884.519333pt;}
.y20_c00250{bottom:887.869733pt;}
.y1f_c00250{bottom:913.153013pt;}
.y6_c00250{bottom:938.436293pt;}
.y5_c00250{bottom:963.792773pt;}
.y4_c00250{bottom:989.076053pt;}
.y3_c00250{bottom:1014.359333pt;}
.y1e_c00250{bottom:1060.599467pt;}
.y2_c00250{bottom:1060.599600pt;}
.h2_c00250{height:44.800000pt;}
.h4_c00250{height:63.479040pt;}
.h3_c00250{height:68.288000pt;}
.h5_c00250{height:69.376000pt;}
.h0_c00250{height:1122.520000pt;}
.h1_c00250{height:1122.666667pt;}
.w2_c00250{width:0.000000pt;}
.w3_c00250{width:0.058667pt;}
.w0_c00250{width:793.701333pt;}
.w1_c00250{width:794.000000pt;}
.x1_c00250{left:-745.700800pt;}
.x2_c00250{left:-680.260800pt;}
.x3_c00250{left:-661.300800pt;}
.x4_c00250{left:-651.860800pt;}
.x0_c00250{left:0.000000pt;}
.x9_c00250{left:113.440000pt;}
.x7_c00250{left:132.400000pt;}
.x8_c00250{left:141.840000pt;}
.x6_c00250{left:604.400000pt;}
.x5_c00250{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00251;src:url('chunks/assets/font_21f1201f806e3610df46f3f7.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00251;src:url('chunks/assets/font_c6b8b9d911d2912e2355a093.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.lsa_c00251{letter-spacing:-0.432000px;}
.ls9_c00251{letter-spacing:-0.065880px;}
.ls8_c00251{letter-spacing:0.000000px;}
.ls7_c00251{letter-spacing:0.052704px;}
.ls3_c00251{letter-spacing:0.065880px;}
.ls1_c00251{letter-spacing:0.072000px;}
.ls4_c00251{letter-spacing:0.144000px;}
.ls2_c00251{letter-spacing:0.197640px;}
.ls0_c00251{letter-spacing:21.600000px;}
.ls6_c00251{letter-spacing:31.029480px;}
.ls5_c00251{letter-spacing:47.520000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00251{word-spacing:-18.144000px;}
.ws2_c00251{word-spacing:-18.072000px;}
.ws0_c00251{word-spacing:-18.000000px;}
.ws32_c00251{word-spacing:-0.461160px;}
.wsa_c00251{word-spacing:-0.072000px;}
.ws18_c00251{word-spacing:-0.065880px;}
.ws9_c00251{word-spacing:0.000000px;}
.ws19_c00251{word-spacing:0.131760px;}
.ws17_c00251{word-spacing:0.527040px;}
.ws31_c00251{word-spacing:1.251720px;}
.ws13_c00251{word-spacing:1.712880px;}
.ws1d_c00251{word-spacing:1.728000px;}
.ws14_c00251{word-spacing:1.976400px;}
.ws1b_c00251{word-spacing:2.088000px;}
.ws1c_c00251{word-spacing:2.160000px;}
.ws1a_c00251{word-spacing:2.520000px;}
.ws35_c00251{word-spacing:3.024000px;}
.ws36_c00251{word-spacing:3.168000px;}
.ws37_c00251{word-spacing:3.240000px;}
.wsb_c00251{word-spacing:3.528000px;}
.ws1_c00251{word-spacing:3.744000px;}
.ws2c_c00251{word-spacing:4.248000px;}
.ws29_c00251{word-spacing:4.968000px;}
.ws2d_c00251{word-spacing:5.270400px;}
.ws38_c00251{word-spacing:5.328000px;}
.ws16_c00251{word-spacing:5.995080px;}
.ws3_c00251{word-spacing:6.192720px;}
.ws8_c00251{word-spacing:7.115040px;}
.ws15_c00251{word-spacing:7.378560px;}
.ws7_c00251{word-spacing:7.444440px;}
.ws39_c00251{word-spacing:9.288000px;}
.ws3a_c00251{word-spacing:9.360000px;}
.ws10_c00251{word-spacing:11.067840px;}
.wsf_c00251{word-spacing:11.199600px;}
.ws26_c00251{word-spacing:11.376000px;}
.ws25_c00251{word-spacing:11.520000px;}
.wsd_c00251{word-spacing:11.736000px;}
.wse_c00251{word-spacing:11.808000px;}
.wsc_c00251{word-spacing:11.880000px;}
.ws6_c00251{word-spacing:12.240000px;}
.ws34_c00251{word-spacing:12.888000px;}
.ws33_c00251{word-spacing:12.960000px;}
.ws2f_c00251{word-spacing:13.900680px;}
.ws30_c00251{word-spacing:14.295960px;}
.ws2e_c00251{word-spacing:14.559480px;}
.ws20_c00251{word-spacing:16.488000px;}
.ws1e_c00251{word-spacing:16.560000px;}
.ws1f_c00251{word-spacing:16.848000px;}
.ws11_c00251{word-spacing:19.302840px;}
.ws12_c00251{word-spacing:19.566360px;}
.ws2a_c00251{word-spacing:19.728000px;}
.ws2b_c00251{word-spacing:19.800000px;}
.ws28_c00251{word-spacing:29.448000px;}
.ws27_c00251{word-spacing:29.808000px;}
.ws24_c00251{word-spacing:38.088000px;}
.ws4_c00251{word-spacing:38.160000px;}
.ws23_c00251{word-spacing:45.216000px;}
.ws21_c00251{word-spacing:45.288000px;}
.ws22_c00251{word-spacing:45.360000px;}
._1_c00251{margin-left:-1.008000px;}
._4_c00251{width:1.113480px;}
._0_c00251{width:3.528000px;}
._8_c00251{width:5.256000px;}
._2_c00251{width:11.520000px;}
._5_c00251{width:16.992000px;}
._7_c00251{width:20.016000px;}
._3_c00251{width:26.529984px;}
._6_c00251{width:38.592000px;}
.fc1_c00251{color:rgb(0,0,0);}
.fc0_c00251{color:rgb(35,31,32);}
.fs1_c00251{font-size:65.880000px;}
.fs0_c00251{font-size:72.000000px;}
.y0_c00251{bottom:0.000000px;}
.y1_c00251{bottom:61.748550px;}
.y20_c00251{bottom:112.814400px;}
.y1f_c00251{bottom:143.864400px;}
.y1e_c00251{bottom:174.914400px;}
.y1d_c00251{bottom:205.964400px;}
.y1c_c00251{bottom:266.617290px;}
.y1b_c00251{bottom:295.143330px;}
.y1a_c00251{bottom:323.587020px;}
.y19_c00251{bottom:352.030710px;}
.y18_c00251{bottom:380.474400px;}
.y17_c00251{bottom:441.404400px;}
.y16_c00251{bottom:472.454400px;}
.y15_c00251{bottom:503.504400px;}
.y14_c00251{bottom:534.554400px;}
.y13_c00251{bottom:565.604400px;}
.y12_c00251{bottom:596.654400px;}
.y11_c00251{bottom:658.754400px;}
.y10_c00251{bottom:689.804400px;}
.yf_c00251{bottom:720.854400px;}
.ye_c00251{bottom:751.904400px;}
.yd_c00251{bottom:782.954400px;}
.yc_c00251{bottom:814.004400px;}
.yb_c00251{bottom:874.653450px;}
.ya_c00251{bottom:903.097140px;}
.y9_c00251{bottom:931.623180px;}
.y8_c00251{bottom:960.066870px;}
.y7_c00251{bottom:988.510560px;}
.y6_c00251{bottom:1016.954250px;}
.y5_c00251{bottom:1077.884400px;}
.y4_c00251{bottom:1108.934400px;}
.y3_c00251{bottom:1139.984400px;}
.y2_c00251{bottom:1193.174400px;}
.h2_c00251{height:50.400000px;}
.h5_c00251{height:71.413920px;}
.h3_c00251{height:76.824000px;}
.h4_c00251{height:78.048000px;}
.h0_c00251{height:1262.835000px;}
.h1_c00251{height:1263.000000px;}
.w0_c00251{width:892.914000px;}
.w1_c00251{width:893.250000px;}
.x0_c00251{left:0.000000px;}
.x1_c00251{left:54.000000px;}
.x2_c00251{left:127.620000px;}
.x4_c00251{left:148.950000px;}
.x3_c00251{left:159.570000px;}
.x5_c00251{left:170.190000px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.lsa_c00251{letter-spacing:-0.384000pt;}
.ls9_c00251{letter-spacing:-0.058560pt;}
.ls8_c00251{letter-spacing:0.000000pt;}
.ls7_c00251{letter-spacing:0.046848pt;}
.ls3_c00251{letter-spacing:0.058560pt;}
.ls1_c00251{letter-spacing:0.064000pt;}
.ls4_c00251{letter-spacing:0.128000pt;}
.ls2_c00251{letter-spacing:0.175680pt;}
.ls0_c00251{letter-spacing:19.200000pt;}
.ls6_c00251{letter-spacing:27.581760pt;}
.ls5_c00251{letter-spacing:42.240000pt;}
.ws5_c00251{word-spacing:-16.128000pt;}
.ws2_c00251{word-spacing:-16.064000pt;}
.ws0_c00251{word-spacing:-16.000000pt;}
.ws32_c00251{word-spacing:-0.409920pt;}
.wsa_c00251{word-spacing:-0.064000pt;}
.ws18_c00251{word-spacing:-0.058560pt;}
.ws9_c00251{word-spacing:0.000000pt;}
.ws19_c00251{word-spacing:0.117120pt;}
.ws17_c00251{word-spacing:0.468480pt;}
.ws31_c00251{word-spacing:1.112640pt;}
.ws13_c00251{word-spacing:1.522560pt;}
.ws1d_c00251{word-spacing:1.536000pt;}
.ws14_c00251{word-spacing:1.756800pt;}
.ws1b_c00251{word-spacing:1.856000pt;}
.ws1c_c00251{word-spacing:1.920000pt;}
.ws1a_c00251{word-spacing:2.240000pt;}
.ws35_c00251{word-spacing:2.688000pt;}
.ws36_c00251{word-spacing:2.816000pt;}
.ws37_c00251{word-spacing:2.880000pt;}
.wsb_c00251{word-spacing:3.136000pt;}
.ws1_c00251{word-spacing:3.328000pt;}
.ws2c_c00251{word-spacing:3.776000pt;}
.ws29_c00251{word-spacing:4.416000pt;}
.ws2d_c00251{word-spacing:4.684800pt;}
.ws38_c00251{word-spacing:4.736000pt;}
.ws16_c00251{word-spacing:5.328960pt;}
.ws3_c00251{word-spacing:5.504640pt;}
.ws8_c00251{word-spacing:6.324480pt;}
.ws15_c00251{word-spacing:6.558720pt;}
.ws7_c00251{word-spacing:6.617280pt;}
.ws39_c00251{word-spacing:8.256000pt;}
.ws3a_c00251{word-spacing:8.320000pt;}
.ws10_c00251{word-spacing:9.838080pt;}
.wsf_c00251{word-spacing:9.955200pt;}
.ws26_c00251{word-spacing:10.112000pt;}
.ws25_c00251{word-spacing:10.240000pt;}
.wsd_c00251{word-spacing:10.432000pt;}
.wse_c00251{word-spacing:10.496000pt;}
.wsc_c00251{word-spacing:10.560000pt;}
.ws6_c00251{word-spacing:10.880000pt;}
.ws34_c00251{word-spacing:11.456000pt;}
.ws33_c00251{word-spacing:11.520000pt;}
.ws2f_c00251{word-spacing:12.356160pt;}
.ws30_c00251{word-spacing:12.707520pt;}
.ws2e_c00251{word-spacing:12.941760pt;}
.ws20_c00251{word-spacing:14.656000pt;}
.ws1e_c00251{word-spacing:14.720000pt;}
.ws1f_c00251{word-spacing:14.976000pt;}
.ws11_c00251{word-spacing:17.158080pt;}
.ws12_c00251{word-spacing:17.392320pt;}
.ws2a_c00251{word-spacing:17.536000pt;}
.ws2b_c00251{word-spacing:17.600000pt;}
.ws28_c00251{word-spacing:26.176000pt;}
.ws27_c00251{word-spacing:26.496000pt;}
.ws24_c00251{word-spacing:33.856000pt;}
.ws4_c00251{word-spacing:33.920000pt;}
.ws23_c00251{word-spacing:40.192000pt;}
.ws21_c00251{word-spacing:40.256000pt;}
.ws22_c00251{word-spacing:40.320000pt;}
._1_c00251{margin-left:-0.896000pt;}
._4_c00251{width:0.989760pt;}
._0_c00251{width:3.136000pt;}
._8_c00251{width:4.672000pt;}
._2_c00251{width:10.240000pt;}
._5_c00251{width:15.104000pt;}
._7_c00251{width:17.792000pt;}
._3_c00251{width:23.582208pt;}
._6_c00251{width:34.304000pt;}
.fs1_c00251{font-size:58.560000pt;}
.fs0_c00251{font-size:64.000000pt;}
.y0_c00251{bottom:0.000000pt;}
.y1_c00251{bottom:54.887600pt;}
.y20_c00251{bottom:100.279467pt;}
.y1f_c00251{bottom:127.879467pt;}
.y1e_c00251{bottom:155.479467pt;}
.y1d_c00251{bottom:183.079467pt;}
.y1c_c00251{bottom:236.993147pt;}
.y1b_c00251{bottom:262.349627pt;}
.y1a_c00251{bottom:287.632907pt;}
.y19_c00251{bottom:312.916187pt;}
.y18_c00251{bottom:338.199467pt;}
.y17_c00251{bottom:392.359467pt;}
.y16_c00251{bottom:419.959467pt;}
.y15_c00251{bottom:447.559467pt;}
.y14_c00251{bottom:475.159467pt;}
.y13_c00251{bottom:502.759467pt;}
.y12_c00251{bottom:530.359467pt;}
.y11_c00251{bottom:585.559467pt;}
.y10_c00251{bottom:613.159467pt;}
.yf_c00251{bottom:640.759467pt;}
.ye_c00251{bottom:668.359467pt;}
.yd_c00251{bottom:695.959467pt;}
.yc_c00251{bottom:723.559467pt;}
.yb_c00251{bottom:777.469733pt;}
.ya_c00251{bottom:802.753013pt;}
.y9_c00251{bottom:828.109493pt;}
.y8_c00251{bottom:853.392773pt;}
.y7_c00251{bottom:878.676053pt;}
.y6_c00251{bottom:903.959333pt;}
.y5_c00251{bottom:958.119467pt;}
.y4_c00251{bottom:985.719467pt;}
.y3_c00251{bottom:1013.319467pt;}
.y2_c00251{bottom:1060.599467pt;}
.h2_c00251{height:44.800000pt;}
.h5_c00251{height:63.479040pt;}
.h3_c00251{height:68.288000pt;}
.h4_c00251{height:69.376000pt;}
.h0_c00251{height:1122.520000pt;}
.h1_c00251{height:1122.666667pt;}
.w0_c00251{width:793.701333pt;}
.w1_c00251{width:794.000000pt;}
.x0_c00251{left:0.000000pt;}
.x1_c00251{left:48.000000pt;}
.x2_c00251{left:113.440000pt;}
.x4_c00251{left:132.400000pt;}
.x3_c00251{left:141.840000pt;}
.x5_c00251{left:151.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00252;src:url('chunks/assets/font_10b11e22943e475ff60888f9.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00252;src:url('chunks/assets/font_d30aba80342a129f0b6b793a.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00252;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00252;src:url('chunks/assets/font_fc4109884f611b7c1cb63a2f.woff2')format("woff");}.ff5_c00252{font-family:ff5_c00252;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00252;src:url('chunks/assets/font_b640e5e08445dfe258906e68.woff2')format("woff");}.ff6_c00252{font-family:ff6_c00252;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00252{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.lsb_c00252{letter-spacing:-0.432000px;}
.lsc_c00252{letter-spacing:-0.197640px;}
.lsa_c00252{letter-spacing:-0.065880px;}
.ls9_c00252{letter-spacing:0.000000px;}
.ls7_c00252{letter-spacing:0.052704px;}
.ls3_c00252{letter-spacing:0.065880px;}
.ls1_c00252{letter-spacing:0.072000px;}
.ls4_c00252{letter-spacing:0.144000px;}
.ls2_c00252{letter-spacing:0.197640px;}
.ls0_c00252{letter-spacing:21.600000px;}
.ls6_c00252{letter-spacing:31.029480px;}
.ls5_c00252{letter-spacing:47.520000px;}
.ls8_c00252{letter-spacing:47.527200px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00252{word-spacing:-18.144000px;}
.ws1_c00252{word-spacing:-18.072000px;}
.ws0_c00252{word-spacing:-18.000000px;}
.ws34_c00252{word-spacing:-0.461160px;}
.ws9_c00252{word-spacing:-0.144000px;}
.wsc_c00252{word-spacing:-0.072000px;}
.ws1a_c00252{word-spacing:-0.065880px;}
.wsb_c00252{word-spacing:0.000000px;}
.ws1b_c00252{word-spacing:0.131760px;}
.ws44_c00252{word-spacing:0.197640px;}
.ws43_c00252{word-spacing:0.263520px;}
.ws42_c00252{word-spacing:0.395280px;}
.wsa_c00252{word-spacing:0.461160px;}
.ws19_c00252{word-spacing:0.527040px;}
.ws3d_c00252{word-spacing:1.008000px;}
.ws33_c00252{word-spacing:1.251720px;}
.ws40_c00252{word-spacing:1.317600px;}
.ws15_c00252{word-spacing:1.712880px;}
.ws1f_c00252{word-spacing:1.728000px;}
.ws16_c00252{word-spacing:1.976400px;}
.ws1d_c00252{word-spacing:2.088000px;}
.ws1e_c00252{word-spacing:2.160000px;}
.ws1c_c00252{word-spacing:2.520000px;}
.ws37_c00252{word-spacing:3.024000px;}
.ws38_c00252{word-spacing:3.168000px;}
.ws39_c00252{word-spacing:3.240000px;}
.wsd_c00252{word-spacing:3.528000px;}
.ws2_c00252{word-spacing:3.744000px;}
.ws2e_c00252{word-spacing:4.248000px;}
.ws2b_c00252{word-spacing:4.968000px;}
.ws2f_c00252{word-spacing:5.270400px;}
.ws3a_c00252{word-spacing:5.328000px;}
.ws18_c00252{word-spacing:5.995080px;}
.ws3_c00252{word-spacing:6.199308px;}
.ws8_c00252{word-spacing:7.115040px;}
.ws17_c00252{word-spacing:7.378560px;}
.ws7_c00252{word-spacing:7.444440px;}
.ws3e_c00252{word-spacing:8.928000px;}
.ws3b_c00252{word-spacing:9.288000px;}
.ws3c_c00252{word-spacing:9.360000px;}
.ws12_c00252{word-spacing:11.067840px;}
.ws11_c00252{word-spacing:11.199600px;}
.ws28_c00252{word-spacing:11.376000px;}
.ws41_c00252{word-spacing:11.397240px;}
.ws27_c00252{word-spacing:11.520000px;}
.wsf_c00252{word-spacing:11.736000px;}
.ws10_c00252{word-spacing:11.808000px;}
.wse_c00252{word-spacing:11.880000px;}
.ws6_c00252{word-spacing:12.240000px;}
.ws36_c00252{word-spacing:12.888000px;}
.ws35_c00252{word-spacing:12.960000px;}
.ws31_c00252{word-spacing:13.900680px;}
.ws32_c00252{word-spacing:14.295960px;}
.ws30_c00252{word-spacing:14.559480px;}
.ws3f_c00252{word-spacing:15.768000px;}
.ws22_c00252{word-spacing:16.488000px;}
.ws20_c00252{word-spacing:16.560000px;}
.ws21_c00252{word-spacing:16.848000px;}
.ws13_c00252{word-spacing:19.302840px;}
.ws14_c00252{word-spacing:19.566360px;}
.ws2c_c00252{word-spacing:19.728000px;}
.ws2d_c00252{word-spacing:19.800000px;}
.ws2a_c00252{word-spacing:29.448000px;}
.ws29_c00252{word-spacing:29.808000px;}
.ws26_c00252{word-spacing:38.088000px;}
.ws4_c00252{word-spacing:38.160000px;}
.ws25_c00252{word-spacing:45.216000px;}
.ws23_c00252{word-spacing:45.288000px;}
.ws24_c00252{word-spacing:45.360000px;}
._1_c00252{margin-left:-1.008000px;}
._4_c00252{width:1.120068px;}
._0_c00252{width:3.528000px;}
._8_c00252{width:5.256000px;}
._2_c00252{width:11.520000px;}
._a_c00252{width:15.297372px;}
._5_c00252{width:16.992000px;}
._9_c00252{width:18.036000px;}
._7_c00252{width:20.016000px;}
._3_c00252{width:26.529984px;}
._6_c00252{width:38.592000px;}
.fc2_c00252{color:transparent;}
.fc1_c00252{color:rgb(0,0,0);}
.fc0_c00252{color:rgb(35,31,32);}
.fs1_c00252{font-size:65.880000px;}
.fs0_c00252{font-size:72.000000px;}
.y0_c00252{bottom:0.000000px;}
.y1_c00252{bottom:61.748550px;}
.y20_c00252{bottom:112.814400px;}
.y1f_c00252{bottom:143.864400px;}
.y1e_c00252{bottom:174.914400px;}
.y1d_c00252{bottom:205.964400px;}
.y1c_c00252{bottom:266.617290px;}
.y1b_c00252{bottom:295.143330px;}
.y1a_c00252{bottom:323.587020px;}
.y19_c00252{bottom:352.030710px;}
.y18_c00252{bottom:380.474400px;}
.y17_c00252{bottom:441.404400px;}
.y16_c00252{bottom:472.454400px;}
.y15_c00252{bottom:503.504400px;}
.y14_c00252{bottom:534.554400px;}
.y13_c00252{bottom:565.604400px;}
.y12_c00252{bottom:596.654400px;}
.y11_c00252{bottom:658.754400px;}
.y10_c00252{bottom:689.804400px;}
.yf_c00252{bottom:720.854400px;}
.ye_c00252{bottom:751.904400px;}
.yd_c00252{bottom:782.954400px;}
.y2a_c00252{bottom:809.947290px;}
.yc_c00252{bottom:814.004400px;}
.y29_c00252{bottom:838.473330px;}
.y28_c00252{bottom:866.917020px;}
.yb_c00252{bottom:874.653450px;}
.y27_c00252{bottom:895.360710px;}
.ya_c00252{bottom:903.097140px;}
.y26_c00252{bottom:923.804400px;}
.y9_c00252{bottom:931.623180px;}
.y8_c00252{bottom:960.066870px;}
.y25_c00252{bottom:984.734400px;}
.y7_c00252{bottom:988.510560px;}
.y24_c00252{bottom:1015.784400px;}
.y6_c00252{bottom:1016.954250px;}
.y23_c00252{bottom:1046.834400px;}
.y5_c00252{bottom:1077.884400px;}
.y4_c00252{bottom:1108.934400px;}
.y22_c00252{bottom:1139.984400px;}
.y3_c00252{bottom:1139.984550px;}
.y21_c00252{bottom:1193.174400px;}
.y2_c00252{bottom:1193.174550px;}
.h2_c00252{height:50.400000px;}
.h5_c00252{height:71.413920px;}
.h3_c00252{height:76.824000px;}
.h4_c00252{height:78.047400px;}
.h6_c00252{height:78.048000px;}
.h0_c00252{height:1262.835000px;}
.h1_c00252{height:1263.000000px;}
.w2_c00252{width:0.000000px;}
.w3_c00252{width:0.066000px;}
.w0_c00252{width:892.914000px;}
.w1_c00252{width:893.250000px;}
.x1_c00252{left:-838.913400px;}
.x2_c00252{left:-765.293400px;}
.x4_c00252{left:-743.963400px;}
.x3_c00252{left:-733.343400px;}
.x5_c00252{left:-722.723400px;}
.x0_c00252{left:0.000000px;}
.x8_c00252{left:127.620000px;}
.xa_c00252{left:148.950000px;}
.x9_c00252{left:159.570000px;}
.x7_c00252{left:679.950000px;}
.x6_c00252{left:804.366150px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.lsb_c00252{letter-spacing:-0.384000pt;}
.lsc_c00252{letter-spacing:-0.175680pt;}
.lsa_c00252{letter-spacing:-0.058560pt;}
.ls9_c00252{letter-spacing:0.000000pt;}
.ls7_c00252{letter-spacing:0.046848pt;}
.ls3_c00252{letter-spacing:0.058560pt;}
.ls1_c00252{letter-spacing:0.064000pt;}
.ls4_c00252{letter-spacing:0.128000pt;}
.ls2_c00252{letter-spacing:0.175680pt;}
.ls0_c00252{letter-spacing:19.200000pt;}
.ls6_c00252{letter-spacing:27.581760pt;}
.ls5_c00252{letter-spacing:42.240000pt;}
.ls8_c00252{letter-spacing:42.246400pt;}
.ws5_c00252{word-spacing:-16.128000pt;}
.ws1_c00252{word-spacing:-16.064000pt;}
.ws0_c00252{word-spacing:-16.000000pt;}
.ws34_c00252{word-spacing:-0.409920pt;}
.ws9_c00252{word-spacing:-0.128000pt;}
.wsc_c00252{word-spacing:-0.064000pt;}
.ws1a_c00252{word-spacing:-0.058560pt;}
.wsb_c00252{word-spacing:0.000000pt;}
.ws1b_c00252{word-spacing:0.117120pt;}
.ws44_c00252{word-spacing:0.175680pt;}
.ws43_c00252{word-spacing:0.234240pt;}
.ws42_c00252{word-spacing:0.351360pt;}
.wsa_c00252{word-spacing:0.409920pt;}
.ws19_c00252{word-spacing:0.468480pt;}
.ws3d_c00252{word-spacing:0.896000pt;}
.ws33_c00252{word-spacing:1.112640pt;}
.ws40_c00252{word-spacing:1.171200pt;}
.ws15_c00252{word-spacing:1.522560pt;}
.ws1f_c00252{word-spacing:1.536000pt;}
.ws16_c00252{word-spacing:1.756800pt;}
.ws1d_c00252{word-spacing:1.856000pt;}
.ws1e_c00252{word-spacing:1.920000pt;}
.ws1c_c00252{word-spacing:2.240000pt;}
.ws37_c00252{word-spacing:2.688000pt;}
.ws38_c00252{word-spacing:2.816000pt;}
.ws39_c00252{word-spacing:2.880000pt;}
.wsd_c00252{word-spacing:3.136000pt;}
.ws2_c00252{word-spacing:3.328000pt;}
.ws2e_c00252{word-spacing:3.776000pt;}
.ws2b_c00252{word-spacing:4.416000pt;}
.ws2f_c00252{word-spacing:4.684800pt;}
.ws3a_c00252{word-spacing:4.736000pt;}
.ws18_c00252{word-spacing:5.328960pt;}
.ws3_c00252{word-spacing:5.510496pt;}
.ws8_c00252{word-spacing:6.324480pt;}
.ws17_c00252{word-spacing:6.558720pt;}
.ws7_c00252{word-spacing:6.617280pt;}
.ws3e_c00252{word-spacing:7.936000pt;}
.ws3b_c00252{word-spacing:8.256000pt;}
.ws3c_c00252{word-spacing:8.320000pt;}
.ws12_c00252{word-spacing:9.838080pt;}
.ws11_c00252{word-spacing:9.955200pt;}
.ws28_c00252{word-spacing:10.112000pt;}
.ws41_c00252{word-spacing:10.130880pt;}
.ws27_c00252{word-spacing:10.240000pt;}
.wsf_c00252{word-spacing:10.432000pt;}
.ws10_c00252{word-spacing:10.496000pt;}
.wse_c00252{word-spacing:10.560000pt;}
.ws6_c00252{word-spacing:10.880000pt;}
.ws36_c00252{word-spacing:11.456000pt;}
.ws35_c00252{word-spacing:11.520000pt;}
.ws31_c00252{word-spacing:12.356160pt;}
.ws32_c00252{word-spacing:12.707520pt;}
.ws30_c00252{word-spacing:12.941760pt;}
.ws3f_c00252{word-spacing:14.016000pt;}
.ws22_c00252{word-spacing:14.656000pt;}
.ws20_c00252{word-spacing:14.720000pt;}
.ws21_c00252{word-spacing:14.976000pt;}
.ws13_c00252{word-spacing:17.158080pt;}
.ws14_c00252{word-spacing:17.392320pt;}
.ws2c_c00252{word-spacing:17.536000pt;}
.ws2d_c00252{word-spacing:17.600000pt;}
.ws2a_c00252{word-spacing:26.176000pt;}
.ws29_c00252{word-spacing:26.496000pt;}
.ws26_c00252{word-spacing:33.856000pt;}
.ws4_c00252{word-spacing:33.920000pt;}
.ws25_c00252{word-spacing:40.192000pt;}
.ws23_c00252{word-spacing:40.256000pt;}
.ws24_c00252{word-spacing:40.320000pt;}
._1_c00252{margin-left:-0.896000pt;}
._4_c00252{width:0.995616pt;}
._0_c00252{width:3.136000pt;}
._8_c00252{width:4.672000pt;}
._2_c00252{width:10.240000pt;}
._a_c00252{width:13.597664pt;}
._5_c00252{width:15.104000pt;}
._9_c00252{width:16.032000pt;}
._7_c00252{width:17.792000pt;}
._3_c00252{width:23.582208pt;}
._6_c00252{width:34.304000pt;}
.fs1_c00252{font-size:58.560000pt;}
.fs0_c00252{font-size:64.000000pt;}
.y0_c00252{bottom:0.000000pt;}
.y1_c00252{bottom:54.887600pt;}
.y20_c00252{bottom:100.279467pt;}
.y1f_c00252{bottom:127.879467pt;}
.y1e_c00252{bottom:155.479467pt;}
.y1d_c00252{bottom:183.079467pt;}
.y1c_c00252{bottom:236.993147pt;}
.y1b_c00252{bottom:262.349627pt;}
.y1a_c00252{bottom:287.632907pt;}
.y19_c00252{bottom:312.916187pt;}
.y18_c00252{bottom:338.199467pt;}
.y17_c00252{bottom:392.359467pt;}
.y16_c00252{bottom:419.959467pt;}
.y15_c00252{bottom:447.559467pt;}
.y14_c00252{bottom:475.159467pt;}
.y13_c00252{bottom:502.759467pt;}
.y12_c00252{bottom:530.359467pt;}
.y11_c00252{bottom:585.559467pt;}
.y10_c00252{bottom:613.159467pt;}
.yf_c00252{bottom:640.759467pt;}
.ye_c00252{bottom:668.359467pt;}
.yd_c00252{bottom:695.959467pt;}
.y2a_c00252{bottom:719.953147pt;}
.yc_c00252{bottom:723.559467pt;}
.y29_c00252{bottom:745.309627pt;}
.y28_c00252{bottom:770.592907pt;}
.yb_c00252{bottom:777.469733pt;}
.y27_c00252{bottom:795.876187pt;}
.ya_c00252{bottom:802.753013pt;}
.y26_c00252{bottom:821.159467pt;}
.y9_c00252{bottom:828.109493pt;}
.y8_c00252{bottom:853.392773pt;}
.y25_c00252{bottom:875.319467pt;}
.y7_c00252{bottom:878.676053pt;}
.y24_c00252{bottom:902.919467pt;}
.y6_c00252{bottom:903.959333pt;}
.y23_c00252{bottom:930.519467pt;}
.y5_c00252{bottom:958.119467pt;}
.y4_c00252{bottom:985.719467pt;}
.y22_c00252{bottom:1013.319467pt;}
.y3_c00252{bottom:1013.319600pt;}
.y21_c00252{bottom:1060.599467pt;}
.y2_c00252{bottom:1060.599600pt;}
.h2_c00252{height:44.800000pt;}
.h5_c00252{height:63.479040pt;}
.h3_c00252{height:68.288000pt;}
.h4_c00252{height:69.375467pt;}
.h6_c00252{height:69.376000pt;}
.h0_c00252{height:1122.520000pt;}
.h1_c00252{height:1122.666667pt;}
.w2_c00252{width:0.000000pt;}
.w3_c00252{width:0.058667pt;}
.w0_c00252{width:793.701333pt;}
.w1_c00252{width:794.000000pt;}
.x1_c00252{left:-745.700800pt;}
.x2_c00252{left:-680.260800pt;}
.x4_c00252{left:-661.300800pt;}
.x3_c00252{left:-651.860800pt;}
.x5_c00252{left:-642.420800pt;}
.x0_c00252{left:0.000000pt;}
.x8_c00252{left:113.440000pt;}
.xa_c00252{left:132.400000pt;}
.x9_c00252{left:141.840000pt;}
.x7_c00252{left:604.400000pt;}
.x6_c00252{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00253;src:url('chunks/assets/font_359b6b06946a0482b226592d.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00253;src:url('chunks/assets/font_a379a26cf4601a8313bae87f.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00253;src:url('chunks/assets/font_5ce868f28c19c982200c9715.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00253;src:url('chunks/assets/font_d9b7ed21798a4e692fc82dab.woff2')format("woff");}.ff5_c00253{font-family:ff5_c00253;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00253;src:url('chunks/assets/font_d0675e2d8883df950f85dc06.woff2')format("woff");}.ff6_c00253{font-family:ff6_c00253;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v2_c00253{vertical-align:-29.880000px;}
.v0_c00253{vertical-align:0.000000px;}
.v1_c00253{vertical-align:29.894160px;}
.ls6_c00253{letter-spacing:-0.144000px;}
.ls7_c00253{letter-spacing:-0.072000px;}
.ls8_c00253{letter-spacing:-0.065880px;}
.ls5_c00253{letter-spacing:0.000000px;}
.ls0_c00253{letter-spacing:0.072000px;}
.ls4_c00253{letter-spacing:0.087840px;}
.ls9_c00253{letter-spacing:0.120240px;}
.ls1_c00253{letter-spacing:0.144000px;}
.ls2_c00253{letter-spacing:0.197640px;}
.ls3_c00253{letter-spacing:16.601760px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00253{word-spacing:-18.072000px;}
.ws0_c00253{word-spacing:-18.000000px;}
.ws8_c00253{word-spacing:-16.470000px;}
.ws1d_c00253{word-spacing:-0.432000px;}
.wsa_c00253{word-spacing:-0.144000px;}
.ws7_c00253{word-spacing:-0.131760px;}
.wsb_c00253{word-spacing:-0.072000px;}
.ws23_c00253{word-spacing:-0.060120px;}
.ws9_c00253{word-spacing:0.000000px;}
.ws22_c00253{word-spacing:0.060120px;}
.ws21_c00253{word-spacing:0.065880px;}
.ws14_c00253{word-spacing:0.072000px;}
.ws20_c00253{word-spacing:0.131760px;}
.ws11_c00253{word-spacing:0.144000px;}
.ws1f_c00253{word-spacing:0.461160px;}
.ws15_c00253{word-spacing:1.440000px;}
.wsd_c00253{word-spacing:1.728000px;}
.ws10_c00253{word-spacing:2.808000px;}
.wse_c00253{word-spacing:3.096000px;}
.wsf_c00253{word-spacing:3.168000px;}
.ws13_c00253{word-spacing:5.040000px;}
.ws1e_c00253{word-spacing:5.270400px;}
.ws19_c00253{word-spacing:7.128000px;}
.ws6_c00253{word-spacing:7.200000px;}
.ws3_c00253{word-spacing:7.560000px;}
.ws12_c00253{word-spacing:7.848000px;}
.wsc_c00253{word-spacing:8.928000px;}
.ws18_c00253{word-spacing:9.000000px;}
.ws17_c00253{word-spacing:9.360000px;}
.ws16_c00253{word-spacing:20.016000px;}
.ws4_c00253{word-spacing:20.160000px;}
.ws1b_c00253{word-spacing:21.816000px;}
.ws1a_c00253{word-spacing:21.888000px;}
.ws1c_c00253{word-spacing:21.960000px;}
.ws2_c00253{word-spacing:50.400000px;}
.ws1_c00253{word-spacing:140.400000px;}
._7_c00253{margin-left:-6.670080px;}
._0_c00253{margin-left:-1.296000px;}
._2_c00253{width:1.584000px;}
._1_c00253{width:2.664000px;}
._4_c00253{width:7.344000px;}
._3_c00253{width:9.000000px;}
._5_c00253{width:21.232800px;}
._6_c00253{width:39.895200px;}
.fc1_c00253{color:rgb(0,0,0);}
.fc0_c00253{color:rgb(35,31,32);}
.fs3_c00253{font-size:38.880000px;}
.fs2_c00253{font-size:42.120000px;}
.fs4_c00253{font-size:60.120000px;}
.fs1_c00253{font-size:65.880000px;}
.fs0_c00253{font-size:72.000000px;}
.y0_c00253{bottom:0.000000px;}
.y1_c00253{bottom:61.748550px;}
.y1c_c00253{bottom:110.377920px;}
.y1b_c00253{bottom:136.124400px;}
.y1a_c00253{bottom:147.375960px;}
.y19_c00253{bottom:222.693270px;}
.y18_c00253{bottom:251.136960px;}
.y17_c00253{bottom:279.580650px;}
.y16_c00253{bottom:336.550710px;}
.y15_c00253{bottom:364.994400px;}
.y14_c00253{bottom:425.924100px;}
.y13_c00253{bottom:456.974100px;}
.y12_c00253{bottom:488.024100px;}
.y11_c00253{bottom:519.074100px;}
.y10_c00253{bottom:581.174100px;}
.yf_c00253{bottom:612.224100px;}
.ye_c00253{bottom:643.274100px;}
.yd_c00253{bottom:705.194100px;}
.yc_c00253{bottom:767.474100px;}
.yb_c00253{bottom:798.434100px;}
.ya_c00253{bottom:829.484100px;}
.y9_c00253{bottom:891.584400px;}
.y8_c00253{bottom:922.634400px;}
.y7_c00253{bottom:984.734400px;}
.y6_c00253{bottom:1015.784400px;}
.y5_c00253{bottom:1046.834400px;}
.y4_c00253{bottom:1077.884400px;}
.y3_c00253{bottom:1139.804400px;}
.y2_c00253{bottom:1193.174400px;}
.h8_c00253{height:32.064609px;}
.h9_c00253{height:49.581387px;}
.h2_c00253{height:50.400000px;}
.h7_c00253{height:54.331699px;}
.h5_c00253{height:71.413920px;}
.h6_c00253{height:75.552240px;}
.h3_c00253{height:76.824000px;}
.h4_c00253{height:78.048000px;}
.h0_c00253{height:1262.835000px;}
.h1_c00253{height:1263.000000px;}
.w0_c00253{width:892.914000px;}
.w1_c00253{width:893.250000px;}
.x0_c00253{left:0.000000px;}
.x1_c00253{left:54.000000px;}
.x2_c00253{left:127.620000px;}
.x5_c00253{left:148.950000px;}
.x3_c00253{left:159.570000px;}
.x4_c00253{left:180.720000px;}
@media print{
.v2_c00253{vertical-align:-26.560000pt;}
.v0_c00253{vertical-align:0.000000pt;}
.v1_c00253{vertical-align:26.572587pt;}
.ls6_c00253{letter-spacing:-0.128000pt;}
.ls7_c00253{letter-spacing:-0.064000pt;}
.ls8_c00253{letter-spacing:-0.058560pt;}
.ls5_c00253{letter-spacing:0.000000pt;}
.ls0_c00253{letter-spacing:0.064000pt;}
.ls4_c00253{letter-spacing:0.078080pt;}
.ls9_c00253{letter-spacing:0.106880pt;}
.ls1_c00253{letter-spacing:0.128000pt;}
.ls2_c00253{letter-spacing:0.175680pt;}
.ls3_c00253{letter-spacing:14.757120pt;}
.ws5_c00253{word-spacing:-16.064000pt;}
.ws0_c00253{word-spacing:-16.000000pt;}
.ws8_c00253{word-spacing:-14.640000pt;}
.ws1d_c00253{word-spacing:-0.384000pt;}
.wsa_c00253{word-spacing:-0.128000pt;}
.ws7_c00253{word-spacing:-0.117120pt;}
.wsb_c00253{word-spacing:-0.064000pt;}
.ws23_c00253{word-spacing:-0.053440pt;}
.ws9_c00253{word-spacing:0.000000pt;}
.ws22_c00253{word-spacing:0.053440pt;}
.ws21_c00253{word-spacing:0.058560pt;}
.ws14_c00253{word-spacing:0.064000pt;}
.ws20_c00253{word-spacing:0.117120pt;}
.ws11_c00253{word-spacing:0.128000pt;}
.ws1f_c00253{word-spacing:0.409920pt;}
.ws15_c00253{word-spacing:1.280000pt;}
.wsd_c00253{word-spacing:1.536000pt;}
.ws10_c00253{word-spacing:2.496000pt;}
.wse_c00253{word-spacing:2.752000pt;}
.wsf_c00253{word-spacing:2.816000pt;}
.ws13_c00253{word-spacing:4.480000pt;}
.ws1e_c00253{word-spacing:4.684800pt;}
.ws19_c00253{word-spacing:6.336000pt;}
.ws6_c00253{word-spacing:6.400000pt;}
.ws3_c00253{word-spacing:6.720000pt;}
.ws12_c00253{word-spacing:6.976000pt;}
.wsc_c00253{word-spacing:7.936000pt;}
.ws18_c00253{word-spacing:8.000000pt;}
.ws17_c00253{word-spacing:8.320000pt;}
.ws16_c00253{word-spacing:17.792000pt;}
.ws4_c00253{word-spacing:17.920000pt;}
.ws1b_c00253{word-spacing:19.392000pt;}
.ws1a_c00253{word-spacing:19.456000pt;}
.ws1c_c00253{word-spacing:19.520000pt;}
.ws2_c00253{word-spacing:44.800000pt;}
.ws1_c00253{word-spacing:124.800000pt;}
._7_c00253{margin-left:-5.928960pt;}
._0_c00253{margin-left:-1.152000pt;}
._2_c00253{width:1.408000pt;}
._1_c00253{width:2.368000pt;}
._4_c00253{width:6.528000pt;}
._3_c00253{width:8.000000pt;}
._5_c00253{width:18.873600pt;}
._6_c00253{width:35.462400pt;}
.fs3_c00253{font-size:34.560000pt;}
.fs2_c00253{font-size:37.440000pt;}
.fs4_c00253{font-size:53.440000pt;}
.fs1_c00253{font-size:58.560000pt;}
.fs0_c00253{font-size:64.000000pt;}
.y0_c00253{bottom:0.000000pt;}
.y1_c00253{bottom:54.887600pt;}
.y1c_c00253{bottom:98.113707pt;}
.y1b_c00253{bottom:120.999467pt;}
.y1a_c00253{bottom:131.000853pt;}
.y19_c00253{bottom:197.949573pt;}
.y18_c00253{bottom:223.232853pt;}
.y17_c00253{bottom:248.516133pt;}
.y16_c00253{bottom:299.156187pt;}
.y15_c00253{bottom:324.439467pt;}
.y14_c00253{bottom:378.599200pt;}
.y13_c00253{bottom:406.199200pt;}
.y12_c00253{bottom:433.799200pt;}
.y11_c00253{bottom:461.399200pt;}
.y10_c00253{bottom:516.599200pt;}
.yf_c00253{bottom:544.199200pt;}
.ye_c00253{bottom:571.799200pt;}
.yd_c00253{bottom:626.839200pt;}
.yc_c00253{bottom:682.199200pt;}
.yb_c00253{bottom:709.719200pt;}
.ya_c00253{bottom:737.319200pt;}
.y9_c00253{bottom:792.519467pt;}
.y8_c00253{bottom:820.119467pt;}
.y7_c00253{bottom:875.319467pt;}
.y6_c00253{bottom:902.919467pt;}
.y5_c00253{bottom:930.519467pt;}
.y4_c00253{bottom:958.119467pt;}
.y3_c00253{bottom:1013.159467pt;}
.y2_c00253{bottom:1060.599467pt;}
.h8_c00253{height:28.501875pt;}
.h9_c00253{height:44.072344pt;}
.h2_c00253{height:44.800000pt;}
.h7_c00253{height:48.294844pt;}
.h5_c00253{height:63.479040pt;}
.h6_c00253{height:67.157547pt;}
.h3_c00253{height:68.288000pt;}
.h4_c00253{height:69.376000pt;}
.h0_c00253{height:1122.520000pt;}
.h1_c00253{height:1122.666667pt;}
.w0_c00253{width:793.701333pt;}
.w1_c00253{width:794.000000pt;}
.x0_c00253{left:0.000000pt;}
.x1_c00253{left:48.000000pt;}
.x2_c00253{left:113.440000pt;}
.x5_c00253{left:132.400000pt;}
.x3_c00253{left:141.840000pt;}
.x4_c00253{left:160.640000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00254;src:url('chunks/assets/font_a758a4c49a652e8752c9aef8.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00254;src:url('chunks/assets/font_099b2653d5afa4739c86c4b3.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00254;src:url('chunks/assets/font_39e00c4ee176d375214be4bb.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00254;src:url('chunks/assets/font_8be79f3f5ebd77caa87abb8a.woff2')format("woff");}.ff5_c00254{font-family:ff5_c00254;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00254;src:url('chunks/assets/font_79fa7f50cb3d5eca0a4095ba.woff2')format("woff");}.ff6_c00254{font-family:ff6_c00254;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00254;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff7_c00254{font-family:ff7_c00254;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00254;src:url('chunks/assets/font_69b051ad4b83174295523c5f.woff2')format("woff");}.ff8_c00254{font-family:ff8_c00254;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00254;src:url('chunks/assets/font_7cfa963d9c95ce17dac67d9e.woff2')format("woff");}.ff9_c00254{font-family:ff9_c00254;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00254;src:url('chunks/assets/font_952c7f4865c4ec7f52caa5ac.woff2')format("woff");}.ffa_c00254{font-family:ffa_c00254;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00254;src:url('chunks/assets/font_fd8276518ec3708a84b248b6.woff2')format("woff");}.ffb_c00254{font-family:ffb_c00254;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00254;src:url('chunks/assets/font_3095536a9a6fabdb8fdc71f9.woff2')format("woff");}.ffc_c00254{font-family:ffc_c00254;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v2_c00254{vertical-align:-29.880000px;}
.v0_c00254{vertical-align:0.000000px;}
.v1_c00254{vertical-align:29.894160px;}
.lsf_c00254{letter-spacing:-0.360000px;}
.lsb_c00254{letter-spacing:-0.144000px;}
.lsc_c00254{letter-spacing:-0.072000px;}
.lsd_c00254{letter-spacing:-0.065880px;}
.lsa_c00254{letter-spacing:0.000000px;}
.ls8_c00254{letter-spacing:0.065880px;}
.ls0_c00254{letter-spacing:0.072000px;}
.ls4_c00254{letter-spacing:0.087840px;}
.lse_c00254{letter-spacing:0.120240px;}
.ls1_c00254{letter-spacing:0.144000px;}
.ls2_c00254{letter-spacing:0.197640px;}
.ls9_c00254{letter-spacing:16.206480px;}
.ls6_c00254{letter-spacing:16.588584px;}
.ls3_c00254{letter-spacing:16.601760px;}
.ls5_c00254{letter-spacing:28.440000px;}
.ls7_c00254{letter-spacing:29.843640px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00254{word-spacing:-18.144000px;}
.ws6_c00254{word-spacing:-18.072000px;}
.ws0_c00254{word-spacing:-18.000000px;}
.wsd_c00254{word-spacing:-16.667640px;}
.ws9_c00254{word-spacing:-16.470000px;}
.ws10_c00254{word-spacing:-16.404120px;}
.ws35_c00254{word-spacing:-0.461160px;}
.ws28_c00254{word-spacing:-0.432000px;}
.ws36_c00254{word-spacing:-0.197640px;}
.ws15_c00254{word-spacing:-0.144000px;}
.ws8_c00254{word-spacing:-0.131760px;}
.ws16_c00254{word-spacing:-0.072000px;}
.ws2d_c00254{word-spacing:-0.060120px;}
.ws14_c00254{word-spacing:0.000000px;}
.ws2c_c00254{word-spacing:0.060120px;}
.ws2b_c00254{word-spacing:0.065880px;}
.ws1f_c00254{word-spacing:0.072000px;}
.wse_c00254{word-spacing:0.131760px;}
.ws1c_c00254{word-spacing:0.144000px;}
.ws3e_c00254{word-spacing:0.216000px;}
.wsf_c00254{word-spacing:0.263520px;}
.ws3f_c00254{word-spacing:0.360000px;}
.ws12_c00254{word-spacing:0.432000px;}
.ws2a_c00254{word-spacing:0.461160px;}
.ws3c_c00254{word-spacing:0.527040px;}
.ws20_c00254{word-spacing:1.440000px;}
.ws18_c00254{word-spacing:1.728000px;}
.ws13_c00254{word-spacing:1.944000px;}
.ws1b_c00254{word-spacing:2.808000px;}
.ws2f_c00254{word-spacing:2.880000px;}
.ws19_c00254{word-spacing:3.096000px;}
.ws1a_c00254{word-spacing:3.168000px;}
.ws1e_c00254{word-spacing:5.040000px;}
.ws29_c00254{word-spacing:5.270400px;}
.ws24_c00254{word-spacing:7.128000px;}
.ws7_c00254{word-spacing:7.200000px;}
.ws34_c00254{word-spacing:7.444440px;}
.ws4_c00254{word-spacing:7.560000px;}
.ws33_c00254{word-spacing:7.707960px;}
.ws1d_c00254{word-spacing:7.848000px;}
.ws3d_c00254{word-spacing:8.568000px;}
.ws11_c00254{word-spacing:8.640000px;}
.ws17_c00254{word-spacing:8.928000px;}
.ws23_c00254{word-spacing:9.000000px;}
.ws22_c00254{word-spacing:9.360000px;}
.wsb_c00254{word-spacing:9.648000px;}
.wsc_c00254{word-spacing:10.080000px;}
.ws32_c00254{word-spacing:10.440000px;}
.ws40_c00254{word-spacing:10.800000px;}
.ws37_c00254{word-spacing:12.780720px;}
.ws2e_c00254{word-spacing:12.888000px;}
.wsa_c00254{word-spacing:12.960000px;}
.ws39_c00254{word-spacing:13.176000px;}
.ws3b_c00254{word-spacing:13.439520px;}
.ws3a_c00254{word-spacing:13.505400px;}
.ws30_c00254{word-spacing:15.264000px;}
.ws31_c00254{word-spacing:15.480000px;}
.ws21_c00254{word-spacing:20.016000px;}
.ws5_c00254{word-spacing:20.160000px;}
.ws26_c00254{word-spacing:21.816000px;}
.ws25_c00254{word-spacing:21.888000px;}
.ws27_c00254{word-spacing:21.960000px;}
.ws38_c00254{word-spacing:25.100280px;}
.ws3_c00254{word-spacing:50.400000px;}
.ws1_c00254{word-spacing:140.400000px;}
._7_c00254{margin-left:-6.653880px;}
._0_c00254{margin-left:-1.296000px;}
._2_c00254{width:1.584000px;}
._1_c00254{width:2.664000px;}
._4_c00254{width:7.344000px;}
._3_c00254{width:9.000000px;}
._8_c00254{width:12.240000px;}
._5_c00254{width:21.232800px;}
._6_c00254{width:39.895200px;}
.fc2_c00254{color:transparent;}
.fc1_c00254{color:rgb(0,0,0);}
.fc0_c00254{color:rgb(35,31,32);}
.fs3_c00254{font-size:38.880000px;}
.fs2_c00254{font-size:42.120000px;}
.fs4_c00254{font-size:60.120000px;}
.fs1_c00254{font-size:65.880000px;}
.fs0_c00254{font-size:72.000000px;}
.y0_c00254{bottom:0.000000px;}
.y1_c00254{bottom:61.748550px;}
.y1c_c00254{bottom:110.377920px;}
.y1b_c00254{bottom:136.124400px;}
.y1a_c00254{bottom:147.375960px;}
.y19_c00254{bottom:222.693270px;}
.y18_c00254{bottom:251.136960px;}
.y35_c00254{bottom:257.714400px;}
.y17_c00254{bottom:279.580650px;}
.y34_c00254{bottom:288.764400px;}
.y33_c00254{bottom:319.814400px;}
.y16_c00254{bottom:336.550710px;}
.y32_c00254{bottom:350.864400px;}
.y15_c00254{bottom:364.994400px;}
.y31_c00254{bottom:411.492630px;}
.y14_c00254{bottom:425.924400px;}
.y30_c00254{bottom:440.018670px;}
.y13_c00254{bottom:456.974400px;}
.y2f_c00254{bottom:468.462360px;}
.y12_c00254{bottom:488.024400px;}
.y2e_c00254{bottom:496.906050px;}
.y11_c00254{bottom:519.074400px;}
.y2d_c00254{bottom:525.349740px;}
.y10_c00254{bottom:581.174400px;}
.y2c_c00254{bottom:582.319470px;}
.y2b_c00254{bottom:610.763160px;}
.yf_c00254{bottom:612.224400px;}
.ye_c00254{bottom:643.274400px;}
.y2a_c00254{bottom:667.650540px;}
.y29_c00254{bottom:696.176580px;}
.yd_c00254{bottom:705.194400px;}
.y28_c00254{bottom:724.620270px;}
.y27_c00254{bottom:753.063960px;}
.yc_c00254{bottom:767.474400px;}
.y26_c00254{bottom:781.507650px;}
.yb_c00254{bottom:798.434400px;}
.ya_c00254{bottom:829.484400px;}
.y25_c00254{bottom:840.997290px;}
.y24_c00254{bottom:869.523330px;}
.y9_c00254{bottom:891.584400px;}
.y23_c00254{bottom:897.967020px;}
.y8_c00254{bottom:922.634400px;}
.y22_c00254{bottom:926.410710px;}
.y21_c00254{bottom:954.854400px;}
.y7_c00254{bottom:984.734400px;}
.y6_c00254{bottom:1015.784400px;}
.y5_c00254{bottom:1046.834400px;}
.y4_c00254{bottom:1077.884400px;}
.y20_c00254{bottom:1108.934400px;}
.y1e_c00254{bottom:1139.804400px;}
.y3_c00254{bottom:1139.804550px;}
.y1f_c00254{bottom:1139.984400px;}
.y1d_c00254{bottom:1193.174400px;}
.y2_c00254{bottom:1193.174550px;}
.h8_c00254{height:32.064609px;}
.h9_c00254{height:49.581387px;}
.h2_c00254{height:50.400000px;}
.h7_c00254{height:54.331699px;}
.h5_c00254{height:71.413920px;}
.h6_c00254{height:75.552240px;}
.h3_c00254{height:76.824000px;}
.h4_c00254{height:78.048000px;}
.h0_c00254{height:1262.835000px;}
.h1_c00254{height:1263.000000px;}
.w2_c00254{width:0.000000px;}
.w3_c00254{width:0.066000px;}
.w0_c00254{width:892.914000px;}
.w1_c00254{width:893.250000px;}
.x1_c00254{left:-838.913400px;}
.x2_c00254{left:-765.293400px;}
.x5_c00254{left:-743.963400px;}
.x3_c00254{left:-733.343400px;}
.x4_c00254{left:-712.193400px;}
.x0_c00254{left:0.000000px;}
.x9_c00254{left:127.620000px;}
.xa_c00254{left:148.950000px;}
.x8_c00254{left:159.570000px;}
.x7_c00254{left:679.950000px;}
.x6_c00254{left:804.366150px;}
@media print{
.v2_c00254{vertical-align:-26.560000pt;}
.v0_c00254{vertical-align:0.000000pt;}
.v1_c00254{vertical-align:26.572587pt;}
.lsf_c00254{letter-spacing:-0.320000pt;}
.lsb_c00254{letter-spacing:-0.128000pt;}
.lsc_c00254{letter-spacing:-0.064000pt;}
.lsd_c00254{letter-spacing:-0.058560pt;}
.lsa_c00254{letter-spacing:0.000000pt;}
.ls8_c00254{letter-spacing:0.058560pt;}
.ls0_c00254{letter-spacing:0.064000pt;}
.ls4_c00254{letter-spacing:0.078080pt;}
.lse_c00254{letter-spacing:0.106880pt;}
.ls1_c00254{letter-spacing:0.128000pt;}
.ls2_c00254{letter-spacing:0.175680pt;}
.ls9_c00254{letter-spacing:14.405760pt;}
.ls6_c00254{letter-spacing:14.745408pt;}
.ls3_c00254{letter-spacing:14.757120pt;}
.ls5_c00254{letter-spacing:25.280000pt;}
.ls7_c00254{letter-spacing:26.527680pt;}
.ws2_c00254{word-spacing:-16.128000pt;}
.ws6_c00254{word-spacing:-16.064000pt;}
.ws0_c00254{word-spacing:-16.000000pt;}
.wsd_c00254{word-spacing:-14.815680pt;}
.ws9_c00254{word-spacing:-14.640000pt;}
.ws10_c00254{word-spacing:-14.581440pt;}
.ws35_c00254{word-spacing:-0.409920pt;}
.ws28_c00254{word-spacing:-0.384000pt;}
.ws36_c00254{word-spacing:-0.175680pt;}
.ws15_c00254{word-spacing:-0.128000pt;}
.ws8_c00254{word-spacing:-0.117120pt;}
.ws16_c00254{word-spacing:-0.064000pt;}
.ws2d_c00254{word-spacing:-0.053440pt;}
.ws14_c00254{word-spacing:0.000000pt;}
.ws2c_c00254{word-spacing:0.053440pt;}
.ws2b_c00254{word-spacing:0.058560pt;}
.ws1f_c00254{word-spacing:0.064000pt;}
.wse_c00254{word-spacing:0.117120pt;}
.ws1c_c00254{word-spacing:0.128000pt;}
.ws3e_c00254{word-spacing:0.192000pt;}
.wsf_c00254{word-spacing:0.234240pt;}
.ws3f_c00254{word-spacing:0.320000pt;}
.ws12_c00254{word-spacing:0.384000pt;}
.ws2a_c00254{word-spacing:0.409920pt;}
.ws3c_c00254{word-spacing:0.468480pt;}
.ws20_c00254{word-spacing:1.280000pt;}
.ws18_c00254{word-spacing:1.536000pt;}
.ws13_c00254{word-spacing:1.728000pt;}
.ws1b_c00254{word-spacing:2.496000pt;}
.ws2f_c00254{word-spacing:2.560000pt;}
.ws19_c00254{word-spacing:2.752000pt;}
.ws1a_c00254{word-spacing:2.816000pt;}
.ws1e_c00254{word-spacing:4.480000pt;}
.ws29_c00254{word-spacing:4.684800pt;}
.ws24_c00254{word-spacing:6.336000pt;}
.ws7_c00254{word-spacing:6.400000pt;}
.ws34_c00254{word-spacing:6.617280pt;}
.ws4_c00254{word-spacing:6.720000pt;}
.ws33_c00254{word-spacing:6.851520pt;}
.ws1d_c00254{word-spacing:6.976000pt;}
.ws3d_c00254{word-spacing:7.616000pt;}
.ws11_c00254{word-spacing:7.680000pt;}
.ws17_c00254{word-spacing:7.936000pt;}
.ws23_c00254{word-spacing:8.000000pt;}
.ws22_c00254{word-spacing:8.320000pt;}
.wsb_c00254{word-spacing:8.576000pt;}
.wsc_c00254{word-spacing:8.960000pt;}
.ws32_c00254{word-spacing:9.280000pt;}
.ws40_c00254{word-spacing:9.600000pt;}
.ws37_c00254{word-spacing:11.360640pt;}
.ws2e_c00254{word-spacing:11.456000pt;}
.wsa_c00254{word-spacing:11.520000pt;}
.ws39_c00254{word-spacing:11.712000pt;}
.ws3b_c00254{word-spacing:11.946240pt;}
.ws3a_c00254{word-spacing:12.004800pt;}
.ws30_c00254{word-spacing:13.568000pt;}
.ws31_c00254{word-spacing:13.760000pt;}
.ws21_c00254{word-spacing:17.792000pt;}
.ws5_c00254{word-spacing:17.920000pt;}
.ws26_c00254{word-spacing:19.392000pt;}
.ws25_c00254{word-spacing:19.456000pt;}
.ws27_c00254{word-spacing:19.520000pt;}
.ws38_c00254{word-spacing:22.311360pt;}
.ws3_c00254{word-spacing:44.800000pt;}
.ws1_c00254{word-spacing:124.800000pt;}
._7_c00254{margin-left:-5.914560pt;}
._0_c00254{margin-left:-1.152000pt;}
._2_c00254{width:1.408000pt;}
._1_c00254{width:2.368000pt;}
._4_c00254{width:6.528000pt;}
._3_c00254{width:8.000000pt;}
._8_c00254{width:10.880000pt;}
._5_c00254{width:18.873600pt;}
._6_c00254{width:35.462400pt;}
.fs3_c00254{font-size:34.560000pt;}
.fs2_c00254{font-size:37.440000pt;}
.fs4_c00254{font-size:53.440000pt;}
.fs1_c00254{font-size:58.560000pt;}
.fs0_c00254{font-size:64.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y1_c00254{bottom:54.887600pt;}
.y1c_c00254{bottom:98.113707pt;}
.y1b_c00254{bottom:120.999467pt;}
.y1a_c00254{bottom:131.000853pt;}
.y19_c00254{bottom:197.949573pt;}
.y18_c00254{bottom:223.232853pt;}
.y35_c00254{bottom:229.079467pt;}
.y17_c00254{bottom:248.516133pt;}
.y34_c00254{bottom:256.679467pt;}
.y33_c00254{bottom:284.279467pt;}
.y16_c00254{bottom:299.156187pt;}
.y32_c00254{bottom:311.879467pt;}
.y15_c00254{bottom:324.439467pt;}
.y31_c00254{bottom:365.771227pt;}
.y14_c00254{bottom:378.599467pt;}
.y30_c00254{bottom:391.127707pt;}
.y13_c00254{bottom:406.199467pt;}
.y2f_c00254{bottom:416.410987pt;}
.y12_c00254{bottom:433.799467pt;}
.y2e_c00254{bottom:441.694267pt;}
.y11_c00254{bottom:461.399467pt;}
.y2d_c00254{bottom:466.977547pt;}
.y10_c00254{bottom:516.599467pt;}
.y2c_c00254{bottom:517.617307pt;}
.y2b_c00254{bottom:542.900587pt;}
.yf_c00254{bottom:544.199467pt;}
.ye_c00254{bottom:571.799467pt;}
.y2a_c00254{bottom:593.467147pt;}
.y29_c00254{bottom:618.823627pt;}
.yd_c00254{bottom:626.839467pt;}
.y28_c00254{bottom:644.106907pt;}
.y27_c00254{bottom:669.390187pt;}
.yc_c00254{bottom:682.199467pt;}
.y26_c00254{bottom:694.673467pt;}
.yb_c00254{bottom:709.719467pt;}
.ya_c00254{bottom:737.319467pt;}
.y25_c00254{bottom:747.553147pt;}
.y24_c00254{bottom:772.909627pt;}
.y9_c00254{bottom:792.519467pt;}
.y23_c00254{bottom:798.192907pt;}
.y8_c00254{bottom:820.119467pt;}
.y22_c00254{bottom:823.476187pt;}
.y21_c00254{bottom:848.759467pt;}
.y7_c00254{bottom:875.319467pt;}
.y6_c00254{bottom:902.919467pt;}
.y5_c00254{bottom:930.519467pt;}
.y4_c00254{bottom:958.119467pt;}
.y20_c00254{bottom:985.719467pt;}
.y1e_c00254{bottom:1013.159467pt;}
.y3_c00254{bottom:1013.159600pt;}
.y1f_c00254{bottom:1013.319467pt;}
.y1d_c00254{bottom:1060.599467pt;}
.y2_c00254{bottom:1060.599600pt;}
.h8_c00254{height:28.501875pt;}
.h9_c00254{height:44.072344pt;}
.h2_c00254{height:44.800000pt;}
.h7_c00254{height:48.294844pt;}
.h5_c00254{height:63.479040pt;}
.h6_c00254{height:67.157547pt;}
.h3_c00254{height:68.288000pt;}
.h4_c00254{height:69.376000pt;}
.h0_c00254{height:1122.520000pt;}
.h1_c00254{height:1122.666667pt;}
.w2_c00254{width:0.000000pt;}
.w3_c00254{width:0.058667pt;}
.w0_c00254{width:793.701333pt;}
.w1_c00254{width:794.000000pt;}
.x1_c00254{left:-745.700800pt;}
.x2_c00254{left:-680.260800pt;}
.x5_c00254{left:-661.300800pt;}
.x3_c00254{left:-651.860800pt;}
.x4_c00254{left:-633.060800pt;}
.x0_c00254{left:0.000000pt;}
.x9_c00254{left:113.440000pt;}
.xa_c00254{left:132.400000pt;}
.x8_c00254{left:141.840000pt;}
.x7_c00254{left:604.400000pt;}
.x6_c00254{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00255;src:url('chunks/assets/font_ee396d4741c20c6dce31de5a.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00255;src:url('chunks/assets/font_4495955e3c14fecf1d880f4a.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00255;src:url('chunks/assets/font_f072a95f2d7379249c10c9f9.woff2')format("woff");}.ff4_c00255{font-family:ff4_c00255;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00255;src:url('chunks/assets/font_a37e0c9e4d7f0aafce78da18.woff2')format("woff");}.ff5_c00255{font-family:ff5_c00255;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls6_c00255{letter-spacing:-0.072000px;}
.ls7_c00255{letter-spacing:-0.065880px;}
.ls5_c00255{letter-spacing:0.000000px;}
.ls8_c00255{letter-spacing:0.065880px;}
.ls0_c00255{letter-spacing:0.072000px;}
.ls4_c00255{letter-spacing:0.120240px;}
.ls3_c00255{letter-spacing:0.144000px;}
.ls2_c00255{letter-spacing:0.197640px;}
.ls1_c00255{letter-spacing:41.054400px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00255{word-spacing:-18.000000px;}
.ws2_c00255{word-spacing:-13.707360px;}
.ws18_c00255{word-spacing:-1.803600px;}
.ws17_c00255{word-spacing:-1.442880px;}
.wsc_c00255{word-spacing:-0.432000px;}
.ws1_c00255{word-spacing:-0.144000px;}
.ws11_c00255{word-spacing:-0.131760px;}
.ws4_c00255{word-spacing:-0.072000px;}
.ws3_c00255{word-spacing:0.000000px;}
.ws12_c00255{word-spacing:0.072000px;}
.ws7_c00255{word-spacing:4.248000px;}
.ws6_c00255{word-spacing:4.320000px;}
.ws5_c00255{word-spacing:4.464000px;}
.ws16_c00255{word-spacing:6.120000px;}
.ws15_c00255{word-spacing:6.408000px;}
.wsb_c00255{word-spacing:6.768000px;}
.ws14_c00255{word-spacing:6.840000px;}
.ws10_c00255{word-spacing:7.378560px;}
.ws13_c00255{word-spacing:7.560000px;}
.wsd_c00255{word-spacing:12.121920px;}
.ws9_c00255{word-spacing:13.248000px;}
.wsa_c00255{word-spacing:13.320000px;}
.ws8_c00255{word-spacing:23.040000px;}
.wse_c00255{word-spacing:26.154360px;}
.wsf_c00255{word-spacing:26.417880px;}
._0_c00255{margin-left:-1.094400px;}
._2_c00255{width:1.008000px;}
._5_c00255{width:6.652800px;}
._4_c00255{width:7.704000px;}
._1_c00255{width:13.320000px;}
._3_c00255{width:41.782680px;}
.fc1_c00255{color:rgb(0,0,0);}
.fc0_c00255{color:rgb(35,31,32);}
.fs2_c00255{font-size:60.120000px;}
.fs1_c00255{font-size:65.880000px;}
.fs0_c00255{font-size:72.000000px;}
.y0_c00255{bottom:0.000000px;}
.y21_c00255{bottom:32.084850px;}
.y1_c00255{bottom:61.748550px;}
.y12_c00255{bottom:164.564400px;}
.y11_c00255{bottom:195.614400px;}
.y10_c00255{bottom:226.664400px;}
.yf_c00255{bottom:287.317560px;}
.ye_c00255{bottom:315.843600px;}
.yd_c00255{bottom:344.287290px;}
.yc_c00255{bottom:401.174670px;}
.yb_c00255{bottom:429.700710px;}
.ya_c00255{bottom:458.144400px;}
.y9_c00255{bottom:519.074400px;}
.y8_c00255{bottom:550.124400px;}
.y7_c00255{bottom:581.174400px;}
.y6_c00255{bottom:612.224400px;}
.y5_c00255{bottom:643.274400px;}
.y4_c00255{bottom:705.194400px;}
.y3_c00255{bottom:798.434400px;}
.y20_c00255{bottom:840.645000px;}
.y22_c00255{bottom:854.459700px;}
.y16_c00255{bottom:892.231620px;}
.y14_c00255{bottom:912.552180px;}
.y17_c00255{bottom:919.240530px;}
.y13_c00255{bottom:937.562100px;}
.y18_c00255{bottom:946.249440px;}
.y19_c00255{bottom:973.258350px;}
.y1a_c00255{bottom:1000.267260px;}
.y1b_c00255{bottom:1027.276170px;}
.y1c_c00255{bottom:1054.285080px;}
.y1d_c00255{bottom:1081.293990px;}
.y1e_c00255{bottom:1108.302900px;}
.y1f_c00255{bottom:1135.311810px;}
.y15_c00255{bottom:1137.596370px;}
.y2_c00255{bottom:1193.174400px;}
.h7_c00255{height:46.440000px;}
.h6_c00255{height:49.581387px;}
.h2_c00255{height:50.400000px;}
.h5_c00255{height:71.413920px;}
.h3_c00255{height:76.824000px;}
.h4_c00255{height:78.048000px;}
.h0_c00255{height:1262.835000px;}
.h1_c00255{height:1263.000000px;}
.w4_c00255{width:136.530000px;}
.w3_c00255{width:170.280000px;}
.w2_c00255{width:187.020000px;}
.w0_c00255{width:892.914000px;}
.w1_c00255{width:893.250000px;}
.x0_c00255{left:0.000000px;}
.xc_c00255{left:9.028050px;}
.xe_c00255{left:18.324900px;}
.x1_c00255{left:54.000000px;}
.x2_c00255{left:127.620000px;}
.xa_c00255{left:137.232870px;}
.x9_c00255{left:144.807990px;}
.x4_c00255{left:148.950000px;}
.x5_c00255{left:153.083970px;}
.x3_c00255{left:159.570000px;}
.xb_c00255{left:177.480000px;}
.x6_c00255{left:257.563050px;}
.xd_c00255{left:356.940000px;}
.xf_c00255{left:404.424900px;}
.x7_c00255{left:438.223650px;}
.x10_c00255{left:544.950000px;}
.x8_c00255{left:596.023620px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls6_c00255{letter-spacing:-0.064000pt;}
.ls7_c00255{letter-spacing:-0.058560pt;}
.ls5_c00255{letter-spacing:0.000000pt;}
.ls8_c00255{letter-spacing:0.058560pt;}
.ls0_c00255{letter-spacing:0.064000pt;}
.ls4_c00255{letter-spacing:0.106880pt;}
.ls3_c00255{letter-spacing:0.128000pt;}
.ls2_c00255{letter-spacing:0.175680pt;}
.ls1_c00255{letter-spacing:36.492800pt;}
.ws0_c00255{word-spacing:-16.000000pt;}
.ws2_c00255{word-spacing:-12.184320pt;}
.ws18_c00255{word-spacing:-1.603200pt;}
.ws17_c00255{word-spacing:-1.282560pt;}
.wsc_c00255{word-spacing:-0.384000pt;}
.ws1_c00255{word-spacing:-0.128000pt;}
.ws11_c00255{word-spacing:-0.117120pt;}
.ws4_c00255{word-spacing:-0.064000pt;}
.ws3_c00255{word-spacing:0.000000pt;}
.ws12_c00255{word-spacing:0.064000pt;}
.ws7_c00255{word-spacing:3.776000pt;}
.ws6_c00255{word-spacing:3.840000pt;}
.ws5_c00255{word-spacing:3.968000pt;}
.ws16_c00255{word-spacing:5.440000pt;}
.ws15_c00255{word-spacing:5.696000pt;}
.wsb_c00255{word-spacing:6.016000pt;}
.ws14_c00255{word-spacing:6.080000pt;}
.ws10_c00255{word-spacing:6.558720pt;}
.ws13_c00255{word-spacing:6.720000pt;}
.wsd_c00255{word-spacing:10.775040pt;}
.ws9_c00255{word-spacing:11.776000pt;}
.wsa_c00255{word-spacing:11.840000pt;}
.ws8_c00255{word-spacing:20.480000pt;}
.wse_c00255{word-spacing:23.248320pt;}
.wsf_c00255{word-spacing:23.482560pt;}
._0_c00255{margin-left:-0.972800pt;}
._2_c00255{width:0.896000pt;}
._5_c00255{width:5.913600pt;}
._4_c00255{width:6.848000pt;}
._1_c00255{width:11.840000pt;}
._3_c00255{width:37.140160pt;}
.fs2_c00255{font-size:53.440000pt;}
.fs1_c00255{font-size:58.560000pt;}
.fs0_c00255{font-size:64.000000pt;}
.y0_c00255{bottom:0.000000pt;}
.y21_c00255{bottom:28.519867pt;}
.y1_c00255{bottom:54.887600pt;}
.y12_c00255{bottom:146.279467pt;}
.y11_c00255{bottom:173.879467pt;}
.y10_c00255{bottom:201.479467pt;}
.yf_c00255{bottom:255.393387pt;}
.ye_c00255{bottom:280.749867pt;}
.yd_c00255{bottom:306.033147pt;}
.yc_c00255{bottom:356.599707pt;}
.yb_c00255{bottom:381.956187pt;}
.ya_c00255{bottom:407.239467pt;}
.y9_c00255{bottom:461.399467pt;}
.y8_c00255{bottom:488.999467pt;}
.y7_c00255{bottom:516.599467pt;}
.y6_c00255{bottom:544.199467pt;}
.y5_c00255{bottom:571.799467pt;}
.y4_c00255{bottom:626.839467pt;}
.y3_c00255{bottom:709.719467pt;}
.y20_c00255{bottom:747.240000pt;}
.y22_c00255{bottom:759.519733pt;}
.y16_c00255{bottom:793.094773pt;}
.y14_c00255{bottom:811.157493pt;}
.y17_c00255{bottom:817.102693pt;}
.y13_c00255{bottom:833.388533pt;}
.y18_c00255{bottom:841.110613pt;}
.y19_c00255{bottom:865.118533pt;}
.y1a_c00255{bottom:889.126453pt;}
.y1b_c00255{bottom:913.134373pt;}
.y1c_c00255{bottom:937.142293pt;}
.y1d_c00255{bottom:961.150213pt;}
.y1e_c00255{bottom:985.158133pt;}
.y1f_c00255{bottom:1009.166053pt;}
.y15_c00255{bottom:1011.196773pt;}
.y2_c00255{bottom:1060.599467pt;}
.h7_c00255{height:41.280000pt;}
.h6_c00255{height:44.072344pt;}
.h2_c00255{height:44.800000pt;}
.h5_c00255{height:63.479040pt;}
.h3_c00255{height:68.288000pt;}
.h4_c00255{height:69.376000pt;}
.h0_c00255{height:1122.520000pt;}
.h1_c00255{height:1122.666667pt;}
.w4_c00255{width:121.360000pt;}
.w3_c00255{width:151.360000pt;}
.w2_c00255{width:166.240000pt;}
.w0_c00255{width:793.701333pt;}
.w1_c00255{width:794.000000pt;}
.x0_c00255{left:0.000000pt;}
.xc_c00255{left:8.024933pt;}
.xe_c00255{left:16.288800pt;}
.x1_c00255{left:48.000000pt;}
.x2_c00255{left:113.440000pt;}
.xa_c00255{left:121.984773pt;}
.x9_c00255{left:128.718213pt;}
.x4_c00255{left:132.400000pt;}
.x5_c00255{left:136.074640pt;}
.x3_c00255{left:141.840000pt;}
.xb_c00255{left:157.760000pt;}
.x6_c00255{left:228.944933pt;}
.xd_c00255{left:317.280000pt;}
.xf_c00255{left:359.488800pt;}
.x7_c00255{left:389.532133pt;}
.x10_c00255{left:484.400000pt;}
.x8_c00255{left:529.798773pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00256;src:url('chunks/assets/font_f252be40633a3490b4da1623.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00256;src:url('chunks/assets/font_777000226db61712be9aa0a0.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00256;src:url('chunks/assets/font_e76bc17c4fb0c7ea6727ae11.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00256;src:url('chunks/assets/font_f077cbfdae0e2cbbc2c6a938.woff2')format("woff");}.ff5_c00256{font-family:ff5_c00256;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00256;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00256{font-family:ff6_c00256;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00256;src:url('chunks/assets/font_acf1cca9dfafd8ce2bcc1516.woff2')format("woff");}.ff7_c00256{font-family:ff7_c00256;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00256;src:url('chunks/assets/font_e345b2faa3fd1625d969f818.woff2')format("woff");}.ff8_c00256{font-family:ff8_c00256;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00256;src:url('chunks/assets/font_9b4853374db7226247154aba.woff2')format("woff");}.ff9_c00256{font-family:ff9_c00256;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00256;src:url('chunks/assets/font_c98e5e968e5b3869ab81d373.woff2')format("woff");}.ffa_c00256{font-family:ffa_c00256;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.lsc_c00256{letter-spacing:-0.288000px;}
.lsa_c00256{letter-spacing:-0.072000px;}
.lsb_c00256{letter-spacing:-0.065880px;}
.ls9_c00256{letter-spacing:0.000000px;}
.ls6_c00256{letter-spacing:0.065880px;}
.ls0_c00256{letter-spacing:0.072000px;}
.ls4_c00256{letter-spacing:0.120240px;}
.ls3_c00256{letter-spacing:0.144000px;}
.ls2_c00256{letter-spacing:0.197640px;}
.ls5_c00256{letter-spacing:16.404120px;}
.ls8_c00256{letter-spacing:18.734400px;}
.ls7_c00256{letter-spacing:19.080000px;}
.ls1_c00256{letter-spacing:41.054400px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00256{word-spacing:-18.000000px;}
.ws3_c00256{word-spacing:-16.667640px;}
.ws5_c00256{word-spacing:-16.535880px;}
.ws4_c00256{word-spacing:-16.470000px;}
.ws2_c00256{word-spacing:-13.707360px;}
.ws1d_c00256{word-spacing:-1.803600px;}
.ws1c_c00256{word-spacing:-1.442880px;}
.ws11_c00256{word-spacing:-0.432000px;}
.ws1_c00256{word-spacing:-0.144000px;}
.ws16_c00256{word-spacing:-0.131760px;}
.ws9_c00256{word-spacing:-0.072000px;}
.ws8_c00256{word-spacing:0.000000px;}
.ws24_c00256{word-spacing:0.065880px;}
.ws17_c00256{word-spacing:0.072000px;}
.ws7_c00256{word-spacing:0.131760px;}
.ws1f_c00256{word-spacing:0.288000px;}
.ws30_c00256{word-spacing:0.576000px;}
.ws2e_c00256{word-spacing:0.648000px;}
.ws2f_c00256{word-spacing:0.720000px;}
.ws26_c00256{word-spacing:0.988200px;}
.ws2d_c00256{word-spacing:1.080000px;}
.ws32_c00256{word-spacing:1.251720px;}
.wsc_c00256{word-spacing:4.248000px;}
.wsb_c00256{word-spacing:4.320000px;}
.wsa_c00256{word-spacing:4.464000px;}
.ws1b_c00256{word-spacing:6.120000px;}
.ws1a_c00256{word-spacing:6.408000px;}
.ws27_c00256{word-spacing:6.480000px;}
.ws10_c00256{word-spacing:6.768000px;}
.ws19_c00256{word-spacing:6.840000px;}
.ws15_c00256{word-spacing:7.378560px;}
.ws18_c00256{word-spacing:7.560000px;}
.ws20_c00256{word-spacing:8.136000px;}
.ws1e_c00256{word-spacing:8.496000px;}
.ws2b_c00256{word-spacing:8.568000px;}
.ws2a_c00256{word-spacing:8.640000px;}
.ws29_c00256{word-spacing:11.448000px;}
.ws25_c00256{word-spacing:11.792520px;}
.ws12_c00256{word-spacing:12.121920px;}
.wse_c00256{word-spacing:13.248000px;}
.wsf_c00256{word-spacing:13.320000px;}
.ws6_c00256{word-spacing:13.968000px;}
.ws28_c00256{word-spacing:14.328000px;}
.ws31_c00256{word-spacing:14.400000px;}
.ws23_c00256{word-spacing:16.470000px;}
.ws22_c00256{word-spacing:16.733520px;}
.ws2c_c00256{word-spacing:16.848000px;}
.ws21_c00256{word-spacing:17.524080px;}
.wsd_c00256{word-spacing:23.040000px;}
.ws13_c00256{word-spacing:26.154360px;}
.ws14_c00256{word-spacing:26.417880px;}
._0_c00256{margin-left:-1.094400px;}
._2_c00256{width:1.008000px;}
._5_c00256{width:6.652800px;}
._4_c00256{width:7.704000px;}
._6_c00256{width:8.827200px;}
._1_c00256{width:13.320000px;}
._8_c00256{width:16.934400px;}
._7_c00256{width:32.256000px;}
._3_c00256{width:41.782680px;}
.fc2_c00256{color:transparent;}
.fc1_c00256{color:rgb(0,0,0);}
.fc0_c00256{color:rgb(35,31,32);}
.fs2_c00256{font-size:60.120000px;}
.fs1_c00256{font-size:65.880000px;}
.fs0_c00256{font-size:72.000000px;}
.y0_c00256{bottom:0.000000px;}
.y21_c00256{bottom:32.084850px;}
.y1_c00256{bottom:61.748550px;}
.y12_c00256{bottom:164.564400px;}
.y3e_c00256{bottom:171.577020px;}
.y11_c00256{bottom:195.614400px;}
.y3d_c00256{bottom:200.020710px;}
.y10_c00256{bottom:226.664400px;}
.y3c_c00256{bottom:228.464400px;}
.yf_c00256{bottom:287.317560px;}
.y3b_c00256{bottom:289.394400px;}
.ye_c00256{bottom:315.843600px;}
.y3a_c00256{bottom:320.444400px;}
.yd_c00256{bottom:344.287290px;}
.y39_c00256{bottom:351.494400px;}
.y38_c00256{bottom:382.544400px;}
.yc_c00256{bottom:401.174670px;}
.y37_c00256{bottom:413.594400px;}
.yb_c00256{bottom:429.700710px;}
.y36_c00256{bottom:444.644400px;}
.ya_c00256{bottom:458.144400px;}
.y35_c00256{bottom:475.694400px;}
.y9_c00256{bottom:519.074400px;}
.y34_c00256{bottom:537.704400px;}
.y8_c00256{bottom:550.124400px;}
.y33_c00256{bottom:568.754400px;}
.y7_c00256{bottom:581.174400px;}
.y32_c00256{bottom:607.904400px;}
.y6_c00256{bottom:612.224400px;}
.y31_c00256{bottom:638.054250px;}
.y5_c00256{bottom:643.274400px;}
.y30_c00256{bottom:669.104250px;}
.y2f_c00256{bottom:700.154250px;}
.y4_c00256{bottom:705.194400px;}
.y2e_c00256{bottom:731.204250px;}
.y2d_c00256{bottom:791.846490px;}
.y3_c00256{bottom:798.434400px;}
.y2c_c00256{bottom:820.290180px;}
.y20_c00256{bottom:840.645000px;}
.y2b_c00256{bottom:848.816220px;}
.y22_c00256{bottom:854.459700px;}
.y16_c00256{bottom:892.231620px;}
.y2a_c00256{bottom:905.703600px;}
.y14_c00256{bottom:912.552180px;}
.y17_c00256{bottom:919.240530px;}
.y29_c00256{bottom:934.147290px;}
.y13_c00256{bottom:937.562100px;}
.y18_c00256{bottom:946.249440px;}
.y28_c00256{bottom:962.673330px;}
.y19_c00256{bottom:973.258350px;}
.y27_c00256{bottom:991.117020px;}
.y1a_c00256{bottom:1000.267260px;}
.y26_c00256{bottom:1019.560710px;}
.y1b_c00256{bottom:1027.276170px;}
.y25_c00256{bottom:1048.004400px;}
.y1c_c00256{bottom:1054.285080px;}
.y1d_c00256{bottom:1081.293990px;}
.y1e_c00256{bottom:1108.302900px;}
.y24_c00256{bottom:1108.934400px;}
.y1f_c00256{bottom:1135.311810px;}
.y15_c00256{bottom:1137.596370px;}
.y23_c00256{bottom:1139.984400px;}
.y2_c00256{bottom:1193.174400px;}
.h7_c00256{height:46.440000px;}
.h6_c00256{height:49.581387px;}
.h2_c00256{height:50.400000px;}
.h8_c00256{height:54.331699px;}
.h5_c00256{height:71.413920px;}
.h3_c00256{height:76.824000px;}
.h4_c00256{height:78.048000px;}
.h0_c00256{height:1262.835000px;}
.h1_c00256{height:1263.000000px;}
.w3_c00256{width:-528.414000px;}
.w4_c00256{width:-365.694000px;}
.w5_c00256{width:-211.434000px;}
.w2_c00256{width:0.000000px;}
.w6_c00256{width:0.066000px;}
.w0_c00256{width:892.914000px;}
.w1_c00256{width:893.250000px;}
.x1_c00256{left:-838.913400px;}
.x2_c00256{left:-765.293400px;}
.xa_c00256{left:-755.680680px;}
.x9_c00256{left:-748.105560px;}
.x4_c00256{left:-743.963400px;}
.x5_c00256{left:-739.829430px;}
.x3_c00256{left:-733.343400px;}
.xb_c00256{left:-706.405500px;}
.x6_c00256{left:-635.350500px;}
.xc_c00256{left:-517.648500px;}
.xd_c00256{left:-488.488500px;}
.x7_c00256{left:-454.689900px;}
.xe_c00256{left:-338.874150px;}
.x8_c00256{left:-296.889930px;}
.x0_c00256{left:0.000000px;}
.x11_c00256{left:127.620000px;}
.x12_c00256{left:148.950000px;}
.x13_c00256{left:159.570000px;}
.x10_c00256{left:679.950000px;}
.xf_c00256{left:804.366150px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.lsc_c00256{letter-spacing:-0.256000pt;}
.lsa_c00256{letter-spacing:-0.064000pt;}
.lsb_c00256{letter-spacing:-0.058560pt;}
.ls9_c00256{letter-spacing:0.000000pt;}
.ls6_c00256{letter-spacing:0.058560pt;}
.ls0_c00256{letter-spacing:0.064000pt;}
.ls4_c00256{letter-spacing:0.106880pt;}
.ls3_c00256{letter-spacing:0.128000pt;}
.ls2_c00256{letter-spacing:0.175680pt;}
.ls5_c00256{letter-spacing:14.581440pt;}
.ls8_c00256{letter-spacing:16.652800pt;}
.ls7_c00256{letter-spacing:16.960000pt;}
.ls1_c00256{letter-spacing:36.492800pt;}
.ws0_c00256{word-spacing:-16.000000pt;}
.ws3_c00256{word-spacing:-14.815680pt;}
.ws5_c00256{word-spacing:-14.698560pt;}
.ws4_c00256{word-spacing:-14.640000pt;}
.ws2_c00256{word-spacing:-12.184320pt;}
.ws1d_c00256{word-spacing:-1.603200pt;}
.ws1c_c00256{word-spacing:-1.282560pt;}
.ws11_c00256{word-spacing:-0.384000pt;}
.ws1_c00256{word-spacing:-0.128000pt;}
.ws16_c00256{word-spacing:-0.117120pt;}
.ws9_c00256{word-spacing:-0.064000pt;}
.ws8_c00256{word-spacing:0.000000pt;}
.ws24_c00256{word-spacing:0.058560pt;}
.ws17_c00256{word-spacing:0.064000pt;}
.ws7_c00256{word-spacing:0.117120pt;}
.ws1f_c00256{word-spacing:0.256000pt;}
.ws30_c00256{word-spacing:0.512000pt;}
.ws2e_c00256{word-spacing:0.576000pt;}
.ws2f_c00256{word-spacing:0.640000pt;}
.ws26_c00256{word-spacing:0.878400pt;}
.ws2d_c00256{word-spacing:0.960000pt;}
.ws32_c00256{word-spacing:1.112640pt;}
.wsc_c00256{word-spacing:3.776000pt;}
.wsb_c00256{word-spacing:3.840000pt;}
.wsa_c00256{word-spacing:3.968000pt;}
.ws1b_c00256{word-spacing:5.440000pt;}
.ws1a_c00256{word-spacing:5.696000pt;}
.ws27_c00256{word-spacing:5.760000pt;}
.ws10_c00256{word-spacing:6.016000pt;}
.ws19_c00256{word-spacing:6.080000pt;}
.ws15_c00256{word-spacing:6.558720pt;}
.ws18_c00256{word-spacing:6.720000pt;}
.ws20_c00256{word-spacing:7.232000pt;}
.ws1e_c00256{word-spacing:7.552000pt;}
.ws2b_c00256{word-spacing:7.616000pt;}
.ws2a_c00256{word-spacing:7.680000pt;}
.ws29_c00256{word-spacing:10.176000pt;}
.ws25_c00256{word-spacing:10.482240pt;}
.ws12_c00256{word-spacing:10.775040pt;}
.wse_c00256{word-spacing:11.776000pt;}
.wsf_c00256{word-spacing:11.840000pt;}
.ws6_c00256{word-spacing:12.416000pt;}
.ws28_c00256{word-spacing:12.736000pt;}
.ws31_c00256{word-spacing:12.800000pt;}
.ws23_c00256{word-spacing:14.640000pt;}
.ws22_c00256{word-spacing:14.874240pt;}
.ws2c_c00256{word-spacing:14.976000pt;}
.ws21_c00256{word-spacing:15.576960pt;}
.wsd_c00256{word-spacing:20.480000pt;}
.ws13_c00256{word-spacing:23.248320pt;}
.ws14_c00256{word-spacing:23.482560pt;}
._0_c00256{margin-left:-0.972800pt;}
._2_c00256{width:0.896000pt;}
._5_c00256{width:5.913600pt;}
._4_c00256{width:6.848000pt;}
._6_c00256{width:7.846400pt;}
._1_c00256{width:11.840000pt;}
._8_c00256{width:15.052800pt;}
._7_c00256{width:28.672000pt;}
._3_c00256{width:37.140160pt;}
.fs2_c00256{font-size:53.440000pt;}
.fs1_c00256{font-size:58.560000pt;}
.fs0_c00256{font-size:64.000000pt;}
.y0_c00256{bottom:0.000000pt;}
.y21_c00256{bottom:28.519867pt;}
.y1_c00256{bottom:54.887600pt;}
.y12_c00256{bottom:146.279467pt;}
.y3e_c00256{bottom:152.512907pt;}
.y11_c00256{bottom:173.879467pt;}
.y3d_c00256{bottom:177.796187pt;}
.y10_c00256{bottom:201.479467pt;}
.y3c_c00256{bottom:203.079467pt;}
.yf_c00256{bottom:255.393387pt;}
.y3b_c00256{bottom:257.239467pt;}
.ye_c00256{bottom:280.749867pt;}
.y3a_c00256{bottom:284.839467pt;}
.yd_c00256{bottom:306.033147pt;}
.y39_c00256{bottom:312.439467pt;}
.y38_c00256{bottom:340.039467pt;}
.yc_c00256{bottom:356.599707pt;}
.y37_c00256{bottom:367.639467pt;}
.yb_c00256{bottom:381.956187pt;}
.y36_c00256{bottom:395.239467pt;}
.ya_c00256{bottom:407.239467pt;}
.y35_c00256{bottom:422.839467pt;}
.y9_c00256{bottom:461.399467pt;}
.y34_c00256{bottom:477.959467pt;}
.y8_c00256{bottom:488.999467pt;}
.y33_c00256{bottom:505.559467pt;}
.y7_c00256{bottom:516.599467pt;}
.y32_c00256{bottom:540.359467pt;}
.y6_c00256{bottom:544.199467pt;}
.y31_c00256{bottom:567.159333pt;}
.y5_c00256{bottom:571.799467pt;}
.y30_c00256{bottom:594.759333pt;}
.y2f_c00256{bottom:622.359333pt;}
.y4_c00256{bottom:626.839467pt;}
.y2e_c00256{bottom:649.959333pt;}
.y2d_c00256{bottom:703.863547pt;}
.y3_c00256{bottom:709.719467pt;}
.y2c_c00256{bottom:729.146827pt;}
.y20_c00256{bottom:747.240000pt;}
.y2b_c00256{bottom:754.503307pt;}
.y22_c00256{bottom:759.519733pt;}
.y16_c00256{bottom:793.094773pt;}
.y2a_c00256{bottom:805.069867pt;}
.y14_c00256{bottom:811.157493pt;}
.y17_c00256{bottom:817.102693pt;}
.y29_c00256{bottom:830.353147pt;}
.y13_c00256{bottom:833.388533pt;}
.y18_c00256{bottom:841.110613pt;}
.y28_c00256{bottom:855.709627pt;}
.y19_c00256{bottom:865.118533pt;}
.y27_c00256{bottom:880.992907pt;}
.y1a_c00256{bottom:889.126453pt;}
.y26_c00256{bottom:906.276187pt;}
.y1b_c00256{bottom:913.134373pt;}
.y25_c00256{bottom:931.559467pt;}
.y1c_c00256{bottom:937.142293pt;}
.y1d_c00256{bottom:961.150213pt;}
.y1e_c00256{bottom:985.158133pt;}
.y24_c00256{bottom:985.719467pt;}
.y1f_c00256{bottom:1009.166053pt;}
.y15_c00256{bottom:1011.196773pt;}
.y23_c00256{bottom:1013.319467pt;}
.y2_c00256{bottom:1060.599467pt;}
.h7_c00256{height:41.280000pt;}
.h6_c00256{height:44.072344pt;}
.h2_c00256{height:44.800000pt;}
.h8_c00256{height:48.294844pt;}
.h5_c00256{height:63.479040pt;}
.h3_c00256{height:68.288000pt;}
.h4_c00256{height:69.376000pt;}
.h0_c00256{height:1122.520000pt;}
.h1_c00256{height:1122.666667pt;}
.w3_c00256{width:-469.701333pt;}
.w4_c00256{width:-325.061333pt;}
.w5_c00256{width:-187.941333pt;}
.w2_c00256{width:0.000000pt;}
.w6_c00256{width:0.058667pt;}
.w0_c00256{width:793.701333pt;}
.w1_c00256{width:794.000000pt;}
.x1_c00256{left:-745.700800pt;}
.x2_c00256{left:-680.260800pt;}
.xa_c00256{left:-671.716160pt;}
.x9_c00256{left:-664.982720pt;}
.x4_c00256{left:-661.300800pt;}
.x5_c00256{left:-657.626160pt;}
.x3_c00256{left:-651.860800pt;}
.xb_c00256{left:-627.916000pt;}
.x6_c00256{left:-564.756000pt;}
.xc_c00256{left:-460.132000pt;}
.xd_c00256{left:-434.212000pt;}
.x7_c00256{left:-404.168800pt;}
.xe_c00256{left:-301.221467pt;}
.x8_c00256{left:-263.902160pt;}
.x0_c00256{left:0.000000pt;}
.x11_c00256{left:113.440000pt;}
.x12_c00256{left:132.400000pt;}
.x13_c00256{left:141.840000pt;}
.x10_c00256{left:604.400000pt;}
.xf_c00256{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00257;src:url('chunks/assets/font_0e8ca37898a53abd8ecd0fdb.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00257;src:url('chunks/assets/font_d5b3cab7abe7e7f6bc8243e9.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls8_c00257{letter-spacing:-0.360000px;}
.lsa_c00257{letter-spacing:-0.329400px;}
.ls7_c00257{letter-spacing:-0.216000px;}
.lsb_c00257{letter-spacing:-0.197640px;}
.lsc_c00257{letter-spacing:-0.072000px;}
.ls6_c00257{letter-spacing:-0.065880px;}
.ls5_c00257{letter-spacing:0.000000px;}
.ls9_c00257{letter-spacing:0.065880px;}
.ls1_c00257{letter-spacing:0.072000px;}
.ls2_c00257{letter-spacing:0.144000px;}
.ls0_c00257{letter-spacing:0.197640px;}
.ls4_c00257{letter-spacing:16.470000px;}
.ls3_c00257{letter-spacing:16.601760px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00257{word-spacing:-18.000000px;}
.wsb_c00257{word-spacing:-16.667640px;}
.ws9_c00257{word-spacing:-16.535880px;}
.ws2_c00257{word-spacing:-16.470000px;}
.ws1_c00257{word-spacing:-16.404120px;}
.ws4_c00257{word-spacing:-16.272360px;}
.ws16_c00257{word-spacing:-0.144000px;}
.ws10_c00257{word-spacing:-0.131760px;}
.ws13_c00257{word-spacing:-0.072000px;}
.wse_c00257{word-spacing:0.000000px;}
.wsa_c00257{word-spacing:0.065880px;}
.ws25_c00257{word-spacing:0.072000px;}
.ws6_c00257{word-spacing:0.131760px;}
.ws15_c00257{word-spacing:0.216000px;}
.ws1d_c00257{word-spacing:0.329400px;}
.ws1c_c00257{word-spacing:0.360000px;}
.wsf_c00257{word-spacing:2.437560px;}
.ws7_c00257{word-spacing:2.707668px;}
.ws1e_c00257{word-spacing:2.766960px;}
.ws21_c00257{word-spacing:2.808000px;}
.ws20_c00257{word-spacing:2.880000px;}
.ws8_c00257{word-spacing:2.898720px;}
.wsd_c00257{word-spacing:3.024000px;}
.ws1f_c00257{word-spacing:3.030480px;}
.ws27_c00257{word-spacing:3.168000px;}
.ws18_c00257{word-spacing:4.248000px;}
.ws17_c00257{word-spacing:4.320000px;}
.ws24_c00257{word-spacing:5.760000px;}
.ws14_c00257{word-spacing:7.920000px;}
.ws26_c00257{word-spacing:10.080000px;}
.ws29_c00257{word-spacing:10.224000px;}
.ws28_c00257{word-spacing:10.440000px;}
.ws22_c00257{word-spacing:10.656000px;}
.ws23_c00257{word-spacing:10.800000px;}
.ws1b_c00257{word-spacing:11.160000px;}
.ws5_c00257{word-spacing:16.601760px;}
.wsc_c00257{word-spacing:16.674228px;}
.ws1a_c00257{word-spacing:21.888000px;}
.ws19_c00257{word-spacing:21.960000px;}
.ws3_c00257{word-spacing:29.448000px;}
.ws11_c00257{word-spacing:29.808000px;}
.ws12_c00257{word-spacing:29.880000px;}
._0_c00257{margin-left:-1.067256px;}
._2_c00257{width:1.008000px;}
._4_c00257{width:2.952000px;}
._3_c00257{width:4.163256px;}
._1_c00257{width:7.128000px;}
._5_c00257{width:10.584000px;}
.fc1_c00257{color:rgb(0,0,0);}
.fc0_c00257{color:rgb(35,31,32);}
.fs1_c00257{font-size:65.880000px;}
.fs0_c00257{font-size:72.000000px;}
.y0_c00257{bottom:0.000000px;}
.y1_c00257{bottom:61.748550px;}
.y20_c00257{bottom:116.590710px;}
.y1f_c00257{bottom:145.034400px;}
.y1e_c00257{bottom:205.964400px;}
.y1d_c00257{bottom:237.014400px;}
.y1c_c00257{bottom:268.064400px;}
.y1b_c00257{bottom:299.114400px;}
.y1a_c00257{bottom:330.164400px;}
.y19_c00257{bottom:361.214400px;}
.y18_c00257{bottom:392.264400px;}
.y17_c00257{bottom:423.314400px;}
.y16_c00257{bottom:473.620440px;}
.y15_c00257{bottom:502.146480px;}
.y14_c00257{bottom:530.590170px;}
.y13_c00257{bottom:579.736650px;}
.y12_c00257{bottom:608.180340px;}
.y11_c00257{bottom:636.624030px;}
.y10_c00257{bottom:665.150070px;}
.yf_c00257{bottom:693.593760px;}
.ye_c00257{bottom:750.464670px;}
.yd_c00257{bottom:778.990710px;}
.yc_c00257{bottom:807.434400px;}
.yb_c00257{bottom:868.364250px;}
.ya_c00257{bottom:899.414250px;}
.y9_c00257{bottom:930.464250px;}
.y8_c00257{bottom:961.514250px;}
.y7_c00257{bottom:992.564250px;}
.y6_c00257{bottom:1023.614250px;}
.y5_c00257{bottom:1084.266870px;}
.y4_c00257{bottom:1112.710560px;}
.y3_c00257{bottom:1141.154250px;}
.y2_c00257{bottom:1193.174400px;}
.h2_c00257{height:50.400000px;}
.h4_c00257{height:71.413920px;}
.h3_c00257{height:76.824000px;}
.h5_c00257{height:78.048000px;}
.h0_c00257{height:1262.835000px;}
.h1_c00257{height:1263.000000px;}
.w0_c00257{width:892.914000px;}
.w1_c00257{width:893.250000px;}
.x0_c00257{left:0.000000px;}
.x1_c00257{left:54.000000px;}
.x2_c00257{left:127.620000px;}
.x3_c00257{left:148.950000px;}
.x4_c00257{left:159.570000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls8_c00257{letter-spacing:-0.320000pt;}
.lsa_c00257{letter-spacing:-0.292800pt;}
.ls7_c00257{letter-spacing:-0.192000pt;}
.lsb_c00257{letter-spacing:-0.175680pt;}
.lsc_c00257{letter-spacing:-0.064000pt;}
.ls6_c00257{letter-spacing:-0.058560pt;}
.ls5_c00257{letter-spacing:0.000000pt;}
.ls9_c00257{letter-spacing:0.058560pt;}
.ls1_c00257{letter-spacing:0.064000pt;}
.ls2_c00257{letter-spacing:0.128000pt;}
.ls0_c00257{letter-spacing:0.175680pt;}
.ls4_c00257{letter-spacing:14.640000pt;}
.ls3_c00257{letter-spacing:14.757120pt;}
.ws0_c00257{word-spacing:-16.000000pt;}
.wsb_c00257{word-spacing:-14.815680pt;}
.ws9_c00257{word-spacing:-14.698560pt;}
.ws2_c00257{word-spacing:-14.640000pt;}
.ws1_c00257{word-spacing:-14.581440pt;}
.ws4_c00257{word-spacing:-14.464320pt;}
.ws16_c00257{word-spacing:-0.128000pt;}
.ws10_c00257{word-spacing:-0.117120pt;}
.ws13_c00257{word-spacing:-0.064000pt;}
.wse_c00257{word-spacing:0.000000pt;}
.wsa_c00257{word-spacing:0.058560pt;}
.ws25_c00257{word-spacing:0.064000pt;}
.ws6_c00257{word-spacing:0.117120pt;}
.ws15_c00257{word-spacing:0.192000pt;}
.ws1d_c00257{word-spacing:0.292800pt;}
.ws1c_c00257{word-spacing:0.320000pt;}
.wsf_c00257{word-spacing:2.166720pt;}
.ws7_c00257{word-spacing:2.406816pt;}
.ws1e_c00257{word-spacing:2.459520pt;}
.ws21_c00257{word-spacing:2.496000pt;}
.ws20_c00257{word-spacing:2.560000pt;}
.ws8_c00257{word-spacing:2.576640pt;}
.wsd_c00257{word-spacing:2.688000pt;}
.ws1f_c00257{word-spacing:2.693760pt;}
.ws27_c00257{word-spacing:2.816000pt;}
.ws18_c00257{word-spacing:3.776000pt;}
.ws17_c00257{word-spacing:3.840000pt;}
.ws24_c00257{word-spacing:5.120000pt;}
.ws14_c00257{word-spacing:7.040000pt;}
.ws26_c00257{word-spacing:8.960000pt;}
.ws29_c00257{word-spacing:9.088000pt;}
.ws28_c00257{word-spacing:9.280000pt;}
.ws22_c00257{word-spacing:9.472000pt;}
.ws23_c00257{word-spacing:9.600000pt;}
.ws1b_c00257{word-spacing:9.920000pt;}
.ws5_c00257{word-spacing:14.757120pt;}
.wsc_c00257{word-spacing:14.821536pt;}
.ws1a_c00257{word-spacing:19.456000pt;}
.ws19_c00257{word-spacing:19.520000pt;}
.ws3_c00257{word-spacing:26.176000pt;}
.ws11_c00257{word-spacing:26.496000pt;}
.ws12_c00257{word-spacing:26.560000pt;}
._0_c00257{margin-left:-0.948672pt;}
._2_c00257{width:0.896000pt;}
._4_c00257{width:2.624000pt;}
._3_c00257{width:3.700672pt;}
._1_c00257{width:6.336000pt;}
._5_c00257{width:9.408000pt;}
.fs1_c00257{font-size:58.560000pt;}
.fs0_c00257{font-size:64.000000pt;}
.y0_c00257{bottom:0.000000pt;}
.y1_c00257{bottom:54.887600pt;}
.y20_c00257{bottom:103.636187pt;}
.y1f_c00257{bottom:128.919467pt;}
.y1e_c00257{bottom:183.079467pt;}
.y1d_c00257{bottom:210.679467pt;}
.y1c_c00257{bottom:238.279467pt;}
.y1b_c00257{bottom:265.879467pt;}
.y1a_c00257{bottom:293.479467pt;}
.y19_c00257{bottom:321.079467pt;}
.y18_c00257{bottom:348.679467pt;}
.y17_c00257{bottom:376.279467pt;}
.y16_c00257{bottom:420.995947pt;}
.y15_c00257{bottom:446.352427pt;}
.y14_c00257{bottom:471.635707pt;}
.y13_c00257{bottom:515.321467pt;}
.y12_c00257{bottom:540.604747pt;}
.y11_c00257{bottom:565.888027pt;}
.y10_c00257{bottom:591.244507pt;}
.yf_c00257{bottom:616.527787pt;}
.ye_c00257{bottom:667.079707pt;}
.yd_c00257{bottom:692.436187pt;}
.yc_c00257{bottom:717.719467pt;}
.yb_c00257{bottom:771.879333pt;}
.ya_c00257{bottom:799.479333pt;}
.y9_c00257{bottom:827.079333pt;}
.y8_c00257{bottom:854.679333pt;}
.y7_c00257{bottom:882.279333pt;}
.y6_c00257{bottom:909.879333pt;}
.y5_c00257{bottom:963.792773pt;}
.y4_c00257{bottom:989.076053pt;}
.y3_c00257{bottom:1014.359333pt;}
.y2_c00257{bottom:1060.599467pt;}
.h2_c00257{height:44.800000pt;}
.h4_c00257{height:63.479040pt;}
.h3_c00257{height:68.288000pt;}
.h5_c00257{height:69.376000pt;}
.h0_c00257{height:1122.520000pt;}
.h1_c00257{height:1122.666667pt;}
.w0_c00257{width:793.701333pt;}
.w1_c00257{width:794.000000pt;}
.x0_c00257{left:0.000000pt;}
.x1_c00257{left:48.000000pt;}
.x2_c00257{left:113.440000pt;}
.x3_c00257{left:132.400000pt;}
.x4_c00257{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00258;src:url('chunks/assets/font_b93f87c3719805b47e26714f.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00258;src:url('chunks/assets/font_50c0241702e3701bca0e4a7d.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00258;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00258{font-family:ff4_c00258;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00258;src:url('chunks/assets/font_3815cd3acbd383572688b200.woff2')format("woff");}.ff5_c00258{font-family:ff5_c00258;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00258;src:url('chunks/assets/font_59b472a8874045ef53c5c459.woff2')format("woff");}.ff6_c00258{font-family:ff6_c00258;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00258;src:url('chunks/assets/font_aba7f1daa03bf75fe8739d3b.woff2')format("woff");}.ff7_c00258{font-family:ff7_c00258;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00258;src:url('chunks/assets/font_1220db68b50b41068340746c.woff2')format("woff");}.ff8_c00258{font-family:ff8_c00258;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00258{vertical-align:-47.975760px;}
.v0_c00258{vertical-align:0.000000px;}
.lsf_c00258{letter-spacing:-0.360000px;}
.ls11_c00258{letter-spacing:-0.329400px;}
.ls14_c00258{letter-spacing:-0.263520px;}
.lse_c00258{letter-spacing:-0.216000px;}
.ls12_c00258{letter-spacing:-0.197640px;}
.ls15_c00258{letter-spacing:-0.144000px;}
.ls13_c00258{letter-spacing:-0.072000px;}
.lsd_c00258{letter-spacing:-0.065880px;}
.ls16_c00258{letter-spacing:-0.060120px;}
.lsc_c00258{letter-spacing:0.000000px;}
.ls10_c00258{letter-spacing:0.065880px;}
.ls1_c00258{letter-spacing:0.072000px;}
.ls9_c00258{letter-spacing:0.120240px;}
.ls2_c00258{letter-spacing:0.144000px;}
.lsb_c00258{letter-spacing:0.180360px;}
.ls0_c00258{letter-spacing:0.197640px;}
.ls4_c00258{letter-spacing:16.470000px;}
.ls3_c00258{letter-spacing:16.601760px;}
.ls7_c00258{letter-spacing:18.151200px;}
.ls8_c00258{letter-spacing:19.872000px;}
.ls5_c00258{letter-spacing:39.264480px;}
.ls6_c00258{letter-spacing:41.400000px;}
.lsa_c00258{letter-spacing:288.636120px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17_c00258{word-spacing:-18.144000px;}
.ws18_c00258{word-spacing:-18.072000px;}
.ws0_c00258{word-spacing:-18.000000px;}
.ws15_c00258{word-spacing:-17.928000px;}
.wsb_c00258{word-spacing:-16.667640px;}
.ws9_c00258{word-spacing:-16.535880px;}
.ws2_c00258{word-spacing:-16.470000px;}
.ws1_c00258{word-spacing:-16.404120px;}
.ws4_c00258{word-spacing:-16.272360px;}
.ws19_c00258{word-spacing:-13.707360px;}
.ws1a_c00258{word-spacing:-13.527000px;}
.ws46_c00258{word-spacing:-1.142280px;}
.ws44_c00258{word-spacing:-1.082160px;}
.ws43_c00258{word-spacing:-0.721440px;}
.ws45_c00258{word-spacing:-0.180360px;}
.ws14_c00258{word-spacing:-0.144000px;}
.ws1c_c00258{word-spacing:-0.131760px;}
.ws42_c00258{word-spacing:-0.120240px;}
.ws1f_c00258{word-spacing:-0.072000px;}
.wse_c00258{word-spacing:0.000000px;}
.wsa_c00258{word-spacing:0.065880px;}
.ws2d_c00258{word-spacing:0.072000px;}
.ws6_c00258{word-spacing:0.131760px;}
.ws21_c00258{word-spacing:0.216000px;}
.ws35_c00258{word-spacing:0.263520px;}
.ws13_c00258{word-spacing:0.288000px;}
.ws27_c00258{word-spacing:0.329400px;}
.ws26_c00258{word-spacing:0.360000px;}
.ws3d_c00258{word-spacing:1.008000px;}
.ws3f_c00258{word-spacing:1.296000px;}
.ws3e_c00258{word-spacing:1.728000px;}
.ws12_c00258{word-spacing:1.800000px;}
.ws40_c00258{word-spacing:2.088000px;}
.ws1b_c00258{word-spacing:2.437560px;}
.ws41_c00258{word-spacing:2.520000px;}
.ws7_c00258{word-spacing:2.707668px;}
.ws28_c00258{word-spacing:2.766960px;}
.ws10_c00258{word-spacing:2.808000px;}
.ws11_c00258{word-spacing:2.880000px;}
.ws8_c00258{word-spacing:2.898720px;}
.wsd_c00258{word-spacing:3.024000px;}
.ws29_c00258{word-spacing:3.030480px;}
.ws2f_c00258{word-spacing:3.168000px;}
.ws22_c00258{word-spacing:4.248000px;}
.ws16_c00258{word-spacing:4.320000px;}
.ws3b_c00258{word-spacing:5.184000px;}
.ws39_c00258{word-spacing:5.328000px;}
.ws3a_c00258{word-spacing:5.400000px;}
.ws2c_c00258{word-spacing:5.760000px;}
.ws20_c00258{word-spacing:7.920000px;}
.ws2e_c00258{word-spacing:10.080000px;}
.ws31_c00258{word-spacing:10.224000px;}
.ws30_c00258{word-spacing:10.440000px;}
.ws2a_c00258{word-spacing:10.656000px;}
.ws2b_c00258{word-spacing:10.800000px;}
.ws25_c00258{word-spacing:11.160000px;}
.ws38_c00258{word-spacing:14.112000px;}
.ws33_c00258{word-spacing:14.295960px;}
.ws37_c00258{word-spacing:14.400000px;}
.ws36_c00258{word-spacing:14.544000px;}
.ws32_c00258{word-spacing:14.559480px;}
.ws5_c00258{word-spacing:16.601760px;}
.wsc_c00258{word-spacing:16.674228px;}
.wsf_c00258{word-spacing:16.680816px;}
.ws24_c00258{word-spacing:21.888000px;}
.ws23_c00258{word-spacing:21.960000px;}
.ws34_c00258{word-spacing:22.596840px;}
.ws3c_c00258{word-spacing:23.400000px;}
.ws3_c00258{word-spacing:29.455200px;}
.ws1d_c00258{word-spacing:29.808000px;}
.ws1e_c00258{word-spacing:29.880000px;}
._0_c00258{margin-left:-1.067256px;}
._2_c00258{width:1.008000px;}
._4_c00258{width:2.952000px;}
._3_c00258{width:4.163256px;}
._1_c00258{width:7.128000px;}
._5_c00258{width:10.584000px;}
._6_c00258{width:23.688000px;}
.fc2_c00258{color:transparent;}
.fc1_c00258{color:rgb(0,0,0);}
.fc0_c00258{color:rgb(35,31,32);}
.fs2_c00258{font-size:60.120000px;}
.fs1_c00258{font-size:65.880000px;}
.fs0_c00258{font-size:72.000000px;}
.y0_c00258{bottom:0.000000px;}
.y3d_c00258{bottom:50.391600px;}
.y40_c00258{bottom:50.391900px;}
.y1_c00258{bottom:61.748550px;}
.y30_c00258{bottom:112.814400px;}
.y20_c00258{bottom:116.590710px;}
.y2f_c00258{bottom:143.864400px;}
.y1f_c00258{bottom:145.034400px;}
.y2e_c00258{bottom:174.914400px;}
.y1e_c00258{bottom:205.964400px;}
.y1d_c00258{bottom:237.014400px;}
.y1c_c00258{bottom:268.064400px;}
.y2d_c00258{bottom:288.584400px;}
.y1b_c00258{bottom:299.114400px;}
.y1a_c00258{bottom:330.164400px;}
.y2c_c00258{bottom:350.864400px;}
.y19_c00258{bottom:361.214400px;}
.y3c_c00258{bottom:385.155000px;}
.y18_c00258{bottom:392.264400px;}
.y3f_c00258{bottom:398.909940px;}
.y3e_c00258{bottom:417.276600px;}
.y17_c00258{bottom:423.314400px;}
.y35_c00258{bottom:455.047680px;}
.y16_c00258{bottom:473.620440px;}
.y36_c00258{bottom:493.900230px;}
.y15_c00258{bottom:502.146480px;}
.y14_c00258{bottom:530.590170px;}
.y37_c00258{bottom:532.752780px;}
.y33_c00258{bottom:571.319760px;}
.y38_c00258{bottom:571.605330px;}
.y13_c00258{bottom:579.736650px;}
.y12_c00258{bottom:608.180340px;}
.y39_c00258{bottom:610.457880px;}
.y32_c00258{bottom:619.295520px;}
.y11_c00258{bottom:636.624030px;}
.y31_c00258{bottom:643.283400px;}
.y3a_c00258{bottom:649.310430px;}
.y10_c00258{bottom:665.150070px;}
.y34_c00258{bottom:679.265220px;}
.y3b_c00258{bottom:688.162980px;}
.yf_c00258{bottom:693.593760px;}
.y2b_c00258{bottom:723.464400px;}
.ye_c00258{bottom:750.464670px;}
.y2a_c00258{bottom:754.514400px;}
.yd_c00258{bottom:778.990710px;}
.y29_c00258{bottom:785.564400px;}
.yc_c00258{bottom:807.434400px;}
.y28_c00258{bottom:816.614400px;}
.y27_c00258{bottom:847.664400px;}
.yb_c00258{bottom:868.364250px;}
.y26_c00258{bottom:878.714400px;}
.ya_c00258{bottom:899.414250px;}
.y25_c00258{bottom:909.764400px;}
.y9_c00258{bottom:930.464250px;}
.y8_c00258{bottom:961.514250px;}
.y24_c00258{bottom:970.409760px;}
.y7_c00258{bottom:992.564250px;}
.y23_c00258{bottom:998.853450px;}
.y6_c00258{bottom:1023.614250px;}
.y22_c00258{bottom:1027.297140px;}
.y5_c00258{bottom:1084.266870px;}
.y4_c00258{bottom:1112.710560px;}
.y3_c00258{bottom:1141.154250px;}
.y21_c00258{bottom:1193.174400px;}
.y2_c00258{bottom:1193.174550px;}
.h6_c00258{height:49.581387px;}
.h2_c00258{height:50.400000px;}
.h7_c00258{height:64.710000px;}
.h4_c00258{height:71.413920px;}
.h3_c00258{height:76.824000px;}
.h5_c00258{height:78.048000px;}
.h0_c00258{height:1262.835000px;}
.h1_c00258{height:1263.000000px;}
.w2_c00258{width:0.000000px;}
.w3_c00258{width:0.066000px;}
.w7_c00258{width:100.800000px;}
.w8_c00258{width:104.490000px;}
.w5_c00258{width:129.420000px;}
.w4_c00258{width:137.790000px;}
.w6_c00258{width:144.450000px;}
.w0_c00258{width:892.914000px;}
.w1_c00258{width:893.250000px;}
.x1_c00258{left:-838.913400px;}
.x2_c00258{left:-765.293400px;}
.x3_c00258{left:-743.963400px;}
.x4_c00258{left:-733.343400px;}
.x0_c00258{left:0.000000px;}
.x1c_c00258{left:8.986050px;}
.x15_c00258{left:18.264750px;}
.x12_c00258{left:24.527850px;}
.x18_c00258{left:27.309300px;}
.x9_c00258{left:127.620000px;}
.x10_c00258{left:137.141250px;}
.xf_c00258{left:144.716370px;}
.x7_c00258{left:148.950000px;}
.xa_c00258{left:150.120000px;}
.x8_c00258{left:159.570000px;}
.x11_c00258{left:167.580000px;}
.x13_c00258{left:185.717850px;}
.xb_c00258{left:223.112850px;}
.x14_c00258{left:274.050000px;}
.x16_c00258{left:309.414750px;}
.xc_c00258{left:325.392000px;}
.x17_c00258{left:368.820000px;}
.x1a_c00258{left:413.052840px;}
.x19_c00258{left:418.719150px;}
.x1b_c00258{left:492.930000px;}
.xd_c00258{left:529.950300px;}
.x1d_c00258{left:593.370000px;}
.xe_c00258{left:628.366740px;}
.x6_c00258{left:679.950000px;}
.x5_c00258{left:804.366150px;}
@media print{
.v1_c00258{vertical-align:-42.645120pt;}
.v0_c00258{vertical-align:0.000000pt;}
.lsf_c00258{letter-spacing:-0.320000pt;}
.ls11_c00258{letter-spacing:-0.292800pt;}
.ls14_c00258{letter-spacing:-0.234240pt;}
.lse_c00258{letter-spacing:-0.192000pt;}
.ls12_c00258{letter-spacing:-0.175680pt;}
.ls15_c00258{letter-spacing:-0.128000pt;}
.ls13_c00258{letter-spacing:-0.064000pt;}
.lsd_c00258{letter-spacing:-0.058560pt;}
.ls16_c00258{letter-spacing:-0.053440pt;}
.lsc_c00258{letter-spacing:0.000000pt;}
.ls10_c00258{letter-spacing:0.058560pt;}
.ls1_c00258{letter-spacing:0.064000pt;}
.ls9_c00258{letter-spacing:0.106880pt;}
.ls2_c00258{letter-spacing:0.128000pt;}
.lsb_c00258{letter-spacing:0.160320pt;}
.ls0_c00258{letter-spacing:0.175680pt;}
.ls4_c00258{letter-spacing:14.640000pt;}
.ls3_c00258{letter-spacing:14.757120pt;}
.ls7_c00258{letter-spacing:16.134400pt;}
.ls8_c00258{letter-spacing:17.664000pt;}
.ls5_c00258{letter-spacing:34.901760pt;}
.ls6_c00258{letter-spacing:36.800000pt;}
.lsa_c00258{letter-spacing:256.565440pt;}
.ws17_c00258{word-spacing:-16.128000pt;}
.ws18_c00258{word-spacing:-16.064000pt;}
.ws0_c00258{word-spacing:-16.000000pt;}
.ws15_c00258{word-spacing:-15.936000pt;}
.wsb_c00258{word-spacing:-14.815680pt;}
.ws9_c00258{word-spacing:-14.698560pt;}
.ws2_c00258{word-spacing:-14.640000pt;}
.ws1_c00258{word-spacing:-14.581440pt;}
.ws4_c00258{word-spacing:-14.464320pt;}
.ws19_c00258{word-spacing:-12.184320pt;}
.ws1a_c00258{word-spacing:-12.024000pt;}
.ws46_c00258{word-spacing:-1.015360pt;}
.ws44_c00258{word-spacing:-0.961920pt;}
.ws43_c00258{word-spacing:-0.641280pt;}
.ws45_c00258{word-spacing:-0.160320pt;}
.ws14_c00258{word-spacing:-0.128000pt;}
.ws1c_c00258{word-spacing:-0.117120pt;}
.ws42_c00258{word-spacing:-0.106880pt;}
.ws1f_c00258{word-spacing:-0.064000pt;}
.wse_c00258{word-spacing:0.000000pt;}
.wsa_c00258{word-spacing:0.058560pt;}
.ws2d_c00258{word-spacing:0.064000pt;}
.ws6_c00258{word-spacing:0.117120pt;}
.ws21_c00258{word-spacing:0.192000pt;}
.ws35_c00258{word-spacing:0.234240pt;}
.ws13_c00258{word-spacing:0.256000pt;}
.ws27_c00258{word-spacing:0.292800pt;}
.ws26_c00258{word-spacing:0.320000pt;}
.ws3d_c00258{word-spacing:0.896000pt;}
.ws3f_c00258{word-spacing:1.152000pt;}
.ws3e_c00258{word-spacing:1.536000pt;}
.ws12_c00258{word-spacing:1.600000pt;}
.ws40_c00258{word-spacing:1.856000pt;}
.ws1b_c00258{word-spacing:2.166720pt;}
.ws41_c00258{word-spacing:2.240000pt;}
.ws7_c00258{word-spacing:2.406816pt;}
.ws28_c00258{word-spacing:2.459520pt;}
.ws10_c00258{word-spacing:2.496000pt;}
.ws11_c00258{word-spacing:2.560000pt;}
.ws8_c00258{word-spacing:2.576640pt;}
.wsd_c00258{word-spacing:2.688000pt;}
.ws29_c00258{word-spacing:2.693760pt;}
.ws2f_c00258{word-spacing:2.816000pt;}
.ws22_c00258{word-spacing:3.776000pt;}
.ws16_c00258{word-spacing:3.840000pt;}
.ws3b_c00258{word-spacing:4.608000pt;}
.ws39_c00258{word-spacing:4.736000pt;}
.ws3a_c00258{word-spacing:4.800000pt;}
.ws2c_c00258{word-spacing:5.120000pt;}
.ws20_c00258{word-spacing:7.040000pt;}
.ws2e_c00258{word-spacing:8.960000pt;}
.ws31_c00258{word-spacing:9.088000pt;}
.ws30_c00258{word-spacing:9.280000pt;}
.ws2a_c00258{word-spacing:9.472000pt;}
.ws2b_c00258{word-spacing:9.600000pt;}
.ws25_c00258{word-spacing:9.920000pt;}
.ws38_c00258{word-spacing:12.544000pt;}
.ws33_c00258{word-spacing:12.707520pt;}
.ws37_c00258{word-spacing:12.800000pt;}
.ws36_c00258{word-spacing:12.928000pt;}
.ws32_c00258{word-spacing:12.941760pt;}
.ws5_c00258{word-spacing:14.757120pt;}
.wsc_c00258{word-spacing:14.821536pt;}
.wsf_c00258{word-spacing:14.827392pt;}
.ws24_c00258{word-spacing:19.456000pt;}
.ws23_c00258{word-spacing:19.520000pt;}
.ws34_c00258{word-spacing:20.086080pt;}
.ws3c_c00258{word-spacing:20.800000pt;}
.ws3_c00258{word-spacing:26.182400pt;}
.ws1d_c00258{word-spacing:26.496000pt;}
.ws1e_c00258{word-spacing:26.560000pt;}
._0_c00258{margin-left:-0.948672pt;}
._2_c00258{width:0.896000pt;}
._4_c00258{width:2.624000pt;}
._3_c00258{width:3.700672pt;}
._1_c00258{width:6.336000pt;}
._5_c00258{width:9.408000pt;}
._6_c00258{width:21.056000pt;}
.fs2_c00258{font-size:53.440000pt;}
.fs1_c00258{font-size:58.560000pt;}
.fs0_c00258{font-size:64.000000pt;}
.y0_c00258{bottom:0.000000pt;}
.y3d_c00258{bottom:44.792533pt;}
.y40_c00258{bottom:44.792800pt;}
.y1_c00258{bottom:54.887600pt;}
.y30_c00258{bottom:100.279467pt;}
.y20_c00258{bottom:103.636187pt;}
.y2f_c00258{bottom:127.879467pt;}
.y1f_c00258{bottom:128.919467pt;}
.y2e_c00258{bottom:155.479467pt;}
.y1e_c00258{bottom:183.079467pt;}
.y1d_c00258{bottom:210.679467pt;}
.y1c_c00258{bottom:238.279467pt;}
.y2d_c00258{bottom:256.519467pt;}
.y1b_c00258{bottom:265.879467pt;}
.y1a_c00258{bottom:293.479467pt;}
.y2c_c00258{bottom:311.879467pt;}
.y19_c00258{bottom:321.079467pt;}
.y3c_c00258{bottom:342.360000pt;}
.y18_c00258{bottom:348.679467pt;}
.y3f_c00258{bottom:354.586613pt;}
.y3e_c00258{bottom:370.912533pt;}
.y17_c00258{bottom:376.279467pt;}
.y35_c00258{bottom:404.486827pt;}
.y16_c00258{bottom:420.995947pt;}
.y36_c00258{bottom:439.022427pt;}
.y15_c00258{bottom:446.352427pt;}
.y14_c00258{bottom:471.635707pt;}
.y37_c00258{bottom:473.558027pt;}
.y33_c00258{bottom:507.839787pt;}
.y38_c00258{bottom:508.093627pt;}
.y13_c00258{bottom:515.321467pt;}
.y12_c00258{bottom:540.604747pt;}
.y39_c00258{bottom:542.629227pt;}
.y32_c00258{bottom:550.484907pt;}
.y11_c00258{bottom:565.888027pt;}
.y31_c00258{bottom:571.807467pt;}
.y3a_c00258{bottom:577.164827pt;}
.y10_c00258{bottom:591.244507pt;}
.y34_c00258{bottom:603.791307pt;}
.y3b_c00258{bottom:611.700427pt;}
.yf_c00258{bottom:616.527787pt;}
.y2b_c00258{bottom:643.079467pt;}
.ye_c00258{bottom:667.079707pt;}
.y2a_c00258{bottom:670.679467pt;}
.yd_c00258{bottom:692.436187pt;}
.y29_c00258{bottom:698.279467pt;}
.yc_c00258{bottom:717.719467pt;}
.y28_c00258{bottom:725.879467pt;}
.y27_c00258{bottom:753.479467pt;}
.yb_c00258{bottom:771.879333pt;}
.y26_c00258{bottom:781.079467pt;}
.ya_c00258{bottom:799.479333pt;}
.y25_c00258{bottom:808.679467pt;}
.y9_c00258{bottom:827.079333pt;}
.y8_c00258{bottom:854.679333pt;}
.y24_c00258{bottom:862.586453pt;}
.y7_c00258{bottom:882.279333pt;}
.y23_c00258{bottom:887.869733pt;}
.y6_c00258{bottom:909.879333pt;}
.y22_c00258{bottom:913.153013pt;}
.y5_c00258{bottom:963.792773pt;}
.y4_c00258{bottom:989.076053pt;}
.y3_c00258{bottom:1014.359333pt;}
.y21_c00258{bottom:1060.599467pt;}
.y2_c00258{bottom:1060.599600pt;}
.h6_c00258{height:44.072344pt;}
.h2_c00258{height:44.800000pt;}
.h7_c00258{height:57.520000pt;}
.h4_c00258{height:63.479040pt;}
.h3_c00258{height:68.288000pt;}
.h5_c00258{height:69.376000pt;}
.h0_c00258{height:1122.520000pt;}
.h1_c00258{height:1122.666667pt;}
.w2_c00258{width:0.000000pt;}
.w3_c00258{width:0.058667pt;}
.w7_c00258{width:89.600000pt;}
.w8_c00258{width:92.880000pt;}
.w5_c00258{width:115.040000pt;}
.w4_c00258{width:122.480000pt;}
.w6_c00258{width:128.400000pt;}
.w0_c00258{width:793.701333pt;}
.w1_c00258{width:794.000000pt;}
.x1_c00258{left:-745.700800pt;}
.x2_c00258{left:-680.260800pt;}
.x3_c00258{left:-661.300800pt;}
.x4_c00258{left:-651.860800pt;}
.x0_c00258{left:0.000000pt;}
.x1c_c00258{left:7.987600pt;}
.x15_c00258{left:16.235333pt;}
.x12_c00258{left:21.802533pt;}
.x18_c00258{left:24.274933pt;}
.x9_c00258{left:113.440000pt;}
.x10_c00258{left:121.903333pt;}
.xf_c00258{left:128.636773pt;}
.x7_c00258{left:132.400000pt;}
.xa_c00258{left:133.440000pt;}
.x8_c00258{left:141.840000pt;}
.x11_c00258{left:148.960000pt;}
.x13_c00258{left:165.082533pt;}
.xb_c00258{left:198.322533pt;}
.x14_c00258{left:243.600000pt;}
.x16_c00258{left:275.035333pt;}
.xc_c00258{left:289.237333pt;}
.x17_c00258{left:327.840000pt;}
.x1a_c00258{left:367.158080pt;}
.x19_c00258{left:372.194800pt;}
.x1b_c00258{left:438.160000pt;}
.xd_c00258{left:471.066933pt;}
.x1d_c00258{left:527.440000pt;}
.xe_c00258{left:558.548213pt;}
.x6_c00258{left:604.400000pt;}
.x5_c00258{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00259;src:url('chunks/assets/font_97c1b7141518ce401389095e.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.575000;font-style:normal;font-weight:normal;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_3363f312702dcf58df44a16c.woff2')format("woff");}.ff3_c00259{font-family:ff3_c00259;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00259{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.ls8_c00259{letter-spacing:-0.144000px;}
.ls7_c00259{letter-spacing:-0.065880px;}
.ls6_c00259{letter-spacing:0.000000px;}
.ls1_c00259{letter-spacing:0.065880px;}
.ls4_c00259{letter-spacing:0.072000px;}
.ls0_c00259{letter-spacing:0.197640px;}
.ls2_c00259{letter-spacing:16.601760px;}
.ls3_c00259{letter-spacing:17.820540px;}
.ls5_c00259{letter-spacing:26.424000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00259{word-spacing:-18.000000px;}
.ws3_c00259{word-spacing:-16.667640px;}
.ws2_c00259{word-spacing:-16.470000px;}
.ws1_c00259{word-spacing:-16.404120px;}
.wsa_c00259{word-spacing:-0.461160px;}
.ws9_c00259{word-spacing:-0.131760px;}
.ws15_c00259{word-spacing:-0.072000px;}
.ws16_c00259{word-spacing:-0.065880px;}
.ws8_c00259{word-spacing:0.000000px;}
.wsb_c00259{word-spacing:0.065880px;}
.ws4_c00259{word-spacing:0.131760px;}
.ws13_c00259{word-spacing:0.144000px;}
.ws14_c00259{word-spacing:1.440000px;}
.wsc_c00259{word-spacing:2.042280px;}
.ws10_c00259{word-spacing:8.568000px;}
.wsf_c00259{word-spacing:8.640000px;}
.wse_c00259{word-spacing:13.464000px;}
.wsd_c00259{word-spacing:13.608000px;}
.ws6_c00259{word-spacing:13.680000px;}
.ws11_c00259{word-spacing:13.968000px;}
.ws12_c00259{word-spacing:14.040000px;}
.ws7_c00259{word-spacing:14.061600px;}
.ws5_c00259{word-spacing:16.470000px;}
._0_c00259{margin-left:-1.192428px;}
._1_c00259{width:1.251720px;}
._2_c00259{width:8.432856px;}
.fc1_c00259{color:rgb(0,0,0);}
.fc0_c00259{color:rgb(35,31,32);}
.fs1_c00259{font-size:65.880000px;}
.fs0_c00259{font-size:72.000000px;}
.y0_c00259{bottom:0.000000px;}
.y1_c00259{bottom:61.748550px;}
.y20_c00259{bottom:157.979910px;}
.y1f_c00259{bottom:186.423600px;}
.y1e_c00259{bottom:214.949640px;}
.y1d_c00259{bottom:243.393330px;}
.y1c_c00259{bottom:271.837020px;}
.y1b_c00259{bottom:300.280710px;}
.y1a_c00259{bottom:328.724400px;}
.y19_c00259{bottom:389.654400px;}
.y18_c00259{bottom:420.704400px;}
.y17_c00259{bottom:451.754400px;}
.y16_c00259{bottom:482.804400px;}
.y15_c00259{bottom:513.854400px;}
.y14_c00259{bottom:544.904400px;}
.y13_c00259{bottom:605.562420px;}
.y12_c00259{bottom:634.088460px;}
.y11_c00259{bottom:662.532150px;}
.y10_c00259{bottom:690.975840px;}
.yf_c00259{bottom:719.419530px;}
.ye_c00259{bottom:768.615420px;}
.yd_c00259{bottom:797.059110px;}
.yc_c00259{bottom:825.502800px;}
.yb_c00259{bottom:853.946490px;}
.ya_c00259{bottom:882.390180px;}
.y9_c00259{bottom:910.916220px;}
.y8_c00259{bottom:939.359910px;}
.y7_c00259{bottom:996.247290px;}
.y6_c00259{bottom:1024.773330px;}
.y5_c00259{bottom:1053.217020px;}
.y4_c00259{bottom:1081.660710px;}
.y3_c00259{bottom:1110.104400px;}
.y2_c00259{bottom:1193.174400px;}
.h2_c00259{height:50.400000px;}
.h4_c00259{height:71.413920px;}
.h3_c00259{height:76.824000px;}
.h5_c00259{height:78.048000px;}
.h0_c00259{height:1262.835000px;}
.h1_c00259{height:1263.000000px;}
.w0_c00259{width:892.914000px;}
.w1_c00259{width:893.250000px;}
.x0_c00259{left:0.000000px;}
.x1_c00259{left:54.000000px;}
.x2_c00259{left:127.620000px;}
.x3_c00259{left:148.950000px;}
.x4_c00259{left:159.570000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls8_c00259{letter-spacing:-0.128000pt;}
.ls7_c00259{letter-spacing:-0.058560pt;}
.ls6_c00259{letter-spacing:0.000000pt;}
.ls1_c00259{letter-spacing:0.058560pt;}
.ls4_c00259{letter-spacing:0.064000pt;}
.ls0_c00259{letter-spacing:0.175680pt;}
.ls2_c00259{letter-spacing:14.757120pt;}
.ls3_c00259{letter-spacing:15.840480pt;}
.ls5_c00259{letter-spacing:23.488000pt;}
.ws0_c00259{word-spacing:-16.000000pt;}
.ws3_c00259{word-spacing:-14.815680pt;}
.ws2_c00259{word-spacing:-14.640000pt;}
.ws1_c00259{word-spacing:-14.581440pt;}
.wsa_c00259{word-spacing:-0.409920pt;}
.ws9_c00259{word-spacing:-0.117120pt;}
.ws15_c00259{word-spacing:-0.064000pt;}
.ws16_c00259{word-spacing:-0.058560pt;}
.ws8_c00259{word-spacing:0.000000pt;}
.wsb_c00259{word-spacing:0.058560pt;}
.ws4_c00259{word-spacing:0.117120pt;}
.ws13_c00259{word-spacing:0.128000pt;}
.ws14_c00259{word-spacing:1.280000pt;}
.wsc_c00259{word-spacing:1.815360pt;}
.ws10_c00259{word-spacing:7.616000pt;}
.wsf_c00259{word-spacing:7.680000pt;}
.wse_c00259{word-spacing:11.968000pt;}
.wsd_c00259{word-spacing:12.096000pt;}
.ws6_c00259{word-spacing:12.160000pt;}
.ws11_c00259{word-spacing:12.416000pt;}
.ws12_c00259{word-spacing:12.480000pt;}
.ws7_c00259{word-spacing:12.499200pt;}
.ws5_c00259{word-spacing:14.640000pt;}
._0_c00259{margin-left:-1.059936pt;}
._1_c00259{width:1.112640pt;}
._2_c00259{width:7.495872pt;}
.fs1_c00259{font-size:58.560000pt;}
.fs0_c00259{font-size:64.000000pt;}
.y0_c00259{bottom:0.000000pt;}
.y1_c00259{bottom:54.887600pt;}
.y20_c00259{bottom:140.426587pt;}
.y1f_c00259{bottom:165.709867pt;}
.y1e_c00259{bottom:191.066347pt;}
.y1d_c00259{bottom:216.349627pt;}
.y1c_c00259{bottom:241.632907pt;}
.y1b_c00259{bottom:266.916187pt;}
.y1a_c00259{bottom:292.199467pt;}
.y19_c00259{bottom:346.359467pt;}
.y18_c00259{bottom:373.959467pt;}
.y17_c00259{bottom:401.559467pt;}
.y16_c00259{bottom:429.159467pt;}
.y15_c00259{bottom:456.759467pt;}
.y14_c00259{bottom:484.359467pt;}
.y13_c00259{bottom:538.277707pt;}
.y12_c00259{bottom:563.634187pt;}
.y11_c00259{bottom:588.917467pt;}
.y10_c00259{bottom:614.200747pt;}
.yf_c00259{bottom:639.484027pt;}
.ye_c00259{bottom:683.213707pt;}
.yd_c00259{bottom:708.496987pt;}
.yc_c00259{bottom:733.780267pt;}
.yb_c00259{bottom:759.063547pt;}
.ya_c00259{bottom:784.346827pt;}
.y9_c00259{bottom:809.703307pt;}
.y8_c00259{bottom:834.986587pt;}
.y7_c00259{bottom:885.553147pt;}
.y6_c00259{bottom:910.909627pt;}
.y5_c00259{bottom:936.192907pt;}
.y4_c00259{bottom:961.476187pt;}
.y3_c00259{bottom:986.759467pt;}
.y2_c00259{bottom:1060.599467pt;}
.h2_c00259{height:44.800000pt;}
.h4_c00259{height:63.479040pt;}
.h3_c00259{height:68.288000pt;}
.h5_c00259{height:69.376000pt;}
.h0_c00259{height:1122.520000pt;}
.h1_c00259{height:1122.666667pt;}
.w0_c00259{width:793.701333pt;}
.w1_c00259{width:794.000000pt;}
.x0_c00259{left:0.000000pt;}
.x1_c00259{left:48.000000pt;}
.x2_c00259{left:113.440000pt;}
.x3_c00259{left:132.400000pt;}
.x4_c00259{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00260;src:url('chunks/assets/font_cbca13621c5f43b95aae12a3.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00260;src:url('chunks/assets/font_64d40b089937ced9cae868cf.woff2')format("woff");}.ff3_c00260{font-family:ff3_c00260;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00260;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00260{font-family:ff4_c00260;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00260;src:url('chunks/assets/font_5b9b0138919783d532c97b61.woff2')format("woff");}.ff5_c00260{font-family:ff5_c00260;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00260;src:url('chunks/assets/font_044cca9a7dc0ed8579cdc1b6.woff2')format("woff");}.ff6_c00260{font-family:ff6_c00260;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00260;src:url('chunks/assets/font_283da403b3ab0dc07404ea74.woff2')format("woff");}.ff7_c00260{font-family:ff7_c00260;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.lsd_c00260{letter-spacing:-0.144000px;}
.lsc_c00260{letter-spacing:-0.065880px;}
.lsb_c00260{letter-spacing:0.000000px;}
.ls1_c00260{letter-spacing:0.065880px;}
.ls4_c00260{letter-spacing:0.072000px;}
.ls9_c00260{letter-spacing:0.120240px;}
.ls7_c00260{letter-spacing:0.144000px;}
.ls0_c00260{letter-spacing:0.197640px;}
.ls2_c00260{letter-spacing:16.601760px;}
.ls3_c00260{letter-spacing:17.820540px;}
.ls8_c00260{letter-spacing:18.144000px;}
.ls6_c00260{letter-spacing:20.160000px;}
.ls5_c00260{letter-spacing:26.424000px;}
.lsa_c00260{letter-spacing:167.614560px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c00260{word-spacing:-18.072000px;}
.ws0_c00260{word-spacing:-18.000000px;}
.ws3_c00260{word-spacing:-16.667640px;}
.ws2_c00260{word-spacing:-16.470000px;}
.ws1_c00260{word-spacing:-16.404120px;}
.ws10_c00260{word-spacing:-13.707360px;}
.ws28_c00260{word-spacing:-1.803600px;}
.ws27_c00260{word-spacing:-1.442880px;}
.ws12_c00260{word-spacing:-0.461160px;}
.ws26_c00260{word-spacing:-0.360000px;}
.wsa_c00260{word-spacing:-0.151524px;}
.wsf_c00260{word-spacing:-0.144000px;}
.ws11_c00260{word-spacing:-0.131760px;}
.ws1d_c00260{word-spacing:-0.072000px;}
.ws1e_c00260{word-spacing:-0.065880px;}
.wse_c00260{word-spacing:0.000000px;}
.ws13_c00260{word-spacing:0.065880px;}
.ws4_c00260{word-spacing:0.131760px;}
.ws1b_c00260{word-spacing:0.144000px;}
.ws22_c00260{word-spacing:1.317600px;}
.ws1c_c00260{word-spacing:1.440000px;}
.ws25_c00260{word-spacing:1.944000px;}
.ws14_c00260{word-spacing:2.042280px;}
.ws24_c00260{word-spacing:2.088000px;}
.wsb_c00260{word-spacing:2.160000px;}
.ws23_c00260{word-spacing:3.162240px;}
.ws1f_c00260{word-spacing:4.545720px;}
.ws20_c00260{word-spacing:4.677480px;}
.ws9_c00260{word-spacing:4.809240px;}
.ws18_c00260{word-spacing:8.568000px;}
.ws17_c00260{word-spacing:8.640000px;}
.ws21_c00260{word-spacing:10.936080px;}
.ws16_c00260{word-spacing:13.464000px;}
.ws15_c00260{word-spacing:13.608000px;}
.ws6_c00260{word-spacing:13.680000px;}
.ws19_c00260{word-spacing:13.968000px;}
.ws1a_c00260{word-spacing:14.040000px;}
.ws8_c00260{word-spacing:14.054400px;}
.ws7_c00260{word-spacing:14.061600px;}
.wsc_c00260{word-spacing:14.400000px;}
.ws5_c00260{word-spacing:16.470000px;}
._0_c00260{margin-left:-1.192428px;}
._1_c00260{width:1.251720px;}
._2_c00260{width:8.432856px;}
.fc2_c00260{color:transparent;}
.fc1_c00260{color:rgb(0,0,0);}
.fc0_c00260{color:rgb(35,31,32);}
.fs2_c00260{font-size:60.120000px;}
.fs1_c00260{font-size:65.880000px;}
.fs0_c00260{font-size:72.000000px;}
.y0_c00260{bottom:0.000000px;}
.y1_c00260{bottom:61.748550px;}
.y35_c00260{bottom:120.644400px;}
.y20_c00260{bottom:157.979910px;}
.y42_c00260{bottom:168.644940px;}
.y1f_c00260{bottom:186.423600px;}
.y38_c00260{bottom:188.183940px;}
.y1e_c00260{bottom:214.949640px;}
.y39_c00260{bottom:218.153760px;}
.y36_c00260{bottom:238.113600px;}
.y1d_c00260{bottom:243.393330px;}
.y3a_c00260{bottom:248.123580px;}
.y1c_c00260{bottom:271.837020px;}
.y3b_c00260{bottom:278.093400px;}
.y1b_c00260{bottom:300.280710px;}
.y3c_c00260{bottom:308.063220px;}
.y1a_c00260{bottom:328.724400px;}
.y3d_c00260{bottom:338.033040px;}
.y3e_c00260{bottom:368.002860px;}
.y19_c00260{bottom:389.654400px;}
.y3f_c00260{bottom:397.972680px;}
.y18_c00260{bottom:420.704400px;}
.y40_c00260{bottom:427.942500px;}
.y37_c00260{bottom:437.937450px;}
.y17_c00260{bottom:451.754400px;}
.y41_c00260{bottom:457.912320px;}
.y16_c00260{bottom:482.804400px;}
.y34_c00260{bottom:503.504400px;}
.y15_c00260{bottom:513.854400px;}
.y33_c00260{bottom:534.554400px;}
.y14_c00260{bottom:544.904400px;}
.y32_c00260{bottom:565.604400px;}
.y31_c00260{bottom:596.654400px;}
.y13_c00260{bottom:605.562420px;}
.y12_c00260{bottom:634.088460px;}
.y30_c00260{bottom:657.282120px;}
.y11_c00260{bottom:662.532150px;}
.y2f_c00260{bottom:685.808160px;}
.y10_c00260{bottom:690.975840px;}
.y2e_c00260{bottom:714.251850px;}
.yf_c00260{bottom:719.419530px;}
.y2d_c00260{bottom:742.695540px;}
.ye_c00260{bottom:768.615420px;}
.yd_c00260{bottom:797.059110px;}
.y2c_c00260{bottom:799.582920px;}
.yc_c00260{bottom:825.502800px;}
.y2b_c00260{bottom:828.108960px;}
.yb_c00260{bottom:853.946490px;}
.ya_c00260{bottom:882.390180px;}
.y2a_c00260{bottom:884.996340px;}
.y9_c00260{bottom:910.916220px;}
.y29_c00260{bottom:913.440030px;}
.y8_c00260{bottom:939.359910px;}
.y28_c00260{bottom:941.966070px;}
.y27_c00260{bottom:970.409760px;}
.y7_c00260{bottom:996.247290px;}
.y26_c00260{bottom:998.853450px;}
.y6_c00260{bottom:1024.773330px;}
.y5_c00260{bottom:1053.217020px;}
.y25_c00260{bottom:1055.740830px;}
.y4_c00260{bottom:1081.660710px;}
.y24_c00260{bottom:1084.266870px;}
.y3_c00260{bottom:1110.104400px;}
.y23_c00260{bottom:1112.710560px;}
.y22_c00260{bottom:1141.154250px;}
.y21_c00260{bottom:1193.174400px;}
.y2_c00260{bottom:1193.174550px;}
.h6_c00260{height:49.581387px;}
.h2_c00260{height:50.400000px;}
.h4_c00260{height:71.413920px;}
.h3_c00260{height:76.824000px;}
.h5_c00260{height:78.048000px;}
.h0_c00260{height:1262.835000px;}
.h1_c00260{height:1263.000000px;}
.w2_c00260{width:0.000000px;}
.w3_c00260{width:0.066000px;}
.w0_c00260{width:892.914000px;}
.w1_c00260{width:893.250000px;}
.x1_c00260{left:-838.913400px;}
.x2_c00260{left:-765.293400px;}
.x3_c00260{left:-743.963400px;}
.x4_c00260{left:-733.343400px;}
.x0_c00260{left:0.000000px;}
.xa_c00260{left:127.620000px;}
.x7_c00260{left:148.950000px;}
.x8_c00260{left:153.083970px;}
.x9_c00260{left:159.570000px;}
.xe_c00260{left:164.128320px;}
.xd_c00260{left:171.793620px;}
.xf_c00260{left:241.066890px;}
.xb_c00260{left:326.993400px;}
.xc_c00260{left:579.211830px;}
.x6_c00260{left:679.950000px;}
.x5_c00260{left:804.366150px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.lsd_c00260{letter-spacing:-0.128000pt;}
.lsc_c00260{letter-spacing:-0.058560pt;}
.lsb_c00260{letter-spacing:0.000000pt;}
.ls1_c00260{letter-spacing:0.058560pt;}
.ls4_c00260{letter-spacing:0.064000pt;}
.ls9_c00260{letter-spacing:0.106880pt;}
.ls7_c00260{letter-spacing:0.128000pt;}
.ls0_c00260{letter-spacing:0.175680pt;}
.ls2_c00260{letter-spacing:14.757120pt;}
.ls3_c00260{letter-spacing:15.840480pt;}
.ls8_c00260{letter-spacing:16.128000pt;}
.ls6_c00260{letter-spacing:17.920000pt;}
.ls5_c00260{letter-spacing:23.488000pt;}
.lsa_c00260{letter-spacing:148.990720pt;}
.wsd_c00260{word-spacing:-16.064000pt;}
.ws0_c00260{word-spacing:-16.000000pt;}
.ws3_c00260{word-spacing:-14.815680pt;}
.ws2_c00260{word-spacing:-14.640000pt;}
.ws1_c00260{word-spacing:-14.581440pt;}
.ws10_c00260{word-spacing:-12.184320pt;}
.ws28_c00260{word-spacing:-1.603200pt;}
.ws27_c00260{word-spacing:-1.282560pt;}
.ws12_c00260{word-spacing:-0.409920pt;}
.ws26_c00260{word-spacing:-0.320000pt;}
.wsa_c00260{word-spacing:-0.134688pt;}
.wsf_c00260{word-spacing:-0.128000pt;}
.ws11_c00260{word-spacing:-0.117120pt;}
.ws1d_c00260{word-spacing:-0.064000pt;}
.ws1e_c00260{word-spacing:-0.058560pt;}
.wse_c00260{word-spacing:0.000000pt;}
.ws13_c00260{word-spacing:0.058560pt;}
.ws4_c00260{word-spacing:0.117120pt;}
.ws1b_c00260{word-spacing:0.128000pt;}
.ws22_c00260{word-spacing:1.171200pt;}
.ws1c_c00260{word-spacing:1.280000pt;}
.ws25_c00260{word-spacing:1.728000pt;}
.ws14_c00260{word-spacing:1.815360pt;}
.ws24_c00260{word-spacing:1.856000pt;}
.wsb_c00260{word-spacing:1.920000pt;}
.ws23_c00260{word-spacing:2.810880pt;}
.ws1f_c00260{word-spacing:4.040640pt;}
.ws20_c00260{word-spacing:4.157760pt;}
.ws9_c00260{word-spacing:4.274880pt;}
.ws18_c00260{word-spacing:7.616000pt;}
.ws17_c00260{word-spacing:7.680000pt;}
.ws21_c00260{word-spacing:9.720960pt;}
.ws16_c00260{word-spacing:11.968000pt;}
.ws15_c00260{word-spacing:12.096000pt;}
.ws6_c00260{word-spacing:12.160000pt;}
.ws19_c00260{word-spacing:12.416000pt;}
.ws1a_c00260{word-spacing:12.480000pt;}
.ws8_c00260{word-spacing:12.492800pt;}
.ws7_c00260{word-spacing:12.499200pt;}
.wsc_c00260{word-spacing:12.800000pt;}
.ws5_c00260{word-spacing:14.640000pt;}
._0_c00260{margin-left:-1.059936pt;}
._1_c00260{width:1.112640pt;}
._2_c00260{width:7.495872pt;}
.fs2_c00260{font-size:53.440000pt;}
.fs1_c00260{font-size:58.560000pt;}
.fs0_c00260{font-size:64.000000pt;}
.y0_c00260{bottom:0.000000pt;}
.y1_c00260{bottom:54.887600pt;}
.y35_c00260{bottom:107.239467pt;}
.y20_c00260{bottom:140.426587pt;}
.y42_c00260{bottom:149.906613pt;}
.y1f_c00260{bottom:165.709867pt;}
.y38_c00260{bottom:167.274613pt;}
.y1e_c00260{bottom:191.066347pt;}
.y39_c00260{bottom:193.914453pt;}
.y36_c00260{bottom:211.656533pt;}
.y1d_c00260{bottom:216.349627pt;}
.y3a_c00260{bottom:220.554293pt;}
.y1c_c00260{bottom:241.632907pt;}
.y3b_c00260{bottom:247.194133pt;}
.y1b_c00260{bottom:266.916187pt;}
.y3c_c00260{bottom:273.833973pt;}
.y1a_c00260{bottom:292.199467pt;}
.y3d_c00260{bottom:300.473813pt;}
.y3e_c00260{bottom:327.113653pt;}
.y19_c00260{bottom:346.359467pt;}
.y3f_c00260{bottom:353.753493pt;}
.y18_c00260{bottom:373.959467pt;}
.y40_c00260{bottom:380.393333pt;}
.y37_c00260{bottom:389.277733pt;}
.y17_c00260{bottom:401.559467pt;}
.y41_c00260{bottom:407.033173pt;}
.y16_c00260{bottom:429.159467pt;}
.y34_c00260{bottom:447.559467pt;}
.y15_c00260{bottom:456.759467pt;}
.y33_c00260{bottom:475.159467pt;}
.y14_c00260{bottom:484.359467pt;}
.y32_c00260{bottom:502.759467pt;}
.y31_c00260{bottom:530.359467pt;}
.y13_c00260{bottom:538.277707pt;}
.y12_c00260{bottom:563.634187pt;}
.y30_c00260{bottom:584.250773pt;}
.y11_c00260{bottom:588.917467pt;}
.y2f_c00260{bottom:609.607253pt;}
.y10_c00260{bottom:614.200747pt;}
.y2e_c00260{bottom:634.890533pt;}
.yf_c00260{bottom:639.484027pt;}
.y2d_c00260{bottom:660.173813pt;}
.ye_c00260{bottom:683.213707pt;}
.yd_c00260{bottom:708.496987pt;}
.y2c_c00260{bottom:710.740373pt;}
.yc_c00260{bottom:733.780267pt;}
.y2b_c00260{bottom:736.096853pt;}
.yb_c00260{bottom:759.063547pt;}
.ya_c00260{bottom:784.346827pt;}
.y2a_c00260{bottom:786.663413pt;}
.y9_c00260{bottom:809.703307pt;}
.y29_c00260{bottom:811.946693pt;}
.y8_c00260{bottom:834.986587pt;}
.y28_c00260{bottom:837.303173pt;}
.y27_c00260{bottom:862.586453pt;}
.y7_c00260{bottom:885.553147pt;}
.y26_c00260{bottom:887.869733pt;}
.y6_c00260{bottom:910.909627pt;}
.y5_c00260{bottom:936.192907pt;}
.y25_c00260{bottom:938.436293pt;}
.y4_c00260{bottom:961.476187pt;}
.y24_c00260{bottom:963.792773pt;}
.y3_c00260{bottom:986.759467pt;}
.y23_c00260{bottom:989.076053pt;}
.y22_c00260{bottom:1014.359333pt;}
.y21_c00260{bottom:1060.599467pt;}
.y2_c00260{bottom:1060.599600pt;}
.h6_c00260{height:44.072344pt;}
.h2_c00260{height:44.800000pt;}
.h4_c00260{height:63.479040pt;}
.h3_c00260{height:68.288000pt;}
.h5_c00260{height:69.376000pt;}
.h0_c00260{height:1122.520000pt;}
.h1_c00260{height:1122.666667pt;}
.w2_c00260{width:0.000000pt;}
.w3_c00260{width:0.058667pt;}
.w0_c00260{width:793.701333pt;}
.w1_c00260{width:794.000000pt;}
.x1_c00260{left:-745.700800pt;}
.x2_c00260{left:-680.260800pt;}
.x3_c00260{left:-661.300800pt;}
.x4_c00260{left:-651.860800pt;}
.x0_c00260{left:0.000000pt;}
.xa_c00260{left:113.440000pt;}
.x7_c00260{left:132.400000pt;}
.x8_c00260{left:136.074640pt;}
.x9_c00260{left:141.840000pt;}
.xe_c00260{left:145.891840pt;}
.xd_c00260{left:152.705440pt;}
.xf_c00260{left:214.281680pt;}
.xb_c00260{left:290.660800pt;}
.xc_c00260{left:514.854960pt;}
.x6_c00260{left:604.400000pt;}
.x5_c00260{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00261;src:url('chunks/assets/font_7e464cce4992344e5a49855d.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00261;src:url('chunks/assets/font_eb225037b63697eec70fa6f0.woff2')format("woff");}.ff3_c00261{font-family:ff3_c00261;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00261;src:url('chunks/assets/font_ea172fb2ed3cbf7eb0d44373.woff2')format("woff");}.ff4_c00261{font-family:ff4_c00261;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00261{vertical-align:-24.836760px;}
.v2_c00261{vertical-align:-18.709920px;}
.v0_c00261{vertical-align:0.000000px;}
.lsc_c00261{letter-spacing:-0.197640px;}
.lsa_c00261{letter-spacing:-0.131760px;}
.lsb_c00261{letter-spacing:-0.065880px;}
.ls9_c00261{letter-spacing:0.000000px;}
.ls2_c00261{letter-spacing:0.065880px;}
.ls0_c00261{letter-spacing:0.072000px;}
.ls5_c00261{letter-spacing:0.131760px;}
.ls1_c00261{letter-spacing:0.263520px;}
.lsd_c00261{letter-spacing:0.329400px;}
.ls3_c00261{letter-spacing:27.208440px;}
.ls6_c00261{letter-spacing:219.116880px;}
.ls4_c00261{letter-spacing:252.649800px;}
.ls8_c00261{letter-spacing:260.555400px;}
.ls7_c00261{letter-spacing:343.300680px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00261{word-spacing:-18.000000px;}
.ws5_c00261{word-spacing:-15.020640px;}
.ws3_c00261{word-spacing:-14.954760px;}
.ws4_c00261{word-spacing:-14.823000px;}
.ws1_c00261{word-spacing:-14.757120px;}
.ws2_c00261{word-spacing:-14.691240px;}
.wsf_c00261{word-spacing:-0.461160px;}
.ws9_c00261{word-spacing:-0.263520px;}
.wsa_c00261{word-spacing:-0.131760px;}
.ws7_c00261{word-spacing:-0.072000px;}
.ws8_c00261{word-spacing:-0.065880px;}
.ws6_c00261{word-spacing:0.000000px;}
.wsb_c00261{word-spacing:0.065880px;}
.wsc_c00261{word-spacing:0.131760px;}
.wse_c00261{word-spacing:0.197640px;}
.wsd_c00261{word-spacing:0.263520px;}
._0_c00261{margin-left:-1.015200px;}
._1_c00261{width:1.317600px;}
._15_c00261{width:120.698748px;}
._3_c00261{width:129.454200px;}
._2_c00261{width:156.465000px;}
._5_c00261{width:252.649800px;}
._18_c00261{width:331.244640px;}
._13_c00261{width:353.182680px;}
._e_c00261{width:373.078440px;}
._12_c00261{width:405.030240px;}
._a_c00261{width:454.769640px;}
._1d_c00261{width:457.009560px;}
._17_c00261{width:491.003640px;}
._16_c00261{width:496.992132px;}
._1b_c00261{width:531.256320px;}
._11_c00261{width:535.604400px;}
._b_c00261{width:546.606360px;}
._1c_c00261{width:555.895440px;}
._9_c00261{width:570.323160px;}
._c_c00261{width:576.647640px;}
._19_c00261{width:582.247440px;}
._d_c00261{width:598.585680px;}
._8_c00261{width:602.736120px;}
._7_c00261{width:611.300520px;}
._14_c00261{width:617.163840px;}
._10_c00261{width:619.337880px;}
._6_c00261{width:622.170720px;}
._1a_c00261{width:623.554200px;}
._4_c00261{width:624.674160px;}
._f_c00261{width:711.306360px;}
.fc1_c00261{color:rgb(0,0,0);}
.fc0_c00261{color:rgb(35,31,32);}
.fs1_c00261{font-size:65.880000px;}
.fs0_c00261{font-size:72.000000px;}
.y0_c00261{bottom:0.000000px;}
.y45_c00261{bottom:4.409400px;}
.y63_c00261{bottom:4.412400px;}
.y26_c00261{bottom:4.499250px;}
.y34_c00261{bottom:4.499400px;}
.y32_c00261{bottom:4.500900px;}
.y6_c00261{bottom:4.502400px;}
.y3b_c00261{bottom:24.659250px;}
.y20_c00261{bottom:24.659400px;}
.y1_c00261{bottom:61.748550px;}
.y5c_c00261{bottom:105.209400px;}
.y68_c00261{bottom:118.935000px;}
.y49_c00261{bottom:125.372250px;}
.y5b_c00261{bottom:142.155000px;}
.y61_c00261{bottom:146.649630px;}
.y67_c00261{bottom:146.654400px;}
.y60_c00261{bottom:166.726560px;}
.y66_c00261{bottom:173.022000px;}
.y5f_c00261{bottom:186.885840px;}
.y65_c00261{bottom:195.525000px;}
.y5e_c00261{bottom:207.045120px;}
.y64_c00261{bottom:218.025000px;}
.y5d_c00261{bottom:227.204400px;}
.y62_c00261{bottom:240.522000px;}
.y48_c00261{bottom:263.742000px;}
.y55_c00261{bottom:268.223880px;}
.y4f_c00261{bottom:268.240350px;}
.y5a_c00261{bottom:268.246650px;}
.y54_c00261{bottom:288.383160px;}
.y4e_c00261{bottom:288.399630px;}
.y59_c00261{bottom:296.690340px;}
.y53_c00261{bottom:308.460090px;}
.y4d_c00261{bottom:308.476560px;}
.y58_c00261{bottom:319.188360px;}
.y52_c00261{bottom:328.619370px;}
.y4c_c00261{bottom:328.635840px;}
.y57_c00261{bottom:341.686380px;}
.y51_c00261{bottom:348.778650px;}
.y4b_c00261{bottom:348.795120px;}
.y56_c00261{bottom:364.184400px;}
.y4a_c00261{bottom:368.954400px;}
.y50_c00261{bottom:386.676120px;}
.y47_c00261{bottom:405.492000px;}
.y46_c00261{bottom:433.214400px;}
.y44_c00261{bottom:452.025000px;}
.y40_c00261{bottom:479.721000px;}
.y3d_c00261{bottom:479.737470px;}
.y43_c00261{bottom:479.746380px;}
.y3f_c00261{bottom:499.797930px;}
.y3c_c00261{bottom:499.814400px;}
.y42_c00261{bottom:502.244400px;}
.y41_c00261{bottom:519.957210px;}
.y3e_c00261{bottom:524.733510px;}
.y31_c00261{bottom:543.463500px;}
.y3a_c00261{bottom:565.965000px;}
.y37_c00261{bottom:568.118040px;}
.y30_c00261{bottom:568.120170px;}
.y36_c00261{bottom:588.277320px;}
.y2f_c00261{bottom:588.279450px;}
.y39_c00261{bottom:606.285000px;}
.y35_c00261{bottom:608.354250px;}
.y2e_c00261{bottom:608.356380px;}
.y2d_c00261{bottom:628.515660px;}
.y38_c00261{bottom:630.854250px;}
.y33_c00261{bottom:646.515000px;}
.y29_c00261{bottom:674.235840px;}
.y2c_c00261{bottom:674.236380px;}
.y28_c00261{bottom:694.395120px;}
.y2b_c00261{bottom:696.734400px;}
.y27_c00261{bottom:714.554400px;}
.y2a_c00261{bottom:719.231880px;}
.y25_c00261{bottom:738.045000px;}
.y1e_c00261{bottom:765.733290px;}
.y18_c00261{bottom:765.749760px;}
.y24_c00261{bottom:765.770340px;}
.y1d_c00261{bottom:785.892570px;}
.y17_c00261{bottom:785.909040px;}
.y23_c00261{bottom:788.268360px;}
.y1c_c00261{bottom:806.051850px;}
.y16_c00261{bottom:806.068320px;}
.y22_c00261{bottom:810.766380px;}
.y1b_c00261{bottom:826.211130px;}
.y15_c00261{bottom:826.227600px;}
.y1f_c00261{bottom:828.765000px;}
.y21_c00261{bottom:833.264400px;}
.y1a_c00261{bottom:846.288060px;}
.y14_c00261{bottom:846.304530px;}
.y13_c00261{bottom:866.463810px;}
.y19_c00261{bottom:873.562380px;}
.y12_c00261{bottom:896.801550px;}
.yf_c00261{bottom:896.805390px;}
.ye_c00261{bottom:916.964670px;}
.y11_c00261{bottom:920.024250px;}
.yd_c00261{bottom:937.123950px;}
.y10_c00261{bottom:943.333140px;}
.ya_c00261{bottom:966.555840px;}
.y9_c00261{bottom:986.715120px;}
.yc_c00261{bottom:989.778540px;}
.y8_c00261{bottom:1006.874400px;}
.yb_c00261{bottom:1013.083590px;}
.y5_c00261{bottom:1032.162000px;}
.y7_c00261{bottom:1056.824400px;}
.y4_c00261{bottom:1077.704250px;}
.y3_c00261{bottom:1139.984400px;}
.y2_c00261{bottom:1193.174400px;}
.ha_c00261{height:22.497000px;}
.h8_c00261{height:22.498500px;}
.hd_c00261{height:22.500000px;}
.hb_c00261{height:40.230000px;}
.h7_c00261{height:40.317000px;}
.hc_c00261{height:40.318500px;}
.h6_c00261{height:40.320000px;}
.h2_c00261{height:50.400000px;}
.h5_c00261{height:54.331699px;}
.h3_c00261{height:76.824000px;}
.h4_c00261{height:78.048000px;}
.hf_c00261{height:120.871500px;}
.h9_c00261{height:125.550000px;}
.he_c00261{height:141.030000px;}
.h0_c00261{height:1262.835000px;}
.h1_c00261{height:1263.000000px;}
.w3_c00261{width:85.050000px;}
.w4_c00261{width:96.030000px;}
.w5_c00261{width:106.200000px;}
.w6_c00261{width:106.380000px;}
.w9_c00261{width:128.700000px;}
.w7_c00261{width:149.040000px;}
.w2_c00261{width:277.740000px;}
.w8_c00261{width:393.660000px;}
.w0_c00261{width:892.914000px;}
.w1_c00261{width:893.250000px;}
.x0_c00261{left:0.000000px;}
.x5_c00261{left:5.220000px;}
.x1_c00261{left:54.000000px;}
.x14_c00261{left:61.560000px;}
.x16_c00261{left:63.000000px;}
.x13_c00261{left:71.370000px;}
.x18_c00261{left:75.870000px;}
.x15_c00261{left:92.610000px;}
.x17_c00261{left:100.260000px;}
.x4_c00261{left:126.450000px;}
.x2_c00261{left:127.620000px;}
.x3_c00261{left:131.670000px;}
.x12_c00261{left:255.150000px;}
.xc_c00261{left:260.366580px;}
.x6_c00261{left:404.190000px;}
.x7_c00261{left:489.240000px;}
.x9_c00261{left:585.270000px;}
.x8_c00261{left:590.490000px;}
.x10_c00261{left:669.451860px;}
.xd_c00261{left:677.848140px;}
.xb_c00261{left:691.470000px;}
.xa_c00261{left:696.780000px;}
.x11_c00261{left:755.046450px;}
.xe_c00261{left:763.442730px;}
.xf_c00261{left:784.194930px;}
@media print{
.v1_c00261{vertical-align:-22.077120pt;}
.v2_c00261{vertical-align:-16.631040pt;}
.v0_c00261{vertical-align:0.000000pt;}
.lsc_c00261{letter-spacing:-0.175680pt;}
.lsa_c00261{letter-spacing:-0.117120pt;}
.lsb_c00261{letter-spacing:-0.058560pt;}
.ls9_c00261{letter-spacing:0.000000pt;}
.ls2_c00261{letter-spacing:0.058560pt;}
.ls0_c00261{letter-spacing:0.064000pt;}
.ls5_c00261{letter-spacing:0.117120pt;}
.ls1_c00261{letter-spacing:0.234240pt;}
.lsd_c00261{letter-spacing:0.292800pt;}
.ls3_c00261{letter-spacing:24.185280pt;}
.ls6_c00261{letter-spacing:194.770560pt;}
.ls4_c00261{letter-spacing:224.577600pt;}
.ls8_c00261{letter-spacing:231.604800pt;}
.ls7_c00261{letter-spacing:305.156160pt;}
.ws0_c00261{word-spacing:-16.000000pt;}
.ws5_c00261{word-spacing:-13.351680pt;}
.ws3_c00261{word-spacing:-13.293120pt;}
.ws4_c00261{word-spacing:-13.176000pt;}
.ws1_c00261{word-spacing:-13.117440pt;}
.ws2_c00261{word-spacing:-13.058880pt;}
.wsf_c00261{word-spacing:-0.409920pt;}
.ws9_c00261{word-spacing:-0.234240pt;}
.wsa_c00261{word-spacing:-0.117120pt;}
.ws7_c00261{word-spacing:-0.064000pt;}
.ws8_c00261{word-spacing:-0.058560pt;}
.ws6_c00261{word-spacing:0.000000pt;}
.wsb_c00261{word-spacing:0.058560pt;}
.wsc_c00261{word-spacing:0.117120pt;}
.wse_c00261{word-spacing:0.175680pt;}
.wsd_c00261{word-spacing:0.234240pt;}
._0_c00261{margin-left:-0.902400pt;}
._1_c00261{width:1.171200pt;}
._15_c00261{width:107.287776pt;}
._3_c00261{width:115.070400pt;}
._2_c00261{width:139.080000pt;}
._5_c00261{width:224.577600pt;}
._18_c00261{width:294.439680pt;}
._13_c00261{width:313.940160pt;}
._e_c00261{width:331.625280pt;}
._12_c00261{width:360.026880pt;}
._a_c00261{width:404.239680pt;}
._1d_c00261{width:406.230720pt;}
._17_c00261{width:436.447680pt;}
._16_c00261{width:441.770784pt;}
._1b_c00261{width:472.227840pt;}
._11_c00261{width:476.092800pt;}
._b_c00261{width:485.872320pt;}
._1c_c00261{width:494.129280pt;}
._9_c00261{width:506.953920pt;}
._c_c00261{width:512.575680pt;}
._19_c00261{width:517.553280pt;}
._d_c00261{width:532.076160pt;}
._8_c00261{width:535.765440pt;}
._7_c00261{width:543.378240pt;}
._14_c00261{width:548.590080pt;}
._10_c00261{width:550.522560pt;}
._6_c00261{width:553.040640pt;}
._1a_c00261{width:554.270400pt;}
._4_c00261{width:555.265920pt;}
._f_c00261{width:632.272320pt;}
.fs1_c00261{font-size:58.560000pt;}
.fs0_c00261{font-size:64.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y45_c00261{bottom:3.919467pt;}
.y63_c00261{bottom:3.922133pt;}
.y26_c00261{bottom:3.999333pt;}
.y34_c00261{bottom:3.999467pt;}
.y32_c00261{bottom:4.000800pt;}
.y6_c00261{bottom:4.002133pt;}
.y3b_c00261{bottom:21.919333pt;}
.y20_c00261{bottom:21.919467pt;}
.y1_c00261{bottom:54.887600pt;}
.y5c_c00261{bottom:93.519467pt;}
.y68_c00261{bottom:105.720000pt;}
.y49_c00261{bottom:111.442000pt;}
.y5b_c00261{bottom:126.360000pt;}
.y61_c00261{bottom:130.355227pt;}
.y67_c00261{bottom:130.359467pt;}
.y60_c00261{bottom:148.201387pt;}
.y66_c00261{bottom:153.797333pt;}
.y5f_c00261{bottom:166.120747pt;}
.y65_c00261{bottom:173.800000pt;}
.y5e_c00261{bottom:184.040107pt;}
.y64_c00261{bottom:193.800000pt;}
.y5d_c00261{bottom:201.959467pt;}
.y62_c00261{bottom:213.797333pt;}
.y48_c00261{bottom:234.437333pt;}
.y55_c00261{bottom:238.421227pt;}
.y4f_c00261{bottom:238.435867pt;}
.y5a_c00261{bottom:238.441467pt;}
.y54_c00261{bottom:256.340587pt;}
.y4e_c00261{bottom:256.355227pt;}
.y59_c00261{bottom:263.724747pt;}
.y53_c00261{bottom:274.186747pt;}
.y4d_c00261{bottom:274.201387pt;}
.y58_c00261{bottom:283.722987pt;}
.y52_c00261{bottom:292.106107pt;}
.y4c_c00261{bottom:292.120747pt;}
.y57_c00261{bottom:303.721227pt;}
.y51_c00261{bottom:310.025467pt;}
.y4b_c00261{bottom:310.040107pt;}
.y56_c00261{bottom:323.719467pt;}
.y4a_c00261{bottom:327.959467pt;}
.y50_c00261{bottom:343.712107pt;}
.y47_c00261{bottom:360.437333pt;}
.y46_c00261{bottom:385.079467pt;}
.y44_c00261{bottom:401.800000pt;}
.y40_c00261{bottom:426.418667pt;}
.y3d_c00261{bottom:426.433307pt;}
.y43_c00261{bottom:426.441227pt;}
.y3f_c00261{bottom:444.264827pt;}
.y3c_c00261{bottom:444.279467pt;}
.y42_c00261{bottom:446.439467pt;}
.y41_c00261{bottom:462.184187pt;}
.y3e_c00261{bottom:466.429787pt;}
.y31_c00261{bottom:483.078667pt;}
.y3a_c00261{bottom:503.080000pt;}
.y37_c00261{bottom:504.993813pt;}
.y30_c00261{bottom:504.995707pt;}
.y36_c00261{bottom:522.913173pt;}
.y2f_c00261{bottom:522.915067pt;}
.y39_c00261{bottom:538.920000pt;}
.y35_c00261{bottom:540.759333pt;}
.y2e_c00261{bottom:540.761227pt;}
.y2d_c00261{bottom:558.680587pt;}
.y38_c00261{bottom:560.759333pt;}
.y33_c00261{bottom:574.680000pt;}
.y29_c00261{bottom:599.320747pt;}
.y2c_c00261{bottom:599.321227pt;}
.y28_c00261{bottom:617.240107pt;}
.y2b_c00261{bottom:619.319467pt;}
.y27_c00261{bottom:635.159467pt;}
.y2a_c00261{bottom:639.317227pt;}
.y25_c00261{bottom:656.040000pt;}
.y1e_c00261{bottom:680.651813pt;}
.y18_c00261{bottom:680.666453pt;}
.y24_c00261{bottom:680.684747pt;}
.y1d_c00261{bottom:698.571173pt;}
.y17_c00261{bottom:698.585813pt;}
.y23_c00261{bottom:700.682987pt;}
.y1c_c00261{bottom:716.490533pt;}
.y16_c00261{bottom:716.505173pt;}
.y22_c00261{bottom:720.681227pt;}
.y1b_c00261{bottom:734.409893pt;}
.y15_c00261{bottom:734.424533pt;}
.y1f_c00261{bottom:736.680000pt;}
.y21_c00261{bottom:740.679467pt;}
.y1a_c00261{bottom:752.256053pt;}
.y14_c00261{bottom:752.270693pt;}
.y13_c00261{bottom:770.190053pt;}
.y19_c00261{bottom:776.499893pt;}
.y12_c00261{bottom:797.156933pt;}
.yf_c00261{bottom:797.160347pt;}
.ye_c00261{bottom:815.079707pt;}
.y11_c00261{bottom:817.799333pt;}
.yd_c00261{bottom:832.999067pt;}
.y10_c00261{bottom:838.518347pt;}
.ya_c00261{bottom:859.160747pt;}
.y9_c00261{bottom:877.080107pt;}
.yc_c00261{bottom:879.803147pt;}
.y8_c00261{bottom:894.999467pt;}
.yb_c00261{bottom:900.518747pt;}
.y5_c00261{bottom:917.477333pt;}
.y7_c00261{bottom:939.399467pt;}
.y4_c00261{bottom:957.959333pt;}
.y3_c00261{bottom:1013.319467pt;}
.y2_c00261{bottom:1060.599467pt;}
.ha_c00261{height:19.997333pt;}
.h8_c00261{height:19.998667pt;}
.hd_c00261{height:20.000000pt;}
.hb_c00261{height:35.760000pt;}
.h7_c00261{height:35.837333pt;}
.hc_c00261{height:35.838667pt;}
.h6_c00261{height:35.840000pt;}
.h2_c00261{height:44.800000pt;}
.h5_c00261{height:48.294844pt;}
.h3_c00261{height:68.288000pt;}
.h4_c00261{height:69.376000pt;}
.hf_c00261{height:107.441333pt;}
.h9_c00261{height:111.600000pt;}
.he_c00261{height:125.360000pt;}
.h0_c00261{height:1122.520000pt;}
.h1_c00261{height:1122.666667pt;}
.w3_c00261{width:75.600000pt;}
.w4_c00261{width:85.360000pt;}
.w5_c00261{width:94.400000pt;}
.w6_c00261{width:94.560000pt;}
.w9_c00261{width:114.400000pt;}
.w7_c00261{width:132.480000pt;}
.w2_c00261{width:246.880000pt;}
.w8_c00261{width:349.920000pt;}
.w0_c00261{width:793.701333pt;}
.w1_c00261{width:794.000000pt;}
.x0_c00261{left:0.000000pt;}
.x5_c00261{left:4.640000pt;}
.x1_c00261{left:48.000000pt;}
.x14_c00261{left:54.720000pt;}
.x16_c00261{left:56.000000pt;}
.x13_c00261{left:63.440000pt;}
.x18_c00261{left:67.440000pt;}
.x15_c00261{left:82.320000pt;}
.x17_c00261{left:89.120000pt;}
.x4_c00261{left:112.400000pt;}
.x2_c00261{left:113.440000pt;}
.x3_c00261{left:117.040000pt;}
.x12_c00261{left:226.800000pt;}
.xc_c00261{left:231.436960pt;}
.x6_c00261{left:359.280000pt;}
.x7_c00261{left:434.880000pt;}
.x9_c00261{left:520.240000pt;}
.x8_c00261{left:524.880000pt;}
.x10_c00261{left:595.068320pt;}
.xd_c00261{left:602.531680pt;}
.xb_c00261{left:614.640000pt;}
.xa_c00261{left:619.360000pt;}
.x11_c00261{left:671.152400pt;}
.xe_c00261{left:678.615760pt;}
.xf_c00261{left:697.062160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00262;src:url('chunks/assets/font_3d4732fcd666edd989eb8cbb.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00262;src:url('chunks/assets/font_0edd9c7218f0e74239fb0b70.woff2')format("woff");}.ff3_c00262{font-family:ff3_c00262;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00262;src:url('chunks/assets/font_6234f9ba44a0a8dd5b33d686.woff2')format("woff");}.ff4_c00262{font-family:ff4_c00262;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00262;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00262{font-family:ff5_c00262;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00262;src:url('chunks/assets/font_23c5f87cc223b9584af1c4d1.woff2')format("woff");}.ff6_c00262{font-family:ff6_c00262;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00262;src:url('chunks/assets/font_1a26cdcfb621eb6d9325cebe.woff2')format("woff");}.ff7_c00262{font-family:ff7_c00262;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00262;src:url('chunks/assets/font_6234f9ba44a0a8dd5b33d686.woff2')format("woff");}.ff8_c00262{font-family:ff8_c00262;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00262;src:url('chunks/assets/font_0b20820ab815a4f4c7ff0572.woff2')format("woff");}.ff9_c00262{font-family:ff9_c00262;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00262{vertical-align:-24.836760px;}
.v2_c00262{vertical-align:-18.709920px;}
.v0_c00262{vertical-align:0.000000px;}
.ls17_c00262{letter-spacing:-0.360000px;}
.ls15_c00262{letter-spacing:-0.288000px;}
.ls13_c00262{letter-spacing:-0.197640px;}
.ls11_c00262{letter-spacing:-0.131760px;}
.ls16_c00262{letter-spacing:-0.072000px;}
.ls12_c00262{letter-spacing:-0.065880px;}
.ls10_c00262{letter-spacing:0.000000px;}
.ls2_c00262{letter-spacing:0.065880px;}
.ls0_c00262{letter-spacing:0.072000px;}
.ls5_c00262{letter-spacing:0.131760px;}
.ls9_c00262{letter-spacing:0.144000px;}
.lsc_c00262{letter-spacing:0.197640px;}
.ls1_c00262{letter-spacing:0.263520px;}
.ls14_c00262{letter-spacing:0.329400px;}
.lsb_c00262{letter-spacing:16.535880px;}
.lsf_c00262{letter-spacing:16.601760px;}
.lsd_c00262{letter-spacing:20.880000px;}
.lse_c00262{letter-spacing:24.480000px;}
.ls3_c00262{letter-spacing:27.208440px;}
.lsa_c00262{letter-spacing:32.760000px;}
.ls6_c00262{letter-spacing:219.116880px;}
.ls4_c00262{letter-spacing:252.649800px;}
.ls8_c00262{letter-spacing:260.555400px;}
.ls7_c00262{letter-spacing:343.300680px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c00262{word-spacing:-18.072000px;}
.ws0_c00262{word-spacing:-18.000000px;}
.wse_c00262{word-spacing:-17.640000px;}
.ws12_c00262{word-spacing:-16.667640px;}
.ws11_c00262{word-spacing:-16.404120px;}
.ws5_c00262{word-spacing:-15.020640px;}
.ws3_c00262{word-spacing:-14.954760px;}
.ws4_c00262{word-spacing:-14.823000px;}
.ws1_c00262{word-spacing:-14.757120px;}
.ws2_c00262{word-spacing:-14.691240px;}
.ws23_c00262{word-spacing:-0.504000px;}
.ws1b_c00262{word-spacing:-0.461160px;}
.ws10_c00262{word-spacing:-0.432000px;}
.ws2b_c00262{word-spacing:-0.329400px;}
.ws16_c00262{word-spacing:-0.263520px;}
.ws1c_c00262{word-spacing:-0.144000px;}
.ws17_c00262{word-spacing:-0.131760px;}
.ws14_c00262{word-spacing:-0.072000px;}
.ws15_c00262{word-spacing:-0.065880px;}
.ws13_c00262{word-spacing:0.000000px;}
.ws18_c00262{word-spacing:0.065880px;}
.ws8_c00262{word-spacing:0.131760px;}
.ws1a_c00262{word-spacing:0.197640px;}
.ws19_c00262{word-spacing:0.263520px;}
.ws25_c00262{word-spacing:0.461160px;}
.ws7_c00262{word-spacing:0.655200px;}
.ws26_c00262{word-spacing:0.720000px;}
.ws24_c00262{word-spacing:1.976400px;}
.wsc_c00262{word-spacing:2.664000px;}
.ws27_c00262{word-spacing:2.880000px;}
.ws1f_c00262{word-spacing:4.968000px;}
.ws9_c00262{word-spacing:5.040000px;}
.wsb_c00262{word-spacing:6.768000px;}
.wsf_c00262{word-spacing:6.840000px;}
.wsa_c00262{word-spacing:6.984000px;}
.ws2a_c00262{word-spacing:14.625360px;}
.ws1e_c00262{word-spacing:14.688000px;}
.ws1d_c00262{word-spacing:14.760000px;}
.ws29_c00262{word-spacing:15.984000px;}
.ws28_c00262{word-spacing:16.056000px;}
.ws22_c00262{word-spacing:23.616000px;}
.ws20_c00262{word-spacing:23.688000px;}
.ws21_c00262{word-spacing:23.760000px;}
.ws6_c00262{word-spacing:50.400000px;}
._0_c00262{margin-left:-1.015200px;}
._1_c00262{width:1.317600px;}
._22_c00262{width:2.808000px;}
._23_c00262{width:7.200000px;}
._1f_c00262{width:15.048000px;}
._20_c00262{width:24.271200px;}
._21_c00262{width:31.320000px;}
._15_c00262{width:120.698748px;}
._1e_c00262{width:122.400000px;}
._3_c00262{width:129.454200px;}
._2_c00262{width:156.465000px;}
._5_c00262{width:252.649800px;}
._18_c00262{width:331.244640px;}
._13_c00262{width:353.182680px;}
._e_c00262{width:373.078440px;}
._12_c00262{width:405.030240px;}
._a_c00262{width:454.769640px;}
._1d_c00262{width:457.009560px;}
._17_c00262{width:491.003640px;}
._16_c00262{width:496.992132px;}
._1b_c00262{width:531.256320px;}
._11_c00262{width:535.604400px;}
._b_c00262{width:546.606360px;}
._1c_c00262{width:555.895440px;}
._9_c00262{width:570.323160px;}
._c_c00262{width:576.647640px;}
._19_c00262{width:582.247440px;}
._d_c00262{width:598.585680px;}
._8_c00262{width:602.736120px;}
._7_c00262{width:611.300520px;}
._14_c00262{width:617.163840px;}
._10_c00262{width:619.337880px;}
._6_c00262{width:622.170720px;}
._1a_c00262{width:623.554200px;}
._4_c00262{width:624.674160px;}
._f_c00262{width:711.306360px;}
.fc2_c00262{color:transparent;}
.fc1_c00262{color:rgb(0,0,0);}
.fc0_c00262{color:rgb(35,31,32);}
.fs1_c00262{font-size:65.880000px;}
.fs0_c00262{font-size:72.000000px;}
.y0_c00262{bottom:0.000000px;}
.y42_c00262{bottom:4.409400px;}
.y5f_c00262{bottom:4.410900px;}
.y25_c00262{bottom:4.499250px;}
.y31_c00262{bottom:4.499400px;}
.y6_c00262{bottom:4.500900px;}
.y38_c00262{bottom:24.659250px;}
.y1f_c00262{bottom:24.659400px;}
.y1_c00262{bottom:61.748550px;}
.y58_c00262{bottom:105.209400px;}
.y64_c00262{bottom:118.935000px;}
.y69_c00262{bottom:125.369250px;}
.y46_c00262{bottom:125.370750px;}
.y57_c00262{bottom:142.155000px;}
.y5d_c00262{bottom:146.649630px;}
.y63_c00262{bottom:146.654400px;}
.y5c_c00262{bottom:166.726560px;}
.y84_c00262{bottom:168.337290px;}
.y62_c00262{bottom:173.023500px;}
.y6b_c00262{bottom:173.025000px;}
.y5b_c00262{bottom:186.885840px;}
.y61_c00262{bottom:195.525000px;}
.y83_c00262{bottom:196.780980px;}
.y5a_c00262{bottom:207.045120px;}
.y60_c00262{bottom:218.025000px;}
.y82_c00262{bottom:225.307020px;}
.y59_c00262{bottom:227.204400px;}
.y5e_c00262{bottom:240.523500px;}
.y6a_c00262{bottom:240.525000px;}
.y81_c00262{bottom:253.750710px;}
.y45_c00262{bottom:263.743500px;}
.y68_c00262{bottom:263.745000px;}
.y52_c00262{bottom:268.223880px;}
.y4c_c00262{bottom:268.240350px;}
.y80_c00262{bottom:282.194400px;}
.y51_c00262{bottom:288.383160px;}
.y4b_c00262{bottom:288.399630px;}
.y56_c00262{bottom:296.684040px;}
.y50_c00262{bottom:308.460090px;}
.y4a_c00262{bottom:308.476560px;}
.y55_c00262{bottom:319.182060px;}
.y4f_c00262{bottom:328.619370px;}
.y49_c00262{bottom:328.635840px;}
.y54_c00262{bottom:341.680080px;}
.y7f_c00262{bottom:343.124250px;}
.y4e_c00262{bottom:348.778650px;}
.y48_c00262{bottom:348.795120px;}
.y53_c00262{bottom:364.178100px;}
.y47_c00262{bottom:368.954400px;}
.y7e_c00262{bottom:374.174250px;}
.y4d_c00262{bottom:386.676120px;}
.y7d_c00262{bottom:405.224250px;}
.y44_c00262{bottom:405.493500px;}
.y67_c00262{bottom:405.495000px;}
.y43_c00262{bottom:433.214400px;}
.y7c_c00262{bottom:436.274250px;}
.y41_c00262{bottom:452.025000px;}
.y7b_c00262{bottom:467.324250px;}
.y3d_c00262{bottom:479.721000px;}
.y3a_c00262{bottom:479.737470px;}
.y40_c00262{bottom:479.753940px;}
.y3c_c00262{bottom:499.797930px;}
.y39_c00262{bottom:499.814400px;}
.y3f_c00262{bottom:502.251960px;}
.y3e_c00262{bottom:519.957210px;}
.y3b_c00262{bottom:524.733510px;}
.y7a_c00262{bottom:529.424250px;}
.y2f_c00262{bottom:543.463500px;}
.y66_c00262{bottom:543.465000px;}
.y79_c00262{bottom:560.474250px;}
.y37_c00262{bottom:565.965000px;}
.y34_c00262{bottom:568.118040px;}
.y2e_c00262{bottom:568.119630px;}
.y33_c00262{bottom:588.277320px;}
.y2d_c00262{bottom:588.278910px;}
.y78_c00262{bottom:591.524250px;}
.y36_c00262{bottom:606.285000px;}
.y32_c00262{bottom:608.354250px;}
.y2c_c00262{bottom:608.355840px;}
.y2b_c00262{bottom:628.515120px;}
.y35_c00262{bottom:630.854250px;}
.y30_c00262{bottom:646.515000px;}
.y77_c00262{bottom:652.180980px;}
.y28_c00262{bottom:674.235840px;}
.y76_c00262{bottom:680.624670px;}
.y27_c00262{bottom:694.395120px;}
.y2a_c00262{bottom:696.733860px;}
.y75_c00262{bottom:709.068360px;}
.y26_c00262{bottom:714.554400px;}
.y29_c00262{bottom:719.231880px;}
.y74_c00262{bottom:737.594400px;}
.y24_c00262{bottom:738.045000px;}
.y1d_c00262{bottom:765.737130px;}
.y17_c00262{bottom:765.753600px;}
.y23_c00262{bottom:765.770340px;}
.y1c_c00262{bottom:785.896410px;}
.y16_c00262{bottom:785.912880px;}
.y22_c00262{bottom:788.268360px;}
.y73_c00262{bottom:798.434400px;}
.y1b_c00262{bottom:806.055690px;}
.y15_c00262{bottom:806.072160px;}
.y21_c00262{bottom:810.766380px;}
.y1a_c00262{bottom:826.214970px;}
.y14_c00262{bottom:826.231440px;}
.y1e_c00262{bottom:828.765000px;}
.y72_c00262{bottom:829.484400px;}
.y20_c00262{bottom:833.264400px;}
.y19_c00262{bottom:846.291900px;}
.y13_c00262{bottom:846.308370px;}
.y71_c00262{bottom:860.534400px;}
.y12_c00262{bottom:866.467650px;}
.y18_c00262{bottom:873.566220px;}
.y70_c00262{bottom:891.584400px;}
.yf_c00262{bottom:896.805390px;}
.ye_c00262{bottom:916.964670px;}
.y11_c00262{bottom:920.028090px;}
.yd_c00262{bottom:937.123950px;}
.y10_c00262{bottom:943.333140px;}
.y6f_c00262{bottom:953.504400px;}
.ya_c00262{bottom:966.555840px;}
.y9_c00262{bottom:986.715120px;}
.yc_c00262{bottom:989.778540px;}
.y8_c00262{bottom:1006.874400px;}
.yb_c00262{bottom:1013.083590px;}
.y6e_c00262{bottom:1015.784400px;}
.y5_c00262{bottom:1032.163500px;}
.y65_c00262{bottom:1032.165000px;}
.y6d_c00262{bottom:1046.834400px;}
.y7_c00262{bottom:1056.824400px;}
.y4_c00262{bottom:1077.704250px;}
.y6c_c00262{bottom:1108.934400px;}
.y3_c00262{bottom:1139.984400px;}
.y2_c00262{bottom:1193.174400px;}
.h8_c00262{height:22.498500px;}
.hb_c00262{height:22.500000px;}
.ha_c00262{height:40.230000px;}
.h7_c00262{height:40.318500px;}
.h6_c00262{height:40.320000px;}
.h2_c00262{height:50.400000px;}
.h5_c00262{height:54.331699px;}
.he_c00262{height:71.413920px;}
.h3_c00262{height:76.824000px;}
.h4_c00262{height:78.048000px;}
.hd_c00262{height:120.871500px;}
.h9_c00262{height:125.550000px;}
.hc_c00262{height:141.030000px;}
.h0_c00262{height:1262.835000px;}
.h1_c00262{height:1263.000000px;}
.w8_c00262{width:-637.764000px;}
.w3_c00262{width:-488.724000px;}
.w4_c00262{width:-403.674000px;}
.w5_c00262{width:-307.644000px;}
.w6_c00262{width:-201.444000px;}
.w7_c00262{width:-95.064000px;}
.w2_c00262{width:0.000000px;}
.w9_c00262{width:0.066000px;}
.w0_c00262{width:892.914000px;}
.w1_c00262{width:893.250000px;}
.x1_c00262{left:-838.913400px;}
.x2_c00262{left:-765.293400px;}
.x3_c00262{left:-761.243400px;}
.x8_c00262{left:-632.546820px;}
.x12_c00262{left:-537.503400px;}
.x4_c00262{left:-483.503400px;}
.x13_c00262{left:-434.093400px;}
.x10_c00262{left:-425.723400px;}
.xe_c00262{left:-417.353400px;}
.x5_c00262{left:-398.453400px;}
.x11_c00262{left:-350.483400px;}
.xf_c00262{left:-342.113400px;}
.x6_c00262{left:-302.423400px;}
.x14_c00262{left:-231.773400px;}
.xc_c00262{left:-223.464960px;}
.x9_c00262{left:-215.065260px;}
.x7_c00262{left:-196.133400px;}
.xd_c00262{left:-137.870370px;}
.xa_c00262{left:-129.470670px;}
.x15_c00262{left:-125.393400px;}
.xb_c00262{left:-108.718470px;}
.x0_c00262{left:0.000000px;}
.x18_c00262{left:127.620000px;}
.x1a_c00262{left:148.950000px;}
.x19_c00262{left:159.570000px;}
.x17_c00262{left:679.950000px;}
.x16_c00262{left:804.366150px;}
@media print{
.v1_c00262{vertical-align:-22.077120pt;}
.v2_c00262{vertical-align:-16.631040pt;}
.v0_c00262{vertical-align:0.000000pt;}
.ls17_c00262{letter-spacing:-0.320000pt;}
.ls15_c00262{letter-spacing:-0.256000pt;}
.ls13_c00262{letter-spacing:-0.175680pt;}
.ls11_c00262{letter-spacing:-0.117120pt;}
.ls16_c00262{letter-spacing:-0.064000pt;}
.ls12_c00262{letter-spacing:-0.058560pt;}
.ls10_c00262{letter-spacing:0.000000pt;}
.ls2_c00262{letter-spacing:0.058560pt;}
.ls0_c00262{letter-spacing:0.064000pt;}
.ls5_c00262{letter-spacing:0.117120pt;}
.ls9_c00262{letter-spacing:0.128000pt;}
.lsc_c00262{letter-spacing:0.175680pt;}
.ls1_c00262{letter-spacing:0.234240pt;}
.ls14_c00262{letter-spacing:0.292800pt;}
.lsb_c00262{letter-spacing:14.698560pt;}
.lsf_c00262{letter-spacing:14.757120pt;}
.lsd_c00262{letter-spacing:18.560000pt;}
.lse_c00262{letter-spacing:21.760000pt;}
.ls3_c00262{letter-spacing:24.185280pt;}
.lsa_c00262{letter-spacing:29.120000pt;}
.ls6_c00262{letter-spacing:194.770560pt;}
.ls4_c00262{letter-spacing:224.577600pt;}
.ls8_c00262{letter-spacing:231.604800pt;}
.ls7_c00262{letter-spacing:305.156160pt;}
.wsd_c00262{word-spacing:-16.064000pt;}
.ws0_c00262{word-spacing:-16.000000pt;}
.wse_c00262{word-spacing:-15.680000pt;}
.ws12_c00262{word-spacing:-14.815680pt;}
.ws11_c00262{word-spacing:-14.581440pt;}
.ws5_c00262{word-spacing:-13.351680pt;}
.ws3_c00262{word-spacing:-13.293120pt;}
.ws4_c00262{word-spacing:-13.176000pt;}
.ws1_c00262{word-spacing:-13.117440pt;}
.ws2_c00262{word-spacing:-13.058880pt;}
.ws23_c00262{word-spacing:-0.448000pt;}
.ws1b_c00262{word-spacing:-0.409920pt;}
.ws10_c00262{word-spacing:-0.384000pt;}
.ws2b_c00262{word-spacing:-0.292800pt;}
.ws16_c00262{word-spacing:-0.234240pt;}
.ws1c_c00262{word-spacing:-0.128000pt;}
.ws17_c00262{word-spacing:-0.117120pt;}
.ws14_c00262{word-spacing:-0.064000pt;}
.ws15_c00262{word-spacing:-0.058560pt;}
.ws13_c00262{word-spacing:0.000000pt;}
.ws18_c00262{word-spacing:0.058560pt;}
.ws8_c00262{word-spacing:0.117120pt;}
.ws1a_c00262{word-spacing:0.175680pt;}
.ws19_c00262{word-spacing:0.234240pt;}
.ws25_c00262{word-spacing:0.409920pt;}
.ws7_c00262{word-spacing:0.582400pt;}
.ws26_c00262{word-spacing:0.640000pt;}
.ws24_c00262{word-spacing:1.756800pt;}
.wsc_c00262{word-spacing:2.368000pt;}
.ws27_c00262{word-spacing:2.560000pt;}
.ws1f_c00262{word-spacing:4.416000pt;}
.ws9_c00262{word-spacing:4.480000pt;}
.wsb_c00262{word-spacing:6.016000pt;}
.wsf_c00262{word-spacing:6.080000pt;}
.wsa_c00262{word-spacing:6.208000pt;}
.ws2a_c00262{word-spacing:13.000320pt;}
.ws1e_c00262{word-spacing:13.056000pt;}
.ws1d_c00262{word-spacing:13.120000pt;}
.ws29_c00262{word-spacing:14.208000pt;}
.ws28_c00262{word-spacing:14.272000pt;}
.ws22_c00262{word-spacing:20.992000pt;}
.ws20_c00262{word-spacing:21.056000pt;}
.ws21_c00262{word-spacing:21.120000pt;}
.ws6_c00262{word-spacing:44.800000pt;}
._0_c00262{margin-left:-0.902400pt;}
._1_c00262{width:1.171200pt;}
._22_c00262{width:2.496000pt;}
._23_c00262{width:6.400000pt;}
._1f_c00262{width:13.376000pt;}
._20_c00262{width:21.574400pt;}
._21_c00262{width:27.840000pt;}
._15_c00262{width:107.287776pt;}
._1e_c00262{width:108.800000pt;}
._3_c00262{width:115.070400pt;}
._2_c00262{width:139.080000pt;}
._5_c00262{width:224.577600pt;}
._18_c00262{width:294.439680pt;}
._13_c00262{width:313.940160pt;}
._e_c00262{width:331.625280pt;}
._12_c00262{width:360.026880pt;}
._a_c00262{width:404.239680pt;}
._1d_c00262{width:406.230720pt;}
._17_c00262{width:436.447680pt;}
._16_c00262{width:441.770784pt;}
._1b_c00262{width:472.227840pt;}
._11_c00262{width:476.092800pt;}
._b_c00262{width:485.872320pt;}
._1c_c00262{width:494.129280pt;}
._9_c00262{width:506.953920pt;}
._c_c00262{width:512.575680pt;}
._19_c00262{width:517.553280pt;}
._d_c00262{width:532.076160pt;}
._8_c00262{width:535.765440pt;}
._7_c00262{width:543.378240pt;}
._14_c00262{width:548.590080pt;}
._10_c00262{width:550.522560pt;}
._6_c00262{width:553.040640pt;}
._1a_c00262{width:554.270400pt;}
._4_c00262{width:555.265920pt;}
._f_c00262{width:632.272320pt;}
.fs1_c00262{font-size:58.560000pt;}
.fs0_c00262{font-size:64.000000pt;}
.y0_c00262{bottom:0.000000pt;}
.y42_c00262{bottom:3.919467pt;}
.y5f_c00262{bottom:3.920800pt;}
.y25_c00262{bottom:3.999333pt;}
.y31_c00262{bottom:3.999467pt;}
.y6_c00262{bottom:4.000800pt;}
.y38_c00262{bottom:21.919333pt;}
.y1f_c00262{bottom:21.919467pt;}
.y1_c00262{bottom:54.887600pt;}
.y58_c00262{bottom:93.519467pt;}
.y64_c00262{bottom:105.720000pt;}
.y69_c00262{bottom:111.439333pt;}
.y46_c00262{bottom:111.440667pt;}
.y57_c00262{bottom:126.360000pt;}
.y5d_c00262{bottom:130.355227pt;}
.y63_c00262{bottom:130.359467pt;}
.y5c_c00262{bottom:148.201387pt;}
.y84_c00262{bottom:149.633147pt;}
.y62_c00262{bottom:153.798667pt;}
.y6b_c00262{bottom:153.800000pt;}
.y5b_c00262{bottom:166.120747pt;}
.y61_c00262{bottom:173.800000pt;}
.y83_c00262{bottom:174.916427pt;}
.y5a_c00262{bottom:184.040107pt;}
.y60_c00262{bottom:193.800000pt;}
.y82_c00262{bottom:200.272907pt;}
.y59_c00262{bottom:201.959467pt;}
.y5e_c00262{bottom:213.798667pt;}
.y6a_c00262{bottom:213.800000pt;}
.y81_c00262{bottom:225.556187pt;}
.y45_c00262{bottom:234.438667pt;}
.y68_c00262{bottom:234.440000pt;}
.y52_c00262{bottom:238.421227pt;}
.y4c_c00262{bottom:238.435867pt;}
.y80_c00262{bottom:250.839467pt;}
.y51_c00262{bottom:256.340587pt;}
.y4b_c00262{bottom:256.355227pt;}
.y56_c00262{bottom:263.719147pt;}
.y50_c00262{bottom:274.186747pt;}
.y4a_c00262{bottom:274.201387pt;}
.y55_c00262{bottom:283.717387pt;}
.y4f_c00262{bottom:292.106107pt;}
.y49_c00262{bottom:292.120747pt;}
.y54_c00262{bottom:303.715627pt;}
.y7f_c00262{bottom:304.999333pt;}
.y4e_c00262{bottom:310.025467pt;}
.y48_c00262{bottom:310.040107pt;}
.y53_c00262{bottom:323.713867pt;}
.y47_c00262{bottom:327.959467pt;}
.y7e_c00262{bottom:332.599333pt;}
.y4d_c00262{bottom:343.712107pt;}
.y7d_c00262{bottom:360.199333pt;}
.y44_c00262{bottom:360.438667pt;}
.y67_c00262{bottom:360.440000pt;}
.y43_c00262{bottom:385.079467pt;}
.y7c_c00262{bottom:387.799333pt;}
.y41_c00262{bottom:401.800000pt;}
.y7b_c00262{bottom:415.399333pt;}
.y3d_c00262{bottom:426.418667pt;}
.y3a_c00262{bottom:426.433307pt;}
.y40_c00262{bottom:426.447947pt;}
.y3c_c00262{bottom:444.264827pt;}
.y39_c00262{bottom:444.279467pt;}
.y3f_c00262{bottom:446.446187pt;}
.y3e_c00262{bottom:462.184187pt;}
.y3b_c00262{bottom:466.429787pt;}
.y7a_c00262{bottom:470.599333pt;}
.y2f_c00262{bottom:483.078667pt;}
.y66_c00262{bottom:483.080000pt;}
.y79_c00262{bottom:498.199333pt;}
.y37_c00262{bottom:503.080000pt;}
.y34_c00262{bottom:504.993813pt;}
.y2e_c00262{bottom:504.995227pt;}
.y33_c00262{bottom:522.913173pt;}
.y2d_c00262{bottom:522.914587pt;}
.y78_c00262{bottom:525.799333pt;}
.y36_c00262{bottom:538.920000pt;}
.y32_c00262{bottom:540.759333pt;}
.y2c_c00262{bottom:540.760747pt;}
.y2b_c00262{bottom:558.680107pt;}
.y35_c00262{bottom:560.759333pt;}
.y30_c00262{bottom:574.680000pt;}
.y77_c00262{bottom:579.716427pt;}
.y28_c00262{bottom:599.320747pt;}
.y76_c00262{bottom:604.999707pt;}
.y27_c00262{bottom:617.240107pt;}
.y2a_c00262{bottom:619.318987pt;}
.y75_c00262{bottom:630.282987pt;}
.y26_c00262{bottom:635.159467pt;}
.y29_c00262{bottom:639.317227pt;}
.y74_c00262{bottom:655.639467pt;}
.y24_c00262{bottom:656.040000pt;}
.y1d_c00262{bottom:680.655227pt;}
.y17_c00262{bottom:680.669867pt;}
.y23_c00262{bottom:680.684747pt;}
.y1c_c00262{bottom:698.574587pt;}
.y16_c00262{bottom:698.589227pt;}
.y22_c00262{bottom:700.682987pt;}
.y73_c00262{bottom:709.719467pt;}
.y1b_c00262{bottom:716.493947pt;}
.y15_c00262{bottom:716.508587pt;}
.y21_c00262{bottom:720.681227pt;}
.y1a_c00262{bottom:734.413307pt;}
.y14_c00262{bottom:734.427947pt;}
.y1e_c00262{bottom:736.680000pt;}
.y72_c00262{bottom:737.319467pt;}
.y20_c00262{bottom:740.679467pt;}
.y19_c00262{bottom:752.259467pt;}
.y13_c00262{bottom:752.274107pt;}
.y71_c00262{bottom:764.919467pt;}
.y12_c00262{bottom:770.193467pt;}
.y18_c00262{bottom:776.503307pt;}
.y70_c00262{bottom:792.519467pt;}
.yf_c00262{bottom:797.160347pt;}
.ye_c00262{bottom:815.079707pt;}
.y11_c00262{bottom:817.802747pt;}
.yd_c00262{bottom:832.999067pt;}
.y10_c00262{bottom:838.518347pt;}
.y6f_c00262{bottom:847.559467pt;}
.ya_c00262{bottom:859.160747pt;}
.y9_c00262{bottom:877.080107pt;}
.yc_c00262{bottom:879.803147pt;}
.y8_c00262{bottom:894.999467pt;}
.yb_c00262{bottom:900.518747pt;}
.y6e_c00262{bottom:902.919467pt;}
.y5_c00262{bottom:917.478667pt;}
.y65_c00262{bottom:917.480000pt;}
.y6d_c00262{bottom:930.519467pt;}
.y7_c00262{bottom:939.399467pt;}
.y4_c00262{bottom:957.959333pt;}
.y6c_c00262{bottom:985.719467pt;}
.y3_c00262{bottom:1013.319467pt;}
.y2_c00262{bottom:1060.599467pt;}
.h8_c00262{height:19.998667pt;}
.hb_c00262{height:20.000000pt;}
.ha_c00262{height:35.760000pt;}
.h7_c00262{height:35.838667pt;}
.h6_c00262{height:35.840000pt;}
.h2_c00262{height:44.800000pt;}
.h5_c00262{height:48.294844pt;}
.he_c00262{height:63.479040pt;}
.h3_c00262{height:68.288000pt;}
.h4_c00262{height:69.376000pt;}
.hd_c00262{height:107.441333pt;}
.h9_c00262{height:111.600000pt;}
.hc_c00262{height:125.360000pt;}
.h0_c00262{height:1122.520000pt;}
.h1_c00262{height:1122.666667pt;}
.w8_c00262{width:-566.901333pt;}
.w3_c00262{width:-434.421333pt;}
.w4_c00262{width:-358.821333pt;}
.w5_c00262{width:-273.461333pt;}
.w6_c00262{width:-179.061333pt;}
.w7_c00262{width:-84.501333pt;}
.w2_c00262{width:0.000000pt;}
.w9_c00262{width:0.058667pt;}
.w0_c00262{width:793.701333pt;}
.w1_c00262{width:794.000000pt;}
.x1_c00262{left:-745.700800pt;}
.x2_c00262{left:-680.260800pt;}
.x3_c00262{left:-676.660800pt;}
.x8_c00262{left:-562.263840pt;}
.x12_c00262{left:-477.780800pt;}
.x4_c00262{left:-429.780800pt;}
.x13_c00262{left:-385.860800pt;}
.x10_c00262{left:-378.420800pt;}
.xe_c00262{left:-370.980800pt;}
.x5_c00262{left:-354.180800pt;}
.x11_c00262{left:-311.540800pt;}
.xf_c00262{left:-304.100800pt;}
.x6_c00262{left:-268.820800pt;}
.x14_c00262{left:-206.020800pt;}
.xc_c00262{left:-198.635520pt;}
.x9_c00262{left:-191.169120pt;}
.x7_c00262{left:-174.340800pt;}
.xd_c00262{left:-122.551440pt;}
.xa_c00262{left:-115.085040pt;}
.x15_c00262{left:-111.460800pt;}
.xb_c00262{left:-96.638640pt;}
.x0_c00262{left:0.000000pt;}
.x18_c00262{left:113.440000pt;}
.x1a_c00262{left:132.400000pt;}
.x19_c00262{left:141.840000pt;}
.x17_c00262{left:604.400000pt;}
.x16_c00262{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00263;src:url('chunks/assets/font_164a85d5b9ae32edb4c810e2.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00263;src:url('chunks/assets/font_7c13850b822b90b5f58f900e.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00263;src:url('chunks/assets/font_4e9f4f2206e20c7e67072641.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00263{vertical-align:-26.512920px;}
.v0_c00263{vertical-align:0.000000px;}
.ls6_c00263{letter-spacing:-0.065880px;}
.ls5_c00263{letter-spacing:0.000000px;}
.ls7_c00263{letter-spacing:0.065880px;}
.ls2_c00263{letter-spacing:0.072000px;}
.ls3_c00263{letter-spacing:0.120240px;}
.ls8_c00263{letter-spacing:0.144000px;}
.ls0_c00263{letter-spacing:0.197640px;}
.ls1_c00263{letter-spacing:25.920000px;}
.ls4_c00263{letter-spacing:672.802920px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00263{word-spacing:-18.144000px;}
.ws0_c00263{word-spacing:-18.000000px;}
.ws1_c00263{word-spacing:-16.667640px;}
.ws3_c00263{word-spacing:-16.535880px;}
.ws5_c00263{word-spacing:-16.404120px;}
.wsa_c00263{word-spacing:-13.707360px;}
.ws1a_c00263{word-spacing:-1.803600px;}
.ws19_c00263{word-spacing:-1.442880px;}
.ws17_c00263{word-spacing:-0.360000px;}
.ws9_c00263{word-spacing:-0.144000px;}
.ws11_c00263{word-spacing:-0.131760px;}
.ws18_c00263{word-spacing:-0.120240px;}
.ws14_c00263{word-spacing:-0.072000px;}
.wse_c00263{word-spacing:-0.065880px;}
.wsb_c00263{word-spacing:0.000000px;}
.ws4_c00263{word-spacing:0.131760px;}
.ws2_c00263{word-spacing:0.461160px;}
.wsf_c00263{word-spacing:2.766960px;}
.wsd_c00263{word-spacing:4.545720px;}
.wsc_c00263{word-spacing:4.809240px;}
.ws16_c00263{word-spacing:6.048000px;}
.ws15_c00263{word-spacing:6.120000px;}
.ws8_c00263{word-spacing:6.192000px;}
.ws6_c00263{word-spacing:7.560000px;}
.ws13_c00263{word-spacing:7.848000px;}
.ws12_c00263{word-spacing:7.920000px;}
.ws10_c00263{word-spacing:8.498520px;}
._1_c00263{margin-left:-1.383480px;}
._0_c00263{width:1.054080px;}
.fc1_c00263{color:rgb(0,0,0);}
.fc0_c00263{color:rgb(35,31,32);}
.fs2_c00263{font-size:60.120000px;}
.fs1_c00263{font-size:65.880000px;}
.fs0_c00263{font-size:72.000000px;}
.y0_c00263{bottom:0.000000px;}
.y1d_c00263{bottom:32.084400px;}
.y1_c00263{bottom:61.748550px;}
.y12_c00263{bottom:200.834250px;}
.y1c_c00263{bottom:245.205000px;}
.y1e_c00263{bottom:259.019550px;}
.y15_c00263{bottom:296.775030px;}
.y13_c00263{bottom:323.738850px;}
.y16_c00263{bottom:338.678670px;}
.y17_c00263{bottom:380.582310px;}
.y18_c00263{bottom:422.485950px;}
.y19_c00263{bottom:464.389590px;}
.y1a_c00263{bottom:506.293230px;}
.y14_c00263{bottom:543.252000px;}
.y1b_c00263{bottom:548.196870px;}
.y11_c00263{bottom:645.794250px;}
.y10_c00263{bottom:676.844250px;}
.yf_c00263{bottom:707.894250px;}
.ye_c00263{bottom:738.944250px;}
.yd_c00263{bottom:799.582920px;}
.yc_c00263{bottom:828.108960px;}
.yb_c00263{bottom:856.552650px;}
.ya_c00263{bottom:884.996340px;}
.y9_c00263{bottom:941.966070px;}
.y8_c00263{bottom:970.409760px;}
.y7_c00263{bottom:998.853450px;}
.y6_c00263{bottom:1027.297140px;}
.y5_c00263{bottom:1084.266870px;}
.y4_c00263{bottom:1112.710560px;}
.y3_c00263{bottom:1141.154250px;}
.y2_c00263{bottom:1193.174400px;}
.h7_c00263{height:46.440000px;}
.h6_c00263{height:49.581387px;}
.h2_c00263{height:50.400000px;}
.h4_c00263{height:71.413920px;}
.h3_c00263{height:76.824000px;}
.h5_c00263{height:78.048000px;}
.h0_c00263{height:1262.835000px;}
.h1_c00263{height:1263.000000px;}
.w4_c00263{width:136.530000px;}
.w3_c00263{width:170.281500px;}
.w2_c00263{width:187.020000px;}
.w0_c00263{width:892.914000px;}
.w1_c00263{width:893.250000px;}
.x0_c00263{left:0.000000px;}
.xc_c00263{left:9.152550px;}
.xe_c00263{left:18.294150px;}
.x1_c00263{left:54.000000px;}
.x2_c00263{left:127.620000px;}
.xa_c00263{left:137.197710px;}
.x9_c00263{left:144.772830px;}
.x3_c00263{left:148.950000px;}
.x6_c00263{left:150.120000px;}
.x4_c00263{left:153.083970px;}
.x5_c00263{left:159.570000px;}
.xb_c00263{left:167.220000px;}
.x7_c00263{left:247.412700px;}
.xd_c00263{left:364.410000px;}
.xf_c00263{left:411.954150px;}
.x10_c00263{left:570.060000px;}
.x8_c00263{left:621.118620px;}
@media print{
.v1_c00263{vertical-align:-23.567040pt;}
.v0_c00263{vertical-align:0.000000pt;}
.ls6_c00263{letter-spacing:-0.058560pt;}
.ls5_c00263{letter-spacing:0.000000pt;}
.ls7_c00263{letter-spacing:0.058560pt;}
.ls2_c00263{letter-spacing:0.064000pt;}
.ls3_c00263{letter-spacing:0.106880pt;}
.ls8_c00263{letter-spacing:0.128000pt;}
.ls0_c00263{letter-spacing:0.175680pt;}
.ls1_c00263{letter-spacing:23.040000pt;}
.ls4_c00263{letter-spacing:598.047040pt;}
.ws7_c00263{word-spacing:-16.128000pt;}
.ws0_c00263{word-spacing:-16.000000pt;}
.ws1_c00263{word-spacing:-14.815680pt;}
.ws3_c00263{word-spacing:-14.698560pt;}
.ws5_c00263{word-spacing:-14.581440pt;}
.wsa_c00263{word-spacing:-12.184320pt;}
.ws1a_c00263{word-spacing:-1.603200pt;}
.ws19_c00263{word-spacing:-1.282560pt;}
.ws17_c00263{word-spacing:-0.320000pt;}
.ws9_c00263{word-spacing:-0.128000pt;}
.ws11_c00263{word-spacing:-0.117120pt;}
.ws18_c00263{word-spacing:-0.106880pt;}
.ws14_c00263{word-spacing:-0.064000pt;}
.wse_c00263{word-spacing:-0.058560pt;}
.wsb_c00263{word-spacing:0.000000pt;}
.ws4_c00263{word-spacing:0.117120pt;}
.ws2_c00263{word-spacing:0.409920pt;}
.wsf_c00263{word-spacing:2.459520pt;}
.wsd_c00263{word-spacing:4.040640pt;}
.wsc_c00263{word-spacing:4.274880pt;}
.ws16_c00263{word-spacing:5.376000pt;}
.ws15_c00263{word-spacing:5.440000pt;}
.ws8_c00263{word-spacing:5.504000pt;}
.ws6_c00263{word-spacing:6.720000pt;}
.ws13_c00263{word-spacing:6.976000pt;}
.ws12_c00263{word-spacing:7.040000pt;}
.ws10_c00263{word-spacing:7.554240pt;}
._1_c00263{margin-left:-1.229760pt;}
._0_c00263{width:0.936960pt;}
.fs2_c00263{font-size:53.440000pt;}
.fs1_c00263{font-size:58.560000pt;}
.fs0_c00263{font-size:64.000000pt;}
.y0_c00263{bottom:0.000000pt;}
.y1d_c00263{bottom:28.519467pt;}
.y1_c00263{bottom:54.887600pt;}
.y12_c00263{bottom:178.519333pt;}
.y1c_c00263{bottom:217.960000pt;}
.y1e_c00263{bottom:230.239600pt;}
.y15_c00263{bottom:263.800027pt;}
.y13_c00263{bottom:287.767867pt;}
.y16_c00263{bottom:301.047707pt;}
.y17_c00263{bottom:338.295387pt;}
.y18_c00263{bottom:375.543067pt;}
.y19_c00263{bottom:412.790747pt;}
.y1a_c00263{bottom:450.038427pt;}
.y14_c00263{bottom:482.890667pt;}
.y1b_c00263{bottom:487.286107pt;}
.y11_c00263{bottom:574.039333pt;}
.y10_c00263{bottom:601.639333pt;}
.yf_c00263{bottom:629.239333pt;}
.ye_c00263{bottom:656.839333pt;}
.yd_c00263{bottom:710.740373pt;}
.yc_c00263{bottom:736.096853pt;}
.yb_c00263{bottom:761.380133pt;}
.ya_c00263{bottom:786.663413pt;}
.y9_c00263{bottom:837.303173pt;}
.y8_c00263{bottom:862.586453pt;}
.y7_c00263{bottom:887.869733pt;}
.y6_c00263{bottom:913.153013pt;}
.y5_c00263{bottom:963.792773pt;}
.y4_c00263{bottom:989.076053pt;}
.y3_c00263{bottom:1014.359333pt;}
.y2_c00263{bottom:1060.599467pt;}
.h7_c00263{height:41.280000pt;}
.h6_c00263{height:44.072344pt;}
.h2_c00263{height:44.800000pt;}
.h4_c00263{height:63.479040pt;}
.h3_c00263{height:68.288000pt;}
.h5_c00263{height:69.376000pt;}
.h0_c00263{height:1122.520000pt;}
.h1_c00263{height:1122.666667pt;}
.w4_c00263{width:121.360000pt;}
.w3_c00263{width:151.361333pt;}
.w2_c00263{width:166.240000pt;}
.w0_c00263{width:793.701333pt;}
.w1_c00263{width:794.000000pt;}
.x0_c00263{left:0.000000pt;}
.xc_c00263{left:8.135600pt;}
.xe_c00263{left:16.261467pt;}
.x1_c00263{left:48.000000pt;}
.x2_c00263{left:113.440000pt;}
.xa_c00263{left:121.953520pt;}
.x9_c00263{left:128.686960pt;}
.x3_c00263{left:132.400000pt;}
.x6_c00263{left:133.440000pt;}
.x4_c00263{left:136.074640pt;}
.x5_c00263{left:141.840000pt;}
.xb_c00263{left:148.640000pt;}
.x7_c00263{left:219.922400pt;}
.xd_c00263{left:323.920000pt;}
.xf_c00263{left:366.181467pt;}
.x10_c00263{left:506.720000pt;}
.x8_c00263{left:552.105440pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00264;src:url('chunks/assets/font_f901d808184504d238652336.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00264;src:url('chunks/assets/font_a12b073145d82fc88590ce9b.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00264;src:url('chunks/assets/font_0910526c88cf89eededd5d0a.woff2')format("woff");}.ff4_c00264{font-family:ff4_c00264;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00264;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00264{font-family:ff5_c00264;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00264;src:url('chunks/assets/font_2d6deedd9cec7b7d9e64ff51.woff2')format("woff");}.ff6_c00264{font-family:ff6_c00264;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00264;src:url('chunks/assets/font_44eb099581fbfbfba2885e92.woff2')format("woff");}.ff7_c00264{font-family:ff7_c00264;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00264;src:url('chunks/assets/font_0910526c88cf89eededd5d0a.woff2')format("woff");}.ff8_c00264{font-family:ff8_c00264;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00264;src:url('chunks/assets/font_ff876c3fbc10765d4f6f3da3.woff2')format("woff");}.ff9_c00264{font-family:ff9_c00264;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00264{vertical-align:-26.512920px;}
.v0_c00264{vertical-align:0.000000px;}
.lsd_c00264{letter-spacing:-0.072000px;}
.lsb_c00264{letter-spacing:-0.065880px;}
.lsa_c00264{letter-spacing:0.000000px;}
.lsc_c00264{letter-spacing:0.065880px;}
.ls2_c00264{letter-spacing:0.072000px;}
.ls3_c00264{letter-spacing:0.120240px;}
.ls7_c00264{letter-spacing:0.144000px;}
.ls0_c00264{letter-spacing:0.197640px;}
.ls6_c00264{letter-spacing:21.744000px;}
.ls1_c00264{letter-spacing:25.920000px;}
.ls8_c00264{letter-spacing:29.592000px;}
.ls9_c00264{letter-spacing:29.952000px;}
.ls5_c00264{letter-spacing:30.600000px;}
.ls4_c00264{letter-spacing:672.802920px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00264{word-spacing:-18.144000px;}
.wsd_c00264{word-spacing:-18.072000px;}
.ws0_c00264{word-spacing:-18.000000px;}
.ws1_c00264{word-spacing:-16.667640px;}
.ws3_c00264{word-spacing:-16.535880px;}
.ws10_c00264{word-spacing:-16.470000px;}
.ws5_c00264{word-spacing:-16.404120px;}
.wsa_c00264{word-spacing:-13.707360px;}
.ws21_c00264{word-spacing:-1.803600px;}
.ws20_c00264{word-spacing:-1.442880px;}
.ws1e_c00264{word-spacing:-0.360000px;}
.ws9_c00264{word-spacing:-0.144000px;}
.ws18_c00264{word-spacing:-0.131760px;}
.ws1f_c00264{word-spacing:-0.120240px;}
.ws11_c00264{word-spacing:-0.118584px;}
.ws1b_c00264{word-spacing:-0.072000px;}
.ws15_c00264{word-spacing:-0.065880px;}
.ws12_c00264{word-spacing:0.000000px;}
.ws2b_c00264{word-spacing:0.072000px;}
.ws4_c00264{word-spacing:0.131760px;}
.ws2_c00264{word-spacing:0.461160px;}
.ws34_c00264{word-spacing:0.592920px;}
.ws2d_c00264{word-spacing:1.440000px;}
.wsc_c00264{word-spacing:1.468800px;}
.ws36_c00264{word-spacing:1.712880px;}
.ws2a_c00264{word-spacing:1.800000px;}
.ws16_c00264{word-spacing:2.766960px;}
.ws29_c00264{word-spacing:3.528000px;}
.ws28_c00264{word-spacing:3.600000px;}
.ws31_c00264{word-spacing:3.960000px;}
.wse_c00264{word-spacing:4.104000px;}
.ws35_c00264{word-spacing:4.479840px;}
.ws14_c00264{word-spacing:4.545720px;}
.ws13_c00264{word-spacing:4.809240px;}
.ws33_c00264{word-spacing:5.270400px;}
.ws1d_c00264{word-spacing:6.048000px;}
.ws1c_c00264{word-spacing:6.120000px;}
.ws8_c00264{word-spacing:6.192000px;}
.ws26_c00264{word-spacing:6.264000px;}
.ws25_c00264{word-spacing:6.840000px;}
.ws6_c00264{word-spacing:7.560000px;}
.ws1a_c00264{word-spacing:7.848000px;}
.ws19_c00264{word-spacing:7.920000px;}
.ws17_c00264{word-spacing:8.498520px;}
.ws30_c00264{word-spacing:11.448000px;}
.ws2f_c00264{word-spacing:11.664000px;}
.ws2e_c00264{word-spacing:11.880000px;}
.ws27_c00264{word-spacing:12.384000px;}
.wsb_c00264{word-spacing:12.600000px;}
.wsf_c00264{word-spacing:13.768920px;}
.ws32_c00264{word-spacing:13.834800px;}
.ws24_c00264{word-spacing:21.168000px;}
.ws23_c00264{word-spacing:21.240000px;}
.ws22_c00264{word-spacing:21.384000px;}
.ws2c_c00264{word-spacing:24.840000px;}
._1_c00264{margin-left:-1.383480px;}
._0_c00264{width:1.054080px;}
._4_c00264{width:3.816000px;}
._2_c00264{width:12.960000px;}
._5_c00264{width:20.534796px;}
._3_c00264{width:24.984000px;}
.fc2_c00264{color:transparent;}
.fc1_c00264{color:rgb(0,0,0);}
.fc0_c00264{color:rgb(35,31,32);}
.fs2_c00264{font-size:60.120000px;}
.fs1_c00264{font-size:65.880000px;}
.fs0_c00264{font-size:72.000000px;}
.y0_c00264{bottom:0.000000px;}
.y1d_c00264{bottom:32.084400px;}
.y1_c00264{bottom:61.748550px;}
.y3b_c00264{bottom:132.128310px;}
.y3a_c00264{bottom:160.572000px;}
.y39_c00264{bottom:189.015690px;}
.y12_c00264{bottom:200.834250px;}
.y38_c00264{bottom:217.459380px;}
.y1c_c00264{bottom:245.205000px;}
.y37_c00264{bottom:245.985420px;}
.y1e_c00264{bottom:259.019550px;}
.y36_c00264{bottom:274.429110px;}
.y15_c00264{bottom:296.775030px;}
.y35_c00264{bottom:302.872800px;}
.y13_c00264{bottom:323.738850px;}
.y16_c00264{bottom:338.678670px;}
.y34_c00264{bottom:359.760180px;}
.y17_c00264{bottom:380.582310px;}
.y33_c00264{bottom:388.286220px;}
.y32_c00264{bottom:416.729910px;}
.y18_c00264{bottom:422.485950px;}
.y31_c00264{bottom:445.173600px;}
.y19_c00264{bottom:464.389590px;}
.y30_c00264{bottom:473.617290px;}
.y1a_c00264{bottom:506.293230px;}
.y2f_c00264{bottom:530.587020px;}
.y14_c00264{bottom:543.252000px;}
.y1b_c00264{bottom:548.196870px;}
.y2e_c00264{bottom:559.030710px;}
.y2d_c00264{bottom:587.474400px;}
.y11_c00264{bottom:645.794250px;}
.y2c_c00264{bottom:648.404400px;}
.y10_c00264{bottom:676.844250px;}
.y2b_c00264{bottom:679.454400px;}
.yf_c00264{bottom:707.894250px;}
.y2a_c00264{bottom:710.504400px;}
.ye_c00264{bottom:738.944250px;}
.y29_c00264{bottom:741.554400px;}
.y28_c00264{bottom:772.604400px;}
.yd_c00264{bottom:799.582920px;}
.yc_c00264{bottom:828.108960px;}
.y27_c00264{bottom:833.260560px;}
.yb_c00264{bottom:856.552650px;}
.y26_c00264{bottom:861.704250px;}
.ya_c00264{bottom:884.996340px;}
.y25_c00264{bottom:922.634400px;}
.y9_c00264{bottom:941.966070px;}
.y24_c00264{bottom:953.684400px;}
.y8_c00264{bottom:970.409760px;}
.y23_c00264{bottom:984.734400px;}
.y7_c00264{bottom:998.853450px;}
.y22_c00264{bottom:1015.784400px;}
.y6_c00264{bottom:1027.297140px;}
.y21_c00264{bottom:1046.834400px;}
.y20_c00264{bottom:1077.884400px;}
.y5_c00264{bottom:1084.266870px;}
.y4_c00264{bottom:1112.710560px;}
.y1f_c00264{bottom:1139.804400px;}
.y3_c00264{bottom:1141.154250px;}
.y2_c00264{bottom:1193.174400px;}
.h7_c00264{height:46.440000px;}
.h6_c00264{height:49.581387px;}
.h2_c00264{height:50.400000px;}
.h4_c00264{height:71.413920px;}
.h3_c00264{height:76.824000px;}
.h5_c00264{height:78.048000px;}
.h0_c00264{height:1262.835000px;}
.h1_c00264{height:1263.000000px;}
.w3_c00264{width:-538.674000px;}
.w7_c00264{width:-358.224000px;}
.w4_c00264{width:-358.222500px;}
.w5_c00264{width:-186.324000px;}
.w2_c00264{width:0.000000px;}
.w6_c00264{width:0.066000px;}
.w0_c00264{width:892.914000px;}
.w1_c00264{width:893.250000px;}
.x1_c00264{left:-838.913400px;}
.x2_c00264{left:-765.293400px;}
.xa_c00264{left:-755.715690px;}
.x9_c00264{left:-748.140570px;}
.x3_c00264{left:-743.963400px;}
.x6_c00264{left:-742.793400px;}
.x4_c00264{left:-739.829430px;}
.x5_c00264{left:-733.343400px;}
.xb_c00264{left:-716.540850px;}
.x7_c00264{left:-645.500700px;}
.xc_c00264{left:-510.209250px;}
.xd_c00264{left:-480.959250px;}
.xe_c00264{left:-313.680150px;}
.x8_c00264{left:-271.794780px;}
.x0_c00264{left:0.000000px;}
.x12_c00264{left:127.620000px;}
.x13_c00264{left:148.950000px;}
.x14_c00264{left:153.100440px;}
.x11_c00264{left:159.570000px;}
.x10_c00264{left:679.950000px;}
.xf_c00264{left:804.366150px;}
@media print{
.v1_c00264{vertical-align:-23.567040pt;}
.v0_c00264{vertical-align:0.000000pt;}
.lsd_c00264{letter-spacing:-0.064000pt;}
.lsb_c00264{letter-spacing:-0.058560pt;}
.lsa_c00264{letter-spacing:0.000000pt;}
.lsc_c00264{letter-spacing:0.058560pt;}
.ls2_c00264{letter-spacing:0.064000pt;}
.ls3_c00264{letter-spacing:0.106880pt;}
.ls7_c00264{letter-spacing:0.128000pt;}
.ls0_c00264{letter-spacing:0.175680pt;}
.ls6_c00264{letter-spacing:19.328000pt;}
.ls1_c00264{letter-spacing:23.040000pt;}
.ls8_c00264{letter-spacing:26.304000pt;}
.ls9_c00264{letter-spacing:26.624000pt;}
.ls5_c00264{letter-spacing:27.200000pt;}
.ls4_c00264{letter-spacing:598.047040pt;}
.ws7_c00264{word-spacing:-16.128000pt;}
.wsd_c00264{word-spacing:-16.064000pt;}
.ws0_c00264{word-spacing:-16.000000pt;}
.ws1_c00264{word-spacing:-14.815680pt;}
.ws3_c00264{word-spacing:-14.698560pt;}
.ws10_c00264{word-spacing:-14.640000pt;}
.ws5_c00264{word-spacing:-14.581440pt;}
.wsa_c00264{word-spacing:-12.184320pt;}
.ws21_c00264{word-spacing:-1.603200pt;}
.ws20_c00264{word-spacing:-1.282560pt;}
.ws1e_c00264{word-spacing:-0.320000pt;}
.ws9_c00264{word-spacing:-0.128000pt;}
.ws18_c00264{word-spacing:-0.117120pt;}
.ws1f_c00264{word-spacing:-0.106880pt;}
.ws11_c00264{word-spacing:-0.105408pt;}
.ws1b_c00264{word-spacing:-0.064000pt;}
.ws15_c00264{word-spacing:-0.058560pt;}
.ws12_c00264{word-spacing:0.000000pt;}
.ws2b_c00264{word-spacing:0.064000pt;}
.ws4_c00264{word-spacing:0.117120pt;}
.ws2_c00264{word-spacing:0.409920pt;}
.ws34_c00264{word-spacing:0.527040pt;}
.ws2d_c00264{word-spacing:1.280000pt;}
.wsc_c00264{word-spacing:1.305600pt;}
.ws36_c00264{word-spacing:1.522560pt;}
.ws2a_c00264{word-spacing:1.600000pt;}
.ws16_c00264{word-spacing:2.459520pt;}
.ws29_c00264{word-spacing:3.136000pt;}
.ws28_c00264{word-spacing:3.200000pt;}
.ws31_c00264{word-spacing:3.520000pt;}
.wse_c00264{word-spacing:3.648000pt;}
.ws35_c00264{word-spacing:3.982080pt;}
.ws14_c00264{word-spacing:4.040640pt;}
.ws13_c00264{word-spacing:4.274880pt;}
.ws33_c00264{word-spacing:4.684800pt;}
.ws1d_c00264{word-spacing:5.376000pt;}
.ws1c_c00264{word-spacing:5.440000pt;}
.ws8_c00264{word-spacing:5.504000pt;}
.ws26_c00264{word-spacing:5.568000pt;}
.ws25_c00264{word-spacing:6.080000pt;}
.ws6_c00264{word-spacing:6.720000pt;}
.ws1a_c00264{word-spacing:6.976000pt;}
.ws19_c00264{word-spacing:7.040000pt;}
.ws17_c00264{word-spacing:7.554240pt;}
.ws30_c00264{word-spacing:10.176000pt;}
.ws2f_c00264{word-spacing:10.368000pt;}
.ws2e_c00264{word-spacing:10.560000pt;}
.ws27_c00264{word-spacing:11.008000pt;}
.wsb_c00264{word-spacing:11.200000pt;}
.wsf_c00264{word-spacing:12.239040pt;}
.ws32_c00264{word-spacing:12.297600pt;}
.ws24_c00264{word-spacing:18.816000pt;}
.ws23_c00264{word-spacing:18.880000pt;}
.ws22_c00264{word-spacing:19.008000pt;}
.ws2c_c00264{word-spacing:22.080000pt;}
._1_c00264{margin-left:-1.229760pt;}
._0_c00264{width:0.936960pt;}
._4_c00264{width:3.392000pt;}
._2_c00264{width:11.520000pt;}
._5_c00264{width:18.253152pt;}
._3_c00264{width:22.208000pt;}
.fs2_c00264{font-size:53.440000pt;}
.fs1_c00264{font-size:58.560000pt;}
.fs0_c00264{font-size:64.000000pt;}
.y0_c00264{bottom:0.000000pt;}
.y1d_c00264{bottom:28.519467pt;}
.y1_c00264{bottom:54.887600pt;}
.y3b_c00264{bottom:117.447387pt;}
.y3a_c00264{bottom:142.730667pt;}
.y39_c00264{bottom:168.013947pt;}
.y12_c00264{bottom:178.519333pt;}
.y38_c00264{bottom:193.297227pt;}
.y1c_c00264{bottom:217.960000pt;}
.y37_c00264{bottom:218.653707pt;}
.y1e_c00264{bottom:230.239600pt;}
.y36_c00264{bottom:243.936987pt;}
.y15_c00264{bottom:263.800027pt;}
.y35_c00264{bottom:269.220267pt;}
.y13_c00264{bottom:287.767867pt;}
.y16_c00264{bottom:301.047707pt;}
.y34_c00264{bottom:319.786827pt;}
.y17_c00264{bottom:338.295387pt;}
.y33_c00264{bottom:345.143307pt;}
.y32_c00264{bottom:370.426587pt;}
.y18_c00264{bottom:375.543067pt;}
.y31_c00264{bottom:395.709867pt;}
.y19_c00264{bottom:412.790747pt;}
.y30_c00264{bottom:420.993147pt;}
.y1a_c00264{bottom:450.038427pt;}
.y2f_c00264{bottom:471.632907pt;}
.y14_c00264{bottom:482.890667pt;}
.y1b_c00264{bottom:487.286107pt;}
.y2e_c00264{bottom:496.916187pt;}
.y2d_c00264{bottom:522.199467pt;}
.y11_c00264{bottom:574.039333pt;}
.y2c_c00264{bottom:576.359467pt;}
.y10_c00264{bottom:601.639333pt;}
.y2b_c00264{bottom:603.959467pt;}
.yf_c00264{bottom:629.239333pt;}
.y2a_c00264{bottom:631.559467pt;}
.ye_c00264{bottom:656.839333pt;}
.y29_c00264{bottom:659.159467pt;}
.y28_c00264{bottom:686.759467pt;}
.yd_c00264{bottom:710.740373pt;}
.yc_c00264{bottom:736.096853pt;}
.y27_c00264{bottom:740.676053pt;}
.yb_c00264{bottom:761.380133pt;}
.y26_c00264{bottom:765.959333pt;}
.ya_c00264{bottom:786.663413pt;}
.y25_c00264{bottom:820.119467pt;}
.y9_c00264{bottom:837.303173pt;}
.y24_c00264{bottom:847.719467pt;}
.y8_c00264{bottom:862.586453pt;}
.y23_c00264{bottom:875.319467pt;}
.y7_c00264{bottom:887.869733pt;}
.y22_c00264{bottom:902.919467pt;}
.y6_c00264{bottom:913.153013pt;}
.y21_c00264{bottom:930.519467pt;}
.y20_c00264{bottom:958.119467pt;}
.y5_c00264{bottom:963.792773pt;}
.y4_c00264{bottom:989.076053pt;}
.y1f_c00264{bottom:1013.159467pt;}
.y3_c00264{bottom:1014.359333pt;}
.y2_c00264{bottom:1060.599467pt;}
.h7_c00264{height:41.280000pt;}
.h6_c00264{height:44.072344pt;}
.h2_c00264{height:44.800000pt;}
.h4_c00264{height:63.479040pt;}
.h3_c00264{height:68.288000pt;}
.h5_c00264{height:69.376000pt;}
.h0_c00264{height:1122.520000pt;}
.h1_c00264{height:1122.666667pt;}
.w3_c00264{width:-478.821333pt;}
.w7_c00264{width:-318.421333pt;}
.w4_c00264{width:-318.420000pt;}
.w5_c00264{width:-165.621333pt;}
.w2_c00264{width:0.000000pt;}
.w6_c00264{width:0.058667pt;}
.w0_c00264{width:793.701333pt;}
.w1_c00264{width:794.000000pt;}
.x1_c00264{left:-745.700800pt;}
.x2_c00264{left:-680.260800pt;}
.xa_c00264{left:-671.747280pt;}
.x9_c00264{left:-665.013840pt;}
.x3_c00264{left:-661.300800pt;}
.x6_c00264{left:-660.260800pt;}
.x4_c00264{left:-657.626160pt;}
.x5_c00264{left:-651.860800pt;}
.xb_c00264{left:-636.925200pt;}
.x7_c00264{left:-573.778400pt;}
.xc_c00264{left:-453.519333pt;}
.xd_c00264{left:-427.519333pt;}
.xe_c00264{left:-278.826800pt;}
.x8_c00264{left:-241.595360pt;}
.x0_c00264{left:0.000000pt;}
.x12_c00264{left:113.440000pt;}
.x13_c00264{left:132.400000pt;}
.x14_c00264{left:136.089280pt;}
.x11_c00264{left:141.840000pt;}
.x10_c00264{left:604.400000pt;}
.xf_c00264{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00265;src:url('chunks/assets/font_ea9617d4938223d7c7c5370d.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00265;src:url('chunks/assets/font_884763511d9614faa275b677.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00265{letter-spacing:-0.288000px;}
.lsa_c00265{letter-spacing:-0.197640px;}
.ls9_c00265{letter-spacing:-0.065880px;}
.ls7_c00265{letter-spacing:0.000000px;}
.ls6_c00265{letter-spacing:0.065880px;}
.ls0_c00265{letter-spacing:0.072000px;}
.ls1_c00265{letter-spacing:0.144000px;}
.ls4_c00265{letter-spacing:0.197640px;}
.ls5_c00265{letter-spacing:16.206480px;}
.ls3_c00265{letter-spacing:16.529292px;}
.ls2_c00265{letter-spacing:16.601760px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00265{word-spacing:-18.000000px;}
.ws7_c00265{word-spacing:-16.667640px;}
.ws8_c00265{word-spacing:-16.535880px;}
.wsa_c00265{word-spacing:-16.470000px;}
.ws6_c00265{word-spacing:-16.404120px;}
.ws19_c00265{word-spacing:-0.144000px;}
.ws21_c00265{word-spacing:-0.131760px;}
.ws16_c00265{word-spacing:-0.072000px;}
.wsb_c00265{word-spacing:0.000000px;}
.ws23_c00265{word-spacing:0.065880px;}
.ws9_c00265{word-spacing:0.131760px;}
.ws22_c00265{word-spacing:0.197640px;}
.ws24_c00265{word-spacing:0.856440px;}
.ws1e_c00265{word-spacing:1.368000px;}
.ws1f_c00265{word-spacing:1.656000px;}
.ws20_c00265{word-spacing:1.728000px;}
.ws25_c00265{word-spacing:4.680000px;}
.wsd_c00265{word-spacing:5.328000px;}
.wse_c00265{word-spacing:5.400000px;}
.ws3_c00265{word-spacing:5.688000px;}
.ws17_c00265{word-spacing:5.976000px;}
.ws15_c00265{word-spacing:6.120000px;}
.ws1_c00265{word-spacing:6.292800px;}
.ws4_c00265{word-spacing:6.336000px;}
.ws27_c00265{word-spacing:6.768000px;}
.ws26_c00265{word-spacing:6.840000px;}
.wsf_c00265{word-spacing:7.848000px;}
.ws10_c00265{word-spacing:7.920000px;}
.wsc_c00265{word-spacing:9.288000px;}
.ws29_c00265{word-spacing:9.360000px;}
.ws12_c00265{word-spacing:9.947880px;}
.ws11_c00265{word-spacing:10.800000px;}
.ws1b_c00265{word-spacing:13.248000px;}
.ws1d_c00265{word-spacing:13.608000px;}
.ws5_c00265{word-spacing:13.680000px;}
.ws1c_c00265{word-spacing:14.040000px;}
.ws28_c00265{word-spacing:16.200000px;}
.ws18_c00265{word-spacing:25.848000px;}
.ws1a_c00265{word-spacing:26.208000px;}
.ws14_c00265{word-spacing:29.088000px;}
.ws2_c00265{word-spacing:29.160000px;}
.ws13_c00265{word-spacing:29.520000px;}
._0_c00265{margin-left:-1.224000px;}
._1_c00265{width:1.008000px;}
._4_c00265{width:5.400000px;}
._2_c00265{width:6.984000px;}
._6_c00265{width:26.208000px;}
._5_c00265{width:31.320000px;}
._3_c00265{width:48.240000px;}
.fc1_c00265{color:rgb(0,0,0);}
.fc0_c00265{color:rgb(35,31,32);}
.fs1_c00265{font-size:65.880000px;}
.fs0_c00265{font-size:72.000000px;}
.y0_c00265{bottom:0.000000px;}
.y1_c00265{bottom:61.748550px;}
.y1e_c00265{bottom:195.614250px;}
.y1d_c00265{bottom:226.664250px;}
.y1c_c00265{bottom:257.714250px;}
.y1b_c00265{bottom:288.764250px;}
.y1a_c00265{bottom:319.814250px;}
.y19_c00265{bottom:370.099230px;}
.y18_c00265{bottom:398.625270px;}
.y17_c00265{bottom:427.068960px;}
.y16_c00265{bottom:455.512650px;}
.y15_c00265{bottom:512.482380px;}
.y14_c00265{bottom:540.926070px;}
.y13_c00265{bottom:569.369760px;}
.y12_c00265{bottom:597.813450px;}
.y11_c00265{bottom:626.257140px;}
.y10_c00265{bottom:683.226870px;}
.yf_c00265{bottom:711.670560px;}
.ye_c00265{bottom:740.114250px;}
.yd_c00265{bottom:801.044250px;}
.yc_c00265{bottom:832.094250px;}
.yb_c00265{bottom:863.144250px;}
.ya_c00265{bottom:894.194250px;}
.y9_c00265{bottom:925.244250px;}
.y8_c00265{bottom:956.294250px;}
.y7_c00265{bottom:1016.957670px;}
.y6_c00265{bottom:1046.834400px;}
.y5_c00265{bottom:1077.884400px;}
.y4_c00265{bottom:1108.934400px;}
.y3_c00265{bottom:1139.984400px;}
.y2_c00265{bottom:1193.174400px;}
.h2_c00265{height:50.400000px;}
.h4_c00265{height:71.413920px;}
.h3_c00265{height:76.824000px;}
.h5_c00265{height:78.048000px;}
.h0_c00265{height:1262.835000px;}
.h1_c00265{height:1263.000000px;}
.w0_c00265{width:892.914000px;}
.w1_c00265{width:893.250000px;}
.x0_c00265{left:0.000000px;}
.x1_c00265{left:54.000000px;}
.x2_c00265{left:127.620000px;}
.x4_c00265{left:148.950000px;}
.x5_c00265{left:153.116910px;}
.x3_c00265{left:159.570000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls8_c00265{letter-spacing:-0.256000pt;}
.lsa_c00265{letter-spacing:-0.175680pt;}
.ls9_c00265{letter-spacing:-0.058560pt;}
.ls7_c00265{letter-spacing:0.000000pt;}
.ls6_c00265{letter-spacing:0.058560pt;}
.ls0_c00265{letter-spacing:0.064000pt;}
.ls1_c00265{letter-spacing:0.128000pt;}
.ls4_c00265{letter-spacing:0.175680pt;}
.ls5_c00265{letter-spacing:14.405760pt;}
.ls3_c00265{letter-spacing:14.692704pt;}
.ls2_c00265{letter-spacing:14.757120pt;}
.ws0_c00265{word-spacing:-16.000000pt;}
.ws7_c00265{word-spacing:-14.815680pt;}
.ws8_c00265{word-spacing:-14.698560pt;}
.wsa_c00265{word-spacing:-14.640000pt;}
.ws6_c00265{word-spacing:-14.581440pt;}
.ws19_c00265{word-spacing:-0.128000pt;}
.ws21_c00265{word-spacing:-0.117120pt;}
.ws16_c00265{word-spacing:-0.064000pt;}
.wsb_c00265{word-spacing:0.000000pt;}
.ws23_c00265{word-spacing:0.058560pt;}
.ws9_c00265{word-spacing:0.117120pt;}
.ws22_c00265{word-spacing:0.175680pt;}
.ws24_c00265{word-spacing:0.761280pt;}
.ws1e_c00265{word-spacing:1.216000pt;}
.ws1f_c00265{word-spacing:1.472000pt;}
.ws20_c00265{word-spacing:1.536000pt;}
.ws25_c00265{word-spacing:4.160000pt;}
.wsd_c00265{word-spacing:4.736000pt;}
.wse_c00265{word-spacing:4.800000pt;}
.ws3_c00265{word-spacing:5.056000pt;}
.ws17_c00265{word-spacing:5.312000pt;}
.ws15_c00265{word-spacing:5.440000pt;}
.ws1_c00265{word-spacing:5.593600pt;}
.ws4_c00265{word-spacing:5.632000pt;}
.ws27_c00265{word-spacing:6.016000pt;}
.ws26_c00265{word-spacing:6.080000pt;}
.wsf_c00265{word-spacing:6.976000pt;}
.ws10_c00265{word-spacing:7.040000pt;}
.wsc_c00265{word-spacing:8.256000pt;}
.ws29_c00265{word-spacing:8.320000pt;}
.ws12_c00265{word-spacing:8.842560pt;}
.ws11_c00265{word-spacing:9.600000pt;}
.ws1b_c00265{word-spacing:11.776000pt;}
.ws1d_c00265{word-spacing:12.096000pt;}
.ws5_c00265{word-spacing:12.160000pt;}
.ws1c_c00265{word-spacing:12.480000pt;}
.ws28_c00265{word-spacing:14.400000pt;}
.ws18_c00265{word-spacing:22.976000pt;}
.ws1a_c00265{word-spacing:23.296000pt;}
.ws14_c00265{word-spacing:25.856000pt;}
.ws2_c00265{word-spacing:25.920000pt;}
.ws13_c00265{word-spacing:26.240000pt;}
._0_c00265{margin-left:-1.088000pt;}
._1_c00265{width:0.896000pt;}
._4_c00265{width:4.800000pt;}
._2_c00265{width:6.208000pt;}
._6_c00265{width:23.296000pt;}
._5_c00265{width:27.840000pt;}
._3_c00265{width:42.880000pt;}
.fs1_c00265{font-size:58.560000pt;}
.fs0_c00265{font-size:64.000000pt;}
.y0_c00265{bottom:0.000000pt;}
.y1_c00265{bottom:54.887600pt;}
.y1e_c00265{bottom:173.879333pt;}
.y1d_c00265{bottom:201.479333pt;}
.y1c_c00265{bottom:229.079333pt;}
.y1b_c00265{bottom:256.679333pt;}
.y1a_c00265{bottom:284.279333pt;}
.y19_c00265{bottom:328.977093pt;}
.y18_c00265{bottom:354.333573pt;}
.y17_c00265{bottom:379.616853pt;}
.y16_c00265{bottom:404.900133pt;}
.y15_c00265{bottom:455.539893pt;}
.y14_c00265{bottom:480.823173pt;}
.y13_c00265{bottom:506.106453pt;}
.y12_c00265{bottom:531.389733pt;}
.y11_c00265{bottom:556.673013pt;}
.y10_c00265{bottom:607.312773pt;}
.yf_c00265{bottom:632.596053pt;}
.ye_c00265{bottom:657.879333pt;}
.yd_c00265{bottom:712.039333pt;}
.yc_c00265{bottom:739.639333pt;}
.yb_c00265{bottom:767.239333pt;}
.ya_c00265{bottom:794.839333pt;}
.y9_c00265{bottom:822.439333pt;}
.y8_c00265{bottom:850.039333pt;}
.y7_c00265{bottom:903.962373pt;}
.y6_c00265{bottom:930.519467pt;}
.y5_c00265{bottom:958.119467pt;}
.y4_c00265{bottom:985.719467pt;}
.y3_c00265{bottom:1013.319467pt;}
.y2_c00265{bottom:1060.599467pt;}
.h2_c00265{height:44.800000pt;}
.h4_c00265{height:63.479040pt;}
.h3_c00265{height:68.288000pt;}
.h5_c00265{height:69.376000pt;}
.h0_c00265{height:1122.520000pt;}
.h1_c00265{height:1122.666667pt;}
.w0_c00265{width:793.701333pt;}
.w1_c00265{width:794.000000pt;}
.x0_c00265{left:0.000000pt;}
.x1_c00265{left:48.000000pt;}
.x2_c00265{left:113.440000pt;}
.x4_c00265{left:132.400000pt;}
.x5_c00265{left:136.103920pt;}
.x3_c00265{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00266;src:url('chunks/assets/font_88275f8d90436f02a35cfac1.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00266;src:url('chunks/assets/font_d8e79a9af05af20aec7dbca4.woff2')format("woff");}.ff3_c00266{font-family:ff3_c00266;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00266;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00266{font-family:ff4_c00266;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00266;src:url('chunks/assets/font_5e0112806696f4ff4447a806.woff2')format("woff");}.ff5_c00266{font-family:ff5_c00266;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00266;src:url('chunks/assets/font_d4d11a77c8c5ac8453d84b7f.woff2')format("woff");}.ff6_c00266{font-family:ff6_c00266;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00266;src:url('chunks/assets/font_0cefad6c0952ae7c01d55913.woff2')format("woff");}.ff7_c00266{font-family:ff7_c00266;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00266;src:url('chunks/assets/font_8e984ed9a7503799065845ca.woff2')format("woff");}.ff8_c00266{font-family:ff8_c00266;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00266{vertical-align:-56.993760px;}
.v0_c00266{vertical-align:0.000000px;}
.lsc_c00266{letter-spacing:-0.288000px;}
.lse_c00266{letter-spacing:-0.197640px;}
.lsf_c00266{letter-spacing:-0.144000px;}
.lsd_c00266{letter-spacing:-0.065880px;}
.ls11_c00266{letter-spacing:-0.060120px;}
.lsb_c00266{letter-spacing:0.000000px;}
.ls6_c00266{letter-spacing:0.065880px;}
.ls0_c00266{letter-spacing:0.072000px;}
.ls9_c00266{letter-spacing:0.120240px;}
.ls1_c00266{letter-spacing:0.144000px;}
.ls10_c00266{letter-spacing:0.180360px;}
.ls4_c00266{letter-spacing:0.197640px;}
.ls5_c00266{letter-spacing:16.206480px;}
.ls3_c00266{letter-spacing:16.529292px;}
.ls2_c00266{letter-spacing:16.601760px;}
.ls7_c00266{letter-spacing:26.483760px;}
.ls8_c00266{letter-spacing:39.240000px;}
.lsa_c00266{letter-spacing:316.591920px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00266{word-spacing:-18.072000px;}
.ws0_c00266{word-spacing:-18.000000px;}
.ws15_c00266{word-spacing:-17.712000px;}
.ws8_c00266{word-spacing:-16.667640px;}
.ws9_c00266{word-spacing:-16.535880px;}
.wsb_c00266{word-spacing:-16.470000px;}
.ws7_c00266{word-spacing:-16.404120px;}
.ws17_c00266{word-spacing:-13.707360px;}
.ws18_c00266{word-spacing:-13.527000px;}
.ws4a_c00266{word-spacing:-1.082160px;}
.ws49_c00266{word-spacing:-0.721440px;}
.ws11_c00266{word-spacing:-0.504000px;}
.ws4b_c00266{word-spacing:-0.180360px;}
.ws27_c00266{word-spacing:-0.144000px;}
.ws2f_c00266{word-spacing:-0.131760px;}
.ws48_c00266{word-spacing:-0.120240px;}
.ws24_c00266{word-spacing:-0.072000px;}
.ws19_c00266{word-spacing:0.000000px;}
.ws31_c00266{word-spacing:0.065880px;}
.wsa_c00266{word-spacing:0.131760px;}
.ws12_c00266{word-spacing:0.144000px;}
.ws30_c00266{word-spacing:0.197640px;}
.ws32_c00266{word-spacing:0.856440px;}
.ws2c_c00266{word-spacing:1.368000px;}
.ws47_c00266{word-spacing:1.440000px;}
.ws2d_c00266{word-spacing:1.656000px;}
.ws2e_c00266{word-spacing:1.728000px;}
.ws45_c00266{word-spacing:2.160000px;}
.ws14_c00266{word-spacing:2.376000px;}
.ws44_c00266{word-spacing:2.448000px;}
.ws13_c00266{word-spacing:2.520000px;}
.ws43_c00266{word-spacing:4.248000px;}
.ws42_c00266{word-spacing:4.320000px;}
.ws10_c00266{word-spacing:4.608000px;}
.ws33_c00266{word-spacing:4.680000px;}
.ws1b_c00266{word-spacing:5.328000px;}
.ws1c_c00266{word-spacing:5.400000px;}
.ws4_c00266{word-spacing:5.688000px;}
.ws25_c00266{word-spacing:5.976000px;}
.ws23_c00266{word-spacing:6.120000px;}
.ws2_c00266{word-spacing:6.285600px;}
.wsc_c00266{word-spacing:6.292800px;}
.ws5_c00266{word-spacing:6.336000px;}
.ws35_c00266{word-spacing:6.768000px;}
.ws34_c00266{word-spacing:6.840000px;}
.ws1d_c00266{word-spacing:7.848000px;}
.ws1e_c00266{word-spacing:7.920000px;}
.ws1a_c00266{word-spacing:9.288000px;}
.ws37_c00266{word-spacing:9.360000px;}
.ws39_c00266{word-spacing:9.618480px;}
.ws20_c00266{word-spacing:9.947880px;}
.ws1f_c00266{word-spacing:10.800000px;}
.ws3a_c00266{word-spacing:11.088000px;}
.ws3b_c00266{word-spacing:11.160000px;}
.ws29_c00266{word-spacing:13.248000px;}
.ws2b_c00266{word-spacing:13.608000px;}
.ws6_c00266{word-spacing:13.680000px;}
.ws2a_c00266{word-spacing:14.040000px;}
.ws36_c00266{word-spacing:16.200000px;}
.wse_c00266{word-spacing:16.483176px;}
.wsd_c00266{word-spacing:16.601760px;}
.ws40_c00266{word-spacing:16.848000px;}
.ws41_c00266{word-spacing:16.920000px;}
.ws38_c00266{word-spacing:19.698120px;}
.wsf_c00266{word-spacing:21.312000px;}
.ws3c_c00266{word-spacing:21.528000px;}
.ws3d_c00266{word-spacing:21.600000px;}
.ws26_c00266{word-spacing:25.848000px;}
.ws28_c00266{word-spacing:26.208000px;}
.ws16_c00266{word-spacing:26.222400px;}
.ws46_c00266{word-spacing:26.640000px;}
.ws22_c00266{word-spacing:29.088000px;}
.ws3_c00266{word-spacing:29.160000px;}
.ws21_c00266{word-spacing:29.520000px;}
.ws3e_c00266{word-spacing:31.536000px;}
.ws3f_c00266{word-spacing:31.680000px;}
._0_c00266{margin-left:-1.224000px;}
._1_c00266{width:1.008000px;}
._4_c00266{width:5.400000px;}
._2_c00266{width:6.984000px;}
._6_c00266{width:26.208000px;}
._5_c00266{width:31.320000px;}
._3_c00266{width:48.240000px;}
.fc2_c00266{color:transparent;}
.fc1_c00266{color:rgb(0,0,0);}
.fc0_c00266{color:rgb(35,31,32);}
.fs2_c00266{font-size:60.120000px;}
.fs1_c00266{font-size:65.880000px;}
.fs0_c00266{font-size:72.000000px;}
.y0_c00266{bottom:0.000000px;}
.y3f_c00266{bottom:32.084400px;}
.y1_c00266{bottom:61.748550px;}
.y31_c00266{bottom:151.694250px;}
.y30_c00266{bottom:182.744250px;}
.y1e_c00266{bottom:195.614250px;}
.y2f_c00266{bottom:213.794250px;}
.y1d_c00266{bottom:226.664250px;}
.y1c_c00266{bottom:257.714250px;}
.y2e_c00266{bottom:265.274250px;}
.y1b_c00266{bottom:288.764250px;}
.y1a_c00266{bottom:319.814250px;}
.y2d_c00266{bottom:327.554250px;}
.y19_c00266{bottom:370.099230px;}
.y3e_c00266{bottom:382.455000px;}
.y40_c00266{bottom:396.269550px;}
.y18_c00266{bottom:398.625270px;}
.y17_c00266{bottom:427.068960px;}
.y36_c00266{bottom:434.042130px;}
.y16_c00266{bottom:455.512650px;}
.y37_c00266{bottom:469.963830px;}
.y34_c00266{bottom:482.874600px;}
.y38_c00266{bottom:505.885530px;}
.y15_c00266{bottom:512.482380px;}
.y14_c00266{bottom:540.926070px;}
.y39_c00266{bottom:541.807230px;}
.y13_c00266{bottom:569.369760px;}
.y3a_c00266{bottom:577.728930px;}
.y35_c00266{bottom:582.658770px;}
.y12_c00266{bottom:597.813450px;}
.y3b_c00266{bottom:613.650630px;}
.y11_c00266{bottom:626.257140px;}
.y33_c00266{bottom:639.682590px;}
.y3c_c00266{bottom:649.572330px;}
.y32_c00266{bottom:668.194500px;}
.y10_c00266{bottom:683.226870px;}
.y3d_c00266{bottom:685.494030px;}
.yf_c00266{bottom:711.670560px;}
.ye_c00266{bottom:740.114250px;}
.y2c_c00266{bottom:751.904250px;}
.y2b_c00266{bottom:782.954250px;}
.yd_c00266{bottom:801.044250px;}
.y2a_c00266{bottom:814.004250px;}
.yc_c00266{bottom:832.094250px;}
.y29_c00266{bottom:845.054250px;}
.yb_c00266{bottom:863.144250px;}
.y28_c00266{bottom:876.104250px;}
.ya_c00266{bottom:894.194250px;}
.y27_c00266{bottom:907.154250px;}
.y9_c00266{bottom:925.244250px;}
.y8_c00266{bottom:956.294250px;}
.y26_c00266{bottom:967.807500px;}
.y25_c00266{bottom:996.251190px;}
.y7_c00266{bottom:1016.957670px;}
.y24_c00266{bottom:1024.777230px;}
.y6_c00266{bottom:1046.834400px;}
.y5_c00266{bottom:1077.884400px;}
.y23_c00266{bottom:1084.266870px;}
.y4_c00266{bottom:1108.934400px;}
.y22_c00266{bottom:1112.710560px;}
.y20_c00266{bottom:1139.984400px;}
.y3_c00266{bottom:1139.984550px;}
.y21_c00266{bottom:1141.154250px;}
.y1f_c00266{bottom:1193.174400px;}
.y2_c00266{bottom:1193.174550px;}
.h7_c00266{height:46.440000px;}
.h6_c00266{height:49.581387px;}
.h2_c00266{height:50.400000px;}
.h4_c00266{height:71.413920px;}
.h3_c00266{height:76.824000px;}
.h5_c00266{height:78.048000px;}
.h0_c00266{height:1262.835000px;}
.h1_c00266{height:1263.000000px;}
.w2_c00266{width:0.000000px;}
.w3_c00266{width:0.066000px;}
.w7_c00266{width:100.800000px;}
.w8_c00266{width:104.490000px;}
.w5_c00266{width:129.420000px;}
.w4_c00266{width:137.787000px;}
.w6_c00266{width:140.400000px;}
.w0_c00266{width:892.914000px;}
.w1_c00266{width:893.250000px;}
.x1_c00266{left:-838.913400px;}
.x2_c00266{left:-765.293400px;}
.x4_c00266{left:-743.963400px;}
.x5_c00266{left:-739.796490px;}
.x3_c00266{left:-733.343400px;}
.x0_c00266{left:0.000000px;}
.x1a_c00266{left:9.052800px;}
.x15_c00266{left:18.293250px;}
.x12_c00266{left:24.492300px;}
.xb_c00266{left:127.620000px;}
.x8_c00266{left:148.950000px;}
.x9_c00266{left:153.100440px;}
.xa_c00266{left:159.570000px;}
.x10_c00266{left:161.189190px;}
.x11_c00266{left:187.470000px;}
.x13_c00266{left:205.662300px;}
.xc_c00266{left:239.149800px;}
.x14_c00266{left:300.960000px;}
.x16_c00266{left:336.353250px;}
.xd_c00266{left:348.417900px;}
.x17_c00266{left:404.730000px;}
.x18_c00266{left:422.947950px;}
.xe_c00266{left:461.563740px;}
.x19_c00266{left:533.790000px;}
.xf_c00266{left:570.831840px;}
.x1b_c00266{left:641.250000px;}
.x7_c00266{left:679.950000px;}
.x6_c00266{left:804.366150px;}
@media print{
.v1_c00266{vertical-align:-50.661120pt;}
.v0_c00266{vertical-align:0.000000pt;}
.lsc_c00266{letter-spacing:-0.256000pt;}
.lse_c00266{letter-spacing:-0.175680pt;}
.lsf_c00266{letter-spacing:-0.128000pt;}
.lsd_c00266{letter-spacing:-0.058560pt;}
.ls11_c00266{letter-spacing:-0.053440pt;}
.lsb_c00266{letter-spacing:0.000000pt;}
.ls6_c00266{letter-spacing:0.058560pt;}
.ls0_c00266{letter-spacing:0.064000pt;}
.ls9_c00266{letter-spacing:0.106880pt;}
.ls1_c00266{letter-spacing:0.128000pt;}
.ls10_c00266{letter-spacing:0.160320pt;}
.ls4_c00266{letter-spacing:0.175680pt;}
.ls5_c00266{letter-spacing:14.405760pt;}
.ls3_c00266{letter-spacing:14.692704pt;}
.ls2_c00266{letter-spacing:14.757120pt;}
.ls7_c00266{letter-spacing:23.541120pt;}
.ls8_c00266{letter-spacing:34.880000pt;}
.lsa_c00266{letter-spacing:281.415040pt;}
.ws1_c00266{word-spacing:-16.064000pt;}
.ws0_c00266{word-spacing:-16.000000pt;}
.ws15_c00266{word-spacing:-15.744000pt;}
.ws8_c00266{word-spacing:-14.815680pt;}
.ws9_c00266{word-spacing:-14.698560pt;}
.wsb_c00266{word-spacing:-14.640000pt;}
.ws7_c00266{word-spacing:-14.581440pt;}
.ws17_c00266{word-spacing:-12.184320pt;}
.ws18_c00266{word-spacing:-12.024000pt;}
.ws4a_c00266{word-spacing:-0.961920pt;}
.ws49_c00266{word-spacing:-0.641280pt;}
.ws11_c00266{word-spacing:-0.448000pt;}
.ws4b_c00266{word-spacing:-0.160320pt;}
.ws27_c00266{word-spacing:-0.128000pt;}
.ws2f_c00266{word-spacing:-0.117120pt;}
.ws48_c00266{word-spacing:-0.106880pt;}
.ws24_c00266{word-spacing:-0.064000pt;}
.ws19_c00266{word-spacing:0.000000pt;}
.ws31_c00266{word-spacing:0.058560pt;}
.wsa_c00266{word-spacing:0.117120pt;}
.ws12_c00266{word-spacing:0.128000pt;}
.ws30_c00266{word-spacing:0.175680pt;}
.ws32_c00266{word-spacing:0.761280pt;}
.ws2c_c00266{word-spacing:1.216000pt;}
.ws47_c00266{word-spacing:1.280000pt;}
.ws2d_c00266{word-spacing:1.472000pt;}
.ws2e_c00266{word-spacing:1.536000pt;}
.ws45_c00266{word-spacing:1.920000pt;}
.ws14_c00266{word-spacing:2.112000pt;}
.ws44_c00266{word-spacing:2.176000pt;}
.ws13_c00266{word-spacing:2.240000pt;}
.ws43_c00266{word-spacing:3.776000pt;}
.ws42_c00266{word-spacing:3.840000pt;}
.ws10_c00266{word-spacing:4.096000pt;}
.ws33_c00266{word-spacing:4.160000pt;}
.ws1b_c00266{word-spacing:4.736000pt;}
.ws1c_c00266{word-spacing:4.800000pt;}
.ws4_c00266{word-spacing:5.056000pt;}
.ws25_c00266{word-spacing:5.312000pt;}
.ws23_c00266{word-spacing:5.440000pt;}
.ws2_c00266{word-spacing:5.587200pt;}
.wsc_c00266{word-spacing:5.593600pt;}
.ws5_c00266{word-spacing:5.632000pt;}
.ws35_c00266{word-spacing:6.016000pt;}
.ws34_c00266{word-spacing:6.080000pt;}
.ws1d_c00266{word-spacing:6.976000pt;}
.ws1e_c00266{word-spacing:7.040000pt;}
.ws1a_c00266{word-spacing:8.256000pt;}
.ws37_c00266{word-spacing:8.320000pt;}
.ws39_c00266{word-spacing:8.549760pt;}
.ws20_c00266{word-spacing:8.842560pt;}
.ws1f_c00266{word-spacing:9.600000pt;}
.ws3a_c00266{word-spacing:9.856000pt;}
.ws3b_c00266{word-spacing:9.920000pt;}
.ws29_c00266{word-spacing:11.776000pt;}
.ws2b_c00266{word-spacing:12.096000pt;}
.ws6_c00266{word-spacing:12.160000pt;}
.ws2a_c00266{word-spacing:12.480000pt;}
.ws36_c00266{word-spacing:14.400000pt;}
.wse_c00266{word-spacing:14.651712pt;}
.wsd_c00266{word-spacing:14.757120pt;}
.ws40_c00266{word-spacing:14.976000pt;}
.ws41_c00266{word-spacing:15.040000pt;}
.ws38_c00266{word-spacing:17.509440pt;}
.wsf_c00266{word-spacing:18.944000pt;}
.ws3c_c00266{word-spacing:19.136000pt;}
.ws3d_c00266{word-spacing:19.200000pt;}
.ws26_c00266{word-spacing:22.976000pt;}
.ws28_c00266{word-spacing:23.296000pt;}
.ws16_c00266{word-spacing:23.308800pt;}
.ws46_c00266{word-spacing:23.680000pt;}
.ws22_c00266{word-spacing:25.856000pt;}
.ws3_c00266{word-spacing:25.920000pt;}
.ws21_c00266{word-spacing:26.240000pt;}
.ws3e_c00266{word-spacing:28.032000pt;}
.ws3f_c00266{word-spacing:28.160000pt;}
._0_c00266{margin-left:-1.088000pt;}
._1_c00266{width:0.896000pt;}
._4_c00266{width:4.800000pt;}
._2_c00266{width:6.208000pt;}
._6_c00266{width:23.296000pt;}
._5_c00266{width:27.840000pt;}
._3_c00266{width:42.880000pt;}
.fs2_c00266{font-size:53.440000pt;}
.fs1_c00266{font-size:58.560000pt;}
.fs0_c00266{font-size:64.000000pt;}
.y0_c00266{bottom:0.000000pt;}
.y3f_c00266{bottom:28.519467pt;}
.y1_c00266{bottom:54.887600pt;}
.y31_c00266{bottom:134.839333pt;}
.y30_c00266{bottom:162.439333pt;}
.y1e_c00266{bottom:173.879333pt;}
.y2f_c00266{bottom:190.039333pt;}
.y1d_c00266{bottom:201.479333pt;}
.y1c_c00266{bottom:229.079333pt;}
.y2e_c00266{bottom:235.799333pt;}
.y1b_c00266{bottom:256.679333pt;}
.y1a_c00266{bottom:284.279333pt;}
.y2d_c00266{bottom:291.159333pt;}
.y19_c00266{bottom:328.977093pt;}
.y3e_c00266{bottom:339.960000pt;}
.y40_c00266{bottom:352.239600pt;}
.y18_c00266{bottom:354.333573pt;}
.y17_c00266{bottom:379.616853pt;}
.y36_c00266{bottom:385.815227pt;}
.y16_c00266{bottom:404.900133pt;}
.y37_c00266{bottom:417.745627pt;}
.y34_c00266{bottom:429.221867pt;}
.y38_c00266{bottom:449.676027pt;}
.y15_c00266{bottom:455.539893pt;}
.y14_c00266{bottom:480.823173pt;}
.y39_c00266{bottom:481.606427pt;}
.y13_c00266{bottom:506.106453pt;}
.y3a_c00266{bottom:513.536827pt;}
.y35_c00266{bottom:517.918907pt;}
.y12_c00266{bottom:531.389733pt;}
.y3b_c00266{bottom:545.467227pt;}
.y11_c00266{bottom:556.673013pt;}
.y33_c00266{bottom:568.606747pt;}
.y3c_c00266{bottom:577.397627pt;}
.y32_c00266{bottom:593.950667pt;}
.y10_c00266{bottom:607.312773pt;}
.y3d_c00266{bottom:609.328027pt;}
.yf_c00266{bottom:632.596053pt;}
.ye_c00266{bottom:657.879333pt;}
.y2c_c00266{bottom:668.359333pt;}
.y2b_c00266{bottom:695.959333pt;}
.yd_c00266{bottom:712.039333pt;}
.y2a_c00266{bottom:723.559333pt;}
.yc_c00266{bottom:739.639333pt;}
.y29_c00266{bottom:751.159333pt;}
.yb_c00266{bottom:767.239333pt;}
.y28_c00266{bottom:778.759333pt;}
.ya_c00266{bottom:794.839333pt;}
.y27_c00266{bottom:806.359333pt;}
.y9_c00266{bottom:822.439333pt;}
.y8_c00266{bottom:850.039333pt;}
.y26_c00266{bottom:860.273333pt;}
.y25_c00266{bottom:885.556613pt;}
.y7_c00266{bottom:903.962373pt;}
.y24_c00266{bottom:910.913093pt;}
.y6_c00266{bottom:930.519467pt;}
.y5_c00266{bottom:958.119467pt;}
.y23_c00266{bottom:963.792773pt;}
.y4_c00266{bottom:985.719467pt;}
.y22_c00266{bottom:989.076053pt;}
.y20_c00266{bottom:1013.319467pt;}
.y3_c00266{bottom:1013.319600pt;}
.y21_c00266{bottom:1014.359333pt;}
.y1f_c00266{bottom:1060.599467pt;}
.y2_c00266{bottom:1060.599600pt;}
.h7_c00266{height:41.280000pt;}
.h6_c00266{height:44.072344pt;}
.h2_c00266{height:44.800000pt;}
.h4_c00266{height:63.479040pt;}
.h3_c00266{height:68.288000pt;}
.h5_c00266{height:69.376000pt;}
.h0_c00266{height:1122.520000pt;}
.h1_c00266{height:1122.666667pt;}
.w2_c00266{width:0.000000pt;}
.w3_c00266{width:0.058667pt;}
.w7_c00266{width:89.600000pt;}
.w8_c00266{width:92.880000pt;}
.w5_c00266{width:115.040000pt;}
.w4_c00266{width:122.477333pt;}
.w6_c00266{width:124.800000pt;}
.w0_c00266{width:793.701333pt;}
.w1_c00266{width:794.000000pt;}
.x1_c00266{left:-745.700800pt;}
.x2_c00266{left:-680.260800pt;}
.x4_c00266{left:-661.300800pt;}
.x5_c00266{left:-657.596880pt;}
.x3_c00266{left:-651.860800pt;}
.x0_c00266{left:0.000000pt;}
.x1a_c00266{left:8.046933pt;}
.x15_c00266{left:16.260667pt;}
.x12_c00266{left:21.770933pt;}
.xb_c00266{left:113.440000pt;}
.x8_c00266{left:132.400000pt;}
.x9_c00266{left:136.089280pt;}
.xa_c00266{left:141.840000pt;}
.x10_c00266{left:143.279280pt;}
.x11_c00266{left:166.640000pt;}
.x13_c00266{left:182.810933pt;}
.xc_c00266{left:212.577600pt;}
.x14_c00266{left:267.520000pt;}
.x16_c00266{left:298.980667pt;}
.xd_c00266{left:309.704800pt;}
.x17_c00266{left:359.760000pt;}
.x18_c00266{left:375.953733pt;}
.xe_c00266{left:410.278880pt;}
.x19_c00266{left:474.480000pt;}
.xf_c00266{left:507.406080pt;}
.x1b_c00266{left:570.000000pt;}
.x7_c00266{left:604.400000pt;}
.x6_c00266{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00267;src:url('chunks/assets/font_20eca65e52ded9582fb81b58.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00267;src:url('chunks/assets/font_d36f972dc95f6e2e3464c012.woff2')format("woff");}.ff3_c00267{font-family:ff3_c00267;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.lse_c00267{letter-spacing:-0.360000px;}
.lsc_c00267{letter-spacing:-0.288000px;}
.lsd_c00267{letter-spacing:-0.216000px;}
.lsb_c00267{letter-spacing:-0.065880px;}
.ls9_c00267{letter-spacing:0.000000px;}
.ls7_c00267{letter-spacing:0.065880px;}
.ls0_c00267{letter-spacing:0.072000px;}
.lsa_c00267{letter-spacing:0.144000px;}
.ls1_c00267{letter-spacing:0.197640px;}
.ls8_c00267{letter-spacing:16.140600px;}
.ls6_c00267{letter-spacing:16.535880px;}
.ls5_c00267{letter-spacing:16.601760px;}
.ls4_c00267{letter-spacing:25.992000px;}
.ls3_c00267{letter-spacing:30.621600px;}
.ls2_c00267{letter-spacing:39.024000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00267{word-spacing:-18.144000px;}
.ws6_c00267{word-spacing:-18.072000px;}
.ws0_c00267{word-spacing:-18.000000px;}
.ws8_c00267{word-spacing:-17.712000px;}
.wsb_c00267{word-spacing:-17.640000px;}
.ws2_c00267{word-spacing:-16.667640px;}
.wsc_c00267{word-spacing:-16.535880px;}
.wse_c00267{word-spacing:-16.470000px;}
.wsd_c00267{word-spacing:-16.404120px;}
.ws24_c00267{word-spacing:-0.197640px;}
.ws21_c00267{word-spacing:-0.144000px;}
.ws14_c00267{word-spacing:-0.131760px;}
.ws12_c00267{word-spacing:-0.072000px;}
.ws22_c00267{word-spacing:-0.065880px;}
.wsf_c00267{word-spacing:0.000000px;}
.ws15_c00267{word-spacing:0.065880px;}
.ws3_c00267{word-spacing:0.131760px;}
.ws1d_c00267{word-spacing:0.216000px;}
.ws20_c00267{word-spacing:0.576000px;}
.ws1f_c00267{word-spacing:0.936000px;}
.ws1e_c00267{word-spacing:1.080000px;}
.ws13_c00267{word-spacing:1.317600px;}
.ws5_c00267{word-spacing:5.256000px;}
.ws17_c00267{word-spacing:5.328000px;}
.ws16_c00267{word-spacing:5.400000px;}
.ws4_c00267{word-spacing:5.544000px;}
.ws9_c00267{word-spacing:7.704000px;}
.ws1c_c00267{word-spacing:7.848000px;}
.wsa_c00267{word-spacing:7.920000px;}
.ws23_c00267{word-spacing:11.792520px;}
.ws1b_c00267{word-spacing:12.888000px;}
.ws18_c00267{word-spacing:20.736000px;}
.ws1a_c00267{word-spacing:20.808000px;}
.ws7_c00267{word-spacing:20.822400px;}
.ws19_c00267{word-spacing:20.880000px;}
.ws10_c00267{word-spacing:24.768000px;}
.ws11_c00267{word-spacing:24.840000px;}
._0_c00267{margin-left:-1.022400px;}
._1_c00267{width:1.119960px;}
._4_c00267{width:7.272000px;}
._3_c00267{width:29.872800px;}
._2_c00267{width:39.876840px;}
.fc1_c00267{color:rgb(0,0,0);}
.fc0_c00267{color:rgb(35,31,32);}
.fs1_c00267{font-size:65.880000px;}
.fs0_c00267{font-size:72.000000px;}
.y0_c00267{bottom:0.000000px;}
.y1_c00267{bottom:61.748550px;}
.y20_c00267{bottom:147.608580px;}
.y1f_c00267{bottom:176.052270px;}
.y1e_c00267{bottom:204.578310px;}
.y1d_c00267{bottom:233.022000px;}
.y1c_c00267{bottom:261.465690px;}
.y1b_c00267{bottom:289.909380px;}
.y1a_c00267{bottom:318.353070px;}
.y19_c00267{bottom:346.879110px;}
.y18_c00267{bottom:403.766490px;}
.y17_c00267{bottom:432.210180px;}
.y16_c00267{bottom:460.736220px;}
.y15_c00267{bottom:489.179910px;}
.y14_c00267{bottom:517.623600px;}
.y13_c00267{bottom:574.510980px;}
.y12_c00267{bottom:603.037020px;}
.y11_c00267{bottom:631.480710px;}
.y10_c00267{bottom:659.924400px;}
.yf_c00267{bottom:720.854400px;}
.ye_c00267{bottom:751.904400px;}
.yd_c00267{bottom:782.954400px;}
.yc_c00267{bottom:814.004400px;}
.yb_c00267{bottom:845.054400px;}
.ya_c00267{bottom:876.104400px;}
.y9_c00267{bottom:936.753390px;}
.y8_c00267{bottom:965.197080px;}
.y7_c00267{bottom:993.723120px;}
.y6_c00267{bottom:1022.166810px;}
.y5_c00267{bottom:1050.610500px;}
.y4_c00267{bottom:1108.934400px;}
.y3_c00267{bottom:1139.984400px;}
.y2_c00267{bottom:1193.174400px;}
.h2_c00267{height:50.400000px;}
.h5_c00267{height:71.413920px;}
.h3_c00267{height:76.824000px;}
.h4_c00267{height:78.048000px;}
.h0_c00267{height:1262.835000px;}
.h1_c00267{height:1263.000000px;}
.w0_c00267{width:892.914000px;}
.w1_c00267{width:893.250000px;}
.x0_c00267{left:0.000000px;}
.x1_c00267{left:54.000000px;}
.x2_c00267{left:127.620000px;}
.x3_c00267{left:148.950000px;}
.x4_c00267{left:153.083970px;}
.x5_c00267{left:159.570000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.lse_c00267{letter-spacing:-0.320000pt;}
.lsc_c00267{letter-spacing:-0.256000pt;}
.lsd_c00267{letter-spacing:-0.192000pt;}
.lsb_c00267{letter-spacing:-0.058560pt;}
.ls9_c00267{letter-spacing:0.000000pt;}
.ls7_c00267{letter-spacing:0.058560pt;}
.ls0_c00267{letter-spacing:0.064000pt;}
.lsa_c00267{letter-spacing:0.128000pt;}
.ls1_c00267{letter-spacing:0.175680pt;}
.ls8_c00267{letter-spacing:14.347200pt;}
.ls6_c00267{letter-spacing:14.698560pt;}
.ls5_c00267{letter-spacing:14.757120pt;}
.ls4_c00267{letter-spacing:23.104000pt;}
.ls3_c00267{letter-spacing:27.219200pt;}
.ls2_c00267{letter-spacing:34.688000pt;}
.ws1_c00267{word-spacing:-16.128000pt;}
.ws6_c00267{word-spacing:-16.064000pt;}
.ws0_c00267{word-spacing:-16.000000pt;}
.ws8_c00267{word-spacing:-15.744000pt;}
.wsb_c00267{word-spacing:-15.680000pt;}
.ws2_c00267{word-spacing:-14.815680pt;}
.wsc_c00267{word-spacing:-14.698560pt;}
.wse_c00267{word-spacing:-14.640000pt;}
.wsd_c00267{word-spacing:-14.581440pt;}
.ws24_c00267{word-spacing:-0.175680pt;}
.ws21_c00267{word-spacing:-0.128000pt;}
.ws14_c00267{word-spacing:-0.117120pt;}
.ws12_c00267{word-spacing:-0.064000pt;}
.ws22_c00267{word-spacing:-0.058560pt;}
.wsf_c00267{word-spacing:0.000000pt;}
.ws15_c00267{word-spacing:0.058560pt;}
.ws3_c00267{word-spacing:0.117120pt;}
.ws1d_c00267{word-spacing:0.192000pt;}
.ws20_c00267{word-spacing:0.512000pt;}
.ws1f_c00267{word-spacing:0.832000pt;}
.ws1e_c00267{word-spacing:0.960000pt;}
.ws13_c00267{word-spacing:1.171200pt;}
.ws5_c00267{word-spacing:4.672000pt;}
.ws17_c00267{word-spacing:4.736000pt;}
.ws16_c00267{word-spacing:4.800000pt;}
.ws4_c00267{word-spacing:4.928000pt;}
.ws9_c00267{word-spacing:6.848000pt;}
.ws1c_c00267{word-spacing:6.976000pt;}
.wsa_c00267{word-spacing:7.040000pt;}
.ws23_c00267{word-spacing:10.482240pt;}
.ws1b_c00267{word-spacing:11.456000pt;}
.ws18_c00267{word-spacing:18.432000pt;}
.ws1a_c00267{word-spacing:18.496000pt;}
.ws7_c00267{word-spacing:18.508800pt;}
.ws19_c00267{word-spacing:18.560000pt;}
.ws10_c00267{word-spacing:22.016000pt;}
.ws11_c00267{word-spacing:22.080000pt;}
._0_c00267{margin-left:-0.908800pt;}
._1_c00267{width:0.995520pt;}
._4_c00267{width:6.464000pt;}
._3_c00267{width:26.553600pt;}
._2_c00267{width:35.446080pt;}
.fs1_c00267{font-size:58.560000pt;}
.fs0_c00267{font-size:64.000000pt;}
.y0_c00267{bottom:0.000000pt;}
.y1_c00267{bottom:54.887600pt;}
.y20_c00267{bottom:131.207627pt;}
.y1f_c00267{bottom:156.490907pt;}
.y1e_c00267{bottom:181.847387pt;}
.y1d_c00267{bottom:207.130667pt;}
.y1c_c00267{bottom:232.413947pt;}
.y1b_c00267{bottom:257.697227pt;}
.y1a_c00267{bottom:282.980507pt;}
.y19_c00267{bottom:308.336987pt;}
.y18_c00267{bottom:358.903547pt;}
.y17_c00267{bottom:384.186827pt;}
.y16_c00267{bottom:409.543307pt;}
.y15_c00267{bottom:434.826587pt;}
.y14_c00267{bottom:460.109867pt;}
.y13_c00267{bottom:510.676427pt;}
.y12_c00267{bottom:536.032907pt;}
.y11_c00267{bottom:561.316187pt;}
.y10_c00267{bottom:586.599467pt;}
.yf_c00267{bottom:640.759467pt;}
.ye_c00267{bottom:668.359467pt;}
.yd_c00267{bottom:695.959467pt;}
.yc_c00267{bottom:723.559467pt;}
.yb_c00267{bottom:751.159467pt;}
.ya_c00267{bottom:778.759467pt;}
.y9_c00267{bottom:832.669680pt;}
.y8_c00267{bottom:857.952960pt;}
.y7_c00267{bottom:883.309440pt;}
.y6_c00267{bottom:908.592720pt;}
.y5_c00267{bottom:933.876000pt;}
.y4_c00267{bottom:985.719467pt;}
.y3_c00267{bottom:1013.319467pt;}
.y2_c00267{bottom:1060.599467pt;}
.h2_c00267{height:44.800000pt;}
.h5_c00267{height:63.479040pt;}
.h3_c00267{height:68.288000pt;}
.h4_c00267{height:69.376000pt;}
.h0_c00267{height:1122.520000pt;}
.h1_c00267{height:1122.666667pt;}
.w0_c00267{width:793.701333pt;}
.w1_c00267{width:794.000000pt;}
.x0_c00267{left:0.000000pt;}
.x1_c00267{left:48.000000pt;}
.x2_c00267{left:113.440000pt;}
.x3_c00267{left:132.400000pt;}
.x4_c00267{left:136.074640pt;}
.x5_c00267{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00268;src:url('chunks/assets/font_473047f50fb724a5b904686e.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00268;src:url('chunks/assets/font_638c4effedb88f6cbaad034e.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00268;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00268{font-family:ff4_c00268;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00268;src:url('chunks/assets/font_0d43e79afd675887cc1b00f6.woff2')format("woff");}.ff5_c00268{font-family:ff5_c00268;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00268;src:url('chunks/assets/font_95e65660984d2e7a732f0d14.woff2')format("woff");}.ff6_c00268{font-family:ff6_c00268;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00268;src:url('chunks/assets/font_214dc4e533bbc5973488c43b.woff2')format("woff");}.ff7_c00268{font-family:ff7_c00268;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00268{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls12_c00268{letter-spacing:-0.360000px;}
.ls10_c00268{letter-spacing:-0.288000px;}
.ls11_c00268{letter-spacing:-0.216000px;}
.lsf_c00268{letter-spacing:-0.065880px;}
.lsd_c00268{letter-spacing:0.000000px;}
.ls7_c00268{letter-spacing:0.065880px;}
.ls0_c00268{letter-spacing:0.072000px;}
.lsb_c00268{letter-spacing:0.120240px;}
.lse_c00268{letter-spacing:0.144000px;}
.ls1_c00268{letter-spacing:0.197640px;}
.ls8_c00268{letter-spacing:16.140600px;}
.ls6_c00268{letter-spacing:16.535880px;}
.ls5_c00268{letter-spacing:16.601760px;}
.lsa_c00268{letter-spacing:22.694400px;}
.ls4_c00268{letter-spacing:25.992000px;}
.ls3_c00268{letter-spacing:30.621600px;}
.ls2_c00268{letter-spacing:39.024000px;}
.ls9_c00268{letter-spacing:45.000000px;}
.lsc_c00268{letter-spacing:238.375800px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00268{word-spacing:-18.144000px;}
.ws1_c00268{word-spacing:-18.072000px;}
.ws0_c00268{word-spacing:-18.000000px;}
.ws8_c00268{word-spacing:-17.712000px;}
.wsb_c00268{word-spacing:-17.640000px;}
.ws3_c00268{word-spacing:-16.667640px;}
.wsc_c00268{word-spacing:-16.535880px;}
.wse_c00268{word-spacing:-16.470000px;}
.wsd_c00268{word-spacing:-16.404120px;}
.ws11_c00268{word-spacing:-13.707360px;}
.ws2f_c00268{word-spacing:-1.803600px;}
.ws2e_c00268{word-spacing:-1.442880px;}
.ws2d_c00268{word-spacing:-0.360000px;}
.ws26_c00268{word-spacing:-0.197640px;}
.ws10_c00268{word-spacing:-0.144000px;}
.ws17_c00268{word-spacing:-0.131760px;}
.ws15_c00268{word-spacing:-0.072000px;}
.ws24_c00268{word-spacing:-0.065880px;}
.ws12_c00268{word-spacing:0.000000px;}
.ws18_c00268{word-spacing:0.065880px;}
.ws4_c00268{word-spacing:0.131760px;}
.ws20_c00268{word-spacing:0.216000px;}
.ws23_c00268{word-spacing:0.576000px;}
.ws22_c00268{word-spacing:0.936000px;}
.ws21_c00268{word-spacing:1.080000px;}
.ws16_c00268{word-spacing:1.317600px;}
.ws28_c00268{word-spacing:4.608000px;}
.ws27_c00268{word-spacing:4.680000px;}
.ws6_c00268{word-spacing:5.256000px;}
.ws1a_c00268{word-spacing:5.328000px;}
.ws19_c00268{word-spacing:5.400000px;}
.ws5_c00268{word-spacing:5.544000px;}
.ws9_c00268{word-spacing:7.704000px;}
.ws1f_c00268{word-spacing:7.848000px;}
.wsa_c00268{word-spacing:7.920000px;}
.ws25_c00268{word-spacing:11.792520px;}
.ws1e_c00268{word-spacing:12.888000px;}
.ws2c_c00268{word-spacing:16.488000px;}
.wsf_c00268{word-spacing:16.588800px;}
.ws29_c00268{word-spacing:16.920000px;}
.ws2a_c00268{word-spacing:18.648000px;}
.ws2b_c00268{word-spacing:18.720000px;}
.ws1b_c00268{word-spacing:20.736000px;}
.ws1d_c00268{word-spacing:20.808000px;}
.ws7_c00268{word-spacing:20.822400px;}
.ws1c_c00268{word-spacing:20.880000px;}
.ws13_c00268{word-spacing:24.768000px;}
.ws14_c00268{word-spacing:24.840000px;}
._0_c00268{margin-left:-1.029600px;}
._1_c00268{width:1.119960px;}
._4_c00268{width:7.272000px;}
._3_c00268{width:29.872800px;}
._2_c00268{width:38.778480px;}
.fc2_c00268{color:transparent;}
.fc1_c00268{color:rgb(0,0,0);}
.fc0_c00268{color:rgb(35,31,32);}
.fs2_c00268{font-size:60.120000px;}
.fs1_c00268{font-size:65.880000px;}
.fs0_c00268{font-size:72.000000px;}
.y0_c00268{bottom:0.000000px;}
.y1_c00268{bottom:61.748550px;}
.y20_c00268{bottom:147.608580px;}
.y1f_c00268{bottom:176.052270px;}
.y1e_c00268{bottom:204.578310px;}
.y1d_c00268{bottom:233.022000px;}
.y1c_c00268{bottom:261.465690px;}
.y1b_c00268{bottom:289.909380px;}
.y1a_c00268{bottom:318.353070px;}
.y19_c00268{bottom:346.879110px;}
.y18_c00268{bottom:403.766490px;}
.y17_c00268{bottom:432.210180px;}
.y16_c00268{bottom:460.736220px;}
.y15_c00268{bottom:489.179910px;}
.y14_c00268{bottom:517.623600px;}
.y13_c00268{bottom:574.510980px;}
.y26_c00268{bottom:591.524400px;}
.y12_c00268{bottom:603.037020px;}
.y11_c00268{bottom:631.480710px;}
.y31_c00268{bottom:650.254770px;}
.y10_c00268{bottom:659.924400px;}
.y29_c00268{bottom:669.763710px;}
.y2a_c00268{bottom:708.300630px;}
.y27_c00268{bottom:708.435900px;}
.yf_c00268{bottom:720.854400px;}
.y2b_c00268{bottom:746.837550px;}
.ye_c00268{bottom:751.904400px;}
.yd_c00268{bottom:782.954400px;}
.y2c_c00268{bottom:785.374470px;}
.yc_c00268{bottom:814.004400px;}
.y2d_c00268{bottom:823.911390px;}
.yb_c00268{bottom:845.054400px;}
.y2e_c00268{bottom:862.448310px;}
.ya_c00268{bottom:876.104400px;}
.y2f_c00268{bottom:900.985230px;}
.y9_c00268{bottom:936.753390px;}
.y30_c00268{bottom:939.522150px;}
.y28_c00268{bottom:940.889880px;}
.y8_c00268{bottom:965.197080px;}
.y7_c00268{bottom:993.723120px;}
.y25_c00268{bottom:1015.784400px;}
.y6_c00268{bottom:1022.166810px;}
.y24_c00268{bottom:1046.834400px;}
.y5_c00268{bottom:1050.610500px;}
.y23_c00268{bottom:1077.884400px;}
.y4_c00268{bottom:1108.934400px;}
.y22_c00268{bottom:1139.984400px;}
.y3_c00268{bottom:1139.984550px;}
.y21_c00268{bottom:1193.174400px;}
.y2_c00268{bottom:1193.174550px;}
.h6_c00268{height:49.581387px;}
.h2_c00268{height:50.400000px;}
.h5_c00268{height:71.413920px;}
.h3_c00268{height:76.824000px;}
.h4_c00268{height:78.048000px;}
.h0_c00268{height:1262.835000px;}
.h1_c00268{height:1263.000000px;}
.w2_c00268{width:0.000000px;}
.w3_c00268{width:0.066000px;}
.w0_c00268{width:892.914000px;}
.w1_c00268{width:893.250000px;}
.x1_c00268{left:-838.913400px;}
.x2_c00268{left:-765.293400px;}
.x3_c00268{left:-743.963400px;}
.x4_c00268{left:-739.829430px;}
.x5_c00268{left:-733.343400px;}
.x0_c00268{left:0.000000px;}
.x9_c00268{left:127.620000px;}
.xa_c00268{left:141.120000px;}
.xe_c00268{left:144.892350px;}
.xd_c00268{left:152.467470px;}
.x8_c00268{left:159.570000px;}
.xf_c00268{left:230.533290px;}
.xb_c00268{left:316.534950px;}
.xc_c00268{left:586.338480px;}
.x7_c00268{left:679.950000px;}
.x6_c00268{left:804.366150px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls12_c00268{letter-spacing:-0.320000pt;}
.ls10_c00268{letter-spacing:-0.256000pt;}
.ls11_c00268{letter-spacing:-0.192000pt;}
.lsf_c00268{letter-spacing:-0.058560pt;}
.lsd_c00268{letter-spacing:0.000000pt;}
.ls7_c00268{letter-spacing:0.058560pt;}
.ls0_c00268{letter-spacing:0.064000pt;}
.lsb_c00268{letter-spacing:0.106880pt;}
.lse_c00268{letter-spacing:0.128000pt;}
.ls1_c00268{letter-spacing:0.175680pt;}
.ls8_c00268{letter-spacing:14.347200pt;}
.ls6_c00268{letter-spacing:14.698560pt;}
.ls5_c00268{letter-spacing:14.757120pt;}
.lsa_c00268{letter-spacing:20.172800pt;}
.ls4_c00268{letter-spacing:23.104000pt;}
.ls3_c00268{letter-spacing:27.219200pt;}
.ls2_c00268{letter-spacing:34.688000pt;}
.ls9_c00268{letter-spacing:40.000000pt;}
.lsc_c00268{letter-spacing:211.889600pt;}
.ws2_c00268{word-spacing:-16.128000pt;}
.ws1_c00268{word-spacing:-16.064000pt;}
.ws0_c00268{word-spacing:-16.000000pt;}
.ws8_c00268{word-spacing:-15.744000pt;}
.wsb_c00268{word-spacing:-15.680000pt;}
.ws3_c00268{word-spacing:-14.815680pt;}
.wsc_c00268{word-spacing:-14.698560pt;}
.wse_c00268{word-spacing:-14.640000pt;}
.wsd_c00268{word-spacing:-14.581440pt;}
.ws11_c00268{word-spacing:-12.184320pt;}
.ws2f_c00268{word-spacing:-1.603200pt;}
.ws2e_c00268{word-spacing:-1.282560pt;}
.ws2d_c00268{word-spacing:-0.320000pt;}
.ws26_c00268{word-spacing:-0.175680pt;}
.ws10_c00268{word-spacing:-0.128000pt;}
.ws17_c00268{word-spacing:-0.117120pt;}
.ws15_c00268{word-spacing:-0.064000pt;}
.ws24_c00268{word-spacing:-0.058560pt;}
.ws12_c00268{word-spacing:0.000000pt;}
.ws18_c00268{word-spacing:0.058560pt;}
.ws4_c00268{word-spacing:0.117120pt;}
.ws20_c00268{word-spacing:0.192000pt;}
.ws23_c00268{word-spacing:0.512000pt;}
.ws22_c00268{word-spacing:0.832000pt;}
.ws21_c00268{word-spacing:0.960000pt;}
.ws16_c00268{word-spacing:1.171200pt;}
.ws28_c00268{word-spacing:4.096000pt;}
.ws27_c00268{word-spacing:4.160000pt;}
.ws6_c00268{word-spacing:4.672000pt;}
.ws1a_c00268{word-spacing:4.736000pt;}
.ws19_c00268{word-spacing:4.800000pt;}
.ws5_c00268{word-spacing:4.928000pt;}
.ws9_c00268{word-spacing:6.848000pt;}
.ws1f_c00268{word-spacing:6.976000pt;}
.wsa_c00268{word-spacing:7.040000pt;}
.ws25_c00268{word-spacing:10.482240pt;}
.ws1e_c00268{word-spacing:11.456000pt;}
.ws2c_c00268{word-spacing:14.656000pt;}
.wsf_c00268{word-spacing:14.745600pt;}
.ws29_c00268{word-spacing:15.040000pt;}
.ws2a_c00268{word-spacing:16.576000pt;}
.ws2b_c00268{word-spacing:16.640000pt;}
.ws1b_c00268{word-spacing:18.432000pt;}
.ws1d_c00268{word-spacing:18.496000pt;}
.ws7_c00268{word-spacing:18.508800pt;}
.ws1c_c00268{word-spacing:18.560000pt;}
.ws13_c00268{word-spacing:22.016000pt;}
.ws14_c00268{word-spacing:22.080000pt;}
._0_c00268{margin-left:-0.915200pt;}
._1_c00268{width:0.995520pt;}
._4_c00268{width:6.464000pt;}
._3_c00268{width:26.553600pt;}
._2_c00268{width:34.469760pt;}
.fs2_c00268{font-size:53.440000pt;}
.fs1_c00268{font-size:58.560000pt;}
.fs0_c00268{font-size:64.000000pt;}
.y0_c00268{bottom:0.000000pt;}
.y1_c00268{bottom:54.887600pt;}
.y20_c00268{bottom:131.207627pt;}
.y1f_c00268{bottom:156.490907pt;}
.y1e_c00268{bottom:181.847387pt;}
.y1d_c00268{bottom:207.130667pt;}
.y1c_c00268{bottom:232.413947pt;}
.y1b_c00268{bottom:257.697227pt;}
.y1a_c00268{bottom:282.980507pt;}
.y19_c00268{bottom:308.336987pt;}
.y18_c00268{bottom:358.903547pt;}
.y17_c00268{bottom:384.186827pt;}
.y16_c00268{bottom:409.543307pt;}
.y15_c00268{bottom:434.826587pt;}
.y14_c00268{bottom:460.109867pt;}
.y13_c00268{bottom:510.676427pt;}
.y26_c00268{bottom:525.799467pt;}
.y12_c00268{bottom:536.032907pt;}
.y11_c00268{bottom:561.316187pt;}
.y31_c00268{bottom:578.004240pt;}
.y10_c00268{bottom:586.599467pt;}
.y29_c00268{bottom:595.345520pt;}
.y2a_c00268{bottom:629.600560pt;}
.y27_c00268{bottom:629.720800pt;}
.yf_c00268{bottom:640.759467pt;}
.y2b_c00268{bottom:663.855600pt;}
.ye_c00268{bottom:668.359467pt;}
.yd_c00268{bottom:695.959467pt;}
.y2c_c00268{bottom:698.110640pt;}
.yc_c00268{bottom:723.559467pt;}
.y2d_c00268{bottom:732.365680pt;}
.yb_c00268{bottom:751.159467pt;}
.y2e_c00268{bottom:766.620720pt;}
.ya_c00268{bottom:778.759467pt;}
.y2f_c00268{bottom:800.875760pt;}
.y9_c00268{bottom:832.669680pt;}
.y30_c00268{bottom:835.130800pt;}
.y28_c00268{bottom:836.346560pt;}
.y8_c00268{bottom:857.952960pt;}
.y7_c00268{bottom:883.309440pt;}
.y25_c00268{bottom:902.919467pt;}
.y6_c00268{bottom:908.592720pt;}
.y24_c00268{bottom:930.519467pt;}
.y5_c00268{bottom:933.876000pt;}
.y23_c00268{bottom:958.119467pt;}
.y4_c00268{bottom:985.719467pt;}
.y22_c00268{bottom:1013.319467pt;}
.y3_c00268{bottom:1013.319600pt;}
.y21_c00268{bottom:1060.599467pt;}
.y2_c00268{bottom:1060.599600pt;}
.h6_c00268{height:44.072344pt;}
.h2_c00268{height:44.800000pt;}
.h5_c00268{height:63.479040pt;}
.h3_c00268{height:68.288000pt;}
.h4_c00268{height:69.376000pt;}
.h0_c00268{height:1122.520000pt;}
.h1_c00268{height:1122.666667pt;}
.w2_c00268{width:0.000000pt;}
.w3_c00268{width:0.058667pt;}
.w0_c00268{width:793.701333pt;}
.w1_c00268{width:794.000000pt;}
.x1_c00268{left:-745.700800pt;}
.x2_c00268{left:-680.260800pt;}
.x3_c00268{left:-661.300800pt;}
.x4_c00268{left:-657.626160pt;}
.x5_c00268{left:-651.860800pt;}
.x0_c00268{left:0.000000pt;}
.x9_c00268{left:113.440000pt;}
.xa_c00268{left:125.440000pt;}
.xe_c00268{left:128.793200pt;}
.xd_c00268{left:135.526640pt;}
.x8_c00268{left:141.840000pt;}
.xf_c00268{left:204.918480pt;}
.xb_c00268{left:281.364400pt;}
.xc_c00268{left:521.189760pt;}
.x7_c00268{left:604.400000pt;}
.x6_c00268{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00269;src:url('chunks/assets/font_22bd8b62cfc3361eaee5f767.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00269;src:url('chunks/assets/font_8655fcce17fc9b61e9acf09e.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.592000;font-style:normal;font-weight:normal;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_c6a099d4efc5149e07d22fe6.woff2')format("woff");}.ff4_c00269{font-family:ff4_c00269;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00269{vertical-align:-11.858400px;}
.v0_c00269{vertical-align:0.000000px;}
.ls5_c00269{letter-spacing:-0.131760px;}
.ls6_c00269{letter-spacing:-0.065880px;}
.ls4_c00269{letter-spacing:0.000000px;}
.ls1_c00269{letter-spacing:0.065880px;}
.ls0_c00269{letter-spacing:0.072000px;}
.ls7_c00269{letter-spacing:0.131760px;}
.ls3_c00269{letter-spacing:175.240800px;}
.ls2_c00269{letter-spacing:289.674360px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00269{word-spacing:-18.000000px;}
.ws4_c00269{word-spacing:-15.020640px;}
.ws2_c00269{word-spacing:-14.954760px;}
.ws3_c00269{word-spacing:-14.823000px;}
.ws1_c00269{word-spacing:-14.757120px;}
.ws9_c00269{word-spacing:-0.263520px;}
.ws8_c00269{word-spacing:-0.131760px;}
.ws6_c00269{word-spacing:-0.072000px;}
.ws7_c00269{word-spacing:-0.065880px;}
.ws5_c00269{word-spacing:0.000000px;}
.wsb_c00269{word-spacing:0.065880px;}
.wsa_c00269{word-spacing:0.197640px;}
._0_c00269{margin-left:-1.008000px;}
._1_c00269{width:1.317600px;}
._b_c00269{width:27.274320px;}
._5_c00269{width:34.916400px;}
._7_c00269{width:208.707840px;}
._13_c00269{width:239.150988px;}
._2_c00269{width:274.917240px;}
._9_c00269{width:291.914280px;}
._16_c00269{width:294.088320px;}
._11_c00269{width:332.035200px;}
._15_c00269{width:376.438320px;}
._1a_c00269{width:401.275080px;}
._d_c00269{width:440.407800px;}
._12_c00269{width:472.359600px;}
._4_c00269{width:477.300600px;}
._1c_c00269{width:524.273040px;}
._17_c00269{width:558.333000px;}
._1b_c00269{width:594.171720px;}
._14_c00269{width:597.788532px;}
._10_c00269{width:602.933760px;}
._19_c00269{width:623.224800px;}
._c_c00269{width:637.652520px;}
._18_c00269{width:649.576800px;}
._3_c00269{width:664.070400px;}
._a_c00269{width:670.065480px;}
._8_c00269{width:678.564000px;}
._e_c00269{width:689.434200px;}
._6_c00269{width:692.003520px;}
._f_c00269{width:779.755680px;}
.fc2_c00269{color:transparent;}
.fc1_c00269{color:rgb(0,0,0);}
.fc0_c00269{color:rgb(35,31,32);}
.fs1_c00269{font-size:65.880000px;}
.fs0_c00269{font-size:72.000000px;}
.y29_c00269{bottom:-15.660600px;}
.y47_c00269{bottom:-15.657600px;}
.y0_c00269{bottom:0.000000px;}
.y10_c00269{bottom:4.409400px;}
.y24_c00269{bottom:4.499250px;}
.y21_c00269{bottom:4.499400px;}
.y58_c00269{bottom:4.500900px;}
.y15_c00269{bottom:4.502400px;}
.y7_c00269{bottom:24.660750px;}
.y1_c00269{bottom:61.748550px;}
.y3d_c00269{bottom:64.892250px;}
.y5e_c00269{bottom:105.119400px;}
.y49_c00269{bottom:125.282400px;}
.y69_c00269{bottom:130.455000px;}
.y5d_c00269{bottom:154.305000px;}
.y63_c00269{bottom:158.799480px;}
.y68_c00269{bottom:158.800710px;}
.y62_c00269{bottom:178.876410px;}
.y67_c00269{bottom:187.244400px;}
.y61_c00269{bottom:199.035690px;}
.y66_c00269{bottom:205.785000px;}
.y60_c00269{bottom:219.194970px;}
.y65_c00269{bottom:233.414400px;}
.y5f_c00269{bottom:239.354250px;}
.y64_c00269{bottom:252.045000px;}
.y48_c00269{bottom:275.892000px;}
.y56_c00269{bottom:280.373730px;}
.y4f_c00269{bottom:280.390200px;}
.y5c_c00269{bottom:280.401780px;}
.y55_c00269{bottom:300.450660px;}
.y4e_c00269{bottom:300.467130px;}
.y5b_c00269{bottom:305.864400px;}
.y54_c00269{bottom:320.609940px;}
.y4d_c00269{bottom:320.626410px;}
.y5a_c00269{bottom:324.492000px;}
.y53_c00269{bottom:340.769220px;}
.y4c_c00269{bottom:340.785690px;}
.y59_c00269{bottom:352.034400px;}
.y52_c00269{bottom:360.928500px;}
.y4b_c00269{bottom:360.944970px;}
.y57_c00269{bottom:370.663500px;}
.y51_c00269{bottom:381.087780px;}
.y4a_c00269{bottom:381.104250px;}
.y50_c00269{bottom:398.282460px;}
.y46_c00269{bottom:417.642000px;}
.y45_c00269{bottom:443.024250px;}
.y44_c00269{bottom:462.375000px;}
.y3c_c00269{bottom:486.222000px;}
.y42_c00269{bottom:510.790440px;}
.y3f_c00269{bottom:510.794970px;}
.y43_c00269{bottom:520.605000px;}
.y41_c00269{bottom:530.949720px;}
.y3e_c00269{bottom:530.954250px;}
.y40_c00269{bottom:548.144400px;}
.y34_c00269{bottom:567.492000px;}
.y33_c00269{bottom:592.144680px;}
.y38_c00269{bottom:592.155840px;}
.y3b_c00269{bottom:595.124250px;}
.y32_c00269{bottom:612.303960px;}
.y37_c00269{bottom:612.315120px;}
.y3a_c00269{bottom:613.755000px;}
.y31_c00269{bottom:632.463240px;}
.y36_c00269{bottom:632.474400px;}
.y39_c00269{bottom:638.324400px;}
.y30_c00269{bottom:652.540170px;}
.y35_c00269{bottom:653.985000px;}
.y2f_c00269{bottom:682.334400px;}
.y2c_c00269{bottom:682.335840px;}
.y2e_c00269{bottom:700.965000px;}
.y2b_c00269{bottom:702.495120px;}
.y2a_c00269{bottom:722.654400px;}
.y2d_c00269{bottom:728.501250px;}
.y28_c00269{bottom:744.975000px;}
.y27_c00269{bottom:749.474400px;}
.y1f_c00269{bottom:773.319630px;}
.y26_c00269{bottom:773.322720px;}
.y1e_c00269{bottom:793.396560px;}
.y25_c00269{bottom:796.364250px;}
.y1d_c00269{bottom:813.555840px;}
.y23_c00269{bottom:814.995000px;}
.y1c_c00269{bottom:833.715120px;}
.y22_c00269{bottom:842.624400px;}
.y1b_c00269{bottom:853.874400px;}
.y20_c00269{bottom:861.165000px;}
.y14_c00269{bottom:885.012000px;}
.y1a_c00269{bottom:909.674400px;}
.y19_c00269{bottom:909.674970px;}
.y17_c00269{bottom:909.680520px;}
.y13_c00269{bottom:909.681810px;}
.y18_c00269{bottom:929.834250px;}
.y12_c00269{bottom:929.841090px;}
.y16_c00269{bottom:932.804400px;}
.ye_c00269{bottom:956.631570px;}
.yb_c00269{bottom:956.648040px;}
.y11_c00269{bottom:956.654250px;}
.yf_c00269{bottom:975.285000px;}
.yd_c00269{bottom:976.708500px;}
.ya_c00269{bottom:976.724970px;}
.y9_c00269{bottom:996.884250px;}
.yc_c00269{bottom:1002.813450px;}
.y6_c00269{bottom:1019.203500px;}
.y8_c00269{bottom:1023.704250px;}
.y5_c00269{bottom:1064.744250px;}
.y4_c00269{bottom:1119.194400px;}
.y3_c00269{bottom:1139.984400px;}
.y2_c00269{bottom:1193.174400px;}
.h11_c00269{height:20.161500px;}
.h9_c00269{height:20.163000px;}
.h7_c00269{height:23.038500px;}
.h13_c00269{height:23.040000px;}
.hb_c00269{height:23.130000px;}
.ha_c00269{height:23.131500px;}
.he_c00269{height:23.133000px;}
.h10_c00269{height:34.380000px;}
.hd_c00269{height:40.230000px;}
.h6_c00269{height:40.320000px;}
.h2_c00269{height:50.400000px;}
.h5_c00269{height:54.331699px;}
.h8_c00269{height:66.420000px;}
.h3_c00269{height:76.824000px;}
.h4_c00269{height:78.048000px;}
.hf_c00269{height:80.550000px;}
.hc_c00269{height:109.620000px;}
.h14_c00269{height:120.778500px;}
.h12_c00269{height:140.940000px;}
.h0_c00269{height:1262.835000px;}
.h1_c00269{height:1263.000000px;}
.w6_c00269{width:85.050000px;}
.w3_c00269{width:106.290000px;}
.w4_c00269{width:106.380000px;}
.w7_c00269{width:158.310000px;}
.w5_c00269{width:165.960000px;}
.w8_c00269{width:170.100000px;}
.w9_c00269{width:212.580000px;}
.w2_c00269{width:324.270000px;}
.w0_c00269{width:892.914000px;}
.w1_c00269{width:893.250000px;}
.x0_c00269{left:0.000000px;}
.x4_c00269{left:5.310000px;}
.x16_c00269{left:42.210000px;}
.x13_c00269{left:50.580000px;}
.x1_c00269{left:54.000000px;}
.x14_c00269{left:63.000000px;}
.xe_c00269{left:71.370000px;}
.x18_c00269{left:75.870000px;}
.x15_c00269{left:92.610000px;}
.x17_c00269{left:117.270000px;}
.x3_c00269{left:122.310000px;}
.x2_c00269{left:127.620000px;}
.xc_c00269{left:280.620000px;}
.x9_c00269{left:285.929640px;}
.xd_c00269{left:446.580000px;}
.xf_c00269{left:531.630000px;}
.x5_c00269{left:616.680000px;}
.x6_c00269{left:621.900000px;}
.x11_c00269{left:700.923060px;}
.xa_c00269{left:709.258050px;}
.x7_c00269{left:722.880000px;}
.x8_c00269{left:728.190000px;}
.x12_c00269{left:786.517650px;}
.xb_c00269{left:794.852640px;}
.x10_c00269{left:815.662170px;}
@media print{
.v1_c00269{vertical-align:-10.540800pt;}
.v0_c00269{vertical-align:0.000000pt;}
.ls5_c00269{letter-spacing:-0.117120pt;}
.ls6_c00269{letter-spacing:-0.058560pt;}
.ls4_c00269{letter-spacing:0.000000pt;}
.ls1_c00269{letter-spacing:0.058560pt;}
.ls0_c00269{letter-spacing:0.064000pt;}
.ls7_c00269{letter-spacing:0.117120pt;}
.ls3_c00269{letter-spacing:155.769600pt;}
.ls2_c00269{letter-spacing:257.488320pt;}
.ws0_c00269{word-spacing:-16.000000pt;}
.ws4_c00269{word-spacing:-13.351680pt;}
.ws2_c00269{word-spacing:-13.293120pt;}
.ws3_c00269{word-spacing:-13.176000pt;}
.ws1_c00269{word-spacing:-13.117440pt;}
.ws9_c00269{word-spacing:-0.234240pt;}
.ws8_c00269{word-spacing:-0.117120pt;}
.ws6_c00269{word-spacing:-0.064000pt;}
.ws7_c00269{word-spacing:-0.058560pt;}
.ws5_c00269{word-spacing:0.000000pt;}
.wsb_c00269{word-spacing:0.058560pt;}
.wsa_c00269{word-spacing:0.175680pt;}
._0_c00269{margin-left:-0.896000pt;}
._1_c00269{width:1.171200pt;}
._b_c00269{width:24.243840pt;}
._5_c00269{width:31.036800pt;}
._7_c00269{width:185.518080pt;}
._13_c00269{width:212.578656pt;}
._2_c00269{width:244.370880pt;}
._9_c00269{width:259.479360pt;}
._16_c00269{width:261.411840pt;}
._11_c00269{width:295.142400pt;}
._15_c00269{width:334.611840pt;}
._1a_c00269{width:356.688960pt;}
._d_c00269{width:391.473600pt;}
._12_c00269{width:419.875200pt;}
._4_c00269{width:424.267200pt;}
._1c_c00269{width:466.020480pt;}
._17_c00269{width:496.296000pt;}
._1b_c00269{width:528.152640pt;}
._14_c00269{width:531.367584pt;}
._10_c00269{width:535.941120pt;}
._19_c00269{width:553.977600pt;}
._c_c00269{width:566.802240pt;}
._18_c00269{width:577.401600pt;}
._3_c00269{width:590.284800pt;}
._a_c00269{width:595.613760pt;}
._8_c00269{width:603.168000pt;}
._e_c00269{width:612.830400pt;}
._6_c00269{width:615.114240pt;}
._f_c00269{width:693.116160pt;}
.fs1_c00269{font-size:58.560000pt;}
.fs0_c00269{font-size:64.000000pt;}
.y29_c00269{bottom:-13.920533pt;}
.y47_c00269{bottom:-13.917867pt;}
.y0_c00269{bottom:0.000000pt;}
.y10_c00269{bottom:3.919467pt;}
.y24_c00269{bottom:3.999333pt;}
.y21_c00269{bottom:3.999467pt;}
.y58_c00269{bottom:4.000800pt;}
.y15_c00269{bottom:4.002133pt;}
.y7_c00269{bottom:21.920667pt;}
.y1_c00269{bottom:54.887600pt;}
.y3d_c00269{bottom:57.682000pt;}
.y5e_c00269{bottom:93.439467pt;}
.y49_c00269{bottom:111.362133pt;}
.y69_c00269{bottom:115.960000pt;}
.y5d_c00269{bottom:137.160000pt;}
.y63_c00269{bottom:141.155093pt;}
.y68_c00269{bottom:141.156187pt;}
.y62_c00269{bottom:159.001253pt;}
.y67_c00269{bottom:166.439467pt;}
.y61_c00269{bottom:176.920613pt;}
.y66_c00269{bottom:182.920000pt;}
.y60_c00269{bottom:194.839973pt;}
.y65_c00269{bottom:207.479467pt;}
.y5f_c00269{bottom:212.759333pt;}
.y64_c00269{bottom:224.040000pt;}
.y48_c00269{bottom:245.237333pt;}
.y56_c00269{bottom:249.221093pt;}
.y4f_c00269{bottom:249.235733pt;}
.y5c_c00269{bottom:249.246027pt;}
.y55_c00269{bottom:267.067253pt;}
.y4e_c00269{bottom:267.081893pt;}
.y5b_c00269{bottom:271.879467pt;}
.y54_c00269{bottom:284.986613pt;}
.y4d_c00269{bottom:285.001253pt;}
.y5a_c00269{bottom:288.437333pt;}
.y53_c00269{bottom:302.905973pt;}
.y4c_c00269{bottom:302.920613pt;}
.y59_c00269{bottom:312.919467pt;}
.y52_c00269{bottom:320.825333pt;}
.y4b_c00269{bottom:320.839973pt;}
.y57_c00269{bottom:329.478667pt;}
.y51_c00269{bottom:338.744693pt;}
.y4a_c00269{bottom:338.759333pt;}
.y50_c00269{bottom:354.028853pt;}
.y46_c00269{bottom:371.237333pt;}
.y45_c00269{bottom:393.799333pt;}
.y44_c00269{bottom:411.000000pt;}
.y3c_c00269{bottom:432.197333pt;}
.y42_c00269{bottom:454.035947pt;}
.y3f_c00269{bottom:454.039973pt;}
.y43_c00269{bottom:462.760000pt;}
.y41_c00269{bottom:471.955307pt;}
.y3e_c00269{bottom:471.959333pt;}
.y40_c00269{bottom:487.239467pt;}
.y34_c00269{bottom:504.437333pt;}
.y33_c00269{bottom:526.350827pt;}
.y38_c00269{bottom:526.360747pt;}
.y3b_c00269{bottom:528.999333pt;}
.y32_c00269{bottom:544.270187pt;}
.y37_c00269{bottom:544.280107pt;}
.y3a_c00269{bottom:545.560000pt;}
.y31_c00269{bottom:562.189547pt;}
.y36_c00269{bottom:562.199467pt;}
.y39_c00269{bottom:567.399467pt;}
.y30_c00269{bottom:580.035707pt;}
.y35_c00269{bottom:581.320000pt;}
.y2f_c00269{bottom:606.519467pt;}
.y2c_c00269{bottom:606.520747pt;}
.y2e_c00269{bottom:623.080000pt;}
.y2b_c00269{bottom:624.440107pt;}
.y2a_c00269{bottom:642.359467pt;}
.y2d_c00269{bottom:647.556667pt;}
.y28_c00269{bottom:662.200000pt;}
.y27_c00269{bottom:666.199467pt;}
.y1f_c00269{bottom:687.395227pt;}
.y26_c00269{bottom:687.397973pt;}
.y1e_c00269{bottom:705.241387pt;}
.y25_c00269{bottom:707.879333pt;}
.y1d_c00269{bottom:723.160747pt;}
.y23_c00269{bottom:724.440000pt;}
.y1c_c00269{bottom:741.080107pt;}
.y22_c00269{bottom:748.999467pt;}
.y1b_c00269{bottom:758.999467pt;}
.y20_c00269{bottom:765.480000pt;}
.y14_c00269{bottom:786.677333pt;}
.y1a_c00269{bottom:808.599467pt;}
.y19_c00269{bottom:808.599973pt;}
.y17_c00269{bottom:808.604907pt;}
.y13_c00269{bottom:808.606053pt;}
.y18_c00269{bottom:826.519333pt;}
.y12_c00269{bottom:826.525413pt;}
.y16_c00269{bottom:829.159467pt;}
.ye_c00269{bottom:850.339173pt;}
.yb_c00269{bottom:850.353813pt;}
.y11_c00269{bottom:850.359333pt;}
.yf_c00269{bottom:866.920000pt;}
.yd_c00269{bottom:868.185333pt;}
.ya_c00269{bottom:868.199973pt;}
.y9_c00269{bottom:886.119333pt;}
.yc_c00269{bottom:891.389733pt;}
.y6_c00269{bottom:905.958667pt;}
.y8_c00269{bottom:909.959333pt;}
.y5_c00269{bottom:946.439333pt;}
.y4_c00269{bottom:994.839467pt;}
.y3_c00269{bottom:1013.319467pt;}
.y2_c00269{bottom:1060.599467pt;}
.h11_c00269{height:17.921333pt;}
.h9_c00269{height:17.922667pt;}
.h7_c00269{height:20.478667pt;}
.h13_c00269{height:20.480000pt;}
.hb_c00269{height:20.560000pt;}
.ha_c00269{height:20.561333pt;}
.he_c00269{height:20.562667pt;}
.h10_c00269{height:30.560000pt;}
.hd_c00269{height:35.760000pt;}
.h6_c00269{height:35.840000pt;}
.h2_c00269{height:44.800000pt;}
.h5_c00269{height:48.294844pt;}
.h8_c00269{height:59.040000pt;}
.h3_c00269{height:68.288000pt;}
.h4_c00269{height:69.376000pt;}
.hf_c00269{height:71.600000pt;}
.hc_c00269{height:97.440000pt;}
.h14_c00269{height:107.358667pt;}
.h12_c00269{height:125.280000pt;}
.h0_c00269{height:1122.520000pt;}
.h1_c00269{height:1122.666667pt;}
.w6_c00269{width:75.600000pt;}
.w3_c00269{width:94.480000pt;}
.w4_c00269{width:94.560000pt;}
.w7_c00269{width:140.720000pt;}
.w5_c00269{width:147.520000pt;}
.w8_c00269{width:151.200000pt;}
.w9_c00269{width:188.960000pt;}
.w2_c00269{width:288.240000pt;}
.w0_c00269{width:793.701333pt;}
.w1_c00269{width:794.000000pt;}
.x0_c00269{left:0.000000pt;}
.x4_c00269{left:4.720000pt;}
.x16_c00269{left:37.520000pt;}
.x13_c00269{left:44.960000pt;}
.x1_c00269{left:48.000000pt;}
.x14_c00269{left:56.000000pt;}
.xe_c00269{left:63.440000pt;}
.x18_c00269{left:67.440000pt;}
.x15_c00269{left:82.320000pt;}
.x17_c00269{left:104.240000pt;}
.x3_c00269{left:108.720000pt;}
.x2_c00269{left:113.440000pt;}
.xc_c00269{left:249.440000pt;}
.x9_c00269{left:254.159680pt;}
.xd_c00269{left:396.960000pt;}
.xf_c00269{left:472.560000pt;}
.x5_c00269{left:548.160000pt;}
.x6_c00269{left:552.800000pt;}
.x11_c00269{left:623.042720pt;}
.xa_c00269{left:630.451600pt;}
.x7_c00269{left:642.560000pt;}
.x8_c00269{left:647.280000pt;}
.x12_c00269{left:699.126800pt;}
.xb_c00269{left:706.535680pt;}
.x10_c00269{left:725.033040pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00270;src:url('chunks/assets/font_11df415473d564b6b07bc7e3.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00270;src:url('chunks/assets/font_1088017a6ec322dd40f6e97e.woff2')format("woff");}.ff3_c00270{font-family:ff3_c00270;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00270;src:url('chunks/assets/font_12464c81731542fd59d9fc86.woff2')format("woff");}.ff4_c00270{font-family:ff4_c00270;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00270;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00270{font-family:ff5_c00270;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00270;src:url('chunks/assets/font_6f959df53d737f5bb7c41dd5.woff2')format("woff");}.ff6_c00270{font-family:ff6_c00270;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00270;src:url('chunks/assets/font_cdbc1aed7ac08d1f13e58242.woff2')format("woff");}.ff7_c00270{font-family:ff7_c00270;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00270;src:url('chunks/assets/font_949baf678e1e9c7005285e77.woff2')format("woff");}.ff8_c00270{font-family:ff8_c00270;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00270;src:url('chunks/assets/font_1e3aa8e23793cf56e20a1f6b.woff2')format("woff");}.ff9_c00270{font-family:ff9_c00270;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00270{vertical-align:-11.858400px;}
.v0_c00270{vertical-align:0.000000px;}
.lsa_c00270{letter-spacing:-0.131760px;}
.lsd_c00270{letter-spacing:-0.072000px;}
.lsb_c00270{letter-spacing:-0.065880px;}
.ls9_c00270{letter-spacing:0.000000px;}
.ls1_c00270{letter-spacing:0.065880px;}
.ls0_c00270{letter-spacing:0.072000px;}
.lsc_c00270{letter-spacing:0.131760px;}
.ls4_c00270{letter-spacing:0.144000px;}
.ls7_c00270{letter-spacing:0.197640px;}
.ls8_c00270{letter-spacing:16.601760px;}
.ls5_c00270{letter-spacing:18.360000px;}
.ls6_c00270{letter-spacing:25.560000px;}
.ls3_c00270{letter-spacing:175.240800px;}
.ls2_c00270{letter-spacing:289.674360px;}
.sc__c00270{text-shadow:none;}
.sc0_c00270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00270{-webkit-text-stroke:0px transparent;}
.sc0_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00270{word-spacing:-18.000000px;}
.ws8_c00270{word-spacing:-16.470000px;}
.ws4_c00270{word-spacing:-15.020640px;}
.ws2_c00270{word-spacing:-14.954760px;}
.ws3_c00270{word-spacing:-14.823000px;}
.ws1_c00270{word-spacing:-14.757120px;}
.ws1e_c00270{word-spacing:-0.461160px;}
.ws12_c00270{word-spacing:-0.432000px;}
.ws1b_c00270{word-spacing:-0.360000px;}
.wsd_c00270{word-spacing:-0.263520px;}
.ws1d_c00270{word-spacing:-0.197640px;}
.wsf_c00270{word-spacing:-0.144000px;}
.wsc_c00270{word-spacing:-0.131760px;}
.wsa_c00270{word-spacing:-0.072000px;}
.wsb_c00270{word-spacing:-0.065880px;}
.ws6_c00270{word-spacing:0.000000px;}
.ws9_c00270{word-spacing:0.065880px;}
.ws13_c00270{word-spacing:0.072000px;}
.ws7_c00270{word-spacing:0.131760px;}
.wse_c00270{word-spacing:0.197640px;}
.ws15_c00270{word-spacing:0.288000px;}
.ws14_c00270{word-spacing:0.360000px;}
.ws1f_c00270{word-spacing:0.461160px;}
.ws10_c00270{word-spacing:2.088000px;}
.ws17_c00270{word-spacing:3.312000px;}
.ws16_c00270{word-spacing:3.528000px;}
.ws11_c00270{word-spacing:4.968000px;}
.ws1c_c00270{word-spacing:5.270400px;}
.ws1a_c00270{word-spacing:7.920000px;}
.ws19_c00270{word-spacing:29.376000px;}
.ws18_c00270{word-spacing:29.520000px;}
.ws5_c00270{word-spacing:50.400000px;}
._0_c00270{margin-left:-1.008000px;}
._1_c00270{width:1.317600px;}
._1d_c00270{width:3.096000px;}
._1f_c00270{width:15.040584px;}
._b_c00270{width:27.274320px;}
._1e_c00270{width:30.168000px;}
._5_c00270{width:34.916400px;}
._7_c00270{width:208.707840px;}
._13_c00270{width:239.150988px;}
._2_c00270{width:274.917240px;}
._9_c00270{width:291.914280px;}
._16_c00270{width:294.088320px;}
._11_c00270{width:332.035200px;}
._15_c00270{width:376.438320px;}
._1a_c00270{width:401.275080px;}
._d_c00270{width:440.407800px;}
._12_c00270{width:472.359600px;}
._4_c00270{width:477.300600px;}
._1c_c00270{width:524.273040px;}
._17_c00270{width:558.333000px;}
._1b_c00270{width:594.171720px;}
._14_c00270{width:597.788532px;}
._10_c00270{width:602.933760px;}
._19_c00270{width:623.224800px;}
._c_c00270{width:637.652520px;}
._18_c00270{width:649.576800px;}
._3_c00270{width:664.070400px;}
._a_c00270{width:670.065480px;}
._8_c00270{width:678.564000px;}
._e_c00270{width:689.434200px;}
._6_c00270{width:692.003520px;}
._f_c00270{width:779.755680px;}
.fc2_c00270{color:transparent;}
.fc1_c00270{color:rgb(0,0,0);}
.fc0_c00270{color:rgb(35,31,32);}
.fs1_c00270{font-size:65.880000px;}
.fs0_c00270{font-size:72.000000px;}
.y29_c00270{bottom:-15.660600px;}
.y47_c00270{bottom:-15.659100px;}
.y0_c00270{bottom:0.000000px;}
.y10_c00270{bottom:4.409400px;}
.y24_c00270{bottom:4.499250px;}
.y21_c00270{bottom:4.499400px;}
.y15_c00270{bottom:4.500900px;}
.y6a_c00270{bottom:24.659250px;}
.y7_c00270{bottom:24.660750px;}
.y1_c00270{bottom:61.748550px;}
.y6e_c00270{bottom:64.889250px;}
.y3d_c00270{bottom:64.890750px;}
.y5d_c00270{bottom:105.119400px;}
.y71_c00270{bottom:125.279400px;}
.y49_c00270{bottom:125.280900px;}
.y68_c00270{bottom:130.455000px;}
.y5c_c00270{bottom:154.305000px;}
.y62_c00270{bottom:158.799480px;}
.y67_c00270{bottom:158.800710px;}
.y61_c00270{bottom:178.876410px;}
.y66_c00270{bottom:187.244400px;}
.y60_c00270{bottom:199.035690px;}
.y65_c00270{bottom:205.785000px;}
.y8b_c00270{bottom:212.337330px;}
.y5f_c00270{bottom:219.194970px;}
.y64_c00270{bottom:233.408580px;}
.y5e_c00270{bottom:239.354250px;}
.y8a_c00270{bottom:240.781020px;}
.y63_c00270{bottom:252.045000px;}
.y89_c00270{bottom:269.224710px;}
.y48_c00270{bottom:275.893500px;}
.y70_c00270{bottom:275.895000px;}
.y56_c00270{bottom:280.373730px;}
.y4f_c00270{bottom:280.390200px;}
.y5b_c00270{bottom:280.401780px;}
.y88_c00270{bottom:297.668400px;}
.y55_c00270{bottom:300.450660px;}
.y4e_c00270{bottom:300.467130px;}
.y5a_c00270{bottom:305.864400px;}
.y54_c00270{bottom:320.609940px;}
.y4d_c00270{bottom:320.626410px;}
.y59_c00270{bottom:324.493500px;}
.y73_c00270{bottom:324.495000px;}
.y53_c00270{bottom:340.769220px;}
.y4c_c00270{bottom:340.785690px;}
.y58_c00270{bottom:352.034400px;}
.y87_c00270{bottom:357.240390px;}
.y52_c00270{bottom:360.928500px;}
.y4b_c00270{bottom:360.944970px;}
.y57_c00270{bottom:370.663500px;}
.y72_c00270{bottom:370.665000px;}
.y51_c00270{bottom:381.087780px;}
.y4a_c00270{bottom:381.104250px;}
.y86_c00270{bottom:385.684080px;}
.y50_c00270{bottom:398.282460px;}
.y85_c00270{bottom:414.127770px;}
.y46_c00270{bottom:417.643500px;}
.y6f_c00270{bottom:417.645000px;}
.y84_c00270{bottom:442.571460px;}
.y45_c00270{bottom:443.024250px;}
.y44_c00270{bottom:462.375000px;}
.y83_c00270{bottom:471.097500px;}
.y3c_c00270{bottom:486.223500px;}
.y6d_c00270{bottom:486.225000px;}
.y42_c00270{bottom:510.790440px;}
.y3f_c00270{bottom:510.794970px;}
.y43_c00270{bottom:520.605000px;}
.y82_c00270{bottom:530.587140px;}
.y41_c00270{bottom:530.949720px;}
.y3e_c00270{bottom:530.954250px;}
.y40_c00270{bottom:548.144400px;}
.y81_c00270{bottom:559.030830px;}
.y34_c00270{bottom:567.493500px;}
.y6c_c00270{bottom:567.495000px;}
.y80_c00270{bottom:587.474520px;}
.y33_c00270{bottom:592.144680px;}
.y38_c00270{bottom:592.155840px;}
.y3b_c00270{bottom:595.124250px;}
.y32_c00270{bottom:612.303960px;}
.y37_c00270{bottom:612.315120px;}
.y3a_c00270{bottom:613.755000px;}
.y7f_c00270{bottom:615.918210px;}
.y31_c00270{bottom:632.463240px;}
.y36_c00270{bottom:632.474400px;}
.y39_c00270{bottom:638.324400px;}
.y7e_c00270{bottom:644.444250px;}
.y30_c00270{bottom:652.540170px;}
.y35_c00270{bottom:653.985000px;}
.y2f_c00270{bottom:682.334400px;}
.y2c_c00270{bottom:682.335840px;}
.y2e_c00270{bottom:700.965000px;}
.y2b_c00270{bottom:702.495120px;}
.y7d_c00270{bottom:705.374400px;}
.y2a_c00270{bottom:722.654400px;}
.y2d_c00270{bottom:728.501250px;}
.y7c_c00270{bottom:736.424400px;}
.y28_c00270{bottom:744.975000px;}
.y27_c00270{bottom:749.474160px;}
.y7b_c00270{bottom:767.474400px;}
.y1f_c00270{bottom:773.319630px;}
.y26_c00270{bottom:773.322720px;}
.y1e_c00270{bottom:793.396560px;}
.y25_c00270{bottom:796.364250px;}
.y7a_c00270{bottom:798.434400px;}
.y1d_c00270{bottom:813.555840px;}
.y23_c00270{bottom:814.995000px;}
.y79_c00270{bottom:829.484400px;}
.y1c_c00270{bottom:833.715120px;}
.y22_c00270{bottom:842.625390px;}
.y1b_c00270{bottom:853.874400px;}
.y20_c00270{bottom:861.165000px;}
.y14_c00270{bottom:885.013500px;}
.y6b_c00270{bottom:885.015000px;}
.y78_c00270{bottom:891.584400px;}
.y1a_c00270{bottom:909.674400px;}
.y19_c00270{bottom:909.674970px;}
.y17_c00270{bottom:909.680520px;}
.y13_c00270{bottom:909.681810px;}
.y77_c00270{bottom:922.634400px;}
.y18_c00270{bottom:929.834250px;}
.y12_c00270{bottom:929.841090px;}
.y16_c00270{bottom:932.804400px;}
.ye_c00270{bottom:956.638410px;}
.y11_c00270{bottom:956.654250px;}
.yb_c00270{bottom:956.654880px;}
.yf_c00270{bottom:975.285000px;}
.yd_c00270{bottom:976.715340px;}
.ya_c00270{bottom:976.731810px;}
.y76_c00270{bottom:984.554400px;}
.y9_c00270{bottom:996.891090px;}
.yc_c00270{bottom:1002.820290px;}
.y6_c00270{bottom:1019.203500px;}
.y69_c00270{bottom:1019.205000px;}
.y8_c00270{bottom:1023.704250px;}
.y75_c00270{bottom:1046.834400px;}
.y5_c00270{bottom:1064.744250px;}
.y74_c00270{bottom:1077.884400px;}
.y4_c00270{bottom:1119.194400px;}
.y3_c00270{bottom:1139.984400px;}
.y2_c00270{bottom:1193.174400px;}
.h13_c00270{height:20.160000px;}
.h9_c00270{height:20.161500px;}
.h7_c00270{height:23.038500px;}
.h11_c00270{height:23.040000px;}
.hb_c00270{height:23.130000px;}
.ha_c00270{height:23.131500px;}
.hf_c00270{height:34.380000px;}
.hd_c00270{height:40.230000px;}
.h6_c00270{height:40.320000px;}
.h2_c00270{height:50.400000px;}
.h5_c00270{height:54.331699px;}
.h8_c00270{height:66.420000px;}
.h15_c00270{height:71.413920px;}
.h3_c00270{height:76.824000px;}
.h4_c00270{height:78.048000px;}
.he_c00270{height:80.550000px;}
.hc_c00270{height:109.620000px;}
.h12_c00270{height:120.778500px;}
.h14_c00270{height:120.780000px;}
.h10_c00270{height:140.940000px;}
.h0_c00270{height:1262.835000px;}
.h1_c00270{height:1263.000000px;}
.w8_c00270{width:-612.294000px;}
.w3_c00270{width:-446.334000px;}
.w6_c00270{width:-361.284000px;}
.w7_c00270{width:-276.234000px;}
.w4_c00270{width:-169.944000px;}
.w5_c00270{width:-63.654000px;}
.w2_c00270{width:0.000000px;}
.w9_c00270{width:0.066000px;}
.w0_c00270{width:892.914000px;}
.w1_c00270{width:893.250000px;}
.x1_c00270{left:-838.913400px;}
.x2_c00270{left:-765.293400px;}
.x5_c00270{left:-606.975840px;}
.x11_c00270{left:-495.023400px;}
.xe_c00270{left:-441.113400px;}
.x12_c00270{left:-391.703400px;}
.xf_c00270{left:-383.333400px;}
.x8_c00270{left:-374.963400px;}
.x13_c00270{left:-356.063400px;}
.x10_c00270{left:-319.073400px;}
.xd_c00270{left:-310.703400px;}
.x9_c00270{left:-289.913400px;}
.x3_c00270{left:-271.013400px;}
.x14_c00270{left:-200.363400px;}
.xb_c00270{left:-191.990340px;}
.x6_c00270{left:-183.647430px;}
.x4_c00270{left:-164.723400px;}
.xc_c00270{left:-106.395750px;}
.x7_c00270{left:-98.052840px;}
.x15_c00270{left:-93.983400px;}
.xa_c00270{left:-77.251230px;}
.x0_c00270{left:0.000000px;}
.x18_c00270{left:127.620000px;}
.x1a_c00270{left:148.950000px;}
.x1b_c00270{left:153.083970px;}
.x19_c00270{left:159.570000px;}
.x17_c00270{left:679.950000px;}
.x16_c00270{left:804.366150px;}
@media print{
.v1_c00270{vertical-align:-10.540800pt;}
.v0_c00270{vertical-align:0.000000pt;}
.lsa_c00270{letter-spacing:-0.117120pt;}
.lsd_c00270{letter-spacing:-0.064000pt;}
.lsb_c00270{letter-spacing:-0.058560pt;}
.ls9_c00270{letter-spacing:0.000000pt;}
.ls1_c00270{letter-spacing:0.058560pt;}
.ls0_c00270{letter-spacing:0.064000pt;}
.lsc_c00270{letter-spacing:0.117120pt;}
.ls4_c00270{letter-spacing:0.128000pt;}
.ls7_c00270{letter-spacing:0.175680pt;}
.ls8_c00270{letter-spacing:14.757120pt;}
.ls5_c00270{letter-spacing:16.320000pt;}
.ls6_c00270{letter-spacing:22.720000pt;}
.ls3_c00270{letter-spacing:155.769600pt;}
.ls2_c00270{letter-spacing:257.488320pt;}
.ws0_c00270{word-spacing:-16.000000pt;}
.ws8_c00270{word-spacing:-14.640000pt;}
.ws4_c00270{word-spacing:-13.351680pt;}
.ws2_c00270{word-spacing:-13.293120pt;}
.ws3_c00270{word-spacing:-13.176000pt;}
.ws1_c00270{word-spacing:-13.117440pt;}
.ws1e_c00270{word-spacing:-0.409920pt;}
.ws12_c00270{word-spacing:-0.384000pt;}
.ws1b_c00270{word-spacing:-0.320000pt;}
.wsd_c00270{word-spacing:-0.234240pt;}
.ws1d_c00270{word-spacing:-0.175680pt;}
.wsf_c00270{word-spacing:-0.128000pt;}
.wsc_c00270{word-spacing:-0.117120pt;}
.wsa_c00270{word-spacing:-0.064000pt;}
.wsb_c00270{word-spacing:-0.058560pt;}
.ws6_c00270{word-spacing:0.000000pt;}
.ws9_c00270{word-spacing:0.058560pt;}
.ws13_c00270{word-spacing:0.064000pt;}
.ws7_c00270{word-spacing:0.117120pt;}
.wse_c00270{word-spacing:0.175680pt;}
.ws15_c00270{word-spacing:0.256000pt;}
.ws14_c00270{word-spacing:0.320000pt;}
.ws1f_c00270{word-spacing:0.409920pt;}
.ws10_c00270{word-spacing:1.856000pt;}
.ws17_c00270{word-spacing:2.944000pt;}
.ws16_c00270{word-spacing:3.136000pt;}
.ws11_c00270{word-spacing:4.416000pt;}
.ws1c_c00270{word-spacing:4.684800pt;}
.ws1a_c00270{word-spacing:7.040000pt;}
.ws19_c00270{word-spacing:26.112000pt;}
.ws18_c00270{word-spacing:26.240000pt;}
.ws5_c00270{word-spacing:44.800000pt;}
._0_c00270{margin-left:-0.896000pt;}
._1_c00270{width:1.171200pt;}
._1d_c00270{width:2.752000pt;}
._1f_c00270{width:13.369408pt;}
._b_c00270{width:24.243840pt;}
._1e_c00270{width:26.816000pt;}
._5_c00270{width:31.036800pt;}
._7_c00270{width:185.518080pt;}
._13_c00270{width:212.578656pt;}
._2_c00270{width:244.370880pt;}
._9_c00270{width:259.479360pt;}
._16_c00270{width:261.411840pt;}
._11_c00270{width:295.142400pt;}
._15_c00270{width:334.611840pt;}
._1a_c00270{width:356.688960pt;}
._d_c00270{width:391.473600pt;}
._12_c00270{width:419.875200pt;}
._4_c00270{width:424.267200pt;}
._1c_c00270{width:466.020480pt;}
._17_c00270{width:496.296000pt;}
._1b_c00270{width:528.152640pt;}
._14_c00270{width:531.367584pt;}
._10_c00270{width:535.941120pt;}
._19_c00270{width:553.977600pt;}
._c_c00270{width:566.802240pt;}
._18_c00270{width:577.401600pt;}
._3_c00270{width:590.284800pt;}
._a_c00270{width:595.613760pt;}
._8_c00270{width:603.168000pt;}
._e_c00270{width:612.830400pt;}
._6_c00270{width:615.114240pt;}
._f_c00270{width:693.116160pt;}
.fs1_c00270{font-size:58.560000pt;}
.fs0_c00270{font-size:64.000000pt;}
.y29_c00270{bottom:-13.920533pt;}
.y47_c00270{bottom:-13.919200pt;}
.y0_c00270{bottom:0.000000pt;}
.y10_c00270{bottom:3.919467pt;}
.y24_c00270{bottom:3.999333pt;}
.y21_c00270{bottom:3.999467pt;}
.y15_c00270{bottom:4.000800pt;}
.y6a_c00270{bottom:21.919333pt;}
.y7_c00270{bottom:21.920667pt;}
.y1_c00270{bottom:54.887600pt;}
.y6e_c00270{bottom:57.679333pt;}
.y3d_c00270{bottom:57.680667pt;}
.y5d_c00270{bottom:93.439467pt;}
.y71_c00270{bottom:111.359467pt;}
.y49_c00270{bottom:111.360800pt;}
.y68_c00270{bottom:115.960000pt;}
.y5c_c00270{bottom:137.160000pt;}
.y62_c00270{bottom:141.155093pt;}
.y67_c00270{bottom:141.156187pt;}
.y61_c00270{bottom:159.001253pt;}
.y66_c00270{bottom:166.439467pt;}
.y60_c00270{bottom:176.920613pt;}
.y65_c00270{bottom:182.920000pt;}
.y8b_c00270{bottom:188.744293pt;}
.y5f_c00270{bottom:194.839973pt;}
.y64_c00270{bottom:207.474293pt;}
.y5e_c00270{bottom:212.759333pt;}
.y8a_c00270{bottom:214.027573pt;}
.y63_c00270{bottom:224.040000pt;}
.y89_c00270{bottom:239.310853pt;}
.y48_c00270{bottom:245.238667pt;}
.y70_c00270{bottom:245.240000pt;}
.y56_c00270{bottom:249.221093pt;}
.y4f_c00270{bottom:249.235733pt;}
.y5b_c00270{bottom:249.246027pt;}
.y88_c00270{bottom:264.594133pt;}
.y55_c00270{bottom:267.067253pt;}
.y4e_c00270{bottom:267.081893pt;}
.y5a_c00270{bottom:271.879467pt;}
.y54_c00270{bottom:284.986613pt;}
.y4d_c00270{bottom:285.001253pt;}
.y59_c00270{bottom:288.438667pt;}
.y73_c00270{bottom:288.440000pt;}
.y53_c00270{bottom:302.905973pt;}
.y4c_c00270{bottom:302.920613pt;}
.y58_c00270{bottom:312.919467pt;}
.y87_c00270{bottom:317.547013pt;}
.y52_c00270{bottom:320.825333pt;}
.y4b_c00270{bottom:320.839973pt;}
.y57_c00270{bottom:329.478667pt;}
.y72_c00270{bottom:329.480000pt;}
.y51_c00270{bottom:338.744693pt;}
.y4a_c00270{bottom:338.759333pt;}
.y86_c00270{bottom:342.830293pt;}
.y50_c00270{bottom:354.028853pt;}
.y85_c00270{bottom:368.113573pt;}
.y46_c00270{bottom:371.238667pt;}
.y6f_c00270{bottom:371.240000pt;}
.y84_c00270{bottom:393.396853pt;}
.y45_c00270{bottom:393.799333pt;}
.y44_c00270{bottom:411.000000pt;}
.y83_c00270{bottom:418.753333pt;}
.y3c_c00270{bottom:432.198667pt;}
.y6d_c00270{bottom:432.200000pt;}
.y42_c00270{bottom:454.035947pt;}
.y3f_c00270{bottom:454.039973pt;}
.y43_c00270{bottom:462.760000pt;}
.y82_c00270{bottom:471.633013pt;}
.y41_c00270{bottom:471.955307pt;}
.y3e_c00270{bottom:471.959333pt;}
.y40_c00270{bottom:487.239467pt;}
.y81_c00270{bottom:496.916293pt;}
.y34_c00270{bottom:504.438667pt;}
.y6c_c00270{bottom:504.440000pt;}
.y80_c00270{bottom:522.199573pt;}
.y33_c00270{bottom:526.350827pt;}
.y38_c00270{bottom:526.360747pt;}
.y3b_c00270{bottom:528.999333pt;}
.y32_c00270{bottom:544.270187pt;}
.y37_c00270{bottom:544.280107pt;}
.y3a_c00270{bottom:545.560000pt;}
.y7f_c00270{bottom:547.482853pt;}
.y31_c00270{bottom:562.189547pt;}
.y36_c00270{bottom:562.199467pt;}
.y39_c00270{bottom:567.399467pt;}
.y7e_c00270{bottom:572.839333pt;}
.y30_c00270{bottom:580.035707pt;}
.y35_c00270{bottom:581.320000pt;}
.y2f_c00270{bottom:606.519467pt;}
.y2c_c00270{bottom:606.520747pt;}
.y2e_c00270{bottom:623.080000pt;}
.y2b_c00270{bottom:624.440107pt;}
.y7d_c00270{bottom:626.999467pt;}
.y2a_c00270{bottom:642.359467pt;}
.y2d_c00270{bottom:647.556667pt;}
.y7c_c00270{bottom:654.599467pt;}
.y28_c00270{bottom:662.200000pt;}
.y27_c00270{bottom:666.199253pt;}
.y7b_c00270{bottom:682.199467pt;}
.y1f_c00270{bottom:687.395227pt;}
.y26_c00270{bottom:687.397973pt;}
.y1e_c00270{bottom:705.241387pt;}
.y25_c00270{bottom:707.879333pt;}
.y7a_c00270{bottom:709.719467pt;}
.y1d_c00270{bottom:723.160747pt;}
.y23_c00270{bottom:724.440000pt;}
.y79_c00270{bottom:737.319467pt;}
.y1c_c00270{bottom:741.080107pt;}
.y22_c00270{bottom:749.000347pt;}
.y1b_c00270{bottom:758.999467pt;}
.y20_c00270{bottom:765.480000pt;}
.y14_c00270{bottom:786.678667pt;}
.y6b_c00270{bottom:786.680000pt;}
.y78_c00270{bottom:792.519467pt;}
.y1a_c00270{bottom:808.599467pt;}
.y19_c00270{bottom:808.599973pt;}
.y17_c00270{bottom:808.604907pt;}
.y13_c00270{bottom:808.606053pt;}
.y77_c00270{bottom:820.119467pt;}
.y18_c00270{bottom:826.519333pt;}
.y12_c00270{bottom:826.525413pt;}
.y16_c00270{bottom:829.159467pt;}
.ye_c00270{bottom:850.345253pt;}
.y11_c00270{bottom:850.359333pt;}
.yb_c00270{bottom:850.359893pt;}
.yf_c00270{bottom:866.920000pt;}
.yd_c00270{bottom:868.191413pt;}
.ya_c00270{bottom:868.206053pt;}
.y76_c00270{bottom:875.159467pt;}
.y9_c00270{bottom:886.125413pt;}
.yc_c00270{bottom:891.395813pt;}
.y6_c00270{bottom:905.958667pt;}
.y69_c00270{bottom:905.960000pt;}
.y8_c00270{bottom:909.959333pt;}
.y75_c00270{bottom:930.519467pt;}
.y5_c00270{bottom:946.439333pt;}
.y74_c00270{bottom:958.119467pt;}
.y4_c00270{bottom:994.839467pt;}
.y3_c00270{bottom:1013.319467pt;}
.y2_c00270{bottom:1060.599467pt;}
.h13_c00270{height:17.920000pt;}
.h9_c00270{height:17.921333pt;}
.h7_c00270{height:20.478667pt;}
.h11_c00270{height:20.480000pt;}
.hb_c00270{height:20.560000pt;}
.ha_c00270{height:20.561333pt;}
.hf_c00270{height:30.560000pt;}
.hd_c00270{height:35.760000pt;}
.h6_c00270{height:35.840000pt;}
.h2_c00270{height:44.800000pt;}
.h5_c00270{height:48.294844pt;}
.h8_c00270{height:59.040000pt;}
.h15_c00270{height:63.479040pt;}
.h3_c00270{height:68.288000pt;}
.h4_c00270{height:69.376000pt;}
.he_c00270{height:71.600000pt;}
.hc_c00270{height:97.440000pt;}
.h12_c00270{height:107.358667pt;}
.h14_c00270{height:107.360000pt;}
.h10_c00270{height:125.280000pt;}
.h0_c00270{height:1122.520000pt;}
.h1_c00270{height:1122.666667pt;}
.w8_c00270{width:-544.261333pt;}
.w3_c00270{width:-396.741333pt;}
.w6_c00270{width:-321.141333pt;}
.w7_c00270{width:-245.541333pt;}
.w4_c00270{width:-151.061333pt;}
.w5_c00270{width:-56.581333pt;}
.w2_c00270{width:0.000000pt;}
.w9_c00270{width:0.058667pt;}
.w0_c00270{width:793.701333pt;}
.w1_c00270{width:794.000000pt;}
.x1_c00270{left:-745.700800pt;}
.x2_c00270{left:-680.260800pt;}
.x5_c00270{left:-539.534080pt;}
.x11_c00270{left:-440.020800pt;}
.xe_c00270{left:-392.100800pt;}
.x12_c00270{left:-348.180800pt;}
.xf_c00270{left:-340.740800pt;}
.x8_c00270{left:-333.300800pt;}
.x13_c00270{left:-316.500800pt;}
.x10_c00270{left:-283.620800pt;}
.xd_c00270{left:-276.180800pt;}
.x9_c00270{left:-257.700800pt;}
.x3_c00270{left:-240.900800pt;}
.x14_c00270{left:-178.100800pt;}
.xb_c00270{left:-170.658080pt;}
.x6_c00270{left:-163.242160pt;}
.x4_c00270{left:-146.420800pt;}
.xc_c00270{left:-94.574000pt;}
.x7_c00270{left:-87.158080pt;}
.x15_c00270{left:-83.540800pt;}
.xa_c00270{left:-68.667760pt;}
.x0_c00270{left:0.000000pt;}
.x18_c00270{left:113.440000pt;}
.x1a_c00270{left:132.400000pt;}
.x1b_c00270{left:136.074640pt;}
.x19_c00270{left:141.840000pt;}
.x17_c00270{left:604.400000pt;}
.x16_c00270{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00271;src:url('chunks/assets/font_41c8da1c0ddd616b563e9c29.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00271;src:url('chunks/assets/font_e8164b8bbab3f89cd2281f10.woff2')format("woff");}.ff3_c00271{font-family:ff3_c00271;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00271{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls9_c00271{letter-spacing:-0.065880px;}
.ls8_c00271{letter-spacing:0.000000px;}
.ls1_c00271{letter-spacing:0.065880px;}
.ls3_c00271{letter-spacing:0.072000px;}
.ls2_c00271{letter-spacing:0.144000px;}
.ls0_c00271{letter-spacing:0.197640px;}
.ls4_c00271{letter-spacing:16.206480px;}
.ls6_c00271{letter-spacing:16.535880px;}
.ls5_c00271{letter-spacing:16.601760px;}
.ls7_c00271{letter-spacing:23.760000px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00271{word-spacing:-18.072000px;}
.ws0_c00271{word-spacing:-18.000000px;}
.ws3_c00271{word-spacing:-16.667640px;}
.ws4_c00271{word-spacing:-16.470000px;}
.wsa_c00271{word-spacing:-16.404120px;}
.ws18_c00271{word-spacing:-0.461160px;}
.ws19_c00271{word-spacing:-0.263520px;}
.wsb_c00271{word-spacing:-0.197640px;}
.wsd_c00271{word-spacing:-0.131760px;}
.ws11_c00271{word-spacing:-0.072000px;}
.wse_c00271{word-spacing:-0.065880px;}
.wsc_c00271{word-spacing:0.000000px;}
.ws9_c00271{word-spacing:0.065880px;}
.ws2_c00271{word-spacing:0.131760px;}
.ws1d_c00271{word-spacing:0.720000px;}
.ws15_c00271{word-spacing:2.448000px;}
.ws10_c00271{word-spacing:3.456000px;}
.ws5_c00271{word-spacing:3.600000px;}
.wsf_c00271{word-spacing:3.821040px;}
.ws1_c00271{word-spacing:4.084560px;}
.ws1a_c00271{word-spacing:4.216320px;}
.ws6_c00271{word-spacing:4.356000px;}
.ws1b_c00271{word-spacing:4.479840px;}
.ws13_c00271{word-spacing:4.608000px;}
.ws14_c00271{word-spacing:4.680000px;}
.ws1c_c00271{word-spacing:5.328000px;}
.ws16_c00271{word-spacing:9.720000px;}
.ws12_c00271{word-spacing:25.560000px;}
.ws17_c00271{word-spacing:41.976000px;}
.ws7_c00271{word-spacing:42.048000px;}
._0_c00271{margin-left:-1.199016px;}
._1_c00271{width:1.054080px;}
._6_c00271{width:6.286032px;}
._3_c00271{width:9.792000px;}
._5_c00271{width:17.326440px;}
._4_c00271{width:19.223784px;}
._2_c00271{width:25.632000px;}
.fc1_c00271{color:rgb(0,0,0);}
.fc0_c00271{color:rgb(35,31,32);}
.fs1_c00271{font-size:65.880000px;}
.fs0_c00271{font-size:72.000000px;}
.y0_c00271{bottom:0.000000px;}
.y1_c00271{bottom:61.748550px;}
.y1e_c00271{bottom:224.324400px;}
.y1d_c00271{bottom:255.284400px;}
.y1c_c00271{bottom:286.334400px;}
.y1b_c00271{bottom:317.384400px;}
.y1a_c00271{bottom:378.105420px;}
.y19_c00271{bottom:406.549110px;}
.y18_c00271{bottom:434.992800px;}
.y17_c00271{bottom:463.436490px;}
.y16_c00271{bottom:491.962530px;}
.y15_c00271{bottom:520.406220px;}
.y14_c00271{bottom:548.849910px;}
.y13_c00271{bottom:605.737290px;}
.y12_c00271{bottom:634.263330px;}
.y11_c00271{bottom:662.707020px;}
.y10_c00271{bottom:691.150710px;}
.yf_c00271{bottom:719.594400px;}
.ye_c00271{bottom:780.524400px;}
.yd_c00271{bottom:811.574400px;}
.yc_c00271{bottom:842.624400px;}
.yb_c00271{bottom:873.674400px;}
.ya_c00271{bottom:904.724400px;}
.y9_c00271{bottom:935.774400px;}
.y8_c00271{bottom:966.824400px;}
.y7_c00271{bottom:1027.297140px;}
.y6_c00271{bottom:1055.740830px;}
.y5_c00271{bottom:1084.266870px;}
.y4_c00271{bottom:1112.710560px;}
.y3_c00271{bottom:1141.154250px;}
.y2_c00271{bottom:1193.174400px;}
.h2_c00271{height:50.400000px;}
.h4_c00271{height:71.413920px;}
.h3_c00271{height:76.824000px;}
.h5_c00271{height:78.048000px;}
.h0_c00271{height:1262.835000px;}
.h1_c00271{height:1263.000000px;}
.w0_c00271{width:892.914000px;}
.w1_c00271{width:893.250000px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:54.000000px;}
.x2_c00271{left:127.620000px;}
.x3_c00271{left:148.950000px;}
.x5_c00271{left:153.083970px;}
.x4_c00271{left:159.570000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls9_c00271{letter-spacing:-0.058560pt;}
.ls8_c00271{letter-spacing:0.000000pt;}
.ls1_c00271{letter-spacing:0.058560pt;}
.ls3_c00271{letter-spacing:0.064000pt;}
.ls2_c00271{letter-spacing:0.128000pt;}
.ls0_c00271{letter-spacing:0.175680pt;}
.ls4_c00271{letter-spacing:14.405760pt;}
.ls6_c00271{letter-spacing:14.698560pt;}
.ls5_c00271{letter-spacing:14.757120pt;}
.ls7_c00271{letter-spacing:21.120000pt;}
.ws8_c00271{word-spacing:-16.064000pt;}
.ws0_c00271{word-spacing:-16.000000pt;}
.ws3_c00271{word-spacing:-14.815680pt;}
.ws4_c00271{word-spacing:-14.640000pt;}
.wsa_c00271{word-spacing:-14.581440pt;}
.ws18_c00271{word-spacing:-0.409920pt;}
.ws19_c00271{word-spacing:-0.234240pt;}
.wsb_c00271{word-spacing:-0.175680pt;}
.wsd_c00271{word-spacing:-0.117120pt;}
.ws11_c00271{word-spacing:-0.064000pt;}
.wse_c00271{word-spacing:-0.058560pt;}
.wsc_c00271{word-spacing:0.000000pt;}
.ws9_c00271{word-spacing:0.058560pt;}
.ws2_c00271{word-spacing:0.117120pt;}
.ws1d_c00271{word-spacing:0.640000pt;}
.ws15_c00271{word-spacing:2.176000pt;}
.ws10_c00271{word-spacing:3.072000pt;}
.ws5_c00271{word-spacing:3.200000pt;}
.wsf_c00271{word-spacing:3.396480pt;}
.ws1_c00271{word-spacing:3.630720pt;}
.ws1a_c00271{word-spacing:3.747840pt;}
.ws6_c00271{word-spacing:3.872000pt;}
.ws1b_c00271{word-spacing:3.982080pt;}
.ws13_c00271{word-spacing:4.096000pt;}
.ws14_c00271{word-spacing:4.160000pt;}
.ws1c_c00271{word-spacing:4.736000pt;}
.ws16_c00271{word-spacing:8.640000pt;}
.ws12_c00271{word-spacing:22.720000pt;}
.ws17_c00271{word-spacing:37.312000pt;}
.ws7_c00271{word-spacing:37.376000pt;}
._0_c00271{margin-left:-1.065792pt;}
._1_c00271{width:0.936960pt;}
._6_c00271{width:5.587584pt;}
._3_c00271{width:8.704000pt;}
._5_c00271{width:15.401280pt;}
._4_c00271{width:17.087808pt;}
._2_c00271{width:22.784000pt;}
.fs1_c00271{font-size:58.560000pt;}
.fs0_c00271{font-size:64.000000pt;}
.y0_c00271{bottom:0.000000pt;}
.y1_c00271{bottom:54.887600pt;}
.y1e_c00271{bottom:199.399467pt;}
.y1d_c00271{bottom:226.919467pt;}
.y1c_c00271{bottom:254.519467pt;}
.y1b_c00271{bottom:282.119467pt;}
.y1a_c00271{bottom:336.093707pt;}
.y19_c00271{bottom:361.376987pt;}
.y18_c00271{bottom:386.660267pt;}
.y17_c00271{bottom:411.943547pt;}
.y16_c00271{bottom:437.300027pt;}
.y15_c00271{bottom:462.583307pt;}
.y14_c00271{bottom:487.866587pt;}
.y13_c00271{bottom:538.433147pt;}
.y12_c00271{bottom:563.789627pt;}
.y11_c00271{bottom:589.072907pt;}
.y10_c00271{bottom:614.356187pt;}
.yf_c00271{bottom:639.639467pt;}
.ye_c00271{bottom:693.799467pt;}
.yd_c00271{bottom:721.399467pt;}
.yc_c00271{bottom:748.999467pt;}
.yb_c00271{bottom:776.599467pt;}
.ya_c00271{bottom:804.199467pt;}
.y9_c00271{bottom:831.799467pt;}
.y8_c00271{bottom:859.399467pt;}
.y7_c00271{bottom:913.153013pt;}
.y6_c00271{bottom:938.436293pt;}
.y5_c00271{bottom:963.792773pt;}
.y4_c00271{bottom:989.076053pt;}
.y3_c00271{bottom:1014.359333pt;}
.y2_c00271{bottom:1060.599467pt;}
.h2_c00271{height:44.800000pt;}
.h4_c00271{height:63.479040pt;}
.h3_c00271{height:68.288000pt;}
.h5_c00271{height:69.376000pt;}
.h0_c00271{height:1122.520000pt;}
.h1_c00271{height:1122.666667pt;}
.w0_c00271{width:793.701333pt;}
.w1_c00271{width:794.000000pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:48.000000pt;}
.x2_c00271{left:113.440000pt;}
.x3_c00271{left:132.400000pt;}
.x5_c00271{left:136.074640pt;}
.x4_c00271{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00272;src:url('chunks/assets/font_bb16460155df5f85ce6b67df.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00272;src:url('chunks/assets/font_894cc718df8542a66145b15f.woff2')format("woff");}.ff3_c00272{font-family:ff3_c00272;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00272;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00272{font-family:ff4_c00272;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00272;src:url('chunks/assets/font_910c08a30430b57320d62b43.woff2')format("woff");}.ff5_c00272{font-family:ff5_c00272;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00272;src:url('chunks/assets/font_8c0d92263ccf01f9dfd54001.woff2')format("woff");}.ff6_c00272{font-family:ff6_c00272;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00272;src:url('chunks/assets/font_f8c9485a5552680bcdc08f9c.woff2')format("woff");}.ff7_c00272{font-family:ff7_c00272;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00272;src:url('chunks/assets/font_6382d8a08a0a966ec112a678.woff2')format("woff");}.ff8_c00272{font-family:ff8_c00272;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.lsf_c00272{letter-spacing:-0.329400px;}
.lse_c00272{letter-spacing:-0.288000px;}
.lsd_c00272{letter-spacing:-0.065880px;}
.lsc_c00272{letter-spacing:0.000000px;}
.ls1_c00272{letter-spacing:0.065880px;}
.ls3_c00272{letter-spacing:0.072000px;}
.lsb_c00272{letter-spacing:0.120240px;}
.ls2_c00272{letter-spacing:0.144000px;}
.ls0_c00272{letter-spacing:0.197640px;}
.lsa_c00272{letter-spacing:16.140600px;}
.ls4_c00272{letter-spacing:16.206480px;}
.ls6_c00272{letter-spacing:16.535880px;}
.ls5_c00272{letter-spacing:16.601760px;}
.ls9_c00272{letter-spacing:20.225160px;}
.ls7_c00272{letter-spacing:23.760000px;}
.ls8_c00272{letter-spacing:41.761332px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00272{word-spacing:-18.072000px;}
.ws0_c00272{word-spacing:-18.000000px;}
.ws3_c00272{word-spacing:-16.667640px;}
.ws4_c00272{word-spacing:-16.470000px;}
.wsa_c00272{word-spacing:-16.404120px;}
.wsf_c00272{word-spacing:-16.140600px;}
.ws13_c00272{word-spacing:-13.707360px;}
.ws35_c00272{word-spacing:-1.803600px;}
.ws34_c00272{word-spacing:-1.442880px;}
.ws20_c00272{word-spacing:-0.461160px;}
.ws21_c00272{word-spacing:-0.263520px;}
.wsb_c00272{word-spacing:-0.197640px;}
.ws12_c00272{word-spacing:-0.144000px;}
.ws15_c00272{word-spacing:-0.131760px;}
.ws19_c00272{word-spacing:-0.072000px;}
.ws16_c00272{word-spacing:-0.065880px;}
.ws14_c00272{word-spacing:0.000000px;}
.ws9_c00272{word-spacing:0.065880px;}
.ws2_c00272{word-spacing:0.131760px;}
.ws28_c00272{word-spacing:0.576000px;}
.ws25_c00272{word-spacing:0.720000px;}
.wse_c00272{word-spacing:1.080000px;}
.wsd_c00272{word-spacing:1.152000px;}
.ws29_c00272{word-spacing:1.368000px;}
.ws1d_c00272{word-spacing:2.448000px;}
.ws18_c00272{word-spacing:3.456000px;}
.ws27_c00272{word-spacing:3.491640px;}
.ws5_c00272{word-spacing:3.600000px;}
.ws26_c00272{word-spacing:3.755160px;}
.ws17_c00272{word-spacing:3.821040px;}
.ws1_c00272{word-spacing:4.084560px;}
.ws22_c00272{word-spacing:4.216320px;}
.ws6_c00272{word-spacing:4.348800px;}
.wsc_c00272{word-spacing:4.356000px;}
.ws23_c00272{word-spacing:4.479840px;}
.ws1b_c00272{word-spacing:4.608000px;}
.ws1c_c00272{word-spacing:4.680000px;}
.ws24_c00272{word-spacing:5.328000px;}
.ws33_c00272{word-spacing:9.360000px;}
.ws1e_c00272{word-spacing:9.720000px;}
.ws30_c00272{word-spacing:11.448000px;}
.ws2f_c00272{word-spacing:11.880000px;}
.ws2c_c00272{word-spacing:15.048000px;}
.ws2d_c00272{word-spacing:15.120000px;}
.ws2e_c00272{word-spacing:15.408000px;}
.ws31_c00272{word-spacing:22.248000px;}
.ws10_c00272{word-spacing:22.608000px;}
.ws32_c00272{word-spacing:22.680000px;}
.ws11_c00272{word-spacing:22.752000px;}
.ws2b_c00272{word-spacing:23.328000px;}
.ws2a_c00272{word-spacing:23.400000px;}
.ws1a_c00272{word-spacing:25.560000px;}
.ws1f_c00272{word-spacing:41.976000px;}
.ws7_c00272{word-spacing:42.048000px;}
._0_c00272{margin-left:-1.199016px;}
._1_c00272{width:1.054080px;}
._6_c00272{width:6.286032px;}
._3_c00272{width:9.792000px;}
._8_c00272{width:10.991016px;}
._7_c00272{width:15.502032px;}
._5_c00272{width:17.326440px;}
._4_c00272{width:19.223784px;}
._2_c00272{width:25.632000px;}
._9_c00272{width:861.696000px;}
.fc2_c00272{color:transparent;}
.fc1_c00272{color:rgb(0,0,0);}
.fc0_c00272{color:rgb(35,31,32);}
.fs2_c00272{font-size:60.120000px;}
.fs1_c00272{font-size:65.880000px;}
.fs0_c00272{font-size:72.000000px;}
.y0_c00272{bottom:0.000000px;}
.y3f_c00272{bottom:32.054550px;}
.y1_c00272{bottom:61.748550px;}
.y31_c00272{bottom:182.744400px;}
.y3e_c00272{bottom:206.685000px;}
.y30_c00272{bottom:213.614400px;}
.y40_c00272{bottom:220.469550px;}
.y1e_c00272{bottom:224.324400px;}
.y1d_c00272{bottom:255.284400px;}
.y35_c00272{bottom:258.243060px;}
.y36_c00272{bottom:280.246980px;}
.y1c_c00272{bottom:286.334400px;}
.y37_c00272{bottom:302.250900px;}
.y1b_c00272{bottom:317.384400px;}
.y33_c00272{bottom:320.256840px;}
.y38_c00272{bottom:324.254820px;}
.y39_c00272{bottom:346.258740px;}
.y3a_c00272{bottom:368.262660px;}
.y1a_c00272{bottom:378.105420px;}
.y3b_c00272{bottom:390.266580px;}
.y32_c00272{bottom:403.628250px;}
.y19_c00272{bottom:406.549110px;}
.y3c_c00272{bottom:412.270500px;}
.y3d_c00272{bottom:434.274420px;}
.y18_c00272{bottom:434.992800px;}
.y34_c00272{bottom:436.979820px;}
.y17_c00272{bottom:463.436490px;}
.y2f_c00272{bottom:482.804400px;}
.y16_c00272{bottom:491.962530px;}
.y2e_c00272{bottom:513.854400px;}
.y15_c00272{bottom:520.406220px;}
.y2d_c00272{bottom:544.904400px;}
.y14_c00272{bottom:548.849910px;}
.y2c_c00272{bottom:575.954400px;}
.y13_c00272{bottom:605.737290px;}
.y2b_c00272{bottom:607.004400px;}
.y12_c00272{bottom:634.263330px;}
.y11_c00272{bottom:662.707020px;}
.y2a_c00272{bottom:667.653450px;}
.y10_c00272{bottom:691.150710px;}
.y29_c00272{bottom:696.179490px;}
.yf_c00272{bottom:719.594400px;}
.y28_c00272{bottom:724.623180px;}
.y27_c00272{bottom:753.066870px;}
.ye_c00272{bottom:780.524400px;}
.y26_c00272{bottom:781.510560px;}
.y25_c00272{bottom:809.954250px;}
.yd_c00272{bottom:811.574400px;}
.yc_c00272{bottom:842.624400px;}
.y24_c00272{bottom:870.884250px;}
.yb_c00272{bottom:873.674400px;}
.y23_c00272{bottom:901.934250px;}
.ya_c00272{bottom:904.724400px;}
.y22_c00272{bottom:932.984250px;}
.y9_c00272{bottom:935.774400px;}
.y21_c00272{bottom:964.034250px;}
.y8_c00272{bottom:966.824400px;}
.y20_c00272{bottom:995.084250px;}
.y7_c00272{bottom:1027.297140px;}
.y6_c00272{bottom:1055.740830px;}
.y5_c00272{bottom:1084.266870px;}
.y4_c00272{bottom:1112.710560px;}
.y3_c00272{bottom:1141.154250px;}
.y1f_c00272{bottom:1193.174400px;}
.y2_c00272{bottom:1193.174550px;}
.h7_c00272{height:46.350000px;}
.h6_c00272{height:49.581387px;}
.h2_c00272{height:50.400000px;}
.h4_c00272{height:71.413920px;}
.h3_c00272{height:76.824000px;}
.h5_c00272{height:78.048000px;}
.h0_c00272{height:1262.835000px;}
.h1_c00272{height:1263.000000px;}
.w2_c00272{width:0.000000px;}
.w3_c00272{width:0.066000px;}
.w6_c00272{width:136.530000px;}
.w5_c00272{width:170.280000px;}
.w4_c00272{width:187.023000px;}
.w0_c00272{width:892.914000px;}
.w1_c00272{width:893.250000px;}
.x1_c00272{left:-838.913400px;}
.x2_c00272{left:-765.293400px;}
.x3_c00272{left:-743.963400px;}
.x5_c00272{left:-739.829430px;}
.x4_c00272{left:-733.343400px;}
.x0_c00272{left:0.000000px;}
.x11_c00272{left:9.074850px;}
.x13_c00272{left:18.300600px;}
.xa_c00272{left:127.620000px;}
.xf_c00272{left:131.194050px;}
.xe_c00272{left:138.769170px;}
.x8_c00272{left:148.950000px;}
.x9_c00272{left:159.570000px;}
.x10_c00272{left:176.760000px;}
.xb_c00272{left:253.087350px;}
.x12_c00272{left:366.930000px;}
.x14_c00272{left:414.480600px;}
.xc_c00272{left:438.722880px;}
.x15_c00272{left:565.650000px;}
.xd_c00272{left:616.798320px;}
.x7_c00272{left:679.950000px;}
.x6_c00272{left:804.366150px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.lsf_c00272{letter-spacing:-0.292800pt;}
.lse_c00272{letter-spacing:-0.256000pt;}
.lsd_c00272{letter-spacing:-0.058560pt;}
.lsc_c00272{letter-spacing:0.000000pt;}
.ls1_c00272{letter-spacing:0.058560pt;}
.ls3_c00272{letter-spacing:0.064000pt;}
.lsb_c00272{letter-spacing:0.106880pt;}
.ls2_c00272{letter-spacing:0.128000pt;}
.ls0_c00272{letter-spacing:0.175680pt;}
.lsa_c00272{letter-spacing:14.347200pt;}
.ls4_c00272{letter-spacing:14.405760pt;}
.ls6_c00272{letter-spacing:14.698560pt;}
.ls5_c00272{letter-spacing:14.757120pt;}
.ls9_c00272{letter-spacing:17.977920pt;}
.ls7_c00272{letter-spacing:21.120000pt;}
.ls8_c00272{letter-spacing:37.121184pt;}
.ws8_c00272{word-spacing:-16.064000pt;}
.ws0_c00272{word-spacing:-16.000000pt;}
.ws3_c00272{word-spacing:-14.815680pt;}
.ws4_c00272{word-spacing:-14.640000pt;}
.wsa_c00272{word-spacing:-14.581440pt;}
.wsf_c00272{word-spacing:-14.347200pt;}
.ws13_c00272{word-spacing:-12.184320pt;}
.ws35_c00272{word-spacing:-1.603200pt;}
.ws34_c00272{word-spacing:-1.282560pt;}
.ws20_c00272{word-spacing:-0.409920pt;}
.ws21_c00272{word-spacing:-0.234240pt;}
.wsb_c00272{word-spacing:-0.175680pt;}
.ws12_c00272{word-spacing:-0.128000pt;}
.ws15_c00272{word-spacing:-0.117120pt;}
.ws19_c00272{word-spacing:-0.064000pt;}
.ws16_c00272{word-spacing:-0.058560pt;}
.ws14_c00272{word-spacing:0.000000pt;}
.ws9_c00272{word-spacing:0.058560pt;}
.ws2_c00272{word-spacing:0.117120pt;}
.ws28_c00272{word-spacing:0.512000pt;}
.ws25_c00272{word-spacing:0.640000pt;}
.wse_c00272{word-spacing:0.960000pt;}
.wsd_c00272{word-spacing:1.024000pt;}
.ws29_c00272{word-spacing:1.216000pt;}
.ws1d_c00272{word-spacing:2.176000pt;}
.ws18_c00272{word-spacing:3.072000pt;}
.ws27_c00272{word-spacing:3.103680pt;}
.ws5_c00272{word-spacing:3.200000pt;}
.ws26_c00272{word-spacing:3.337920pt;}
.ws17_c00272{word-spacing:3.396480pt;}
.ws1_c00272{word-spacing:3.630720pt;}
.ws22_c00272{word-spacing:3.747840pt;}
.ws6_c00272{word-spacing:3.865600pt;}
.wsc_c00272{word-spacing:3.872000pt;}
.ws23_c00272{word-spacing:3.982080pt;}
.ws1b_c00272{word-spacing:4.096000pt;}
.ws1c_c00272{word-spacing:4.160000pt;}
.ws24_c00272{word-spacing:4.736000pt;}
.ws33_c00272{word-spacing:8.320000pt;}
.ws1e_c00272{word-spacing:8.640000pt;}
.ws30_c00272{word-spacing:10.176000pt;}
.ws2f_c00272{word-spacing:10.560000pt;}
.ws2c_c00272{word-spacing:13.376000pt;}
.ws2d_c00272{word-spacing:13.440000pt;}
.ws2e_c00272{word-spacing:13.696000pt;}
.ws31_c00272{word-spacing:19.776000pt;}
.ws10_c00272{word-spacing:20.096000pt;}
.ws32_c00272{word-spacing:20.160000pt;}
.ws11_c00272{word-spacing:20.224000pt;}
.ws2b_c00272{word-spacing:20.736000pt;}
.ws2a_c00272{word-spacing:20.800000pt;}
.ws1a_c00272{word-spacing:22.720000pt;}
.ws1f_c00272{word-spacing:37.312000pt;}
.ws7_c00272{word-spacing:37.376000pt;}
._0_c00272{margin-left:-1.065792pt;}
._1_c00272{width:0.936960pt;}
._6_c00272{width:5.587584pt;}
._3_c00272{width:8.704000pt;}
._8_c00272{width:9.769792pt;}
._7_c00272{width:13.779584pt;}
._5_c00272{width:15.401280pt;}
._4_c00272{width:17.087808pt;}
._2_c00272{width:22.784000pt;}
._9_c00272{width:765.952000pt;}
.fs2_c00272{font-size:53.440000pt;}
.fs1_c00272{font-size:58.560000pt;}
.fs0_c00272{font-size:64.000000pt;}
.y0_c00272{bottom:0.000000pt;}
.y3f_c00272{bottom:28.492933pt;}
.y1_c00272{bottom:54.887600pt;}
.y31_c00272{bottom:162.439467pt;}
.y3e_c00272{bottom:183.720000pt;}
.y30_c00272{bottom:189.879467pt;}
.y40_c00272{bottom:195.972933pt;}
.y1e_c00272{bottom:199.399467pt;}
.y1d_c00272{bottom:226.919467pt;}
.y35_c00272{bottom:229.549387pt;}
.y36_c00272{bottom:249.108427pt;}
.y1c_c00272{bottom:254.519467pt;}
.y37_c00272{bottom:268.667467pt;}
.y1b_c00272{bottom:282.119467pt;}
.y33_c00272{bottom:284.672747pt;}
.y38_c00272{bottom:288.226507pt;}
.y39_c00272{bottom:307.785547pt;}
.y3a_c00272{bottom:327.344587pt;}
.y1a_c00272{bottom:336.093707pt;}
.y3b_c00272{bottom:346.903627pt;}
.y32_c00272{bottom:358.780667pt;}
.y19_c00272{bottom:361.376987pt;}
.y3c_c00272{bottom:366.462667pt;}
.y3d_c00272{bottom:386.021707pt;}
.y18_c00272{bottom:386.660267pt;}
.y34_c00272{bottom:388.426507pt;}
.y17_c00272{bottom:411.943547pt;}
.y2f_c00272{bottom:429.159467pt;}
.y16_c00272{bottom:437.300027pt;}
.y2e_c00272{bottom:456.759467pt;}
.y15_c00272{bottom:462.583307pt;}
.y2d_c00272{bottom:484.359467pt;}
.y14_c00272{bottom:487.866587pt;}
.y2c_c00272{bottom:511.959467pt;}
.y13_c00272{bottom:538.433147pt;}
.y2b_c00272{bottom:539.559467pt;}
.y12_c00272{bottom:563.789627pt;}
.y11_c00272{bottom:589.072907pt;}
.y2a_c00272{bottom:593.469733pt;}
.y10_c00272{bottom:614.356187pt;}
.y29_c00272{bottom:618.826213pt;}
.yf_c00272{bottom:639.639467pt;}
.y28_c00272{bottom:644.109493pt;}
.y27_c00272{bottom:669.392773pt;}
.ye_c00272{bottom:693.799467pt;}
.y26_c00272{bottom:694.676053pt;}
.y25_c00272{bottom:719.959333pt;}
.yd_c00272{bottom:721.399467pt;}
.yc_c00272{bottom:748.999467pt;}
.y24_c00272{bottom:774.119333pt;}
.yb_c00272{bottom:776.599467pt;}
.y23_c00272{bottom:801.719333pt;}
.ya_c00272{bottom:804.199467pt;}
.y22_c00272{bottom:829.319333pt;}
.y9_c00272{bottom:831.799467pt;}
.y21_c00272{bottom:856.919333pt;}
.y8_c00272{bottom:859.399467pt;}
.y20_c00272{bottom:884.519333pt;}
.y7_c00272{bottom:913.153013pt;}
.y6_c00272{bottom:938.436293pt;}
.y5_c00272{bottom:963.792773pt;}
.y4_c00272{bottom:989.076053pt;}
.y3_c00272{bottom:1014.359333pt;}
.y1f_c00272{bottom:1060.599467pt;}
.y2_c00272{bottom:1060.599600pt;}
.h7_c00272{height:41.200000pt;}
.h6_c00272{height:44.072344pt;}
.h2_c00272{height:44.800000pt;}
.h4_c00272{height:63.479040pt;}
.h3_c00272{height:68.288000pt;}
.h5_c00272{height:69.376000pt;}
.h0_c00272{height:1122.520000pt;}
.h1_c00272{height:1122.666667pt;}
.w2_c00272{width:0.000000pt;}
.w3_c00272{width:0.058667pt;}
.w6_c00272{width:121.360000pt;}
.w5_c00272{width:151.360000pt;}
.w4_c00272{width:166.242667pt;}
.w0_c00272{width:793.701333pt;}
.w1_c00272{width:794.000000pt;}
.x1_c00272{left:-745.700800pt;}
.x2_c00272{left:-680.260800pt;}
.x3_c00272{left:-661.300800pt;}
.x5_c00272{left:-657.626160pt;}
.x4_c00272{left:-651.860800pt;}
.x0_c00272{left:0.000000pt;}
.x11_c00272{left:8.066533pt;}
.x13_c00272{left:16.267200pt;}
.xa_c00272{left:113.440000pt;}
.xf_c00272{left:116.616933pt;}
.xe_c00272{left:123.350373pt;}
.x8_c00272{left:132.400000pt;}
.x9_c00272{left:141.840000pt;}
.x10_c00272{left:157.120000pt;}
.xb_c00272{left:224.966533pt;}
.x12_c00272{left:326.160000pt;}
.x14_c00272{left:368.427200pt;}
.xc_c00272{left:389.975893pt;}
.x15_c00272{left:502.800000pt;}
.xd_c00272{left:548.265173pt;}
.x7_c00272{left:604.400000pt;}
.x6_c00272{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00273;src:url('chunks/assets/font_c45b11596945dfaeab598d45.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00273;src:url('chunks/assets/font_e4bebeae91e986fd79f47b76.woff2')format("woff");}.ff3_c00273{font-family:ff3_c00273;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.lsa_c00273{letter-spacing:-0.072000px;}
.lsb_c00273{letter-spacing:-0.065880px;}
.ls9_c00273{letter-spacing:0.000000px;}
.ls5_c00273{letter-spacing:0.065880px;}
.ls0_c00273{letter-spacing:0.072000px;}
.ls1_c00273{letter-spacing:0.144000px;}
.ls4_c00273{letter-spacing:0.197640px;}
.lsc_c00273{letter-spacing:0.527040px;}
.ls3_c00273{letter-spacing:16.206480px;}
.ls6_c00273{letter-spacing:16.219656px;}
.ls2_c00273{letter-spacing:16.601760px;}
.ls7_c00273{letter-spacing:32.808240px;}
.ls8_c00273{letter-spacing:33.854400px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00273{word-spacing:-18.144000px;}
.ws0_c00273{word-spacing:-18.000000px;}
.ws4_c00273{word-spacing:-16.535880px;}
.ws6_c00273{word-spacing:-16.470000px;}
.ws7_c00273{word-spacing:-1.251720px;}
.ws2_c00273{word-spacing:-0.936000px;}
.ws19_c00273{word-spacing:-0.461160px;}
.ws16_c00273{word-spacing:-0.197640px;}
.wse_c00273{word-spacing:-0.144000px;}
.ws14_c00273{word-spacing:-0.131760px;}
.ws1d_c00273{word-spacing:-0.072000px;}
.ws18_c00273{word-spacing:-0.065880px;}
.wsb_c00273{word-spacing:0.000000px;}
.ws5_c00273{word-spacing:0.059292px;}
.ws15_c00273{word-spacing:0.065880px;}
.wsa_c00273{word-spacing:0.072000px;}
.ws17_c00273{word-spacing:0.131760px;}
.ws1f_c00273{word-spacing:0.263520px;}
.wsd_c00273{word-spacing:0.288000px;}
.wsc_c00273{word-spacing:0.360000px;}
.ws1_c00273{word-spacing:0.576000px;}
.ws11_c00273{word-spacing:1.728000px;}
.ws13_c00273{word-spacing:4.320000px;}
.ws12_c00273{word-spacing:4.608000px;}
.ws10_c00273{word-spacing:7.992000px;}
.wsf_c00273{word-spacing:8.280000px;}
.ws1e_c00273{word-spacing:12.960000px;}
.ws1c_c00273{word-spacing:15.264000px;}
.ws1b_c00273{word-spacing:15.768000px;}
.ws1a_c00273{word-spacing:15.840000px;}
.ws8_c00273{word-spacing:15.912000px;}
.ws9_c00273{word-spacing:31.320000px;}
._0_c00273{margin-left:-1.310400px;}
._2_c00273{width:1.054080px;}
._3_c00273{width:14.976000px;}
._1_c00273{width:24.998400px;}
.fc1_c00273{color:rgb(0,0,0);}
.fc0_c00273{color:rgb(35,31,32);}
.fs1_c00273{font-size:65.880000px;}
.fs0_c00273{font-size:72.000000px;}
.y0_c00273{bottom:0.000000px;}
.y1_c00273{bottom:61.748550px;}
.y1f_c00273{bottom:168.344520px;}
.y1e_c00273{bottom:196.788210px;}
.y1d_c00273{bottom:225.314250px;}
.y1c_c00273{bottom:286.154250px;}
.y1b_c00273{bottom:317.204250px;}
.y1a_c00273{bottom:348.254250px;}
.y19_c00273{bottom:379.304250px;}
.y18_c00273{bottom:410.354250px;}
.y17_c00273{bottom:471.064620px;}
.y16_c00273{bottom:499.508310px;}
.y15_c00273{bottom:527.952000px;}
.y14_c00273{bottom:556.395690px;}
.y13_c00273{bottom:584.839380px;}
.y12_c00273{bottom:613.365420px;}
.y11_c00273{bottom:670.252800px;}
.y10_c00273{bottom:698.696490px;}
.yf_c00273{bottom:727.222530px;}
.ye_c00273{bottom:755.666220px;}
.yd_c00273{bottom:784.109910px;}
.yc_c00273{bottom:840.997290px;}
.yb_c00273{bottom:869.523330px;}
.ya_c00273{bottom:897.967020px;}
.y9_c00273{bottom:926.410710px;}
.y8_c00273{bottom:954.854400px;}
.y7_c00273{bottom:1015.784400px;}
.y6_c00273{bottom:1046.834400px;}
.y5_c00273{bottom:1077.884400px;}
.y4_c00273{bottom:1108.934400px;}
.y3_c00273{bottom:1139.984400px;}
.y2_c00273{bottom:1193.174400px;}
.h2_c00273{height:50.400000px;}
.h5_c00273{height:71.413920px;}
.h3_c00273{height:76.824000px;}
.h4_c00273{height:78.048000px;}
.h0_c00273{height:1262.835000px;}
.h1_c00273{height:1263.000000px;}
.w0_c00273{width:892.914000px;}
.w1_c00273{width:893.250000px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:54.000000px;}
.x2_c00273{left:127.620000px;}
.x4_c00273{left:148.950000px;}
.x5_c00273{left:153.083970px;}
.x3_c00273{left:159.570000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.lsa_c00273{letter-spacing:-0.064000pt;}
.lsb_c00273{letter-spacing:-0.058560pt;}
.ls9_c00273{letter-spacing:0.000000pt;}
.ls5_c00273{letter-spacing:0.058560pt;}
.ls0_c00273{letter-spacing:0.064000pt;}
.ls1_c00273{letter-spacing:0.128000pt;}
.ls4_c00273{letter-spacing:0.175680pt;}
.lsc_c00273{letter-spacing:0.468480pt;}
.ls3_c00273{letter-spacing:14.405760pt;}
.ls6_c00273{letter-spacing:14.417472pt;}
.ls2_c00273{letter-spacing:14.757120pt;}
.ls7_c00273{letter-spacing:29.162880pt;}
.ls8_c00273{letter-spacing:30.092800pt;}
.ws3_c00273{word-spacing:-16.128000pt;}
.ws0_c00273{word-spacing:-16.000000pt;}
.ws4_c00273{word-spacing:-14.698560pt;}
.ws6_c00273{word-spacing:-14.640000pt;}
.ws7_c00273{word-spacing:-1.112640pt;}
.ws2_c00273{word-spacing:-0.832000pt;}
.ws19_c00273{word-spacing:-0.409920pt;}
.ws16_c00273{word-spacing:-0.175680pt;}
.wse_c00273{word-spacing:-0.128000pt;}
.ws14_c00273{word-spacing:-0.117120pt;}
.ws1d_c00273{word-spacing:-0.064000pt;}
.ws18_c00273{word-spacing:-0.058560pt;}
.wsb_c00273{word-spacing:0.000000pt;}
.ws5_c00273{word-spacing:0.052704pt;}
.ws15_c00273{word-spacing:0.058560pt;}
.wsa_c00273{word-spacing:0.064000pt;}
.ws17_c00273{word-spacing:0.117120pt;}
.ws1f_c00273{word-spacing:0.234240pt;}
.wsd_c00273{word-spacing:0.256000pt;}
.wsc_c00273{word-spacing:0.320000pt;}
.ws1_c00273{word-spacing:0.512000pt;}
.ws11_c00273{word-spacing:1.536000pt;}
.ws13_c00273{word-spacing:3.840000pt;}
.ws12_c00273{word-spacing:4.096000pt;}
.ws10_c00273{word-spacing:7.104000pt;}
.wsf_c00273{word-spacing:7.360000pt;}
.ws1e_c00273{word-spacing:11.520000pt;}
.ws1c_c00273{word-spacing:13.568000pt;}
.ws1b_c00273{word-spacing:14.016000pt;}
.ws1a_c00273{word-spacing:14.080000pt;}
.ws8_c00273{word-spacing:14.144000pt;}
.ws9_c00273{word-spacing:27.840000pt;}
._0_c00273{margin-left:-1.164800pt;}
._2_c00273{width:0.936960pt;}
._3_c00273{width:13.312000pt;}
._1_c00273{width:22.220800pt;}
.fs1_c00273{font-size:58.560000pt;}
.fs0_c00273{font-size:64.000000pt;}
.y0_c00273{bottom:0.000000pt;}
.y1_c00273{bottom:54.887600pt;}
.y1f_c00273{bottom:149.639573pt;}
.y1e_c00273{bottom:174.922853pt;}
.y1d_c00273{bottom:200.279333pt;}
.y1c_c00273{bottom:254.359333pt;}
.y1b_c00273{bottom:281.959333pt;}
.y1a_c00273{bottom:309.559333pt;}
.y19_c00273{bottom:337.159333pt;}
.y18_c00273{bottom:364.759333pt;}
.y17_c00273{bottom:418.724107pt;}
.y16_c00273{bottom:444.007387pt;}
.y15_c00273{bottom:469.290667pt;}
.y14_c00273{bottom:494.573947pt;}
.y13_c00273{bottom:519.857227pt;}
.y12_c00273{bottom:545.213707pt;}
.y11_c00273{bottom:595.780267pt;}
.y10_c00273{bottom:621.063547pt;}
.yf_c00273{bottom:646.420027pt;}
.ye_c00273{bottom:671.703307pt;}
.yd_c00273{bottom:696.986587pt;}
.yc_c00273{bottom:747.553147pt;}
.yb_c00273{bottom:772.909627pt;}
.ya_c00273{bottom:798.192907pt;}
.y9_c00273{bottom:823.476187pt;}
.y8_c00273{bottom:848.759467pt;}
.y7_c00273{bottom:902.919467pt;}
.y6_c00273{bottom:930.519467pt;}
.y5_c00273{bottom:958.119467pt;}
.y4_c00273{bottom:985.719467pt;}
.y3_c00273{bottom:1013.319467pt;}
.y2_c00273{bottom:1060.599467pt;}
.h2_c00273{height:44.800000pt;}
.h5_c00273{height:63.479040pt;}
.h3_c00273{height:68.288000pt;}
.h4_c00273{height:69.376000pt;}
.h0_c00273{height:1122.520000pt;}
.h1_c00273{height:1122.666667pt;}
.w0_c00273{width:793.701333pt;}
.w1_c00273{width:794.000000pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:48.000000pt;}
.x2_c00273{left:113.440000pt;}
.x4_c00273{left:132.400000pt;}
.x5_c00273{left:136.074640pt;}
.x3_c00273{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00274;src:url('chunks/assets/font_5b33ff82024160a109b96109.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00274;src:url('chunks/assets/font_60ee7b53e6b5fe16825fd83b.woff2')format("woff");}.ff3_c00274{font-family:ff3_c00274;line-height:1.592000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00274{font-family:ff4_c00274;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00274;src:url('chunks/assets/font_0fe1628b2add43ac0a78e790.woff2')format("woff");}.ff5_c00274{font-family:ff5_c00274;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00274;src:url('chunks/assets/font_bb51c259ea52c63b9a63856c.woff2')format("woff");}.ff6_c00274{font-family:ff6_c00274;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00274;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff7_c00274{font-family:ff7_c00274;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00274{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00274{vertical-align:0.000000px;}
.ls10_c00274{letter-spacing:-0.360000px;}
.ls11_c00274{letter-spacing:-0.144000px;}
.lsd_c00274{letter-spacing:-0.072000px;}
.lse_c00274{letter-spacing:-0.065880px;}
.lsc_c00274{letter-spacing:0.000000px;}
.ls5_c00274{letter-spacing:0.065880px;}
.ls0_c00274{letter-spacing:0.072000px;}
.ls1_c00274{letter-spacing:0.144000px;}
.ls4_c00274{letter-spacing:0.197640px;}
.lsf_c00274{letter-spacing:0.527040px;}
.ls3_c00274{letter-spacing:16.206480px;}
.ls6_c00274{letter-spacing:16.219656px;}
.ls2_c00274{letter-spacing:16.601760px;}
.ls9_c00274{letter-spacing:19.080000px;}
.lsa_c00274{letter-spacing:31.708800px;}
.ls7_c00274{letter-spacing:32.808240px;}
.ls8_c00274{letter-spacing:33.854400px;}
.lsb_c00274{letter-spacing:37.800000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00274{word-spacing:-18.144000px;}
.wsf_c00274{word-spacing:-18.072000px;}
.ws0_c00274{word-spacing:-18.000000px;}
.ws4_c00274{word-spacing:-16.535880px;}
.ws6_c00274{word-spacing:-16.470000px;}
.ws7_c00274{word-spacing:-1.251720px;}
.ws2_c00274{word-spacing:-0.936000px;}
.ws1f_c00274{word-spacing:-0.461160px;}
.ws32_c00274{word-spacing:-0.329400px;}
.ws11_c00274{word-spacing:-0.288000px;}
.ws1c_c00274{word-spacing:-0.197640px;}
.ws14_c00274{word-spacing:-0.144000px;}
.ws1a_c00274{word-spacing:-0.131760px;}
.ws23_c00274{word-spacing:-0.072000px;}
.ws1e_c00274{word-spacing:-0.065880px;}
.ws12_c00274{word-spacing:0.000000px;}
.ws5_c00274{word-spacing:0.059292px;}
.ws1b_c00274{word-spacing:0.065880px;}
.wsa_c00274{word-spacing:0.072000px;}
.ws1d_c00274{word-spacing:0.131760px;}
.ws25_c00274{word-spacing:0.263520px;}
.wsc_c00274{word-spacing:0.288000px;}
.ws13_c00274{word-spacing:0.360000px;}
.ws1_c00274{word-spacing:0.576000px;}
.ws34_c00274{word-spacing:0.592920px;}
.ws33_c00274{word-spacing:0.856440px;}
.wsb_c00274{word-spacing:0.936000px;}
.ws2b_c00274{word-spacing:1.008000px;}
.ws35_c00274{word-spacing:1.317600px;}
.ws2c_c00274{word-spacing:1.440000px;}
.ws17_c00274{word-spacing:1.728000px;}
.ws19_c00274{word-spacing:4.320000px;}
.ws18_c00274{word-spacing:4.608000px;}
.ws28_c00274{word-spacing:7.416000px;}
.ws27_c00274{word-spacing:7.560000px;}
.ws26_c00274{word-spacing:7.839720px;}
.ws16_c00274{word-spacing:7.992000px;}
.ws15_c00274{word-spacing:8.280000px;}
.ws30_c00274{word-spacing:11.067840px;}
.ws2f_c00274{word-spacing:11.331360px;}
.ws10_c00274{word-spacing:11.448000px;}
.ws3d_c00274{word-spacing:11.520000px;}
.ws3c_c00274{word-spacing:11.880000px;}
.ws24_c00274{word-spacing:12.960000px;}
.ws31_c00274{word-spacing:13.505400px;}
.ws2d_c00274{word-spacing:13.608000px;}
.ws2e_c00274{word-spacing:13.680000px;}
.ws22_c00274{word-spacing:15.264000px;}
.ws21_c00274{word-spacing:15.768000px;}
.ws20_c00274{word-spacing:15.840000px;}
.ws8_c00274{word-spacing:15.912000px;}
.wse_c00274{word-spacing:17.640000px;}
.ws3b_c00274{word-spacing:18.000000px;}
.ws3a_c00274{word-spacing:18.792000px;}
.ws39_c00274{word-spacing:19.080000px;}
.wsd_c00274{word-spacing:19.152000px;}
.ws38_c00274{word-spacing:19.512000px;}
.ws36_c00274{word-spacing:19.800000px;}
.ws37_c00274{word-spacing:20.160000px;}
.ws29_c00274{word-spacing:22.968000px;}
.ws2a_c00274{word-spacing:23.400000px;}
.ws9_c00274{word-spacing:31.320000px;}
._0_c00274{margin-left:-1.310400px;}
._2_c00274{width:1.054080px;}
._3_c00274{width:14.976000px;}
._4_c00274{width:20.376000px;}
._1_c00274{width:24.998400px;}
.fc2_c00274{color:transparent;}
.fc1_c00274{color:rgb(0,0,0);}
.fc0_c00274{color:rgb(35,31,32);}
.fs1_c00274{font-size:65.880000px;}
.fs0_c00274{font-size:72.000000px;}
.y0_c00274{bottom:0.000000px;}
.y1_c00274{bottom:61.748550px;}
.y3b_c00274{bottom:166.812420px;}
.y1f_c00274{bottom:168.344520px;}
.y1e_c00274{bottom:196.788210px;}
.y3a_c00274{bottom:204.973410px;}
.y1d_c00274{bottom:225.314250px;}
.y39_c00274{bottom:243.134400px;}
.y1c_c00274{bottom:286.154250px;}
.y1b_c00274{bottom:317.204250px;}
.y1a_c00274{bottom:348.254250px;}
.y38_c00274{bottom:366.434400px;}
.y19_c00274{bottom:379.304250px;}
.y37_c00274{bottom:397.484400px;}
.y18_c00274{bottom:410.354250px;}
.y36_c00274{bottom:428.534400px;}
.y35_c00274{bottom:459.584400px;}
.y17_c00274{bottom:471.064620px;}
.y34_c00274{bottom:490.634400px;}
.y16_c00274{bottom:499.508310px;}
.y33_c00274{bottom:521.594400px;}
.y15_c00274{bottom:527.952000px;}
.y14_c00274{bottom:556.395690px;}
.y32_c00274{bottom:582.326220px;}
.y13_c00274{bottom:584.839380px;}
.y31_c00274{bottom:610.769910px;}
.y12_c00274{bottom:613.365420px;}
.y30_c00274{bottom:639.213600px;}
.y2f_c00274{bottom:667.657290px;}
.y11_c00274{bottom:670.252800px;}
.y10_c00274{bottom:698.696490px;}
.y2e_c00274{bottom:724.627020px;}
.yf_c00274{bottom:727.222530px;}
.y2d_c00274{bottom:753.070710px;}
.ye_c00274{bottom:755.666220px;}
.y2c_c00274{bottom:781.514400px;}
.yd_c00274{bottom:784.109910px;}
.yc_c00274{bottom:840.997290px;}
.y2b_c00274{bottom:842.444100px;}
.yb_c00274{bottom:869.523330px;}
.y2a_c00274{bottom:873.494100px;}
.ya_c00274{bottom:897.967020px;}
.y29_c00274{bottom:904.544100px;}
.y9_c00274{bottom:926.410710px;}
.y28_c00274{bottom:935.594100px;}
.y8_c00274{bottom:954.854400px;}
.y27_c00274{bottom:966.644100px;}
.y7_c00274{bottom:1015.784400px;}
.y26_c00274{bottom:1027.297140px;}
.y6_c00274{bottom:1046.834400px;}
.y25_c00274{bottom:1055.740830px;}
.y5_c00274{bottom:1077.884400px;}
.y24_c00274{bottom:1084.266870px;}
.y4_c00274{bottom:1108.934400px;}
.y23_c00274{bottom:1112.710560px;}
.y21_c00274{bottom:1139.984400px;}
.y3_c00274{bottom:1139.984550px;}
.y22_c00274{bottom:1141.154250px;}
.y20_c00274{bottom:1193.174400px;}
.y2_c00274{bottom:1193.174550px;}
.h2_c00274{height:50.400000px;}
.h6_c00274{height:54.331699px;}
.h5_c00274{height:71.413920px;}
.h3_c00274{height:76.824000px;}
.h4_c00274{height:78.048000px;}
.h0_c00274{height:1262.835000px;}
.h1_c00274{height:1263.000000px;}
.w2_c00274{width:0.000000px;}
.w3_c00274{width:0.066000px;}
.w0_c00274{width:892.914000px;}
.w1_c00274{width:893.250000px;}
.x1_c00274{left:-838.913400px;}
.x2_c00274{left:-765.293400px;}
.x4_c00274{left:-743.963400px;}
.x5_c00274{left:-739.829430px;}
.x3_c00274{left:-733.343400px;}
.x0_c00274{left:0.000000px;}
.xa_c00274{left:127.620000px;}
.x8_c00274{left:148.950000px;}
.x9_c00274{left:159.570000px;}
.x7_c00274{left:679.950000px;}
.x6_c00274{left:804.366150px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls10_c00274{letter-spacing:-0.320000pt;}
.ls11_c00274{letter-spacing:-0.128000pt;}
.lsd_c00274{letter-spacing:-0.064000pt;}
.lse_c00274{letter-spacing:-0.058560pt;}
.lsc_c00274{letter-spacing:0.000000pt;}
.ls5_c00274{letter-spacing:0.058560pt;}
.ls0_c00274{letter-spacing:0.064000pt;}
.ls1_c00274{letter-spacing:0.128000pt;}
.ls4_c00274{letter-spacing:0.175680pt;}
.lsf_c00274{letter-spacing:0.468480pt;}
.ls3_c00274{letter-spacing:14.405760pt;}
.ls6_c00274{letter-spacing:14.417472pt;}
.ls2_c00274{letter-spacing:14.757120pt;}
.ls9_c00274{letter-spacing:16.960000pt;}
.lsa_c00274{letter-spacing:28.185600pt;}
.ls7_c00274{letter-spacing:29.162880pt;}
.ls8_c00274{letter-spacing:30.092800pt;}
.lsb_c00274{letter-spacing:33.600000pt;}
.ws3_c00274{word-spacing:-16.128000pt;}
.wsf_c00274{word-spacing:-16.064000pt;}
.ws0_c00274{word-spacing:-16.000000pt;}
.ws4_c00274{word-spacing:-14.698560pt;}
.ws6_c00274{word-spacing:-14.640000pt;}
.ws7_c00274{word-spacing:-1.112640pt;}
.ws2_c00274{word-spacing:-0.832000pt;}
.ws1f_c00274{word-spacing:-0.409920pt;}
.ws32_c00274{word-spacing:-0.292800pt;}
.ws11_c00274{word-spacing:-0.256000pt;}
.ws1c_c00274{word-spacing:-0.175680pt;}
.ws14_c00274{word-spacing:-0.128000pt;}
.ws1a_c00274{word-spacing:-0.117120pt;}
.ws23_c00274{word-spacing:-0.064000pt;}
.ws1e_c00274{word-spacing:-0.058560pt;}
.ws12_c00274{word-spacing:0.000000pt;}
.ws5_c00274{word-spacing:0.052704pt;}
.ws1b_c00274{word-spacing:0.058560pt;}
.wsa_c00274{word-spacing:0.064000pt;}
.ws1d_c00274{word-spacing:0.117120pt;}
.ws25_c00274{word-spacing:0.234240pt;}
.wsc_c00274{word-spacing:0.256000pt;}
.ws13_c00274{word-spacing:0.320000pt;}
.ws1_c00274{word-spacing:0.512000pt;}
.ws34_c00274{word-spacing:0.527040pt;}
.ws33_c00274{word-spacing:0.761280pt;}
.wsb_c00274{word-spacing:0.832000pt;}
.ws2b_c00274{word-spacing:0.896000pt;}
.ws35_c00274{word-spacing:1.171200pt;}
.ws2c_c00274{word-spacing:1.280000pt;}
.ws17_c00274{word-spacing:1.536000pt;}
.ws19_c00274{word-spacing:3.840000pt;}
.ws18_c00274{word-spacing:4.096000pt;}
.ws28_c00274{word-spacing:6.592000pt;}
.ws27_c00274{word-spacing:6.720000pt;}
.ws26_c00274{word-spacing:6.968640pt;}
.ws16_c00274{word-spacing:7.104000pt;}
.ws15_c00274{word-spacing:7.360000pt;}
.ws30_c00274{word-spacing:9.838080pt;}
.ws2f_c00274{word-spacing:10.072320pt;}
.ws10_c00274{word-spacing:10.176000pt;}
.ws3d_c00274{word-spacing:10.240000pt;}
.ws3c_c00274{word-spacing:10.560000pt;}
.ws24_c00274{word-spacing:11.520000pt;}
.ws31_c00274{word-spacing:12.004800pt;}
.ws2d_c00274{word-spacing:12.096000pt;}
.ws2e_c00274{word-spacing:12.160000pt;}
.ws22_c00274{word-spacing:13.568000pt;}
.ws21_c00274{word-spacing:14.016000pt;}
.ws20_c00274{word-spacing:14.080000pt;}
.ws8_c00274{word-spacing:14.144000pt;}
.wse_c00274{word-spacing:15.680000pt;}
.ws3b_c00274{word-spacing:16.000000pt;}
.ws3a_c00274{word-spacing:16.704000pt;}
.ws39_c00274{word-spacing:16.960000pt;}
.wsd_c00274{word-spacing:17.024000pt;}
.ws38_c00274{word-spacing:17.344000pt;}
.ws36_c00274{word-spacing:17.600000pt;}
.ws37_c00274{word-spacing:17.920000pt;}
.ws29_c00274{word-spacing:20.416000pt;}
.ws2a_c00274{word-spacing:20.800000pt;}
.ws9_c00274{word-spacing:27.840000pt;}
._0_c00274{margin-left:-1.164800pt;}
._2_c00274{width:0.936960pt;}
._3_c00274{width:13.312000pt;}
._4_c00274{width:18.112000pt;}
._1_c00274{width:22.220800pt;}
.fs1_c00274{font-size:58.560000pt;}
.fs0_c00274{font-size:64.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y1_c00274{bottom:54.887600pt;}
.y3b_c00274{bottom:148.277707pt;}
.y1f_c00274{bottom:149.639573pt;}
.y1e_c00274{bottom:174.922853pt;}
.y3a_c00274{bottom:182.198587pt;}
.y1d_c00274{bottom:200.279333pt;}
.y39_c00274{bottom:216.119467pt;}
.y1c_c00274{bottom:254.359333pt;}
.y1b_c00274{bottom:281.959333pt;}
.y1a_c00274{bottom:309.559333pt;}
.y38_c00274{bottom:325.719467pt;}
.y19_c00274{bottom:337.159333pt;}
.y37_c00274{bottom:353.319467pt;}
.y18_c00274{bottom:364.759333pt;}
.y36_c00274{bottom:380.919467pt;}
.y35_c00274{bottom:408.519467pt;}
.y17_c00274{bottom:418.724107pt;}
.y34_c00274{bottom:436.119467pt;}
.y16_c00274{bottom:444.007387pt;}
.y33_c00274{bottom:463.639467pt;}
.y15_c00274{bottom:469.290667pt;}
.y14_c00274{bottom:494.573947pt;}
.y32_c00274{bottom:517.623307pt;}
.y13_c00274{bottom:519.857227pt;}
.y31_c00274{bottom:542.906587pt;}
.y12_c00274{bottom:545.213707pt;}
.y30_c00274{bottom:568.189867pt;}
.y2f_c00274{bottom:593.473147pt;}
.y11_c00274{bottom:595.780267pt;}
.y10_c00274{bottom:621.063547pt;}
.y2e_c00274{bottom:644.112907pt;}
.yf_c00274{bottom:646.420027pt;}
.y2d_c00274{bottom:669.396187pt;}
.ye_c00274{bottom:671.703307pt;}
.y2c_c00274{bottom:694.679467pt;}
.yd_c00274{bottom:696.986587pt;}
.yc_c00274{bottom:747.553147pt;}
.y2b_c00274{bottom:748.839200pt;}
.yb_c00274{bottom:772.909627pt;}
.y2a_c00274{bottom:776.439200pt;}
.ya_c00274{bottom:798.192907pt;}
.y29_c00274{bottom:804.039200pt;}
.y9_c00274{bottom:823.476187pt;}
.y28_c00274{bottom:831.639200pt;}
.y8_c00274{bottom:848.759467pt;}
.y27_c00274{bottom:859.239200pt;}
.y7_c00274{bottom:902.919467pt;}
.y26_c00274{bottom:913.153013pt;}
.y6_c00274{bottom:930.519467pt;}
.y25_c00274{bottom:938.436293pt;}
.y5_c00274{bottom:958.119467pt;}
.y24_c00274{bottom:963.792773pt;}
.y4_c00274{bottom:985.719467pt;}
.y23_c00274{bottom:989.076053pt;}
.y21_c00274{bottom:1013.319467pt;}
.y3_c00274{bottom:1013.319600pt;}
.y22_c00274{bottom:1014.359333pt;}
.y20_c00274{bottom:1060.599467pt;}
.y2_c00274{bottom:1060.599600pt;}
.h2_c00274{height:44.800000pt;}
.h6_c00274{height:48.294844pt;}
.h5_c00274{height:63.479040pt;}
.h3_c00274{height:68.288000pt;}
.h4_c00274{height:69.376000pt;}
.h0_c00274{height:1122.520000pt;}
.h1_c00274{height:1122.666667pt;}
.w2_c00274{width:0.000000pt;}
.w3_c00274{width:0.058667pt;}
.w0_c00274{width:793.701333pt;}
.w1_c00274{width:794.000000pt;}
.x1_c00274{left:-745.700800pt;}
.x2_c00274{left:-680.260800pt;}
.x4_c00274{left:-661.300800pt;}
.x5_c00274{left:-657.626160pt;}
.x3_c00274{left:-651.860800pt;}
.x0_c00274{left:0.000000pt;}
.xa_c00274{left:113.440000pt;}
.x8_c00274{left:132.400000pt;}
.x9_c00274{left:141.840000pt;}
.x7_c00274{left:604.400000pt;}
.x6_c00274{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00275;src:url('chunks/assets/font_c72ce0baf652224cc9b9d7fc.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.575000;font-style:normal;font-weight:normal;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_ee3c6331c17a6188a9240ac7.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00275;src:url('chunks/assets/font_d1e2f8fed49275e785987dfb.woff2')format("woff");}.ff4_c00275{font-family:ff4_c00275;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00275;src:url('chunks/assets/font_d5209394f6e67463d66d4a12.woff2')format("woff");}.ff5_c00275{font-family:ff5_c00275;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00275{letter-spacing:-0.288000px;}
.lsb_c00275{letter-spacing:-0.216000px;}
.lsd_c00275{letter-spacing:-0.072000px;}
.lsf_c00275{letter-spacing:-0.065880px;}
.ls12_c00275{letter-spacing:-0.060120px;}
.lsa_c00275{letter-spacing:0.000000px;}
.ls10_c00275{letter-spacing:0.065880px;}
.ls0_c00275{letter-spacing:0.072000px;}
.ls8_c00275{letter-spacing:0.120240px;}
.lse_c00275{letter-spacing:0.144000px;}
.ls11_c00275{letter-spacing:0.180360px;}
.ls7_c00275{letter-spacing:0.197640px;}
.ls6_c00275{letter-spacing:16.601760px;}
.ls2_c00275{letter-spacing:22.687200px;}
.ls1_c00275{letter-spacing:22.824000px;}
.ls4_c00275{letter-spacing:29.894400px;}
.ls3_c00275{letter-spacing:29.908800px;}
.ls5_c00275{letter-spacing:31.680000px;}
.ls9_c00275{letter-spacing:84.468600px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00275{word-spacing:-18.144000px;}
.ws6_c00275{word-spacing:-18.072000px;}
.ws0_c00275{word-spacing:-18.000000px;}
.wse_c00275{word-spacing:-16.667640px;}
.wsf_c00275{word-spacing:-13.707360px;}
.ws10_c00275{word-spacing:-13.527000px;}
.ws25_c00275{word-spacing:-1.082160px;}
.ws24_c00275{word-spacing:-0.721440px;}
.ws1_c00275{word-spacing:-0.504000px;}
.ws26_c00275{word-spacing:-0.180360px;}
.ws22_c00275{word-spacing:-0.131760px;}
.ws23_c00275{word-spacing:-0.120240px;}
.ws12_c00275{word-spacing:-0.072000px;}
.ws11_c00275{word-spacing:0.000000px;}
.wsc_c00275{word-spacing:0.065880px;}
.ws1f_c00275{word-spacing:0.072000px;}
.wsd_c00275{word-spacing:0.131760px;}
.ws2_c00275{word-spacing:0.144000px;}
.ws14_c00275{word-spacing:0.216000px;}
.ws1b_c00275{word-spacing:2.160000px;}
.ws1c_c00275{word-spacing:2.448000px;}
.ws1a_c00275{word-spacing:2.520000px;}
.ws7_c00275{word-spacing:2.664000px;}
.ws5_c00275{word-spacing:4.248000px;}
.ws17_c00275{word-spacing:4.536000px;}
.ws16_c00275{word-spacing:4.680000px;}
.ws9_c00275{word-spacing:7.560000px;}
.ws1e_c00275{word-spacing:8.208000px;}
.ws1d_c00275{word-spacing:8.280000px;}
.ws8_c00275{word-spacing:8.287200px;}
.ws18_c00275{word-spacing:11.808000px;}
.ws19_c00275{word-spacing:12.168000px;}
.ws20_c00275{word-spacing:13.320000px;}
.wsb_c00275{word-spacing:13.392000px;}
.ws13_c00275{word-spacing:13.464000px;}
.ws15_c00275{word-spacing:13.536000px;}
.ws4_c00275{word-spacing:13.608000px;}
.ws3_c00275{word-spacing:13.680000px;}
.ws21_c00275{word-spacing:18.360000px;}
._0_c00275{margin-left:-1.166400px;}
._2_c00275{width:1.008000px;}
._3_c00275{width:2.880000px;}
._1_c00275{width:14.054400px;}
.fc1_c00275{color:rgb(0,0,0);}
.fc0_c00275{color:rgb(35,31,32);}
.fs2_c00275{font-size:60.120000px;}
.fs1_c00275{font-size:65.880000px;}
.fs0_c00275{font-size:72.000000px;}
.y0_c00275{bottom:0.000000px;}
.y1_c00275{bottom:61.748550px;}
.y14_c00275{bottom:186.423720px;}
.y13_c00275{bottom:214.949760px;}
.y12_c00275{bottom:243.393450px;}
.y11_c00275{bottom:271.837140px;}
.y10_c00275{bottom:300.280830px;}
.yf_c00275{bottom:328.724520px;}
.ye_c00275{bottom:357.250560px;}
.yd_c00275{bottom:385.694250px;}
.yc_c00275{bottom:446.624400px;}
.yb_c00275{bottom:477.674400px;}
.ya_c00275{bottom:508.724400px;}
.y9_c00275{bottom:539.774400px;}
.y8_c00275{bottom:570.824400px;}
.y7_c00275{bottom:601.874400px;}
.y6_c00275{bottom:632.924400px;}
.y5_c00275{bottom:663.974400px;}
.y4_c00275{bottom:715.544400px;}
.y3_c00275{bottom:777.824400px;}
.y22_c00275{bottom:834.420780px;}
.y21_c00275{bottom:852.697260px;}
.y1a_c00275{bottom:872.236260px;}
.y1b_c00275{bottom:914.139900px;}
.y18_c00275{bottom:940.201920px;}
.y15_c00275{bottom:940.216950px;}
.y1c_c00275{bottom:956.043540px;}
.y19_c00275{bottom:971.945280px;}
.y1d_c00275{bottom:997.947180px;}
.y1e_c00275{bottom:1039.850820px;}
.y17_c00275{bottom:1067.205420px;}
.y1f_c00275{bottom:1081.754460px;}
.y16_c00275{bottom:1114.835490px;}
.y20_c00275{bottom:1123.658100px;}
.y2_c00275{bottom:1193.174400px;}
.h6_c00275{height:49.581387px;}
.h2_c00275{height:50.400000px;}
.h5_c00275{height:71.413920px;}
.h3_c00275{height:76.824000px;}
.h4_c00275{height:78.048000px;}
.h0_c00275{height:1262.835000px;}
.h1_c00275{height:1263.000000px;}
.w0_c00275{width:892.914000px;}
.w1_c00275{width:893.250000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:54.000000px;}
.x2_c00275{left:127.620000px;}
.x5_c00275{left:148.950000px;}
.xc_c00275{left:150.283980px;}
.x3_c00275{left:154.620000px;}
.xb_c00275{left:157.859100px;}
.x4_c00275{left:159.570000px;}
.xe_c00275{left:202.257720px;}
.xd_c00275{left:208.645470px;}
.x6_c00275{left:239.622300px;}
.xf_c00275{left:315.674100px;}
.x10_c00275{left:332.778240px;}
.x7_c00275{left:344.952540px;}
.x12_c00275{left:419.305950px;}
.x11_c00275{left:426.324960px;}
.x8_c00275{left:457.842870px;}
.x13_c00275{left:538.944750px;}
.x9_c00275{left:566.945640px;}
.xa_c00275{left:676.048410px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.lsc_c00275{letter-spacing:-0.256000pt;}
.lsb_c00275{letter-spacing:-0.192000pt;}
.lsd_c00275{letter-spacing:-0.064000pt;}
.lsf_c00275{letter-spacing:-0.058560pt;}
.ls12_c00275{letter-spacing:-0.053440pt;}
.lsa_c00275{letter-spacing:0.000000pt;}
.ls10_c00275{letter-spacing:0.058560pt;}
.ls0_c00275{letter-spacing:0.064000pt;}
.ls8_c00275{letter-spacing:0.106880pt;}
.lse_c00275{letter-spacing:0.128000pt;}
.ls11_c00275{letter-spacing:0.160320pt;}
.ls7_c00275{letter-spacing:0.175680pt;}
.ls6_c00275{letter-spacing:14.757120pt;}
.ls2_c00275{letter-spacing:20.166400pt;}
.ls1_c00275{letter-spacing:20.288000pt;}
.ls4_c00275{letter-spacing:26.572800pt;}
.ls3_c00275{letter-spacing:26.585600pt;}
.ls5_c00275{letter-spacing:28.160000pt;}
.ls9_c00275{letter-spacing:75.083200pt;}
.wsa_c00275{word-spacing:-16.128000pt;}
.ws6_c00275{word-spacing:-16.064000pt;}
.ws0_c00275{word-spacing:-16.000000pt;}
.wse_c00275{word-spacing:-14.815680pt;}
.wsf_c00275{word-spacing:-12.184320pt;}
.ws10_c00275{word-spacing:-12.024000pt;}
.ws25_c00275{word-spacing:-0.961920pt;}
.ws24_c00275{word-spacing:-0.641280pt;}
.ws1_c00275{word-spacing:-0.448000pt;}
.ws26_c00275{word-spacing:-0.160320pt;}
.ws22_c00275{word-spacing:-0.117120pt;}
.ws23_c00275{word-spacing:-0.106880pt;}
.ws12_c00275{word-spacing:-0.064000pt;}
.ws11_c00275{word-spacing:0.000000pt;}
.wsc_c00275{word-spacing:0.058560pt;}
.ws1f_c00275{word-spacing:0.064000pt;}
.wsd_c00275{word-spacing:0.117120pt;}
.ws2_c00275{word-spacing:0.128000pt;}
.ws14_c00275{word-spacing:0.192000pt;}
.ws1b_c00275{word-spacing:1.920000pt;}
.ws1c_c00275{word-spacing:2.176000pt;}
.ws1a_c00275{word-spacing:2.240000pt;}
.ws7_c00275{word-spacing:2.368000pt;}
.ws5_c00275{word-spacing:3.776000pt;}
.ws17_c00275{word-spacing:4.032000pt;}
.ws16_c00275{word-spacing:4.160000pt;}
.ws9_c00275{word-spacing:6.720000pt;}
.ws1e_c00275{word-spacing:7.296000pt;}
.ws1d_c00275{word-spacing:7.360000pt;}
.ws8_c00275{word-spacing:7.366400pt;}
.ws18_c00275{word-spacing:10.496000pt;}
.ws19_c00275{word-spacing:10.816000pt;}
.ws20_c00275{word-spacing:11.840000pt;}
.wsb_c00275{word-spacing:11.904000pt;}
.ws13_c00275{word-spacing:11.968000pt;}
.ws15_c00275{word-spacing:12.032000pt;}
.ws4_c00275{word-spacing:12.096000pt;}
.ws3_c00275{word-spacing:12.160000pt;}
.ws21_c00275{word-spacing:16.320000pt;}
._0_c00275{margin-left:-1.036800pt;}
._2_c00275{width:0.896000pt;}
._3_c00275{width:2.560000pt;}
._1_c00275{width:12.492800pt;}
.fs2_c00275{font-size:53.440000pt;}
.fs1_c00275{font-size:58.560000pt;}
.fs0_c00275{font-size:64.000000pt;}
.y0_c00275{bottom:0.000000pt;}
.y1_c00275{bottom:54.887600pt;}
.y14_c00275{bottom:165.709973pt;}
.y13_c00275{bottom:191.066453pt;}
.y12_c00275{bottom:216.349733pt;}
.y11_c00275{bottom:241.633013pt;}
.y10_c00275{bottom:266.916293pt;}
.yf_c00275{bottom:292.199573pt;}
.ye_c00275{bottom:317.556053pt;}
.yd_c00275{bottom:342.839333pt;}
.yc_c00275{bottom:396.999467pt;}
.yb_c00275{bottom:424.599467pt;}
.ya_c00275{bottom:452.199467pt;}
.y9_c00275{bottom:479.799467pt;}
.y8_c00275{bottom:507.399467pt;}
.y7_c00275{bottom:534.999467pt;}
.y6_c00275{bottom:562.599467pt;}
.y5_c00275{bottom:590.199467pt;}
.y4_c00275{bottom:636.039467pt;}
.y3_c00275{bottom:691.399467pt;}
.y22_c00275{bottom:741.707360pt;}
.y21_c00275{bottom:757.953120pt;}
.y1a_c00275{bottom:775.321120pt;}
.y1b_c00275{bottom:812.568800pt;}
.y18_c00275{bottom:835.735040pt;}
.y15_c00275{bottom:835.748400pt;}
.y1c_c00275{bottom:849.816480pt;}
.y19_c00275{bottom:863.951360pt;}
.y1d_c00275{bottom:887.064160pt;}
.y1e_c00275{bottom:924.311840pt;}
.y17_c00275{bottom:948.627040pt;}
.y1f_c00275{bottom:961.559520pt;}
.y16_c00275{bottom:990.964880pt;}
.y20_c00275{bottom:998.807200pt;}
.y2_c00275{bottom:1060.599467pt;}
.h6_c00275{height:44.072344pt;}
.h2_c00275{height:44.800000pt;}
.h5_c00275{height:63.479040pt;}
.h3_c00275{height:68.288000pt;}
.h4_c00275{height:69.376000pt;}
.h0_c00275{height:1122.520000pt;}
.h1_c00275{height:1122.666667pt;}
.w0_c00275{width:793.701333pt;}
.w1_c00275{width:794.000000pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:48.000000pt;}
.x2_c00275{left:113.440000pt;}
.x5_c00275{left:132.400000pt;}
.xc_c00275{left:133.585760pt;}
.x3_c00275{left:137.440000pt;}
.xb_c00275{left:140.319200pt;}
.x4_c00275{left:141.840000pt;}
.xe_c00275{left:179.784640pt;}
.xd_c00275{left:185.462640pt;}
.x6_c00275{left:212.997600pt;}
.xf_c00275{left:280.599200pt;}
.x10_c00275{left:295.802880pt;}
.x7_c00275{left:306.624480pt;}
.x12_c00275{left:372.716400pt;}
.x11_c00275{left:378.955520pt;}
.x8_c00275{left:406.971440pt;}
.x13_c00275{left:479.062000pt;}
.x9_c00275{left:503.951680pt;}
.xa_c00275{left:600.931920pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00276;src:url('chunks/assets/font_6890914702505904e412227e.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00276;src:url('chunks/assets/font_56144ab95b88e0649a8b4d9e.woff2')format("woff");}.ff3_c00276{font-family:ff3_c00276;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00276;src:url('chunks/assets/font_9a03bd9467923ad9d9b19777.woff2')format("woff");}.ff4_c00276{font-family:ff4_c00276;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00276;src:url('chunks/assets/font_852ee7059fe4b2e5ce51375e.woff2')format("woff");}.ff5_c00276{font-family:ff5_c00276;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00276;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00276{font-family:ff6_c00276;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00276;src:url('chunks/assets/font_34704174601c7b631c6e1ffe.woff2')format("woff");}.ff7_c00276{font-family:ff7_c00276;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00276;src:url('chunks/assets/font_ecb1092030e7e366fc3b9955.woff2')format("woff");}.ff8_c00276{font-family:ff8_c00276;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00276;src:url('chunks/assets/font_9a03bd9467923ad9d9b19777.woff2')format("woff");}.ff9_c00276{font-family:ff9_c00276;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00276;src:url('chunks/assets/font_852ee7059fe4b2e5ce51375e.woff2')format("woff");}.ffa_c00276{font-family:ffa_c00276;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.ls19_c00276{letter-spacing:-0.576000px;}
.ls12_c00276{letter-spacing:-0.288000px;}
.ls1a_c00276{letter-spacing:-0.263520px;}
.ls11_c00276{letter-spacing:-0.216000px;}
.ls13_c00276{letter-spacing:-0.072000px;}
.ls15_c00276{letter-spacing:-0.065880px;}
.ls17_c00276{letter-spacing:-0.060120px;}
.ls10_c00276{letter-spacing:0.000000px;}
.lse_c00276{letter-spacing:0.065880px;}
.ls0_c00276{letter-spacing:0.072000px;}
.ls8_c00276{letter-spacing:0.120240px;}
.ls14_c00276{letter-spacing:0.144000px;}
.ls16_c00276{letter-spacing:0.180360px;}
.ls7_c00276{letter-spacing:0.197640px;}
.ls18_c00276{letter-spacing:0.527040px;}
.lsb_c00276{letter-spacing:16.206480px;}
.ls6_c00276{letter-spacing:16.601760px;}
.ls2_c00276{letter-spacing:22.687200px;}
.ls1_c00276{letter-spacing:22.824000px;}
.lsd_c00276{letter-spacing:24.984000px;}
.lsa_c00276{letter-spacing:29.887200px;}
.ls4_c00276{letter-spacing:29.894400px;}
.ls3_c00276{letter-spacing:29.908800px;}
.ls5_c00276{letter-spacing:31.680000px;}
.lsc_c00276{letter-spacing:37.800000px;}
.lsf_c00276{letter-spacing:39.989160px;}
.ls9_c00276{letter-spacing:84.468600px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1f_c00276{word-spacing:-33.071760px;}
.wsa_c00276{word-spacing:-18.144000px;}
.ws1_c00276{word-spacing:-18.072000px;}
.ws0_c00276{word-spacing:-18.000000px;}
.ws17_c00276{word-spacing:-17.784000px;}
.ws1b_c00276{word-spacing:-17.424000px;}
.ws13_c00276{word-spacing:-16.997040px;}
.wse_c00276{word-spacing:-16.667640px;}
.ws12_c00276{word-spacing:-16.535880px;}
.ws1e_c00276{word-spacing:-16.470000px;}
.ws1d_c00276{word-spacing:-16.404120px;}
.wsf_c00276{word-spacing:-13.707360px;}
.ws10_c00276{word-spacing:-13.527000px;}
.ws35_c00276{word-spacing:-1.082160px;}
.ws14_c00276{word-spacing:-0.790560px;}
.ws34_c00276{word-spacing:-0.721440px;}
.ws2_c00276{word-spacing:-0.504000px;}
.ws38_c00276{word-spacing:-0.360000px;}
.ws16_c00276{word-spacing:-0.263520px;}
.ws37_c00276{word-spacing:-0.197640px;}
.ws36_c00276{word-spacing:-0.180360px;}
.ws32_c00276{word-spacing:-0.131760px;}
.ws33_c00276{word-spacing:-0.120240px;}
.ws22_c00276{word-spacing:-0.072000px;}
.ws44_c00276{word-spacing:-0.065880px;}
.ws15_c00276{word-spacing:-0.059292px;}
.ws21_c00276{word-spacing:0.000000px;}
.wsc_c00276{word-spacing:0.065880px;}
.ws2f_c00276{word-spacing:0.072000px;}
.wsd_c00276{word-spacing:0.131760px;}
.ws3_c00276{word-spacing:0.144000px;}
.ws24_c00276{word-spacing:0.216000px;}
.ws45_c00276{word-spacing:0.263520px;}
.ws3c_c00276{word-spacing:0.288000px;}
.ws2b_c00276{word-spacing:2.160000px;}
.ws2c_c00276{word-spacing:2.448000px;}
.ws19_c00276{word-spacing:2.462400px;}
.ws2a_c00276{word-spacing:2.520000px;}
.ws7_c00276{word-spacing:2.664000px;}
.ws3d_c00276{word-spacing:2.880000px;}
.ws6_c00276{word-spacing:4.248000px;}
.ws27_c00276{word-spacing:4.536000px;}
.ws26_c00276{word-spacing:4.680000px;}
.ws1a_c00276{word-spacing:6.480000px;}
.ws40_c00276{word-spacing:6.768000px;}
.ws3f_c00276{word-spacing:6.840000px;}
.ws1c_c00276{word-spacing:6.984000px;}
.ws9_c00276{word-spacing:7.560000px;}
.ws2e_c00276{word-spacing:8.208000px;}
.ws2d_c00276{word-spacing:8.280000px;}
.ws8_c00276{word-spacing:8.287200px;}
.ws11_c00276{word-spacing:8.294400px;}
.ws42_c00276{word-spacing:9.936000px;}
.ws41_c00276{word-spacing:10.008000px;}
.ws43_c00276{word-spacing:10.080000px;}
.ws28_c00276{word-spacing:11.808000px;}
.ws29_c00276{word-spacing:12.168000px;}
.ws30_c00276{word-spacing:13.320000px;}
.wsb_c00276{word-spacing:13.392000px;}
.ws23_c00276{word-spacing:13.464000px;}
.ws25_c00276{word-spacing:13.536000px;}
.ws5_c00276{word-spacing:13.608000px;}
.ws4_c00276{word-spacing:13.680000px;}
.ws20_c00276{word-spacing:16.417296px;}
.ws31_c00276{word-spacing:18.360000px;}
.ws3b_c00276{word-spacing:19.800000px;}
.ws3a_c00276{word-spacing:20.088000px;}
.ws39_c00276{word-spacing:20.160000px;}
.ws18_c00276{word-spacing:20.232000px;}
.ws3e_c00276{word-spacing:21.960000px;}
.ws46_c00276{word-spacing:23.255640px;}
._7_c00276{margin-left:-15.877080px;}
._0_c00276{margin-left:-1.159200px;}
._2_c00276{width:1.008000px;}
._3_c00276{width:2.880000px;}
._5_c00276{width:7.632000px;}
._1_c00276{width:14.047200px;}
._4_c00276{width:16.927200px;}
._6_c00276{width:22.926240px;}
.fc2_c00276{color:transparent;}
.fc1_c00276{color:rgb(0,0,0);}
.fc0_c00276{color:rgb(35,31,32);}
.fs2_c00276{font-size:60.120000px;}
.fs1_c00276{font-size:65.880000px;}
.fs0_c00276{font-size:72.000000px;}
.y0_c00276{bottom:0.000000px;}
.y1_c00276{bottom:61.748550px;}
.y14_c00276{bottom:186.423720px;}
.y41_c00276{bottom:207.109230px;}
.y13_c00276{bottom:214.949760px;}
.y40_c00276{bottom:235.635270px;}
.y12_c00276{bottom:243.393450px;}
.y3f_c00276{bottom:264.078960px;}
.y11_c00276{bottom:271.837140px;}
.y3e_c00276{bottom:292.522650px;}
.y10_c00276{bottom:300.280830px;}
.y3d_c00276{bottom:320.966340px;}
.yf_c00276{bottom:328.724520px;}
.y3c_c00276{bottom:349.410030px;}
.ye_c00276{bottom:357.250560px;}
.y3b_c00276{bottom:377.936070px;}
.yd_c00276{bottom:385.694250px;}
.y3a_c00276{bottom:406.379760px;}
.yc_c00276{bottom:446.624400px;}
.y39_c00276{bottom:463.267140px;}
.yb_c00276{bottom:477.674400px;}
.y38_c00276{bottom:491.793180px;}
.ya_c00276{bottom:508.724400px;}
.y37_c00276{bottom:520.236870px;}
.y9_c00276{bottom:539.774400px;}
.y36_c00276{bottom:548.680560px;}
.y8_c00276{bottom:570.824400px;}
.y35_c00276{bottom:577.124250px;}
.y7_c00276{bottom:601.874400px;}
.y6_c00276{bottom:632.924400px;}
.y34_c00276{bottom:638.054400px;}
.y5_c00276{bottom:663.974400px;}
.y33_c00276{bottom:669.104400px;}
.y32_c00276{bottom:700.154400px;}
.y4_c00276{bottom:715.544400px;}
.y31_c00276{bottom:731.204400px;}
.y30_c00276{bottom:762.254400px;}
.y24_c00276{bottom:777.824400px;}
.y3_c00276{bottom:777.824550px;}
.y2f_c00276{bottom:793.304400px;}
.y2e_c00276{bottom:824.354400px;}
.y22_c00276{bottom:834.420780px;}
.y21_c00276{bottom:852.697260px;}
.y1a_c00276{bottom:872.236260px;}
.y2d_c00276{bottom:884.996340px;}
.y2c_c00276{bottom:913.440030px;}
.y1b_c00276{bottom:914.139900px;}
.y18_c00276{bottom:940.201920px;}
.y15_c00276{bottom:940.216950px;}
.y2b_c00276{bottom:941.966070px;}
.y1c_c00276{bottom:956.043540px;}
.y2a_c00276{bottom:970.409760px;}
.y19_c00276{bottom:971.945280px;}
.y1d_c00276{bottom:997.947180px;}
.y29_c00276{bottom:1027.297140px;}
.y1e_c00276{bottom:1039.850820px;}
.y28_c00276{bottom:1055.740830px;}
.y17_c00276{bottom:1067.205420px;}
.y1f_c00276{bottom:1081.754460px;}
.y27_c00276{bottom:1084.266870px;}
.y26_c00276{bottom:1112.710560px;}
.y16_c00276{bottom:1114.835490px;}
.y20_c00276{bottom:1123.658100px;}
.y25_c00276{bottom:1141.154250px;}
.y23_c00276{bottom:1193.174400px;}
.y2_c00276{bottom:1193.174550px;}
.h6_c00276{height:49.581387px;}
.h2_c00276{height:50.400000px;}
.h5_c00276{height:71.413920px;}
.h3_c00276{height:76.824000px;}
.h4_c00276{height:78.048000px;}
.h0_c00276{height:1262.835000px;}
.h1_c00276{height:1263.000000px;}
.w2_c00276{width:0.000000px;}
.w3_c00276{width:0.066000px;}
.w0_c00276{width:892.914000px;}
.w1_c00276{width:893.250000px;}
.x1_c00276{left:-838.913400px;}
.x2_c00276{left:-765.293400px;}
.x5_c00276{left:-743.963400px;}
.xc_c00276{left:-742.629420px;}
.x3_c00276{left:-738.293400px;}
.xb_c00276{left:-735.054300px;}
.x4_c00276{left:-733.343400px;}
.xe_c00276{left:-690.655680px;}
.xd_c00276{left:-684.267930px;}
.x6_c00276{left:-653.291100px;}
.xf_c00276{left:-577.239300px;}
.x10_c00276{left:-560.135160px;}
.x7_c00276{left:-547.960860px;}
.x12_c00276{left:-473.607450px;}
.x11_c00276{left:-466.588440px;}
.x8_c00276{left:-435.070530px;}
.x13_c00276{left:-353.968650px;}
.x9_c00276{left:-325.967760px;}
.xa_c00276{left:-216.864990px;}
.x0_c00276{left:0.000000px;}
.x18_c00276{left:127.620000px;}
.x16_c00276{left:148.950000px;}
.x17_c00276{left:159.570000px;}
.x15_c00276{left:679.950000px;}
.x14_c00276{left:804.366150px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls19_c00276{letter-spacing:-0.512000pt;}
.ls12_c00276{letter-spacing:-0.256000pt;}
.ls1a_c00276{letter-spacing:-0.234240pt;}
.ls11_c00276{letter-spacing:-0.192000pt;}
.ls13_c00276{letter-spacing:-0.064000pt;}
.ls15_c00276{letter-spacing:-0.058560pt;}
.ls17_c00276{letter-spacing:-0.053440pt;}
.ls10_c00276{letter-spacing:0.000000pt;}
.lse_c00276{letter-spacing:0.058560pt;}
.ls0_c00276{letter-spacing:0.064000pt;}
.ls8_c00276{letter-spacing:0.106880pt;}
.ls14_c00276{letter-spacing:0.128000pt;}
.ls16_c00276{letter-spacing:0.160320pt;}
.ls7_c00276{letter-spacing:0.175680pt;}
.ls18_c00276{letter-spacing:0.468480pt;}
.lsb_c00276{letter-spacing:14.405760pt;}
.ls6_c00276{letter-spacing:14.757120pt;}
.ls2_c00276{letter-spacing:20.166400pt;}
.ls1_c00276{letter-spacing:20.288000pt;}
.lsd_c00276{letter-spacing:22.208000pt;}
.lsa_c00276{letter-spacing:26.566400pt;}
.ls4_c00276{letter-spacing:26.572800pt;}
.ls3_c00276{letter-spacing:26.585600pt;}
.ls5_c00276{letter-spacing:28.160000pt;}
.lsc_c00276{letter-spacing:33.600000pt;}
.lsf_c00276{letter-spacing:35.545920pt;}
.ls9_c00276{letter-spacing:75.083200pt;}
.ws1f_c00276{word-spacing:-29.397120pt;}
.wsa_c00276{word-spacing:-16.128000pt;}
.ws1_c00276{word-spacing:-16.064000pt;}
.ws0_c00276{word-spacing:-16.000000pt;}
.ws17_c00276{word-spacing:-15.808000pt;}
.ws1b_c00276{word-spacing:-15.488000pt;}
.ws13_c00276{word-spacing:-15.108480pt;}
.wse_c00276{word-spacing:-14.815680pt;}
.ws12_c00276{word-spacing:-14.698560pt;}
.ws1e_c00276{word-spacing:-14.640000pt;}
.ws1d_c00276{word-spacing:-14.581440pt;}
.wsf_c00276{word-spacing:-12.184320pt;}
.ws10_c00276{word-spacing:-12.024000pt;}
.ws35_c00276{word-spacing:-0.961920pt;}
.ws14_c00276{word-spacing:-0.702720pt;}
.ws34_c00276{word-spacing:-0.641280pt;}
.ws2_c00276{word-spacing:-0.448000pt;}
.ws38_c00276{word-spacing:-0.320000pt;}
.ws16_c00276{word-spacing:-0.234240pt;}
.ws37_c00276{word-spacing:-0.175680pt;}
.ws36_c00276{word-spacing:-0.160320pt;}
.ws32_c00276{word-spacing:-0.117120pt;}
.ws33_c00276{word-spacing:-0.106880pt;}
.ws22_c00276{word-spacing:-0.064000pt;}
.ws44_c00276{word-spacing:-0.058560pt;}
.ws15_c00276{word-spacing:-0.052704pt;}
.ws21_c00276{word-spacing:0.000000pt;}
.wsc_c00276{word-spacing:0.058560pt;}
.ws2f_c00276{word-spacing:0.064000pt;}
.wsd_c00276{word-spacing:0.117120pt;}
.ws3_c00276{word-spacing:0.128000pt;}
.ws24_c00276{word-spacing:0.192000pt;}
.ws45_c00276{word-spacing:0.234240pt;}
.ws3c_c00276{word-spacing:0.256000pt;}
.ws2b_c00276{word-spacing:1.920000pt;}
.ws2c_c00276{word-spacing:2.176000pt;}
.ws19_c00276{word-spacing:2.188800pt;}
.ws2a_c00276{word-spacing:2.240000pt;}
.ws7_c00276{word-spacing:2.368000pt;}
.ws3d_c00276{word-spacing:2.560000pt;}
.ws6_c00276{word-spacing:3.776000pt;}
.ws27_c00276{word-spacing:4.032000pt;}
.ws26_c00276{word-spacing:4.160000pt;}
.ws1a_c00276{word-spacing:5.760000pt;}
.ws40_c00276{word-spacing:6.016000pt;}
.ws3f_c00276{word-spacing:6.080000pt;}
.ws1c_c00276{word-spacing:6.208000pt;}
.ws9_c00276{word-spacing:6.720000pt;}
.ws2e_c00276{word-spacing:7.296000pt;}
.ws2d_c00276{word-spacing:7.360000pt;}
.ws8_c00276{word-spacing:7.366400pt;}
.ws11_c00276{word-spacing:7.372800pt;}
.ws42_c00276{word-spacing:8.832000pt;}
.ws41_c00276{word-spacing:8.896000pt;}
.ws43_c00276{word-spacing:8.960000pt;}
.ws28_c00276{word-spacing:10.496000pt;}
.ws29_c00276{word-spacing:10.816000pt;}
.ws30_c00276{word-spacing:11.840000pt;}
.wsb_c00276{word-spacing:11.904000pt;}
.ws23_c00276{word-spacing:11.968000pt;}
.ws25_c00276{word-spacing:12.032000pt;}
.ws5_c00276{word-spacing:12.096000pt;}
.ws4_c00276{word-spacing:12.160000pt;}
.ws20_c00276{word-spacing:14.593152pt;}
.ws31_c00276{word-spacing:16.320000pt;}
.ws3b_c00276{word-spacing:17.600000pt;}
.ws3a_c00276{word-spacing:17.856000pt;}
.ws39_c00276{word-spacing:17.920000pt;}
.ws18_c00276{word-spacing:17.984000pt;}
.ws3e_c00276{word-spacing:19.520000pt;}
.ws46_c00276{word-spacing:20.671680pt;}
._7_c00276{margin-left:-14.112960pt;}
._0_c00276{margin-left:-1.030400pt;}
._2_c00276{width:0.896000pt;}
._3_c00276{width:2.560000pt;}
._5_c00276{width:6.784000pt;}
._1_c00276{width:12.486400pt;}
._4_c00276{width:15.046400pt;}
._6_c00276{width:20.378880pt;}
.fs2_c00276{font-size:53.440000pt;}
.fs1_c00276{font-size:58.560000pt;}
.fs0_c00276{font-size:64.000000pt;}
.y0_c00276{bottom:0.000000pt;}
.y1_c00276{bottom:54.887600pt;}
.y14_c00276{bottom:165.709973pt;}
.y41_c00276{bottom:184.097093pt;}
.y13_c00276{bottom:191.066453pt;}
.y40_c00276{bottom:209.453573pt;}
.y12_c00276{bottom:216.349733pt;}
.y3f_c00276{bottom:234.736853pt;}
.y11_c00276{bottom:241.633013pt;}
.y3e_c00276{bottom:260.020133pt;}
.y10_c00276{bottom:266.916293pt;}
.y3d_c00276{bottom:285.303413pt;}
.yf_c00276{bottom:292.199573pt;}
.y3c_c00276{bottom:310.586693pt;}
.ye_c00276{bottom:317.556053pt;}
.y3b_c00276{bottom:335.943173pt;}
.yd_c00276{bottom:342.839333pt;}
.y3a_c00276{bottom:361.226453pt;}
.yc_c00276{bottom:396.999467pt;}
.y39_c00276{bottom:411.793013pt;}
.yb_c00276{bottom:424.599467pt;}
.y38_c00276{bottom:437.149493pt;}
.ya_c00276{bottom:452.199467pt;}
.y37_c00276{bottom:462.432773pt;}
.y9_c00276{bottom:479.799467pt;}
.y36_c00276{bottom:487.716053pt;}
.y8_c00276{bottom:507.399467pt;}
.y35_c00276{bottom:512.999333pt;}
.y7_c00276{bottom:534.999467pt;}
.y6_c00276{bottom:562.599467pt;}
.y34_c00276{bottom:567.159467pt;}
.y5_c00276{bottom:590.199467pt;}
.y33_c00276{bottom:594.759467pt;}
.y32_c00276{bottom:622.359467pt;}
.y4_c00276{bottom:636.039467pt;}
.y31_c00276{bottom:649.959467pt;}
.y30_c00276{bottom:677.559467pt;}
.y24_c00276{bottom:691.399467pt;}
.y3_c00276{bottom:691.399600pt;}
.y2f_c00276{bottom:705.159467pt;}
.y2e_c00276{bottom:732.759467pt;}
.y22_c00276{bottom:741.707360pt;}
.y21_c00276{bottom:757.953120pt;}
.y1a_c00276{bottom:775.321120pt;}
.y2d_c00276{bottom:786.663413pt;}
.y2c_c00276{bottom:811.946693pt;}
.y1b_c00276{bottom:812.568800pt;}
.y18_c00276{bottom:835.735040pt;}
.y15_c00276{bottom:835.748400pt;}
.y2b_c00276{bottom:837.303173pt;}
.y1c_c00276{bottom:849.816480pt;}
.y2a_c00276{bottom:862.586453pt;}
.y19_c00276{bottom:863.951360pt;}
.y1d_c00276{bottom:887.064160pt;}
.y29_c00276{bottom:913.153013pt;}
.y1e_c00276{bottom:924.311840pt;}
.y28_c00276{bottom:938.436293pt;}
.y17_c00276{bottom:948.627040pt;}
.y1f_c00276{bottom:961.559520pt;}
.y27_c00276{bottom:963.792773pt;}
.y26_c00276{bottom:989.076053pt;}
.y16_c00276{bottom:990.964880pt;}
.y20_c00276{bottom:998.807200pt;}
.y25_c00276{bottom:1014.359333pt;}
.y23_c00276{bottom:1060.599467pt;}
.y2_c00276{bottom:1060.599600pt;}
.h6_c00276{height:44.072344pt;}
.h2_c00276{height:44.800000pt;}
.h5_c00276{height:63.479040pt;}
.h3_c00276{height:68.288000pt;}
.h4_c00276{height:69.376000pt;}
.h0_c00276{height:1122.520000pt;}
.h1_c00276{height:1122.666667pt;}
.w2_c00276{width:0.000000pt;}
.w3_c00276{width:0.058667pt;}
.w0_c00276{width:793.701333pt;}
.w1_c00276{width:794.000000pt;}
.x1_c00276{left:-745.700800pt;}
.x2_c00276{left:-680.260800pt;}
.x5_c00276{left:-661.300800pt;}
.xc_c00276{left:-660.115040pt;}
.x3_c00276{left:-656.260800pt;}
.xb_c00276{left:-653.381600pt;}
.x4_c00276{left:-651.860800pt;}
.xe_c00276{left:-613.916160pt;}
.xd_c00276{left:-608.238160pt;}
.x6_c00276{left:-580.703200pt;}
.xf_c00276{left:-513.101600pt;}
.x10_c00276{left:-497.897920pt;}
.x7_c00276{left:-487.076320pt;}
.x12_c00276{left:-420.984400pt;}
.x11_c00276{left:-414.745280pt;}
.x8_c00276{left:-386.729360pt;}
.x13_c00276{left:-314.638800pt;}
.x9_c00276{left:-289.749120pt;}
.xa_c00276{left:-192.768880pt;}
.x0_c00276{left:0.000000pt;}
.x18_c00276{left:113.440000pt;}
.x16_c00276{left:132.400000pt;}
.x17_c00276{left:141.840000pt;}
.x15_c00276{left:604.400000pt;}
.x14_c00276{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00277;src:url('chunks/assets/font_6b00611a26c65ca101ba74cc.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00277;src:url('chunks/assets/font_c451b6b353f3ab2bf0df0058.woff2')format("woff");}.ff3_c00277{font-family:ff3_c00277;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00277;src:url('chunks/assets/font_5e7fe20164ce5f2238d6a9ec.woff2')format("woff");}.ff4_c00277{font-family:ff4_c00277;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls5_c00277{letter-spacing:-0.072000px;}
.ls4_c00277{letter-spacing:0.000000px;}
.ls0_c00277{letter-spacing:0.072000px;}
.ls3_c00277{letter-spacing:0.120240px;}
.ls6_c00277{letter-spacing:0.144000px;}
.ls2_c00277{letter-spacing:18.144000px;}
.ls1_c00277{letter-spacing:39.600000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00277{word-spacing:-18.000000px;}
.ws8_c00277{word-spacing:-13.707360px;}
.ws15_c00277{word-spacing:-1.803600px;}
.ws14_c00277{word-spacing:-1.442880px;}
.ws13_c00277{word-spacing:-0.360000px;}
.ws7_c00277{word-spacing:-0.144000px;}
.wsc_c00277{word-spacing:-0.072000px;}
.ws9_c00277{word-spacing:0.000000px;}
.wsd_c00277{word-spacing:1.800000px;}
.ws4_c00277{word-spacing:2.016000px;}
.ws5_c00277{word-spacing:2.088000px;}
.ws3_c00277{word-spacing:2.160000px;}
.wsf_c00277{word-spacing:10.656000px;}
.wse_c00277{word-spacing:10.800000px;}
.ws10_c00277{word-spacing:14.040000px;}
.ws6_c00277{word-spacing:14.184000px;}
.ws11_c00277{word-spacing:14.400000px;}
.wsb_c00277{word-spacing:21.600000px;}
.wsa_c00277{word-spacing:21.888000px;}
.ws2_c00277{word-spacing:21.960000px;}
.ws1_c00277{word-spacing:22.104000px;}
.ws12_c00277{word-spacing:28.008000px;}
._0_c00277{margin-left:-1.152000px;}
._1_c00277{width:1.224000px;}
.fc1_c00277{color:rgb(0,0,0);}
.fc0_c00277{color:rgb(35,31,32);}
.fs1_c00277{font-size:60.120000px;}
.fs0_c00277{font-size:72.000000px;}
.y0_c00277{bottom:0.000000px;}
.y15_c00277{bottom:13.704600px;}
.y1_c00277{bottom:61.748550px;}
.y9_c00277{bottom:570.824400px;}
.y14_c00277{bottom:623.652000px;}
.yc_c00277{bottom:656.856000px;}
.yd_c00277{bottom:695.392920px;}
.ye_c00277{bottom:733.929840px;}
.ya_c00277{bottom:764.771400px;}
.yf_c00277{bottom:772.466760px;}
.y10_c00277{bottom:811.003680px;}
.y11_c00277{bottom:849.540600px;}
.y12_c00277{bottom:888.077520px;}
.yb_c00277{bottom:922.421070px;}
.y13_c00277{bottom:926.614440px;}
.y8_c00277{bottom:984.644400px;}
.y7_c00277{bottom:1015.784400px;}
.y6_c00277{bottom:1046.834400px;}
.y5_c00277{bottom:1077.884400px;}
.y4_c00277{bottom:1108.934400px;}
.y3_c00277{bottom:1139.984400px;}
.y2_c00277{bottom:1193.174400px;}
.h6_c00277{height:27.991500px;}
.h5_c00277{height:49.581387px;}
.h2_c00277{height:50.400000px;}
.h3_c00277{height:76.824000px;}
.h4_c00277{height:78.048000px;}
.h0_c00277{height:1262.835000px;}
.h1_c00277{height:1263.000000px;}
.w2_c00277{width:216.810000px;}
.w3_c00277{width:241.110000px;}
.w0_c00277{width:892.914000px;}
.w1_c00277{width:893.250000px;}
.x0_c00277{left:0.000000px;}
.xa_c00277{left:9.083700px;}
.x1_c00277{left:54.000000px;}
.x2_c00277{left:127.620000px;}
.x4_c00277{left:138.240000px;}
.x8_c00277{left:140.922510px;}
.x7_c00277{left:148.587810px;}
.x3_c00277{left:159.570000px;}
.x9_c00277{left:216.810000px;}
.x5_c00277{left:308.026050px;}
.xb_c00277{left:476.910000px;}
.x6_c00277{left:580.234380px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls5_c00277{letter-spacing:-0.064000pt;}
.ls4_c00277{letter-spacing:0.000000pt;}
.ls0_c00277{letter-spacing:0.064000pt;}
.ls3_c00277{letter-spacing:0.106880pt;}
.ls6_c00277{letter-spacing:0.128000pt;}
.ls2_c00277{letter-spacing:16.128000pt;}
.ls1_c00277{letter-spacing:35.200000pt;}
.ws0_c00277{word-spacing:-16.000000pt;}
.ws8_c00277{word-spacing:-12.184320pt;}
.ws15_c00277{word-spacing:-1.603200pt;}
.ws14_c00277{word-spacing:-1.282560pt;}
.ws13_c00277{word-spacing:-0.320000pt;}
.ws7_c00277{word-spacing:-0.128000pt;}
.wsc_c00277{word-spacing:-0.064000pt;}
.ws9_c00277{word-spacing:0.000000pt;}
.wsd_c00277{word-spacing:1.600000pt;}
.ws4_c00277{word-spacing:1.792000pt;}
.ws5_c00277{word-spacing:1.856000pt;}
.ws3_c00277{word-spacing:1.920000pt;}
.wsf_c00277{word-spacing:9.472000pt;}
.wse_c00277{word-spacing:9.600000pt;}
.ws10_c00277{word-spacing:12.480000pt;}
.ws6_c00277{word-spacing:12.608000pt;}
.ws11_c00277{word-spacing:12.800000pt;}
.wsb_c00277{word-spacing:19.200000pt;}
.wsa_c00277{word-spacing:19.456000pt;}
.ws2_c00277{word-spacing:19.520000pt;}
.ws1_c00277{word-spacing:19.648000pt;}
.ws12_c00277{word-spacing:24.896000pt;}
._0_c00277{margin-left:-1.024000pt;}
._1_c00277{width:1.088000pt;}
.fs1_c00277{font-size:53.440000pt;}
.fs0_c00277{font-size:64.000000pt;}
.y0_c00277{bottom:0.000000pt;}
.y15_c00277{bottom:12.181867pt;}
.y1_c00277{bottom:54.887600pt;}
.y9_c00277{bottom:507.399467pt;}
.y14_c00277{bottom:554.357333pt;}
.yc_c00277{bottom:583.872000pt;}
.yd_c00277{bottom:618.127040pt;}
.ye_c00277{bottom:652.382080pt;}
.ya_c00277{bottom:679.796800pt;}
.yf_c00277{bottom:686.637120pt;}
.y10_c00277{bottom:720.892160pt;}
.y11_c00277{bottom:755.147200pt;}
.y12_c00277{bottom:789.402240pt;}
.yb_c00277{bottom:819.929840pt;}
.y13_c00277{bottom:823.657280pt;}
.y8_c00277{bottom:875.239467pt;}
.y7_c00277{bottom:902.919467pt;}
.y6_c00277{bottom:930.519467pt;}
.y5_c00277{bottom:958.119467pt;}
.y4_c00277{bottom:985.719467pt;}
.y3_c00277{bottom:1013.319467pt;}
.y2_c00277{bottom:1060.599467pt;}
.h6_c00277{height:24.881333pt;}
.h5_c00277{height:44.072344pt;}
.h2_c00277{height:44.800000pt;}
.h3_c00277{height:68.288000pt;}
.h4_c00277{height:69.376000pt;}
.h0_c00277{height:1122.520000pt;}
.h1_c00277{height:1122.666667pt;}
.w2_c00277{width:192.720000pt;}
.w3_c00277{width:214.320000pt;}
.w0_c00277{width:793.701333pt;}
.w1_c00277{width:794.000000pt;}
.x0_c00277{left:0.000000pt;}
.xa_c00277{left:8.074400pt;}
.x1_c00277{left:48.000000pt;}
.x2_c00277{left:113.440000pt;}
.x4_c00277{left:122.880000pt;}
.x8_c00277{left:125.264453pt;}
.x7_c00277{left:132.078053pt;}
.x3_c00277{left:141.840000pt;}
.x9_c00277{left:192.720000pt;}
.x5_c00277{left:273.800933pt;}
.xb_c00277{left:423.920000pt;}
.x6_c00277{left:515.763893pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00278;src:url('chunks/assets/font_7b005a1a0b9e5a9695567459.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00278;src:url('chunks/assets/font_77f6b53ba2afd56ee204fdfc.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00278;src:url('chunks/assets/font_f1ed0869cb5e9e905e1ca482.woff2')format("woff");}.ff4_c00278{font-family:ff4_c00278;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00278;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00278{font-family:ff5_c00278;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00278;src:url('chunks/assets/font_a1c5d5d133dfea2cbfa0826b.woff2')format("woff");}.ff6_c00278{font-family:ff6_c00278;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00278;src:url('chunks/assets/font_289fa8697aba18c4eec4c26c.woff2')format("woff");}.ff7_c00278{font-family:ff7_c00278;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00278;src:url('chunks/assets/font_b89401009d81e18bbacae9d7.woff2')format("woff");}.ff8_c00278{font-family:ff8_c00278;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.lse_c00278{letter-spacing:-0.197640px;}
.lsc_c00278{letter-spacing:-0.131760px;}
.lsa_c00278{letter-spacing:-0.072000px;}
.lsd_c00278{letter-spacing:-0.065880px;}
.ls9_c00278{letter-spacing:0.000000px;}
.ls4_c00278{letter-spacing:0.065880px;}
.ls0_c00278{letter-spacing:0.072000px;}
.ls3_c00278{letter-spacing:0.120240px;}
.ls8_c00278{letter-spacing:0.131760px;}
.lsb_c00278{letter-spacing:0.144000px;}
.ls2_c00278{letter-spacing:18.144000px;}
.ls7_c00278{letter-spacing:27.208440px;}
.ls1_c00278{letter-spacing:39.600000px;}
.ls6_c00278{letter-spacing:208.707840px;}
.ls5_c00278{letter-spacing:342.576000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00278{word-spacing:-18.000000px;}
.wsd_c00278{word-spacing:-15.020640px;}
.wsa_c00278{word-spacing:-14.954760px;}
.wsb_c00278{word-spacing:-14.823000px;}
.ws9_c00278{word-spacing:-14.757120px;}
.wsc_c00278{word-spacing:-14.691240px;}
.ws8_c00278{word-spacing:-13.707360px;}
.ws1a_c00278{word-spacing:-1.803600px;}
.ws19_c00278{word-spacing:-1.442880px;}
.ws18_c00278{word-spacing:-0.360000px;}
.ws7_c00278{word-spacing:-0.144000px;}
.ws1c_c00278{word-spacing:-0.131760px;}
.ws11_c00278{word-spacing:-0.072000px;}
.ws1b_c00278{word-spacing:-0.065880px;}
.wse_c00278{word-spacing:0.000000px;}
.ws1d_c00278{word-spacing:0.065880px;}
.ws1f_c00278{word-spacing:0.131760px;}
.ws1e_c00278{word-spacing:0.197640px;}
.ws12_c00278{word-spacing:1.800000px;}
.ws4_c00278{word-spacing:2.016000px;}
.ws5_c00278{word-spacing:2.088000px;}
.ws3_c00278{word-spacing:2.160000px;}
.ws14_c00278{word-spacing:10.656000px;}
.ws13_c00278{word-spacing:10.800000px;}
.ws15_c00278{word-spacing:14.040000px;}
.ws6_c00278{word-spacing:14.184000px;}
.ws16_c00278{word-spacing:14.400000px;}
.ws10_c00278{word-spacing:21.600000px;}
.wsf_c00278{word-spacing:21.888000px;}
.ws2_c00278{word-spacing:21.960000px;}
.ws1_c00278{word-spacing:22.104000px;}
.ws17_c00278{word-spacing:28.008000px;}
._0_c00278{margin-left:-1.152000px;}
._1_c00278{width:1.224000px;}
._2_c00278{width:199.051200px;}
._5_c00278{width:208.707840px;}
._6_c00278{width:250.701120px;}
._9_c00278{width:291.914280px;}
._d_c00278{width:418.206240px;}
._a_c00278{width:437.536800px;}
._f_c00278{width:541.204200px;}
._e_c00278{width:611.102880px;}
._8_c00278{width:619.864920px;}
._c_c00278{width:640.221840px;}
._7_c00278{width:650.630880px;}
._3_c00278{width:695.758680px;}
._4_c00278{width:706.365360px;}
._b_c00278{width:707.908320px;}
.fc2_c00278{color:transparent;}
.fc1_c00278{color:rgb(0,0,0);}
.fc0_c00278{color:rgb(35,31,32);}
.fs1_c00278{font-size:60.120000px;}
.fs2_c00278{font-size:65.880000px;}
.fs0_c00278{font-size:72.000000px;}
.y55_c00278{bottom:-15.660600px;}
.y0_c00278{bottom:0.000000px;}
.y4b_c00278{bottom:4.409250px;}
.y32_c00278{bottom:4.409400px;}
.y27_c00278{bottom:4.412250px;}
.y20_c00278{bottom:4.499250px;}
.y3d_c00278{bottom:4.499400px;}
.y29_c00278{bottom:4.500750px;}
.y23_c00278{bottom:4.502250px;}
.y1b_c00278{bottom:4.502400px;}
.y17_c00278{bottom:13.701600px;}
.y15_c00278{bottom:13.703100px;}
.y1e_c00278{bottom:44.819250px;}
.y39_c00278{bottom:44.822400px;}
.y1_c00278{bottom:61.748550px;}
.y2c_c00278{bottom:85.050900px;}
.y63_c00278{bottom:105.212400px;}
.y6e_c00278{bottom:207.225000px;}
.y62_c00278{bottom:234.582000px;}
.y68_c00278{bottom:239.079630px;}
.y6d_c00278{bottom:239.079930px;}
.y67_c00278{bottom:259.156560px;}
.y6c_c00278{bottom:266.354250px;}
.y66_c00278{bottom:279.315840px;}
.y6b_c00278{bottom:282.015000px;}
.y65_c00278{bottom:299.475120px;}
.y6a_c00278{bottom:306.674400px;}
.y64_c00278{bottom:319.634400px;}
.y69_c00278{bottom:328.812000px;}
.y5b_c00278{bottom:360.670350px;}
.y61_c00278{bottom:360.674400px;}
.y5a_c00278{bottom:380.829630px;}
.y60_c00278{bottom:382.812000px;}
.y59_c00278{bottom:400.906560px;}
.y5f_c00278{bottom:407.384400px;}
.y58_c00278{bottom:421.065840px;}
.y5e_c00278{bottom:423.043500px;}
.y57_c00278{bottom:441.225120px;}
.y5d_c00278{bottom:443.205000px;}
.y56_c00278{bottom:461.384400px;}
.y5c_c00278{bottom:463.365000px;}
.y54_c00278{bottom:484.245000px;}
.y53_c00278{bottom:506.025000px;}
.y52_c00278{bottom:526.905000px;}
.y4f_c00278{bottom:547.783500px;}
.y9_c00278{bottom:570.824400px;}
.y4e_c00278{bottom:572.437470px;}
.y51_c00278{bottom:572.444250px;}
.y4d_c00278{bottom:592.514400px;}
.y50_c00278{bottom:594.585000px;}
.y43_c00278{bottom:615.465000px;}
.y14_c00278{bottom:623.653500px;}
.y16_c00278{bottom:623.655000px;}
.y4c_c00278{bottom:635.715000px;}
.y49_c00278{bottom:640.035690px;}
.y42_c00278{bottom:640.039530px;}
.y46_c00278{bottom:640.043340px;}
.y4a_c00278{bottom:655.875000px;}
.yc_c00278{bottom:656.856000px;}
.y48_c00278{bottom:660.194970px;}
.y41_c00278{bottom:660.198810px;}
.y45_c00278{bottom:660.202620px;}
.y47_c00278{bottom:680.354250px;}
.y40_c00278{bottom:680.358090px;}
.y44_c00278{bottom:680.444250px;}
.yd_c00278{bottom:695.392920px;}
.y38_c00278{bottom:696.822000px;}
.y3f_c00278{bottom:701.324400px;}
.y3b_c00278{bottom:701.325120px;}
.y3e_c00278{bottom:716.985000px;}
.y3a_c00278{bottom:721.484400px;}
.ye_c00278{bottom:733.929840px;}
.y3c_c00278{bottom:737.145000px;}
.y37_c00278{bottom:762.524250px;}
.ya_c00278{bottom:764.771400px;}
.yf_c00278{bottom:772.466760px;}
.y2b_c00278{bottom:785.383500px;}
.y36_c00278{bottom:789.884250px;}
.y30_c00278{bottom:789.886410px;}
.y35_c00278{bottom:805.545000px;}
.y2f_c00278{bottom:810.045690px;}
.y10_c00278{bottom:811.003680px;}
.y34_c00278{bottom:825.705000px;}
.y2e_c00278{bottom:830.204970px;}
.y33_c00278{bottom:845.863500px;}
.y11_c00278{bottom:849.540600px;}
.y2d_c00278{bottom:850.364250px;}
.y31_c00278{bottom:866.025000px;}
.y26_c00278{bottom:886.902000px;}
.y12_c00278{bottom:888.077520px;}
.y25_c00278{bottom:911.474970px;}
.y2a_c00278{bottom:913.455000px;}
.yb_c00278{bottom:922.421070px;}
.y13_c00278{bottom:926.614440px;}
.y24_c00278{bottom:931.634250px;}
.y28_c00278{bottom:933.613500px;}
.y1d_c00278{bottom:954.495000px;}
.y22_c00278{bottom:974.652000px;}
.y1f_c00278{bottom:979.154250px;}
.y8_c00278{bottom:984.644400px;}
.y21_c00278{bottom:994.815000px;}
.y1a_c00278{bottom:1015.692000px;}
.y7_c00278{bottom:1015.784400px;}
.y1c_c00278{bottom:1040.354400px;}
.y6_c00278{bottom:1046.834400px;}
.y19_c00278{bottom:1061.234400px;}
.y5_c00278{bottom:1077.884400px;}
.y4_c00278{bottom:1108.934400px;}
.y18_c00278{bottom:1119.194400px;}
.y3_c00278{bottom:1139.984400px;}
.y2_c00278{bottom:1193.174400px;}
.h10_c00278{height:20.067000px;}
.h12_c00278{height:20.068500px;}
.hc_c00278{height:20.160000px;}
.hb_c00278{height:20.161500px;}
.h13_c00278{height:20.250000px;}
.h14_c00278{height:20.971500px;}
.h17_c00278{height:26.548500px;}
.he_c00278{height:26.550000px;}
.h16_c00278{height:26.643000px;}
.h7_c00278{height:27.990000px;}
.h6_c00278{height:27.991500px;}
.h9_c00278{height:40.320000px;}
.h5_c00278{height:49.581387px;}
.h2_c00278{height:50.400000px;}
.h8_c00278{height:54.331699px;}
.ha_c00278{height:60.480000px;}
.hd_c00278{height:66.871500px;}
.h3_c00278{height:76.824000px;}
.h4_c00278{height:78.048000px;}
.h11_c00278{height:80.641500px;}
.hf_c00278{height:100.710000px;}
.h15_c00278{height:120.873000px;}
.h0_c00278{height:1262.835000px;}
.h1_c00278{height:1263.000000px;}
.w3_c00278{width:-459.294000px;}
.w4_c00278{width:-174.894000px;}
.w2_c00278{width:0.000000px;}
.w5_c00278{width:0.066000px;}
.w7_c00278{width:85.050000px;}
.w9_c00278{width:106.290000px;}
.w8_c00278{width:106.380000px;}
.wa_c00278{width:139.233000px;}
.wb_c00278{width:170.100000px;}
.wc_c00278{width:212.670000px;}
.w6_c00278{width:309.331500px;}
.w0_c00278{width:892.914000px;}
.w1_c00278{width:893.250000px;}
.x1_c00278{left:-838.913400px;}
.x2_c00278{left:-765.293400px;}
.x4_c00278{left:-754.673400px;}
.x8_c00278{left:-751.990890px;}
.x7_c00278{left:-744.325590px;}
.x3_c00278{left:-733.343400px;}
.x9_c00278{left:-667.019700px;}
.x5_c00278{left:-584.887350px;}
.xa_c00278{left:-406.867950px;}
.x6_c00278{left:-312.679020px;}
.x0_c00278{left:0.000000px;}
.x10_c00278{left:5.220000px;}
.x21_c00278{left:42.300000px;}
.x19_c00278{left:50.670000px;}
.x23_c00278{left:54.720000px;}
.x18_c00278{left:63.090000px;}
.x1c_c00278{left:71.460000px;}
.x24_c00278{left:76.050000px;}
.x20_c00278{left:92.790000px;}
.x22_c00278{left:121.410000px;}
.xf_c00278{left:126.540000px;}
.xd_c00278{left:127.620000px;}
.xe_c00278{left:131.760000px;}
.x17_c00278{left:265.770000px;}
.x1f_c00278{left:271.080000px;}
.x11_c00278{left:435.870000px;}
.x12_c00278{left:520.920000px;}
.x14_c00278{left:605.970000px;}
.x13_c00278{left:611.280000px;}
.xc_c00278{left:679.950000px;}
.x1a_c00278{left:690.390000px;}
.x1d_c00278{left:698.752170px;}
.x16_c00278{left:712.350000px;}
.x15_c00278{left:717.570000px;}
.x1b_c00278{left:775.800000px;}
.x1e_c00278{left:784.174680px;}
.xb_c00278{left:804.366150px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.lse_c00278{letter-spacing:-0.175680pt;}
.lsc_c00278{letter-spacing:-0.117120pt;}
.lsa_c00278{letter-spacing:-0.064000pt;}
.lsd_c00278{letter-spacing:-0.058560pt;}
.ls9_c00278{letter-spacing:0.000000pt;}
.ls4_c00278{letter-spacing:0.058560pt;}
.ls0_c00278{letter-spacing:0.064000pt;}
.ls3_c00278{letter-spacing:0.106880pt;}
.ls8_c00278{letter-spacing:0.117120pt;}
.lsb_c00278{letter-spacing:0.128000pt;}
.ls2_c00278{letter-spacing:16.128000pt;}
.ls7_c00278{letter-spacing:24.185280pt;}
.ls1_c00278{letter-spacing:35.200000pt;}
.ls6_c00278{letter-spacing:185.518080pt;}
.ls5_c00278{letter-spacing:304.512000pt;}
.ws0_c00278{word-spacing:-16.000000pt;}
.wsd_c00278{word-spacing:-13.351680pt;}
.wsa_c00278{word-spacing:-13.293120pt;}
.wsb_c00278{word-spacing:-13.176000pt;}
.ws9_c00278{word-spacing:-13.117440pt;}
.wsc_c00278{word-spacing:-13.058880pt;}
.ws8_c00278{word-spacing:-12.184320pt;}
.ws1a_c00278{word-spacing:-1.603200pt;}
.ws19_c00278{word-spacing:-1.282560pt;}
.ws18_c00278{word-spacing:-0.320000pt;}
.ws7_c00278{word-spacing:-0.128000pt;}
.ws1c_c00278{word-spacing:-0.117120pt;}
.ws11_c00278{word-spacing:-0.064000pt;}
.ws1b_c00278{word-spacing:-0.058560pt;}
.wse_c00278{word-spacing:0.000000pt;}
.ws1d_c00278{word-spacing:0.058560pt;}
.ws1f_c00278{word-spacing:0.117120pt;}
.ws1e_c00278{word-spacing:0.175680pt;}
.ws12_c00278{word-spacing:1.600000pt;}
.ws4_c00278{word-spacing:1.792000pt;}
.ws5_c00278{word-spacing:1.856000pt;}
.ws3_c00278{word-spacing:1.920000pt;}
.ws14_c00278{word-spacing:9.472000pt;}
.ws13_c00278{word-spacing:9.600000pt;}
.ws15_c00278{word-spacing:12.480000pt;}
.ws6_c00278{word-spacing:12.608000pt;}
.ws16_c00278{word-spacing:12.800000pt;}
.ws10_c00278{word-spacing:19.200000pt;}
.wsf_c00278{word-spacing:19.456000pt;}
.ws2_c00278{word-spacing:19.520000pt;}
.ws1_c00278{word-spacing:19.648000pt;}
.ws17_c00278{word-spacing:24.896000pt;}
._0_c00278{margin-left:-1.024000pt;}
._1_c00278{width:1.088000pt;}
._2_c00278{width:176.934400pt;}
._5_c00278{width:185.518080pt;}
._6_c00278{width:222.845440pt;}
._9_c00278{width:259.479360pt;}
._d_c00278{width:371.738880pt;}
._a_c00278{width:388.921600pt;}
._f_c00278{width:481.070400pt;}
._e_c00278{width:543.202560pt;}
._8_c00278{width:550.991040pt;}
._c_c00278{width:569.086080pt;}
._7_c00278{width:578.338560pt;}
._3_c00278{width:618.452160pt;}
._4_c00278{width:627.880320pt;}
._b_c00278{width:629.251840pt;}
.fs1_c00278{font-size:53.440000pt;}
.fs2_c00278{font-size:58.560000pt;}
.fs0_c00278{font-size:64.000000pt;}
.y55_c00278{bottom:-13.920533pt;}
.y0_c00278{bottom:0.000000pt;}
.y4b_c00278{bottom:3.919333pt;}
.y32_c00278{bottom:3.919467pt;}
.y27_c00278{bottom:3.922000pt;}
.y20_c00278{bottom:3.999333pt;}
.y3d_c00278{bottom:3.999467pt;}
.y29_c00278{bottom:4.000667pt;}
.y23_c00278{bottom:4.002000pt;}
.y1b_c00278{bottom:4.002133pt;}
.y17_c00278{bottom:12.179200pt;}
.y15_c00278{bottom:12.180533pt;}
.y1e_c00278{bottom:39.839333pt;}
.y39_c00278{bottom:39.842133pt;}
.y1_c00278{bottom:54.887600pt;}
.y2c_c00278{bottom:75.600800pt;}
.y63_c00278{bottom:93.522133pt;}
.y6e_c00278{bottom:184.200000pt;}
.y62_c00278{bottom:208.517333pt;}
.y68_c00278{bottom:212.515227pt;}
.y6d_c00278{bottom:212.515493pt;}
.y67_c00278{bottom:230.361387pt;}
.y6c_c00278{bottom:236.759333pt;}
.y66_c00278{bottom:248.280747pt;}
.y6b_c00278{bottom:250.680000pt;}
.y65_c00278{bottom:266.200107pt;}
.y6a_c00278{bottom:272.599467pt;}
.y64_c00278{bottom:284.119467pt;}
.y69_c00278{bottom:292.277333pt;}
.y5b_c00278{bottom:320.595867pt;}
.y61_c00278{bottom:320.599467pt;}
.y5a_c00278{bottom:338.515227pt;}
.y60_c00278{bottom:340.277333pt;}
.y59_c00278{bottom:356.361387pt;}
.y5f_c00278{bottom:362.119467pt;}
.y58_c00278{bottom:374.280747pt;}
.y5e_c00278{bottom:376.038667pt;}
.y57_c00278{bottom:392.200107pt;}
.y5d_c00278{bottom:393.960000pt;}
.y56_c00278{bottom:410.119467pt;}
.y5c_c00278{bottom:411.880000pt;}
.y54_c00278{bottom:430.440000pt;}
.y53_c00278{bottom:449.800000pt;}
.y52_c00278{bottom:468.360000pt;}
.y4f_c00278{bottom:486.918667pt;}
.y9_c00278{bottom:507.399467pt;}
.y4e_c00278{bottom:508.833307pt;}
.y51_c00278{bottom:508.839333pt;}
.y4d_c00278{bottom:526.679467pt;}
.y50_c00278{bottom:528.520000pt;}
.y43_c00278{bottom:547.080000pt;}
.y14_c00278{bottom:554.358667pt;}
.y16_c00278{bottom:554.360000pt;}
.y4c_c00278{bottom:565.080000pt;}
.y49_c00278{bottom:568.920613pt;}
.y42_c00278{bottom:568.924027pt;}
.y46_c00278{bottom:568.927413pt;}
.y4a_c00278{bottom:583.000000pt;}
.yc_c00278{bottom:583.872000pt;}
.y48_c00278{bottom:586.839973pt;}
.y41_c00278{bottom:586.843387pt;}
.y45_c00278{bottom:586.846773pt;}
.y47_c00278{bottom:604.759333pt;}
.y40_c00278{bottom:604.762747pt;}
.y44_c00278{bottom:604.839333pt;}
.yd_c00278{bottom:618.127040pt;}
.y38_c00278{bottom:619.397333pt;}
.y3f_c00278{bottom:623.399467pt;}
.y3b_c00278{bottom:623.400107pt;}
.y3e_c00278{bottom:637.320000pt;}
.y3a_c00278{bottom:641.319467pt;}
.ye_c00278{bottom:652.382080pt;}
.y3c_c00278{bottom:655.240000pt;}
.y37_c00278{bottom:677.799333pt;}
.ya_c00278{bottom:679.796800pt;}
.yf_c00278{bottom:686.637120pt;}
.y2b_c00278{bottom:698.118667pt;}
.y36_c00278{bottom:702.119333pt;}
.y30_c00278{bottom:702.121253pt;}
.y35_c00278{bottom:716.040000pt;}
.y2f_c00278{bottom:720.040613pt;}
.y10_c00278{bottom:720.892160pt;}
.y34_c00278{bottom:733.960000pt;}
.y2e_c00278{bottom:737.959973pt;}
.y33_c00278{bottom:751.878667pt;}
.y11_c00278{bottom:755.147200pt;}
.y2d_c00278{bottom:755.879333pt;}
.y31_c00278{bottom:769.800000pt;}
.y26_c00278{bottom:788.357333pt;}
.y12_c00278{bottom:789.402240pt;}
.y25_c00278{bottom:810.199973pt;}
.y2a_c00278{bottom:811.960000pt;}
.yb_c00278{bottom:819.929840pt;}
.y13_c00278{bottom:823.657280pt;}
.y24_c00278{bottom:828.119333pt;}
.y28_c00278{bottom:829.878667pt;}
.y1d_c00278{bottom:848.440000pt;}
.y22_c00278{bottom:866.357333pt;}
.y1f_c00278{bottom:870.359333pt;}
.y8_c00278{bottom:875.239467pt;}
.y21_c00278{bottom:884.280000pt;}
.y1a_c00278{bottom:902.837333pt;}
.y7_c00278{bottom:902.919467pt;}
.y1c_c00278{bottom:924.759467pt;}
.y6_c00278{bottom:930.519467pt;}
.y19_c00278{bottom:943.319467pt;}
.y5_c00278{bottom:958.119467pt;}
.y4_c00278{bottom:985.719467pt;}
.y18_c00278{bottom:994.839467pt;}
.y3_c00278{bottom:1013.319467pt;}
.y2_c00278{bottom:1060.599467pt;}
.h10_c00278{height:17.837333pt;}
.h12_c00278{height:17.838667pt;}
.hc_c00278{height:17.920000pt;}
.hb_c00278{height:17.921333pt;}
.h13_c00278{height:18.000000pt;}
.h14_c00278{height:18.641333pt;}
.h17_c00278{height:23.598667pt;}
.he_c00278{height:23.600000pt;}
.h16_c00278{height:23.682667pt;}
.h7_c00278{height:24.880000pt;}
.h6_c00278{height:24.881333pt;}
.h9_c00278{height:35.840000pt;}
.h5_c00278{height:44.072344pt;}
.h2_c00278{height:44.800000pt;}
.h8_c00278{height:48.294844pt;}
.ha_c00278{height:53.760000pt;}
.hd_c00278{height:59.441333pt;}
.h3_c00278{height:68.288000pt;}
.h4_c00278{height:69.376000pt;}
.h11_c00278{height:71.681333pt;}
.hf_c00278{height:89.520000pt;}
.h15_c00278{height:107.442667pt;}
.h0_c00278{height:1122.520000pt;}
.h1_c00278{height:1122.666667pt;}
.w3_c00278{width:-408.261333pt;}
.w4_c00278{width:-155.461333pt;}
.w2_c00278{width:0.000000pt;}
.w5_c00278{width:0.058667pt;}
.w7_c00278{width:75.600000pt;}
.w9_c00278{width:94.480000pt;}
.w8_c00278{width:94.560000pt;}
.wa_c00278{width:123.762667pt;}
.wb_c00278{width:151.200000pt;}
.wc_c00278{width:189.040000pt;}
.w6_c00278{width:274.961333pt;}
.w0_c00278{width:793.701333pt;}
.w1_c00278{width:794.000000pt;}
.x1_c00278{left:-745.700800pt;}
.x2_c00278{left:-680.260800pt;}
.x4_c00278{left:-670.820800pt;}
.x8_c00278{left:-668.436347pt;}
.x7_c00278{left:-661.622747pt;}
.x3_c00278{left:-651.860800pt;}
.x9_c00278{left:-592.906400pt;}
.x5_c00278{left:-519.899867pt;}
.xa_c00278{left:-361.660400pt;}
.x6_c00278{left:-277.936907pt;}
.x0_c00278{left:0.000000pt;}
.x10_c00278{left:4.640000pt;}
.x21_c00278{left:37.600000pt;}
.x19_c00278{left:45.040000pt;}
.x23_c00278{left:48.640000pt;}
.x18_c00278{left:56.080000pt;}
.x1c_c00278{left:63.520000pt;}
.x24_c00278{left:67.600000pt;}
.x20_c00278{left:82.480000pt;}
.x22_c00278{left:107.920000pt;}
.xf_c00278{left:112.480000pt;}
.xd_c00278{left:113.440000pt;}
.xe_c00278{left:117.120000pt;}
.x17_c00278{left:236.240000pt;}
.x1f_c00278{left:240.960000pt;}
.x11_c00278{left:387.440000pt;}
.x12_c00278{left:463.040000pt;}
.x14_c00278{left:538.640000pt;}
.x13_c00278{left:543.360000pt;}
.xc_c00278{left:604.400000pt;}
.x1a_c00278{left:613.680000pt;}
.x1d_c00278{left:621.113040pt;}
.x16_c00278{left:633.200000pt;}
.x15_c00278{left:637.840000pt;}
.x1b_c00278{left:689.600000pt;}
.x1e_c00278{left:697.044160pt;}
.xb_c00278{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00279;src:url('chunks/assets/font_78045a295cc1dc400ff85cc2.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00279;src:url('chunks/assets/font_672ae34380994bc4b691b1b7.woff2')format("woff");}.ff3_c00279{font-family:ff3_c00279;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00279;src:url('chunks/assets/font_2b03441a6196cdd0e3892000.woff2')format("woff");}.ff4_c00279{font-family:ff4_c00279;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00279;src:url('chunks/assets/font_ed76507b79ec5ba440a7fdd9.woff2')format("woff");}.ff5_c00279{font-family:ff5_c00279;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00279;src:url('chunks/assets/font_0f57ba2c2cfd7a831e654c97.woff2')format("woff");}.ff6_c00279{font-family:ff6_c00279;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00279{vertical-align:-3.426840px;}
.v0_c00279{vertical-align:0.000000px;}
.ls9_c00279{letter-spacing:-0.216000px;}
.ls8_c00279{letter-spacing:-0.072000px;}
.ls7_c00279{letter-spacing:0.000000px;}
.ls0_c00279{letter-spacing:0.072000px;}
.ls4_c00279{letter-spacing:0.120240px;}
.ls1_c00279{letter-spacing:0.144000px;}
.ls3_c00279{letter-spacing:20.894400px;}
.ls2_c00279{letter-spacing:23.760000px;}
.ls6_c00279{letter-spacing:158.416200px;}
.ls5_c00279{letter-spacing:779.876640px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00279{word-spacing:-18.000000px;}
.ws5_c00279{word-spacing:-13.707360px;}
.ws23_c00279{word-spacing:-1.803600px;}
.ws22_c00279{word-spacing:-1.442880px;}
.ws8_c00279{word-spacing:-0.432000px;}
.ws4_c00279{word-spacing:-0.144000px;}
.ws21_c00279{word-spacing:-0.120240px;}
.ws7_c00279{word-spacing:-0.072000px;}
.ws6_c00279{word-spacing:0.000000px;}
.wsb_c00279{word-spacing:0.072000px;}
.ws1c_c00279{word-spacing:1.008000px;}
.ws1d_c00279{word-spacing:1.080000px;}
.ws2_c00279{word-spacing:1.152000px;}
.wsc_c00279{word-spacing:1.368000px;}
.wsd_c00279{word-spacing:1.728000px;}
.wse_c00279{word-spacing:1.800000px;}
.ws1a_c00279{word-spacing:2.736000px;}
.ws1b_c00279{word-spacing:2.808000px;}
.ws18_c00279{word-spacing:2.880000px;}
.ws19_c00279{word-spacing:3.240000px;}
.ws17_c00279{word-spacing:5.760000px;}
.wsa_c00279{word-spacing:6.048000px;}
.ws9_c00279{word-spacing:6.120000px;}
.ws13_c00279{word-spacing:7.488000px;}
.ws12_c00279{word-spacing:7.560000px;}
.ws10_c00279{word-spacing:9.360000px;}
.wsf_c00279{word-spacing:9.720000px;}
.ws16_c00279{word-spacing:11.736000px;}
.ws14_c00279{word-spacing:12.168000px;}
.ws15_c00279{word-spacing:12.240000px;}
.ws3_c00279{word-spacing:14.112000px;}
.ws1f_c00279{word-spacing:14.256000px;}
.ws1e_c00279{word-spacing:14.400000px;}
.ws20_c00279{word-spacing:14.616000px;}
.ws11_c00279{word-spacing:21.528000px;}
.ws1_c00279{word-spacing:36.000000px;}
._0_c00279{margin-left:-1.382400px;}
._1_c00279{width:1.944000px;}
._3_c00279{width:7.632000px;}
._2_c00279{width:9.230400px;}
._4_c00279{width:12.340800px;}
.fc1_c00279{color:rgb(0,0,0);}
.fc0_c00279{color:rgb(35,31,32);}
.fs1_c00279{font-size:60.120000px;}
.fs0_c00279{font-size:72.000000px;}
.y0_c00279{bottom:0.000000px;}
.y1_c00279{bottom:61.748550px;}
.y12_c00279{bottom:176.354400px;}
.y23_c00279{bottom:361.922100px;}
.y22_c00279{bottom:380.198580px;}
.y14_c00279{bottom:398.865840px;}
.y1b_c00279{bottom:399.692490px;}
.y16_c00279{bottom:399.722550px;}
.y13_c00279{bottom:414.226500px;}
.y19_c00279{bottom:417.728490px;}
.y1c_c00279{bottom:424.567140px;}
.y1d_c00279{bottom:449.441790px;}
.y18_c00279{bottom:455.378640px;}
.y1a_c00279{bottom:464.291430px;}
.y1e_c00279{bottom:474.316440px;}
.y15_c00279{bottom:480.764310px;}
.y1f_c00279{bottom:499.191090px;}
.y20_c00279{bottom:524.065740px;}
.y17_c00279{bottom:531.024630px;}
.y21_c00279{bottom:548.940390px;}
.y11_c00279{bottom:612.224400px;}
.y10_c00279{bottom:643.274400px;}
.yf_c00279{bottom:674.324400px;}
.ye_c00279{bottom:705.374400px;}
.yd_c00279{bottom:736.424400px;}
.yc_c00279{bottom:767.474400px;}
.yb_c00279{bottom:798.434400px;}
.ya_c00279{bottom:829.484400px;}
.y9_c00279{bottom:860.534400px;}
.y8_c00279{bottom:891.584400px;}
.y7_c00279{bottom:953.504400px;}
.y6_c00279{bottom:1015.784400px;}
.y5_c00279{bottom:1046.834400px;}
.y4_c00279{bottom:1077.884400px;}
.y3_c00279{bottom:1139.804400px;}
.y2_c00279{bottom:1193.174400px;}
.h5_c00279{height:49.581387px;}
.h2_c00279{height:50.400000px;}
.h3_c00279{height:76.824000px;}
.h4_c00279{height:78.048000px;}
.h0_c00279{height:1262.835000px;}
.h1_c00279{height:1263.000000px;}
.w0_c00279{width:892.914000px;}
.w1_c00279{width:893.250000px;}
.x0_c00279{left:0.000000px;}
.x1_c00279{left:54.000000px;}
.x2_c00279{left:127.620000px;}
.x3_c00279{left:132.570000px;}
.xf_c00279{left:136.142130px;}
.xe_c00279{left:143.717250px;}
.x4_c00279{left:159.570000px;}
.x5_c00279{left:164.070000px;}
.x10_c00279{left:178.015710px;}
.x9_c00279{left:209.713980px;}
.x6_c00279{left:211.502550px;}
.xb_c00279{left:213.907350px;}
.xc_c00279{left:415.775280px;}
.x11_c00279{left:419.111940px;}
.x7_c00279{left:434.818290px;}
.x12_c00279{left:591.896820px;}
.xd_c00279{left:660.223200px;}
.x8_c00279{left:662.026800px;}
.xa_c00279{left:665.558850px;}
@media print{
.v1_c00279{vertical-align:-3.046080pt;}
.v0_c00279{vertical-align:0.000000pt;}
.ls9_c00279{letter-spacing:-0.192000pt;}
.ls8_c00279{letter-spacing:-0.064000pt;}
.ls7_c00279{letter-spacing:0.000000pt;}
.ls0_c00279{letter-spacing:0.064000pt;}
.ls4_c00279{letter-spacing:0.106880pt;}
.ls1_c00279{letter-spacing:0.128000pt;}
.ls3_c00279{letter-spacing:18.572800pt;}
.ls2_c00279{letter-spacing:21.120000pt;}
.ls6_c00279{letter-spacing:140.814400pt;}
.ls5_c00279{letter-spacing:693.223680pt;}
.ws0_c00279{word-spacing:-16.000000pt;}
.ws5_c00279{word-spacing:-12.184320pt;}
.ws23_c00279{word-spacing:-1.603200pt;}
.ws22_c00279{word-spacing:-1.282560pt;}
.ws8_c00279{word-spacing:-0.384000pt;}
.ws4_c00279{word-spacing:-0.128000pt;}
.ws21_c00279{word-spacing:-0.106880pt;}
.ws7_c00279{word-spacing:-0.064000pt;}
.ws6_c00279{word-spacing:0.000000pt;}
.wsb_c00279{word-spacing:0.064000pt;}
.ws1c_c00279{word-spacing:0.896000pt;}
.ws1d_c00279{word-spacing:0.960000pt;}
.ws2_c00279{word-spacing:1.024000pt;}
.wsc_c00279{word-spacing:1.216000pt;}
.wsd_c00279{word-spacing:1.536000pt;}
.wse_c00279{word-spacing:1.600000pt;}
.ws1a_c00279{word-spacing:2.432000pt;}
.ws1b_c00279{word-spacing:2.496000pt;}
.ws18_c00279{word-spacing:2.560000pt;}
.ws19_c00279{word-spacing:2.880000pt;}
.ws17_c00279{word-spacing:5.120000pt;}
.wsa_c00279{word-spacing:5.376000pt;}
.ws9_c00279{word-spacing:5.440000pt;}
.ws13_c00279{word-spacing:6.656000pt;}
.ws12_c00279{word-spacing:6.720000pt;}
.ws10_c00279{word-spacing:8.320000pt;}
.wsf_c00279{word-spacing:8.640000pt;}
.ws16_c00279{word-spacing:10.432000pt;}
.ws14_c00279{word-spacing:10.816000pt;}
.ws15_c00279{word-spacing:10.880000pt;}
.ws3_c00279{word-spacing:12.544000pt;}
.ws1f_c00279{word-spacing:12.672000pt;}
.ws1e_c00279{word-spacing:12.800000pt;}
.ws20_c00279{word-spacing:12.992000pt;}
.ws11_c00279{word-spacing:19.136000pt;}
.ws1_c00279{word-spacing:32.000000pt;}
._0_c00279{margin-left:-1.228800pt;}
._1_c00279{width:1.728000pt;}
._3_c00279{width:6.784000pt;}
._2_c00279{width:8.204800pt;}
._4_c00279{width:10.969600pt;}
.fs1_c00279{font-size:53.440000pt;}
.fs0_c00279{font-size:64.000000pt;}
.y0_c00279{bottom:0.000000pt;}
.y1_c00279{bottom:54.887600pt;}
.y12_c00279{bottom:156.759467pt;}
.y23_c00279{bottom:321.708533pt;}
.y22_c00279{bottom:337.954293pt;}
.y14_c00279{bottom:354.547413pt;}
.y1b_c00279{bottom:355.282213pt;}
.y16_c00279{bottom:355.308933pt;}
.y13_c00279{bottom:368.201333pt;}
.y19_c00279{bottom:371.314213pt;}
.y1c_c00279{bottom:377.393013pt;}
.y1d_c00279{bottom:399.503813pt;}
.y18_c00279{bottom:404.781013pt;}
.y1a_c00279{bottom:412.703493pt;}
.y1e_c00279{bottom:421.614613pt;}
.y15_c00279{bottom:427.346053pt;}
.y1f_c00279{bottom:443.725413pt;}
.y20_c00279{bottom:465.836213pt;}
.y17_c00279{bottom:472.021893pt;}
.y21_c00279{bottom:487.947013pt;}
.y11_c00279{bottom:544.199467pt;}
.y10_c00279{bottom:571.799467pt;}
.yf_c00279{bottom:599.399467pt;}
.ye_c00279{bottom:626.999467pt;}
.yd_c00279{bottom:654.599467pt;}
.yc_c00279{bottom:682.199467pt;}
.yb_c00279{bottom:709.719467pt;}
.ya_c00279{bottom:737.319467pt;}
.y9_c00279{bottom:764.919467pt;}
.y8_c00279{bottom:792.519467pt;}
.y7_c00279{bottom:847.559467pt;}
.y6_c00279{bottom:902.919467pt;}
.y5_c00279{bottom:930.519467pt;}
.y4_c00279{bottom:958.119467pt;}
.y3_c00279{bottom:1013.159467pt;}
.y2_c00279{bottom:1060.599467pt;}
.h5_c00279{height:44.072344pt;}
.h2_c00279{height:44.800000pt;}
.h3_c00279{height:68.288000pt;}
.h4_c00279{height:69.376000pt;}
.h0_c00279{height:1122.520000pt;}
.h1_c00279{height:1122.666667pt;}
.w0_c00279{width:793.701333pt;}
.w1_c00279{width:794.000000pt;}
.x0_c00279{left:0.000000pt;}
.x1_c00279{left:48.000000pt;}
.x2_c00279{left:113.440000pt;}
.x3_c00279{left:117.840000pt;}
.xf_c00279{left:121.015227pt;}
.xe_c00279{left:127.748667pt;}
.x4_c00279{left:141.840000pt;}
.x5_c00279{left:145.840000pt;}
.x10_c00279{left:158.236187pt;}
.x9_c00279{left:186.412427pt;}
.x6_c00279{left:188.002267pt;}
.xb_c00279{left:190.139867pt;}
.xc_c00279{left:369.578027pt;}
.x11_c00279{left:372.543947pt;}
.x7_c00279{left:386.505147pt;}
.x12_c00279{left:526.130507pt;}
.xd_c00279{left:586.865067pt;}
.x8_c00279{left:588.468267pt;}
.xa_c00279{left:591.607867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00280;src:url('chunks/assets/font_35b0dcd307e7a46c8cb49898.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00280;src:url('chunks/assets/font_b39a42be59d726afdded3815.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00280;src:url('chunks/assets/font_ee2986e91f795f221c97c90d.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00280;src:url('chunks/assets/font_aff0e8237c8d7b8131bca899.woff2')format("woff");}.ff5_c00280{font-family:ff5_c00280;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00280;src:url('chunks/assets/font_e734ce8beeb0724e0393fdd3.woff2')format("woff");}.ff6_c00280{font-family:ff6_c00280;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00280;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff7_c00280{font-family:ff7_c00280;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00280;src:url('chunks/assets/font_b2defa193fb0679200925da9.woff2')format("woff");}.ff8_c00280{font-family:ff8_c00280;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00280;src:url('chunks/assets/font_3caf0b1753da9b805e8519da.woff2')format("woff");}.ff9_c00280{font-family:ff9_c00280;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00280;src:url('chunks/assets/font_9d720f887de4f44963d946fa.woff2')format("woff");}.ffa_c00280{font-family:ffa_c00280;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00280;src:url('chunks/assets/font_65cbcdcf4e783b71992cfd11.woff2')format("woff");}.ffb_c00280{font-family:ffb_c00280;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00280;src:url('chunks/assets/font_b90e2ce0dfeea4e2a4f8621b.woff2')format("woff");}.ffc_c00280{font-family:ffc_c00280;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00280{vertical-align:-3.426840px;}
.v0_c00280{vertical-align:0.000000px;}
.lsa_c00280{letter-spacing:-0.288000px;}
.ls9_c00280{letter-spacing:-0.216000px;}
.lsb_c00280{letter-spacing:-0.144000px;}
.ls8_c00280{letter-spacing:-0.072000px;}
.ls7_c00280{letter-spacing:0.000000px;}
.ls0_c00280{letter-spacing:0.072000px;}
.ls4_c00280{letter-spacing:0.120240px;}
.ls1_c00280{letter-spacing:0.144000px;}
.ls3_c00280{letter-spacing:20.894400px;}
.ls2_c00280{letter-spacing:23.760000px;}
.ls6_c00280{letter-spacing:158.416200px;}
.ls5_c00280{letter-spacing:779.876640px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00280{word-spacing:-18.072000px;}
.ws0_c00280{word-spacing:-18.000000px;}
.ws6_c00280{word-spacing:-13.707360px;}
.ws2d_c00280{word-spacing:-1.803600px;}
.ws2c_c00280{word-spacing:-1.442880px;}
.ws14_c00280{word-spacing:-0.432000px;}
.ws5_c00280{word-spacing:-0.144000px;}
.ws2b_c00280{word-spacing:-0.120240px;}
.ws13_c00280{word-spacing:-0.072000px;}
.ws12_c00280{word-spacing:0.000000px;}
.ws9_c00280{word-spacing:0.072000px;}
.wsa_c00280{word-spacing:0.288000px;}
.ws38_c00280{word-spacing:0.360000px;}
.ws26_c00280{word-spacing:1.008000px;}
.ws27_c00280{word-spacing:1.080000px;}
.ws3_c00280{word-spacing:1.152000px;}
.ws17_c00280{word-spacing:1.368000px;}
.ws18_c00280{word-spacing:1.728000px;}
.wsb_c00280{word-spacing:1.800000px;}
.ws3c_c00280{word-spacing:2.016000px;}
.ws7_c00280{word-spacing:2.160000px;}
.ws24_c00280{word-spacing:2.736000px;}
.ws25_c00280{word-spacing:2.808000px;}
.ws22_c00280{word-spacing:2.880000px;}
.ws3d_c00280{word-spacing:3.024000px;}
.ws23_c00280{word-spacing:3.240000px;}
.ws48_c00280{word-spacing:3.528000px;}
.wsc_c00280{word-spacing:3.600000px;}
.ws3b_c00280{word-spacing:3.816000px;}
.ws39_c00280{word-spacing:3.888000px;}
.ws47_c00280{word-spacing:3.960000px;}
.ws3e_c00280{word-spacing:4.248000px;}
.ws3a_c00280{word-spacing:4.320000px;}
.ws21_c00280{word-spacing:5.760000px;}
.ws43_c00280{word-spacing:5.832000px;}
.ws16_c00280{word-spacing:6.048000px;}
.ws15_c00280{word-spacing:6.120000px;}
.ws44_c00280{word-spacing:6.408000px;}
.ws42_c00280{word-spacing:6.480000px;}
.ws3f_c00280{word-spacing:6.840000px;}
.ws32_c00280{word-spacing:6.984000px;}
.wse_c00280{word-spacing:7.128000px;}
.ws31_c00280{word-spacing:7.200000px;}
.ws1d_c00280{word-spacing:7.488000px;}
.ws1c_c00280{word-spacing:7.560000px;}
.ws30_c00280{word-spacing:8.280000px;}
.ws45_c00280{word-spacing:8.496000px;}
.ws11_c00280{word-spacing:8.640000px;}
.ws1a_c00280{word-spacing:9.360000px;}
.ws19_c00280{word-spacing:9.720000px;}
.ws34_c00280{word-spacing:10.080000px;}
.ws33_c00280{word-spacing:10.368000px;}
.ws35_c00280{word-spacing:10.440000px;}
.ws20_c00280{word-spacing:11.736000px;}
.ws1e_c00280{word-spacing:12.168000px;}
.ws10_c00280{word-spacing:12.218400px;}
.ws1f_c00280{word-spacing:12.240000px;}
.ws2f_c00280{word-spacing:13.248000px;}
.ws2e_c00280{word-spacing:13.680000px;}
.wsf_c00280{word-spacing:13.968000px;}
.ws4_c00280{word-spacing:14.112000px;}
.ws29_c00280{word-spacing:14.256000px;}
.ws28_c00280{word-spacing:14.400000px;}
.ws2a_c00280{word-spacing:14.616000px;}
.ws37_c00280{word-spacing:14.760000px;}
.ws36_c00280{word-spacing:15.048000px;}
.ws8_c00280{word-spacing:15.120000px;}
.ws40_c00280{word-spacing:17.928000px;}
.ws41_c00280{word-spacing:18.000000px;}
.ws1b_c00280{word-spacing:21.528000px;}
.ws46_c00280{word-spacing:21.600000px;}
.ws1_c00280{word-spacing:36.000000px;}
.wsd_c00280{word-spacing:41.040000px;}
._0_c00280{margin-left:-1.382400px;}
._1_c00280{width:1.944000px;}
._8_c00280{width:4.392000px;}
._3_c00280{width:7.632000px;}
._2_c00280{width:9.230400px;}
._5_c00280{width:10.598400px;}
._4_c00280{width:12.340800px;}
._6_c00280{width:15.192000px;}
._7_c00280{width:21.024000px;}
.fc2_c00280{color:transparent;}
.fc1_c00280{color:rgb(0,0,0);}
.fc0_c00280{color:rgb(35,31,32);}
.fs1_c00280{font-size:60.120000px;}
.fs0_c00280{font-size:72.000000px;}
.y0_c00280{bottom:0.000000px;}
.y1_c00280{bottom:61.748550px;}
.y12_c00280{bottom:176.354400px;}
.y33_c00280{bottom:239.624400px;}
.y32_c00280{bottom:270.674400px;}
.y31_c00280{bottom:301.724400px;}
.y30_c00280{bottom:332.774400px;}
.y23_c00280{bottom:361.922100px;}
.y2f_c00280{bottom:363.824400px;}
.y22_c00280{bottom:380.198580px;}
.y2e_c00280{bottom:394.874400px;}
.y14_c00280{bottom:398.865840px;}
.y1b_c00280{bottom:399.692490px;}
.y16_c00280{bottom:399.722550px;}
.y13_c00280{bottom:414.226500px;}
.y19_c00280{bottom:417.728490px;}
.y1c_c00280{bottom:424.567140px;}
.y2d_c00280{bottom:425.924400px;}
.y1d_c00280{bottom:449.441790px;}
.y18_c00280{bottom:455.378640px;}
.y2c_c00280{bottom:456.974400px;}
.y1a_c00280{bottom:464.291430px;}
.y1e_c00280{bottom:474.316440px;}
.y15_c00280{bottom:480.764310px;}
.y2b_c00280{bottom:488.024400px;}
.y1f_c00280{bottom:499.191090px;}
.y20_c00280{bottom:524.065740px;}
.y17_c00280{bottom:531.024630px;}
.y21_c00280{bottom:548.940390px;}
.y2a_c00280{bottom:550.124400px;}
.y29_c00280{bottom:581.174400px;}
.y11_c00280{bottom:612.224400px;}
.y10_c00280{bottom:643.274400px;}
.yf_c00280{bottom:674.324400px;}
.ye_c00280{bottom:705.374400px;}
.yd_c00280{bottom:736.424400px;}
.yc_c00280{bottom:767.474400px;}
.yb_c00280{bottom:798.434400px;}
.ya_c00280{bottom:829.484400px;}
.y9_c00280{bottom:860.534400px;}
.y8_c00280{bottom:891.584400px;}
.y28_c00280{bottom:922.634400px;}
.y7_c00280{bottom:953.504400px;}
.y27_c00280{bottom:953.684400px;}
.y26_c00280{bottom:984.734400px;}
.y6_c00280{bottom:1015.784400px;}
.y5_c00280{bottom:1046.834400px;}
.y4_c00280{bottom:1077.884400px;}
.y25_c00280{bottom:1139.804400px;}
.y3_c00280{bottom:1139.804550px;}
.y24_c00280{bottom:1193.174400px;}
.y2_c00280{bottom:1193.174550px;}
.h5_c00280{height:49.581387px;}
.h2_c00280{height:50.400000px;}
.h3_c00280{height:76.824000px;}
.h4_c00280{height:78.048000px;}
.h0_c00280{height:1262.835000px;}
.h1_c00280{height:1263.000000px;}
.w2_c00280{width:0.000000px;}
.w3_c00280{width:0.066000px;}
.w0_c00280{width:892.914000px;}
.w1_c00280{width:893.250000px;}
.x1_c00280{left:-838.913400px;}
.x2_c00280{left:-765.293400px;}
.x3_c00280{left:-760.343400px;}
.xf_c00280{left:-756.771270px;}
.xe_c00280{left:-749.196150px;}
.x4_c00280{left:-733.343400px;}
.x5_c00280{left:-728.843400px;}
.x10_c00280{left:-714.897690px;}
.x9_c00280{left:-683.199420px;}
.x6_c00280{left:-681.410850px;}
.xb_c00280{left:-679.006050px;}
.xc_c00280{left:-477.138120px;}
.x11_c00280{left:-473.801460px;}
.x7_c00280{left:-458.095110px;}
.x12_c00280{left:-301.016580px;}
.xd_c00280{left:-232.690200px;}
.x8_c00280{left:-230.886600px;}
.xa_c00280{left:-227.354550px;}
.x0_c00280{left:0.000000px;}
.x16_c00280{left:127.620000px;}
.x15_c00280{left:159.570000px;}
.x14_c00280{left:679.950000px;}
.x13_c00280{left:804.366150px;}
@media print{
.v1_c00280{vertical-align:-3.046080pt;}
.v0_c00280{vertical-align:0.000000pt;}
.lsa_c00280{letter-spacing:-0.256000pt;}
.ls9_c00280{letter-spacing:-0.192000pt;}
.lsb_c00280{letter-spacing:-0.128000pt;}
.ls8_c00280{letter-spacing:-0.064000pt;}
.ls7_c00280{letter-spacing:0.000000pt;}
.ls0_c00280{letter-spacing:0.064000pt;}
.ls4_c00280{letter-spacing:0.106880pt;}
.ls1_c00280{letter-spacing:0.128000pt;}
.ls3_c00280{letter-spacing:18.572800pt;}
.ls2_c00280{letter-spacing:21.120000pt;}
.ls6_c00280{letter-spacing:140.814400pt;}
.ls5_c00280{letter-spacing:693.223680pt;}
.ws2_c00280{word-spacing:-16.064000pt;}
.ws0_c00280{word-spacing:-16.000000pt;}
.ws6_c00280{word-spacing:-12.184320pt;}
.ws2d_c00280{word-spacing:-1.603200pt;}
.ws2c_c00280{word-spacing:-1.282560pt;}
.ws14_c00280{word-spacing:-0.384000pt;}
.ws5_c00280{word-spacing:-0.128000pt;}
.ws2b_c00280{word-spacing:-0.106880pt;}
.ws13_c00280{word-spacing:-0.064000pt;}
.ws12_c00280{word-spacing:0.000000pt;}
.ws9_c00280{word-spacing:0.064000pt;}
.wsa_c00280{word-spacing:0.256000pt;}
.ws38_c00280{word-spacing:0.320000pt;}
.ws26_c00280{word-spacing:0.896000pt;}
.ws27_c00280{word-spacing:0.960000pt;}
.ws3_c00280{word-spacing:1.024000pt;}
.ws17_c00280{word-spacing:1.216000pt;}
.ws18_c00280{word-spacing:1.536000pt;}
.wsb_c00280{word-spacing:1.600000pt;}
.ws3c_c00280{word-spacing:1.792000pt;}
.ws7_c00280{word-spacing:1.920000pt;}
.ws24_c00280{word-spacing:2.432000pt;}
.ws25_c00280{word-spacing:2.496000pt;}
.ws22_c00280{word-spacing:2.560000pt;}
.ws3d_c00280{word-spacing:2.688000pt;}
.ws23_c00280{word-spacing:2.880000pt;}
.ws48_c00280{word-spacing:3.136000pt;}
.wsc_c00280{word-spacing:3.200000pt;}
.ws3b_c00280{word-spacing:3.392000pt;}
.ws39_c00280{word-spacing:3.456000pt;}
.ws47_c00280{word-spacing:3.520000pt;}
.ws3e_c00280{word-spacing:3.776000pt;}
.ws3a_c00280{word-spacing:3.840000pt;}
.ws21_c00280{word-spacing:5.120000pt;}
.ws43_c00280{word-spacing:5.184000pt;}
.ws16_c00280{word-spacing:5.376000pt;}
.ws15_c00280{word-spacing:5.440000pt;}
.ws44_c00280{word-spacing:5.696000pt;}
.ws42_c00280{word-spacing:5.760000pt;}
.ws3f_c00280{word-spacing:6.080000pt;}
.ws32_c00280{word-spacing:6.208000pt;}
.wse_c00280{word-spacing:6.336000pt;}
.ws31_c00280{word-spacing:6.400000pt;}
.ws1d_c00280{word-spacing:6.656000pt;}
.ws1c_c00280{word-spacing:6.720000pt;}
.ws30_c00280{word-spacing:7.360000pt;}
.ws45_c00280{word-spacing:7.552000pt;}
.ws11_c00280{word-spacing:7.680000pt;}
.ws1a_c00280{word-spacing:8.320000pt;}
.ws19_c00280{word-spacing:8.640000pt;}
.ws34_c00280{word-spacing:8.960000pt;}
.ws33_c00280{word-spacing:9.216000pt;}
.ws35_c00280{word-spacing:9.280000pt;}
.ws20_c00280{word-spacing:10.432000pt;}
.ws1e_c00280{word-spacing:10.816000pt;}
.ws10_c00280{word-spacing:10.860800pt;}
.ws1f_c00280{word-spacing:10.880000pt;}
.ws2f_c00280{word-spacing:11.776000pt;}
.ws2e_c00280{word-spacing:12.160000pt;}
.wsf_c00280{word-spacing:12.416000pt;}
.ws4_c00280{word-spacing:12.544000pt;}
.ws29_c00280{word-spacing:12.672000pt;}
.ws28_c00280{word-spacing:12.800000pt;}
.ws2a_c00280{word-spacing:12.992000pt;}
.ws37_c00280{word-spacing:13.120000pt;}
.ws36_c00280{word-spacing:13.376000pt;}
.ws8_c00280{word-spacing:13.440000pt;}
.ws40_c00280{word-spacing:15.936000pt;}
.ws41_c00280{word-spacing:16.000000pt;}
.ws1b_c00280{word-spacing:19.136000pt;}
.ws46_c00280{word-spacing:19.200000pt;}
.ws1_c00280{word-spacing:32.000000pt;}
.wsd_c00280{word-spacing:36.480000pt;}
._0_c00280{margin-left:-1.228800pt;}
._1_c00280{width:1.728000pt;}
._8_c00280{width:3.904000pt;}
._3_c00280{width:6.784000pt;}
._2_c00280{width:8.204800pt;}
._5_c00280{width:9.420800pt;}
._4_c00280{width:10.969600pt;}
._6_c00280{width:13.504000pt;}
._7_c00280{width:18.688000pt;}
.fs1_c00280{font-size:53.440000pt;}
.fs0_c00280{font-size:64.000000pt;}
.y0_c00280{bottom:0.000000pt;}
.y1_c00280{bottom:54.887600pt;}
.y12_c00280{bottom:156.759467pt;}
.y33_c00280{bottom:212.999467pt;}
.y32_c00280{bottom:240.599467pt;}
.y31_c00280{bottom:268.199467pt;}
.y30_c00280{bottom:295.799467pt;}
.y23_c00280{bottom:321.708533pt;}
.y2f_c00280{bottom:323.399467pt;}
.y22_c00280{bottom:337.954293pt;}
.y2e_c00280{bottom:350.999467pt;}
.y14_c00280{bottom:354.547413pt;}
.y1b_c00280{bottom:355.282213pt;}
.y16_c00280{bottom:355.308933pt;}
.y13_c00280{bottom:368.201333pt;}
.y19_c00280{bottom:371.314213pt;}
.y1c_c00280{bottom:377.393013pt;}
.y2d_c00280{bottom:378.599467pt;}
.y1d_c00280{bottom:399.503813pt;}
.y18_c00280{bottom:404.781013pt;}
.y2c_c00280{bottom:406.199467pt;}
.y1a_c00280{bottom:412.703493pt;}
.y1e_c00280{bottom:421.614613pt;}
.y15_c00280{bottom:427.346053pt;}
.y2b_c00280{bottom:433.799467pt;}
.y1f_c00280{bottom:443.725413pt;}
.y20_c00280{bottom:465.836213pt;}
.y17_c00280{bottom:472.021893pt;}
.y21_c00280{bottom:487.947013pt;}
.y2a_c00280{bottom:488.999467pt;}
.y29_c00280{bottom:516.599467pt;}
.y11_c00280{bottom:544.199467pt;}
.y10_c00280{bottom:571.799467pt;}
.yf_c00280{bottom:599.399467pt;}
.ye_c00280{bottom:626.999467pt;}
.yd_c00280{bottom:654.599467pt;}
.yc_c00280{bottom:682.199467pt;}
.yb_c00280{bottom:709.719467pt;}
.ya_c00280{bottom:737.319467pt;}
.y9_c00280{bottom:764.919467pt;}
.y8_c00280{bottom:792.519467pt;}
.y28_c00280{bottom:820.119467pt;}
.y7_c00280{bottom:847.559467pt;}
.y27_c00280{bottom:847.719467pt;}
.y26_c00280{bottom:875.319467pt;}
.y6_c00280{bottom:902.919467pt;}
.y5_c00280{bottom:930.519467pt;}
.y4_c00280{bottom:958.119467pt;}
.y25_c00280{bottom:1013.159467pt;}
.y3_c00280{bottom:1013.159600pt;}
.y24_c00280{bottom:1060.599467pt;}
.y2_c00280{bottom:1060.599600pt;}
.h5_c00280{height:44.072344pt;}
.h2_c00280{height:44.800000pt;}
.h3_c00280{height:68.288000pt;}
.h4_c00280{height:69.376000pt;}
.h0_c00280{height:1122.520000pt;}
.h1_c00280{height:1122.666667pt;}
.w2_c00280{width:0.000000pt;}
.w3_c00280{width:0.058667pt;}
.w0_c00280{width:793.701333pt;}
.w1_c00280{width:794.000000pt;}
.x1_c00280{left:-745.700800pt;}
.x2_c00280{left:-680.260800pt;}
.x3_c00280{left:-675.860800pt;}
.xf_c00280{left:-672.685573pt;}
.xe_c00280{left:-665.952133pt;}
.x4_c00280{left:-651.860800pt;}
.x5_c00280{left:-647.860800pt;}
.x10_c00280{left:-635.464613pt;}
.x9_c00280{left:-607.288373pt;}
.x6_c00280{left:-605.698533pt;}
.xb_c00280{left:-603.560933pt;}
.xc_c00280{left:-424.122773pt;}
.x11_c00280{left:-421.156853pt;}
.x7_c00280{left:-407.195653pt;}
.x12_c00280{left:-267.570293pt;}
.xd_c00280{left:-206.835733pt;}
.x8_c00280{left:-205.232533pt;}
.xa_c00280{left:-202.092933pt;}
.x0_c00280{left:0.000000pt;}
.x16_c00280{left:113.440000pt;}
.x15_c00280{left:141.840000pt;}
.x14_c00280{left:604.400000pt;}
.x13_c00280{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00281;src:url('chunks/assets/font_44ff64dad828209670c143fb.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00281;src:url('chunks/assets/font_014db5dd84c372fce671844e.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00281;src:url('chunks/assets/font_379204d74a454d8576898af7.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00281;src:url('chunks/assets/font_a3e2c9fe029ca3a688115c79.woff2')format("woff");}.ff5_c00281{font-family:ff5_c00281;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00281{vertical-align:-54.468720px;}
.v0_c00281{vertical-align:0.000000px;}
.ls6_c00281{letter-spacing:-0.360000px;}
.ls7_c00281{letter-spacing:-0.216000px;}
.ls5_c00281{letter-spacing:-0.072000px;}
.ls9_c00281{letter-spacing:-0.060120px;}
.ls4_c00281{letter-spacing:0.000000px;}
.ls0_c00281{letter-spacing:0.072000px;}
.ls1_c00281{letter-spacing:0.120240px;}
.ls8_c00281{letter-spacing:0.180360px;}
.ls3_c00281{letter-spacing:71.362440px;}
.ls2_c00281{letter-spacing:302.884560px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00281{word-spacing:-18.000000px;}
.ws6_c00281{word-spacing:-13.707360px;}
.ws7_c00281{word-spacing:-13.527000px;}
.ws1d_c00281{word-spacing:-1.082160px;}
.ws1c_c00281{word-spacing:-0.721440px;}
.ws1a_c00281{word-spacing:-0.432000px;}
.ws1e_c00281{word-spacing:-0.180360px;}
.ws1_c00281{word-spacing:-0.144000px;}
.ws1b_c00281{word-spacing:-0.120240px;}
.ws9_c00281{word-spacing:-0.072000px;}
.ws8_c00281{word-spacing:0.000000px;}
.wsa_c00281{word-spacing:0.072000px;}
.ws2_c00281{word-spacing:0.136800px;}
.ws16_c00281{word-spacing:0.216000px;}
.ws13_c00281{word-spacing:3.168000px;}
.ws14_c00281{word-spacing:3.240000px;}
.ws18_c00281{word-spacing:6.408000px;}
.ws19_c00281{word-spacing:6.480000px;}
.wsd_c00281{word-spacing:8.568000px;}
.wsc_c00281{word-spacing:8.640000px;}
.wsb_c00281{word-spacing:8.784000px;}
.ws3_c00281{word-spacing:9.144000px;}
.ws4_c00281{word-spacing:20.160000px;}
.ws11_c00281{word-spacing:20.448000px;}
.ws12_c00281{word-spacing:20.520000px;}
.wse_c00281{word-spacing:20.808000px;}
.wsf_c00281{word-spacing:21.240000px;}
.ws17_c00281{word-spacing:33.048000px;}
.ws5_c00281{word-spacing:33.120000px;}
.ws15_c00281{word-spacing:33.480000px;}
.ws10_c00281{word-spacing:40.320000px;}
._0_c00281{margin-left:-1.166400px;}
._2_c00281{width:1.008000px;}
._4_c00281{width:3.456000px;}
._1_c00281{width:8.784000px;}
._3_c00281{width:20.318400px;}
._5_c00281{width:33.912000px;}
.fc2_c00281{color:transparent;}
.fc1_c00281{color:rgb(0,0,0);}
.fc0_c00281{color:rgb(35,31,32);}
.fs1_c00281{font-size:60.120000px;}
.fs0_c00281{font-size:72.000000px;}
.y0_c00281{bottom:0.000000px;}
.y1_c00281{bottom:61.748550px;}
.ye_c00281{bottom:185.264400px;}
.yd_c00281{bottom:216.314400px;}
.yc_c00281{bottom:247.364400px;}
.yb_c00281{bottom:278.414400px;}
.ya_c00281{bottom:340.514400px;}
.y9_c00281{bottom:371.564400px;}
.y8_c00281{bottom:402.614400px;}
.y7_c00281{bottom:433.664400px;}
.y6_c00281{bottom:464.714400px;}
.y5_c00281{bottom:526.634400px;}
.y4_c00281{bottom:619.964400px;}
.y3_c00281{bottom:777.644400px;}
.y26_c00281{bottom:786.546690px;}
.y25_c00281{bottom:804.823170px;}
.y1d_c00281{bottom:824.317080px;}
.y15_c00281{bottom:858.420150px;}
.y1e_c00281{bottom:868.234740px;}
.y1b_c00281{bottom:873.329910px;}
.y18_c00281{bottom:873.344940px;}
.y1c_c00281{bottom:906.711540px;}
.y1f_c00281{bottom:912.152400px;}
.y11_c00281{bottom:931.976970px;}
.y20_c00281{bottom:956.070060px;}
.y17_c00281{bottom:962.938770px;}
.y16_c00281{bottom:980.283390px;}
.y10_c00281{bottom:986.220240px;}
.y21_c00281{bottom:999.987720px;}
.y1a_c00281{bottom:1006.405530px;}
.yf_c00281{bottom:1013.229150px;}
.y22_c00281{bottom:1043.905380px;}
.y14_c00281{bottom:1045.724010px;}
.y12_c00281{bottom:1053.840210px;}
.y19_c00281{bottom:1063.790070px;}
.y13_c00281{bottom:1084.802010px;}
.y23_c00281{bottom:1087.823040px;}
.y24_c00281{bottom:1131.740700px;}
.y2_c00281{bottom:1193.174400px;}
.h5_c00281{height:49.581387px;}
.h2_c00281{height:50.400000px;}
.h3_c00281{height:76.824000px;}
.h4_c00281{height:78.048000px;}
.h0_c00281{height:1262.835000px;}
.h1_c00281{height:1263.000000px;}
.w0_c00281{width:892.914000px;}
.w1_c00281{width:893.250000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:54.000000px;}
.x2_c00281{left:127.620000px;}
.x4_c00281{left:150.120000px;}
.x5_c00281{left:159.570000px;}
.xe_c00281{left:174.294870px;}
.xd_c00281{left:181.869990px;}
.x10_c00281{left:205.617390px;}
.xf_c00281{left:212.005140px;}
.x6_c00281{left:215.416950px;}
.xa_c00281{left:315.156030px;}
.x7_c00281{left:321.258210px;}
.x11_c00281{left:332.876400px;}
.x13_c00281{left:416.127570px;}
.x12_c00281{left:423.146580px;}
.xb_c00281{left:427.114500px;}
.x8_c00281{left:532.940730px;}
.x3_c00281{left:623.160000px;}
.x9_c00281{left:631.206870px;}
.xc_c00281{left:638.797020px;}
@media print{
.v1_c00281{vertical-align:-48.416640pt;}
.v0_c00281{vertical-align:0.000000pt;}
.ls6_c00281{letter-spacing:-0.320000pt;}
.ls7_c00281{letter-spacing:-0.192000pt;}
.ls5_c00281{letter-spacing:-0.064000pt;}
.ls9_c00281{letter-spacing:-0.053440pt;}
.ls4_c00281{letter-spacing:0.000000pt;}
.ls0_c00281{letter-spacing:0.064000pt;}
.ls1_c00281{letter-spacing:0.106880pt;}
.ls8_c00281{letter-spacing:0.160320pt;}
.ls3_c00281{letter-spacing:63.433280pt;}
.ls2_c00281{letter-spacing:269.230720pt;}
.ws0_c00281{word-spacing:-16.000000pt;}
.ws6_c00281{word-spacing:-12.184320pt;}
.ws7_c00281{word-spacing:-12.024000pt;}
.ws1d_c00281{word-spacing:-0.961920pt;}
.ws1c_c00281{word-spacing:-0.641280pt;}
.ws1a_c00281{word-spacing:-0.384000pt;}
.ws1e_c00281{word-spacing:-0.160320pt;}
.ws1_c00281{word-spacing:-0.128000pt;}
.ws1b_c00281{word-spacing:-0.106880pt;}
.ws9_c00281{word-spacing:-0.064000pt;}
.ws8_c00281{word-spacing:0.000000pt;}
.wsa_c00281{word-spacing:0.064000pt;}
.ws2_c00281{word-spacing:0.121600pt;}
.ws16_c00281{word-spacing:0.192000pt;}
.ws13_c00281{word-spacing:2.816000pt;}
.ws14_c00281{word-spacing:2.880000pt;}
.ws18_c00281{word-spacing:5.696000pt;}
.ws19_c00281{word-spacing:5.760000pt;}
.wsd_c00281{word-spacing:7.616000pt;}
.wsc_c00281{word-spacing:7.680000pt;}
.wsb_c00281{word-spacing:7.808000pt;}
.ws3_c00281{word-spacing:8.128000pt;}
.ws4_c00281{word-spacing:17.920000pt;}
.ws11_c00281{word-spacing:18.176000pt;}
.ws12_c00281{word-spacing:18.240000pt;}
.wse_c00281{word-spacing:18.496000pt;}
.wsf_c00281{word-spacing:18.880000pt;}
.ws17_c00281{word-spacing:29.376000pt;}
.ws5_c00281{word-spacing:29.440000pt;}
.ws15_c00281{word-spacing:29.760000pt;}
.ws10_c00281{word-spacing:35.840000pt;}
._0_c00281{margin-left:-1.036800pt;}
._2_c00281{width:0.896000pt;}
._4_c00281{width:3.072000pt;}
._1_c00281{width:7.808000pt;}
._3_c00281{width:18.060800pt;}
._5_c00281{width:30.144000pt;}
.fs1_c00281{font-size:53.440000pt;}
.fs0_c00281{font-size:64.000000pt;}
.y0_c00281{bottom:0.000000pt;}
.y1_c00281{bottom:54.887600pt;}
.ye_c00281{bottom:164.679467pt;}
.yd_c00281{bottom:192.279467pt;}
.yc_c00281{bottom:219.879467pt;}
.yb_c00281{bottom:247.479467pt;}
.ya_c00281{bottom:302.679467pt;}
.y9_c00281{bottom:330.279467pt;}
.y8_c00281{bottom:357.879467pt;}
.y7_c00281{bottom:385.479467pt;}
.y6_c00281{bottom:413.079467pt;}
.y5_c00281{bottom:468.119467pt;}
.y4_c00281{bottom:551.079467pt;}
.y3_c00281{bottom:691.239467pt;}
.y26_c00281{bottom:699.152613pt;}
.y25_c00281{bottom:715.398373pt;}
.y1d_c00281{bottom:732.726293pt;}
.y15_c00281{bottom:763.040133pt;}
.y1e_c00281{bottom:771.764213pt;}
.y1b_c00281{bottom:776.293253pt;}
.y18_c00281{bottom:776.306613pt;}
.y1c_c00281{bottom:805.965813pt;}
.y1f_c00281{bottom:810.802133pt;}
.y11_c00281{bottom:828.423973pt;}
.y20_c00281{bottom:849.840053pt;}
.y17_c00281{bottom:855.945573pt;}
.y16_c00281{bottom:871.363013pt;}
.y10_c00281{bottom:876.640213pt;}
.y21_c00281{bottom:888.877973pt;}
.y1a_c00281{bottom:894.582693pt;}
.yf_c00281{bottom:900.648133pt;}
.y22_c00281{bottom:927.915893pt;}
.y14_c00281{bottom:929.532453pt;}
.y12_c00281{bottom:936.746853pt;}
.y19_c00281{bottom:945.591173pt;}
.y13_c00281{bottom:964.268453pt;}
.y23_c00281{bottom:966.953813pt;}
.y24_c00281{bottom:1005.991733pt;}
.y2_c00281{bottom:1060.599467pt;}
.h5_c00281{height:44.072344pt;}
.h2_c00281{height:44.800000pt;}
.h3_c00281{height:68.288000pt;}
.h4_c00281{height:69.376000pt;}
.h0_c00281{height:1122.520000pt;}
.h1_c00281{height:1122.666667pt;}
.w0_c00281{width:793.701333pt;}
.w1_c00281{width:794.000000pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:48.000000pt;}
.x2_c00281{left:113.440000pt;}
.x4_c00281{left:133.440000pt;}
.x5_c00281{left:141.840000pt;}
.xe_c00281{left:154.928773pt;}
.xd_c00281{left:161.662213pt;}
.x10_c00281{left:182.771013pt;}
.xf_c00281{left:188.449013pt;}
.x6_c00281{left:191.481733pt;}
.xa_c00281{left:280.138693pt;}
.x7_c00281{left:285.562853pt;}
.x11_c00281{left:295.890133pt;}
.x13_c00281{left:369.891173pt;}
.x12_c00281{left:376.130293pt;}
.xb_c00281{left:379.657333pt;}
.x8_c00281{left:473.725093pt;}
.x3_c00281{left:553.920000pt;}
.x9_c00281{left:561.072773pt;}
.xc_c00281{left:567.819573pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00282;src:url('chunks/assets/font_c458a77e9afc1f53f654f23f.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00282;src:url('chunks/assets/font_f1a3b63ad7aad4c277315794.woff2')format("woff");}.ff3_c00282{font-family:ff3_c00282;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00282;src:url('chunks/assets/font_935d79a73f78ac87b671a613.woff2')format("woff");}.ff4_c00282{font-family:ff4_c00282;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00282;src:url('chunks/assets/font_ca41e45596ccd6dc94ba06be.woff2')format("woff");}.ff5_c00282{font-family:ff5_c00282;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00282;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00282{font-family:ff6_c00282;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00282;src:url('chunks/assets/font_c45013f55edf4a1e15094919.woff2')format("woff");}.ff7_c00282{font-family:ff7_c00282;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00282;src:url('chunks/assets/font_0f166a96616ee3d7800aec29.woff2')format("woff");}.ff8_c00282{font-family:ff8_c00282;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00282;src:url('chunks/assets/font_f6e2e3beb57a98412c1c24c2.woff2')format("woff");}.ff9_c00282{font-family:ff9_c00282;line-height:1.592000;font-style:normal;font-weight: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_c00282;src:url('chunks/assets/font_ca41e45596ccd6dc94ba06be.woff2')format("woff");}.ffa_c00282{font-family:ffa_c00282;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00282{vertical-align:-54.468720px;}
.v0_c00282{vertical-align:0.000000px;}
.ls7_c00282{letter-spacing:-0.360000px;}
.ls8_c00282{letter-spacing:-0.216000px;}
.ls6_c00282{letter-spacing:-0.072000px;}
.lsa_c00282{letter-spacing:-0.060120px;}
.ls5_c00282{letter-spacing:0.000000px;}
.ls0_c00282{letter-spacing:0.072000px;}
.ls1_c00282{letter-spacing:0.120240px;}
.lsb_c00282{letter-spacing:0.144000px;}
.ls9_c00282{letter-spacing:0.180360px;}
.ls4_c00282{letter-spacing:34.920000px;}
.ls3_c00282{letter-spacing:71.362440px;}
.ls2_c00282{letter-spacing:302.884560px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00282{word-spacing:-18.072000px;}
.ws0_c00282{word-spacing:-18.000000px;}
.ws7_c00282{word-spacing:-13.707360px;}
.ws8_c00282{word-spacing:-13.527000px;}
.ws2f_c00282{word-spacing:-1.803600px;}
.ws2e_c00282{word-spacing:-1.442880px;}
.ws1f_c00282{word-spacing:-1.082160px;}
.ws1e_c00282{word-spacing:-0.721440px;}
.ws1c_c00282{word-spacing:-0.432000px;}
.ws20_c00282{word-spacing:-0.180360px;}
.ws2_c00282{word-spacing:-0.144000px;}
.ws1d_c00282{word-spacing:-0.120240px;}
.wsb_c00282{word-spacing:-0.072000px;}
.ws9_c00282{word-spacing:0.000000px;}
.wsc_c00282{word-spacing:0.072000px;}
.ws3_c00282{word-spacing:0.136800px;}
.ws18_c00282{word-spacing:0.216000px;}
.ws2d_c00282{word-spacing:1.368000px;}
.ws15_c00282{word-spacing:3.168000px;}
.ws16_c00282{word-spacing:3.240000px;}
.ws25_c00282{word-spacing:3.960000px;}
.ws24_c00282{word-spacing:4.320000px;}
.ws2c_c00282{word-spacing:5.256000px;}
.wsa_c00282{word-spacing:5.400000px;}
.ws1a_c00282{word-spacing:6.408000px;}
.ws1b_c00282{word-spacing:6.480000px;}
.ws2b_c00282{word-spacing:7.560000px;}
.wsf_c00282{word-spacing:8.568000px;}
.wse_c00282{word-spacing:8.640000px;}
.wsd_c00282{word-spacing:8.784000px;}
.ws28_c00282{word-spacing:9.000000px;}
.ws4_c00282{word-spacing:9.144000px;}
.ws22_c00282{word-spacing:16.488000px;}
.ws21_c00282{word-spacing:16.560000px;}
.ws29_c00282{word-spacing:16.776000px;}
.ws2a_c00282{word-spacing:16.848000px;}
.ws23_c00282{word-spacing:16.920000px;}
.ws26_c00282{word-spacing:18.720000px;}
.ws27_c00282{word-spacing:19.080000px;}
.ws5_c00282{word-spacing:20.160000px;}
.ws13_c00282{word-spacing:20.448000px;}
.ws14_c00282{word-spacing:20.520000px;}
.ws10_c00282{word-spacing:20.808000px;}
.ws11_c00282{word-spacing:21.240000px;}
.ws19_c00282{word-spacing:33.048000px;}
.ws6_c00282{word-spacing:33.120000px;}
.ws17_c00282{word-spacing:33.480000px;}
.ws12_c00282{word-spacing:40.320000px;}
._0_c00282{margin-left:-1.166400px;}
._2_c00282{width:1.008000px;}
._4_c00282{width:3.456000px;}
._1_c00282{width:8.784000px;}
._3_c00282{width:20.318400px;}
._5_c00282{width:33.912000px;}
.fc2_c00282{color:transparent;}
.fc1_c00282{color:rgb(0,0,0);}
.fc0_c00282{color:rgb(35,31,32);}
.fs1_c00282{font-size:60.120000px;}
.fs0_c00282{font-size:72.000000px;}
.y0_c00282{bottom:0.000000px;}
.y45_c00282{bottom:5.932200px;}
.y1_c00282{bottom:61.748550px;}
.ye_c00282{bottom:185.264400px;}
.yd_c00282{bottom:216.314400px;}
.yc_c00282{bottom:247.364400px;}
.yb_c00282{bottom:278.414400px;}
.y33_c00282{bottom:312.074400px;}
.ya_c00282{bottom:340.514400px;}
.y9_c00282{bottom:371.564400px;}
.y8_c00282{bottom:402.614400px;}
.y7_c00282{bottom:433.664400px;}
.y6_c00282{bottom:464.714400px;}
.y44_c00282{bottom:469.305000px;}
.y3a_c00282{bottom:494.724420px;}
.y36_c00282{bottom:507.695310px;}
.y34_c00282{bottom:522.544950px;}
.y3b_c00282{bottom:523.702260px;}
.y5_c00282{bottom:526.634400px;}
.y3c_c00282{bottom:552.680100px;}
.y38_c00282{bottom:559.744200px;}
.y3d_c00282{bottom:581.657940px;}
.y3e_c00282{bottom:610.635780px;}
.y4_c00282{bottom:619.964400px;}
.y3f_c00282{bottom:639.613620px;}
.y40_c00282{bottom:668.591460px;}
.y39_c00282{bottom:669.643560px;}
.y37_c00282{bottom:689.768730px;}
.y41_c00282{bottom:697.569300px;}
.y35_c00282{bottom:720.084240px;}
.y42_c00282{bottom:726.547140px;}
.y43_c00282{bottom:755.524980px;}
.y28_c00282{bottom:777.644400px;}
.y3_c00282{bottom:777.644550px;}
.y26_c00282{bottom:786.546690px;}
.y25_c00282{bottom:804.823170px;}
.y1d_c00282{bottom:824.317080px;}
.y32_c00282{bottom:829.484400px;}
.y15_c00282{bottom:858.420150px;}
.y31_c00282{bottom:860.534400px;}
.y1e_c00282{bottom:868.234740px;}
.y1b_c00282{bottom:873.329910px;}
.y18_c00282{bottom:873.344940px;}
.y30_c00282{bottom:891.584400px;}
.y1c_c00282{bottom:906.711540px;}
.y1f_c00282{bottom:912.152400px;}
.y2f_c00282{bottom:922.634400px;}
.y11_c00282{bottom:931.976970px;}
.y2e_c00282{bottom:953.684400px;}
.y20_c00282{bottom:956.070060px;}
.y17_c00282{bottom:962.938770px;}
.y16_c00282{bottom:980.283390px;}
.y2d_c00282{bottom:984.734400px;}
.y10_c00282{bottom:986.220240px;}
.y21_c00282{bottom:999.987720px;}
.y1a_c00282{bottom:1006.405530px;}
.yf_c00282{bottom:1013.229150px;}
.y22_c00282{bottom:1043.905380px;}
.y14_c00282{bottom:1045.724010px;}
.y2c_c00282{bottom:1046.834400px;}
.y12_c00282{bottom:1053.840210px;}
.y19_c00282{bottom:1063.790070px;}
.y2b_c00282{bottom:1077.884400px;}
.y13_c00282{bottom:1084.802010px;}
.y23_c00282{bottom:1087.823040px;}
.y2a_c00282{bottom:1108.934400px;}
.y24_c00282{bottom:1131.740700px;}
.y29_c00282{bottom:1139.984400px;}
.y27_c00282{bottom:1193.174400px;}
.y2_c00282{bottom:1193.174550px;}
.h6_c00282{height:20.250000px;}
.h5_c00282{height:49.581387px;}
.h2_c00282{height:50.400000px;}
.h3_c00282{height:76.824000px;}
.h4_c00282{height:78.048000px;}
.h0_c00282{height:1262.835000px;}
.h1_c00282{height:1263.000000px;}
.w2_c00282{width:0.000000px;}
.w3_c00282{width:0.066000px;}
.w4_c00282{width:216.810000px;}
.w5_c00282{width:241.020000px;}
.w0_c00282{width:892.914000px;}
.w1_c00282{width:893.250000px;}
.x1_c00282{left:-838.913400px;}
.x2_c00282{left:-765.293400px;}
.x4_c00282{left:-742.793400px;}
.x5_c00282{left:-733.343400px;}
.xe_c00282{left:-718.618530px;}
.xd_c00282{left:-711.043410px;}
.x10_c00282{left:-687.296010px;}
.xf_c00282{left:-680.908260px;}
.x6_c00282{left:-677.496450px;}
.xa_c00282{left:-577.757370px;}
.x7_c00282{left:-571.655190px;}
.x11_c00282{left:-560.037000px;}
.x13_c00282{left:-476.785830px;}
.x12_c00282{left:-469.766820px;}
.xb_c00282{left:-465.798900px;}
.x8_c00282{left:-359.972670px;}
.x3_c00282{left:-269.753400px;}
.x9_c00282{left:-261.706530px;}
.xc_c00282{left:-254.116380px;}
.x0_c00282{left:0.000000px;}
.x20_c00282{left:9.095250px;}
.x17_c00282{left:127.620000px;}
.x1e_c00282{left:134.343870px;}
.x1d_c00282{left:141.918990px;}
.x16_c00282{left:159.570000px;}
.x1f_c00282{left:197.190000px;}
.x1b_c00282{left:257.078850px;}
.x18_c00282{left:264.669000px;}
.x21_c00282{left:469.350000px;}
.x1a_c00282{left:598.259850px;}
.x1c_c00282{left:602.813940px;}
.x19_c00282{left:610.404090px;}
.x15_c00282{left:679.950000px;}
.x14_c00282{left:804.366150px;}
@media print{
.v1_c00282{vertical-align:-48.416640pt;}
.v0_c00282{vertical-align:0.000000pt;}
.ls7_c00282{letter-spacing:-0.320000pt;}
.ls8_c00282{letter-spacing:-0.192000pt;}
.ls6_c00282{letter-spacing:-0.064000pt;}
.lsa_c00282{letter-spacing:-0.053440pt;}
.ls5_c00282{letter-spacing:0.000000pt;}
.ls0_c00282{letter-spacing:0.064000pt;}
.ls1_c00282{letter-spacing:0.106880pt;}
.lsb_c00282{letter-spacing:0.128000pt;}
.ls9_c00282{letter-spacing:0.160320pt;}
.ls4_c00282{letter-spacing:31.040000pt;}
.ls3_c00282{letter-spacing:63.433280pt;}
.ls2_c00282{letter-spacing:269.230720pt;}
.ws1_c00282{word-spacing:-16.064000pt;}
.ws0_c00282{word-spacing:-16.000000pt;}
.ws7_c00282{word-spacing:-12.184320pt;}
.ws8_c00282{word-spacing:-12.024000pt;}
.ws2f_c00282{word-spacing:-1.603200pt;}
.ws2e_c00282{word-spacing:-1.282560pt;}
.ws1f_c00282{word-spacing:-0.961920pt;}
.ws1e_c00282{word-spacing:-0.641280pt;}
.ws1c_c00282{word-spacing:-0.384000pt;}
.ws20_c00282{word-spacing:-0.160320pt;}
.ws2_c00282{word-spacing:-0.128000pt;}
.ws1d_c00282{word-spacing:-0.106880pt;}
.wsb_c00282{word-spacing:-0.064000pt;}
.ws9_c00282{word-spacing:0.000000pt;}
.wsc_c00282{word-spacing:0.064000pt;}
.ws3_c00282{word-spacing:0.121600pt;}
.ws18_c00282{word-spacing:0.192000pt;}
.ws2d_c00282{word-spacing:1.216000pt;}
.ws15_c00282{word-spacing:2.816000pt;}
.ws16_c00282{word-spacing:2.880000pt;}
.ws25_c00282{word-spacing:3.520000pt;}
.ws24_c00282{word-spacing:3.840000pt;}
.ws2c_c00282{word-spacing:4.672000pt;}
.wsa_c00282{word-spacing:4.800000pt;}
.ws1a_c00282{word-spacing:5.696000pt;}
.ws1b_c00282{word-spacing:5.760000pt;}
.ws2b_c00282{word-spacing:6.720000pt;}
.wsf_c00282{word-spacing:7.616000pt;}
.wse_c00282{word-spacing:7.680000pt;}
.wsd_c00282{word-spacing:7.808000pt;}
.ws28_c00282{word-spacing:8.000000pt;}
.ws4_c00282{word-spacing:8.128000pt;}
.ws22_c00282{word-spacing:14.656000pt;}
.ws21_c00282{word-spacing:14.720000pt;}
.ws29_c00282{word-spacing:14.912000pt;}
.ws2a_c00282{word-spacing:14.976000pt;}
.ws23_c00282{word-spacing:15.040000pt;}
.ws26_c00282{word-spacing:16.640000pt;}
.ws27_c00282{word-spacing:16.960000pt;}
.ws5_c00282{word-spacing:17.920000pt;}
.ws13_c00282{word-spacing:18.176000pt;}
.ws14_c00282{word-spacing:18.240000pt;}
.ws10_c00282{word-spacing:18.496000pt;}
.ws11_c00282{word-spacing:18.880000pt;}
.ws19_c00282{word-spacing:29.376000pt;}
.ws6_c00282{word-spacing:29.440000pt;}
.ws17_c00282{word-spacing:29.760000pt;}
.ws12_c00282{word-spacing:35.840000pt;}
._0_c00282{margin-left:-1.036800pt;}
._2_c00282{width:0.896000pt;}
._4_c00282{width:3.072000pt;}
._1_c00282{width:7.808000pt;}
._3_c00282{width:18.060800pt;}
._5_c00282{width:30.144000pt;}
.fs1_c00282{font-size:53.440000pt;}
.fs0_c00282{font-size:64.000000pt;}
.y0_c00282{bottom:0.000000pt;}
.y45_c00282{bottom:5.273067pt;}
.y1_c00282{bottom:54.887600pt;}
.ye_c00282{bottom:164.679467pt;}
.yd_c00282{bottom:192.279467pt;}
.yc_c00282{bottom:219.879467pt;}
.yb_c00282{bottom:247.479467pt;}
.y33_c00282{bottom:277.399467pt;}
.ya_c00282{bottom:302.679467pt;}
.y9_c00282{bottom:330.279467pt;}
.y8_c00282{bottom:357.879467pt;}
.y7_c00282{bottom:385.479467pt;}
.y6_c00282{bottom:413.079467pt;}
.y44_c00282{bottom:417.160000pt;}
.y3a_c00282{bottom:439.755040pt;}
.y36_c00282{bottom:451.284720pt;}
.y34_c00282{bottom:464.484400pt;}
.y3b_c00282{bottom:465.513120pt;}
.y5_c00282{bottom:468.119467pt;}
.y3c_c00282{bottom:491.271200pt;}
.y38_c00282{bottom:497.550400pt;}
.y3d_c00282{bottom:517.029280pt;}
.y3e_c00282{bottom:542.787360pt;}
.y4_c00282{bottom:551.079467pt;}
.y3f_c00282{bottom:568.545440pt;}
.y40_c00282{bottom:594.303520pt;}
.y39_c00282{bottom:595.238720pt;}
.y37_c00282{bottom:613.127760pt;}
.y41_c00282{bottom:620.061600pt;}
.y35_c00282{bottom:640.074880pt;}
.y42_c00282{bottom:645.819680pt;}
.y43_c00282{bottom:671.577760pt;}
.y28_c00282{bottom:691.239467pt;}
.y3_c00282{bottom:691.239600pt;}
.y26_c00282{bottom:699.152613pt;}
.y25_c00282{bottom:715.398373pt;}
.y1d_c00282{bottom:732.726293pt;}
.y32_c00282{bottom:737.319467pt;}
.y15_c00282{bottom:763.040133pt;}
.y31_c00282{bottom:764.919467pt;}
.y1e_c00282{bottom:771.764213pt;}
.y1b_c00282{bottom:776.293253pt;}
.y18_c00282{bottom:776.306613pt;}
.y30_c00282{bottom:792.519467pt;}
.y1c_c00282{bottom:805.965813pt;}
.y1f_c00282{bottom:810.802133pt;}
.y2f_c00282{bottom:820.119467pt;}
.y11_c00282{bottom:828.423973pt;}
.y2e_c00282{bottom:847.719467pt;}
.y20_c00282{bottom:849.840053pt;}
.y17_c00282{bottom:855.945573pt;}
.y16_c00282{bottom:871.363013pt;}
.y2d_c00282{bottom:875.319467pt;}
.y10_c00282{bottom:876.640213pt;}
.y21_c00282{bottom:888.877973pt;}
.y1a_c00282{bottom:894.582693pt;}
.yf_c00282{bottom:900.648133pt;}
.y22_c00282{bottom:927.915893pt;}
.y14_c00282{bottom:929.532453pt;}
.y2c_c00282{bottom:930.519467pt;}
.y12_c00282{bottom:936.746853pt;}
.y19_c00282{bottom:945.591173pt;}
.y2b_c00282{bottom:958.119467pt;}
.y13_c00282{bottom:964.268453pt;}
.y23_c00282{bottom:966.953813pt;}
.y2a_c00282{bottom:985.719467pt;}
.y24_c00282{bottom:1005.991733pt;}
.y29_c00282{bottom:1013.319467pt;}
.y27_c00282{bottom:1060.599467pt;}
.y2_c00282{bottom:1060.599600pt;}
.h6_c00282{height:18.000000pt;}
.h5_c00282{height:44.072344pt;}
.h2_c00282{height:44.800000pt;}
.h3_c00282{height:68.288000pt;}
.h4_c00282{height:69.376000pt;}
.h0_c00282{height:1122.520000pt;}
.h1_c00282{height:1122.666667pt;}
.w2_c00282{width:0.000000pt;}
.w3_c00282{width:0.058667pt;}
.w4_c00282{width:192.720000pt;}
.w5_c00282{width:214.240000pt;}
.w0_c00282{width:793.701333pt;}
.w1_c00282{width:794.000000pt;}
.x1_c00282{left:-745.700800pt;}
.x2_c00282{left:-680.260800pt;}
.x4_c00282{left:-660.260800pt;}
.x5_c00282{left:-651.860800pt;}
.xe_c00282{left:-638.772027pt;}
.xd_c00282{left:-632.038587pt;}
.x10_c00282{left:-610.929787pt;}
.xf_c00282{left:-605.251787pt;}
.x6_c00282{left:-602.219067pt;}
.xa_c00282{left:-513.562107pt;}
.x7_c00282{left:-508.137947pt;}
.x11_c00282{left:-497.810667pt;}
.x13_c00282{left:-423.809627pt;}
.x12_c00282{left:-417.570507pt;}
.xb_c00282{left:-414.043467pt;}
.x8_c00282{left:-319.975707pt;}
.x3_c00282{left:-239.780800pt;}
.x9_c00282{left:-232.628027pt;}
.xc_c00282{left:-225.881227pt;}
.x0_c00282{left:0.000000pt;}
.x20_c00282{left:8.084667pt;}
.x17_c00282{left:113.440000pt;}
.x1e_c00282{left:119.416773pt;}
.x1d_c00282{left:126.150213pt;}
.x16_c00282{left:141.840000pt;}
.x1f_c00282{left:175.280000pt;}
.x1b_c00282{left:228.514533pt;}
.x18_c00282{left:235.261333pt;}
.x21_c00282{left:417.200000pt;}
.x1a_c00282{left:531.786533pt;}
.x1c_c00282{left:535.834613pt;}
.x19_c00282{left:542.581413pt;}
.x15_c00282{left:604.400000pt;}
.x14_c00282{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00283;src:url('chunks/assets/font_7a15fe9a2e17e4f0d3d5b8f1.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00283;src:url('chunks/assets/font_cba27164aa43fd1d59132e56.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00283;src:url('chunks/assets/font_2770ed5f97a24c97d73e6ace.woff2')format("woff");}.ff4_c00283{font-family:ff4_c00283;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls15_c00283{letter-spacing:-0.240480px;}
.ls16_c00283{letter-spacing:-0.180360px;}
.ls13_c00283{letter-spacing:-0.120240px;}
.ls12_c00283{letter-spacing:-0.060120px;}
.ls11_c00283{letter-spacing:0.000000px;}
.ls0_c00283{letter-spacing:0.072000px;}
.ls5_c00283{letter-spacing:0.092880px;}
.lsa_c00283{letter-spacing:0.120240px;}
.ls14_c00283{letter-spacing:0.180360px;}
.lse_c00283{letter-spacing:147.714840px;}
.ls10_c00283{letter-spacing:155.590560px;}
.lsd_c00283{letter-spacing:162.444240px;}
.ls1_c00283{letter-spacing:179.758800px;}
.ls7_c00283{letter-spacing:185.830920px;}
.ls9_c00283{letter-spacing:188.716680px;}
.lsc_c00283{letter-spacing:220.399920px;}
.ls2_c00283{letter-spacing:224.728560px;}
.ls8_c00283{letter-spacing:231.942960px;}
.lsb_c00283{letter-spacing:265.429800px;}
.lsf_c00283{letter-spacing:356.511600px;}
.ls6_c00283{letter-spacing:428.835960px;}
.ls3_c00283{letter-spacing:438.214680px;}
.ls4_c00283{letter-spacing:471.701520px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00283{word-spacing:-18.000000px;}
.ws1_c00283{word-spacing:-13.707360px;}
.ws2_c00283{word-spacing:-13.527000px;}
.ws3_c00283{word-spacing:-13.466880px;}
.ws4_c00283{word-spacing:-13.346640px;}
.ws9_c00283{word-spacing:-0.420840px;}
.wsd_c00283{word-spacing:-0.360720px;}
.ws8_c00283{word-spacing:-0.240480px;}
.ws7_c00283{word-spacing:-0.180360px;}
.wsb_c00283{word-spacing:-0.120240px;}
.ws6_c00283{word-spacing:-0.072000px;}
.wsc_c00283{word-spacing:-0.060120px;}
.ws5_c00283{word-spacing:0.000000px;}
.wsa_c00283{word-spacing:0.060120px;}
.wsf_c00283{word-spacing:0.120240px;}
.ws10_c00283{word-spacing:0.180360px;}
.wse_c00283{word-spacing:0.360720px;}
._0_c00283{margin-left:-1.008000px;}
._15_c00283{width:1.022040px;}
._9_c00283{width:185.590440px;}
._a_c00283{width:218.896920px;}
._4_c00283{width:220.520160px;}
._2_c00283{width:261.582120px;}
._19_c00283{width:262.710360px;}
._d_c00283{width:278.115120px;}
._e_c00283{width:279.558000px;}
._3_c00283{width:295.429680px;}
._6_c00283{width:296.511840px;}
._f_c00283{width:311.241240px;}
._10_c00283{width:313.044840px;}
._16_c00283{width:318.006720px;}
._5_c00283{width:319.028760px;}
._1a_c00283{width:350.184960px;}
._c_c00283{width:381.631680px;}
._14_c00283{width:388.976400px;}
._11_c00283{width:393.665760px;}
._18_c00283{width:395.769960px;}
._1b_c00283{width:399.918240px;}
._7_c00283{width:401.046480px;}
._13_c00283{width:412.122600px;}
._12_c00283{width:417.713760px;}
._1_c00283{width:422.749800px;}
._8_c00283{width:456.417000px;}
._17_c00283{width:466.637400px;}
._b_c00283{width:470.244600px;}
.fc1_c00283{color:rgb(0,0,0);}
.fc0_c00283{color:rgb(35,31,32);}
.fs1_c00283{font-size:60.120000px;}
.fs0_c00283{font-size:72.000000px;}
.y0_c00283{bottom:0.000000px;}
.y59_c00283{bottom:4.049250px;}
.y7_c00283{bottom:4.049400px;}
.y5c_c00283{bottom:4.050900px;}
.y13_c00283{bottom:4.139250px;}
.y4e_c00283{bottom:4.139400px;}
.yd_c00283{bottom:4.140900px;}
.y36_c00283{bottom:4.142400px;}
.y1e_c00283{bottom:22.320750px;}
.y22_c00283{bottom:22.409400px;}
.y35_c00283{bottom:22.412400px;}
.y1_c00283{bottom:61.748550px;}
.y51_c00283{bottom:113.939400px;}
.y50_c00283{bottom:127.755000px;}
.y56_c00283{bottom:150.138120px;}
.y5b_c00283{bottom:164.383500px;}
.y55_c00283{bottom:168.414600px;}
.y54_c00283{bottom:186.781260px;}
.y5a_c00283{bottom:186.794400px;}
.y58_c00283{bottom:201.015000px;}
.y53_c00283{bottom:205.057740px;}
.y52_c00283{bottom:223.424400px;}
.y57_c00283{bottom:237.645000px;}
.y49_c00283{bottom:256.635000px;}
.y4f_c00283{bottom:274.995000px;}
.y48_c00283{bottom:279.011640px;}
.y4d_c00283{bottom:293.265000px;}
.y47_c00283{bottom:297.378300px;}
.y4c_c00283{bottom:311.625000px;}
.y46_c00283{bottom:315.654780px;}
.y4a_c00283{bottom:329.892000px;}
.y45_c00283{bottom:334.021440px;}
.y4b_c00283{bottom:334.034400px;}
.y44_c00283{bottom:352.297920px;}
.y43_c00283{bottom:370.574400px;}
.y42_c00283{bottom:393.165000px;}
.y41_c00283{bottom:423.854250px;}
.y40_c00283{bottom:450.488010px;}
.y3f_c00283{bottom:477.121170px;}
.y3b_c00283{bottom:477.121530px;}
.y3a_c00283{bottom:495.398010px;}
.y3e_c00283{bottom:502.957740px;}
.y39_c00283{bottom:513.764670px;}
.y3d_c00283{bottom:521.324400px;}
.y38_c00283{bottom:532.041150px;}
.y3c_c00283{bottom:535.545000px;}
.y2f_c00283{bottom:566.201820px;}
.y37_c00283{bottom:566.234400px;}
.y2e_c00283{bottom:584.568480px;}
.y34_c00283{bottom:588.012000px;}
.y2d_c00283{bottom:602.844960px;}
.y2c_c00283{bottom:621.121440px;}
.y32_c00283{bottom:624.645000px;}
.y33_c00283{bottom:628.694250px;}
.y2b_c00283{bottom:639.488100px;}
.y30_c00283{bottom:661.275000px;}
.y31_c00283{bottom:665.324400px;}
.y27_c00283{bottom:702.757770px;}
.y2a_c00283{bottom:702.764400px;}
.y26_c00283{bottom:721.034250px;}
.y29_c00283{bottom:724.545000px;}
.y28_c00283{bottom:742.815000px;}
.y25_c00283{bottom:765.944250px;}
.y1b_c00283{bottom:784.985100px;}
.y24_c00283{bottom:785.017650px;}
.y1a_c00283{bottom:803.351760px;}
.y21_c00283{bottom:806.805000px;}
.y23_c00283{bottom:810.944400px;}
.y19_c00283{bottom:821.628240px;}
.y18_c00283{bottom:839.904720px;}
.y20_c00283{bottom:843.433500px;}
.y17_c00283{bottom:858.271380px;}
.y1d_c00283{bottom:861.793500px;}
.y1f_c00283{bottom:865.844400px;}
.y16_c00283{bottom:876.547860px;}
.y1c_c00283{bottom:902.429520px;}
.y11_c00283{bottom:921.541260px;}
.y15_c00283{bottom:921.547680px;}
.y10_c00283{bottom:939.817740px;}
.y14_c00283{bottom:947.384250px;}
.yf_c00283{bottom:958.184400px;}
.y12_c00283{bottom:961.605000px;}
.ye_c00283{bottom:980.685000px;}
.ya_c00283{bottom:984.721110px;}
.yc_c00283{bottom:998.953500px;}
.y9_c00283{bottom:1003.087770px;}
.yb_c00283{bottom:1020.375000px;}
.y8_c00283{bottom:1021.364250px;}
.y6_c00283{bottom:1041.255000px;}
.y5_c00283{bottom:1071.944400px;}
.y4_c00283{bottom:1119.194400px;}
.y3_c00283{bottom:1139.984400px;}
.y2_c00283{bottom:1193.174400px;}
.h9_c00283{height:18.270000px;}
.hd_c00283{height:18.271500px;}
.h13_c00283{height:18.273000px;}
.ha_c00283{height:18.360000px;}
.h7_c00283{height:20.068500px;}
.h8_c00283{height:21.420000px;}
.h10_c00283{height:25.830000px;}
.h6_c00283{height:25.831500px;}
.hb_c00283{height:36.540000px;}
.hc_c00283{height:36.630000px;}
.he_c00283{height:36.631500px;}
.hf_c00283{height:36.633000px;}
.h5_c00283{height:49.581387px;}
.h2_c00283{height:50.400000px;}
.h3_c00283{height:76.824000px;}
.h4_c00283{height:78.048000px;}
.h12_c00283{height:128.160000px;}
.h11_c00283{height:135.810000px;}
.h0_c00283{height:1262.835000px;}
.h1_c00283{height:1263.000000px;}
.w4_c00283{width:76.410000px;}
.w3_c00283{width:76.590000px;}
.w5_c00283{width:76.593000px;}
.w6_c00283{width:84.690000px;}
.w7_c00283{width:85.050000px;}
.w8_c00283{width:113.490000px;}
.wa_c00283{width:126.540000px;}
.w2_c00283{width:239.940000px;}
.w9_c00283{width:316.527000px;}
.w0_c00283{width:892.914000px;}
.w1_c00283{width:893.250000px;}
.x0_c00283{left:0.000000px;}
.x5_c00283{left:5.220000px;}
.x13_c00283{left:37.080000px;}
.xe_c00283{left:44.640000px;}
.xf_c00283{left:52.920000px;}
.x1_c00283{left:54.000000px;}
.x12_c00283{left:56.160000px;}
.xd_c00283{left:63.810000px;}
.x10_c00283{left:71.910000px;}
.x4_c00283{left:126.180000px;}
.x2_c00283{left:127.620000px;}
.x3_c00283{left:131.400000px;}
.xc_c00283{left:252.630000px;}
.x11_c00283{left:257.940000px;}
.x6_c00283{left:366.120000px;}
.x7_c00283{left:442.710000px;}
.x8_c00283{left:519.120000px;}
.x9_c00283{left:595.710000px;}
.xa_c00283{left:680.400000px;}
.xb_c00283{left:765.450000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls15_c00283{letter-spacing:-0.213760pt;}
.ls16_c00283{letter-spacing:-0.160320pt;}
.ls13_c00283{letter-spacing:-0.106880pt;}
.ls12_c00283{letter-spacing:-0.053440pt;}
.ls11_c00283{letter-spacing:0.000000pt;}
.ls0_c00283{letter-spacing:0.064000pt;}
.ls5_c00283{letter-spacing:0.082560pt;}
.lsa_c00283{letter-spacing:0.106880pt;}
.ls14_c00283{letter-spacing:0.160320pt;}
.lse_c00283{letter-spacing:131.302080pt;}
.ls10_c00283{letter-spacing:138.302720pt;}
.lsd_c00283{letter-spacing:144.394880pt;}
.ls1_c00283{letter-spacing:159.785600pt;}
.ls7_c00283{letter-spacing:165.183040pt;}
.ls9_c00283{letter-spacing:167.748160pt;}
.lsc_c00283{letter-spacing:195.911040pt;}
.ls2_c00283{letter-spacing:199.758720pt;}
.ls8_c00283{letter-spacing:206.171520pt;}
.lsb_c00283{letter-spacing:235.937600pt;}
.lsf_c00283{letter-spacing:316.899200pt;}
.ls6_c00283{letter-spacing:381.187520pt;}
.ls3_c00283{letter-spacing:389.524160pt;}
.ls4_c00283{letter-spacing:419.290240pt;}
.ws0_c00283{word-spacing:-16.000000pt;}
.ws1_c00283{word-spacing:-12.184320pt;}
.ws2_c00283{word-spacing:-12.024000pt;}
.ws3_c00283{word-spacing:-11.970560pt;}
.ws4_c00283{word-spacing:-11.863680pt;}
.ws9_c00283{word-spacing:-0.374080pt;}
.wsd_c00283{word-spacing:-0.320640pt;}
.ws8_c00283{word-spacing:-0.213760pt;}
.ws7_c00283{word-spacing:-0.160320pt;}
.wsb_c00283{word-spacing:-0.106880pt;}
.ws6_c00283{word-spacing:-0.064000pt;}
.wsc_c00283{word-spacing:-0.053440pt;}
.ws5_c00283{word-spacing:0.000000pt;}
.wsa_c00283{word-spacing:0.053440pt;}
.wsf_c00283{word-spacing:0.106880pt;}
.ws10_c00283{word-spacing:0.160320pt;}
.wse_c00283{word-spacing:0.320640pt;}
._0_c00283{margin-left:-0.896000pt;}
._15_c00283{width:0.908480pt;}
._9_c00283{width:164.969280pt;}
._a_c00283{width:194.575040pt;}
._4_c00283{width:196.017920pt;}
._2_c00283{width:232.517440pt;}
._19_c00283{width:233.520320pt;}
._d_c00283{width:247.213440pt;}
._e_c00283{width:248.496000pt;}
._3_c00283{width:262.604160pt;}
._6_c00283{width:263.566080pt;}
._f_c00283{width:276.658880pt;}
._10_c00283{width:278.262080pt;}
._16_c00283{width:282.672640pt;}
._5_c00283{width:283.581120pt;}
._1a_c00283{width:311.275520pt;}
._c_c00283{width:339.228160pt;}
._14_c00283{width:345.756800pt;}
._11_c00283{width:349.925120pt;}
._18_c00283{width:351.795520pt;}
._1b_c00283{width:355.482880pt;}
._7_c00283{width:356.485760pt;}
._13_c00283{width:366.331200pt;}
._12_c00283{width:371.301120pt;}
._1_c00283{width:375.777600pt;}
._8_c00283{width:405.704000pt;}
._17_c00283{width:414.788800pt;}
._b_c00283{width:417.995200pt;}
.fs1_c00283{font-size:53.440000pt;}
.fs0_c00283{font-size:64.000000pt;}
.y0_c00283{bottom:0.000000pt;}
.y59_c00283{bottom:3.599333pt;}
.y7_c00283{bottom:3.599467pt;}
.y5c_c00283{bottom:3.600800pt;}
.y13_c00283{bottom:3.679333pt;}
.y4e_c00283{bottom:3.679467pt;}
.yd_c00283{bottom:3.680800pt;}
.y36_c00283{bottom:3.682133pt;}
.y1e_c00283{bottom:19.840667pt;}
.y22_c00283{bottom:19.919467pt;}
.y35_c00283{bottom:19.922133pt;}
.y1_c00283{bottom:54.887600pt;}
.y51_c00283{bottom:101.279467pt;}
.y50_c00283{bottom:113.560000pt;}
.y56_c00283{bottom:133.456107pt;}
.y5b_c00283{bottom:146.118667pt;}
.y55_c00283{bottom:149.701867pt;}
.y54_c00283{bottom:166.027787pt;}
.y5a_c00283{bottom:166.039467pt;}
.y58_c00283{bottom:178.680000pt;}
.y53_c00283{bottom:182.273547pt;}
.y52_c00283{bottom:198.599467pt;}
.y57_c00283{bottom:211.240000pt;}
.y49_c00283{bottom:228.120000pt;}
.y4f_c00283{bottom:244.440000pt;}
.y48_c00283{bottom:248.010347pt;}
.y4d_c00283{bottom:260.680000pt;}
.y47_c00283{bottom:264.336267pt;}
.y4c_c00283{bottom:277.000000pt;}
.y46_c00283{bottom:280.582027pt;}
.y4a_c00283{bottom:293.237333pt;}
.y45_c00283{bottom:296.907947pt;}
.y4b_c00283{bottom:296.919467pt;}
.y44_c00283{bottom:313.153707pt;}
.y43_c00283{bottom:329.399467pt;}
.y42_c00283{bottom:349.480000pt;}
.y41_c00283{bottom:376.759333pt;}
.y40_c00283{bottom:400.433787pt;}
.y3f_c00283{bottom:424.107707pt;}
.y3b_c00283{bottom:424.108027pt;}
.y3a_c00283{bottom:440.353787pt;}
.y3e_c00283{bottom:447.073547pt;}
.y39_c00283{bottom:456.679707pt;}
.y3d_c00283{bottom:463.399467pt;}
.y38_c00283{bottom:472.925467pt;}
.y3c_c00283{bottom:476.040000pt;}
.y2f_c00283{bottom:503.290507pt;}
.y37_c00283{bottom:503.319467pt;}
.y2e_c00283{bottom:519.616427pt;}
.y34_c00283{bottom:522.677333pt;}
.y2d_c00283{bottom:535.862187pt;}
.y2c_c00283{bottom:552.107947pt;}
.y32_c00283{bottom:555.240000pt;}
.y33_c00283{bottom:558.839333pt;}
.y2b_c00283{bottom:568.433867pt;}
.y30_c00283{bottom:587.800000pt;}
.y31_c00283{bottom:591.399467pt;}
.y27_c00283{bottom:624.673573pt;}
.y2a_c00283{bottom:624.679467pt;}
.y26_c00283{bottom:640.919333pt;}
.y29_c00283{bottom:644.040000pt;}
.y28_c00283{bottom:660.280000pt;}
.y25_c00283{bottom:680.839333pt;}
.y1b_c00283{bottom:697.764533pt;}
.y24_c00283{bottom:697.793467pt;}
.y1a_c00283{bottom:714.090453pt;}
.y21_c00283{bottom:717.160000pt;}
.y23_c00283{bottom:720.839467pt;}
.y19_c00283{bottom:730.336213pt;}
.y18_c00283{bottom:746.581973pt;}
.y20_c00283{bottom:749.718667pt;}
.y17_c00283{bottom:762.907893pt;}
.y1d_c00283{bottom:766.038667pt;}
.y1f_c00283{bottom:769.639467pt;}
.y16_c00283{bottom:779.153653pt;}
.y1c_c00283{bottom:802.159573pt;}
.y11_c00283{bottom:819.147787pt;}
.y15_c00283{bottom:819.153493pt;}
.y10_c00283{bottom:835.393547pt;}
.y14_c00283{bottom:842.119333pt;}
.yf_c00283{bottom:851.719467pt;}
.y12_c00283{bottom:854.760000pt;}
.ye_c00283{bottom:871.720000pt;}
.ya_c00283{bottom:875.307653pt;}
.yc_c00283{bottom:887.958667pt;}
.y9_c00283{bottom:891.633573pt;}
.yb_c00283{bottom:907.000000pt;}
.y8_c00283{bottom:907.879333pt;}
.y6_c00283{bottom:925.560000pt;}
.y5_c00283{bottom:952.839467pt;}
.y4_c00283{bottom:994.839467pt;}
.y3_c00283{bottom:1013.319467pt;}
.y2_c00283{bottom:1060.599467pt;}
.h9_c00283{height:16.240000pt;}
.hd_c00283{height:16.241333pt;}
.h13_c00283{height:16.242667pt;}
.ha_c00283{height:16.320000pt;}
.h7_c00283{height:17.838667pt;}
.h8_c00283{height:19.040000pt;}
.h10_c00283{height:22.960000pt;}
.h6_c00283{height:22.961333pt;}
.hb_c00283{height:32.480000pt;}
.hc_c00283{height:32.560000pt;}
.he_c00283{height:32.561333pt;}
.hf_c00283{height:32.562667pt;}
.h5_c00283{height:44.072344pt;}
.h2_c00283{height:44.800000pt;}
.h3_c00283{height:68.288000pt;}
.h4_c00283{height:69.376000pt;}
.h12_c00283{height:113.920000pt;}
.h11_c00283{height:120.720000pt;}
.h0_c00283{height:1122.520000pt;}
.h1_c00283{height:1122.666667pt;}
.w4_c00283{width:67.920000pt;}
.w3_c00283{width:68.080000pt;}
.w5_c00283{width:68.082667pt;}
.w6_c00283{width:75.280000pt;}
.w7_c00283{width:75.600000pt;}
.w8_c00283{width:100.880000pt;}
.wa_c00283{width:112.480000pt;}
.w2_c00283{width:213.280000pt;}
.w9_c00283{width:281.357333pt;}
.w0_c00283{width:793.701333pt;}
.w1_c00283{width:794.000000pt;}
.x0_c00283{left:0.000000pt;}
.x5_c00283{left:4.640000pt;}
.x13_c00283{left:32.960000pt;}
.xe_c00283{left:39.680000pt;}
.xf_c00283{left:47.040000pt;}
.x1_c00283{left:48.000000pt;}
.x12_c00283{left:49.920000pt;}
.xd_c00283{left:56.720000pt;}
.x10_c00283{left:63.920000pt;}
.x4_c00283{left:112.160000pt;}
.x2_c00283{left:113.440000pt;}
.x3_c00283{left:116.800000pt;}
.xc_c00283{left:224.560000pt;}
.x11_c00283{left:229.280000pt;}
.x6_c00283{left:325.440000pt;}
.x7_c00283{left:393.520000pt;}
.x8_c00283{left:461.440000pt;}
.x9_c00283{left:529.520000pt;}
.xa_c00283{left:604.800000pt;}
.xb_c00283{left:680.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00284;src:url('chunks/assets/font_23fd3bd823985b3ced2a9363.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00284;src:url('chunks/assets/font_e71e6285e9332dd814928f93.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00284;src:url('chunks/assets/font_6b0360ca6e88cc2c0d7f297b.woff2')format("woff");}.ff4_c00284{font-family:ff4_c00284;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00284;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00284{font-family:ff5_c00284;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00284;src:url('chunks/assets/font_37e4c09e59993518b78aee99.woff2')format("woff");}.ff6_c00284{font-family:ff6_c00284;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00284;src:url('chunks/assets/font_2fc687a2b203043eb6d1ee80.woff2')format("woff");}.ff7_c00284{font-family:ff7_c00284;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00284;src:url('chunks/assets/font_417b493f70e7ae817fb7f459.woff2')format("woff");}.ff8_c00284{font-family:ff8_c00284;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v3_c00284{vertical-align:-62.454960px;}
.v1_c00284{vertical-align:-57.240600px;}
.v0_c00284{vertical-align:0.000000px;}
.v2_c00284{vertical-align:1.800600px;}
.ls1e_c00284{letter-spacing:-0.240480px;}
.ls1f_c00284{letter-spacing:-0.180360px;}
.ls1c_c00284{letter-spacing:-0.120240px;}
.ls1b_c00284{letter-spacing:-0.060120px;}
.ls1a_c00284{letter-spacing:0.000000px;}
.ls14_c00284{letter-spacing:0.065880px;}
.ls0_c00284{letter-spacing:0.072000px;}
.ls5_c00284{letter-spacing:0.092880px;}
.lsa_c00284{letter-spacing:0.120240px;}
.ls1d_c00284{letter-spacing:0.180360px;}
.ls15_c00284{letter-spacing:65.234520px;}
.ls16_c00284{letter-spacing:113.506560px;}
.ls18_c00284{letter-spacing:140.324400px;}
.ls19_c00284{letter-spacing:141.905520px;}
.ls11_c00284{letter-spacing:145.550520px;}
.lse_c00284{letter-spacing:147.714840px;}
.ls10_c00284{letter-spacing:155.590560px;}
.lsd_c00284{letter-spacing:162.444240px;}
.ls1_c00284{letter-spacing:179.758800px;}
.ls7_c00284{letter-spacing:185.830920px;}
.ls9_c00284{letter-spacing:188.716680px;}
.lsc_c00284{letter-spacing:220.399920px;}
.ls2_c00284{letter-spacing:224.728560px;}
.ls8_c00284{letter-spacing:231.942960px;}
.ls12_c00284{letter-spacing:249.918840px;}
.lsb_c00284{letter-spacing:265.429800px;}
.lsf_c00284{letter-spacing:356.511600px;}
.ls17_c00284{letter-spacing:375.557400px;}
.ls13_c00284{letter-spacing:421.320960px;}
.ls6_c00284{letter-spacing:428.835960px;}
.ls3_c00284{letter-spacing:438.214680px;}
.ls4_c00284{letter-spacing:471.701520px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00284{word-spacing:-18.000000px;}
.ws5_c00284{word-spacing:-14.954760px;}
.ws1_c00284{word-spacing:-13.707360px;}
.ws2_c00284{word-spacing:-13.527000px;}
.ws3_c00284{word-spacing:-13.466880px;}
.ws4_c00284{word-spacing:-13.346640px;}
.wsa_c00284{word-spacing:-0.420840px;}
.wse_c00284{word-spacing:-0.360720px;}
.ws9_c00284{word-spacing:-0.240480px;}
.ws8_c00284{word-spacing:-0.180360px;}
.wsc_c00284{word-spacing:-0.120240px;}
.ws7_c00284{word-spacing:-0.072000px;}
.ws12_c00284{word-spacing:-0.065880px;}
.wsd_c00284{word-spacing:-0.060120px;}
.ws6_c00284{word-spacing:0.000000px;}
.wsb_c00284{word-spacing:0.060120px;}
.ws10_c00284{word-spacing:0.120240px;}
.ws11_c00284{word-spacing:0.180360px;}
.wsf_c00284{word-spacing:0.360720px;}
._0_c00284{margin-left:-1.008000px;}
._15_c00284{width:1.022040px;}
._1d_c00284{width:173.791440px;}
._9_c00284{width:185.590440px;}
._a_c00284{width:218.896920px;}
._4_c00284{width:220.520160px;}
._1c_c00284{width:257.983560px;}
._2_c00284{width:261.582120px;}
._19_c00284{width:262.710360px;}
._d_c00284{width:278.115120px;}
._e_c00284{width:279.558000px;}
._3_c00284{width:295.429680px;}
._6_c00284{width:296.511840px;}
._f_c00284{width:311.241240px;}
._10_c00284{width:313.044840px;}
._16_c00284{width:318.006720px;}
._5_c00284{width:319.028760px;}
._1a_c00284{width:350.184960px;}
._c_c00284{width:381.631680px;}
._14_c00284{width:388.976400px;}
._11_c00284{width:393.665760px;}
._18_c00284{width:395.769960px;}
._1b_c00284{width:399.918240px;}
._7_c00284{width:401.046480px;}
._13_c00284{width:412.122600px;}
._12_c00284{width:417.713760px;}
._1_c00284{width:422.749800px;}
._8_c00284{width:456.417000px;}
._17_c00284{width:466.637400px;}
._b_c00284{width:470.244600px;}
.fc2_c00284{color:transparent;}
.fc1_c00284{color:rgb(0,0,0);}
.fc0_c00284{color:rgb(35,31,32);}
.fs1_c00284{font-size:60.120000px;}
.fs2_c00284{font-size:65.880000px;}
.fs0_c00284{font-size:72.000000px;}
.y0_c00284{bottom:0.000000px;}
.y58_c00284{bottom:4.049250px;}
.y7_c00284{bottom:4.049400px;}
.y5b_c00284{bottom:4.050900px;}
.y7b_c00284{bottom:4.052250px;}
.y13_c00284{bottom:4.139250px;}
.y4d_c00284{bottom:4.139400px;}
.yd_c00284{bottom:4.140900px;}
.y83_c00284{bottom:4.142250px;}
.y70_c00284{bottom:4.142400px;}
.ybc_c00284{bottom:4.409250px;}
.yb4_c00284{bottom:4.499250px;}
.y94_c00284{bottom:4.499400px;}
.y88_c00284{bottom:4.502250px;}
.y5e_c00284{bottom:22.319250px;}
.y1e_c00284{bottom:22.320750px;}
.y65_c00284{bottom:22.409250px;}
.y22_c00284{bottom:22.409400px;}
.y8e_c00284{bottom:22.410750px;}
.y35_c00284{bottom:22.410900px;}
.yab_c00284{bottom:22.412400px;}
.y9a_c00284{bottom:44.729400px;}
.y6c_c00284{bottom:44.732250px;}
.y77_c00284{bottom:44.819400px;}
.y1_c00284{bottom:61.748550px;}
.y50_c00284{bottom:113.939400px;}
.y4f_c00284{bottom:127.755000px;}
.ybe_c00284{bottom:132.209400px;}
.y55_c00284{bottom:150.138120px;}
.yd2_c00284{bottom:155.655000px;}
.yd8_c00284{bottom:159.761640px;}
.ye1_c00284{bottom:159.794400px;}
.yde_c00284{bottom:160.149630px;}
.y5a_c00284{bottom:164.383500px;}
.y62_c00284{bottom:164.385000px;}
.y54_c00284{bottom:168.414600px;}
.yd7_c00284{bottom:178.038120px;}
.ydd_c00284{bottom:180.308910px;}
.y53_c00284{bottom:186.781260px;}
.y59_c00284{bottom:186.794400px;}
.ye0_c00284{bottom:192.285000px;}
.yd6_c00284{bottom:196.404780px;}
.ydc_c00284{bottom:200.468190px;}
.y57_c00284{bottom:201.015000px;}
.y52_c00284{bottom:205.057740px;}
.ydf_c00284{bottom:210.645000px;}
.yd5_c00284{bottom:214.681260px;}
.ydb_c00284{bottom:220.545120px;}
.y51_c00284{bottom:223.424400px;}
.yd4_c00284{bottom:233.047920px;}
.y56_c00284{bottom:237.645000px;}
.yda_c00284{bottom:240.704400px;}
.yd3_c00284{bottom:251.324400px;}
.y48_c00284{bottom:256.635000px;}
.yd9_c00284{bottom:265.545000px;}
.y4e_c00284{bottom:274.995000px;}
.y47_c00284{bottom:279.011640px;}
.ybd_c00284{bottom:284.625000px;}
.yc5_c00284{bottom:288.634980px;}
.yd1_c00284{bottom:288.674400px;}
.ycb_c00284{bottom:289.120350px;}
.y4c_c00284{bottom:293.265000px;}
.y46_c00284{bottom:297.378300px;}
.yc4_c00284{bottom:307.001640px;}
.yca_c00284{bottom:309.197280px;}
.yd0_c00284{bottom:309.825000px;}
.y4b_c00284{bottom:311.625000px;}
.y45_c00284{bottom:315.654780px;}
.yc3_c00284{bottom:325.278120px;}
.yc9_c00284{bottom:329.356560px;}
.y49_c00284{bottom:329.893500px;}
.y61_c00284{bottom:329.895000px;}
.ycf_c00284{bottom:332.234400px;}
.y44_c00284{bottom:334.021440px;}
.y4a_c00284{bottom:334.034400px;}
.yc2_c00284{bottom:343.644780px;}
.yce_c00284{bottom:346.455000px;}
.yc8_c00284{bottom:349.515840px;}
.y43_c00284{bottom:352.297920px;}
.yc1_c00284{bottom:361.921260px;}
.ycd_c00284{bottom:364.722000px;}
.yc7_c00284{bottom:369.675120px;}
.y42_c00284{bottom:370.574400px;}
.yc0_c00284{bottom:380.197740px;}
.ycc_c00284{bottom:389.834400px;}
.y41_c00284{bottom:393.165000px;}
.ybf_c00284{bottom:398.564400px;}
.yc6_c00284{bottom:405.448140px;}
.y40_c00284{bottom:423.854850px;}
.ybb_c00284{bottom:431.865000px;}
.yba_c00284{bottom:435.914400px;}
.y3f_c00284{bottom:450.488010px;}
.yb9_c00284{bottom:456.794250px;}
.y3e_c00284{bottom:477.121170px;}
.y3a_c00284{bottom:477.121530px;}
.yb8_c00284{bottom:481.995000px;}
.y39_c00284{bottom:495.398010px;}
.yb2_c00284{bottom:502.875000px;}
.y3d_c00284{bottom:502.957740px;}
.y38_c00284{bottom:513.764670px;}
.yb6_c00284{bottom:521.145000px;}
.y3c_c00284{bottom:521.324400px;}
.yb1_c00284{bottom:525.271260px;}
.yb7_c00284{bottom:525.284250px;}
.yb3_c00284{bottom:527.527320px;}
.y37_c00284{bottom:532.041150px;}
.y3b_c00284{bottom:535.545000px;}
.yb0_c00284{bottom:543.547740px;}
.yb5_c00284{bottom:547.604250px;}
.yaf_c00284{bottom:561.914400px;}
.y2f_c00284{bottom:566.201820px;}
.y36_c00284{bottom:566.234400px;}
.yae_c00284{bottom:576.855000px;}
.ya3_c00284{bottom:580.961940px;}
.ya9_c00284{bottom:581.348910px;}
.y2e_c00284{bottom:584.568480px;}
.y34_c00284{bottom:588.013500px;}
.y60_c00284{bottom:588.015000px;}
.yac_c00284{bottom:595.215000px;}
.ya2_c00284{bottom:599.238420px;}
.yad_c00284{bottom:599.264400px;}
.ya8_c00284{bottom:601.508190px;}
.y2d_c00284{bottom:602.844960px;}
.ya1_c00284{bottom:617.514900px;}
.y2c_c00284{bottom:621.121440px;}
.ya7_c00284{bottom:621.585120px;}
.y32_c00284{bottom:624.645000px;}
.y33_c00284{bottom:628.694250px;}
.yaa_c00284{bottom:631.752000px;}
.ya0_c00284{bottom:635.881560px;}
.y2b_c00284{bottom:639.488100px;}
.ya6_c00284{bottom:641.744400px;}
.y9f_c00284{bottom:654.158040px;}
.y30_c00284{bottom:661.275000px;}
.y31_c00284{bottom:665.324400px;}
.ya5_c00284{bottom:672.479610px;}
.ya4_c00284{bottom:690.756090px;}
.y27_c00284{bottom:702.758460px;}
.y2a_c00284{bottom:702.764400px;}
.y99_c00284{bottom:705.825000px;}
.y97_c00284{bottom:709.861260px;}
.y9e_c00284{bottom:709.874250px;}
.y9c_c00284{bottom:710.235120px;}
.y26_c00284{bottom:721.034940px;}
.y29_c00284{bottom:724.545000px;}
.y96_c00284{bottom:728.137740px;}
.y9d_c00284{bottom:729.585000px;}
.y9b_c00284{bottom:730.394400px;}
.y28_c00284{bottom:742.815000px;}
.y95_c00284{bottom:746.504400px;}
.y98_c00284{bottom:747.945000px;}
.y25_c00284{bottom:765.944580px;}
.y93_c00284{bottom:766.935000px;}
.y92_c00284{bottom:771.074400px;}
.y1b_c00284{bottom:784.985100px;}
.y24_c00284{bottom:785.017650px;}
.y82_c00284{bottom:787.812000px;}
.y1a_c00284{bottom:803.351760px;}
.y91_c00284{bottom:806.172000px;}
.y21_c00284{bottom:806.805000px;}
.y81_c00284{bottom:810.193350px;}
.y23_c00284{bottom:810.944400px;}
.y8c_c00284{bottom:812.468760px;}
.y87_c00284{bottom:812.475690px;}
.y19_c00284{bottom:821.628240px;}
.y80_c00284{bottom:828.560010px;}
.y90_c00284{bottom:828.581790px;}
.y8b_c00284{bottom:832.628040px;}
.y86_c00284{bottom:832.634970px;}
.y18_c00284{bottom:839.904720px;}
.y20_c00284{bottom:843.433500px;}
.y5f_c00284{bottom:843.435000px;}
.y7f_c00284{bottom:846.836490px;}
.y8d_c00284{bottom:848.293500px;}
.y8f_c00284{bottom:852.434400px;}
.y8a_c00284{bottom:852.787320px;}
.y85_c00284{bottom:852.794250px;}
.y17_c00284{bottom:858.271380px;}
.y1d_c00284{bottom:861.793500px;}
.y5d_c00284{bottom:861.795000px;}
.y7e_c00284{bottom:865.203150px;}
.y1f_c00284{bottom:865.844400px;}
.y89_c00284{bottom:872.864250px;}
.y16_c00284{bottom:876.547860px;}
.y7d_c00284{bottom:883.479630px;}
.y84_c00284{bottom:884.925000px;}
.y1c_c00284{bottom:902.429520px;}
.y76_c00284{bottom:904.275000px;}
.y74_c00284{bottom:908.397240px;}
.y7c_c00284{bottom:908.414400px;}
.y79_c00284{bottom:908.775120px;}
.y11_c00284{bottom:921.541260px;}
.y15_c00284{bottom:921.547680px;}
.y73_c00284{bottom:926.673720px;}
.y7a_c00284{bottom:927.672000px;}
.y78_c00284{bottom:928.934400px;}
.y10_c00284{bottom:939.817740px;}
.y72_c00284{bottom:945.040380px;}
.y14_c00284{bottom:947.384250px;}
.y75_c00284{bottom:950.060400px;}
.yf_c00284{bottom:958.184400px;}
.y12_c00284{bottom:961.605000px;}
.y6b_c00284{bottom:965.472000px;}
.y69_c00284{bottom:969.511110px;}
.y71_c00284{bottom:969.524250px;}
.y6e_c00284{bottom:969.974970px;}
.ye_c00284{bottom:980.685000px;}
.ya_c00284{bottom:984.721110px;}
.y68_c00284{bottom:987.877770px;}
.y6f_c00284{bottom:989.232000px;}
.y6d_c00284{bottom:990.134250px;}
.yc_c00284{bottom:998.953500px;}
.y5c_c00284{bottom:998.955000px;}
.y9_c00284{bottom:1003.087770px;}
.y67_c00284{bottom:1006.154250px;}
.y6a_c00284{bottom:1007.593500px;}
.yb_c00284{bottom:1020.375000px;}
.y8_c00284{bottom:1021.364250px;}
.y64_c00284{bottom:1026.675000px;}
.y66_c00284{bottom:1030.724250px;}
.y6_c00284{bottom:1041.255000px;}
.y63_c00284{bottom:1068.074400px;}
.y5_c00284{bottom:1071.944400px;}
.y4_c00284{bottom:1119.194400px;}
.y3_c00284{bottom:1139.984400px;}
.y2_c00284{bottom:1193.174400px;}
.h9_c00284{height:18.270000px;}
.hd_c00284{height:18.271500px;}
.h15_c00284{height:18.273000px;}
.ha_c00284{height:18.360000px;}
.h17_c00284{height:18.630000px;}
.h1f_c00284{height:20.067000px;}
.h7_c00284{height:20.068500px;}
.h1d_c00284{height:20.160000px;}
.h19_c00284{height:20.161500px;}
.h8_c00284{height:21.420000px;}
.hf_c00284{height:25.830000px;}
.h6_c00284{height:25.831500px;}
.h1b_c00284{height:36.537000px;}
.hb_c00284{height:36.540000px;}
.hc_c00284{height:36.630000px;}
.he_c00284{height:36.631500px;}
.h18_c00284{height:36.633000px;}
.h5_c00284{height:49.581387px;}
.h2_c00284{height:50.400000px;}
.h13_c00284{height:54.331699px;}
.h1e_c00284{height:56.132299px;}
.h1a_c00284{height:60.390000px;}
.h12_c00284{height:60.391500px;}
.h14_c00284{height:60.480000px;}
.h1c_c00284{height:73.258500px;}
.h3_c00284{height:76.824000px;}
.h4_c00284{height:78.048000px;}
.h16_c00284{height:115.741500px;}
.h11_c00284{height:128.160000px;}
.h21_c00284{height:128.161500px;}
.h10_c00284{height:135.810000px;}
.h20_c00284{height:146.428500px;}
.h0_c00284{height:1262.835000px;}
.h1_c00284{height:1263.000000px;}
.wb_c00284{width:-640.194000px;}
.w3_c00284{width:-526.794000px;}
.wa_c00284{width:-450.207000px;}
.we_c00284{width:-450.205500px;}
.w4_c00284{width:-450.204000px;}
.w5_c00284{width:-373.794000px;}
.wd_c00284{width:-297.202500px;}
.w6_c00284{width:-297.201000px;}
.w7_c00284{width:-212.514000px;}
.w8_c00284{width:-127.464000px;}
.w9_c00284{width:-42.414000px;}
.w2_c00284{width:0.000000px;}
.wc_c00284{width:0.066000px;}
.w11_c00284{width:76.320000px;}
.w12_c00284{width:76.323000px;}
.w10_c00284{width:76.680000px;}
.w14_c00284{width:117.990000px;}
.w13_c00284{width:119.700000px;}
.wf_c00284{width:237.690000px;}
.w0_c00284{width:892.914000px;}
.w1_c00284{width:893.250000px;}
.x1_c00284{left:-838.913400px;}
.x2_c00284{left:-765.293400px;}
.x3_c00284{left:-761.513400px;}
.xa_c00284{left:-634.973400px;}
.x4_c00284{left:-521.573400px;}
.x15_c00284{left:-470.633400px;}
.xb_c00284{left:-462.983400px;}
.x5_c00284{left:-444.893400px;}
.x17_c00284{left:-413.123400px;}
.xc_c00284{left:-405.563400px;}
.x11_c00284{left:-386.573400px;}
.x6_c00284{left:-368.573400px;}
.x16_c00284{left:-317.633400px;}
.xd_c00284{left:-309.983400px;}
.x7_c00284{left:-291.893400px;}
.x18_c00284{left:-251.843400px;}
.xe_c00284{left:-244.283400px;}
.x12_c00284{left:-225.293400px;}
.x8_c00284{left:-207.293400px;}
.xf_c00284{left:-147.983400px;}
.x13_c00284{left:-140.333400px;}
.x9_c00284{left:-122.243400px;}
.x19_c00284{left:-81.833550px;}
.x10_c00284{left:-74.273400px;}
.x14_c00284{left:-55.283550px;}
.x0_c00284{left:0.000000px;}
.x1f_c00284{left:5.310000px;}
.x3d_c00284{left:41.940000px;}
.x3c_c00284{left:63.090000px;}
.x1e_c00284{left:126.270000px;}
.x1c_c00284{left:127.620000px;}
.x1d_c00284{left:131.580000px;}
.x2c_c00284{left:244.260000px;}
.x33_c00284{left:249.570000px;}
.x20_c00284{left:363.960000px;}
.x21_c00284{left:369.270000px;}
.x38_c00284{left:418.680000px;}
.x2d_c00284{left:427.050000px;}
.x22_c00284{left:440.640000px;}
.x23_c00284{left:445.860000px;}
.x39_c00284{left:474.204870px;}
.x2e_c00284{left:482.580000px;}
.x34_c00284{left:503.370000px;}
.x24_c00284{left:516.960000px;}
.x25_c00284{left:522.270000px;}
.x3a_c00284{left:571.680000px;}
.x2f_c00284{left:580.050000px;}
.x26_c00284{left:593.640000px;}
.x27_c00284{left:598.860000px;}
.x3b_c00284{left:627.204870px;}
.x30_c00284{left:635.580000px;}
.x35_c00284{left:656.370000px;}
.x28_c00284{left:669.960000px;}
.x29_c00284{left:675.270000px;}
.x1b_c00284{left:679.950000px;}
.x31_c00284{left:724.680000px;}
.x36_c00284{left:733.050000px;}
.x2a_c00284{left:746.640000px;}
.x2b_c00284{left:751.860000px;}
.x32_c00284{left:780.210000px;}
.x37_c00284{left:788.580000px;}
.x1a_c00284{left:804.366150px;}
@media print{
.v3_c00284{vertical-align:-55.515520pt;}
.v1_c00284{vertical-align:-50.880533pt;}
.v0_c00284{vertical-align:0.000000pt;}
.v2_c00284{vertical-align:1.600533pt;}
.ls1e_c00284{letter-spacing:-0.213760pt;}
.ls1f_c00284{letter-spacing:-0.160320pt;}
.ls1c_c00284{letter-spacing:-0.106880pt;}
.ls1b_c00284{letter-spacing:-0.053440pt;}
.ls1a_c00284{letter-spacing:0.000000pt;}
.ls14_c00284{letter-spacing:0.058560pt;}
.ls0_c00284{letter-spacing:0.064000pt;}
.ls5_c00284{letter-spacing:0.082560pt;}
.lsa_c00284{letter-spacing:0.106880pt;}
.ls1d_c00284{letter-spacing:0.160320pt;}
.ls15_c00284{letter-spacing:57.986240pt;}
.ls16_c00284{letter-spacing:100.894720pt;}
.ls18_c00284{letter-spacing:124.732800pt;}
.ls19_c00284{letter-spacing:126.138240pt;}
.ls11_c00284{letter-spacing:129.378240pt;}
.lse_c00284{letter-spacing:131.302080pt;}
.ls10_c00284{letter-spacing:138.302720pt;}
.lsd_c00284{letter-spacing:144.394880pt;}
.ls1_c00284{letter-spacing:159.785600pt;}
.ls7_c00284{letter-spacing:165.183040pt;}
.ls9_c00284{letter-spacing:167.748160pt;}
.lsc_c00284{letter-spacing:195.911040pt;}
.ls2_c00284{letter-spacing:199.758720pt;}
.ls8_c00284{letter-spacing:206.171520pt;}
.ls12_c00284{letter-spacing:222.150080pt;}
.lsb_c00284{letter-spacing:235.937600pt;}
.lsf_c00284{letter-spacing:316.899200pt;}
.ls17_c00284{letter-spacing:333.828800pt;}
.ls13_c00284{letter-spacing:374.507520pt;}
.ls6_c00284{letter-spacing:381.187520pt;}
.ls3_c00284{letter-spacing:389.524160pt;}
.ls4_c00284{letter-spacing:419.290240pt;}
.ws0_c00284{word-spacing:-16.000000pt;}
.ws5_c00284{word-spacing:-13.293120pt;}
.ws1_c00284{word-spacing:-12.184320pt;}
.ws2_c00284{word-spacing:-12.024000pt;}
.ws3_c00284{word-spacing:-11.970560pt;}
.ws4_c00284{word-spacing:-11.863680pt;}
.wsa_c00284{word-spacing:-0.374080pt;}
.wse_c00284{word-spacing:-0.320640pt;}
.ws9_c00284{word-spacing:-0.213760pt;}
.ws8_c00284{word-spacing:-0.160320pt;}
.wsc_c00284{word-spacing:-0.106880pt;}
.ws7_c00284{word-spacing:-0.064000pt;}
.ws12_c00284{word-spacing:-0.058560pt;}
.wsd_c00284{word-spacing:-0.053440pt;}
.ws6_c00284{word-spacing:0.000000pt;}
.wsb_c00284{word-spacing:0.053440pt;}
.ws10_c00284{word-spacing:0.106880pt;}
.ws11_c00284{word-spacing:0.160320pt;}
.wsf_c00284{word-spacing:0.320640pt;}
._0_c00284{margin-left:-0.896000pt;}
._15_c00284{width:0.908480pt;}
._1d_c00284{width:154.481280pt;}
._9_c00284{width:164.969280pt;}
._a_c00284{width:194.575040pt;}
._4_c00284{width:196.017920pt;}
._1c_c00284{width:229.318720pt;}
._2_c00284{width:232.517440pt;}
._19_c00284{width:233.520320pt;}
._d_c00284{width:247.213440pt;}
._e_c00284{width:248.496000pt;}
._3_c00284{width:262.604160pt;}
._6_c00284{width:263.566080pt;}
._f_c00284{width:276.658880pt;}
._10_c00284{width:278.262080pt;}
._16_c00284{width:282.672640pt;}
._5_c00284{width:283.581120pt;}
._1a_c00284{width:311.275520pt;}
._c_c00284{width:339.228160pt;}
._14_c00284{width:345.756800pt;}
._11_c00284{width:349.925120pt;}
._18_c00284{width:351.795520pt;}
._1b_c00284{width:355.482880pt;}
._7_c00284{width:356.485760pt;}
._13_c00284{width:366.331200pt;}
._12_c00284{width:371.301120pt;}
._1_c00284{width:375.777600pt;}
._8_c00284{width:405.704000pt;}
._17_c00284{width:414.788800pt;}
._b_c00284{width:417.995200pt;}
.fs1_c00284{font-size:53.440000pt;}
.fs2_c00284{font-size:58.560000pt;}
.fs0_c00284{font-size:64.000000pt;}
.y0_c00284{bottom:0.000000pt;}
.y58_c00284{bottom:3.599333pt;}
.y7_c00284{bottom:3.599467pt;}
.y5b_c00284{bottom:3.600800pt;}
.y7b_c00284{bottom:3.602000pt;}
.y13_c00284{bottom:3.679333pt;}
.y4d_c00284{bottom:3.679467pt;}
.yd_c00284{bottom:3.680800pt;}
.y83_c00284{bottom:3.682000pt;}
.y70_c00284{bottom:3.682133pt;}
.ybc_c00284{bottom:3.919333pt;}
.yb4_c00284{bottom:3.999333pt;}
.y94_c00284{bottom:3.999467pt;}
.y88_c00284{bottom:4.002000pt;}
.y5e_c00284{bottom:19.839333pt;}
.y1e_c00284{bottom:19.840667pt;}
.y65_c00284{bottom:19.919333pt;}
.y22_c00284{bottom:19.919467pt;}
.y8e_c00284{bottom:19.920667pt;}
.y35_c00284{bottom:19.920800pt;}
.yab_c00284{bottom:19.922133pt;}
.y9a_c00284{bottom:39.759467pt;}
.y6c_c00284{bottom:39.762000pt;}
.y77_c00284{bottom:39.839467pt;}
.y1_c00284{bottom:54.887600pt;}
.y50_c00284{bottom:101.279467pt;}
.y4f_c00284{bottom:113.560000pt;}
.ybe_c00284{bottom:117.519467pt;}
.y55_c00284{bottom:133.456107pt;}
.yd2_c00284{bottom:138.360000pt;}
.yd8_c00284{bottom:142.010347pt;}
.ye1_c00284{bottom:142.039467pt;}
.yde_c00284{bottom:142.355227pt;}
.y5a_c00284{bottom:146.118667pt;}
.y62_c00284{bottom:146.120000pt;}
.y54_c00284{bottom:149.701867pt;}
.yd7_c00284{bottom:158.256107pt;}
.ydd_c00284{bottom:160.274587pt;}
.y53_c00284{bottom:166.027787pt;}
.y59_c00284{bottom:166.039467pt;}
.ye0_c00284{bottom:170.920000pt;}
.yd6_c00284{bottom:174.582027pt;}
.ydc_c00284{bottom:178.193947pt;}
.y57_c00284{bottom:178.680000pt;}
.y52_c00284{bottom:182.273547pt;}
.ydf_c00284{bottom:187.240000pt;}
.yd5_c00284{bottom:190.827787pt;}
.ydb_c00284{bottom:196.040107pt;}
.y51_c00284{bottom:198.599467pt;}
.yd4_c00284{bottom:207.153707pt;}
.y56_c00284{bottom:211.240000pt;}
.yda_c00284{bottom:213.959467pt;}
.yd3_c00284{bottom:223.399467pt;}
.y48_c00284{bottom:228.120000pt;}
.yd9_c00284{bottom:236.040000pt;}
.y4e_c00284{bottom:244.440000pt;}
.y47_c00284{bottom:248.010347pt;}
.ybd_c00284{bottom:253.000000pt;}
.yc5_c00284{bottom:256.564427pt;}
.yd1_c00284{bottom:256.599467pt;}
.ycb_c00284{bottom:256.995867pt;}
.y4c_c00284{bottom:260.680000pt;}
.y46_c00284{bottom:264.336267pt;}
.yc4_c00284{bottom:272.890347pt;}
.yca_c00284{bottom:274.842027pt;}
.yd0_c00284{bottom:275.400000pt;}
.y4b_c00284{bottom:277.000000pt;}
.y45_c00284{bottom:280.582027pt;}
.yc3_c00284{bottom:289.136107pt;}
.yc9_c00284{bottom:292.761387pt;}
.y49_c00284{bottom:293.238667pt;}
.y61_c00284{bottom:293.240000pt;}
.ycf_c00284{bottom:295.319467pt;}
.y44_c00284{bottom:296.907947pt;}
.y4a_c00284{bottom:296.919467pt;}
.yc2_c00284{bottom:305.462027pt;}
.yce_c00284{bottom:307.960000pt;}
.yc8_c00284{bottom:310.680747pt;}
.y43_c00284{bottom:313.153707pt;}
.yc1_c00284{bottom:321.707787pt;}
.ycd_c00284{bottom:324.197333pt;}
.yc7_c00284{bottom:328.600107pt;}
.y42_c00284{bottom:329.399467pt;}
.yc0_c00284{bottom:337.953547pt;}
.ycc_c00284{bottom:346.519467pt;}
.y41_c00284{bottom:349.480000pt;}
.ybf_c00284{bottom:354.279467pt;}
.yc6_c00284{bottom:360.398347pt;}
.y40_c00284{bottom:376.759867pt;}
.ybb_c00284{bottom:383.880000pt;}
.yba_c00284{bottom:387.479467pt;}
.y3f_c00284{bottom:400.433787pt;}
.yb9_c00284{bottom:406.039333pt;}
.y3e_c00284{bottom:424.107707pt;}
.y3a_c00284{bottom:424.108027pt;}
.yb8_c00284{bottom:428.440000pt;}
.y39_c00284{bottom:440.353787pt;}
.yb2_c00284{bottom:447.000000pt;}
.y3d_c00284{bottom:447.073547pt;}
.y38_c00284{bottom:456.679707pt;}
.yb6_c00284{bottom:463.240000pt;}
.y3c_c00284{bottom:463.399467pt;}
.yb1_c00284{bottom:466.907787pt;}
.yb7_c00284{bottom:466.919333pt;}
.yb3_c00284{bottom:468.913173pt;}
.y37_c00284{bottom:472.925467pt;}
.y3b_c00284{bottom:476.040000pt;}
.yb0_c00284{bottom:483.153547pt;}
.yb5_c00284{bottom:486.759333pt;}
.yaf_c00284{bottom:499.479467pt;}
.y2f_c00284{bottom:503.290507pt;}
.y36_c00284{bottom:503.319467pt;}
.yae_c00284{bottom:512.760000pt;}
.ya3_c00284{bottom:516.410613pt;}
.ya9_c00284{bottom:516.754587pt;}
.y2e_c00284{bottom:519.616427pt;}
.y34_c00284{bottom:522.678667pt;}
.y60_c00284{bottom:522.680000pt;}
.yac_c00284{bottom:529.080000pt;}
.ya2_c00284{bottom:532.656373pt;}
.yad_c00284{bottom:532.679467pt;}
.ya8_c00284{bottom:534.673947pt;}
.y2d_c00284{bottom:535.862187pt;}
.ya1_c00284{bottom:548.902133pt;}
.y2c_c00284{bottom:552.107947pt;}
.ya7_c00284{bottom:552.520107pt;}
.y32_c00284{bottom:555.240000pt;}
.y33_c00284{bottom:558.839333pt;}
.yaa_c00284{bottom:561.557333pt;}
.ya0_c00284{bottom:565.228053pt;}
.y2b_c00284{bottom:568.433867pt;}
.ya6_c00284{bottom:570.439467pt;}
.y9f_c00284{bottom:581.473813pt;}
.y30_c00284{bottom:587.800000pt;}
.y31_c00284{bottom:591.399467pt;}
.ya5_c00284{bottom:597.759653pt;}
.ya4_c00284{bottom:614.005413pt;}
.y27_c00284{bottom:624.674187pt;}
.y2a_c00284{bottom:624.679467pt;}
.y99_c00284{bottom:627.400000pt;}
.y97_c00284{bottom:630.987787pt;}
.y9e_c00284{bottom:630.999333pt;}
.y9c_c00284{bottom:631.320107pt;}
.y26_c00284{bottom:640.919947pt;}
.y29_c00284{bottom:644.040000pt;}
.y96_c00284{bottom:647.233547pt;}
.y9d_c00284{bottom:648.520000pt;}
.y9b_c00284{bottom:649.239467pt;}
.y28_c00284{bottom:660.280000pt;}
.y95_c00284{bottom:663.559467pt;}
.y98_c00284{bottom:664.840000pt;}
.y25_c00284{bottom:680.839627pt;}
.y93_c00284{bottom:681.720000pt;}
.y92_c00284{bottom:685.399467pt;}
.y1b_c00284{bottom:697.764533pt;}
.y24_c00284{bottom:697.793467pt;}
.y82_c00284{bottom:700.277333pt;}
.y1a_c00284{bottom:714.090453pt;}
.y91_c00284{bottom:716.597333pt;}
.y21_c00284{bottom:717.160000pt;}
.y81_c00284{bottom:720.171867pt;}
.y23_c00284{bottom:720.839467pt;}
.y8c_c00284{bottom:722.194453pt;}
.y87_c00284{bottom:722.200613pt;}
.y19_c00284{bottom:730.336213pt;}
.y80_c00284{bottom:736.497787pt;}
.y90_c00284{bottom:736.517147pt;}
.y8b_c00284{bottom:740.113813pt;}
.y86_c00284{bottom:740.119973pt;}
.y18_c00284{bottom:746.581973pt;}
.y20_c00284{bottom:749.718667pt;}
.y5f_c00284{bottom:749.720000pt;}
.y7f_c00284{bottom:752.743547pt;}
.y8d_c00284{bottom:754.038667pt;}
.y8f_c00284{bottom:757.719467pt;}
.y8a_c00284{bottom:758.033173pt;}
.y85_c00284{bottom:758.039333pt;}
.y17_c00284{bottom:762.907893pt;}
.y1d_c00284{bottom:766.038667pt;}
.y5d_c00284{bottom:766.040000pt;}
.y7e_c00284{bottom:769.069467pt;}
.y1f_c00284{bottom:769.639467pt;}
.y89_c00284{bottom:775.879333pt;}
.y16_c00284{bottom:779.153653pt;}
.y7d_c00284{bottom:785.315227pt;}
.y84_c00284{bottom:786.600000pt;}
.y1c_c00284{bottom:802.159573pt;}
.y76_c00284{bottom:803.800000pt;}
.y74_c00284{bottom:807.464213pt;}
.y7c_c00284{bottom:807.479467pt;}
.y79_c00284{bottom:807.800107pt;}
.y11_c00284{bottom:819.147787pt;}
.y15_c00284{bottom:819.153493pt;}
.y73_c00284{bottom:823.709973pt;}
.y7a_c00284{bottom:824.597333pt;}
.y78_c00284{bottom:825.719467pt;}
.y10_c00284{bottom:835.393547pt;}
.y72_c00284{bottom:840.035893pt;}
.y14_c00284{bottom:842.119333pt;}
.y75_c00284{bottom:844.498133pt;}
.yf_c00284{bottom:851.719467pt;}
.y12_c00284{bottom:854.760000pt;}
.y6b_c00284{bottom:858.197333pt;}
.y69_c00284{bottom:861.787653pt;}
.y71_c00284{bottom:861.799333pt;}
.y6e_c00284{bottom:862.199973pt;}
.ye_c00284{bottom:871.720000pt;}
.ya_c00284{bottom:875.307653pt;}
.y68_c00284{bottom:878.113573pt;}
.y6f_c00284{bottom:879.317333pt;}
.y6d_c00284{bottom:880.119333pt;}
.yc_c00284{bottom:887.958667pt;}
.y5c_c00284{bottom:887.960000pt;}
.y9_c00284{bottom:891.633573pt;}
.y67_c00284{bottom:894.359333pt;}
.y6a_c00284{bottom:895.638667pt;}
.yb_c00284{bottom:907.000000pt;}
.y8_c00284{bottom:907.879333pt;}
.y64_c00284{bottom:912.600000pt;}
.y66_c00284{bottom:916.199333pt;}
.y6_c00284{bottom:925.560000pt;}
.y63_c00284{bottom:949.399467pt;}
.y5_c00284{bottom:952.839467pt;}
.y4_c00284{bottom:994.839467pt;}
.y3_c00284{bottom:1013.319467pt;}
.y2_c00284{bottom:1060.599467pt;}
.h9_c00284{height:16.240000pt;}
.hd_c00284{height:16.241333pt;}
.h15_c00284{height:16.242667pt;}
.ha_c00284{height:16.320000pt;}
.h17_c00284{height:16.560000pt;}
.h1f_c00284{height:17.837333pt;}
.h7_c00284{height:17.838667pt;}
.h1d_c00284{height:17.920000pt;}
.h19_c00284{height:17.921333pt;}
.h8_c00284{height:19.040000pt;}
.hf_c00284{height:22.960000pt;}
.h6_c00284{height:22.961333pt;}
.h1b_c00284{height:32.477333pt;}
.hb_c00284{height:32.480000pt;}
.hc_c00284{height:32.560000pt;}
.he_c00284{height:32.561333pt;}
.h18_c00284{height:32.562667pt;}
.h5_c00284{height:44.072344pt;}
.h2_c00284{height:44.800000pt;}
.h13_c00284{height:48.294844pt;}
.h1e_c00284{height:49.895377pt;}
.h1a_c00284{height:53.680000pt;}
.h12_c00284{height:53.681333pt;}
.h14_c00284{height:53.760000pt;}
.h1c_c00284{height:65.118667pt;}
.h3_c00284{height:68.288000pt;}
.h4_c00284{height:69.376000pt;}
.h16_c00284{height:102.881333pt;}
.h11_c00284{height:113.920000pt;}
.h21_c00284{height:113.921333pt;}
.h10_c00284{height:120.720000pt;}
.h20_c00284{height:130.158667pt;}
.h0_c00284{height:1122.520000pt;}
.h1_c00284{height:1122.666667pt;}
.wb_c00284{width:-569.061333pt;}
.w3_c00284{width:-468.261333pt;}
.wa_c00284{width:-400.184000pt;}
.we_c00284{width:-400.182667pt;}
.w4_c00284{width:-400.181333pt;}
.w5_c00284{width:-332.261333pt;}
.wd_c00284{width:-264.180000pt;}
.w6_c00284{width:-264.178667pt;}
.w7_c00284{width:-188.901333pt;}
.w8_c00284{width:-113.301333pt;}
.w9_c00284{width:-37.701333pt;}
.w2_c00284{width:0.000000pt;}
.wc_c00284{width:0.058667pt;}
.w11_c00284{width:67.840000pt;}
.w12_c00284{width:67.842667pt;}
.w10_c00284{width:68.160000pt;}
.w14_c00284{width:104.880000pt;}
.w13_c00284{width:106.400000pt;}
.wf_c00284{width:211.280000pt;}
.w0_c00284{width:793.701333pt;}
.w1_c00284{width:794.000000pt;}
.x1_c00284{left:-745.700800pt;}
.x2_c00284{left:-680.260800pt;}
.x3_c00284{left:-676.900800pt;}
.xa_c00284{left:-564.420800pt;}
.x4_c00284{left:-463.620800pt;}
.x15_c00284{left:-418.340800pt;}
.xb_c00284{left:-411.540800pt;}
.x5_c00284{left:-395.460800pt;}
.x17_c00284{left:-367.220800pt;}
.xc_c00284{left:-360.500800pt;}
.x11_c00284{left:-343.620800pt;}
.x6_c00284{left:-327.620800pt;}
.x16_c00284{left:-282.340800pt;}
.xd_c00284{left:-275.540800pt;}
.x7_c00284{left:-259.460800pt;}
.x18_c00284{left:-223.860800pt;}
.xe_c00284{left:-217.140800pt;}
.x12_c00284{left:-200.260800pt;}
.x8_c00284{left:-184.260800pt;}
.xf_c00284{left:-131.540800pt;}
.x13_c00284{left:-124.740800pt;}
.x9_c00284{left:-108.660800pt;}
.x19_c00284{left:-72.740933pt;}
.x10_c00284{left:-66.020800pt;}
.x14_c00284{left:-49.140933pt;}
.x0_c00284{left:0.000000pt;}
.x1f_c00284{left:4.720000pt;}
.x3d_c00284{left:37.280000pt;}
.x3c_c00284{left:56.080000pt;}
.x1e_c00284{left:112.240000pt;}
.x1c_c00284{left:113.440000pt;}
.x1d_c00284{left:116.960000pt;}
.x2c_c00284{left:217.120000pt;}
.x33_c00284{left:221.840000pt;}
.x20_c00284{left:323.520000pt;}
.x21_c00284{left:328.240000pt;}
.x38_c00284{left:372.160000pt;}
.x2d_c00284{left:379.600000pt;}
.x22_c00284{left:391.680000pt;}
.x23_c00284{left:396.320000pt;}
.x39_c00284{left:421.515440pt;}
.x2e_c00284{left:428.960000pt;}
.x34_c00284{left:447.440000pt;}
.x24_c00284{left:459.520000pt;}
.x25_c00284{left:464.240000pt;}
.x3a_c00284{left:508.160000pt;}
.x2f_c00284{left:515.600000pt;}
.x26_c00284{left:527.680000pt;}
.x27_c00284{left:532.320000pt;}
.x3b_c00284{left:557.515440pt;}
.x30_c00284{left:564.960000pt;}
.x35_c00284{left:583.440000pt;}
.x28_c00284{left:595.520000pt;}
.x29_c00284{left:600.240000pt;}
.x1b_c00284{left:604.400000pt;}
.x31_c00284{left:644.160000pt;}
.x36_c00284{left:651.600000pt;}
.x2a_c00284{left:663.680000pt;}
.x2b_c00284{left:668.320000pt;}
.x32_c00284{left:693.520000pt;}
.x37_c00284{left:700.960000pt;}
.x1a_c00284{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00285;src:url('chunks/assets/font_0755dad1830a21045ef726cd.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00285;src:url('chunks/assets/font_2dee8160adae41cb88d9a8fc.woff2')format("woff");}.ff3_c00285{font-family:ff3_c00285;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00285;src:url('chunks/assets/font_26de7e70d0263ea239f42a40.woff2')format("woff");}.ff4_c00285{font-family:ff4_c00285;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls7_c00285{letter-spacing:-0.216000px;}
.ls9_c00285{letter-spacing:-0.065880px;}
.ls6_c00285{letter-spacing:0.000000px;}
.ls8_c00285{letter-spacing:0.065880px;}
.ls0_c00285{letter-spacing:0.072000px;}
.ls1_c00285{letter-spacing:0.144000px;}
.ls3_c00285{letter-spacing:0.197640px;}
.ls4_c00285{letter-spacing:21.542760px;}
.ls5_c00285{letter-spacing:25.363800px;}
.ls2_c00285{letter-spacing:28.130400px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00285{word-spacing:-18.072000px;}
.ws0_c00285{word-spacing:-18.000000px;}
.ws1f_c00285{word-spacing:-0.131760px;}
.wse_c00285{word-spacing:-0.072000px;}
.ws4_c00285{word-spacing:-0.057600px;}
.ws7_c00285{word-spacing:0.000000px;}
.ws1b_c00285{word-spacing:0.065880px;}
.ws6_c00285{word-spacing:0.131760px;}
.ws12_c00285{word-spacing:0.288000px;}
.ws11_c00285{word-spacing:1.728000px;}
.ws18_c00285{word-spacing:1.800000px;}
.wsc_c00285{word-spacing:2.376000px;}
.wsb_c00285{word-spacing:2.520000px;}
.ws1e_c00285{word-spacing:5.204520px;}
.ws20_c00285{word-spacing:6.408000px;}
.ws16_c00285{word-spacing:7.488000px;}
.ws17_c00285{word-spacing:7.560000px;}
.ws22_c00285{word-spacing:8.169120px;}
.ws23_c00285{word-spacing:8.432640px;}
.wsd_c00285{word-spacing:10.368000px;}
.ws14_c00285{word-spacing:10.728000px;}
.ws1a_c00285{word-spacing:11.792520px;}
.ws19_c00285{word-spacing:12.121920px;}
.ws5_c00285{word-spacing:12.385440px;}
.ws1c_c00285{word-spacing:12.846600px;}
.ws21_c00285{word-spacing:12.960000px;}
.ws1d_c00285{word-spacing:13.110120px;}
.ws24_c00285{word-spacing:14.295960px;}
.ws15_c00285{word-spacing:17.928000px;}
.ws10_c00285{word-spacing:18.648000px;}
.wsf_c00285{word-spacing:18.720000px;}
.ws8_c00285{word-spacing:20.880000px;}
.ws13_c00285{word-spacing:21.168000px;}
.ws3_c00285{word-spacing:21.744000px;}
.wsa_c00285{word-spacing:22.176000px;}
.ws9_c00285{word-spacing:22.320000px;}
.ws1_c00285{word-spacing:36.000000px;}
._0_c00285{margin-left:-1.152000px;}
._2_c00285{width:1.123200px;}
._1_c00285{width:122.400000px;}
.fc1_c00285{color:rgb(0,0,0);}
.fc0_c00285{color:rgb(35,31,32);}
.fs1_c00285{font-size:65.880000px;}
.fs0_c00285{font-size:72.000000px;}
.y0_c00285{bottom:0.000000px;}
.y1_c00285{bottom:61.748550px;}
.y1d_c00285{bottom:160.600710px;}
.y1c_c00285{bottom:189.044400px;}
.y1b_c00285{bottom:249.974400px;}
.y1a_c00285{bottom:281.024400px;}
.y19_c00285{bottom:312.074400px;}
.y18_c00285{bottom:343.124400px;}
.y17_c00285{bottom:403.780830px;}
.y16_c00285{bottom:432.224520px;}
.y15_c00285{bottom:460.750560px;}
.y14_c00285{bottom:489.194250px;}
.y13_c00285{bottom:550.124400px;}
.y12_c00285{bottom:581.174400px;}
.y11_c00285{bottom:612.224400px;}
.y10_c00285{bottom:643.274400px;}
.yf_c00285{bottom:674.324400px;}
.ye_c00285{bottom:736.244400px;}
.yd_c00285{bottom:798.434400px;}
.yc_c00285{bottom:829.484400px;}
.yb_c00285{bottom:860.534400px;}
.ya_c00285{bottom:891.584400px;}
.y9_c00285{bottom:922.634400px;}
.y8_c00285{bottom:953.684400px;}
.y7_c00285{bottom:984.734400px;}
.y6_c00285{bottom:1015.784400px;}
.y5_c00285{bottom:1046.834400px;}
.y4_c00285{bottom:1108.754400px;}
.y3_c00285{bottom:1139.804400px;}
.y2_c00285{bottom:1193.174400px;}
.h2_c00285{height:50.400000px;}
.h5_c00285{height:71.413920px;}
.h3_c00285{height:76.824000px;}
.h4_c00285{height:78.048000px;}
.h0_c00285{height:1262.835000px;}
.h1_c00285{height:1263.000000px;}
.w0_c00285{width:892.914000px;}
.w1_c00285{width:893.250000px;}
.x0_c00285{left:0.000000px;}
.x1_c00285{left:54.000000px;}
.x2_c00285{left:127.620000px;}
.x3_c00285{left:132.570000px;}
.x5_c00285{left:148.950000px;}
.x4_c00285{left:159.570000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls7_c00285{letter-spacing:-0.192000pt;}
.ls9_c00285{letter-spacing:-0.058560pt;}
.ls6_c00285{letter-spacing:0.000000pt;}
.ls8_c00285{letter-spacing:0.058560pt;}
.ls0_c00285{letter-spacing:0.064000pt;}
.ls1_c00285{letter-spacing:0.128000pt;}
.ls3_c00285{letter-spacing:0.175680pt;}
.ls4_c00285{letter-spacing:19.149120pt;}
.ls5_c00285{letter-spacing:22.545600pt;}
.ls2_c00285{letter-spacing:25.004800pt;}
.ws2_c00285{word-spacing:-16.064000pt;}
.ws0_c00285{word-spacing:-16.000000pt;}
.ws1f_c00285{word-spacing:-0.117120pt;}
.wse_c00285{word-spacing:-0.064000pt;}
.ws4_c00285{word-spacing:-0.051200pt;}
.ws7_c00285{word-spacing:0.000000pt;}
.ws1b_c00285{word-spacing:0.058560pt;}
.ws6_c00285{word-spacing:0.117120pt;}
.ws12_c00285{word-spacing:0.256000pt;}
.ws11_c00285{word-spacing:1.536000pt;}
.ws18_c00285{word-spacing:1.600000pt;}
.wsc_c00285{word-spacing:2.112000pt;}
.wsb_c00285{word-spacing:2.240000pt;}
.ws1e_c00285{word-spacing:4.626240pt;}
.ws20_c00285{word-spacing:5.696000pt;}
.ws16_c00285{word-spacing:6.656000pt;}
.ws17_c00285{word-spacing:6.720000pt;}
.ws22_c00285{word-spacing:7.261440pt;}
.ws23_c00285{word-spacing:7.495680pt;}
.wsd_c00285{word-spacing:9.216000pt;}
.ws14_c00285{word-spacing:9.536000pt;}
.ws1a_c00285{word-spacing:10.482240pt;}
.ws19_c00285{word-spacing:10.775040pt;}
.ws5_c00285{word-spacing:11.009280pt;}
.ws1c_c00285{word-spacing:11.419200pt;}
.ws21_c00285{word-spacing:11.520000pt;}
.ws1d_c00285{word-spacing:11.653440pt;}
.ws24_c00285{word-spacing:12.707520pt;}
.ws15_c00285{word-spacing:15.936000pt;}
.ws10_c00285{word-spacing:16.576000pt;}
.wsf_c00285{word-spacing:16.640000pt;}
.ws8_c00285{word-spacing:18.560000pt;}
.ws13_c00285{word-spacing:18.816000pt;}
.ws3_c00285{word-spacing:19.328000pt;}
.wsa_c00285{word-spacing:19.712000pt;}
.ws9_c00285{word-spacing:19.840000pt;}
.ws1_c00285{word-spacing:32.000000pt;}
._0_c00285{margin-left:-1.024000pt;}
._2_c00285{width:0.998400pt;}
._1_c00285{width:108.800000pt;}
.fs1_c00285{font-size:58.560000pt;}
.fs0_c00285{font-size:64.000000pt;}
.y0_c00285{bottom:0.000000pt;}
.y1_c00285{bottom:54.887600pt;}
.y1d_c00285{bottom:142.756187pt;}
.y1c_c00285{bottom:168.039467pt;}
.y1b_c00285{bottom:222.199467pt;}
.y1a_c00285{bottom:249.799467pt;}
.y19_c00285{bottom:277.399467pt;}
.y18_c00285{bottom:304.999467pt;}
.y17_c00285{bottom:358.916293pt;}
.y16_c00285{bottom:384.199573pt;}
.y15_c00285{bottom:409.556053pt;}
.y14_c00285{bottom:434.839333pt;}
.y13_c00285{bottom:488.999467pt;}
.y12_c00285{bottom:516.599467pt;}
.y11_c00285{bottom:544.199467pt;}
.y10_c00285{bottom:571.799467pt;}
.yf_c00285{bottom:599.399467pt;}
.ye_c00285{bottom:654.439467pt;}
.yd_c00285{bottom:709.719467pt;}
.yc_c00285{bottom:737.319467pt;}
.yb_c00285{bottom:764.919467pt;}
.ya_c00285{bottom:792.519467pt;}
.y9_c00285{bottom:820.119467pt;}
.y8_c00285{bottom:847.719467pt;}
.y7_c00285{bottom:875.319467pt;}
.y6_c00285{bottom:902.919467pt;}
.y5_c00285{bottom:930.519467pt;}
.y4_c00285{bottom:985.559467pt;}
.y3_c00285{bottom:1013.159467pt;}
.y2_c00285{bottom:1060.599467pt;}
.h2_c00285{height:44.800000pt;}
.h5_c00285{height:63.479040pt;}
.h3_c00285{height:68.288000pt;}
.h4_c00285{height:69.376000pt;}
.h0_c00285{height:1122.520000pt;}
.h1_c00285{height:1122.666667pt;}
.w0_c00285{width:793.701333pt;}
.w1_c00285{width:794.000000pt;}
.x0_c00285{left:0.000000pt;}
.x1_c00285{left:48.000000pt;}
.x2_c00285{left:113.440000pt;}
.x3_c00285{left:117.840000pt;}
.x5_c00285{left:132.400000pt;}
.x4_c00285{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00286;src:url('chunks/assets/font_39f75c03d12242c92def58f6.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00286;src:url('chunks/assets/font_04aa2c2f58aa3288ee061f8f.woff2')format("woff");}.ff3_c00286{font-family:ff3_c00286;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00286;src:url('chunks/assets/font_7af5c38555a33b1160315c7e.woff2')format("woff");}.ff4_c00286{font-family:ff4_c00286;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00286;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00286{font-family:ff5_c00286;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00286;src:url('chunks/assets/font_53f15d40f672e37ee1147232.woff2')format("woff");}.ff6_c00286{font-family:ff6_c00286;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00286;src:url('chunks/assets/font_15839d841a67288db149053c.woff2')format("woff");}.ff7_c00286{font-family:ff7_c00286;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00286;src:url('chunks/assets/font_14ae2e0804d46ea2f21c2eef.woff2')format("woff");}.ff8_c00286{font-family:ff8_c00286;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00286;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff9_c00286{font-family:ff9_c00286;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.lsd_c00286{letter-spacing:-0.216000px;}
.lse_c00286{letter-spacing:-0.065880px;}
.lsc_c00286{letter-spacing:0.000000px;}
.lsa_c00286{letter-spacing:0.065880px;}
.ls0_c00286{letter-spacing:0.072000px;}
.ls1_c00286{letter-spacing:0.144000px;}
.ls3_c00286{letter-spacing:0.197640px;}
.ls7_c00286{letter-spacing:16.614936px;}
.ls8_c00286{letter-spacing:16.667640px;}
.lsb_c00286{letter-spacing:19.171080px;}
.ls4_c00286{letter-spacing:21.542760px;}
.ls5_c00286{letter-spacing:25.363800px;}
.ls9_c00286{letter-spacing:26.892216px;}
.ls2_c00286{letter-spacing:28.130400px;}
.ls6_c00286{letter-spacing:28.137600px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00286{word-spacing:-18.072000px;}
.ws0_c00286{word-spacing:-18.000000px;}
.wsa_c00286{word-spacing:-16.535880px;}
.ws8_c00286{word-spacing:-16.404120px;}
.ws2c_c00286{word-spacing:-0.461160px;}
.ws3d_c00286{word-spacing:-0.329400px;}
.ws23_c00286{word-spacing:-0.131760px;}
.ws12_c00286{word-spacing:-0.072000px;}
.ws4_c00286{word-spacing:-0.057600px;}
.wsb_c00286{word-spacing:0.000000px;}
.ws1f_c00286{word-spacing:0.065880px;}
.ws6_c00286{word-spacing:0.131760px;}
.ws3c_c00286{word-spacing:0.263520px;}
.ws16_c00286{word-spacing:0.288000px;}
.ws2f_c00286{word-spacing:1.251720px;}
.ws15_c00286{word-spacing:1.728000px;}
.ws1c_c00286{word-spacing:1.800000px;}
.ws32_c00286{word-spacing:2.160000px;}
.ws10_c00286{word-spacing:2.376000px;}
.ws38_c00286{word-spacing:2.437560px;}
.wsf_c00286{word-spacing:2.520000px;}
.ws3a_c00286{word-spacing:2.766960px;}
.ws36_c00286{word-spacing:3.240000px;}
.ws37_c00286{word-spacing:3.600000px;}
.ws2a_c00286{word-spacing:4.216320px;}
.ws39_c00286{word-spacing:4.479840px;}
.ws2e_c00286{word-spacing:4.968000px;}
.ws22_c00286{word-spacing:5.204520px;}
.ws24_c00286{word-spacing:6.408000px;}
.ws2d_c00286{word-spacing:6.719760px;}
.ws3b_c00286{word-spacing:6.983280px;}
.ws1a_c00286{word-spacing:7.488000px;}
.ws1b_c00286{word-spacing:7.560000px;}
.ws9_c00286{word-spacing:7.576200px;}
.ws35_c00286{word-spacing:7.776000px;}
.ws33_c00286{word-spacing:7.920000px;}
.ws29_c00286{word-spacing:8.103240px;}
.ws26_c00286{word-spacing:8.169120px;}
.ws34_c00286{word-spacing:8.208000px;}
.ws27_c00286{word-spacing:8.432640px;}
.ws11_c00286{word-spacing:10.368000px;}
.ws31_c00286{word-spacing:10.672560px;}
.ws18_c00286{word-spacing:10.728000px;}
.ws30_c00286{word-spacing:11.067840px;}
.ws1e_c00286{word-spacing:11.792520px;}
.ws1d_c00286{word-spacing:12.121920px;}
.ws5_c00286{word-spacing:12.385440px;}
.ws20_c00286{word-spacing:12.846600px;}
.ws25_c00286{word-spacing:12.960000px;}
.ws21_c00286{word-spacing:13.110120px;}
.ws28_c00286{word-spacing:14.295960px;}
.ws2b_c00286{word-spacing:17.787600px;}
.ws19_c00286{word-spacing:17.928000px;}
.ws14_c00286{word-spacing:18.648000px;}
.ws13_c00286{word-spacing:18.720000px;}
.wsc_c00286{word-spacing:20.880000px;}
.ws17_c00286{word-spacing:21.168000px;}
.ws3_c00286{word-spacing:21.744000px;}
.ws7_c00286{word-spacing:21.758400px;}
.wse_c00286{word-spacing:22.176000px;}
.wsd_c00286{word-spacing:22.320000px;}
.ws1_c00286{word-spacing:36.000000px;}
._0_c00286{margin-left:-1.152000px;}
._2_c00286{width:1.123200px;}
._4_c00286{width:7.488000px;}
._3_c00286{width:16.912800px;}
._1_c00286{width:122.400000px;}
.fc2_c00286{color:transparent;}
.fc1_c00286{color:rgb(0,0,0);}
.fc0_c00286{color:rgb(35,31,32);}
.fs1_c00286{font-size:65.880000px;}
.fs0_c00286{font-size:72.000000px;}
.y0_c00286{bottom:0.000000px;}
.y1_c00286{bottom:61.748550px;}
.y1d_c00286{bottom:160.600710px;}
.y1c_c00286{bottom:189.044400px;}
.y3a_c00286{bottom:200.193870px;}
.y39_c00286{bottom:228.719910px;}
.y1b_c00286{bottom:249.974400px;}
.y38_c00286{bottom:257.163600px;}
.y1a_c00286{bottom:281.024400px;}
.y37_c00286{bottom:285.607290px;}
.y19_c00286{bottom:312.074400px;}
.y36_c00286{bottom:342.494670px;}
.y18_c00286{bottom:343.124400px;}
.y35_c00286{bottom:371.020710px;}
.y34_c00286{bottom:399.464400px;}
.y17_c00286{bottom:403.780830px;}
.y16_c00286{bottom:432.224520px;}
.y33_c00286{bottom:460.394400px;}
.y15_c00286{bottom:460.750560px;}
.y14_c00286{bottom:489.194250px;}
.y32_c00286{bottom:491.444400px;}
.y31_c00286{bottom:522.494400px;}
.y13_c00286{bottom:550.124400px;}
.y30_c00286{bottom:553.544400px;}
.y12_c00286{bottom:581.174400px;}
.y2f_c00286{bottom:584.594400px;}
.y11_c00286{bottom:612.224400px;}
.y10_c00286{bottom:643.274400px;}
.y2e_c00286{bottom:645.247020px;}
.y2d_c00286{bottom:673.690710px;}
.yf_c00286{bottom:674.324400px;}
.y2c_c00286{bottom:702.134400px;}
.ye_c00286{bottom:736.244400px;}
.y2b_c00286{bottom:763.064400px;}
.y2a_c00286{bottom:794.114400px;}
.yd_c00286{bottom:798.434400px;}
.y29_c00286{bottom:825.164400px;}
.yc_c00286{bottom:829.484400px;}
.y28_c00286{bottom:856.289130px;}
.yb_c00286{bottom:860.534400px;}
.y27_c00286{bottom:884.996340px;}
.ya_c00286{bottom:891.584400px;}
.y26_c00286{bottom:913.440030px;}
.y9_c00286{bottom:922.634400px;}
.y8_c00286{bottom:953.684400px;}
.y25_c00286{bottom:970.409760px;}
.y7_c00286{bottom:984.734400px;}
.y24_c00286{bottom:998.853450px;}
.y6_c00286{bottom:1015.784400px;}
.y23_c00286{bottom:1027.297140px;}
.y5_c00286{bottom:1046.834400px;}
.y22_c00286{bottom:1055.740830px;}
.y4_c00286{bottom:1108.754400px;}
.y21_c00286{bottom:1112.710560px;}
.y1f_c00286{bottom:1139.804400px;}
.y3_c00286{bottom:1139.804550px;}
.y20_c00286{bottom:1141.154250px;}
.y1e_c00286{bottom:1193.174400px;}
.y2_c00286{bottom:1193.174550px;}
.h2_c00286{height:50.400000px;}
.h6_c00286{height:54.331699px;}
.h5_c00286{height:71.413920px;}
.h3_c00286{height:76.824000px;}
.h4_c00286{height:78.048000px;}
.h0_c00286{height:1262.835000px;}
.h1_c00286{height:1263.000000px;}
.w2_c00286{width:0.000000px;}
.w3_c00286{width:0.066000px;}
.w0_c00286{width:892.914000px;}
.w1_c00286{width:893.250000px;}
.x1_c00286{left:-838.913400px;}
.x2_c00286{left:-765.293400px;}
.x3_c00286{left:-760.343400px;}
.x5_c00286{left:-743.963400px;}
.x4_c00286{left:-733.343400px;}
.x0_c00286{left:0.000000px;}
.xa_c00286{left:127.620000px;}
.x8_c00286{left:148.950000px;}
.x9_c00286{left:159.589620px;}
.x7_c00286{left:679.950000px;}
.x6_c00286{left:804.366150px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.lsd_c00286{letter-spacing:-0.192000pt;}
.lse_c00286{letter-spacing:-0.058560pt;}
.lsc_c00286{letter-spacing:0.000000pt;}
.lsa_c00286{letter-spacing:0.058560pt;}
.ls0_c00286{letter-spacing:0.064000pt;}
.ls1_c00286{letter-spacing:0.128000pt;}
.ls3_c00286{letter-spacing:0.175680pt;}
.ls7_c00286{letter-spacing:14.768832pt;}
.ls8_c00286{letter-spacing:14.815680pt;}
.lsb_c00286{letter-spacing:17.040960pt;}
.ls4_c00286{letter-spacing:19.149120pt;}
.ls5_c00286{letter-spacing:22.545600pt;}
.ls9_c00286{letter-spacing:23.904192pt;}
.ls2_c00286{letter-spacing:25.004800pt;}
.ls6_c00286{letter-spacing:25.011200pt;}
.ws2_c00286{word-spacing:-16.064000pt;}
.ws0_c00286{word-spacing:-16.000000pt;}
.wsa_c00286{word-spacing:-14.698560pt;}
.ws8_c00286{word-spacing:-14.581440pt;}
.ws2c_c00286{word-spacing:-0.409920pt;}
.ws3d_c00286{word-spacing:-0.292800pt;}
.ws23_c00286{word-spacing:-0.117120pt;}
.ws12_c00286{word-spacing:-0.064000pt;}
.ws4_c00286{word-spacing:-0.051200pt;}
.wsb_c00286{word-spacing:0.000000pt;}
.ws1f_c00286{word-spacing:0.058560pt;}
.ws6_c00286{word-spacing:0.117120pt;}
.ws3c_c00286{word-spacing:0.234240pt;}
.ws16_c00286{word-spacing:0.256000pt;}
.ws2f_c00286{word-spacing:1.112640pt;}
.ws15_c00286{word-spacing:1.536000pt;}
.ws1c_c00286{word-spacing:1.600000pt;}
.ws32_c00286{word-spacing:1.920000pt;}
.ws10_c00286{word-spacing:2.112000pt;}
.ws38_c00286{word-spacing:2.166720pt;}
.wsf_c00286{word-spacing:2.240000pt;}
.ws3a_c00286{word-spacing:2.459520pt;}
.ws36_c00286{word-spacing:2.880000pt;}
.ws37_c00286{word-spacing:3.200000pt;}
.ws2a_c00286{word-spacing:3.747840pt;}
.ws39_c00286{word-spacing:3.982080pt;}
.ws2e_c00286{word-spacing:4.416000pt;}
.ws22_c00286{word-spacing:4.626240pt;}
.ws24_c00286{word-spacing:5.696000pt;}
.ws2d_c00286{word-spacing:5.973120pt;}
.ws3b_c00286{word-spacing:6.207360pt;}
.ws1a_c00286{word-spacing:6.656000pt;}
.ws1b_c00286{word-spacing:6.720000pt;}
.ws9_c00286{word-spacing:6.734400pt;}
.ws35_c00286{word-spacing:6.912000pt;}
.ws33_c00286{word-spacing:7.040000pt;}
.ws29_c00286{word-spacing:7.202880pt;}
.ws26_c00286{word-spacing:7.261440pt;}
.ws34_c00286{word-spacing:7.296000pt;}
.ws27_c00286{word-spacing:7.495680pt;}
.ws11_c00286{word-spacing:9.216000pt;}
.ws31_c00286{word-spacing:9.486720pt;}
.ws18_c00286{word-spacing:9.536000pt;}
.ws30_c00286{word-spacing:9.838080pt;}
.ws1e_c00286{word-spacing:10.482240pt;}
.ws1d_c00286{word-spacing:10.775040pt;}
.ws5_c00286{word-spacing:11.009280pt;}
.ws20_c00286{word-spacing:11.419200pt;}
.ws25_c00286{word-spacing:11.520000pt;}
.ws21_c00286{word-spacing:11.653440pt;}
.ws28_c00286{word-spacing:12.707520pt;}
.ws2b_c00286{word-spacing:15.811200pt;}
.ws19_c00286{word-spacing:15.936000pt;}
.ws14_c00286{word-spacing:16.576000pt;}
.ws13_c00286{word-spacing:16.640000pt;}
.wsc_c00286{word-spacing:18.560000pt;}
.ws17_c00286{word-spacing:18.816000pt;}
.ws3_c00286{word-spacing:19.328000pt;}
.ws7_c00286{word-spacing:19.340800pt;}
.wse_c00286{word-spacing:19.712000pt;}
.wsd_c00286{word-spacing:19.840000pt;}
.ws1_c00286{word-spacing:32.000000pt;}
._0_c00286{margin-left:-1.024000pt;}
._2_c00286{width:0.998400pt;}
._4_c00286{width:6.656000pt;}
._3_c00286{width:15.033600pt;}
._1_c00286{width:108.800000pt;}
.fs1_c00286{font-size:58.560000pt;}
.fs0_c00286{font-size:64.000000pt;}
.y0_c00286{bottom:0.000000pt;}
.y1_c00286{bottom:54.887600pt;}
.y1d_c00286{bottom:142.756187pt;}
.y1c_c00286{bottom:168.039467pt;}
.y3a_c00286{bottom:177.950107pt;}
.y39_c00286{bottom:203.306587pt;}
.y1b_c00286{bottom:222.199467pt;}
.y38_c00286{bottom:228.589867pt;}
.y1a_c00286{bottom:249.799467pt;}
.y37_c00286{bottom:253.873147pt;}
.y19_c00286{bottom:277.399467pt;}
.y36_c00286{bottom:304.439707pt;}
.y18_c00286{bottom:304.999467pt;}
.y35_c00286{bottom:329.796187pt;}
.y34_c00286{bottom:355.079467pt;}
.y17_c00286{bottom:358.916293pt;}
.y16_c00286{bottom:384.199573pt;}
.y33_c00286{bottom:409.239467pt;}
.y15_c00286{bottom:409.556053pt;}
.y14_c00286{bottom:434.839333pt;}
.y32_c00286{bottom:436.839467pt;}
.y31_c00286{bottom:464.439467pt;}
.y13_c00286{bottom:488.999467pt;}
.y30_c00286{bottom:492.039467pt;}
.y12_c00286{bottom:516.599467pt;}
.y2f_c00286{bottom:519.639467pt;}
.y11_c00286{bottom:544.199467pt;}
.y10_c00286{bottom:571.799467pt;}
.y2e_c00286{bottom:573.552907pt;}
.y2d_c00286{bottom:598.836187pt;}
.yf_c00286{bottom:599.399467pt;}
.y2c_c00286{bottom:624.119467pt;}
.ye_c00286{bottom:654.439467pt;}
.y2b_c00286{bottom:678.279467pt;}
.y2a_c00286{bottom:705.879467pt;}
.yd_c00286{bottom:709.719467pt;}
.y29_c00286{bottom:733.479467pt;}
.yc_c00286{bottom:737.319467pt;}
.y28_c00286{bottom:761.145893pt;}
.yb_c00286{bottom:764.919467pt;}
.y27_c00286{bottom:786.663413pt;}
.ya_c00286{bottom:792.519467pt;}
.y26_c00286{bottom:811.946693pt;}
.y9_c00286{bottom:820.119467pt;}
.y8_c00286{bottom:847.719467pt;}
.y25_c00286{bottom:862.586453pt;}
.y7_c00286{bottom:875.319467pt;}
.y24_c00286{bottom:887.869733pt;}
.y6_c00286{bottom:902.919467pt;}
.y23_c00286{bottom:913.153013pt;}
.y5_c00286{bottom:930.519467pt;}
.y22_c00286{bottom:938.436293pt;}
.y4_c00286{bottom:985.559467pt;}
.y21_c00286{bottom:989.076053pt;}
.y1f_c00286{bottom:1013.159467pt;}
.y3_c00286{bottom:1013.159600pt;}
.y20_c00286{bottom:1014.359333pt;}
.y1e_c00286{bottom:1060.599467pt;}
.y2_c00286{bottom:1060.599600pt;}
.h2_c00286{height:44.800000pt;}
.h6_c00286{height:48.294844pt;}
.h5_c00286{height:63.479040pt;}
.h3_c00286{height:68.288000pt;}
.h4_c00286{height:69.376000pt;}
.h0_c00286{height:1122.520000pt;}
.h1_c00286{height:1122.666667pt;}
.w2_c00286{width:0.000000pt;}
.w3_c00286{width:0.058667pt;}
.w0_c00286{width:793.701333pt;}
.w1_c00286{width:794.000000pt;}
.x1_c00286{left:-745.700800pt;}
.x2_c00286{left:-680.260800pt;}
.x3_c00286{left:-675.860800pt;}
.x5_c00286{left:-661.300800pt;}
.x4_c00286{left:-651.860800pt;}
.x0_c00286{left:0.000000pt;}
.xa_c00286{left:113.440000pt;}
.x8_c00286{left:132.400000pt;}
.x9_c00286{left:141.857440pt;}
.x7_c00286{left:604.400000pt;}
.x6_c00286{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00287;src:url('chunks/assets/font_a837c6270dec622a5722a619.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00287;src:url('chunks/assets/font_b9501920c41382d48def9ab2.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00287;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff4_c00287{font-family:ff4_c00287;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.lsc_c00287{letter-spacing:-0.197640px;}
.lsa_c00287{letter-spacing:-0.065880px;}
.ls9_c00287{letter-spacing:0.000000px;}
.lsb_c00287{letter-spacing:0.065880px;}
.ls0_c00287{letter-spacing:0.072000px;}
.ls5_c00287{letter-spacing:0.144000px;}
.ls1_c00287{letter-spacing:0.197640px;}
.ls6_c00287{letter-spacing:10.311120px;}
.ls4_c00287{letter-spacing:16.272360px;}
.ls2_c00287{letter-spacing:18.446400px;}
.ls3_c00287{letter-spacing:19.500480px;}
.ls7_c00287{letter-spacing:19.944000px;}
.ls8_c00287{letter-spacing:36.720000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00287{word-spacing:-35.970480px;}
.ws8_c00287{word-spacing:-18.144000px;}
.ws1_c00287{word-spacing:-18.072000px;}
.ws0_c00287{word-spacing:-18.000000px;}
.ws2_c00287{word-spacing:-16.667640px;}
.ws9_c00287{word-spacing:-16.470000px;}
.ws3_c00287{word-spacing:-16.404120px;}
.ws20_c00287{word-spacing:-0.072000px;}
.ws18_c00287{word-spacing:-0.065880px;}
.wsb_c00287{word-spacing:0.000000px;}
.ws15_c00287{word-spacing:0.131760px;}
.ws1b_c00287{word-spacing:0.648000px;}
.ws4_c00287{word-spacing:1.106784px;}
.ws24_c00287{word-spacing:1.296000px;}
.ws1e_c00287{word-spacing:1.368000px;}
.ws25_c00287{word-spacing:1.440000px;}
.ws26_c00287{word-spacing:1.656000px;}
.ws1d_c00287{word-spacing:1.728000px;}
.ws23_c00287{word-spacing:1.800000px;}
.ws14_c00287{word-spacing:1.844640px;}
.ws13_c00287{word-spacing:1.976400px;}
.ws11_c00287{word-spacing:2.042280px;}
.ws12_c00287{word-spacing:2.437560px;}
.wse_c00287{word-spacing:2.448000px;}
.ws17_c00287{word-spacing:2.701080px;}
.ws16_c00287{word-spacing:2.766960px;}
.ws7_c00287{word-spacing:2.964600px;}
.ws6_c00287{word-spacing:3.030480px;}
.ws10_c00287{word-spacing:6.048000px;}
.wsf_c00287{word-spacing:6.120000px;}
.ws21_c00287{word-spacing:6.408000px;}
.wsd_c00287{word-spacing:9.720000px;}
.wsc_c00287{word-spacing:10.008000px;}
.ws1a_c00287{word-spacing:10.080000px;}
.ws22_c00287{word-spacing:11.160000px;}
.ws28_c00287{word-spacing:12.168000px;}
.ws1f_c00287{word-spacing:13.248000px;}
.ws1c_c00287{word-spacing:13.608000px;}
.ws19_c00287{word-spacing:17.568000px;}
.wsa_c00287{word-spacing:18.144000px;}
.ws27_c00287{word-spacing:18.360000px;}
._2_c00287{margin-left:-19.986840px;}
._1_c00287{margin-left:-1.015200px;}
._0_c00287{width:1.094400px;}
.fc1_c00287{color:rgb(0,0,0);}
.fc0_c00287{color:rgb(35,31,32);}
.fs1_c00287{font-size:65.880000px;}
.fs0_c00287{font-size:72.000000px;}
.y0_c00287{bottom:0.000000px;}
.y1_c00287{bottom:61.748550px;}
.y1d_c00287{bottom:172.394400px;}
.y1c_c00287{bottom:203.444400px;}
.y1b_c00287{bottom:234.494400px;}
.y1a_c00287{bottom:265.454250px;}
.y19_c00287{bottom:296.504250px;}
.y18_c00287{bottom:327.554250px;}
.y17_c00287{bottom:389.654250px;}
.y16_c00287{bottom:420.704250px;}
.y15_c00287{bottom:451.754250px;}
.y14_c00287{bottom:482.804250px;}
.y13_c00287{bottom:513.854250px;}
.y12_c00287{bottom:574.518210px;}
.y11_c00287{bottom:603.044250px;}
.y10_c00287{bottom:663.974400px;}
.yf_c00287{bottom:695.024400px;}
.ye_c00287{bottom:726.074400px;}
.yd_c00287{bottom:786.716070px;}
.yc_c00287{bottom:815.159760px;}
.yb_c00287{bottom:843.603450px;}
.ya_c00287{bottom:900.573180px;}
.y9_c00287{bottom:929.016870px;}
.y8_c00287{bottom:957.460560px;}
.y7_c00287{bottom:985.904250px;}
.y6_c00287{bottom:1046.834400px;}
.y5_c00287{bottom:1077.884400px;}
.y4_c00287{bottom:1108.934400px;}
.y3_c00287{bottom:1139.984400px;}
.y2_c00287{bottom:1193.174400px;}
.h2_c00287{height:50.400000px;}
.h4_c00287{height:71.413920px;}
.h3_c00287{height:76.824000px;}
.h5_c00287{height:78.048000px;}
.h6_c00287{height:78.048600px;}
.h0_c00287{height:1262.835000px;}
.h1_c00287{height:1263.000000px;}
.w0_c00287{width:892.914000px;}
.w1_c00287{width:893.250000px;}
.x0_c00287{left:0.000000px;}
.x1_c00287{left:54.000000px;}
.x2_c00287{left:127.620000px;}
.x4_c00287{left:148.950000px;}
.x3_c00287{left:159.570000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.lsc_c00287{letter-spacing:-0.175680pt;}
.lsa_c00287{letter-spacing:-0.058560pt;}
.ls9_c00287{letter-spacing:0.000000pt;}
.lsb_c00287{letter-spacing:0.058560pt;}
.ls0_c00287{letter-spacing:0.064000pt;}
.ls5_c00287{letter-spacing:0.128000pt;}
.ls1_c00287{letter-spacing:0.175680pt;}
.ls6_c00287{letter-spacing:9.165440pt;}
.ls4_c00287{letter-spacing:14.464320pt;}
.ls2_c00287{letter-spacing:16.396800pt;}
.ls3_c00287{letter-spacing:17.333760pt;}
.ls7_c00287{letter-spacing:17.728000pt;}
.ls8_c00287{letter-spacing:32.640000pt;}
.ws5_c00287{word-spacing:-31.973760pt;}
.ws8_c00287{word-spacing:-16.128000pt;}
.ws1_c00287{word-spacing:-16.064000pt;}
.ws0_c00287{word-spacing:-16.000000pt;}
.ws2_c00287{word-spacing:-14.815680pt;}
.ws9_c00287{word-spacing:-14.640000pt;}
.ws3_c00287{word-spacing:-14.581440pt;}
.ws20_c00287{word-spacing:-0.064000pt;}
.ws18_c00287{word-spacing:-0.058560pt;}
.wsb_c00287{word-spacing:0.000000pt;}
.ws15_c00287{word-spacing:0.117120pt;}
.ws1b_c00287{word-spacing:0.576000pt;}
.ws4_c00287{word-spacing:0.983808pt;}
.ws24_c00287{word-spacing:1.152000pt;}
.ws1e_c00287{word-spacing:1.216000pt;}
.ws25_c00287{word-spacing:1.280000pt;}
.ws26_c00287{word-spacing:1.472000pt;}
.ws1d_c00287{word-spacing:1.536000pt;}
.ws23_c00287{word-spacing:1.600000pt;}
.ws14_c00287{word-spacing:1.639680pt;}
.ws13_c00287{word-spacing:1.756800pt;}
.ws11_c00287{word-spacing:1.815360pt;}
.ws12_c00287{word-spacing:2.166720pt;}
.wse_c00287{word-spacing:2.176000pt;}
.ws17_c00287{word-spacing:2.400960pt;}
.ws16_c00287{word-spacing:2.459520pt;}
.ws7_c00287{word-spacing:2.635200pt;}
.ws6_c00287{word-spacing:2.693760pt;}
.ws10_c00287{word-spacing:5.376000pt;}
.wsf_c00287{word-spacing:5.440000pt;}
.ws21_c00287{word-spacing:5.696000pt;}
.wsd_c00287{word-spacing:8.640000pt;}
.wsc_c00287{word-spacing:8.896000pt;}
.ws1a_c00287{word-spacing:8.960000pt;}
.ws22_c00287{word-spacing:9.920000pt;}
.ws28_c00287{word-spacing:10.816000pt;}
.ws1f_c00287{word-spacing:11.776000pt;}
.ws1c_c00287{word-spacing:12.096000pt;}
.ws19_c00287{word-spacing:15.616000pt;}
.wsa_c00287{word-spacing:16.128000pt;}
.ws27_c00287{word-spacing:16.320000pt;}
._2_c00287{margin-left:-17.766080pt;}
._1_c00287{margin-left:-0.902400pt;}
._0_c00287{width:0.972800pt;}
.fs1_c00287{font-size:58.560000pt;}
.fs0_c00287{font-size:64.000000pt;}
.y0_c00287{bottom:0.000000pt;}
.y1_c00287{bottom:54.887600pt;}
.y1d_c00287{bottom:153.239467pt;}
.y1c_c00287{bottom:180.839467pt;}
.y1b_c00287{bottom:208.439467pt;}
.y1a_c00287{bottom:235.959333pt;}
.y19_c00287{bottom:263.559333pt;}
.y18_c00287{bottom:291.159333pt;}
.y17_c00287{bottom:346.359333pt;}
.y16_c00287{bottom:373.959333pt;}
.y15_c00287{bottom:401.559333pt;}
.y14_c00287{bottom:429.159333pt;}
.y13_c00287{bottom:456.759333pt;}
.y12_c00287{bottom:510.682853pt;}
.y11_c00287{bottom:536.039333pt;}
.y10_c00287{bottom:590.199467pt;}
.yf_c00287{bottom:617.799467pt;}
.ye_c00287{bottom:645.399467pt;}
.yd_c00287{bottom:699.303173pt;}
.yc_c00287{bottom:724.586453pt;}
.yb_c00287{bottom:749.869733pt;}
.ya_c00287{bottom:800.509493pt;}
.y9_c00287{bottom:825.792773pt;}
.y8_c00287{bottom:851.076053pt;}
.y7_c00287{bottom:876.359333pt;}
.y6_c00287{bottom:930.519467pt;}
.y5_c00287{bottom:958.119467pt;}
.y4_c00287{bottom:985.719467pt;}
.y3_c00287{bottom:1013.319467pt;}
.y2_c00287{bottom:1060.599467pt;}
.h2_c00287{height:44.800000pt;}
.h4_c00287{height:63.479040pt;}
.h3_c00287{height:68.288000pt;}
.h5_c00287{height:69.376000pt;}
.h6_c00287{height:69.376533pt;}
.h0_c00287{height:1122.520000pt;}
.h1_c00287{height:1122.666667pt;}
.w0_c00287{width:793.701333pt;}
.w1_c00287{width:794.000000pt;}
.x0_c00287{left:0.000000pt;}
.x1_c00287{left:48.000000pt;}
.x2_c00287{left:113.440000pt;}
.x4_c00287{left:132.400000pt;}
.x3_c00287{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00288;src:url('chunks/assets/font_7d9f3803f1f15371ac036353.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00288;src:url('chunks/assets/font_074f4a1e02693aea33fe4141.woff2')format("woff");}.ff3_c00288{font-family:ff3_c00288;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00288;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff4_c00288{font-family:ff4_c00288;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00288;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00288{font-family:ff5_c00288;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00288;src:url('chunks/assets/font_0fae7b294ae0398e9adde548.woff2')format("woff");}.ff6_c00288{font-family:ff6_c00288;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00288;src:url('chunks/assets/font_8dc798baa40414da278ded6b.woff2')format("woff");}.ff7_c00288{font-family:ff7_c00288;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00288;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff8_c00288{font-family:ff8_c00288;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls12_c00288{letter-spacing:-0.360000px;}
.ls10_c00288{letter-spacing:-0.197640px;}
.ls11_c00288{letter-spacing:-0.072000px;}
.lsf_c00288{letter-spacing:-0.065880px;}
.lse_c00288{letter-spacing:0.000000px;}
.lsa_c00288{letter-spacing:0.065880px;}
.ls0_c00288{letter-spacing:0.072000px;}
.ls5_c00288{letter-spacing:0.144000px;}
.ls1_c00288{letter-spacing:0.197640px;}
.ls6_c00288{letter-spacing:10.311120px;}
.ls4_c00288{letter-spacing:16.272360px;}
.lsd_c00288{letter-spacing:16.601760px;}
.ls9_c00288{letter-spacing:16.680816px;}
.ls2_c00288{letter-spacing:18.446400px;}
.ls3_c00288{letter-spacing:19.500480px;}
.ls7_c00288{letter-spacing:19.944000px;}
.lsc_c00288{letter-spacing:22.135680px;}
.lsb_c00288{letter-spacing:27.228204px;}
.ls8_c00288{letter-spacing:36.720000px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00288{word-spacing:-35.970480px;}
.ws8_c00288{word-spacing:-18.144000px;}
.ws1_c00288{word-spacing:-18.072000px;}
.ws0_c00288{word-spacing:-18.000000px;}
.ws2_c00288{word-spacing:-16.667640px;}
.ws9_c00288{word-spacing:-16.470000px;}
.ws3_c00288{word-spacing:-16.404120px;}
.ws39_c00288{word-spacing:-0.461160px;}
.ws35_c00288{word-spacing:-0.197640px;}
.ws37_c00288{word-spacing:-0.131760px;}
.ws2a_c00288{word-spacing:-0.072000px;}
.ws23_c00288{word-spacing:-0.065880px;}
.wsc_c00288{word-spacing:0.000000px;}
.ws34_c00288{word-spacing:0.065880px;}
.ws20_c00288{word-spacing:0.131760px;}
.wsd_c00288{word-spacing:0.197640px;}
.ws36_c00288{word-spacing:0.263520px;}
.ws15_c00288{word-spacing:0.461160px;}
.ws11_c00288{word-spacing:0.504000px;}
.ws3e_c00288{word-spacing:0.527040px;}
.ws3b_c00288{word-spacing:0.576000px;}
.ws44_c00288{word-spacing:0.592920px;}
.ws10_c00288{word-spacing:0.648000px;}
.ws3a_c00288{word-spacing:0.720000px;}
.wse_c00288{word-spacing:0.936000px;}
.ws45_c00288{word-spacing:0.988200px;}
.wsb_c00288{word-spacing:1.100196px;}
.ws4_c00288{word-spacing:1.106784px;}
.ws2e_c00288{word-spacing:1.296000px;}
.ws33_c00288{word-spacing:1.317600px;}
.ws28_c00288{word-spacing:1.368000px;}
.ws2f_c00288{word-spacing:1.440000px;}
.ws30_c00288{word-spacing:1.656000px;}
.ws27_c00288{word-spacing:1.728000px;}
.ws2d_c00288{word-spacing:1.800000px;}
.ws1f_c00288{word-spacing:1.844640px;}
.wsf_c00288{word-spacing:1.872000px;}
.ws1e_c00288{word-spacing:1.976400px;}
.ws1c_c00288{word-spacing:2.042280px;}
.ws4c_c00288{word-spacing:2.305800px;}
.ws1d_c00288{word-spacing:2.437560px;}
.ws19_c00288{word-spacing:2.448000px;}
.ws22_c00288{word-spacing:2.701080px;}
.ws21_c00288{word-spacing:2.766960px;}
.ws7_c00288{word-spacing:2.964600px;}
.ws6_c00288{word-spacing:3.030480px;}
.ws38_c00288{word-spacing:3.096360px;}
.ws42_c00288{word-spacing:3.528000px;}
.ws41_c00288{word-spacing:3.600000px;}
.ws48_c00288{word-spacing:3.888000px;}
.ws14_c00288{word-spacing:4.492800px;}
.ws13_c00288{word-spacing:4.896000px;}
.ws3c_c00288{word-spacing:4.968000px;}
.ws12_c00288{word-spacing:5.032800px;}
.ws3d_c00288{word-spacing:5.040000px;}
.ws43_c00288{word-spacing:5.400000px;}
.ws4b_c00288{word-spacing:5.665680px;}
.ws4a_c00288{word-spacing:5.797440px;}
.ws1b_c00288{word-spacing:6.048000px;}
.ws1a_c00288{word-spacing:6.120000px;}
.ws2b_c00288{word-spacing:6.408000px;}
.ws49_c00288{word-spacing:8.568000px;}
.ws16_c00288{word-spacing:8.640000px;}
.ws18_c00288{word-spacing:9.720000px;}
.ws17_c00288{word-spacing:10.008000px;}
.ws25_c00288{word-spacing:10.080000px;}
.ws40_c00288{word-spacing:11.067840px;}
.ws2c_c00288{word-spacing:11.160000px;}
.ws3f_c00288{word-spacing:11.397240px;}
.ws32_c00288{word-spacing:12.168000px;}
.ws29_c00288{word-spacing:13.248000px;}
.ws26_c00288{word-spacing:13.608000px;}
.ws46_c00288{word-spacing:14.760000px;}
.ws47_c00288{word-spacing:15.048000px;}
.ws24_c00288{word-spacing:17.568000px;}
.wsa_c00288{word-spacing:18.144000px;}
.ws31_c00288{word-spacing:18.360000px;}
._2_c00288{margin-left:-19.986840px;}
._1_c00288{margin-left:-1.015200px;}
._0_c00288{width:1.094400px;}
._3_c00288{width:2.828880px;}
._4_c00288{width:33.768000px;}
.fc2_c00288{color:transparent;}
.fc1_c00288{color:rgb(0,0,0);}
.fc0_c00288{color:rgb(35,31,32);}
.fs1_c00288{font-size:65.880000px;}
.fs0_c00288{font-size:72.000000px;}
.y0_c00288{bottom:0.000000px;}
.y1_c00288{bottom:61.748550px;}
.y1d_c00288{bottom:172.394400px;}
.y39_c00288{bottom:183.907020px;}
.y1c_c00288{bottom:203.444400px;}
.y38_c00288{bottom:212.350710px;}
.y1b_c00288{bottom:234.494400px;}
.y37_c00288{bottom:240.794400px;}
.y1a_c00288{bottom:265.454250px;}
.y19_c00288{bottom:296.504250px;}
.y36_c00288{bottom:301.724250px;}
.y18_c00288{bottom:327.554250px;}
.y35_c00288{bottom:332.774250px;}
.y34_c00288{bottom:363.824250px;}
.y17_c00288{bottom:389.654250px;}
.y33_c00288{bottom:394.874250px;}
.y16_c00288{bottom:420.704250px;}
.y15_c00288{bottom:451.754250px;}
.y32_c00288{bottom:455.534670px;}
.y14_c00288{bottom:482.804250px;}
.y31_c00288{bottom:483.978360px;}
.y30_c00288{bottom:512.504400px;}
.y13_c00288{bottom:513.854250px;}
.y2f_c00288{bottom:573.344250px;}
.y12_c00288{bottom:574.518210px;}
.y11_c00288{bottom:603.044250px;}
.y2e_c00288{bottom:604.394250px;}
.y2d_c00288{bottom:635.444250px;}
.y10_c00288{bottom:663.974400px;}
.yf_c00288{bottom:695.024400px;}
.y2c_c00288{bottom:696.183330px;}
.y2b_c00288{bottom:724.627020px;}
.ye_c00288{bottom:726.074400px;}
.y2a_c00288{bottom:753.070710px;}
.y29_c00288{bottom:781.514400px;}
.yd_c00288{bottom:786.716070px;}
.yc_c00288{bottom:815.159760px;}
.y28_c00288{bottom:842.444250px;}
.yb_c00288{bottom:843.603450px;}
.y27_c00288{bottom:873.494250px;}
.ya_c00288{bottom:900.573180px;}
.y26_c00288{bottom:904.544250px;}
.y9_c00288{bottom:929.016870px;}
.y8_c00288{bottom:957.460560px;}
.y25_c00288{bottom:965.200530px;}
.y7_c00288{bottom:985.904250px;}
.y24_c00288{bottom:993.726570px;}
.y6_c00288{bottom:1046.834400px;}
.y23_c00288{bottom:1054.472640px;}
.y5_c00288{bottom:1077.884400px;}
.y22_c00288{bottom:1084.266870px;}
.y4_c00288{bottom:1108.934400px;}
.y21_c00288{bottom:1112.710560px;}
.y1f_c00288{bottom:1139.984400px;}
.y3_c00288{bottom:1139.984550px;}
.y20_c00288{bottom:1141.154250px;}
.y1e_c00288{bottom:1193.174400px;}
.y2_c00288{bottom:1193.174550px;}
.h2_c00288{height:50.400000px;}
.h4_c00288{height:71.413920px;}
.h3_c00288{height:76.824000px;}
.h5_c00288{height:78.048000px;}
.h6_c00288{height:78.048600px;}
.h7_c00288{height:78.095040px;}
.h0_c00288{height:1262.835000px;}
.h1_c00288{height:1263.000000px;}
.w2_c00288{width:0.000000px;}
.w3_c00288{width:0.066000px;}
.w0_c00288{width:892.914000px;}
.w1_c00288{width:893.250000px;}
.x1_c00288{left:-838.913400px;}
.x2_c00288{left:-765.293400px;}
.x4_c00288{left:-743.963400px;}
.x3_c00288{left:-733.343400px;}
.x0_c00288{left:0.000000px;}
.x9_c00288{left:127.620000px;}
.x7_c00288{left:148.950000px;}
.xa_c00288{left:153.084000px;}
.x8_c00288{left:159.570000px;}
.x6_c00288{left:679.950000px;}
.x5_c00288{left:804.366150px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls12_c00288{letter-spacing:-0.320000pt;}
.ls10_c00288{letter-spacing:-0.175680pt;}
.ls11_c00288{letter-spacing:-0.064000pt;}
.lsf_c00288{letter-spacing:-0.058560pt;}
.lse_c00288{letter-spacing:0.000000pt;}
.lsa_c00288{letter-spacing:0.058560pt;}
.ls0_c00288{letter-spacing:0.064000pt;}
.ls5_c00288{letter-spacing:0.128000pt;}
.ls1_c00288{letter-spacing:0.175680pt;}
.ls6_c00288{letter-spacing:9.165440pt;}
.ls4_c00288{letter-spacing:14.464320pt;}
.lsd_c00288{letter-spacing:14.757120pt;}
.ls9_c00288{letter-spacing:14.827392pt;}
.ls2_c00288{letter-spacing:16.396800pt;}
.ls3_c00288{letter-spacing:17.333760pt;}
.ls7_c00288{letter-spacing:17.728000pt;}
.lsc_c00288{letter-spacing:19.676160pt;}
.lsb_c00288{letter-spacing:24.202848pt;}
.ls8_c00288{letter-spacing:32.640000pt;}
.ws5_c00288{word-spacing:-31.973760pt;}
.ws8_c00288{word-spacing:-16.128000pt;}
.ws1_c00288{word-spacing:-16.064000pt;}
.ws0_c00288{word-spacing:-16.000000pt;}
.ws2_c00288{word-spacing:-14.815680pt;}
.ws9_c00288{word-spacing:-14.640000pt;}
.ws3_c00288{word-spacing:-14.581440pt;}
.ws39_c00288{word-spacing:-0.409920pt;}
.ws35_c00288{word-spacing:-0.175680pt;}
.ws37_c00288{word-spacing:-0.117120pt;}
.ws2a_c00288{word-spacing:-0.064000pt;}
.ws23_c00288{word-spacing:-0.058560pt;}
.wsc_c00288{word-spacing:0.000000pt;}
.ws34_c00288{word-spacing:0.058560pt;}
.ws20_c00288{word-spacing:0.117120pt;}
.wsd_c00288{word-spacing:0.175680pt;}
.ws36_c00288{word-spacing:0.234240pt;}
.ws15_c00288{word-spacing:0.409920pt;}
.ws11_c00288{word-spacing:0.448000pt;}
.ws3e_c00288{word-spacing:0.468480pt;}
.ws3b_c00288{word-spacing:0.512000pt;}
.ws44_c00288{word-spacing:0.527040pt;}
.ws10_c00288{word-spacing:0.576000pt;}
.ws3a_c00288{word-spacing:0.640000pt;}
.wse_c00288{word-spacing:0.832000pt;}
.ws45_c00288{word-spacing:0.878400pt;}
.wsb_c00288{word-spacing:0.977952pt;}
.ws4_c00288{word-spacing:0.983808pt;}
.ws2e_c00288{word-spacing:1.152000pt;}
.ws33_c00288{word-spacing:1.171200pt;}
.ws28_c00288{word-spacing:1.216000pt;}
.ws2f_c00288{word-spacing:1.280000pt;}
.ws30_c00288{word-spacing:1.472000pt;}
.ws27_c00288{word-spacing:1.536000pt;}
.ws2d_c00288{word-spacing:1.600000pt;}
.ws1f_c00288{word-spacing:1.639680pt;}
.wsf_c00288{word-spacing:1.664000pt;}
.ws1e_c00288{word-spacing:1.756800pt;}
.ws1c_c00288{word-spacing:1.815360pt;}
.ws4c_c00288{word-spacing:2.049600pt;}
.ws1d_c00288{word-spacing:2.166720pt;}
.ws19_c00288{word-spacing:2.176000pt;}
.ws22_c00288{word-spacing:2.400960pt;}
.ws21_c00288{word-spacing:2.459520pt;}
.ws7_c00288{word-spacing:2.635200pt;}
.ws6_c00288{word-spacing:2.693760pt;}
.ws38_c00288{word-spacing:2.752320pt;}
.ws42_c00288{word-spacing:3.136000pt;}
.ws41_c00288{word-spacing:3.200000pt;}
.ws48_c00288{word-spacing:3.456000pt;}
.ws14_c00288{word-spacing:3.993600pt;}
.ws13_c00288{word-spacing:4.352000pt;}
.ws3c_c00288{word-spacing:4.416000pt;}
.ws12_c00288{word-spacing:4.473600pt;}
.ws3d_c00288{word-spacing:4.480000pt;}
.ws43_c00288{word-spacing:4.800000pt;}
.ws4b_c00288{word-spacing:5.036160pt;}
.ws4a_c00288{word-spacing:5.153280pt;}
.ws1b_c00288{word-spacing:5.376000pt;}
.ws1a_c00288{word-spacing:5.440000pt;}
.ws2b_c00288{word-spacing:5.696000pt;}
.ws49_c00288{word-spacing:7.616000pt;}
.ws16_c00288{word-spacing:7.680000pt;}
.ws18_c00288{word-spacing:8.640000pt;}
.ws17_c00288{word-spacing:8.896000pt;}
.ws25_c00288{word-spacing:8.960000pt;}
.ws40_c00288{word-spacing:9.838080pt;}
.ws2c_c00288{word-spacing:9.920000pt;}
.ws3f_c00288{word-spacing:10.130880pt;}
.ws32_c00288{word-spacing:10.816000pt;}
.ws29_c00288{word-spacing:11.776000pt;}
.ws26_c00288{word-spacing:12.096000pt;}
.ws46_c00288{word-spacing:13.120000pt;}
.ws47_c00288{word-spacing:13.376000pt;}
.ws24_c00288{word-spacing:15.616000pt;}
.wsa_c00288{word-spacing:16.128000pt;}
.ws31_c00288{word-spacing:16.320000pt;}
._2_c00288{margin-left:-17.766080pt;}
._1_c00288{margin-left:-0.902400pt;}
._0_c00288{width:0.972800pt;}
._3_c00288{width:2.514560pt;}
._4_c00288{width:30.016000pt;}
.fs1_c00288{font-size:58.560000pt;}
.fs0_c00288{font-size:64.000000pt;}
.y0_c00288{bottom:0.000000pt;}
.y1_c00288{bottom:54.887600pt;}
.y1d_c00288{bottom:153.239467pt;}
.y39_c00288{bottom:163.472907pt;}
.y1c_c00288{bottom:180.839467pt;}
.y38_c00288{bottom:188.756187pt;}
.y1b_c00288{bottom:208.439467pt;}
.y37_c00288{bottom:214.039467pt;}
.y1a_c00288{bottom:235.959333pt;}
.y19_c00288{bottom:263.559333pt;}
.y36_c00288{bottom:268.199333pt;}
.y18_c00288{bottom:291.159333pt;}
.y35_c00288{bottom:295.799333pt;}
.y34_c00288{bottom:323.399333pt;}
.y17_c00288{bottom:346.359333pt;}
.y33_c00288{bottom:350.999333pt;}
.y16_c00288{bottom:373.959333pt;}
.y15_c00288{bottom:401.559333pt;}
.y32_c00288{bottom:404.919707pt;}
.y14_c00288{bottom:429.159333pt;}
.y31_c00288{bottom:430.202987pt;}
.y30_c00288{bottom:455.559467pt;}
.y13_c00288{bottom:456.759333pt;}
.y2f_c00288{bottom:509.639333pt;}
.y12_c00288{bottom:510.682853pt;}
.y11_c00288{bottom:536.039333pt;}
.y2e_c00288{bottom:537.239333pt;}
.y2d_c00288{bottom:564.839333pt;}
.y10_c00288{bottom:590.199467pt;}
.yf_c00288{bottom:617.799467pt;}
.y2c_c00288{bottom:618.829627pt;}
.y2b_c00288{bottom:644.112907pt;}
.ye_c00288{bottom:645.399467pt;}
.y2a_c00288{bottom:669.396187pt;}
.y29_c00288{bottom:694.679467pt;}
.yd_c00288{bottom:699.303173pt;}
.yc_c00288{bottom:724.586453pt;}
.y28_c00288{bottom:748.839333pt;}
.yb_c00288{bottom:749.869733pt;}
.y27_c00288{bottom:776.439333pt;}
.ya_c00288{bottom:800.509493pt;}
.y26_c00288{bottom:804.039333pt;}
.y9_c00288{bottom:825.792773pt;}
.y8_c00288{bottom:851.076053pt;}
.y25_c00288{bottom:857.956027pt;}
.y7_c00288{bottom:876.359333pt;}
.y24_c00288{bottom:883.312507pt;}
.y6_c00288{bottom:930.519467pt;}
.y23_c00288{bottom:937.309013pt;}
.y5_c00288{bottom:958.119467pt;}
.y22_c00288{bottom:963.792773pt;}
.y4_c00288{bottom:985.719467pt;}
.y21_c00288{bottom:989.076053pt;}
.y1f_c00288{bottom:1013.319467pt;}
.y3_c00288{bottom:1013.319600pt;}
.y20_c00288{bottom:1014.359333pt;}
.y1e_c00288{bottom:1060.599467pt;}
.y2_c00288{bottom:1060.599600pt;}
.h2_c00288{height:44.800000pt;}
.h4_c00288{height:63.479040pt;}
.h3_c00288{height:68.288000pt;}
.h5_c00288{height:69.376000pt;}
.h6_c00288{height:69.376533pt;}
.h7_c00288{height:69.417813pt;}
.h0_c00288{height:1122.520000pt;}
.h1_c00288{height:1122.666667pt;}
.w2_c00288{width:0.000000pt;}
.w3_c00288{width:0.058667pt;}
.w0_c00288{width:793.701333pt;}
.w1_c00288{width:794.000000pt;}
.x1_c00288{left:-745.700800pt;}
.x2_c00288{left:-680.260800pt;}
.x4_c00288{left:-661.300800pt;}
.x3_c00288{left:-651.860800pt;}
.x0_c00288{left:0.000000pt;}
.x9_c00288{left:113.440000pt;}
.x7_c00288{left:132.400000pt;}
.xa_c00288{left:136.074667pt;}
.x8_c00288{left:141.840000pt;}
.x6_c00288{left:604.400000pt;}
.x5_c00288{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00289;src:url('chunks/assets/font_82526bb20a2348dc4b881035.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00289;src:url('chunks/assets/font_f27a8eb7b7de7d2a3a9fc886.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.lsa_c00289{letter-spacing:-0.216000px;}
.ls9_c00289{letter-spacing:-0.065880px;}
.ls8_c00289{letter-spacing:0.000000px;}
.ls1_c00289{letter-spacing:0.065880px;}
.ls3_c00289{letter-spacing:0.072000px;}
.ls5_c00289{letter-spacing:0.144000px;}
.ls0_c00289{letter-spacing:0.197640px;}
.ls4_c00289{letter-spacing:0.210816px;}
.ls2_c00289{letter-spacing:16.601760px;}
.ls6_c00289{letter-spacing:19.895760px;}
.ls7_c00289{letter-spacing:32.149440px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00289{word-spacing:-18.000000px;}
.ws3_c00289{word-spacing:-16.470000px;}
.wsc_c00289{word-spacing:-0.461160px;}
.ws15_c00289{word-spacing:-0.197640px;}
.ws11_c00289{word-spacing:-0.131760px;}
.ws18_c00289{word-spacing:-0.072000px;}
.ws1a_c00289{word-spacing:-0.065880px;}
.ws8_c00289{word-spacing:0.000000px;}
.ws5_c00289{word-spacing:0.026352px;}
.ws1_c00289{word-spacing:0.131760px;}
.ws26_c00289{word-spacing:0.216000px;}
.ws12_c00289{word-spacing:0.263520px;}
.ws2_c00289{word-spacing:0.527040px;}
.ws24_c00289{word-spacing:0.936000px;}
.ws20_c00289{word-spacing:0.988200px;}
.ws1f_c00289{word-spacing:1.251720px;}
.ws25_c00289{word-spacing:1.440000px;}
.ws6_c00289{word-spacing:1.512000px;}
.ws4_c00289{word-spacing:1.515240px;}
.ws16_c00289{word-spacing:2.088000px;}
.ws1e_c00289{word-spacing:2.766960px;}
.ws1d_c00289{word-spacing:3.096360px;}
.ws19_c00289{word-spacing:3.228120px;}
.ws1c_c00289{word-spacing:3.359880px;}
.ws1b_c00289{word-spacing:3.425760px;}
.ws14_c00289{word-spacing:4.809240px;}
.ws10_c00289{word-spacing:4.941000px;}
.ws27_c00289{word-spacing:7.115040px;}
.ws28_c00289{word-spacing:7.378560px;}
.ws7_c00289{word-spacing:7.510320px;}
.wsb_c00289{word-spacing:7.707960px;}
.ws22_c00289{word-spacing:8.208000px;}
.ws9_c00289{word-spacing:9.223200px;}
.wsa_c00289{word-spacing:9.486720px;}
.ws13_c00289{word-spacing:9.882000px;}
.wsf_c00289{word-spacing:10.606680px;}
.wsd_c00289{word-spacing:15.048000px;}
.ws21_c00289{word-spacing:15.613560px;}
.ws23_c00289{word-spacing:18.360000px;}
.ws17_c00289{word-spacing:20.880000px;}
.wse_c00289{word-spacing:21.600000px;}
._0_c00289{margin-left:-1.054080px;}
._1_c00289{width:1.133136px;}
._2_c00289{width:2.832840px;}
.fc1_c00289{color:rgb(0,0,0);}
.fc0_c00289{color:rgb(35,31,32);}
.fs1_c00289{font-size:65.880000px;}
.fs0_c00289{font-size:72.000000px;}
.y0_c00289{bottom:0.000000px;}
.y1_c00289{bottom:61.748550px;}
.y1d_c00289{bottom:160.597020px;}
.y1c_c00289{bottom:189.040710px;}
.y1b_c00289{bottom:217.484400px;}
.y1a_c00289{bottom:278.414250px;}
.y19_c00289{bottom:309.464250px;}
.y18_c00289{bottom:340.514250px;}
.y17_c00289{bottom:371.564250px;}
.y16_c00289{bottom:432.220980px;}
.y15_c00289{bottom:460.747020px;}
.y14_c00289{bottom:489.190710px;}
.y13_c00289{bottom:517.634400px;}
.y12_c00289{bottom:578.564400px;}
.y11_c00289{bottom:609.614400px;}
.y10_c00289{bottom:640.664400px;}
.yf_c00289{bottom:701.313720px;}
.ye_c00289{bottom:729.757410px;}
.yd_c00289{bottom:758.283450px;}
.yc_c00289{bottom:786.727140px;}
.yb_c00289{bottom:843.614520px;}
.ya_c00289{bottom:872.058210px;}
.y9_c00289{bottom:900.584250px;}
.y8_c00289{bottom:961.514250px;}
.y7_c00289{bottom:992.564250px;}
.y6_c00289{bottom:1023.614250px;}
.y5_c00289{bottom:1084.266870px;}
.y4_c00289{bottom:1112.710560px;}
.y3_c00289{bottom:1141.154250px;}
.y2_c00289{bottom:1193.174400px;}
.h2_c00289{height:50.400000px;}
.h4_c00289{height:71.413920px;}
.h3_c00289{height:76.824000px;}
.h0_c00289{height:1262.835000px;}
.h1_c00289{height:1263.000000px;}
.w0_c00289{width:892.914000px;}
.w1_c00289{width:893.250000px;}
.x0_c00289{left:0.000000px;}
.x1_c00289{left:54.000000px;}
.x2_c00289{left:127.620000px;}
.x3_c00289{left:148.950000px;}
.x5_c00289{left:153.450000px;}
.x4_c00289{left:159.570000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.lsa_c00289{letter-spacing:-0.192000pt;}
.ls9_c00289{letter-spacing:-0.058560pt;}
.ls8_c00289{letter-spacing:0.000000pt;}
.ls1_c00289{letter-spacing:0.058560pt;}
.ls3_c00289{letter-spacing:0.064000pt;}
.ls5_c00289{letter-spacing:0.128000pt;}
.ls0_c00289{letter-spacing:0.175680pt;}
.ls4_c00289{letter-spacing:0.187392pt;}
.ls2_c00289{letter-spacing:14.757120pt;}
.ls6_c00289{letter-spacing:17.685120pt;}
.ls7_c00289{letter-spacing:28.577280pt;}
.ws0_c00289{word-spacing:-16.000000pt;}
.ws3_c00289{word-spacing:-14.640000pt;}
.wsc_c00289{word-spacing:-0.409920pt;}
.ws15_c00289{word-spacing:-0.175680pt;}
.ws11_c00289{word-spacing:-0.117120pt;}
.ws18_c00289{word-spacing:-0.064000pt;}
.ws1a_c00289{word-spacing:-0.058560pt;}
.ws8_c00289{word-spacing:0.000000pt;}
.ws5_c00289{word-spacing:0.023424pt;}
.ws1_c00289{word-spacing:0.117120pt;}
.ws26_c00289{word-spacing:0.192000pt;}
.ws12_c00289{word-spacing:0.234240pt;}
.ws2_c00289{word-spacing:0.468480pt;}
.ws24_c00289{word-spacing:0.832000pt;}
.ws20_c00289{word-spacing:0.878400pt;}
.ws1f_c00289{word-spacing:1.112640pt;}
.ws25_c00289{word-spacing:1.280000pt;}
.ws6_c00289{word-spacing:1.344000pt;}
.ws4_c00289{word-spacing:1.346880pt;}
.ws16_c00289{word-spacing:1.856000pt;}
.ws1e_c00289{word-spacing:2.459520pt;}
.ws1d_c00289{word-spacing:2.752320pt;}
.ws19_c00289{word-spacing:2.869440pt;}
.ws1c_c00289{word-spacing:2.986560pt;}
.ws1b_c00289{word-spacing:3.045120pt;}
.ws14_c00289{word-spacing:4.274880pt;}
.ws10_c00289{word-spacing:4.392000pt;}
.ws27_c00289{word-spacing:6.324480pt;}
.ws28_c00289{word-spacing:6.558720pt;}
.ws7_c00289{word-spacing:6.675840pt;}
.wsb_c00289{word-spacing:6.851520pt;}
.ws22_c00289{word-spacing:7.296000pt;}
.ws9_c00289{word-spacing:8.198400pt;}
.wsa_c00289{word-spacing:8.432640pt;}
.ws13_c00289{word-spacing:8.784000pt;}
.wsf_c00289{word-spacing:9.428160pt;}
.wsd_c00289{word-spacing:13.376000pt;}
.ws21_c00289{word-spacing:13.878720pt;}
.ws23_c00289{word-spacing:16.320000pt;}
.ws17_c00289{word-spacing:18.560000pt;}
.wse_c00289{word-spacing:19.200000pt;}
._0_c00289{margin-left:-0.936960pt;}
._1_c00289{width:1.007232pt;}
._2_c00289{width:2.518080pt;}
.fs1_c00289{font-size:58.560000pt;}
.fs0_c00289{font-size:64.000000pt;}
.y0_c00289{bottom:0.000000pt;}
.y1_c00289{bottom:54.887600pt;}
.y1d_c00289{bottom:142.752907pt;}
.y1c_c00289{bottom:168.036187pt;}
.y1b_c00289{bottom:193.319467pt;}
.y1a_c00289{bottom:247.479333pt;}
.y19_c00289{bottom:275.079333pt;}
.y18_c00289{bottom:302.679333pt;}
.y17_c00289{bottom:330.279333pt;}
.y16_c00289{bottom:384.196427pt;}
.y15_c00289{bottom:409.552907pt;}
.y14_c00289{bottom:434.836187pt;}
.y13_c00289{bottom:460.119467pt;}
.y12_c00289{bottom:514.279467pt;}
.y11_c00289{bottom:541.879467pt;}
.y10_c00289{bottom:569.479467pt;}
.yf_c00289{bottom:623.389973pt;}
.ye_c00289{bottom:648.673253pt;}
.yd_c00289{bottom:674.029733pt;}
.yc_c00289{bottom:699.313013pt;}
.yb_c00289{bottom:749.879573pt;}
.ya_c00289{bottom:775.162853pt;}
.y9_c00289{bottom:800.519333pt;}
.y8_c00289{bottom:854.679333pt;}
.y7_c00289{bottom:882.279333pt;}
.y6_c00289{bottom:909.879333pt;}
.y5_c00289{bottom:963.792773pt;}
.y4_c00289{bottom:989.076053pt;}
.y3_c00289{bottom:1014.359333pt;}
.y2_c00289{bottom:1060.599467pt;}
.h2_c00289{height:44.800000pt;}
.h4_c00289{height:63.479040pt;}
.h3_c00289{height:68.288000pt;}
.h0_c00289{height:1122.520000pt;}
.h1_c00289{height:1122.666667pt;}
.w0_c00289{width:793.701333pt;}
.w1_c00289{width:794.000000pt;}
.x0_c00289{left:0.000000pt;}
.x1_c00289{left:48.000000pt;}
.x2_c00289{left:113.440000pt;}
.x3_c00289{left:132.400000pt;}
.x5_c00289{left:136.400000pt;}
.x4_c00289{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00290;src:url('chunks/assets/font_772dd27913b667c241b0bcaa.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00290;src:url('chunks/assets/font_b7b0f103855ef047dbf50955.woff2')format("woff");}.ff3_c00290{font-family:ff3_c00290;line-height:1.592000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00290{font-family:ff4_c00290;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00290;src:url('chunks/assets/font_b7d20fbe00689b9365c3bdc2.woff2')format("woff");}.ff5_c00290{font-family:ff5_c00290;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00290;src:url('chunks/assets/font_96cceead2b7410fd7ed418ba.woff2')format("woff");}.ff6_c00290{font-family:ff6_c00290;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00290;src:url('chunks/assets/font_ec105fb82d8a818c2bd52bb2.woff2')format("woff");}.ff7_c00290{font-family:ff7_c00290;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.lse_c00290{letter-spacing:-0.360000px;}
.lsc_c00290{letter-spacing:-0.288000px;}
.lsb_c00290{letter-spacing:-0.216000px;}
.lsd_c00290{letter-spacing:-0.144000px;}
.lsa_c00290{letter-spacing:-0.065880px;}
.ls9_c00290{letter-spacing:0.000000px;}
.ls1_c00290{letter-spacing:0.065880px;}
.ls3_c00290{letter-spacing:0.072000px;}
.ls5_c00290{letter-spacing:0.144000px;}
.ls0_c00290{letter-spacing:0.197640px;}
.ls4_c00290{letter-spacing:0.210816px;}
.ls2_c00290{letter-spacing:16.601760px;}
.ls8_c00290{letter-spacing:16.891632px;}
.ls6_c00290{letter-spacing:19.895760px;}
.ls7_c00290{letter-spacing:32.149440px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00290{word-spacing:-18.072000px;}
.ws0_c00290{word-spacing:-18.000000px;}
.ws3_c00290{word-spacing:-16.470000px;}
.ws10_c00290{word-spacing:-0.461160px;}
.ws19_c00290{word-spacing:-0.197640px;}
.ws15_c00290{word-spacing:-0.131760px;}
.ws1c_c00290{word-spacing:-0.072000px;}
.ws1e_c00290{word-spacing:-0.065880px;}
.wsc_c00290{word-spacing:0.000000px;}
.ws8_c00290{word-spacing:0.019764px;}
.ws5_c00290{word-spacing:0.026352px;}
.ws1_c00290{word-spacing:0.131760px;}
.ws3f_c00290{word-spacing:0.144000px;}
.ws2a_c00290{word-spacing:0.216000px;}
.ws16_c00290{word-spacing:0.263520px;}
.ws2_c00290{word-spacing:0.527040px;}
.ws28_c00290{word-spacing:0.936000px;}
.ws24_c00290{word-spacing:0.988200px;}
.ws23_c00290{word-spacing:1.251720px;}
.ws29_c00290{word-spacing:1.440000px;}
.ws6_c00290{word-spacing:1.512000px;}
.ws4_c00290{word-spacing:1.515240px;}
.ws1a_c00290{word-spacing:2.088000px;}
.ws22_c00290{word-spacing:2.766960px;}
.ws21_c00290{word-spacing:3.096360px;}
.ws1d_c00290{word-spacing:3.228120px;}
.ws20_c00290{word-spacing:3.359880px;}
.ws1f_c00290{word-spacing:3.425760px;}
.ws42_c00290{word-spacing:3.821040px;}
.ws36_c00290{word-spacing:3.888000px;}
.ws38_c00290{word-spacing:4.176000px;}
.ws37_c00290{word-spacing:4.248000px;}
.ws35_c00290{word-spacing:4.320000px;}
.ws43_c00290{word-spacing:4.545720px;}
.ws18_c00290{word-spacing:4.809240px;}
.ws14_c00290{word-spacing:4.941000px;}
.ws31_c00290{word-spacing:4.968000px;}
.ws30_c00290{word-spacing:5.040000px;}
.ws3a_c00290{word-spacing:5.328000px;}
.ws2b_c00290{word-spacing:7.115040px;}
.ws2c_c00290{word-spacing:7.378560px;}
.ws33_c00290{word-spacing:7.488000px;}
.ws7_c00290{word-spacing:7.510320px;}
.wsf_c00290{word-spacing:7.707960px;}
.ws26_c00290{word-spacing:8.208000px;}
.wsd_c00290{word-spacing:9.223200px;}
.wse_c00290{word-spacing:9.486720px;}
.ws17_c00290{word-spacing:9.882000px;}
.ws32_c00290{word-spacing:9.947880px;}
.ws13_c00290{word-spacing:10.606680px;}
.ws39_c00290{word-spacing:11.160000px;}
.ws3b_c00290{word-spacing:11.808000px;}
.wsb_c00290{word-spacing:11.880000px;}
.ws40_c00290{word-spacing:12.240000px;}
.ws44_c00290{word-spacing:13.248000px;}
.ws41_c00290{word-spacing:13.320000px;}
.ws3e_c00290{word-spacing:14.688000px;}
.ws11_c00290{word-spacing:15.048000px;}
.ws25_c00290{word-spacing:15.613560px;}
.ws34_c00290{word-spacing:18.000000px;}
.ws27_c00290{word-spacing:18.360000px;}
.ws2d_c00290{word-spacing:20.736000px;}
.ws1b_c00290{word-spacing:20.880000px;}
.ws2e_c00290{word-spacing:21.168000px;}
.ws2f_c00290{word-spacing:21.240000px;}
.ws12_c00290{word-spacing:21.600000px;}
.ws3d_c00290{word-spacing:22.680000px;}
.ws3c_c00290{word-spacing:22.968000px;}
.wsa_c00290{word-spacing:104.400000px;}
._0_c00290{margin-left:-1.054080px;}
._1_c00290{width:1.133136px;}
._2_c00290{width:2.832840px;}
._3_c00290{width:21.240000px;}
.fc2_c00290{color:transparent;}
.fc1_c00290{color:rgb(0,0,0);}
.fc0_c00290{color:rgb(35,31,32);}
.fs1_c00290{font-size:65.880000px;}
.fs0_c00290{font-size:72.000000px;}
.y0_c00290{bottom:0.000000px;}
.y1_c00290{bottom:61.748550px;}
.y36_c00290{bottom:130.994400px;}
.y1d_c00290{bottom:160.597020px;}
.y35_c00290{bottom:162.044400px;}
.y1c_c00290{bottom:189.040710px;}
.y1b_c00290{bottom:217.484400px;}
.y34_c00290{bottom:222.697020px;}
.y33_c00290{bottom:251.140710px;}
.y1a_c00290{bottom:278.414250px;}
.y32_c00290{bottom:279.584400px;}
.y19_c00290{bottom:309.464250px;}
.y18_c00290{bottom:340.514250px;}
.y17_c00290{bottom:371.564250px;}
.y16_c00290{bottom:432.220980px;}
.y31_c00290{bottom:433.664400px;}
.y15_c00290{bottom:460.747020px;}
.y14_c00290{bottom:489.190710px;}
.y30_c00290{bottom:495.764400px;}
.y13_c00290{bottom:517.634400px;}
.y2f_c00290{bottom:526.814400px;}
.y2e_c00290{bottom:557.864400px;}
.y12_c00290{bottom:578.564400px;}
.y2d_c00290{bottom:588.914400px;}
.y11_c00290{bottom:609.614400px;}
.y2c_c00290{bottom:619.964400px;}
.y10_c00290{bottom:640.664400px;}
.y2b_c00290{bottom:681.884400px;}
.yf_c00290{bottom:701.313720px;}
.ye_c00290{bottom:729.757410px;}
.y2a_c00290{bottom:744.164400px;}
.yd_c00290{bottom:758.283450px;}
.y29_c00290{bottom:775.214400px;}
.yc_c00290{bottom:786.727140px;}
.y28_c00290{bottom:806.264400px;}
.y27_c00290{bottom:837.314400px;}
.yb_c00290{bottom:843.614520px;}
.y26_c00290{bottom:868.364400px;}
.ya_c00290{bottom:872.058210px;}
.y25_c00290{bottom:899.414400px;}
.y9_c00290{bottom:900.584250px;}
.y24_c00290{bottom:960.066870px;}
.y8_c00290{bottom:961.514250px;}
.y23_c00290{bottom:988.510560px;}
.y7_c00290{bottom:992.564250px;}
.y22_c00290{bottom:1016.954250px;}
.y6_c00290{bottom:1023.614250px;}
.y21_c00290{bottom:1077.884400px;}
.y5_c00290{bottom:1084.266870px;}
.y20_c00290{bottom:1108.934400px;}
.y4_c00290{bottom:1112.710560px;}
.y1f_c00290{bottom:1139.984400px;}
.y3_c00290{bottom:1141.154250px;}
.y1e_c00290{bottom:1193.174400px;}
.y2_c00290{bottom:1193.174550px;}
.h2_c00290{height:50.400000px;}
.h4_c00290{height:71.413920px;}
.h3_c00290{height:76.824000px;}
.h0_c00290{height:1262.835000px;}
.h1_c00290{height:1263.000000px;}
.w2_c00290{width:0.000000px;}
.w3_c00290{width:0.066000px;}
.w0_c00290{width:892.914000px;}
.w1_c00290{width:893.250000px;}
.x1_c00290{left:-838.913400px;}
.x2_c00290{left:-765.293400px;}
.x3_c00290{left:-743.963400px;}
.x5_c00290{left:-739.463400px;}
.x4_c00290{left:-733.343400px;}
.x0_c00290{left:0.000000px;}
.x9_c00290{left:127.620000px;}
.xa_c00290{left:148.950000px;}
.x8_c00290{left:159.570000px;}
.x7_c00290{left:679.950000px;}
.x6_c00290{left:804.366150px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.lse_c00290{letter-spacing:-0.320000pt;}
.lsc_c00290{letter-spacing:-0.256000pt;}
.lsb_c00290{letter-spacing:-0.192000pt;}
.lsd_c00290{letter-spacing:-0.128000pt;}
.lsa_c00290{letter-spacing:-0.058560pt;}
.ls9_c00290{letter-spacing:0.000000pt;}
.ls1_c00290{letter-spacing:0.058560pt;}
.ls3_c00290{letter-spacing:0.064000pt;}
.ls5_c00290{letter-spacing:0.128000pt;}
.ls0_c00290{letter-spacing:0.175680pt;}
.ls4_c00290{letter-spacing:0.187392pt;}
.ls2_c00290{letter-spacing:14.757120pt;}
.ls8_c00290{letter-spacing:15.014784pt;}
.ls6_c00290{letter-spacing:17.685120pt;}
.ls7_c00290{letter-spacing:28.577280pt;}
.ws9_c00290{word-spacing:-16.064000pt;}
.ws0_c00290{word-spacing:-16.000000pt;}
.ws3_c00290{word-spacing:-14.640000pt;}
.ws10_c00290{word-spacing:-0.409920pt;}
.ws19_c00290{word-spacing:-0.175680pt;}
.ws15_c00290{word-spacing:-0.117120pt;}
.ws1c_c00290{word-spacing:-0.064000pt;}
.ws1e_c00290{word-spacing:-0.058560pt;}
.wsc_c00290{word-spacing:0.000000pt;}
.ws8_c00290{word-spacing:0.017568pt;}
.ws5_c00290{word-spacing:0.023424pt;}
.ws1_c00290{word-spacing:0.117120pt;}
.ws3f_c00290{word-spacing:0.128000pt;}
.ws2a_c00290{word-spacing:0.192000pt;}
.ws16_c00290{word-spacing:0.234240pt;}
.ws2_c00290{word-spacing:0.468480pt;}
.ws28_c00290{word-spacing:0.832000pt;}
.ws24_c00290{word-spacing:0.878400pt;}
.ws23_c00290{word-spacing:1.112640pt;}
.ws29_c00290{word-spacing:1.280000pt;}
.ws6_c00290{word-spacing:1.344000pt;}
.ws4_c00290{word-spacing:1.346880pt;}
.ws1a_c00290{word-spacing:1.856000pt;}
.ws22_c00290{word-spacing:2.459520pt;}
.ws21_c00290{word-spacing:2.752320pt;}
.ws1d_c00290{word-spacing:2.869440pt;}
.ws20_c00290{word-spacing:2.986560pt;}
.ws1f_c00290{word-spacing:3.045120pt;}
.ws42_c00290{word-spacing:3.396480pt;}
.ws36_c00290{word-spacing:3.456000pt;}
.ws38_c00290{word-spacing:3.712000pt;}
.ws37_c00290{word-spacing:3.776000pt;}
.ws35_c00290{word-spacing:3.840000pt;}
.ws43_c00290{word-spacing:4.040640pt;}
.ws18_c00290{word-spacing:4.274880pt;}
.ws14_c00290{word-spacing:4.392000pt;}
.ws31_c00290{word-spacing:4.416000pt;}
.ws30_c00290{word-spacing:4.480000pt;}
.ws3a_c00290{word-spacing:4.736000pt;}
.ws2b_c00290{word-spacing:6.324480pt;}
.ws2c_c00290{word-spacing:6.558720pt;}
.ws33_c00290{word-spacing:6.656000pt;}
.ws7_c00290{word-spacing:6.675840pt;}
.wsf_c00290{word-spacing:6.851520pt;}
.ws26_c00290{word-spacing:7.296000pt;}
.wsd_c00290{word-spacing:8.198400pt;}
.wse_c00290{word-spacing:8.432640pt;}
.ws17_c00290{word-spacing:8.784000pt;}
.ws32_c00290{word-spacing:8.842560pt;}
.ws13_c00290{word-spacing:9.428160pt;}
.ws39_c00290{word-spacing:9.920000pt;}
.ws3b_c00290{word-spacing:10.496000pt;}
.wsb_c00290{word-spacing:10.560000pt;}
.ws40_c00290{word-spacing:10.880000pt;}
.ws44_c00290{word-spacing:11.776000pt;}
.ws41_c00290{word-spacing:11.840000pt;}
.ws3e_c00290{word-spacing:13.056000pt;}
.ws11_c00290{word-spacing:13.376000pt;}
.ws25_c00290{word-spacing:13.878720pt;}
.ws34_c00290{word-spacing:16.000000pt;}
.ws27_c00290{word-spacing:16.320000pt;}
.ws2d_c00290{word-spacing:18.432000pt;}
.ws1b_c00290{word-spacing:18.560000pt;}
.ws2e_c00290{word-spacing:18.816000pt;}
.ws2f_c00290{word-spacing:18.880000pt;}
.ws12_c00290{word-spacing:19.200000pt;}
.ws3d_c00290{word-spacing:20.160000pt;}
.ws3c_c00290{word-spacing:20.416000pt;}
.wsa_c00290{word-spacing:92.800000pt;}
._0_c00290{margin-left:-0.936960pt;}
._1_c00290{width:1.007232pt;}
._2_c00290{width:2.518080pt;}
._3_c00290{width:18.880000pt;}
.fs1_c00290{font-size:58.560000pt;}
.fs0_c00290{font-size:64.000000pt;}
.y0_c00290{bottom:0.000000pt;}
.y1_c00290{bottom:54.887600pt;}
.y36_c00290{bottom:116.439467pt;}
.y1d_c00290{bottom:142.752907pt;}
.y35_c00290{bottom:144.039467pt;}
.y1c_c00290{bottom:168.036187pt;}
.y1b_c00290{bottom:193.319467pt;}
.y34_c00290{bottom:197.952907pt;}
.y33_c00290{bottom:223.236187pt;}
.y1a_c00290{bottom:247.479333pt;}
.y32_c00290{bottom:248.519467pt;}
.y19_c00290{bottom:275.079333pt;}
.y18_c00290{bottom:302.679333pt;}
.y17_c00290{bottom:330.279333pt;}
.y16_c00290{bottom:384.196427pt;}
.y31_c00290{bottom:385.479467pt;}
.y15_c00290{bottom:409.552907pt;}
.y14_c00290{bottom:434.836187pt;}
.y30_c00290{bottom:440.679467pt;}
.y13_c00290{bottom:460.119467pt;}
.y2f_c00290{bottom:468.279467pt;}
.y2e_c00290{bottom:495.879467pt;}
.y12_c00290{bottom:514.279467pt;}
.y2d_c00290{bottom:523.479467pt;}
.y11_c00290{bottom:541.879467pt;}
.y2c_c00290{bottom:551.079467pt;}
.y10_c00290{bottom:569.479467pt;}
.y2b_c00290{bottom:606.119467pt;}
.yf_c00290{bottom:623.389973pt;}
.ye_c00290{bottom:648.673253pt;}
.y2a_c00290{bottom:661.479467pt;}
.yd_c00290{bottom:674.029733pt;}
.y29_c00290{bottom:689.079467pt;}
.yc_c00290{bottom:699.313013pt;}
.y28_c00290{bottom:716.679467pt;}
.y27_c00290{bottom:744.279467pt;}
.yb_c00290{bottom:749.879573pt;}
.y26_c00290{bottom:771.879467pt;}
.ya_c00290{bottom:775.162853pt;}
.y25_c00290{bottom:799.479467pt;}
.y9_c00290{bottom:800.519333pt;}
.y24_c00290{bottom:853.392773pt;}
.y8_c00290{bottom:854.679333pt;}
.y23_c00290{bottom:878.676053pt;}
.y7_c00290{bottom:882.279333pt;}
.y22_c00290{bottom:903.959333pt;}
.y6_c00290{bottom:909.879333pt;}
.y21_c00290{bottom:958.119467pt;}
.y5_c00290{bottom:963.792773pt;}
.y20_c00290{bottom:985.719467pt;}
.y4_c00290{bottom:989.076053pt;}
.y1f_c00290{bottom:1013.319467pt;}
.y3_c00290{bottom:1014.359333pt;}
.y1e_c00290{bottom:1060.599467pt;}
.y2_c00290{bottom:1060.599600pt;}
.h2_c00290{height:44.800000pt;}
.h4_c00290{height:63.479040pt;}
.h3_c00290{height:68.288000pt;}
.h0_c00290{height:1122.520000pt;}
.h1_c00290{height:1122.666667pt;}
.w2_c00290{width:0.000000pt;}
.w3_c00290{width:0.058667pt;}
.w0_c00290{width:793.701333pt;}
.w1_c00290{width:794.000000pt;}
.x1_c00290{left:-745.700800pt;}
.x2_c00290{left:-680.260800pt;}
.x3_c00290{left:-661.300800pt;}
.x5_c00290{left:-657.300800pt;}
.x4_c00290{left:-651.860800pt;}
.x0_c00290{left:0.000000pt;}
.x9_c00290{left:113.440000pt;}
.xa_c00290{left:132.400000pt;}
.x8_c00290{left:141.840000pt;}
.x7_c00290{left:604.400000pt;}
.x6_c00290{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00291;src:url('chunks/assets/font_8b22ca698b085a9d28ca0a17.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00291;src:url('chunks/assets/font_671f1b6cc9d6e0cab635dbd4.woff2')format("woff");}.ff3_c00291{font-family:ff3_c00291;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00291{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.lsa_c00291{letter-spacing:-0.216000px;}
.ls8_c00291{letter-spacing:-0.197640px;}
.ls9_c00291{letter-spacing:-0.072000px;}
.ls7_c00291{letter-spacing:-0.065880px;}
.ls6_c00291{letter-spacing:0.000000px;}
.lsb_c00291{letter-spacing:0.065880px;}
.ls0_c00291{letter-spacing:0.072000px;}
.ls2_c00291{letter-spacing:0.144000px;}
.ls1_c00291{letter-spacing:0.197640px;}
.ls4_c00291{letter-spacing:16.311888px;}
.ls3_c00291{letter-spacing:18.163116px;}
.ls5_c00291{letter-spacing:27.504900px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00291{word-spacing:-18.000000px;}
.ws21_c00291{word-spacing:-0.461160px;}
.ws1e_c00291{word-spacing:-0.197640px;}
.ws1a_c00291{word-spacing:-0.144000px;}
.wsc_c00291{word-spacing:-0.131760px;}
.ws10_c00291{word-spacing:-0.072000px;}
.ws8_c00291{word-spacing:0.000000px;}
.ws1d_c00291{word-spacing:0.065880px;}
.wsd_c00291{word-spacing:0.131760px;}
.ws1f_c00291{word-spacing:0.263520px;}
.ws20_c00291{word-spacing:0.395280px;}
.ws19_c00291{word-spacing:0.648000px;}
.ws18_c00291{word-spacing:1.008000px;}
.ws5_c00291{word-spacing:1.080000px;}
.ws6_c00291{word-spacing:1.224000px;}
.ws4_c00291{word-spacing:1.368000px;}
.ws9_c00291{word-spacing:1.976400px;}
.ws1c_c00291{word-spacing:2.437560px;}
.ws1b_c00291{word-spacing:2.701080px;}
.ws11_c00291{word-spacing:5.204520px;}
.ws25_c00291{word-spacing:5.995080px;}
.ws17_c00291{word-spacing:8.498520px;}
.ws16_c00291{word-spacing:8.762040px;}
.wsa_c00291{word-spacing:9.882000px;}
.ws1_c00291{word-spacing:10.079640px;}
.ws15_c00291{word-spacing:10.211400px;}
.ws12_c00291{word-spacing:10.672560px;}
.ws2_c00291{word-spacing:10.685736px;}
.ws24_c00291{word-spacing:11.397240px;}
.ws23_c00291{word-spacing:11.660760px;}
.ws22_c00291{word-spacing:13.680000px;}
.ws7_c00291{word-spacing:13.896000px;}
.wsb_c00291{word-spacing:15.745320px;}
.wse_c00291{word-spacing:18.648000px;}
.wsf_c00291{word-spacing:18.720000px;}
.ws13_c00291{word-spacing:31.176000px;}
.ws14_c00291{word-spacing:31.248000px;}
.ws3_c00291{word-spacing:31.320000px;}
._1_c00291{margin-left:-1.054080px;}
._0_c00291{width:1.199016px;}
._2_c00291{width:2.984364px;}
.fc1_c00291{color:rgb(0,0,0);}
.fc0_c00291{color:rgb(35,31,32);}
.fs1_c00291{font-size:65.880000px;}
.fs0_c00291{font-size:72.000000px;}
.y0_c00291{bottom:0.000000px;}
.y1_c00291{bottom:61.748550px;}
.y1c_c00291{bottom:129.550980px;}
.y1b_c00291{bottom:157.994670px;}
.y1a_c00291{bottom:186.438360px;}
.y19_c00291{bottom:214.964400px;}
.y18_c00291{bottom:275.804250px;}
.y17_c00291{bottom:306.854250px;}
.y16_c00291{bottom:367.593330px;}
.y15_c00291{bottom:396.037020px;}
.y14_c00291{bottom:424.480710px;}
.y13_c00291{bottom:452.924400px;}
.y12_c00291{bottom:513.854400px;}
.y11_c00291{bottom:544.904400px;}
.y10_c00291{bottom:605.564520px;}
.yf_c00291{bottom:634.090560px;}
.ye_c00291{bottom:662.534250px;}
.yd_c00291{bottom:723.464400px;}
.yc_c00291{bottom:754.514400px;}
.yb_c00291{bottom:815.167020px;}
.ya_c00291{bottom:843.610710px;}
.y9_c00291{bottom:872.054400px;}
.y8_c00291{bottom:932.984400px;}
.y7_c00291{bottom:964.034400px;}
.y6_c00291{bottom:1024.773330px;}
.y5_c00291{bottom:1053.217020px;}
.y4_c00291{bottom:1081.660710px;}
.y3_c00291{bottom:1110.104400px;}
.y2_c00291{bottom:1193.174400px;}
.h2_c00291{height:50.400000px;}
.h4_c00291{height:71.413920px;}
.h3_c00291{height:76.824000px;}
.h5_c00291{height:78.048000px;}
.h0_c00291{height:1262.835000px;}
.h1_c00291{height:1263.000000px;}
.w0_c00291{width:892.914000px;}
.w1_c00291{width:893.250000px;}
.x0_c00291{left:0.000000px;}
.x1_c00291{left:54.000000px;}
.x2_c00291{left:127.620000px;}
.x3_c00291{left:148.950000px;}
.x4_c00291{left:159.570000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.lsa_c00291{letter-spacing:-0.192000pt;}
.ls8_c00291{letter-spacing:-0.175680pt;}
.ls9_c00291{letter-spacing:-0.064000pt;}
.ls7_c00291{letter-spacing:-0.058560pt;}
.ls6_c00291{letter-spacing:0.000000pt;}
.lsb_c00291{letter-spacing:0.058560pt;}
.ls0_c00291{letter-spacing:0.064000pt;}
.ls2_c00291{letter-spacing:0.128000pt;}
.ls1_c00291{letter-spacing:0.175680pt;}
.ls4_c00291{letter-spacing:14.499456pt;}
.ls3_c00291{letter-spacing:16.144992pt;}
.ls5_c00291{letter-spacing:24.448800pt;}
.ws0_c00291{word-spacing:-16.000000pt;}
.ws21_c00291{word-spacing:-0.409920pt;}
.ws1e_c00291{word-spacing:-0.175680pt;}
.ws1a_c00291{word-spacing:-0.128000pt;}
.wsc_c00291{word-spacing:-0.117120pt;}
.ws10_c00291{word-spacing:-0.064000pt;}
.ws8_c00291{word-spacing:0.000000pt;}
.ws1d_c00291{word-spacing:0.058560pt;}
.wsd_c00291{word-spacing:0.117120pt;}
.ws1f_c00291{word-spacing:0.234240pt;}
.ws20_c00291{word-spacing:0.351360pt;}
.ws19_c00291{word-spacing:0.576000pt;}
.ws18_c00291{word-spacing:0.896000pt;}
.ws5_c00291{word-spacing:0.960000pt;}
.ws6_c00291{word-spacing:1.088000pt;}
.ws4_c00291{word-spacing:1.216000pt;}
.ws9_c00291{word-spacing:1.756800pt;}
.ws1c_c00291{word-spacing:2.166720pt;}
.ws1b_c00291{word-spacing:2.400960pt;}
.ws11_c00291{word-spacing:4.626240pt;}
.ws25_c00291{word-spacing:5.328960pt;}
.ws17_c00291{word-spacing:7.554240pt;}
.ws16_c00291{word-spacing:7.788480pt;}
.wsa_c00291{word-spacing:8.784000pt;}
.ws1_c00291{word-spacing:8.959680pt;}
.ws15_c00291{word-spacing:9.076800pt;}
.ws12_c00291{word-spacing:9.486720pt;}
.ws2_c00291{word-spacing:9.498432pt;}
.ws24_c00291{word-spacing:10.130880pt;}
.ws23_c00291{word-spacing:10.365120pt;}
.ws22_c00291{word-spacing:12.160000pt;}
.ws7_c00291{word-spacing:12.352000pt;}
.wsb_c00291{word-spacing:13.995840pt;}
.wse_c00291{word-spacing:16.576000pt;}
.wsf_c00291{word-spacing:16.640000pt;}
.ws13_c00291{word-spacing:27.712000pt;}
.ws14_c00291{word-spacing:27.776000pt;}
.ws3_c00291{word-spacing:27.840000pt;}
._1_c00291{margin-left:-0.936960pt;}
._0_c00291{width:1.065792pt;}
._2_c00291{width:2.652768pt;}
.fs1_c00291{font-size:58.560000pt;}
.fs0_c00291{font-size:64.000000pt;}
.y0_c00291{bottom:0.000000pt;}
.y1_c00291{bottom:54.887600pt;}
.y1c_c00291{bottom:115.156427pt;}
.y1b_c00291{bottom:140.439707pt;}
.y1a_c00291{bottom:165.722987pt;}
.y19_c00291{bottom:191.079467pt;}
.y18_c00291{bottom:245.159333pt;}
.y17_c00291{bottom:272.759333pt;}
.y16_c00291{bottom:326.749627pt;}
.y15_c00291{bottom:352.032907pt;}
.y14_c00291{bottom:377.316187pt;}
.y13_c00291{bottom:402.599467pt;}
.y12_c00291{bottom:456.759467pt;}
.y11_c00291{bottom:484.359467pt;}
.y10_c00291{bottom:538.279573pt;}
.yf_c00291{bottom:563.636053pt;}
.ye_c00291{bottom:588.919333pt;}
.yd_c00291{bottom:643.079467pt;}
.yc_c00291{bottom:670.679467pt;}
.yb_c00291{bottom:724.592907pt;}
.ya_c00291{bottom:749.876187pt;}
.y9_c00291{bottom:775.159467pt;}
.y8_c00291{bottom:829.319467pt;}
.y7_c00291{bottom:856.919467pt;}
.y6_c00291{bottom:910.909627pt;}
.y5_c00291{bottom:936.192907pt;}
.y4_c00291{bottom:961.476187pt;}
.y3_c00291{bottom:986.759467pt;}
.y2_c00291{bottom:1060.599467pt;}
.h2_c00291{height:44.800000pt;}
.h4_c00291{height:63.479040pt;}
.h3_c00291{height:68.288000pt;}
.h5_c00291{height:69.376000pt;}
.h0_c00291{height:1122.520000pt;}
.h1_c00291{height:1122.666667pt;}
.w0_c00291{width:793.701333pt;}
.w1_c00291{width:794.000000pt;}
.x0_c00291{left:0.000000pt;}
.x1_c00291{left:48.000000pt;}
.x2_c00291{left:113.440000pt;}
.x3_c00291{left:132.400000pt;}
.x4_c00291{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00292;src:url('chunks/assets/font_fe4fb0f83460adfda16d0612.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00292;src:url('chunks/assets/font_c110ed46a1d1f39e0b90f880.woff2')format("woff");}.ff3_c00292{font-family:ff3_c00292;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00292;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00292{font-family:ff4_c00292;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00292;src:url('chunks/assets/font_a3a022df20534221c1a11b2f.woff2')format("woff");}.ff5_c00292{font-family:ff5_c00292;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00292;src:url('chunks/assets/font_33093914b2189ca2acb7b35f.woff2')format("woff");}.ff6_c00292{font-family:ff6_c00292;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.lsf_c00292{letter-spacing:-0.288000px;}
.lse_c00292{letter-spacing:-0.216000px;}
.lsc_c00292{letter-spacing:-0.197640px;}
.lsd_c00292{letter-spacing:-0.072000px;}
.lsb_c00292{letter-spacing:-0.065880px;}
.lsa_c00292{letter-spacing:0.000000px;}
.ls8_c00292{letter-spacing:0.065880px;}
.ls0_c00292{letter-spacing:0.072000px;}
.ls2_c00292{letter-spacing:0.144000px;}
.ls1_c00292{letter-spacing:0.197640px;}
.ls7_c00292{letter-spacing:16.305300px;}
.ls4_c00292{letter-spacing:16.311888px;}
.ls9_c00292{letter-spacing:16.997040px;}
.ls3_c00292{letter-spacing:18.163116px;}
.ls6_c00292{letter-spacing:18.169704px;}
.ls5_c00292{letter-spacing:27.504900px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00292{word-spacing:-18.144000px;}
.ws0_c00292{word-spacing:-18.000000px;}
.wsf_c00292{word-spacing:-16.535880px;}
.ws10_c00292{word-spacing:-16.470000px;}
.ws2b_c00292{word-spacing:-0.461160px;}
.ws41_c00292{word-spacing:-0.432000px;}
.ws28_c00292{word-spacing:-0.197640px;}
.ws24_c00292{word-spacing:-0.144000px;}
.ws16_c00292{word-spacing:-0.131760px;}
.ws1a_c00292{word-spacing:-0.072000px;}
.ws37_c00292{word-spacing:-0.065880px;}
.ws8_c00292{word-spacing:0.000000px;}
.ws27_c00292{word-spacing:0.065880px;}
.ws17_c00292{word-spacing:0.131760px;}
.ws12_c00292{word-spacing:0.197640px;}
.ws29_c00292{word-spacing:0.263520px;}
.ws4a_c00292{word-spacing:0.288000px;}
.ws2a_c00292{word-spacing:0.395280px;}
.ws23_c00292{word-spacing:0.648000px;}
.ws49_c00292{word-spacing:0.936000px;}
.ws22_c00292{word-spacing:1.008000px;}
.ws5_c00292{word-spacing:1.080000px;}
.ws6_c00292{word-spacing:1.224000px;}
.ws3a_c00292{word-spacing:1.317600px;}
.ws4_c00292{word-spacing:1.368000px;}
.ws39_c00292{word-spacing:1.581120px;}
.ws30_c00292{word-spacing:1.584000px;}
.ws13_c00292{word-spacing:1.976400px;}
.ws31_c00292{word-spacing:2.088000px;}
.ws9_c00292{word-spacing:2.232000px;}
.ws26_c00292{word-spacing:2.437560px;}
.ws25_c00292{word-spacing:2.701080px;}
.wsa_c00292{word-spacing:2.880000px;}
.ws32_c00292{word-spacing:3.168000px;}
.ws3c_c00292{word-spacing:3.491640px;}
.ws3b_c00292{word-spacing:3.821040px;}
.ws3d_c00292{word-spacing:4.084560px;}
.ws43_c00292{word-spacing:4.216320px;}
.ws42_c00292{word-spacing:4.348080px;}
.ws33_c00292{word-spacing:5.040000px;}
.wsb_c00292{word-spacing:5.112000px;}
.ws1b_c00292{word-spacing:5.204520px;}
.ws45_c00292{word-spacing:5.270400px;}
.ws34_c00292{word-spacing:5.400000px;}
.ws2f_c00292{word-spacing:5.995080px;}
.ws38_c00292{word-spacing:6.653880px;}
.ws21_c00292{word-spacing:8.498520px;}
.ws20_c00292{word-spacing:8.762040px;}
.ws11_c00292{word-spacing:9.025560px;}
.ws4b_c00292{word-spacing:9.486720px;}
.ws40_c00292{word-spacing:9.648000px;}
.wsd_c00292{word-spacing:9.705600px;}
.ws3f_c00292{word-spacing:9.720000px;}
.ws14_c00292{word-spacing:9.882000px;}
.ws1_c00292{word-spacing:10.079640px;}
.ws1f_c00292{word-spacing:10.211400px;}
.ws35_c00292{word-spacing:10.296000px;}
.ws1c_c00292{word-spacing:10.672560px;}
.ws2_c00292{word-spacing:10.685736px;}
.ws2e_c00292{word-spacing:11.397240px;}
.ws2d_c00292{word-spacing:11.660760px;}
.ws46_c00292{word-spacing:11.792520px;}
.ws47_c00292{word-spacing:12.056040px;}
.ws44_c00292{word-spacing:13.176000px;}
.ws36_c00292{word-spacing:13.320000px;}
.wse_c00292{word-spacing:13.373640px;}
.ws2c_c00292{word-spacing:13.680000px;}
.ws7_c00292{word-spacing:13.896000px;}
.ws3e_c00292{word-spacing:13.968000px;}
.ws15_c00292{word-spacing:15.745320px;}
.ws18_c00292{word-spacing:18.648000px;}
.ws19_c00292{word-spacing:18.720000px;}
.ws48_c00292{word-spacing:25.488000px;}
.ws1d_c00292{word-spacing:31.176000px;}
.ws1e_c00292{word-spacing:31.248000px;}
.ws3_c00292{word-spacing:31.320000px;}
._1_c00292{margin-left:-1.054080px;}
._0_c00292{width:1.185840px;}
._2_c00292{width:2.984364px;}
._3_c00292{width:30.952800px;}
.fc2_c00292{color:transparent;}
.fc1_c00292{color:rgb(0,0,0);}
.fc0_c00292{color:rgb(35,31,32);}
.fs1_c00292{font-size:65.880000px;}
.fs0_c00292{font-size:72.000000px;}
.y0_c00292{bottom:0.000000px;}
.y1_c00292{bottom:61.748550px;}
.y38_c00292{bottom:126.940710px;}
.y1c_c00292{bottom:129.550980px;}
.y37_c00292{bottom:155.384400px;}
.y1b_c00292{bottom:157.994670px;}
.y1a_c00292{bottom:186.438360px;}
.y19_c00292{bottom:214.964400px;}
.y36_c00292{bottom:216.314400px;}
.y35_c00292{bottom:247.364400px;}
.y18_c00292{bottom:275.804250px;}
.y34_c00292{bottom:278.414400px;}
.y17_c00292{bottom:306.854250px;}
.y33_c00292{bottom:339.063870px;}
.y32_c00292{bottom:367.589910px;}
.y16_c00292{bottom:367.593330px;}
.y31_c00292{bottom:396.033600px;}
.y15_c00292{bottom:396.037020px;}
.y30_c00292{bottom:424.477290px;}
.y14_c00292{bottom:424.480710px;}
.y2f_c00292{bottom:452.920980px;}
.y13_c00292{bottom:452.924400px;}
.y2e_c00292{bottom:509.890710px;}
.y12_c00292{bottom:513.854400px;}
.y2d_c00292{bottom:538.334400px;}
.y11_c00292{bottom:544.904400px;}
.y2c_c00292{bottom:599.264250px;}
.y10_c00292{bottom:605.564520px;}
.y2b_c00292{bottom:630.314250px;}
.yf_c00292{bottom:634.090560px;}
.y2a_c00292{bottom:661.364250px;}
.ye_c00292{bottom:662.534250px;}
.y29_c00292{bottom:722.009910px;}
.yd_c00292{bottom:723.464400px;}
.y28_c00292{bottom:750.453600px;}
.yc_c00292{bottom:754.514400px;}
.y27_c00292{bottom:778.979640px;}
.y26_c00292{bottom:807.423330px;}
.yb_c00292{bottom:815.167020px;}
.ya_c00292{bottom:843.610710px;}
.y25_c00292{bottom:864.310710px;}
.y9_c00292{bottom:872.054400px;}
.y24_c00292{bottom:892.754400px;}
.y8_c00292{bottom:932.984400px;}
.y23_c00292{bottom:953.684400px;}
.y7_c00292{bottom:964.034400px;}
.y22_c00292{bottom:984.734400px;}
.y21_c00292{bottom:1015.784400px;}
.y6_c00292{bottom:1024.773330px;}
.y20_c00292{bottom:1046.834400px;}
.y5_c00292{bottom:1053.217020px;}
.y1f_c00292{bottom:1077.884400px;}
.y4_c00292{bottom:1081.660710px;}
.y1e_c00292{bottom:1108.934400px;}
.y3_c00292{bottom:1110.104400px;}
.y1d_c00292{bottom:1193.174400px;}
.y2_c00292{bottom:1193.174550px;}
.h2_c00292{height:50.400000px;}
.h4_c00292{height:71.413920px;}
.h3_c00292{height:76.824000px;}
.h5_c00292{height:78.048000px;}
.h0_c00292{height:1262.835000px;}
.h1_c00292{height:1263.000000px;}
.w2_c00292{width:0.000000px;}
.w3_c00292{width:0.066000px;}
.w0_c00292{width:892.914000px;}
.w1_c00292{width:893.250000px;}
.x1_c00292{left:-838.913400px;}
.x2_c00292{left:-765.293400px;}
.x3_c00292{left:-743.963400px;}
.x4_c00292{left:-733.343400px;}
.x0_c00292{left:0.000000px;}
.x8_c00292{left:127.620000px;}
.x9_c00292{left:148.950000px;}
.x7_c00292{left:159.570000px;}
.x6_c00292{left:679.950000px;}
.x5_c00292{left:804.366150px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.lsf_c00292{letter-spacing:-0.256000pt;}
.lse_c00292{letter-spacing:-0.192000pt;}
.lsc_c00292{letter-spacing:-0.175680pt;}
.lsd_c00292{letter-spacing:-0.064000pt;}
.lsb_c00292{letter-spacing:-0.058560pt;}
.lsa_c00292{letter-spacing:0.000000pt;}
.ls8_c00292{letter-spacing:0.058560pt;}
.ls0_c00292{letter-spacing:0.064000pt;}
.ls2_c00292{letter-spacing:0.128000pt;}
.ls1_c00292{letter-spacing:0.175680pt;}
.ls7_c00292{letter-spacing:14.493600pt;}
.ls4_c00292{letter-spacing:14.499456pt;}
.ls9_c00292{letter-spacing:15.108480pt;}
.ls3_c00292{letter-spacing:16.144992pt;}
.ls6_c00292{letter-spacing:16.150848pt;}
.ls5_c00292{letter-spacing:24.448800pt;}
.wsc_c00292{word-spacing:-16.128000pt;}
.ws0_c00292{word-spacing:-16.000000pt;}
.wsf_c00292{word-spacing:-14.698560pt;}
.ws10_c00292{word-spacing:-14.640000pt;}
.ws2b_c00292{word-spacing:-0.409920pt;}
.ws41_c00292{word-spacing:-0.384000pt;}
.ws28_c00292{word-spacing:-0.175680pt;}
.ws24_c00292{word-spacing:-0.128000pt;}
.ws16_c00292{word-spacing:-0.117120pt;}
.ws1a_c00292{word-spacing:-0.064000pt;}
.ws37_c00292{word-spacing:-0.058560pt;}
.ws8_c00292{word-spacing:0.000000pt;}
.ws27_c00292{word-spacing:0.058560pt;}
.ws17_c00292{word-spacing:0.117120pt;}
.ws12_c00292{word-spacing:0.175680pt;}
.ws29_c00292{word-spacing:0.234240pt;}
.ws4a_c00292{word-spacing:0.256000pt;}
.ws2a_c00292{word-spacing:0.351360pt;}
.ws23_c00292{word-spacing:0.576000pt;}
.ws49_c00292{word-spacing:0.832000pt;}
.ws22_c00292{word-spacing:0.896000pt;}
.ws5_c00292{word-spacing:0.960000pt;}
.ws6_c00292{word-spacing:1.088000pt;}
.ws3a_c00292{word-spacing:1.171200pt;}
.ws4_c00292{word-spacing:1.216000pt;}
.ws39_c00292{word-spacing:1.405440pt;}
.ws30_c00292{word-spacing:1.408000pt;}
.ws13_c00292{word-spacing:1.756800pt;}
.ws31_c00292{word-spacing:1.856000pt;}
.ws9_c00292{word-spacing:1.984000pt;}
.ws26_c00292{word-spacing:2.166720pt;}
.ws25_c00292{word-spacing:2.400960pt;}
.wsa_c00292{word-spacing:2.560000pt;}
.ws32_c00292{word-spacing:2.816000pt;}
.ws3c_c00292{word-spacing:3.103680pt;}
.ws3b_c00292{word-spacing:3.396480pt;}
.ws3d_c00292{word-spacing:3.630720pt;}
.ws43_c00292{word-spacing:3.747840pt;}
.ws42_c00292{word-spacing:3.864960pt;}
.ws33_c00292{word-spacing:4.480000pt;}
.wsb_c00292{word-spacing:4.544000pt;}
.ws1b_c00292{word-spacing:4.626240pt;}
.ws45_c00292{word-spacing:4.684800pt;}
.ws34_c00292{word-spacing:4.800000pt;}
.ws2f_c00292{word-spacing:5.328960pt;}
.ws38_c00292{word-spacing:5.914560pt;}
.ws21_c00292{word-spacing:7.554240pt;}
.ws20_c00292{word-spacing:7.788480pt;}
.ws11_c00292{word-spacing:8.022720pt;}
.ws4b_c00292{word-spacing:8.432640pt;}
.ws40_c00292{word-spacing:8.576000pt;}
.wsd_c00292{word-spacing:8.627200pt;}
.ws3f_c00292{word-spacing:8.640000pt;}
.ws14_c00292{word-spacing:8.784000pt;}
.ws1_c00292{word-spacing:8.959680pt;}
.ws1f_c00292{word-spacing:9.076800pt;}
.ws35_c00292{word-spacing:9.152000pt;}
.ws1c_c00292{word-spacing:9.486720pt;}
.ws2_c00292{word-spacing:9.498432pt;}
.ws2e_c00292{word-spacing:10.130880pt;}
.ws2d_c00292{word-spacing:10.365120pt;}
.ws46_c00292{word-spacing:10.482240pt;}
.ws47_c00292{word-spacing:10.716480pt;}
.ws44_c00292{word-spacing:11.712000pt;}
.ws36_c00292{word-spacing:11.840000pt;}
.wse_c00292{word-spacing:11.887680pt;}
.ws2c_c00292{word-spacing:12.160000pt;}
.ws7_c00292{word-spacing:12.352000pt;}
.ws3e_c00292{word-spacing:12.416000pt;}
.ws15_c00292{word-spacing:13.995840pt;}
.ws18_c00292{word-spacing:16.576000pt;}
.ws19_c00292{word-spacing:16.640000pt;}
.ws48_c00292{word-spacing:22.656000pt;}
.ws1d_c00292{word-spacing:27.712000pt;}
.ws1e_c00292{word-spacing:27.776000pt;}
.ws3_c00292{word-spacing:27.840000pt;}
._1_c00292{margin-left:-0.936960pt;}
._0_c00292{width:1.054080pt;}
._2_c00292{width:2.652768pt;}
._3_c00292{width:27.513600pt;}
.fs1_c00292{font-size:58.560000pt;}
.fs0_c00292{font-size:64.000000pt;}
.y0_c00292{bottom:0.000000pt;}
.y1_c00292{bottom:54.887600pt;}
.y38_c00292{bottom:112.836187pt;}
.y1c_c00292{bottom:115.156427pt;}
.y37_c00292{bottom:138.119467pt;}
.y1b_c00292{bottom:140.439707pt;}
.y1a_c00292{bottom:165.722987pt;}
.y19_c00292{bottom:191.079467pt;}
.y36_c00292{bottom:192.279467pt;}
.y35_c00292{bottom:219.879467pt;}
.y18_c00292{bottom:245.159333pt;}
.y34_c00292{bottom:247.479467pt;}
.y17_c00292{bottom:272.759333pt;}
.y33_c00292{bottom:301.390107pt;}
.y32_c00292{bottom:326.746587pt;}
.y16_c00292{bottom:326.749627pt;}
.y31_c00292{bottom:352.029867pt;}
.y15_c00292{bottom:352.032907pt;}
.y30_c00292{bottom:377.313147pt;}
.y14_c00292{bottom:377.316187pt;}
.y2f_c00292{bottom:402.596427pt;}
.y13_c00292{bottom:402.599467pt;}
.y2e_c00292{bottom:453.236187pt;}
.y12_c00292{bottom:456.759467pt;}
.y2d_c00292{bottom:478.519467pt;}
.y11_c00292{bottom:484.359467pt;}
.y2c_c00292{bottom:532.679333pt;}
.y10_c00292{bottom:538.279573pt;}
.y2b_c00292{bottom:560.279333pt;}
.yf_c00292{bottom:563.636053pt;}
.y2a_c00292{bottom:587.879333pt;}
.ye_c00292{bottom:588.919333pt;}
.y29_c00292{bottom:641.786587pt;}
.yd_c00292{bottom:643.079467pt;}
.y28_c00292{bottom:667.069867pt;}
.yc_c00292{bottom:670.679467pt;}
.y27_c00292{bottom:692.426347pt;}
.y26_c00292{bottom:717.709627pt;}
.yb_c00292{bottom:724.592907pt;}
.ya_c00292{bottom:749.876187pt;}
.y25_c00292{bottom:768.276187pt;}
.y9_c00292{bottom:775.159467pt;}
.y24_c00292{bottom:793.559467pt;}
.y8_c00292{bottom:829.319467pt;}
.y23_c00292{bottom:847.719467pt;}
.y7_c00292{bottom:856.919467pt;}
.y22_c00292{bottom:875.319467pt;}
.y21_c00292{bottom:902.919467pt;}
.y6_c00292{bottom:910.909627pt;}
.y20_c00292{bottom:930.519467pt;}
.y5_c00292{bottom:936.192907pt;}
.y1f_c00292{bottom:958.119467pt;}
.y4_c00292{bottom:961.476187pt;}
.y1e_c00292{bottom:985.719467pt;}
.y3_c00292{bottom:986.759467pt;}
.y1d_c00292{bottom:1060.599467pt;}
.y2_c00292{bottom:1060.599600pt;}
.h2_c00292{height:44.800000pt;}
.h4_c00292{height:63.479040pt;}
.h3_c00292{height:68.288000pt;}
.h5_c00292{height:69.376000pt;}
.h0_c00292{height:1122.520000pt;}
.h1_c00292{height:1122.666667pt;}
.w2_c00292{width:0.000000pt;}
.w3_c00292{width:0.058667pt;}
.w0_c00292{width:793.701333pt;}
.w1_c00292{width:794.000000pt;}
.x1_c00292{left:-745.700800pt;}
.x2_c00292{left:-680.260800pt;}
.x3_c00292{left:-661.300800pt;}
.x4_c00292{left:-651.860800pt;}
.x0_c00292{left:0.000000pt;}
.x8_c00292{left:113.440000pt;}
.x9_c00292{left:132.400000pt;}
.x7_c00292{left:141.840000pt;}
.x6_c00292{left:604.400000pt;}
.x5_c00292{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00293;src:url('chunks/assets/font_8700686caced1371758b1f3f.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00293;src:url('chunks/assets/font_e9e987c9eebd90c9c1db912d.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.lsa_c00293{letter-spacing:-0.360000px;}
.ls8_c00293{letter-spacing:-0.065880px;}
.ls7_c00293{letter-spacing:0.000000px;}
.ls9_c00293{letter-spacing:0.065880px;}
.ls4_c00293{letter-spacing:0.072000px;}
.ls1_c00293{letter-spacing:0.197640px;}
.ls6_c00293{letter-spacing:16.206480px;}
.ls5_c00293{letter-spacing:16.601760px;}
.ls3_c00293{letter-spacing:17.128800px;}
.ls2_c00293{letter-spacing:18.775800px;}
.ls0_c00293{letter-spacing:29.580120px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00293{word-spacing:-18.000000px;}
.ws5_c00293{word-spacing:-16.667640px;}
.ws7_c00293{word-spacing:-16.404120px;}
.ws17_c00293{word-spacing:-0.504000px;}
.ws1d_c00293{word-spacing:-0.461160px;}
.wsa_c00293{word-spacing:-0.270108px;}
.ws18_c00293{word-spacing:-0.131760px;}
.ws16_c00293{word-spacing:-0.072000px;}
.ws4_c00293{word-spacing:0.000000px;}
.wsf_c00293{word-spacing:0.065880px;}
.ws6_c00293{word-spacing:0.131760px;}
.ws13_c00293{word-spacing:0.263520px;}
.ws15_c00293{word-spacing:0.360000px;}
.ws3_c00293{word-spacing:0.527040px;}
.ws19_c00293{word-spacing:1.080000px;}
.ws2_c00293{word-spacing:2.160864px;}
.ws12_c00293{word-spacing:2.305800px;}
.ws14_c00293{word-spacing:3.528000px;}
.ws10_c00293{word-spacing:5.797440px;}
.ws11_c00293{word-spacing:5.995080px;}
.ws1_c00293{word-spacing:6.258600px;}
.wsd_c00293{word-spacing:10.936080px;}
.ws8_c00293{word-spacing:11.654172px;}
.ws1b_c00293{word-spacing:12.056040px;}
.wsc_c00293{word-spacing:12.846600px;}
.wsb_c00293{word-spacing:13.110120px;}
.wse_c00293{word-spacing:15.020640px;}
.ws1a_c00293{word-spacing:23.688000px;}
.ws1c_c00293{word-spacing:26.496000px;}
.ws9_c00293{word-spacing:26.568000px;}
._1_c00293{margin-left:-1.185840px;}
._0_c00293{width:1.054080px;}
._2_c00293{width:25.704000px;}
.fc1_c00293{color:rgb(0,0,0);}
.fc0_c00293{color:rgb(35,31,32);}
.fs1_c00293{font-size:65.880000px;}
.fs0_c00293{font-size:72.000000px;}
.y0_c00293{bottom:0.000000px;}
.y1_c00293{bottom:61.748550px;}
.y1e_c00293{bottom:134.680980px;}
.y1d_c00293{bottom:163.207020px;}
.y1c_c00293{bottom:191.650710px;}
.y1b_c00293{bottom:220.094400px;}
.y1a_c00293{bottom:281.024400px;}
.y19_c00293{bottom:312.074400px;}
.y18_c00293{bottom:374.084400px;}
.y17_c00293{bottom:403.784670px;}
.y16_c00293{bottom:432.228360px;}
.y15_c00293{bottom:460.754400px;}
.y14_c00293{bottom:521.594250px;}
.y13_c00293{bottom:552.644250px;}
.y12_c00293{bottom:583.694250px;}
.y11_c00293{bottom:645.704250px;}
.y10_c00293{bottom:675.483330px;}
.yf_c00293{bottom:703.927020px;}
.ye_c00293{bottom:732.370710px;}
.yd_c00293{bottom:760.814400px;}
.yc_c00293{bottom:821.744250px;}
.yb_c00293{bottom:852.794250px;}
.ya_c00293{bottom:913.440030px;}
.y9_c00293{bottom:941.966070px;}
.y8_c00293{bottom:970.409760px;}
.y7_c00293{bottom:998.853450px;}
.y6_c00293{bottom:1027.297140px;}
.y5_c00293{bottom:1084.266870px;}
.y4_c00293{bottom:1112.710560px;}
.y3_c00293{bottom:1141.154250px;}
.y2_c00293{bottom:1193.174400px;}
.h2_c00293{height:50.400000px;}
.h4_c00293{height:71.413920px;}
.h3_c00293{height:76.824000px;}
.h5_c00293{height:78.048000px;}
.h0_c00293{height:1262.835000px;}
.h1_c00293{height:1263.000000px;}
.w0_c00293{width:892.914000px;}
.w1_c00293{width:893.250000px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:54.000000px;}
.x2_c00293{left:127.620000px;}
.x3_c00293{left:148.950000px;}
.x4_c00293{left:159.570000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.lsa_c00293{letter-spacing:-0.320000pt;}
.ls8_c00293{letter-spacing:-0.058560pt;}
.ls7_c00293{letter-spacing:0.000000pt;}
.ls9_c00293{letter-spacing:0.058560pt;}
.ls4_c00293{letter-spacing:0.064000pt;}
.ls1_c00293{letter-spacing:0.175680pt;}
.ls6_c00293{letter-spacing:14.405760pt;}
.ls5_c00293{letter-spacing:14.757120pt;}
.ls3_c00293{letter-spacing:15.225600pt;}
.ls2_c00293{letter-spacing:16.689600pt;}
.ls0_c00293{letter-spacing:26.293440pt;}
.ws0_c00293{word-spacing:-16.000000pt;}
.ws5_c00293{word-spacing:-14.815680pt;}
.ws7_c00293{word-spacing:-14.581440pt;}
.ws17_c00293{word-spacing:-0.448000pt;}
.ws1d_c00293{word-spacing:-0.409920pt;}
.wsa_c00293{word-spacing:-0.240096pt;}
.ws18_c00293{word-spacing:-0.117120pt;}
.ws16_c00293{word-spacing:-0.064000pt;}
.ws4_c00293{word-spacing:0.000000pt;}
.wsf_c00293{word-spacing:0.058560pt;}
.ws6_c00293{word-spacing:0.117120pt;}
.ws13_c00293{word-spacing:0.234240pt;}
.ws15_c00293{word-spacing:0.320000pt;}
.ws3_c00293{word-spacing:0.468480pt;}
.ws19_c00293{word-spacing:0.960000pt;}
.ws2_c00293{word-spacing:1.920768pt;}
.ws12_c00293{word-spacing:2.049600pt;}
.ws14_c00293{word-spacing:3.136000pt;}
.ws10_c00293{word-spacing:5.153280pt;}
.ws11_c00293{word-spacing:5.328960pt;}
.ws1_c00293{word-spacing:5.563200pt;}
.wsd_c00293{word-spacing:9.720960pt;}
.ws8_c00293{word-spacing:10.359264pt;}
.ws1b_c00293{word-spacing:10.716480pt;}
.wsc_c00293{word-spacing:11.419200pt;}
.wsb_c00293{word-spacing:11.653440pt;}
.wse_c00293{word-spacing:13.351680pt;}
.ws1a_c00293{word-spacing:21.056000pt;}
.ws1c_c00293{word-spacing:23.552000pt;}
.ws9_c00293{word-spacing:23.616000pt;}
._1_c00293{margin-left:-1.054080pt;}
._0_c00293{width:0.936960pt;}
._2_c00293{width:22.848000pt;}
.fs1_c00293{font-size:58.560000pt;}
.fs0_c00293{font-size:64.000000pt;}
.y0_c00293{bottom:0.000000pt;}
.y1_c00293{bottom:54.887600pt;}
.y1e_c00293{bottom:119.716427pt;}
.y1d_c00293{bottom:145.072907pt;}
.y1c_c00293{bottom:170.356187pt;}
.y1b_c00293{bottom:195.639467pt;}
.y1a_c00293{bottom:249.799467pt;}
.y19_c00293{bottom:277.399467pt;}
.y18_c00293{bottom:332.519467pt;}
.y17_c00293{bottom:358.919707pt;}
.y16_c00293{bottom:384.202987pt;}
.y15_c00293{bottom:409.559467pt;}
.y14_c00293{bottom:463.639333pt;}
.y13_c00293{bottom:491.239333pt;}
.y12_c00293{bottom:518.839333pt;}
.y11_c00293{bottom:573.959333pt;}
.y10_c00293{bottom:600.429627pt;}
.yf_c00293{bottom:625.712907pt;}
.ye_c00293{bottom:650.996187pt;}
.yd_c00293{bottom:676.279467pt;}
.yc_c00293{bottom:730.439333pt;}
.yb_c00293{bottom:758.039333pt;}
.ya_c00293{bottom:811.946693pt;}
.y9_c00293{bottom:837.303173pt;}
.y8_c00293{bottom:862.586453pt;}
.y7_c00293{bottom:887.869733pt;}
.y6_c00293{bottom:913.153013pt;}
.y5_c00293{bottom:963.792773pt;}
.y4_c00293{bottom:989.076053pt;}
.y3_c00293{bottom:1014.359333pt;}
.y2_c00293{bottom:1060.599467pt;}
.h2_c00293{height:44.800000pt;}
.h4_c00293{height:63.479040pt;}
.h3_c00293{height:68.288000pt;}
.h5_c00293{height:69.376000pt;}
.h0_c00293{height:1122.520000pt;}
.h1_c00293{height:1122.666667pt;}
.w0_c00293{width:793.701333pt;}
.w1_c00293{width:794.000000pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:48.000000pt;}
.x2_c00293{left:113.440000pt;}
.x3_c00293{left:132.400000pt;}
.x4_c00293{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00294;src:url('chunks/assets/font_86dceca3b94a27bf7329ad8b.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.575000;font-style:normal;font-weight:normal;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_5e6e995c0004ff0fe2401c6c.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00294;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00294;src:url('chunks/assets/font_56695ac72fb167f449c72b23.woff2')format("woff");}.ff5_c00294{font-family:ff5_c00294;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00294;src:url('chunks/assets/font_ced0d51e18ad6e8d7918e5a1.woff2')format("woff");}.ff6_c00294{font-family:ff6_c00294;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls12_c00294{letter-spacing:-0.360000px;}
.ls14_c00294{letter-spacing:-0.216000px;}
.ls15_c00294{letter-spacing:-0.144000px;}
.ls11_c00294{letter-spacing:-0.065880px;}
.ls10_c00294{letter-spacing:0.000000px;}
.ls7_c00294{letter-spacing:0.065880px;}
.ls4_c00294{letter-spacing:0.072000px;}
.lsa_c00294{letter-spacing:0.131760px;}
.lsd_c00294{letter-spacing:0.144000px;}
.ls1_c00294{letter-spacing:0.197640px;}
.ls13_c00294{letter-spacing:0.527040px;}
.ls6_c00294{letter-spacing:16.206480px;}
.ls5_c00294{letter-spacing:16.601760px;}
.ls3_c00294{letter-spacing:17.128800px;}
.lse_c00294{letter-spacing:18.144000px;}
.lsc_c00294{letter-spacing:18.360000px;}
.ls2_c00294{letter-spacing:18.775800px;}
.lsb_c00294{letter-spacing:22.680000px;}
.ls0_c00294{letter-spacing:29.580120px;}
.ls9_c00294{letter-spacing:32.676480px;}
.ls8_c00294{letter-spacing:32.808240px;}
.lsf_c00294{letter-spacing:43.920000px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00294{word-spacing:-18.000000px;}
.ws5_c00294{word-spacing:-16.667640px;}
.ws7_c00294{word-spacing:-16.404120px;}
.wsc_c00294{word-spacing:-0.856440px;}
.ws1a_c00294{word-spacing:-0.504000px;}
.ws20_c00294{word-spacing:-0.461160px;}
.ws2a_c00294{word-spacing:-0.360000px;}
.wsa_c00294{word-spacing:-0.270108px;}
.wsd_c00294{word-spacing:-0.263520px;}
.ws21_c00294{word-spacing:-0.197640px;}
.ws1b_c00294{word-spacing:-0.131760px;}
.ws19_c00294{word-spacing:-0.072000px;}
.ws4_c00294{word-spacing:0.000000px;}
.ws12_c00294{word-spacing:0.065880px;}
.ws6_c00294{word-spacing:0.131760px;}
.ws2b_c00294{word-spacing:0.144000px;}
.ws29_c00294{word-spacing:0.216000px;}
.ws16_c00294{word-spacing:0.263520px;}
.ws27_c00294{word-spacing:0.288000px;}
.ws18_c00294{word-spacing:0.360000px;}
.ws3_c00294{word-spacing:0.527040px;}
.ws28_c00294{word-spacing:0.720000px;}
.ws1c_c00294{word-spacing:1.080000px;}
.ws2_c00294{word-spacing:2.160864px;}
.wsb_c00294{word-spacing:2.167452px;}
.ws15_c00294{word-spacing:2.305800px;}
.ws17_c00294{word-spacing:3.528000px;}
.ws25_c00294{word-spacing:4.608000px;}
.ws26_c00294{word-spacing:4.680000px;}
.ws13_c00294{word-spacing:5.797440px;}
.ws14_c00294{word-spacing:5.995080px;}
.ws1_c00294{word-spacing:6.258600px;}
.ws2d_c00294{word-spacing:6.408000px;}
.ws2c_c00294{word-spacing:6.480000px;}
.ws10_c00294{word-spacing:10.936080px;}
.ws8_c00294{word-spacing:11.654172px;}
.ws22_c00294{word-spacing:11.880000px;}
.ws1e_c00294{word-spacing:12.056040px;}
.wsf_c00294{word-spacing:12.846600px;}
.wse_c00294{word-spacing:13.110120px;}
.ws11_c00294{word-spacing:15.020640px;}
.ws23_c00294{word-spacing:16.074720px;}
.ws24_c00294{word-spacing:16.140600px;}
.ws2f_c00294{word-spacing:17.524080px;}
.ws1d_c00294{word-spacing:23.688000px;}
.ws2e_c00294{word-spacing:25.848000px;}
.ws1f_c00294{word-spacing:26.496000px;}
.ws9_c00294{word-spacing:26.568000px;}
._1_c00294{margin-left:-1.185840px;}
._0_c00294{width:1.054080px;}
._2_c00294{width:25.704000px;}
.fc2_c00294{color:transparent;}
.fc1_c00294{color:rgb(0,0,0);}
.fc0_c00294{color:rgb(35,31,32);}
.fs1_c00294{font-size:65.880000px;}
.fs0_c00294{font-size:72.000000px;}
.y0_c00294{bottom:0.000000px;}
.y1_c00294{bottom:61.748550px;}
.y34_c00294{bottom:132.160710px;}
.y1e_c00294{bottom:134.680980px;}
.y33_c00294{bottom:160.604400px;}
.y1d_c00294{bottom:163.207020px;}
.y1c_c00294{bottom:191.650710px;}
.y1b_c00294{bottom:220.094400px;}
.y32_c00294{bottom:221.534400px;}
.y31_c00294{bottom:252.584400px;}
.y1a_c00294{bottom:281.024400px;}
.y30_c00294{bottom:283.634400px;}
.y19_c00294{bottom:312.074400px;}
.y2f_c00294{bottom:345.734250px;}
.y18_c00294{bottom:374.084400px;}
.y17_c00294{bottom:403.784670px;}
.y2e_c00294{bottom:407.834250px;}
.y16_c00294{bottom:432.228360px;}
.y2d_c00294{bottom:438.884250px;}
.y15_c00294{bottom:460.754400px;}
.y2c_c00294{bottom:469.934250px;}
.y14_c00294{bottom:521.594250px;}
.y2b_c00294{bottom:531.854250px;}
.y13_c00294{bottom:552.644250px;}
.y2a_c00294{bottom:561.637290px;}
.y12_c00294{bottom:583.694250px;}
.y29_c00294{bottom:590.080980px;}
.y28_c00294{bottom:618.524670px;}
.y11_c00294{bottom:645.704250px;}
.y27_c00294{bottom:646.968360px;}
.y10_c00294{bottom:675.483330px;}
.y26_c00294{bottom:675.494400px;}
.yf_c00294{bottom:703.927020px;}
.ye_c00294{bottom:732.370710px;}
.y25_c00294{bottom:736.424400px;}
.yd_c00294{bottom:760.814400px;}
.y24_c00294{bottom:767.474400px;}
.yc_c00294{bottom:821.744250px;}
.y23_c00294{bottom:828.108960px;}
.yb_c00294{bottom:852.794250px;}
.y22_c00294{bottom:856.552650px;}
.y21_c00294{bottom:884.996340px;}
.ya_c00294{bottom:913.440030px;}
.y9_c00294{bottom:941.966070px;}
.y8_c00294{bottom:970.409760px;}
.y7_c00294{bottom:998.853450px;}
.y6_c00294{bottom:1027.297140px;}
.y20_c00294{bottom:1055.740830px;}
.y5_c00294{bottom:1084.266870px;}
.y4_c00294{bottom:1112.710560px;}
.y3_c00294{bottom:1141.154250px;}
.y1f_c00294{bottom:1193.174400px;}
.y2_c00294{bottom:1193.174550px;}
.h2_c00294{height:50.400000px;}
.h4_c00294{height:71.413920px;}
.h3_c00294{height:76.824000px;}
.h5_c00294{height:78.048000px;}
.h0_c00294{height:1262.835000px;}
.h1_c00294{height:1263.000000px;}
.w2_c00294{width:0.000000px;}
.w3_c00294{width:0.066000px;}
.w0_c00294{width:892.914000px;}
.w1_c00294{width:893.250000px;}
.x1_c00294{left:-838.913400px;}
.x2_c00294{left:-765.293400px;}
.x3_c00294{left:-743.963400px;}
.x4_c00294{left:-733.343400px;}
.x0_c00294{left:0.000000px;}
.x9_c00294{left:127.620000px;}
.x7_c00294{left:148.950000px;}
.x8_c00294{left:159.570000px;}
.x6_c00294{left:679.950000px;}
.x5_c00294{left:804.366150px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls12_c00294{letter-spacing:-0.320000pt;}
.ls14_c00294{letter-spacing:-0.192000pt;}
.ls15_c00294{letter-spacing:-0.128000pt;}
.ls11_c00294{letter-spacing:-0.058560pt;}
.ls10_c00294{letter-spacing:0.000000pt;}
.ls7_c00294{letter-spacing:0.058560pt;}
.ls4_c00294{letter-spacing:0.064000pt;}
.lsa_c00294{letter-spacing:0.117120pt;}
.lsd_c00294{letter-spacing:0.128000pt;}
.ls1_c00294{letter-spacing:0.175680pt;}
.ls13_c00294{letter-spacing:0.468480pt;}
.ls6_c00294{letter-spacing:14.405760pt;}
.ls5_c00294{letter-spacing:14.757120pt;}
.ls3_c00294{letter-spacing:15.225600pt;}
.lse_c00294{letter-spacing:16.128000pt;}
.lsc_c00294{letter-spacing:16.320000pt;}
.ls2_c00294{letter-spacing:16.689600pt;}
.lsb_c00294{letter-spacing:20.160000pt;}
.ls0_c00294{letter-spacing:26.293440pt;}
.ls9_c00294{letter-spacing:29.045760pt;}
.ls8_c00294{letter-spacing:29.162880pt;}
.lsf_c00294{letter-spacing:39.040000pt;}
.ws0_c00294{word-spacing:-16.000000pt;}
.ws5_c00294{word-spacing:-14.815680pt;}
.ws7_c00294{word-spacing:-14.581440pt;}
.wsc_c00294{word-spacing:-0.761280pt;}
.ws1a_c00294{word-spacing:-0.448000pt;}
.ws20_c00294{word-spacing:-0.409920pt;}
.ws2a_c00294{word-spacing:-0.320000pt;}
.wsa_c00294{word-spacing:-0.240096pt;}
.wsd_c00294{word-spacing:-0.234240pt;}
.ws21_c00294{word-spacing:-0.175680pt;}
.ws1b_c00294{word-spacing:-0.117120pt;}
.ws19_c00294{word-spacing:-0.064000pt;}
.ws4_c00294{word-spacing:0.000000pt;}
.ws12_c00294{word-spacing:0.058560pt;}
.ws6_c00294{word-spacing:0.117120pt;}
.ws2b_c00294{word-spacing:0.128000pt;}
.ws29_c00294{word-spacing:0.192000pt;}
.ws16_c00294{word-spacing:0.234240pt;}
.ws27_c00294{word-spacing:0.256000pt;}
.ws18_c00294{word-spacing:0.320000pt;}
.ws3_c00294{word-spacing:0.468480pt;}
.ws28_c00294{word-spacing:0.640000pt;}
.ws1c_c00294{word-spacing:0.960000pt;}
.ws2_c00294{word-spacing:1.920768pt;}
.wsb_c00294{word-spacing:1.926624pt;}
.ws15_c00294{word-spacing:2.049600pt;}
.ws17_c00294{word-spacing:3.136000pt;}
.ws25_c00294{word-spacing:4.096000pt;}
.ws26_c00294{word-spacing:4.160000pt;}
.ws13_c00294{word-spacing:5.153280pt;}
.ws14_c00294{word-spacing:5.328960pt;}
.ws1_c00294{word-spacing:5.563200pt;}
.ws2d_c00294{word-spacing:5.696000pt;}
.ws2c_c00294{word-spacing:5.760000pt;}
.ws10_c00294{word-spacing:9.720960pt;}
.ws8_c00294{word-spacing:10.359264pt;}
.ws22_c00294{word-spacing:10.560000pt;}
.ws1e_c00294{word-spacing:10.716480pt;}
.wsf_c00294{word-spacing:11.419200pt;}
.wse_c00294{word-spacing:11.653440pt;}
.ws11_c00294{word-spacing:13.351680pt;}
.ws23_c00294{word-spacing:14.288640pt;}
.ws24_c00294{word-spacing:14.347200pt;}
.ws2f_c00294{word-spacing:15.576960pt;}
.ws1d_c00294{word-spacing:21.056000pt;}
.ws2e_c00294{word-spacing:22.976000pt;}
.ws1f_c00294{word-spacing:23.552000pt;}
.ws9_c00294{word-spacing:23.616000pt;}
._1_c00294{margin-left:-1.054080pt;}
._0_c00294{width:0.936960pt;}
._2_c00294{width:22.848000pt;}
.fs1_c00294{font-size:58.560000pt;}
.fs0_c00294{font-size:64.000000pt;}
.y0_c00294{bottom:0.000000pt;}
.y1_c00294{bottom:54.887600pt;}
.y34_c00294{bottom:117.476187pt;}
.y1e_c00294{bottom:119.716427pt;}
.y33_c00294{bottom:142.759467pt;}
.y1d_c00294{bottom:145.072907pt;}
.y1c_c00294{bottom:170.356187pt;}
.y1b_c00294{bottom:195.639467pt;}
.y32_c00294{bottom:196.919467pt;}
.y31_c00294{bottom:224.519467pt;}
.y1a_c00294{bottom:249.799467pt;}
.y30_c00294{bottom:252.119467pt;}
.y19_c00294{bottom:277.399467pt;}
.y2f_c00294{bottom:307.319333pt;}
.y18_c00294{bottom:332.519467pt;}
.y17_c00294{bottom:358.919707pt;}
.y2e_c00294{bottom:362.519333pt;}
.y16_c00294{bottom:384.202987pt;}
.y2d_c00294{bottom:390.119333pt;}
.y15_c00294{bottom:409.559467pt;}
.y2c_c00294{bottom:417.719333pt;}
.y14_c00294{bottom:463.639333pt;}
.y2b_c00294{bottom:472.759333pt;}
.y13_c00294{bottom:491.239333pt;}
.y2a_c00294{bottom:499.233147pt;}
.y12_c00294{bottom:518.839333pt;}
.y29_c00294{bottom:524.516427pt;}
.y28_c00294{bottom:549.799707pt;}
.y11_c00294{bottom:573.959333pt;}
.y27_c00294{bottom:575.082987pt;}
.y10_c00294{bottom:600.429627pt;}
.y26_c00294{bottom:600.439467pt;}
.yf_c00294{bottom:625.712907pt;}
.ye_c00294{bottom:650.996187pt;}
.y25_c00294{bottom:654.599467pt;}
.yd_c00294{bottom:676.279467pt;}
.y24_c00294{bottom:682.199467pt;}
.yc_c00294{bottom:730.439333pt;}
.y23_c00294{bottom:736.096853pt;}
.yb_c00294{bottom:758.039333pt;}
.y22_c00294{bottom:761.380133pt;}
.y21_c00294{bottom:786.663413pt;}
.ya_c00294{bottom:811.946693pt;}
.y9_c00294{bottom:837.303173pt;}
.y8_c00294{bottom:862.586453pt;}
.y7_c00294{bottom:887.869733pt;}
.y6_c00294{bottom:913.153013pt;}
.y20_c00294{bottom:938.436293pt;}
.y5_c00294{bottom:963.792773pt;}
.y4_c00294{bottom:989.076053pt;}
.y3_c00294{bottom:1014.359333pt;}
.y1f_c00294{bottom:1060.599467pt;}
.y2_c00294{bottom:1060.599600pt;}
.h2_c00294{height:44.800000pt;}
.h4_c00294{height:63.479040pt;}
.h3_c00294{height:68.288000pt;}
.h5_c00294{height:69.376000pt;}
.h0_c00294{height:1122.520000pt;}
.h1_c00294{height:1122.666667pt;}
.w2_c00294{width:0.000000pt;}
.w3_c00294{width:0.058667pt;}
.w0_c00294{width:793.701333pt;}
.w1_c00294{width:794.000000pt;}
.x1_c00294{left:-745.700800pt;}
.x2_c00294{left:-680.260800pt;}
.x3_c00294{left:-661.300800pt;}
.x4_c00294{left:-651.860800pt;}
.x0_c00294{left:0.000000pt;}
.x9_c00294{left:113.440000pt;}
.x7_c00294{left:132.400000pt;}
.x8_c00294{left:141.840000pt;}
.x6_c00294{left:604.400000pt;}
.x5_c00294{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00295;src:url('chunks/assets/font_930f83e65bc886fe87417360.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00295;src:url('chunks/assets/font_74d351233927586631ac9d75.woff2')format("woff");}.ff3_c00295{font-family:ff3_c00295;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls7_c00295{letter-spacing:-0.288000px;}
.ls6_c00295{letter-spacing:-0.065880px;}
.ls5_c00295{letter-spacing:0.000000px;}
.ls3_c00295{letter-spacing:0.065880px;}
.ls2_c00295{letter-spacing:0.072000px;}
.ls8_c00295{letter-spacing:0.144000px;}
.ls1_c00295{letter-spacing:0.197640px;}
.ls4_c00295{letter-spacing:18.775800px;}
.ls0_c00295{letter-spacing:20.949840px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00295{word-spacing:-18.000000px;}
.ws2_c00295{word-spacing:-16.667640px;}
.ws4_c00295{word-spacing:-16.470000px;}
.ws1_c00295{word-spacing:-16.404120px;}
.wsa_c00295{word-spacing:-0.131760px;}
.wsc_c00295{word-spacing:-0.072000px;}
.ws7_c00295{word-spacing:0.000000px;}
.ws9_c00295{word-spacing:0.065880px;}
.ws12_c00295{word-spacing:0.131760px;}
.ws5_c00295{word-spacing:0.263520px;}
.ws17_c00295{word-spacing:0.527040px;}
.wsb_c00295{word-spacing:0.648000px;}
.ws10_c00295{word-spacing:1.317600px;}
.wsf_c00295{word-spacing:1.581120px;}
.wse_c00295{word-spacing:2.042280px;}
.ws13_c00295{word-spacing:2.088000px;}
.wsd_c00295{word-spacing:2.305800px;}
.ws20_c00295{word-spacing:2.766960px;}
.ws18_c00295{word-spacing:3.821040px;}
.ws8_c00295{word-spacing:4.216320px;}
.ws14_c00295{word-spacing:5.328000px;}
.ws1f_c00295{word-spacing:5.995080px;}
.ws11_c00295{word-spacing:10.606680px;}
.ws3_c00295{word-spacing:13.241880px;}
.ws1e_c00295{word-spacing:13.571280px;}
.ws16_c00295{word-spacing:13.900680px;}
.ws15_c00295{word-spacing:17.194680px;}
.ws6_c00295{word-spacing:27.158400px;}
.ws19_c00295{word-spacing:27.288000px;}
.ws1b_c00295{word-spacing:27.360000px;}
.ws1a_c00295{word-spacing:27.648000px;}
.ws1c_c00295{word-spacing:27.936000px;}
.ws1d_c00295{word-spacing:34.920000px;}
._0_c00295{margin-left:-1.119960px;}
._1_c00295{width:1.251720px;}
._2_c00295{width:32.386608px;}
.fc1_c00295{color:rgb(0,0,0);}
.fc0_c00295{color:rgb(35,31,32);}
.fs1_c00295{font-size:65.880000px;}
.fs0_c00295{font-size:72.000000px;}
.y0_c00295{bottom:0.000000px;}
.y1_c00295{bottom:61.748550px;}
.y1c_c00295{bottom:191.643330px;}
.y1b_c00295{bottom:220.087020px;}
.y1a_c00295{bottom:248.530710px;}
.y19_c00295{bottom:276.974400px;}
.y18_c00295{bottom:337.904400px;}
.y17_c00295{bottom:368.954400px;}
.y16_c00295{bottom:400.004400px;}
.y15_c00295{bottom:460.736220px;}
.y14_c00295{bottom:489.179910px;}
.y13_c00295{bottom:517.623600px;}
.y12_c00295{bottom:574.510980px;}
.y11_c00295{bottom:603.037020px;}
.y10_c00295{bottom:631.480710px;}
.yf_c00295{bottom:659.924400px;}
.ye_c00295{bottom:720.854400px;}
.yd_c00295{bottom:751.904400px;}
.yc_c00295{bottom:782.954400px;}
.yb_c00295{bottom:814.004400px;}
.ya_c00295{bottom:874.660980px;}
.y9_c00295{bottom:903.104670px;}
.y8_c00295{bottom:931.630710px;}
.y7_c00295{bottom:960.074400px;}
.y6_c00295{bottom:1021.004400px;}
.y5_c00295{bottom:1052.054400px;}
.y4_c00295{bottom:1112.710560px;}
.y3_c00295{bottom:1141.154250px;}
.y2_c00295{bottom:1193.174400px;}
.h2_c00295{height:50.400000px;}
.h4_c00295{height:71.413920px;}
.h3_c00295{height:76.824000px;}
.h5_c00295{height:78.048000px;}
.h0_c00295{height:1262.835000px;}
.h1_c00295{height:1263.000000px;}
.w0_c00295{width:892.914000px;}
.w1_c00295{width:893.250000px;}
.x0_c00295{left:0.000000px;}
.x1_c00295{left:54.000000px;}
.x2_c00295{left:127.620000px;}
.x3_c00295{left:148.950000px;}
.x4_c00295{left:159.570000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls7_c00295{letter-spacing:-0.256000pt;}
.ls6_c00295{letter-spacing:-0.058560pt;}
.ls5_c00295{letter-spacing:0.000000pt;}
.ls3_c00295{letter-spacing:0.058560pt;}
.ls2_c00295{letter-spacing:0.064000pt;}
.ls8_c00295{letter-spacing:0.128000pt;}
.ls1_c00295{letter-spacing:0.175680pt;}
.ls4_c00295{letter-spacing:16.689600pt;}
.ls0_c00295{letter-spacing:18.622080pt;}
.ws0_c00295{word-spacing:-16.000000pt;}
.ws2_c00295{word-spacing:-14.815680pt;}
.ws4_c00295{word-spacing:-14.640000pt;}
.ws1_c00295{word-spacing:-14.581440pt;}
.wsa_c00295{word-spacing:-0.117120pt;}
.wsc_c00295{word-spacing:-0.064000pt;}
.ws7_c00295{word-spacing:0.000000pt;}
.ws9_c00295{word-spacing:0.058560pt;}
.ws12_c00295{word-spacing:0.117120pt;}
.ws5_c00295{word-spacing:0.234240pt;}
.ws17_c00295{word-spacing:0.468480pt;}
.wsb_c00295{word-spacing:0.576000pt;}
.ws10_c00295{word-spacing:1.171200pt;}
.wsf_c00295{word-spacing:1.405440pt;}
.wse_c00295{word-spacing:1.815360pt;}
.ws13_c00295{word-spacing:1.856000pt;}
.wsd_c00295{word-spacing:2.049600pt;}
.ws20_c00295{word-spacing:2.459520pt;}
.ws18_c00295{word-spacing:3.396480pt;}
.ws8_c00295{word-spacing:3.747840pt;}
.ws14_c00295{word-spacing:4.736000pt;}
.ws1f_c00295{word-spacing:5.328960pt;}
.ws11_c00295{word-spacing:9.428160pt;}
.ws3_c00295{word-spacing:11.770560pt;}
.ws1e_c00295{word-spacing:12.063360pt;}
.ws16_c00295{word-spacing:12.356160pt;}
.ws15_c00295{word-spacing:15.284160pt;}
.ws6_c00295{word-spacing:24.140800pt;}
.ws19_c00295{word-spacing:24.256000pt;}
.ws1b_c00295{word-spacing:24.320000pt;}
.ws1a_c00295{word-spacing:24.576000pt;}
.ws1c_c00295{word-spacing:24.832000pt;}
.ws1d_c00295{word-spacing:31.040000pt;}
._0_c00295{margin-left:-0.995520pt;}
._1_c00295{width:1.112640pt;}
._2_c00295{width:28.788096pt;}
.fs1_c00295{font-size:58.560000pt;}
.fs0_c00295{font-size:64.000000pt;}
.y0_c00295{bottom:0.000000pt;}
.y1_c00295{bottom:54.887600pt;}
.y1c_c00295{bottom:170.349627pt;}
.y1b_c00295{bottom:195.632907pt;}
.y1a_c00295{bottom:220.916187pt;}
.y19_c00295{bottom:246.199467pt;}
.y18_c00295{bottom:300.359467pt;}
.y17_c00295{bottom:327.959467pt;}
.y16_c00295{bottom:355.559467pt;}
.y15_c00295{bottom:409.543307pt;}
.y14_c00295{bottom:434.826587pt;}
.y13_c00295{bottom:460.109867pt;}
.y12_c00295{bottom:510.676427pt;}
.y11_c00295{bottom:536.032907pt;}
.y10_c00295{bottom:561.316187pt;}
.yf_c00295{bottom:586.599467pt;}
.ye_c00295{bottom:640.759467pt;}
.yd_c00295{bottom:668.359467pt;}
.yc_c00295{bottom:695.959467pt;}
.yb_c00295{bottom:723.559467pt;}
.ya_c00295{bottom:777.476427pt;}
.y9_c00295{bottom:802.759707pt;}
.y8_c00295{bottom:828.116187pt;}
.y7_c00295{bottom:853.399467pt;}
.y6_c00295{bottom:907.559467pt;}
.y5_c00295{bottom:935.159467pt;}
.y4_c00295{bottom:989.076053pt;}
.y3_c00295{bottom:1014.359333pt;}
.y2_c00295{bottom:1060.599467pt;}
.h2_c00295{height:44.800000pt;}
.h4_c00295{height:63.479040pt;}
.h3_c00295{height:68.288000pt;}
.h5_c00295{height:69.376000pt;}
.h0_c00295{height:1122.520000pt;}
.h1_c00295{height:1122.666667pt;}
.w0_c00295{width:793.701333pt;}
.w1_c00295{width:794.000000pt;}
.x0_c00295{left:0.000000pt;}
.x1_c00295{left:48.000000pt;}
.x2_c00295{left:113.440000pt;}
.x3_c00295{left:132.400000pt;}
.x4_c00295{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00296;src:url('chunks/assets/font_0070c2caac1c3388e15381ec.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00296;src:url('chunks/assets/font_109396136cb05914a79c9c01.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00296;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00296{font-family:ff4_c00296;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00296;src:url('chunks/assets/font_547c8ee88db1b73fa453d70c.woff2')format("woff");}.ff5_c00296{font-family:ff5_c00296;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00296;src:url('chunks/assets/font_b93cf826494fd0b2cdff4494.woff2')format("woff");}.ff6_c00296{font-family:ff6_c00296;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.lsa_c00296{letter-spacing:-0.288000px;}
.lsb_c00296{letter-spacing:-0.072000px;}
.ls9_c00296{letter-spacing:-0.065880px;}
.ls8_c00296{letter-spacing:0.000000px;}
.ls3_c00296{letter-spacing:0.065880px;}
.ls2_c00296{letter-spacing:0.072000px;}
.ls5_c00296{letter-spacing:0.144000px;}
.ls1_c00296{letter-spacing:0.197640px;}
.ls6_c00296{letter-spacing:17.484552px;}
.ls4_c00296{letter-spacing:18.775800px;}
.ls7_c00296{letter-spacing:19.500480px;}
.ls0_c00296{letter-spacing:20.949840px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:-18.000000px;}
.ws2_c00296{word-spacing:-16.667640px;}
.ws4_c00296{word-spacing:-16.470000px;}
.ws1_c00296{word-spacing:-16.404120px;}
.ws30_c00296{word-spacing:-0.461160px;}
.wsf_c00296{word-spacing:-0.316224px;}
.ws14_c00296{word-spacing:-0.131760px;}
.ws16_c00296{word-spacing:-0.072000px;}
.ws12_c00296{word-spacing:0.000000px;}
.ws10_c00296{word-spacing:0.065880px;}
.ws1c_c00296{word-spacing:0.131760px;}
.ws5_c00296{word-spacing:0.263520px;}
.ws21_c00296{word-spacing:0.527040px;}
.ws15_c00296{word-spacing:0.648000px;}
.wsd_c00296{word-spacing:0.678564px;}
.ws1a_c00296{word-spacing:1.317600px;}
.ws19_c00296{word-spacing:1.581120px;}
.ws2f_c00296{word-spacing:1.712880px;}
.ws18_c00296{word-spacing:2.042280px;}
.ws1d_c00296{word-spacing:2.088000px;}
.ws17_c00296{word-spacing:2.305800px;}
.ws2c_c00296{word-spacing:2.448000px;}
.ws2d_c00296{word-spacing:2.520000px;}
.ws2a_c00296{word-spacing:2.766960px;}
.ws3f_c00296{word-spacing:2.808000px;}
.ws11_c00296{word-spacing:2.880000px;}
.ws3a_c00296{word-spacing:3.030480px;}
.ws33_c00296{word-spacing:3.096360px;}
.ws39_c00296{word-spacing:3.491640px;}
.ws3b_c00296{word-spacing:3.528000px;}
.ws2e_c00296{word-spacing:3.755160px;}
.wse_c00296{word-spacing:3.816000px;}
.ws22_c00296{word-spacing:3.821040px;}
.ws3c_c00296{word-spacing:3.960000px;}
.ws13_c00296{word-spacing:4.216320px;}
.ws1e_c00296{word-spacing:5.328000px;}
.ws31_c00296{word-spacing:5.616000px;}
.ws32_c00296{word-spacing:5.688000px;}
.wsb_c00296{word-spacing:5.832000px;}
.wsc_c00296{word-spacing:5.918400px;}
.ws36_c00296{word-spacing:5.976000px;}
.ws29_c00296{word-spacing:5.995080px;}
.ws37_c00296{word-spacing:6.048000px;}
.ws38_c00296{word-spacing:6.120000px;}
.ws9_c00296{word-spacing:6.264000px;}
.ws2b_c00296{word-spacing:6.336000px;}
.wsa_c00296{word-spacing:6.480000px;}
.ws8_c00296{word-spacing:6.552000px;}
.ws7_c00296{word-spacing:6.696000px;}
.ws3e_c00296{word-spacing:8.498520px;}
.ws3d_c00296{word-spacing:8.762040px;}
.ws1b_c00296{word-spacing:10.606680px;}
.ws3_c00296{word-spacing:13.241880px;}
.ws28_c00296{word-spacing:13.571280px;}
.ws20_c00296{word-spacing:13.900680px;}
.ws35_c00296{word-spacing:15.020640px;}
.ws34_c00296{word-spacing:15.284160px;}
.ws1f_c00296{word-spacing:17.194680px;}
.ws41_c00296{word-spacing:25.416000px;}
.ws40_c00296{word-spacing:25.488000px;}
.ws6_c00296{word-spacing:27.158400px;}
.ws23_c00296{word-spacing:27.288000px;}
.ws25_c00296{word-spacing:27.360000px;}
.ws24_c00296{word-spacing:27.648000px;}
.ws26_c00296{word-spacing:27.936000px;}
.ws27_c00296{word-spacing:34.920000px;}
._0_c00296{margin-left:-1.119960px;}
._1_c00296{width:1.251720px;}
._3_c00296{width:6.375960px;}
._4_c00296{width:19.039320px;}
._2_c00296{width:32.386608px;}
.fc2_c00296{color:transparent;}
.fc1_c00296{color:rgb(0,0,0);}
.fc0_c00296{color:rgb(35,31,32);}
.fs1_c00296{font-size:65.880000px;}
.fs0_c00296{font-size:72.000000px;}
.y0_c00296{bottom:0.000000px;}
.y1_c00296{bottom:61.748550px;}
.y37_c00296{bottom:151.694400px;}
.y36_c00296{bottom:182.744400px;}
.y1c_c00296{bottom:191.643330px;}
.y35_c00296{bottom:213.794400px;}
.y1b_c00296{bottom:220.087020px;}
.y1a_c00296{bottom:248.530710px;}
.y34_c00296{bottom:274.447020px;}
.y19_c00296{bottom:276.974400px;}
.y33_c00296{bottom:302.890710px;}
.y32_c00296{bottom:331.334400px;}
.y18_c00296{bottom:337.904400px;}
.y17_c00296{bottom:368.954400px;}
.y31_c00296{bottom:392.264400px;}
.y16_c00296{bottom:400.004400px;}
.y30_c00296{bottom:423.314400px;}
.y15_c00296{bottom:460.736220px;}
.y2f_c00296{bottom:483.970980px;}
.y14_c00296{bottom:489.179910px;}
.y2e_c00296{bottom:512.497020px;}
.y13_c00296{bottom:517.623600px;}
.y2d_c00296{bottom:540.940710px;}
.y2c_c00296{bottom:569.384400px;}
.y12_c00296{bottom:574.510980px;}
.y11_c00296{bottom:603.037020px;}
.y2b_c00296{bottom:630.314250px;}
.y10_c00296{bottom:631.480710px;}
.yf_c00296{bottom:659.924400px;}
.y2a_c00296{bottom:661.364250px;}
.ye_c00296{bottom:720.854400px;}
.y29_c00296{bottom:722.020980px;}
.y28_c00296{bottom:750.464670px;}
.yd_c00296{bottom:751.904400px;}
.y27_c00296{bottom:778.990710px;}
.yc_c00296{bottom:782.954400px;}
.y26_c00296{bottom:807.434400px;}
.yb_c00296{bottom:814.004400px;}
.y25_c00296{bottom:868.364400px;}
.ya_c00296{bottom:874.660980px;}
.y24_c00296{bottom:899.414400px;}
.y9_c00296{bottom:903.104670px;}
.y8_c00296{bottom:931.630710px;}
.y23_c00296{bottom:960.066870px;}
.y7_c00296{bottom:960.074400px;}
.y22_c00296{bottom:988.510560px;}
.y21_c00296{bottom:1016.954250px;}
.y6_c00296{bottom:1021.004400px;}
.y5_c00296{bottom:1052.054400px;}
.y20_c00296{bottom:1077.884400px;}
.y1f_c00296{bottom:1108.934400px;}
.y4_c00296{bottom:1112.710560px;}
.y1e_c00296{bottom:1139.984400px;}
.y3_c00296{bottom:1141.154250px;}
.y1d_c00296{bottom:1193.174400px;}
.y2_c00296{bottom:1193.174550px;}
.h2_c00296{height:50.400000px;}
.h4_c00296{height:71.413920px;}
.h3_c00296{height:76.824000px;}
.h5_c00296{height:78.048000px;}
.h0_c00296{height:1262.835000px;}
.h1_c00296{height:1263.000000px;}
.w2_c00296{width:0.000000px;}
.w3_c00296{width:0.066000px;}
.w0_c00296{width:892.914000px;}
.w1_c00296{width:893.250000px;}
.x1_c00296{left:-838.913400px;}
.x2_c00296{left:-765.293400px;}
.x3_c00296{left:-743.963400px;}
.x4_c00296{left:-733.343400px;}
.x0_c00296{left:0.000000px;}
.x8_c00296{left:127.620000px;}
.x9_c00296{left:148.950000px;}
.x7_c00296{left:159.570000px;}
.x6_c00296{left:679.950000px;}
.x5_c00296{left:804.366150px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.lsa_c00296{letter-spacing:-0.256000pt;}
.lsb_c00296{letter-spacing:-0.064000pt;}
.ls9_c00296{letter-spacing:-0.058560pt;}
.ls8_c00296{letter-spacing:0.000000pt;}
.ls3_c00296{letter-spacing:0.058560pt;}
.ls2_c00296{letter-spacing:0.064000pt;}
.ls5_c00296{letter-spacing:0.128000pt;}
.ls1_c00296{letter-spacing:0.175680pt;}
.ls6_c00296{letter-spacing:15.541824pt;}
.ls4_c00296{letter-spacing:16.689600pt;}
.ls7_c00296{letter-spacing:17.333760pt;}
.ls0_c00296{letter-spacing:18.622080pt;}
.ws0_c00296{word-spacing:-16.000000pt;}
.ws2_c00296{word-spacing:-14.815680pt;}
.ws4_c00296{word-spacing:-14.640000pt;}
.ws1_c00296{word-spacing:-14.581440pt;}
.ws30_c00296{word-spacing:-0.409920pt;}
.wsf_c00296{word-spacing:-0.281088pt;}
.ws14_c00296{word-spacing:-0.117120pt;}
.ws16_c00296{word-spacing:-0.064000pt;}
.ws12_c00296{word-spacing:0.000000pt;}
.ws10_c00296{word-spacing:0.058560pt;}
.ws1c_c00296{word-spacing:0.117120pt;}
.ws5_c00296{word-spacing:0.234240pt;}
.ws21_c00296{word-spacing:0.468480pt;}
.ws15_c00296{word-spacing:0.576000pt;}
.wsd_c00296{word-spacing:0.603168pt;}
.ws1a_c00296{word-spacing:1.171200pt;}
.ws19_c00296{word-spacing:1.405440pt;}
.ws2f_c00296{word-spacing:1.522560pt;}
.ws18_c00296{word-spacing:1.815360pt;}
.ws1d_c00296{word-spacing:1.856000pt;}
.ws17_c00296{word-spacing:2.049600pt;}
.ws2c_c00296{word-spacing:2.176000pt;}
.ws2d_c00296{word-spacing:2.240000pt;}
.ws2a_c00296{word-spacing:2.459520pt;}
.ws3f_c00296{word-spacing:2.496000pt;}
.ws11_c00296{word-spacing:2.560000pt;}
.ws3a_c00296{word-spacing:2.693760pt;}
.ws33_c00296{word-spacing:2.752320pt;}
.ws39_c00296{word-spacing:3.103680pt;}
.ws3b_c00296{word-spacing:3.136000pt;}
.ws2e_c00296{word-spacing:3.337920pt;}
.wse_c00296{word-spacing:3.392000pt;}
.ws22_c00296{word-spacing:3.396480pt;}
.ws3c_c00296{word-spacing:3.520000pt;}
.ws13_c00296{word-spacing:3.747840pt;}
.ws1e_c00296{word-spacing:4.736000pt;}
.ws31_c00296{word-spacing:4.992000pt;}
.ws32_c00296{word-spacing:5.056000pt;}
.wsb_c00296{word-spacing:5.184000pt;}
.wsc_c00296{word-spacing:5.260800pt;}
.ws36_c00296{word-spacing:5.312000pt;}
.ws29_c00296{word-spacing:5.328960pt;}
.ws37_c00296{word-spacing:5.376000pt;}
.ws38_c00296{word-spacing:5.440000pt;}
.ws9_c00296{word-spacing:5.568000pt;}
.ws2b_c00296{word-spacing:5.632000pt;}
.wsa_c00296{word-spacing:5.760000pt;}
.ws8_c00296{word-spacing:5.824000pt;}
.ws7_c00296{word-spacing:5.952000pt;}
.ws3e_c00296{word-spacing:7.554240pt;}
.ws3d_c00296{word-spacing:7.788480pt;}
.ws1b_c00296{word-spacing:9.428160pt;}
.ws3_c00296{word-spacing:11.770560pt;}
.ws28_c00296{word-spacing:12.063360pt;}
.ws20_c00296{word-spacing:12.356160pt;}
.ws35_c00296{word-spacing:13.351680pt;}
.ws34_c00296{word-spacing:13.585920pt;}
.ws1f_c00296{word-spacing:15.284160pt;}
.ws41_c00296{word-spacing:22.592000pt;}
.ws40_c00296{word-spacing:22.656000pt;}
.ws6_c00296{word-spacing:24.140800pt;}
.ws23_c00296{word-spacing:24.256000pt;}
.ws25_c00296{word-spacing:24.320000pt;}
.ws24_c00296{word-spacing:24.576000pt;}
.ws26_c00296{word-spacing:24.832000pt;}
.ws27_c00296{word-spacing:31.040000pt;}
._0_c00296{margin-left:-0.995520pt;}
._1_c00296{width:1.112640pt;}
._3_c00296{width:5.667520pt;}
._4_c00296{width:16.923840pt;}
._2_c00296{width:28.788096pt;}
.fs1_c00296{font-size:58.560000pt;}
.fs0_c00296{font-size:64.000000pt;}
.y0_c00296{bottom:0.000000pt;}
.y1_c00296{bottom:54.887600pt;}
.y37_c00296{bottom:134.839467pt;}
.y36_c00296{bottom:162.439467pt;}
.y1c_c00296{bottom:170.349627pt;}
.y35_c00296{bottom:190.039467pt;}
.y1b_c00296{bottom:195.632907pt;}
.y1a_c00296{bottom:220.916187pt;}
.y34_c00296{bottom:243.952907pt;}
.y19_c00296{bottom:246.199467pt;}
.y33_c00296{bottom:269.236187pt;}
.y32_c00296{bottom:294.519467pt;}
.y18_c00296{bottom:300.359467pt;}
.y17_c00296{bottom:327.959467pt;}
.y31_c00296{bottom:348.679467pt;}
.y16_c00296{bottom:355.559467pt;}
.y30_c00296{bottom:376.279467pt;}
.y15_c00296{bottom:409.543307pt;}
.y2f_c00296{bottom:430.196427pt;}
.y14_c00296{bottom:434.826587pt;}
.y2e_c00296{bottom:455.552907pt;}
.y13_c00296{bottom:460.109867pt;}
.y2d_c00296{bottom:480.836187pt;}
.y2c_c00296{bottom:506.119467pt;}
.y12_c00296{bottom:510.676427pt;}
.y11_c00296{bottom:536.032907pt;}
.y2b_c00296{bottom:560.279333pt;}
.y10_c00296{bottom:561.316187pt;}
.yf_c00296{bottom:586.599467pt;}
.y2a_c00296{bottom:587.879333pt;}
.ye_c00296{bottom:640.759467pt;}
.y29_c00296{bottom:641.796427pt;}
.y28_c00296{bottom:667.079707pt;}
.yd_c00296{bottom:668.359467pt;}
.y27_c00296{bottom:692.436187pt;}
.yc_c00296{bottom:695.959467pt;}
.y26_c00296{bottom:717.719467pt;}
.yb_c00296{bottom:723.559467pt;}
.y25_c00296{bottom:771.879467pt;}
.ya_c00296{bottom:777.476427pt;}
.y24_c00296{bottom:799.479467pt;}
.y9_c00296{bottom:802.759707pt;}
.y8_c00296{bottom:828.116187pt;}
.y23_c00296{bottom:853.392773pt;}
.y7_c00296{bottom:853.399467pt;}
.y22_c00296{bottom:878.676053pt;}
.y21_c00296{bottom:903.959333pt;}
.y6_c00296{bottom:907.559467pt;}
.y5_c00296{bottom:935.159467pt;}
.y20_c00296{bottom:958.119467pt;}
.y1f_c00296{bottom:985.719467pt;}
.y4_c00296{bottom:989.076053pt;}
.y1e_c00296{bottom:1013.319467pt;}
.y3_c00296{bottom:1014.359333pt;}
.y1d_c00296{bottom:1060.599467pt;}
.y2_c00296{bottom:1060.599600pt;}
.h2_c00296{height:44.800000pt;}
.h4_c00296{height:63.479040pt;}
.h3_c00296{height:68.288000pt;}
.h5_c00296{height:69.376000pt;}
.h0_c00296{height:1122.520000pt;}
.h1_c00296{height:1122.666667pt;}
.w2_c00296{width:0.000000pt;}
.w3_c00296{width:0.058667pt;}
.w0_c00296{width:793.701333pt;}
.w1_c00296{width:794.000000pt;}
.x1_c00296{left:-745.700800pt;}
.x2_c00296{left:-680.260800pt;}
.x3_c00296{left:-661.300800pt;}
.x4_c00296{left:-651.860800pt;}
.x0_c00296{left:0.000000pt;}
.x8_c00296{left:113.440000pt;}
.x9_c00296{left:132.400000pt;}
.x7_c00296{left:141.840000pt;}
.x6_c00296{left:604.400000pt;}
.x5_c00296{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00297;src:url('chunks/assets/font_3902d274f7a43fe81b902c4e.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00297;src:url('chunks/assets/font_2f183fb93b9e4f6d14034e4c.woff2')format("woff");}.ff3_c00297{font-family:ff3_c00297;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls11_c00297{letter-spacing:-0.197640px;}
.ls10_c00297{letter-spacing:-0.072000px;}
.lsf_c00297{letter-spacing:-0.065880px;}
.lse_c00297{letter-spacing:0.000000px;}
.ls5_c00297{letter-spacing:0.065880px;}
.ls6_c00297{letter-spacing:0.072000px;}
.lsa_c00297{letter-spacing:0.144000px;}
.ls1_c00297{letter-spacing:0.197640px;}
.ls9_c00297{letter-spacing:0.263520px;}
.lsc_c00297{letter-spacing:16.199892px;}
.lsb_c00297{letter-spacing:16.601760px;}
.ls2_c00297{letter-spacing:20.370096px;}
.ls3_c00297{letter-spacing:21.872160px;}
.ls4_c00297{letter-spacing:22.003920px;}
.lsd_c00297{letter-spacing:27.406080px;}
.ls0_c00297{letter-spacing:29.138724px;}
.ls7_c00297{letter-spacing:29.263896px;}
.ls8_c00297{letter-spacing:29.580120px;}
.sc__c00297{text-shadow:none;}
.sc0_c00297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00297{-webkit-text-stroke:0px transparent;}
.sc0_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00297{word-spacing:-18.000000px;}
.ws2_c00297{word-spacing:-16.667640px;}
.ws1_c00297{word-spacing:-16.470000px;}
.wsa_c00297{word-spacing:-16.404120px;}
.ws6_c00297{word-spacing:-16.272360px;}
.ws1a_c00297{word-spacing:-0.263520px;}
.wsb_c00297{word-spacing:-0.131760px;}
.ws9_c00297{word-spacing:-0.118584px;}
.ws22_c00297{word-spacing:-0.072000px;}
.wsc_c00297{word-spacing:0.000000px;}
.ws19_c00297{word-spacing:0.065880px;}
.ws14_c00297{word-spacing:0.072000px;}
.ws13_c00297{word-spacing:0.131760px;}
.ws8_c00297{word-spacing:0.138348px;}
.ws1d_c00297{word-spacing:0.263520px;}
.ws1e_c00297{word-spacing:0.527040px;}
.ws1f_c00297{word-spacing:1.008000px;}
.ws1b_c00297{word-spacing:1.296000px;}
.ws1c_c00297{word-spacing:1.440000px;}
.ws17_c00297{word-spacing:2.437560px;}
.ws16_c00297{word-spacing:2.701080px;}
.wsf_c00297{word-spacing:4.545720px;}
.ws10_c00297{word-spacing:4.809240px;}
.ws11_c00297{word-spacing:5.270400px;}
.ws3_c00297{word-spacing:5.336280px;}
.ws12_c00297{word-spacing:5.402160px;}
.ws15_c00297{word-spacing:6.768000px;}
.ws4_c00297{word-spacing:6.840000px;}
.ws23_c00297{word-spacing:10.672560px;}
.ws5_c00297{word-spacing:12.451320px;}
.ws18_c00297{word-spacing:12.846600px;}
.ws7_c00297{word-spacing:13.024476px;}
.wse_c00297{word-spacing:13.110120px;}
.wsd_c00297{word-spacing:13.241880px;}
.ws20_c00297{word-spacing:15.768000px;}
.ws21_c00297{word-spacing:15.840000px;}
._0_c00297{margin-left:-1.185840px;}
._1_c00297{width:1.047492px;}
._2_c00297{width:7.056000px;}
._3_c00297{width:12.701664px;}
._4_c00297{width:30.660552px;}
.fc1_c00297{color:rgb(0,0,0);}
.fc0_c00297{color:rgb(35,31,32);}
.fs1_c00297{font-size:65.880000px;}
.fs0_c00297{font-size:72.000000px;}
.y0_c00297{bottom:0.000000px;}
.y1_c00297{bottom:61.748550px;}
.y1b_c00297{bottom:194.253810px;}
.y1a_c00297{bottom:222.697500px;}
.y19_c00297{bottom:251.141190px;}
.y18_c00297{bottom:310.630830px;}
.y17_c00297{bottom:339.074520px;}
.y16_c00297{bottom:367.600560px;}
.y15_c00297{bottom:396.044250px;}
.y14_c00297{bottom:456.974400px;}
.y13_c00297{bottom:488.024400px;}
.y12_c00297{bottom:519.074400px;}
.y11_c00297{bottom:579.730710px;}
.y10_c00297{bottom:608.174400px;}
.yf_c00297{bottom:669.104400px;}
.ye_c00297{bottom:700.154400px;}
.yd_c00297{bottom:760.814670px;}
.yc_c00297{bottom:789.258360px;}
.yb_c00297{bottom:817.784400px;}
.ya_c00297{bottom:878.714400px;}
.y9_c00297{bottom:909.764400px;}
.y8_c00297{bottom:970.409760px;}
.y7_c00297{bottom:998.853450px;}
.y6_c00297{bottom:1027.297140px;}
.y5_c00297{bottom:1084.266870px;}
.y4_c00297{bottom:1112.710560px;}
.y3_c00297{bottom:1141.154250px;}
.y2_c00297{bottom:1193.174400px;}
.h2_c00297{height:50.400000px;}
.h4_c00297{height:71.413920px;}
.h3_c00297{height:76.824000px;}
.h5_c00297{height:78.048000px;}
.h0_c00297{height:1262.835000px;}
.h1_c00297{height:1263.000000px;}
.w0_c00297{width:892.914000px;}
.w1_c00297{width:893.250000px;}
.x0_c00297{left:0.000000px;}
.x1_c00297{left:54.000000px;}
.x2_c00297{left:127.620000px;}
.x3_c00297{left:148.950000px;}
.x4_c00297{left:159.570000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls11_c00297{letter-spacing:-0.175680pt;}
.ls10_c00297{letter-spacing:-0.064000pt;}
.lsf_c00297{letter-spacing:-0.058560pt;}
.lse_c00297{letter-spacing:0.000000pt;}
.ls5_c00297{letter-spacing:0.058560pt;}
.ls6_c00297{letter-spacing:0.064000pt;}
.lsa_c00297{letter-spacing:0.128000pt;}
.ls1_c00297{letter-spacing:0.175680pt;}
.ls9_c00297{letter-spacing:0.234240pt;}
.lsc_c00297{letter-spacing:14.399904pt;}
.lsb_c00297{letter-spacing:14.757120pt;}
.ls2_c00297{letter-spacing:18.106752pt;}
.ls3_c00297{letter-spacing:19.441920pt;}
.ls4_c00297{letter-spacing:19.559040pt;}
.lsd_c00297{letter-spacing:24.360960pt;}
.ls0_c00297{letter-spacing:25.901088pt;}
.ls7_c00297{letter-spacing:26.012352pt;}
.ls8_c00297{letter-spacing:26.293440pt;}
.ws0_c00297{word-spacing:-16.000000pt;}
.ws2_c00297{word-spacing:-14.815680pt;}
.ws1_c00297{word-spacing:-14.640000pt;}
.wsa_c00297{word-spacing:-14.581440pt;}
.ws6_c00297{word-spacing:-14.464320pt;}
.ws1a_c00297{word-spacing:-0.234240pt;}
.wsb_c00297{word-spacing:-0.117120pt;}
.ws9_c00297{word-spacing:-0.105408pt;}
.ws22_c00297{word-spacing:-0.064000pt;}
.wsc_c00297{word-spacing:0.000000pt;}
.ws19_c00297{word-spacing:0.058560pt;}
.ws14_c00297{word-spacing:0.064000pt;}
.ws13_c00297{word-spacing:0.117120pt;}
.ws8_c00297{word-spacing:0.122976pt;}
.ws1d_c00297{word-spacing:0.234240pt;}
.ws1e_c00297{word-spacing:0.468480pt;}
.ws1f_c00297{word-spacing:0.896000pt;}
.ws1b_c00297{word-spacing:1.152000pt;}
.ws1c_c00297{word-spacing:1.280000pt;}
.ws17_c00297{word-spacing:2.166720pt;}
.ws16_c00297{word-spacing:2.400960pt;}
.wsf_c00297{word-spacing:4.040640pt;}
.ws10_c00297{word-spacing:4.274880pt;}
.ws11_c00297{word-spacing:4.684800pt;}
.ws3_c00297{word-spacing:4.743360pt;}
.ws12_c00297{word-spacing:4.801920pt;}
.ws15_c00297{word-spacing:6.016000pt;}
.ws4_c00297{word-spacing:6.080000pt;}
.ws23_c00297{word-spacing:9.486720pt;}
.ws5_c00297{word-spacing:11.067840pt;}
.ws18_c00297{word-spacing:11.419200pt;}
.ws7_c00297{word-spacing:11.577312pt;}
.wse_c00297{word-spacing:11.653440pt;}
.wsd_c00297{word-spacing:11.770560pt;}
.ws20_c00297{word-spacing:14.016000pt;}
.ws21_c00297{word-spacing:14.080000pt;}
._0_c00297{margin-left:-1.054080pt;}
._1_c00297{width:0.931104pt;}
._2_c00297{width:6.272000pt;}
._3_c00297{width:11.290368pt;}
._4_c00297{width:27.253824pt;}
.fs1_c00297{font-size:58.560000pt;}
.fs0_c00297{font-size:64.000000pt;}
.y0_c00297{bottom:0.000000pt;}
.y1_c00297{bottom:54.887600pt;}
.y1b_c00297{bottom:172.670053pt;}
.y1a_c00297{bottom:197.953333pt;}
.y19_c00297{bottom:223.236613pt;}
.y18_c00297{bottom:276.116293pt;}
.y17_c00297{bottom:301.399573pt;}
.y16_c00297{bottom:326.756053pt;}
.y15_c00297{bottom:352.039333pt;}
.y14_c00297{bottom:406.199467pt;}
.y13_c00297{bottom:433.799467pt;}
.y12_c00297{bottom:461.399467pt;}
.y11_c00297{bottom:515.316187pt;}
.y10_c00297{bottom:540.599467pt;}
.yf_c00297{bottom:594.759467pt;}
.ye_c00297{bottom:622.359467pt;}
.yd_c00297{bottom:676.279707pt;}
.yc_c00297{bottom:701.562987pt;}
.yb_c00297{bottom:726.919467pt;}
.ya_c00297{bottom:781.079467pt;}
.y9_c00297{bottom:808.679467pt;}
.y8_c00297{bottom:862.586453pt;}
.y7_c00297{bottom:887.869733pt;}
.y6_c00297{bottom:913.153013pt;}
.y5_c00297{bottom:963.792773pt;}
.y4_c00297{bottom:989.076053pt;}
.y3_c00297{bottom:1014.359333pt;}
.y2_c00297{bottom:1060.599467pt;}
.h2_c00297{height:44.800000pt;}
.h4_c00297{height:63.479040pt;}
.h3_c00297{height:68.288000pt;}
.h5_c00297{height:69.376000pt;}
.h0_c00297{height:1122.520000pt;}
.h1_c00297{height:1122.666667pt;}
.w0_c00297{width:793.701333pt;}
.w1_c00297{width:794.000000pt;}
.x0_c00297{left:0.000000pt;}
.x1_c00297{left:48.000000pt;}
.x2_c00297{left:113.440000pt;}
.x3_c00297{left:132.400000pt;}
.x4_c00297{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00298;src:url('chunks/assets/font_de4de1574308e57ef7dc55ac.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00298;src:url('chunks/assets/font_107b2214f4b5bee97d929d8d.woff2')format("woff");}.ff3_c00298{font-family:ff3_c00298;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00298;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00298{font-family:ff4_c00298;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00298;src:url('chunks/assets/font_e7b7c14fcfae49a3dd5399c8.woff2')format("woff");}.ff5_c00298{font-family:ff5_c00298;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00298;src:url('chunks/assets/font_0bdd28af12376f6ee5b48553.woff2')format("woff");}.ff6_c00298{font-family:ff6_c00298;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls14_c00298{letter-spacing:-0.288000px;}
.ls13_c00298{letter-spacing:-0.197640px;}
.ls12_c00298{letter-spacing:-0.072000px;}
.ls11_c00298{letter-spacing:-0.065880px;}
.ls10_c00298{letter-spacing:0.000000px;}
.ls5_c00298{letter-spacing:0.065880px;}
.ls6_c00298{letter-spacing:0.072000px;}
.lsa_c00298{letter-spacing:0.144000px;}
.ls1_c00298{letter-spacing:0.197640px;}
.ls9_c00298{letter-spacing:0.263520px;}
.lsc_c00298{letter-spacing:16.199892px;}
.lsb_c00298{letter-spacing:16.601760px;}
.ls2_c00298{letter-spacing:20.370096px;}
.ls3_c00298{letter-spacing:21.872160px;}
.ls4_c00298{letter-spacing:22.003920px;}
.lsd_c00298{letter-spacing:27.406080px;}
.ls0_c00298{letter-spacing:29.138724px;}
.lse_c00298{letter-spacing:29.151900px;}
.ls7_c00298{letter-spacing:29.263896px;}
.ls8_c00298{letter-spacing:29.580120px;}
.lsf_c00298{letter-spacing:34.251012px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00298{word-spacing:-18.000000px;}
.ws2_c00298{word-spacing:-16.667640px;}
.wse_c00298{word-spacing:-16.535880px;}
.ws1_c00298{word-spacing:-16.470000px;}
.wsa_c00298{word-spacing:-16.404120px;}
.ws6_c00298{word-spacing:-16.272360px;}
.wsd_c00298{word-spacing:-0.270108px;}
.ws1e_c00298{word-spacing:-0.263520px;}
.ws29_c00298{word-spacing:-0.197640px;}
.wsb_c00298{word-spacing:-0.131760px;}
.ws9_c00298{word-spacing:-0.118584px;}
.ws26_c00298{word-spacing:-0.072000px;}
.ws28_c00298{word-spacing:-0.065880px;}
.ws11_c00298{word-spacing:0.000000px;}
.ws1d_c00298{word-spacing:0.065880px;}
.ws18_c00298{word-spacing:0.072000px;}
.ws8_c00298{word-spacing:0.131760px;}
.ws2b_c00298{word-spacing:0.216000px;}
.ws21_c00298{word-spacing:0.263520px;}
.ws2a_c00298{word-spacing:0.360000px;}
.ws22_c00298{word-spacing:0.527040px;}
.ws23_c00298{word-spacing:1.008000px;}
.wsf_c00298{word-spacing:1.080000px;}
.ws1f_c00298{word-spacing:1.296000px;}
.ws20_c00298{word-spacing:1.440000px;}
.ws1b_c00298{word-spacing:2.437560px;}
.ws1a_c00298{word-spacing:2.701080px;}
.ws14_c00298{word-spacing:4.545720px;}
.ws15_c00298{word-spacing:4.809240px;}
.ws16_c00298{word-spacing:5.270400px;}
.ws3_c00298{word-spacing:5.336280px;}
.wsc_c00298{word-spacing:5.342868px;}
.ws17_c00298{word-spacing:5.402160px;}
.ws2d_c00298{word-spacing:5.533920px;}
.ws2c_c00298{word-spacing:5.760000px;}
.ws19_c00298{word-spacing:6.768000px;}
.ws4_c00298{word-spacing:6.840000px;}
.ws27_c00298{word-spacing:10.672560px;}
.ws5_c00298{word-spacing:12.451320px;}
.ws1c_c00298{word-spacing:12.846600px;}
.ws7_c00298{word-spacing:13.031064px;}
.ws13_c00298{word-spacing:13.110120px;}
.ws12_c00298{word-spacing:13.241880px;}
.ws24_c00298{word-spacing:15.768000px;}
.ws25_c00298{word-spacing:15.840000px;}
.ws30_c00298{word-spacing:16.074720px;}
.ws2f_c00298{word-spacing:17.524080px;}
.ws2e_c00298{word-spacing:17.655840px;}
.ws10_c00298{word-spacing:27.142560px;}
._0_c00298{margin-left:-1.185840px;}
._1_c00298{width:1.047492px;}
._2_c00298{width:7.056000px;}
._3_c00298{width:12.701664px;}
._4_c00298{width:30.660552px;}
.fc2_c00298{color:transparent;}
.fc1_c00298{color:rgb(0,0,0);}
.fc0_c00298{color:rgb(35,31,32);}
.fs1_c00298{font-size:65.880000px;}
.fs0_c00298{font-size:72.000000px;}
.y0_c00298{bottom:0.000000px;}
.y1_c00298{bottom:61.748550px;}
.y38_c00298{bottom:142.497210px;}
.y37_c00298{bottom:170.940900px;}
.y1b_c00298{bottom:194.253810px;}
.y36_c00298{bottom:199.384590px;}
.y1a_c00298{bottom:222.697500px;}
.y35_c00298{bottom:227.828280px;}
.y19_c00298{bottom:251.141190px;}
.y34_c00298{bottom:287.317920px;}
.y18_c00298{bottom:310.630830px;}
.y33_c00298{bottom:315.843960px;}
.y17_c00298{bottom:339.074520px;}
.y32_c00298{bottom:344.287650px;}
.y16_c00298{bottom:367.600560px;}
.y31_c00298{bottom:372.731340px;}
.y15_c00298{bottom:396.044250px;}
.y30_c00298{bottom:432.220980px;}
.y14_c00298{bottom:456.974400px;}
.y2f_c00298{bottom:460.747020px;}
.y13_c00298{bottom:488.024400px;}
.y2e_c00298{bottom:489.190710px;}
.y2d_c00298{bottom:517.634400px;}
.y12_c00298{bottom:519.074400px;}
.y2c_c00298{bottom:578.564400px;}
.y11_c00298{bottom:579.730710px;}
.y10_c00298{bottom:608.174400px;}
.y2b_c00298{bottom:609.614400px;}
.y2a_c00298{bottom:640.664400px;}
.yf_c00298{bottom:669.104400px;}
.ye_c00298{bottom:700.154400px;}
.y29_c00298{bottom:701.310900px;}
.y28_c00298{bottom:729.754590px;}
.y27_c00298{bottom:758.280630px;}
.yd_c00298{bottom:760.814670px;}
.yc_c00298{bottom:789.258360px;}
.y26_c00298{bottom:817.770270px;}
.yb_c00298{bottom:817.784400px;}
.y25_c00298{bottom:846.213960px;}
.y24_c00298{bottom:874.657650px;}
.ya_c00298{bottom:878.714400px;}
.y23_c00298{bottom:903.101340px;}
.y9_c00298{bottom:909.764400px;}
.y22_c00298{bottom:931.627380px;}
.y8_c00298{bottom:970.409760px;}
.y21_c00298{bottom:991.117020px;}
.y7_c00298{bottom:998.853450px;}
.y20_c00298{bottom:1019.560710px;}
.y6_c00298{bottom:1027.297140px;}
.y1f_c00298{bottom:1048.004400px;}
.y5_c00298{bottom:1084.266870px;}
.y1e_c00298{bottom:1108.934400px;}
.y4_c00298{bottom:1112.710560px;}
.y1d_c00298{bottom:1139.984400px;}
.y3_c00298{bottom:1141.154250px;}
.y1c_c00298{bottom:1193.174400px;}
.y2_c00298{bottom:1193.174550px;}
.h2_c00298{height:50.400000px;}
.h4_c00298{height:71.413920px;}
.h3_c00298{height:76.824000px;}
.h5_c00298{height:78.048000px;}
.h0_c00298{height:1262.835000px;}
.h1_c00298{height:1263.000000px;}
.w2_c00298{width:0.000000px;}
.w3_c00298{width:0.066000px;}
.w0_c00298{width:892.914000px;}
.w1_c00298{width:893.250000px;}
.x1_c00298{left:-838.913400px;}
.x2_c00298{left:-765.293400px;}
.x3_c00298{left:-743.963400px;}
.x4_c00298{left:-733.343400px;}
.x0_c00298{left:0.000000px;}
.x8_c00298{left:127.620000px;}
.x9_c00298{left:148.950000px;}
.x7_c00298{left:159.570000px;}
.x6_c00298{left:679.950000px;}
.x5_c00298{left:804.366150px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls14_c00298{letter-spacing:-0.256000pt;}
.ls13_c00298{letter-spacing:-0.175680pt;}
.ls12_c00298{letter-spacing:-0.064000pt;}
.ls11_c00298{letter-spacing:-0.058560pt;}
.ls10_c00298{letter-spacing:0.000000pt;}
.ls5_c00298{letter-spacing:0.058560pt;}
.ls6_c00298{letter-spacing:0.064000pt;}
.lsa_c00298{letter-spacing:0.128000pt;}
.ls1_c00298{letter-spacing:0.175680pt;}
.ls9_c00298{letter-spacing:0.234240pt;}
.lsc_c00298{letter-spacing:14.399904pt;}
.lsb_c00298{letter-spacing:14.757120pt;}
.ls2_c00298{letter-spacing:18.106752pt;}
.ls3_c00298{letter-spacing:19.441920pt;}
.ls4_c00298{letter-spacing:19.559040pt;}
.lsd_c00298{letter-spacing:24.360960pt;}
.ls0_c00298{letter-spacing:25.901088pt;}
.lse_c00298{letter-spacing:25.912800pt;}
.ls7_c00298{letter-spacing:26.012352pt;}
.ls8_c00298{letter-spacing:26.293440pt;}
.lsf_c00298{letter-spacing:30.445344pt;}
.ws0_c00298{word-spacing:-16.000000pt;}
.ws2_c00298{word-spacing:-14.815680pt;}
.wse_c00298{word-spacing:-14.698560pt;}
.ws1_c00298{word-spacing:-14.640000pt;}
.wsa_c00298{word-spacing:-14.581440pt;}
.ws6_c00298{word-spacing:-14.464320pt;}
.wsd_c00298{word-spacing:-0.240096pt;}
.ws1e_c00298{word-spacing:-0.234240pt;}
.ws29_c00298{word-spacing:-0.175680pt;}
.wsb_c00298{word-spacing:-0.117120pt;}
.ws9_c00298{word-spacing:-0.105408pt;}
.ws26_c00298{word-spacing:-0.064000pt;}
.ws28_c00298{word-spacing:-0.058560pt;}
.ws11_c00298{word-spacing:0.000000pt;}
.ws1d_c00298{word-spacing:0.058560pt;}
.ws18_c00298{word-spacing:0.064000pt;}
.ws8_c00298{word-spacing:0.117120pt;}
.ws2b_c00298{word-spacing:0.192000pt;}
.ws21_c00298{word-spacing:0.234240pt;}
.ws2a_c00298{word-spacing:0.320000pt;}
.ws22_c00298{word-spacing:0.468480pt;}
.ws23_c00298{word-spacing:0.896000pt;}
.wsf_c00298{word-spacing:0.960000pt;}
.ws1f_c00298{word-spacing:1.152000pt;}
.ws20_c00298{word-spacing:1.280000pt;}
.ws1b_c00298{word-spacing:2.166720pt;}
.ws1a_c00298{word-spacing:2.400960pt;}
.ws14_c00298{word-spacing:4.040640pt;}
.ws15_c00298{word-spacing:4.274880pt;}
.ws16_c00298{word-spacing:4.684800pt;}
.ws3_c00298{word-spacing:4.743360pt;}
.wsc_c00298{word-spacing:4.749216pt;}
.ws17_c00298{word-spacing:4.801920pt;}
.ws2d_c00298{word-spacing:4.919040pt;}
.ws2c_c00298{word-spacing:5.120000pt;}
.ws19_c00298{word-spacing:6.016000pt;}
.ws4_c00298{word-spacing:6.080000pt;}
.ws27_c00298{word-spacing:9.486720pt;}
.ws5_c00298{word-spacing:11.067840pt;}
.ws1c_c00298{word-spacing:11.419200pt;}
.ws7_c00298{word-spacing:11.583168pt;}
.ws13_c00298{word-spacing:11.653440pt;}
.ws12_c00298{word-spacing:11.770560pt;}
.ws24_c00298{word-spacing:14.016000pt;}
.ws25_c00298{word-spacing:14.080000pt;}
.ws30_c00298{word-spacing:14.288640pt;}
.ws2f_c00298{word-spacing:15.576960pt;}
.ws2e_c00298{word-spacing:15.694080pt;}
.ws10_c00298{word-spacing:24.126720pt;}
._0_c00298{margin-left:-1.054080pt;}
._1_c00298{width:0.931104pt;}
._2_c00298{width:6.272000pt;}
._3_c00298{width:11.290368pt;}
._4_c00298{width:27.253824pt;}
.fs1_c00298{font-size:58.560000pt;}
.fs0_c00298{font-size:64.000000pt;}
.y0_c00298{bottom:0.000000pt;}
.y1_c00298{bottom:54.887600pt;}
.y38_c00298{bottom:126.664187pt;}
.y37_c00298{bottom:151.947467pt;}
.y1b_c00298{bottom:172.670053pt;}
.y36_c00298{bottom:177.230747pt;}
.y1a_c00298{bottom:197.953333pt;}
.y35_c00298{bottom:202.514027pt;}
.y19_c00298{bottom:223.236613pt;}
.y34_c00298{bottom:255.393707pt;}
.y18_c00298{bottom:276.116293pt;}
.y33_c00298{bottom:280.750187pt;}
.y17_c00298{bottom:301.399573pt;}
.y32_c00298{bottom:306.033467pt;}
.y16_c00298{bottom:326.756053pt;}
.y31_c00298{bottom:331.316747pt;}
.y15_c00298{bottom:352.039333pt;}
.y30_c00298{bottom:384.196427pt;}
.y14_c00298{bottom:406.199467pt;}
.y2f_c00298{bottom:409.552907pt;}
.y13_c00298{bottom:433.799467pt;}
.y2e_c00298{bottom:434.836187pt;}
.y2d_c00298{bottom:460.119467pt;}
.y12_c00298{bottom:461.399467pt;}
.y2c_c00298{bottom:514.279467pt;}
.y11_c00298{bottom:515.316187pt;}
.y10_c00298{bottom:540.599467pt;}
.y2b_c00298{bottom:541.879467pt;}
.y2a_c00298{bottom:569.479467pt;}
.yf_c00298{bottom:594.759467pt;}
.ye_c00298{bottom:622.359467pt;}
.y29_c00298{bottom:623.387467pt;}
.y28_c00298{bottom:648.670747pt;}
.y27_c00298{bottom:674.027227pt;}
.yd_c00298{bottom:676.279707pt;}
.yc_c00298{bottom:701.562987pt;}
.y26_c00298{bottom:726.906907pt;}
.yb_c00298{bottom:726.919467pt;}
.y25_c00298{bottom:752.190187pt;}
.y24_c00298{bottom:777.473467pt;}
.ya_c00298{bottom:781.079467pt;}
.y23_c00298{bottom:802.756747pt;}
.y9_c00298{bottom:808.679467pt;}
.y22_c00298{bottom:828.113227pt;}
.y8_c00298{bottom:862.586453pt;}
.y21_c00298{bottom:880.992907pt;}
.y7_c00298{bottom:887.869733pt;}
.y20_c00298{bottom:906.276187pt;}
.y6_c00298{bottom:913.153013pt;}
.y1f_c00298{bottom:931.559467pt;}
.y5_c00298{bottom:963.792773pt;}
.y1e_c00298{bottom:985.719467pt;}
.y4_c00298{bottom:989.076053pt;}
.y1d_c00298{bottom:1013.319467pt;}
.y3_c00298{bottom:1014.359333pt;}
.y1c_c00298{bottom:1060.599467pt;}
.y2_c00298{bottom:1060.599600pt;}
.h2_c00298{height:44.800000pt;}
.h4_c00298{height:63.479040pt;}
.h3_c00298{height:68.288000pt;}
.h5_c00298{height:69.376000pt;}
.h0_c00298{height:1122.520000pt;}
.h1_c00298{height:1122.666667pt;}
.w2_c00298{width:0.000000pt;}
.w3_c00298{width:0.058667pt;}
.w0_c00298{width:793.701333pt;}
.w1_c00298{width:794.000000pt;}
.x1_c00298{left:-745.700800pt;}
.x2_c00298{left:-680.260800pt;}
.x3_c00298{left:-661.300800pt;}
.x4_c00298{left:-651.860800pt;}
.x0_c00298{left:0.000000pt;}
.x8_c00298{left:113.440000pt;}
.x9_c00298{left:132.400000pt;}
.x7_c00298{left:141.840000pt;}
.x6_c00298{left:604.400000pt;}
.x5_c00298{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00299;src:url('chunks/assets/font_0a8c5da8a6d392582c968df1.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.575000;font-style:normal;font-weight:normal;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_bc207825ce8e436196e38a8d.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00299;src:url('chunks/assets/font_e5351415197a525d13941b00.woff2')format("woff");}.ff4_c00299{font-family:ff4_c00299;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00299{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls7_c00299{letter-spacing:-0.329400px;}
.ls9_c00299{letter-spacing:-0.144000px;}
.ls8_c00299{letter-spacing:-0.072000px;}
.ls5_c00299{letter-spacing:-0.065880px;}
.ls4_c00299{letter-spacing:0.000000px;}
.ls6_c00299{letter-spacing:0.065880px;}
.ls3_c00299{letter-spacing:0.072000px;}
.lsa_c00299{letter-spacing:0.144000px;}
.ls0_c00299{letter-spacing:0.197640px;}
.ls2_c00299{letter-spacing:17.985240px;}
.ls1_c00299{letter-spacing:33.071760px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00299{word-spacing:-18.072000px;}
.ws0_c00299{word-spacing:-18.000000px;}
.ws3_c00299{word-spacing:-16.667640px;}
.ws4_c00299{word-spacing:-16.535880px;}
.ws1_c00299{word-spacing:-16.404120px;}
.ws5_c00299{word-spacing:-0.395280px;}
.ws10_c00299{word-spacing:-0.360000px;}
.wse_c00299{word-spacing:-0.131760px;}
.ws14_c00299{word-spacing:-0.072000px;}
.ws9_c00299{word-spacing:0.000000px;}
.ws13_c00299{word-spacing:0.072000px;}
.wsd_c00299{word-spacing:0.131760px;}
.ws18_c00299{word-spacing:0.144000px;}
.ws12_c00299{word-spacing:0.395280px;}
.ws11_c00299{word-spacing:1.581120px;}
.ws19_c00299{word-spacing:3.888000px;}
.ws15_c00299{word-spacing:3.960000px;}
.ws17_c00299{word-spacing:5.688000px;}
.ws16_c00299{word-spacing:5.760000px;}
.ws1c_c00299{word-spacing:7.848000px;}
.ws1d_c00299{word-spacing:7.920000px;}
.ws8_c00299{word-spacing:8.078400px;}
.wsf_c00299{word-spacing:9.288000px;}
.ws1b_c00299{word-spacing:11.376000px;}
.ws1a_c00299{word-spacing:11.520000px;}
.ws20_c00299{word-spacing:18.648000px;}
.ws21_c00299{word-spacing:18.720000px;}
.ws1e_c00299{word-spacing:19.008000px;}
.ws1f_c00299{word-spacing:19.080000px;}
.wsc_c00299{word-spacing:21.872160px;}
.wsa_c00299{word-spacing:22.333320px;}
.wsb_c00299{word-spacing:22.465080px;}
.ws2_c00299{word-spacing:60.932412px;}
.ws6_c00299{word-spacing:104.400000px;}
._1_c00299{margin-left:-1.264896px;}
._0_c00299{width:1.060668px;}
._5_c00299{width:10.944000px;}
._4_c00299{width:14.400000px;}
._2_c00299{width:32.004504px;}
._6_c00299{width:36.144000px;}
._3_c00299{width:68.400000px;}
.fc1_c00299{color:rgb(0,0,0);}
.fc0_c00299{color:rgb(35,31,32);}
.fs1_c00299{font-size:65.880000px;}
.fs0_c00299{font-size:72.000000px;}
.y0_c00299{bottom:0.000000px;}
.y1_c00299{bottom:61.748550px;}
.y1d_c00299{bottom:120.644250px;}
.y1c_c00299{bottom:151.694250px;}
.y1b_c00299{bottom:182.744250px;}
.y1a_c00299{bottom:213.794250px;}
.y19_c00299{bottom:244.844250px;}
.y18_c00299{bottom:306.854250px;}
.y17_c00299{bottom:337.904250px;}
.y16_c00299{bottom:400.004250px;}
.y15_c00299{bottom:431.054250px;}
.y14_c00299{bottom:462.104250px;}
.y13_c00299{bottom:524.024250px;}
.y12_c00299{bottom:615.900540px;}
.y11_c00299{bottom:644.426580px;}
.y10_c00299{bottom:672.870270px;}
.yf_c00299{bottom:701.313960px;}
.ye_c00299{bottom:729.757650px;}
.yd_c00299{bottom:758.283690px;}
.yc_c00299{bottom:786.727380px;}
.yb_c00299{bottom:846.217020px;}
.ya_c00299{bottom:874.660710px;}
.y9_c00299{bottom:903.104400px;}
.y8_c00299{bottom:964.034250px;}
.y7_c00299{bottom:995.084250px;}
.y6_c00299{bottom:1055.740830px;}
.y5_c00299{bottom:1084.266870px;}
.y4_c00299{bottom:1112.710560px;}
.y3_c00299{bottom:1141.154250px;}
.y2_c00299{bottom:1193.174400px;}
.h2_c00299{height:50.400000px;}
.h4_c00299{height:71.413920px;}
.h3_c00299{height:76.824000px;}
.h0_c00299{height:1262.835000px;}
.h1_c00299{height:1263.000000px;}
.w0_c00299{width:892.914000px;}
.w1_c00299{width:893.250000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:54.000000px;}
.x2_c00299{left:127.620000px;}
.x3_c00299{left:148.950000px;}
.x4_c00299{left:159.570000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls7_c00299{letter-spacing:-0.292800pt;}
.ls9_c00299{letter-spacing:-0.128000pt;}
.ls8_c00299{letter-spacing:-0.064000pt;}
.ls5_c00299{letter-spacing:-0.058560pt;}
.ls4_c00299{letter-spacing:0.000000pt;}
.ls6_c00299{letter-spacing:0.058560pt;}
.ls3_c00299{letter-spacing:0.064000pt;}
.lsa_c00299{letter-spacing:0.128000pt;}
.ls0_c00299{letter-spacing:0.175680pt;}
.ls2_c00299{letter-spacing:15.986880pt;}
.ls1_c00299{letter-spacing:29.397120pt;}
.ws7_c00299{word-spacing:-16.064000pt;}
.ws0_c00299{word-spacing:-16.000000pt;}
.ws3_c00299{word-spacing:-14.815680pt;}
.ws4_c00299{word-spacing:-14.698560pt;}
.ws1_c00299{word-spacing:-14.581440pt;}
.ws5_c00299{word-spacing:-0.351360pt;}
.ws10_c00299{word-spacing:-0.320000pt;}
.wse_c00299{word-spacing:-0.117120pt;}
.ws14_c00299{word-spacing:-0.064000pt;}
.ws9_c00299{word-spacing:0.000000pt;}
.ws13_c00299{word-spacing:0.064000pt;}
.wsd_c00299{word-spacing:0.117120pt;}
.ws18_c00299{word-spacing:0.128000pt;}
.ws12_c00299{word-spacing:0.351360pt;}
.ws11_c00299{word-spacing:1.405440pt;}
.ws19_c00299{word-spacing:3.456000pt;}
.ws15_c00299{word-spacing:3.520000pt;}
.ws17_c00299{word-spacing:5.056000pt;}
.ws16_c00299{word-spacing:5.120000pt;}
.ws1c_c00299{word-spacing:6.976000pt;}
.ws1d_c00299{word-spacing:7.040000pt;}
.ws8_c00299{word-spacing:7.180800pt;}
.wsf_c00299{word-spacing:8.256000pt;}
.ws1b_c00299{word-spacing:10.112000pt;}
.ws1a_c00299{word-spacing:10.240000pt;}
.ws20_c00299{word-spacing:16.576000pt;}
.ws21_c00299{word-spacing:16.640000pt;}
.ws1e_c00299{word-spacing:16.896000pt;}
.ws1f_c00299{word-spacing:16.960000pt;}
.wsc_c00299{word-spacing:19.441920pt;}
.wsa_c00299{word-spacing:19.851840pt;}
.wsb_c00299{word-spacing:19.968960pt;}
.ws2_c00299{word-spacing:54.162144pt;}
.ws6_c00299{word-spacing:92.800000pt;}
._1_c00299{margin-left:-1.124352pt;}
._0_c00299{width:0.942816pt;}
._5_c00299{width:9.728000pt;}
._4_c00299{width:12.800000pt;}
._2_c00299{width:28.448448pt;}
._6_c00299{width:32.128000pt;}
._3_c00299{width:60.800000pt;}
.fs1_c00299{font-size:58.560000pt;}
.fs0_c00299{font-size:64.000000pt;}
.y0_c00299{bottom:0.000000pt;}
.y1_c00299{bottom:54.887600pt;}
.y1d_c00299{bottom:107.239333pt;}
.y1c_c00299{bottom:134.839333pt;}
.y1b_c00299{bottom:162.439333pt;}
.y1a_c00299{bottom:190.039333pt;}
.y19_c00299{bottom:217.639333pt;}
.y18_c00299{bottom:272.759333pt;}
.y17_c00299{bottom:300.359333pt;}
.y16_c00299{bottom:355.559333pt;}
.y15_c00299{bottom:383.159333pt;}
.y14_c00299{bottom:410.759333pt;}
.y13_c00299{bottom:465.799333pt;}
.y12_c00299{bottom:547.467147pt;}
.y11_c00299{bottom:572.823627pt;}
.y10_c00299{bottom:598.106907pt;}
.yf_c00299{bottom:623.390187pt;}
.ye_c00299{bottom:648.673467pt;}
.yd_c00299{bottom:674.029947pt;}
.yc_c00299{bottom:699.313227pt;}
.yb_c00299{bottom:752.192907pt;}
.ya_c00299{bottom:777.476187pt;}
.y9_c00299{bottom:802.759467pt;}
.y8_c00299{bottom:856.919333pt;}
.y7_c00299{bottom:884.519333pt;}
.y6_c00299{bottom:938.436293pt;}
.y5_c00299{bottom:963.792773pt;}
.y4_c00299{bottom:989.076053pt;}
.y3_c00299{bottom:1014.359333pt;}
.y2_c00299{bottom:1060.599467pt;}
.h2_c00299{height:44.800000pt;}
.h4_c00299{height:63.479040pt;}
.h3_c00299{height:68.288000pt;}
.h0_c00299{height:1122.520000pt;}
.h1_c00299{height:1122.666667pt;}
.w0_c00299{width:793.701333pt;}
.w1_c00299{width:794.000000pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:48.000000pt;}
.x2_c00299{left:113.440000pt;}
.x3_c00299{left:132.400000pt;}
.x4_c00299{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00300;src:url('chunks/assets/font_3ef5985671e7da3d0f612731.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00300;src:url('chunks/assets/font_8411e06e8f6bf1210e9da1ab.woff2')format("woff");}.ff3_c00300{font-family:ff3_c00300;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00300;src:url('chunks/assets/font_e28564de0ba491526990c85f.woff2')format("woff");}.ff4_c00300{font-family:ff4_c00300;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00300;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00300{font-family:ff5_c00300;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00300;src:url('chunks/assets/font_6bed7ee123e3d2adfe8915d0.woff2')format("woff");}.ff6_c00300{font-family:ff6_c00300;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00300;src:url('chunks/assets/font_22af32074845be6d34647d68.woff2')format("woff");}.ff7_c00300{font-family:ff7_c00300;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00300;src:url('chunks/assets/font_0d49c63ead831156b06a5f4d.woff2')format("woff");}.ff8_c00300{font-family:ff8_c00300;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00300;src:url('chunks/assets/font_ffbadbf4104831a8b25b44e7.woff2')format("woff");}.ff9_c00300{font-family:ff9_c00300;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.lsa_c00300{letter-spacing:-0.329400px;}
.lsc_c00300{letter-spacing:-0.144000px;}
.lse_c00300{letter-spacing:-0.131760px;}
.lsf_c00300{letter-spacing:-0.120240px;}
.lsb_c00300{letter-spacing:-0.072000px;}
.ls9_c00300{letter-spacing:-0.065880px;}
.ls8_c00300{letter-spacing:0.000000px;}
.ls6_c00300{letter-spacing:0.065880px;}
.ls3_c00300{letter-spacing:0.072000px;}
.ls7_c00300{letter-spacing:0.120240px;}
.lsd_c00300{letter-spacing:0.144000px;}
.ls0_c00300{letter-spacing:0.197640px;}
.ls5_c00300{letter-spacing:16.423884px;}
.ls4_c00300{letter-spacing:16.601760px;}
.ls2_c00300{letter-spacing:17.985240px;}
.ls1_c00300{letter-spacing:33.071760px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00300{word-spacing:-18.072000px;}
.ws0_c00300{word-spacing:-18.000000px;}
.ws3_c00300{word-spacing:-16.667640px;}
.ws4_c00300{word-spacing:-16.535880px;}
.ws1_c00300{word-spacing:-16.404120px;}
.wsd_c00300{word-spacing:-13.707360px;}
.wse_c00300{word-spacing:-13.466880px;}
.ws29_c00300{word-spacing:-0.661320px;}
.ws2a_c00300{word-spacing:-0.601200px;}
.ws5_c00300{word-spacing:-0.395280px;}
.ws15_c00300{word-spacing:-0.360000px;}
.wsa_c00300{word-spacing:-0.270108px;}
.ws13_c00300{word-spacing:-0.131760px;}
.ws19_c00300{word-spacing:-0.072000px;}
.wsb_c00300{word-spacing:0.000000px;}
.ws18_c00300{word-spacing:0.072000px;}
.ws12_c00300{word-spacing:0.131760px;}
.ws1d_c00300{word-spacing:0.144000px;}
.ws17_c00300{word-spacing:0.395280px;}
.ws16_c00300{word-spacing:1.581120px;}
.ws1e_c00300{word-spacing:3.888000px;}
.ws1a_c00300{word-spacing:3.960000px;}
.ws1c_c00300{word-spacing:5.688000px;}
.ws1b_c00300{word-spacing:5.760000px;}
.ws21_c00300{word-spacing:7.848000px;}
.ws22_c00300{word-spacing:7.920000px;}
.ws9_c00300{word-spacing:8.071200px;}
.ws8_c00300{word-spacing:8.078400px;}
.ws14_c00300{word-spacing:9.288000px;}
.ws20_c00300{word-spacing:11.376000px;}
.ws1f_c00300{word-spacing:11.520000px;}
.ws27_c00300{word-spacing:15.408000px;}
.ws28_c00300{word-spacing:18.288000px;}
.wsc_c00300{word-spacing:18.360000px;}
.ws25_c00300{word-spacing:18.648000px;}
.ws26_c00300{word-spacing:18.720000px;}
.ws23_c00300{word-spacing:19.008000px;}
.ws24_c00300{word-spacing:19.080000px;}
.ws11_c00300{word-spacing:21.872160px;}
.wsf_c00300{word-spacing:22.333320px;}
.ws10_c00300{word-spacing:22.465080px;}
.ws2_c00300{word-spacing:60.932412px;}
.ws6_c00300{word-spacing:104.400000px;}
._1_c00300{margin-left:-1.264896px;}
._0_c00300{width:1.060668px;}
._5_c00300{width:10.944000px;}
._4_c00300{width:14.400000px;}
._7_c00300{width:16.320000px;}
._2_c00300{width:32.004504px;}
._6_c00300{width:36.144000px;}
._3_c00300{width:68.400000px;}
.fc1_c00300{color:transparent;}
.fc0_c00300{color:rgb(35,31,32);}
.fs2_c00300{font-size:60.120000px;}
.fs1_c00300{font-size:65.880000px;}
.fs0_c00300{font-size:72.000000px;}
.y0_c00300{bottom:0.000000px;}
.y1_c00300{bottom:61.748550px;}
.y36_c00300{bottom:108.166950px;}
.y38_c00300{bottom:108.196350px;}
.y3a_c00300{bottom:108.219450px;}
.y1d_c00300{bottom:120.644250px;}
.y1c_c00300{bottom:151.694250px;}
.y31_c00300{bottom:152.849640px;}
.y30_c00300{bottom:181.293330px;}
.y1b_c00300{bottom:182.744250px;}
.y2f_c00300{bottom:209.737020px;}
.y1a_c00300{bottom:213.794250px;}
.y2e_c00300{bottom:238.180710px;}
.y19_c00300{bottom:244.844250px;}
.y2d_c00300{bottom:266.624400px;}
.y18_c00300{bottom:306.854250px;}
.y2c_c00300{bottom:327.554250px;}
.y17_c00300{bottom:337.904250px;}
.y2b_c00300{bottom:358.604250px;}
.y16_c00300{bottom:400.004250px;}
.y2a_c00300{bottom:416.730270px;}
.y15_c00300{bottom:431.054250px;}
.y29_c00300{bottom:445.173960px;}
.y14_c00300{bottom:462.104250px;}
.y28_c00300{bottom:473.617650px;}
.y27_c00300{bottom:502.143690px;}
.y13_c00300{bottom:524.024250px;}
.y26_c00300{bottom:530.587380px;}
.y25_c00300{bottom:590.077020px;}
.y12_c00300{bottom:615.900540px;}
.y24_c00300{bottom:618.520710px;}
.y11_c00300{bottom:644.426580px;}
.y23_c00300{bottom:646.964400px;}
.y10_c00300{bottom:672.870270px;}
.yf_c00300{bottom:701.313960px;}
.y22_c00300{bottom:707.894250px;}
.ye_c00300{bottom:729.757650px;}
.y21_c00300{bottom:738.944250px;}
.yd_c00300{bottom:758.283690px;}
.yc_c00300{bottom:786.727380px;}
.y20_c00300{bottom:800.954250px;}
.y39_c00300{bottom:844.155000px;}
.yb_c00300{bottom:846.217020px;}
.ya_c00300{bottom:874.660710px;}
.y37_c00300{bottom:885.012000px;}
.y9_c00300{bottom:903.104400px;}
.y35_c00300{bottom:925.875000px;}
.y32_c00300{bottom:931.321800px;}
.y8_c00300{bottom:964.034250px;}
.y7_c00300{bottom:995.084250px;}
.y6_c00300{bottom:1055.740830px;}
.y33_c00300{bottom:1080.659880px;}
.y5_c00300{bottom:1084.266870px;}
.y34_c00300{bottom:1108.435320px;}
.y1f_c00300{bottom:1110.194400px;}
.y4_c00300{bottom:1112.710560px;}
.y3_c00300{bottom:1141.154250px;}
.y1e_c00300{bottom:1193.174400px;}
.y2_c00300{bottom:1193.174550px;}
.h7_c00300{height:49.581387px;}
.h2_c00300{height:50.400000px;}
.h5_c00300{height:54.331699px;}
.h4_c00300{height:71.413920px;}
.h3_c00300{height:76.824000px;}
.h6_c00300{height:78.048000px;}
.h8_c00300{height:122.490000px;}
.h9_c00300{height:122.491500px;}
.h0_c00300{height:1262.835000px;}
.h1_c00300{height:1263.000000px;}
.w2_c00300{width:0.000000px;}
.w3_c00300{width:0.066000px;}
.w6_c00300{width:93.240000px;}
.w5_c00300{width:155.160000px;}
.w4_c00300{width:168.750000px;}
.w0_c00300{width:892.914000px;}
.w1_c00300{width:893.250000px;}
.x1_c00300{left:-838.913400px;}
.x2_c00300{left:-765.293400px;}
.x3_c00300{left:-743.963400px;}
.x4_c00300{left:-733.343400px;}
.x0_c00300{left:0.000000px;}
.xf_c00300{left:9.157650px;}
.x8_c00300{left:127.620000px;}
.xa_c00300{left:148.950000px;}
.x9_c00300{left:159.570000px;}
.xc_c00300{left:189.124680px;}
.xd_c00300{left:283.768590px;}
.xb_c00300{left:454.163700px;}
.xe_c00300{left:548.910000px;}
.x6_c00300{left:679.950000px;}
.x7_c00300{left:736.380000px;}
.x5_c00300{left:804.366150px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.lsa_c00300{letter-spacing:-0.292800pt;}
.lsc_c00300{letter-spacing:-0.128000pt;}
.lse_c00300{letter-spacing:-0.117120pt;}
.lsf_c00300{letter-spacing:-0.106880pt;}
.lsb_c00300{letter-spacing:-0.064000pt;}
.ls9_c00300{letter-spacing:-0.058560pt;}
.ls8_c00300{letter-spacing:0.000000pt;}
.ls6_c00300{letter-spacing:0.058560pt;}
.ls3_c00300{letter-spacing:0.064000pt;}
.ls7_c00300{letter-spacing:0.106880pt;}
.lsd_c00300{letter-spacing:0.128000pt;}
.ls0_c00300{letter-spacing:0.175680pt;}
.ls5_c00300{letter-spacing:14.599008pt;}
.ls4_c00300{letter-spacing:14.757120pt;}
.ls2_c00300{letter-spacing:15.986880pt;}
.ls1_c00300{letter-spacing:29.397120pt;}
.ws7_c00300{word-spacing:-16.064000pt;}
.ws0_c00300{word-spacing:-16.000000pt;}
.ws3_c00300{word-spacing:-14.815680pt;}
.ws4_c00300{word-spacing:-14.698560pt;}
.ws1_c00300{word-spacing:-14.581440pt;}
.wsd_c00300{word-spacing:-12.184320pt;}
.wse_c00300{word-spacing:-11.970560pt;}
.ws29_c00300{word-spacing:-0.587840pt;}
.ws2a_c00300{word-spacing:-0.534400pt;}
.ws5_c00300{word-spacing:-0.351360pt;}
.ws15_c00300{word-spacing:-0.320000pt;}
.wsa_c00300{word-spacing:-0.240096pt;}
.ws13_c00300{word-spacing:-0.117120pt;}
.ws19_c00300{word-spacing:-0.064000pt;}
.wsb_c00300{word-spacing:0.000000pt;}
.ws18_c00300{word-spacing:0.064000pt;}
.ws12_c00300{word-spacing:0.117120pt;}
.ws1d_c00300{word-spacing:0.128000pt;}
.ws17_c00300{word-spacing:0.351360pt;}
.ws16_c00300{word-spacing:1.405440pt;}
.ws1e_c00300{word-spacing:3.456000pt;}
.ws1a_c00300{word-spacing:3.520000pt;}
.ws1c_c00300{word-spacing:5.056000pt;}
.ws1b_c00300{word-spacing:5.120000pt;}
.ws21_c00300{word-spacing:6.976000pt;}
.ws22_c00300{word-spacing:7.040000pt;}
.ws9_c00300{word-spacing:7.174400pt;}
.ws8_c00300{word-spacing:7.180800pt;}
.ws14_c00300{word-spacing:8.256000pt;}
.ws20_c00300{word-spacing:10.112000pt;}
.ws1f_c00300{word-spacing:10.240000pt;}
.ws27_c00300{word-spacing:13.696000pt;}
.ws28_c00300{word-spacing:16.256000pt;}
.wsc_c00300{word-spacing:16.320000pt;}
.ws25_c00300{word-spacing:16.576000pt;}
.ws26_c00300{word-spacing:16.640000pt;}
.ws23_c00300{word-spacing:16.896000pt;}
.ws24_c00300{word-spacing:16.960000pt;}
.ws11_c00300{word-spacing:19.441920pt;}
.wsf_c00300{word-spacing:19.851840pt;}
.ws10_c00300{word-spacing:19.968960pt;}
.ws2_c00300{word-spacing:54.162144pt;}
.ws6_c00300{word-spacing:92.800000pt;}
._1_c00300{margin-left:-1.124352pt;}
._0_c00300{width:0.942816pt;}
._5_c00300{width:9.728000pt;}
._4_c00300{width:12.800000pt;}
._7_c00300{width:14.506667pt;}
._2_c00300{width:28.448448pt;}
._6_c00300{width:32.128000pt;}
._3_c00300{width:60.800000pt;}
.fs2_c00300{font-size:53.440000pt;}
.fs1_c00300{font-size:58.560000pt;}
.fs0_c00300{font-size:64.000000pt;}
.y0_c00300{bottom:0.000000pt;}
.y1_c00300{bottom:54.887600pt;}
.y36_c00300{bottom:96.148400pt;}
.y38_c00300{bottom:96.174533pt;}
.y3a_c00300{bottom:96.195067pt;}
.y1d_c00300{bottom:107.239333pt;}
.y1c_c00300{bottom:134.839333pt;}
.y31_c00300{bottom:135.866347pt;}
.y30_c00300{bottom:161.149627pt;}
.y1b_c00300{bottom:162.439333pt;}
.y2f_c00300{bottom:186.432907pt;}
.y1a_c00300{bottom:190.039333pt;}
.y2e_c00300{bottom:211.716187pt;}
.y19_c00300{bottom:217.639333pt;}
.y2d_c00300{bottom:236.999467pt;}
.y18_c00300{bottom:272.759333pt;}
.y2c_c00300{bottom:291.159333pt;}
.y17_c00300{bottom:300.359333pt;}
.y2b_c00300{bottom:318.759333pt;}
.y16_c00300{bottom:355.559333pt;}
.y2a_c00300{bottom:370.426907pt;}
.y15_c00300{bottom:383.159333pt;}
.y29_c00300{bottom:395.710187pt;}
.y14_c00300{bottom:410.759333pt;}
.y28_c00300{bottom:420.993467pt;}
.y27_c00300{bottom:446.349947pt;}
.y13_c00300{bottom:465.799333pt;}
.y26_c00300{bottom:471.633227pt;}
.y25_c00300{bottom:524.512907pt;}
.y12_c00300{bottom:547.467147pt;}
.y24_c00300{bottom:549.796187pt;}
.y11_c00300{bottom:572.823627pt;}
.y23_c00300{bottom:575.079467pt;}
.y10_c00300{bottom:598.106907pt;}
.yf_c00300{bottom:623.390187pt;}
.y22_c00300{bottom:629.239333pt;}
.ye_c00300{bottom:648.673467pt;}
.y21_c00300{bottom:656.839333pt;}
.yd_c00300{bottom:674.029947pt;}
.yc_c00300{bottom:699.313227pt;}
.y20_c00300{bottom:711.959333pt;}
.y39_c00300{bottom:750.360000pt;}
.yb_c00300{bottom:752.192907pt;}
.ya_c00300{bottom:777.476187pt;}
.y37_c00300{bottom:786.677333pt;}
.y9_c00300{bottom:802.759467pt;}
.y35_c00300{bottom:823.000000pt;}
.y32_c00300{bottom:827.841600pt;}
.y8_c00300{bottom:856.919333pt;}
.y7_c00300{bottom:884.519333pt;}
.y6_c00300{bottom:938.436293pt;}
.y33_c00300{bottom:960.586560pt;}
.y5_c00300{bottom:963.792773pt;}
.y34_c00300{bottom:985.275840pt;}
.y1f_c00300{bottom:986.839467pt;}
.y4_c00300{bottom:989.076053pt;}
.y3_c00300{bottom:1014.359333pt;}
.y1e_c00300{bottom:1060.599467pt;}
.y2_c00300{bottom:1060.599600pt;}
.h7_c00300{height:44.072344pt;}
.h2_c00300{height:44.800000pt;}
.h5_c00300{height:48.294844pt;}
.h4_c00300{height:63.479040pt;}
.h3_c00300{height:68.288000pt;}
.h6_c00300{height:69.376000pt;}
.h8_c00300{height:108.880000pt;}
.h9_c00300{height:108.881333pt;}
.h0_c00300{height:1122.520000pt;}
.h1_c00300{height:1122.666667pt;}
.w2_c00300{width:0.000000pt;}
.w3_c00300{width:0.058667pt;}
.w6_c00300{width:82.880000pt;}
.w5_c00300{width:137.920000pt;}
.w4_c00300{width:150.000000pt;}
.w0_c00300{width:793.701333pt;}
.w1_c00300{width:794.000000pt;}
.x1_c00300{left:-745.700800pt;}
.x2_c00300{left:-680.260800pt;}
.x3_c00300{left:-661.300800pt;}
.x4_c00300{left:-651.860800pt;}
.x0_c00300{left:0.000000pt;}
.xf_c00300{left:8.140133pt;}
.x8_c00300{left:113.440000pt;}
.xa_c00300{left:132.400000pt;}
.x9_c00300{left:141.840000pt;}
.xc_c00300{left:168.110827pt;}
.xd_c00300{left:252.238747pt;}
.xb_c00300{left:403.701067pt;}
.xe_c00300{left:487.920000pt;}
.x6_c00300{left:604.400000pt;}
.x7_c00300{left:654.560000pt;}
.x5_c00300{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00301;src:url('chunks/assets/font_d9615029f9d567312e14c970.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00301;src:url('chunks/assets/font_90fa0fb6daba1fc4deb2200b.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.592000;font-style:normal;font-weight:normal;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_8871b67b3dd8ce70222ef554.woff2')format("woff");}.ff4_c00301{font-family:ff4_c00301;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.lsa_c00301{letter-spacing:-0.288000px;}
.lsb_c00301{letter-spacing:-0.216000px;}
.lsd_c00301{letter-spacing:-0.120240px;}
.ls9_c00301{letter-spacing:-0.065880px;}
.lsc_c00301{letter-spacing:-0.060120px;}
.ls8_c00301{letter-spacing:0.000000px;}
.ls3_c00301{letter-spacing:0.072000px;}
.ls7_c00301{letter-spacing:0.120240px;}
.ls0_c00301{letter-spacing:0.197640px;}
.ls5_c00301{letter-spacing:0.360000px;}
.ls1_c00301{letter-spacing:16.601760px;}
.ls2_c00301{letter-spacing:23.058000px;}
.ls6_c00301{letter-spacing:27.720000px;}
.ls4_c00301{letter-spacing:33.120000px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00301{word-spacing:-18.000000px;}
.ws4_c00301{word-spacing:-17.784000px;}
.ws3_c00301{word-spacing:-16.667640px;}
.ws1_c00301{word-spacing:-16.404120px;}
.ws6_c00301{word-spacing:-13.707360px;}
.ws7_c00301{word-spacing:-13.527000px;}
.ws1b_c00301{word-spacing:-0.541080px;}
.ws12_c00301{word-spacing:-0.360000px;}
.ws2_c00301{word-spacing:-0.270108px;}
.ws9_c00301{word-spacing:-0.131760px;}
.ws16_c00301{word-spacing:-0.072000px;}
.ws8_c00301{word-spacing:0.000000px;}
.wsb_c00301{word-spacing:0.065880px;}
.wsa_c00301{word-spacing:0.131760px;}
.ws10_c00301{word-spacing:0.288000px;}
.ws5_c00301{word-spacing:0.316224px;}
.ws14_c00301{word-spacing:4.608000px;}
.ws13_c00301{word-spacing:4.680000px;}
.ws15_c00301{word-spacing:4.896000px;}
.wsd_c00301{word-spacing:5.995080px;}
.wsc_c00301{word-spacing:6.390360px;}
.ws18_c00301{word-spacing:9.648000px;}
.ws17_c00301{word-spacing:9.720000px;}
.ws19_c00301{word-spacing:10.008000px;}
.ws1a_c00301{word-spacing:10.440000px;}
.wse_c00301{word-spacing:15.408000px;}
.ws11_c00301{word-spacing:15.480000px;}
.wsf_c00301{word-spacing:15.840000px;}
._1_c00301{margin-left:-1.185840px;}
._0_c00301{width:1.060668px;}
._2_c00301{width:27.144000px;}
.fc0_c00301{color:rgb(35,31,32);}
.fs2_c00301{font-size:60.120000px;}
.fs1_c00301{font-size:65.880000px;}
.fs0_c00301{font-size:72.000000px;}
.y0_c00301{bottom:0.000000px;}
.y1_c00301{bottom:61.748550px;}
.y13_c00301{bottom:240.787020px;}
.y12_c00301{bottom:269.230710px;}
.y11_c00301{bottom:297.674400px;}
.y10_c00301{bottom:358.604250px;}
.yf_c00301{bottom:389.654250px;}
.ye_c00301{bottom:420.704250px;}
.yd_c00301{bottom:481.544250px;}
.y15_c00301{bottom:611.176560px;}
.y17_c00301{bottom:647.268000px;}
.y16_c00301{bottom:674.392200px;}
.y14_c00301{bottom:735.670050px;}
.yc_c00301{bottom:845.054250px;}
.yb_c00301{bottom:876.104250px;}
.ya_c00301{bottom:907.154250px;}
.y9_c00301{bottom:938.204250px;}
.y8_c00301{bottom:998.853450px;}
.y7_c00301{bottom:1027.297140px;}
.y6_c00301{bottom:1055.740830px;}
.y5_c00301{bottom:1084.266870px;}
.y4_c00301{bottom:1112.710560px;}
.y3_c00301{bottom:1141.154250px;}
.y2_c00301{bottom:1193.174400px;}
.h5_c00301{height:49.581387px;}
.h2_c00301{height:50.400000px;}
.h4_c00301{height:71.413920px;}
.h3_c00301{height:76.824000px;}
.h0_c00301{height:1262.835000px;}
.h1_c00301{height:1263.000000px;}
.w0_c00301{width:892.914000px;}
.w1_c00301{width:893.250000px;}
.x0_c00301{left:0.000000px;}
.x1_c00301{left:54.000000px;}
.x2_c00301{left:127.620000px;}
.x3_c00301{left:148.950000px;}
.x4_c00301{left:159.570000px;}
.x5_c00301{left:485.026650px;}
.x6_c00301{left:580.807650px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.lsa_c00301{letter-spacing:-0.256000pt;}
.lsb_c00301{letter-spacing:-0.192000pt;}
.lsd_c00301{letter-spacing:-0.106880pt;}
.ls9_c00301{letter-spacing:-0.058560pt;}
.lsc_c00301{letter-spacing:-0.053440pt;}
.ls8_c00301{letter-spacing:0.000000pt;}
.ls3_c00301{letter-spacing:0.064000pt;}
.ls7_c00301{letter-spacing:0.106880pt;}
.ls0_c00301{letter-spacing:0.175680pt;}
.ls5_c00301{letter-spacing:0.320000pt;}
.ls1_c00301{letter-spacing:14.757120pt;}
.ls2_c00301{letter-spacing:20.496000pt;}
.ls6_c00301{letter-spacing:24.640000pt;}
.ls4_c00301{letter-spacing:29.440000pt;}
.ws0_c00301{word-spacing:-16.000000pt;}
.ws4_c00301{word-spacing:-15.808000pt;}
.ws3_c00301{word-spacing:-14.815680pt;}
.ws1_c00301{word-spacing:-14.581440pt;}
.ws6_c00301{word-spacing:-12.184320pt;}
.ws7_c00301{word-spacing:-12.024000pt;}
.ws1b_c00301{word-spacing:-0.480960pt;}
.ws12_c00301{word-spacing:-0.320000pt;}
.ws2_c00301{word-spacing:-0.240096pt;}
.ws9_c00301{word-spacing:-0.117120pt;}
.ws16_c00301{word-spacing:-0.064000pt;}
.ws8_c00301{word-spacing:0.000000pt;}
.wsb_c00301{word-spacing:0.058560pt;}
.wsa_c00301{word-spacing:0.117120pt;}
.ws10_c00301{word-spacing:0.256000pt;}
.ws5_c00301{word-spacing:0.281088pt;}
.ws14_c00301{word-spacing:4.096000pt;}
.ws13_c00301{word-spacing:4.160000pt;}
.ws15_c00301{word-spacing:4.352000pt;}
.wsd_c00301{word-spacing:5.328960pt;}
.wsc_c00301{word-spacing:5.680320pt;}
.ws18_c00301{word-spacing:8.576000pt;}
.ws17_c00301{word-spacing:8.640000pt;}
.ws19_c00301{word-spacing:8.896000pt;}
.ws1a_c00301{word-spacing:9.280000pt;}
.wse_c00301{word-spacing:13.696000pt;}
.ws11_c00301{word-spacing:13.760000pt;}
.wsf_c00301{word-spacing:14.080000pt;}
._1_c00301{margin-left:-1.054080pt;}
._0_c00301{width:0.942816pt;}
._2_c00301{width:24.128000pt;}
.fs2_c00301{font-size:53.440000pt;}
.fs1_c00301{font-size:58.560000pt;}
.fs0_c00301{font-size:64.000000pt;}
.y0_c00301{bottom:0.000000pt;}
.y1_c00301{bottom:54.887600pt;}
.y13_c00301{bottom:214.032907pt;}
.y12_c00301{bottom:239.316187pt;}
.y11_c00301{bottom:264.599467pt;}
.y10_c00301{bottom:318.759333pt;}
.yf_c00301{bottom:346.359333pt;}
.ye_c00301{bottom:373.959333pt;}
.yd_c00301{bottom:428.039333pt;}
.y15_c00301{bottom:543.268053pt;}
.y17_c00301{bottom:575.349333pt;}
.y16_c00301{bottom:599.459733pt;}
.y14_c00301{bottom:653.928933pt;}
.yc_c00301{bottom:751.159333pt;}
.yb_c00301{bottom:778.759333pt;}
.ya_c00301{bottom:806.359333pt;}
.y9_c00301{bottom:833.959333pt;}
.y8_c00301{bottom:887.869733pt;}
.y7_c00301{bottom:913.153013pt;}
.y6_c00301{bottom:938.436293pt;}
.y5_c00301{bottom:963.792773pt;}
.y4_c00301{bottom:989.076053pt;}
.y3_c00301{bottom:1014.359333pt;}
.y2_c00301{bottom:1060.599467pt;}
.h5_c00301{height:44.072344pt;}
.h2_c00301{height:44.800000pt;}
.h4_c00301{height:63.479040pt;}
.h3_c00301{height:68.288000pt;}
.h0_c00301{height:1122.520000pt;}
.h1_c00301{height:1122.666667pt;}
.w0_c00301{width:793.701333pt;}
.w1_c00301{width:794.000000pt;}
.x0_c00301{left:0.000000pt;}
.x1_c00301{left:48.000000pt;}
.x2_c00301{left:113.440000pt;}
.x3_c00301{left:132.400000pt;}
.x4_c00301{left:141.840000pt;}
.x5_c00301{left:431.134800pt;}
.x6_c00301{left:516.273467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00302;src:url('chunks/assets/font_53e631642dcf7b84ded0287e.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.575000;font-style:normal;font-weight:normal;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_cff671dab87f350f878498ea.woff2')format("woff");}.ff3_c00302{font-family:ff3_c00302;line-height:1.592000;font-style:normal;font-weight:normal;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_cf183f02fb84dcc4a6e41c82.woff2')format("woff");}.ff4_c00302{font-family:ff4_c00302;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00302;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00302{font-family:ff5_c00302;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00302;src:url('chunks/assets/font_ecdf11cda3bf1f59d40fdac5.woff2')format("woff");}.ff6_c00302{font-family:ff6_c00302;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00302;src:url('chunks/assets/font_574f92ab8d664a28f89264d9.woff2')format("woff");}.ff7_c00302{font-family:ff7_c00302;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00302;src:url('chunks/assets/font_7800f1bffd5afdf5ead70521.woff2')format("woff");}.ff8_c00302{font-family:ff8_c00302;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00302{letter-spacing:-0.288000px;}
.lsd_c00302{letter-spacing:-0.216000px;}
.lsf_c00302{letter-spacing:-0.120240px;}
.lsb_c00302{letter-spacing:-0.065880px;}
.lse_c00302{letter-spacing:-0.060120px;}
.lsa_c00302{letter-spacing:0.000000px;}
.ls3_c00302{letter-spacing:0.072000px;}
.ls7_c00302{letter-spacing:0.120240px;}
.ls9_c00302{letter-spacing:0.144000px;}
.ls0_c00302{letter-spacing:0.197640px;}
.ls5_c00302{letter-spacing:0.360000px;}
.ls1_c00302{letter-spacing:16.601760px;}
.ls8_c00302{letter-spacing:19.814400px;}
.ls2_c00302{letter-spacing:23.058000px;}
.ls6_c00302{letter-spacing:27.720000px;}
.ls4_c00302{letter-spacing:33.120000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00302{word-spacing:-18.000000px;}
.ws4_c00302{word-spacing:-17.784000px;}
.ws3_c00302{word-spacing:-16.667640px;}
.ws1_c00302{word-spacing:-16.404120px;}
.ws6_c00302{word-spacing:-13.707360px;}
.ws7_c00302{word-spacing:-13.527000px;}
.ws2b_c00302{word-spacing:-1.803600px;}
.ws1d_c00302{word-spacing:-0.541080px;}
.ws15_c00302{word-spacing:-0.360000px;}
.ws2_c00302{word-spacing:-0.270108px;}
.ws8_c00302{word-spacing:-0.144000px;}
.wsc_c00302{word-spacing:-0.131760px;}
.ws18_c00302{word-spacing:-0.072000px;}
.wsb_c00302{word-spacing:0.000000px;}
.wse_c00302{word-spacing:0.065880px;}
.wsd_c00302{word-spacing:0.131760px;}
.ws13_c00302{word-spacing:0.288000px;}
.ws5_c00302{word-spacing:0.316224px;}
.ws23_c00302{word-spacing:1.656000px;}
.ws1f_c00302{word-spacing:1.728000px;}
.ws22_c00302{word-spacing:1.800000px;}
.ws1e_c00302{word-spacing:2.160000px;}
.ws27_c00302{word-spacing:3.168000px;}
.ws28_c00302{word-spacing:3.240000px;}
.ws17_c00302{word-spacing:4.608000px;}
.ws16_c00302{word-spacing:4.680000px;}
.wsa_c00302{word-spacing:4.896000px;}
.ws24_c00302{word-spacing:5.328000px;}
.ws9_c00302{word-spacing:5.400000px;}
.ws10_c00302{word-spacing:5.995080px;}
.wsf_c00302{word-spacing:6.390360px;}
.ws26_c00302{word-spacing:8.280000px;}
.ws2a_c00302{word-spacing:9.000000px;}
.ws1a_c00302{word-spacing:9.648000px;}
.ws19_c00302{word-spacing:9.720000px;}
.ws1b_c00302{word-spacing:10.008000px;}
.ws1c_c00302{word-spacing:10.440000px;}
.ws11_c00302{word-spacing:15.408000px;}
.ws14_c00302{word-spacing:15.480000px;}
.ws29_c00302{word-spacing:15.768000px;}
.ws12_c00302{word-spacing:15.840000px;}
.ws20_c00302{word-spacing:16.200000px;}
.ws21_c00302{word-spacing:23.688000px;}
.ws25_c00302{word-spacing:24.480000px;}
._3_c00302{margin-left:-1592.699040px;}
._1_c00302{margin-left:-1.185840px;}
._0_c00302{width:1.060668px;}
._2_c00302{width:27.144000px;}
.fc1_c00302{color:transparent;}
.fc0_c00302{color:rgb(35,31,32);}
.fs2_c00302{font-size:60.120000px;}
.fs1_c00302{font-size:65.880000px;}
.fs0_c00302{font-size:72.000000px;}
.y0_c00302{bottom:0.000000px;}
.y1_c00302{bottom:61.748550px;}
.y2b_c00302{bottom:144.066150px;}
.y2a_c00302{bottom:171.190350px;}
.y13_c00302{bottom:240.787020px;}
.y12_c00302{bottom:269.230710px;}
.y11_c00302{bottom:297.674400px;}
.y27_c00302{bottom:332.774400px;}
.y10_c00302{bottom:358.604250px;}
.y26_c00302{bottom:363.824400px;}
.yf_c00302{bottom:389.654250px;}
.y25_c00302{bottom:394.874400px;}
.ye_c00302{bottom:420.704250px;}
.y24_c00302{bottom:425.924400px;}
.y23_c00302{bottom:456.974400px;}
.yd_c00302{bottom:481.544250px;}
.y22_c00302{bottom:488.024400px;}
.y21_c00302{bottom:519.074400px;}
.y20_c00302{bottom:550.124400px;}
.y1f_c00302{bottom:581.174400px;}
.y15_c00302{bottom:611.176560px;}
.y1e_c00302{bottom:612.224400px;}
.y17_c00302{bottom:647.263590px;}
.y1d_c00302{bottom:674.324400px;}
.y16_c00302{bottom:674.392740px;}
.y29_c00302{bottom:700.602000px;}
.y14_c00302{bottom:735.670050px;}
.yc_c00302{bottom:845.054250px;}
.y28_c00302{bottom:861.194250px;}
.yb_c00302{bottom:876.104250px;}
.ya_c00302{bottom:907.154250px;}
.y9_c00302{bottom:938.204250px;}
.y8_c00302{bottom:998.853450px;}
.y7_c00302{bottom:1027.297140px;}
.y1c_c00302{bottom:1046.834400px;}
.y6_c00302{bottom:1055.740830px;}
.y1b_c00302{bottom:1077.884400px;}
.y5_c00302{bottom:1084.266870px;}
.y1a_c00302{bottom:1108.934400px;}
.y4_c00302{bottom:1112.710560px;}
.y19_c00302{bottom:1139.984400px;}
.y3_c00302{bottom:1141.154250px;}
.y18_c00302{bottom:1193.174400px;}
.y2_c00302{bottom:1193.174550px;}
.h5_c00302{height:49.581387px;}
.h2_c00302{height:50.400000px;}
.h4_c00302{height:71.413920px;}
.h3_c00302{height:76.824000px;}
.h6_c00302{height:78.048000px;}
.h8_c00302{height:158.403000px;}
.h7_c00302{height:185.490000px;}
.h0_c00302{height:1262.835000px;}
.h1_c00302{height:1263.000000px;}
.w2_c00302{width:0.000000px;}
.w3_c00302{width:0.066000px;}
.w4_c00302{width:163.170000px;}
.w5_c00302{width:178.200000px;}
.w0_c00302{width:892.914000px;}
.w1_c00302{width:893.250000px;}
.x1_c00302{left:-838.913400px;}
.x2_c00302{left:-765.293400px;}
.x3_c00302{left:-743.963400px;}
.x4_c00302{left:-733.343400px;}
.x5_c00302{left:-407.886750px;}
.x6_c00302{left:-312.100560px;}
.x0_c00302{left:0.000000px;}
.xd_c00302{left:9.180150px;}
.xa_c00302{left:127.620000px;}
.x9_c00302{left:159.570000px;}
.xb_c00302{left:495.286350px;}
.xc_c00302{left:545.940000px;}
.x8_c00302{left:679.950000px;}
.x7_c00302{left:804.366150px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.lsc_c00302{letter-spacing:-0.256000pt;}
.lsd_c00302{letter-spacing:-0.192000pt;}
.lsf_c00302{letter-spacing:-0.106880pt;}
.lsb_c00302{letter-spacing:-0.058560pt;}
.lse_c00302{letter-spacing:-0.053440pt;}
.lsa_c00302{letter-spacing:0.000000pt;}
.ls3_c00302{letter-spacing:0.064000pt;}
.ls7_c00302{letter-spacing:0.106880pt;}
.ls9_c00302{letter-spacing:0.128000pt;}
.ls0_c00302{letter-spacing:0.175680pt;}
.ls5_c00302{letter-spacing:0.320000pt;}
.ls1_c00302{letter-spacing:14.757120pt;}
.ls8_c00302{letter-spacing:17.612800pt;}
.ls2_c00302{letter-spacing:20.496000pt;}
.ls6_c00302{letter-spacing:24.640000pt;}
.ls4_c00302{letter-spacing:29.440000pt;}
.ws0_c00302{word-spacing:-16.000000pt;}
.ws4_c00302{word-spacing:-15.808000pt;}
.ws3_c00302{word-spacing:-14.815680pt;}
.ws1_c00302{word-spacing:-14.581440pt;}
.ws6_c00302{word-spacing:-12.184320pt;}
.ws7_c00302{word-spacing:-12.024000pt;}
.ws2b_c00302{word-spacing:-1.603200pt;}
.ws1d_c00302{word-spacing:-0.480960pt;}
.ws15_c00302{word-spacing:-0.320000pt;}
.ws2_c00302{word-spacing:-0.240096pt;}
.ws8_c00302{word-spacing:-0.128000pt;}
.wsc_c00302{word-spacing:-0.117120pt;}
.ws18_c00302{word-spacing:-0.064000pt;}
.wsb_c00302{word-spacing:0.000000pt;}
.wse_c00302{word-spacing:0.058560pt;}
.wsd_c00302{word-spacing:0.117120pt;}
.ws13_c00302{word-spacing:0.256000pt;}
.ws5_c00302{word-spacing:0.281088pt;}
.ws23_c00302{word-spacing:1.472000pt;}
.ws1f_c00302{word-spacing:1.536000pt;}
.ws22_c00302{word-spacing:1.600000pt;}
.ws1e_c00302{word-spacing:1.920000pt;}
.ws27_c00302{word-spacing:2.816000pt;}
.ws28_c00302{word-spacing:2.880000pt;}
.ws17_c00302{word-spacing:4.096000pt;}
.ws16_c00302{word-spacing:4.160000pt;}
.wsa_c00302{word-spacing:4.352000pt;}
.ws24_c00302{word-spacing:4.736000pt;}
.ws9_c00302{word-spacing:4.800000pt;}
.ws10_c00302{word-spacing:5.328960pt;}
.wsf_c00302{word-spacing:5.680320pt;}
.ws26_c00302{word-spacing:7.360000pt;}
.ws2a_c00302{word-spacing:8.000000pt;}
.ws1a_c00302{word-spacing:8.576000pt;}
.ws19_c00302{word-spacing:8.640000pt;}
.ws1b_c00302{word-spacing:8.896000pt;}
.ws1c_c00302{word-spacing:9.280000pt;}
.ws11_c00302{word-spacing:13.696000pt;}
.ws14_c00302{word-spacing:13.760000pt;}
.ws29_c00302{word-spacing:14.016000pt;}
.ws12_c00302{word-spacing:14.080000pt;}
.ws20_c00302{word-spacing:14.400000pt;}
.ws21_c00302{word-spacing:21.056000pt;}
.ws25_c00302{word-spacing:21.760000pt;}
._3_c00302{margin-left:-1415.732480pt;}
._1_c00302{margin-left:-1.054080pt;}
._0_c00302{width:0.942816pt;}
._2_c00302{width:24.128000pt;}
.fs2_c00302{font-size:53.440000pt;}
.fs1_c00302{font-size:58.560000pt;}
.fs0_c00302{font-size:64.000000pt;}
.y0_c00302{bottom:0.000000pt;}
.y1_c00302{bottom:54.887600pt;}
.y2b_c00302{bottom:128.058800pt;}
.y2a_c00302{bottom:152.169200pt;}
.y13_c00302{bottom:214.032907pt;}
.y12_c00302{bottom:239.316187pt;}
.y11_c00302{bottom:264.599467pt;}
.y27_c00302{bottom:295.799467pt;}
.y10_c00302{bottom:318.759333pt;}
.y26_c00302{bottom:323.399467pt;}
.yf_c00302{bottom:346.359333pt;}
.y25_c00302{bottom:350.999467pt;}
.ye_c00302{bottom:373.959333pt;}
.y24_c00302{bottom:378.599467pt;}
.y23_c00302{bottom:406.199467pt;}
.yd_c00302{bottom:428.039333pt;}
.y22_c00302{bottom:433.799467pt;}
.y21_c00302{bottom:461.399467pt;}
.y20_c00302{bottom:488.999467pt;}
.y1f_c00302{bottom:516.599467pt;}
.y15_c00302{bottom:543.268053pt;}
.y1e_c00302{bottom:544.199467pt;}
.y17_c00302{bottom:575.345413pt;}
.y1d_c00302{bottom:599.399467pt;}
.y16_c00302{bottom:599.460213pt;}
.y29_c00302{bottom:622.757333pt;}
.y14_c00302{bottom:653.928933pt;}
.yc_c00302{bottom:751.159333pt;}
.y28_c00302{bottom:765.506000pt;}
.yb_c00302{bottom:778.759333pt;}
.ya_c00302{bottom:806.359333pt;}
.y9_c00302{bottom:833.959333pt;}
.y8_c00302{bottom:887.869733pt;}
.y7_c00302{bottom:913.153013pt;}
.y1c_c00302{bottom:930.519467pt;}
.y6_c00302{bottom:938.436293pt;}
.y1b_c00302{bottom:958.119467pt;}
.y5_c00302{bottom:963.792773pt;}
.y1a_c00302{bottom:985.719467pt;}
.y4_c00302{bottom:989.076053pt;}
.y19_c00302{bottom:1013.319467pt;}
.y3_c00302{bottom:1014.359333pt;}
.y18_c00302{bottom:1060.599467pt;}
.y2_c00302{bottom:1060.599600pt;}
.h5_c00302{height:44.072344pt;}
.h2_c00302{height:44.800000pt;}
.h4_c00302{height:63.479040pt;}
.h3_c00302{height:68.288000pt;}
.h6_c00302{height:69.376000pt;}
.h8_c00302{height:140.802667pt;}
.h7_c00302{height:164.880000pt;}
.h0_c00302{height:1122.520000pt;}
.h1_c00302{height:1122.666667pt;}
.w2_c00302{width:0.000000pt;}
.w3_c00302{width:0.058667pt;}
.w4_c00302{width:145.040000pt;}
.w5_c00302{width:158.400000pt;}
.w0_c00302{width:793.701333pt;}
.w1_c00302{width:794.000000pt;}
.x1_c00302{left:-745.700800pt;}
.x2_c00302{left:-680.260800pt;}
.x3_c00302{left:-661.300800pt;}
.x4_c00302{left:-651.860800pt;}
.x5_c00302{left:-362.566000pt;}
.x6_c00302{left:-277.422720pt;}
.x0_c00302{left:0.000000pt;}
.xd_c00302{left:8.160133pt;}
.xa_c00302{left:113.440000pt;}
.x9_c00302{left:141.840000pt;}
.xb_c00302{left:440.254533pt;}
.xc_c00302{left:485.280000pt;}
.x8_c00302{left:604.400000pt;}
.x7_c00302{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00303;src:url('chunks/assets/font_04b58f31f670e790517cd546.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00303;src:url('chunks/assets/font_5371db1c1d574ede24683ddb.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00303{vertical-align:-18.516960px;}
.v0_c00303{vertical-align:0.000000px;}
.ls9_c00303{letter-spacing:-0.216000px;}
.lsa_c00303{letter-spacing:-0.120240px;}
.ls7_c00303{letter-spacing:-0.072000px;}
.ls6_c00303{letter-spacing:0.000000px;}
.ls0_c00303{letter-spacing:0.072000px;}
.ls4_c00303{letter-spacing:0.120240px;}
.ls8_c00303{letter-spacing:0.144000px;}
.ls1_c00303{letter-spacing:21.672000px;}
.ls3_c00303{letter-spacing:24.177600px;}
.ls2_c00303{letter-spacing:31.680000px;}
.ls5_c00303{letter-spacing:630.899280px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00303{word-spacing:-18.144000px;}
.ws4_c00303{word-spacing:-18.072000px;}
.ws0_c00303{word-spacing:-18.000000px;}
.ws5_c00303{word-spacing:-13.707360px;}
.ws6_c00303{word-spacing:-13.466880px;}
.ws10_c00303{word-spacing:-0.661320px;}
.ws11_c00303{word-spacing:-0.601200px;}
.ws8_c00303{word-spacing:-0.072000px;}
.ws7_c00303{word-spacing:0.000000px;}
.wse_c00303{word-spacing:0.216000px;}
.wsb_c00303{word-spacing:1.008000px;}
.ws9_c00303{word-spacing:3.528000px;}
.ws3_c00303{word-spacing:3.600000px;}
.ws1_c00303{word-spacing:3.744000px;}
.wsd_c00303{word-spacing:6.048000px;}
.wsc_c00303{word-spacing:9.360000px;}
.wsa_c00303{word-spacing:13.680000px;}
.wsf_c00303{word-spacing:23.400000px;}
._0_c00303{margin-left:-1.080000px;}
._1_c00303{width:1.008000px;}
.fc1_c00303{color:rgb(0,0,0);}
.fc0_c00303{color:rgb(35,31,32);}
.fs1_c00303{font-size:60.120000px;}
.fs0_c00303{font-size:72.000000px;}
.y0_c00303{bottom:0.000000px;}
.y1f_c00303{bottom:13.702050px;}
.y1_c00303{bottom:61.748550px;}
.yb_c00303{bottom:456.974400px;}
.ya_c00303{bottom:488.024400px;}
.y9_c00303{bottom:519.074400px;}
.y8_c00303{bottom:550.124400px;}
.y7_c00303{bottom:581.174400px;}
.y6_c00303{bottom:612.224400px;}
.y5_c00303{bottom:643.274400px;}
.y4_c00303{bottom:674.324400px;}
.y3_c00303{bottom:736.424400px;}
.y1e_c00303{bottom:899.955000px;}
.y14_c00303{bottom:933.147480px;}
.y13_c00303{bottom:948.222570px;}
.yf_c00303{bottom:952.866840px;}
.ye_c00303{bottom:956.338770px;}
.y15_c00303{bottom:956.368830px;}
.y12_c00303{bottom:960.968010px;}
.yd_c00303{bottom:973.713450px;}
.y16_c00303{bottom:979.590180px;}
.y17_c00303{bottom:1002.811530px;}
.y11_c00303{bottom:1007.305500px;}
.y18_c00303{bottom:1026.032880px;}
.y19_c00303{bottom:1049.254230px;}
.y1a_c00303{bottom:1072.475580px;}
.y1b_c00303{bottom:1095.696930px;}
.y10_c00303{bottom:1109.238960px;}
.y1c_c00303{bottom:1118.918280px;}
.yc_c00303{bottom:1141.673700px;}
.y1d_c00303{bottom:1142.139630px;}
.y2_c00303{bottom:1193.174400px;}
.h5_c00303{height:27.990000px;}
.h4_c00303{height:49.581387px;}
.h2_c00303{height:50.400000px;}
.h3_c00303{height:76.824000px;}
.h0_c00303{height:1262.835000px;}
.h1_c00303{height:1263.000000px;}
.w4_c00303{width:93.150000px;}
.w3_c00303{width:155.160000px;}
.w2_c00303{width:168.837000px;}
.w0_c00303{width:892.914000px;}
.w1_c00303{width:893.250000px;}
.x0_c00303{left:0.000000px;}
.xf_c00303{left:9.164850px;}
.x1_c00303{left:54.000000px;}
.x2_c00303{left:127.620000px;}
.x3_c00303{left:159.570000px;}
.xd_c00303{left:164.898480px;}
.xc_c00303{left:172.473600px;}
.xe_c00303{left:222.570000px;}
.x4_c00303{left:238.605600px;}
.x7_c00303{left:276.541320px;}
.x8_c00303{left:306.901920px;}
.xb_c00303{left:344.837640px;}
.x10_c00303{left:417.240000px;}
.x5_c00303{left:430.238100px;}
.x9_c00303{left:494.746860px;}
.x6_c00303{left:618.083040px;}
.x11_c00303{left:636.120000px;}
.xa_c00303{left:686.379360px;}
@media print{
.v1_c00303{vertical-align:-16.459520pt;}
.v0_c00303{vertical-align:0.000000pt;}
.ls9_c00303{letter-spacing:-0.192000pt;}
.lsa_c00303{letter-spacing:-0.106880pt;}
.ls7_c00303{letter-spacing:-0.064000pt;}
.ls6_c00303{letter-spacing:0.000000pt;}
.ls0_c00303{letter-spacing:0.064000pt;}
.ls4_c00303{letter-spacing:0.106880pt;}
.ls8_c00303{letter-spacing:0.128000pt;}
.ls1_c00303{letter-spacing:19.264000pt;}
.ls3_c00303{letter-spacing:21.491200pt;}
.ls2_c00303{letter-spacing:28.160000pt;}
.ls5_c00303{letter-spacing:560.799360pt;}
.ws2_c00303{word-spacing:-16.128000pt;}
.ws4_c00303{word-spacing:-16.064000pt;}
.ws0_c00303{word-spacing:-16.000000pt;}
.ws5_c00303{word-spacing:-12.184320pt;}
.ws6_c00303{word-spacing:-11.970560pt;}
.ws10_c00303{word-spacing:-0.587840pt;}
.ws11_c00303{word-spacing:-0.534400pt;}
.ws8_c00303{word-spacing:-0.064000pt;}
.ws7_c00303{word-spacing:0.000000pt;}
.wse_c00303{word-spacing:0.192000pt;}
.wsb_c00303{word-spacing:0.896000pt;}
.ws9_c00303{word-spacing:3.136000pt;}
.ws3_c00303{word-spacing:3.200000pt;}
.ws1_c00303{word-spacing:3.328000pt;}
.wsd_c00303{word-spacing:5.376000pt;}
.wsc_c00303{word-spacing:8.320000pt;}
.wsa_c00303{word-spacing:12.160000pt;}
.wsf_c00303{word-spacing:20.800000pt;}
._0_c00303{margin-left:-0.960000pt;}
._1_c00303{width:0.896000pt;}
.fs1_c00303{font-size:53.440000pt;}
.fs0_c00303{font-size:64.000000pt;}
.y0_c00303{bottom:0.000000pt;}
.y1f_c00303{bottom:12.179600pt;}
.y1_c00303{bottom:54.887600pt;}
.yb_c00303{bottom:406.199467pt;}
.ya_c00303{bottom:433.799467pt;}
.y9_c00303{bottom:461.399467pt;}
.y8_c00303{bottom:488.999467pt;}
.y7_c00303{bottom:516.599467pt;}
.y6_c00303{bottom:544.199467pt;}
.y5_c00303{bottom:571.799467pt;}
.y4_c00303{bottom:599.399467pt;}
.y3_c00303{bottom:654.599467pt;}
.y1e_c00303{bottom:799.960000pt;}
.y14_c00303{bottom:829.464427pt;}
.y13_c00303{bottom:842.864507pt;}
.yf_c00303{bottom:846.992747pt;}
.ye_c00303{bottom:850.078907pt;}
.y15_c00303{bottom:850.105627pt;}
.y12_c00303{bottom:854.193787pt;}
.yd_c00303{bottom:865.523067pt;}
.y16_c00303{bottom:870.746827pt;}
.y17_c00303{bottom:891.388027pt;}
.y11_c00303{bottom:895.382667pt;}
.y18_c00303{bottom:912.029227pt;}
.y19_c00303{bottom:932.670427pt;}
.y1a_c00303{bottom:953.311627pt;}
.y1b_c00303{bottom:973.952827pt;}
.y10_c00303{bottom:985.990187pt;}
.y1c_c00303{bottom:994.594027pt;}
.yc_c00303{bottom:1014.821067pt;}
.y1d_c00303{bottom:1015.235227pt;}
.y2_c00303{bottom:1060.599467pt;}
.h5_c00303{height:24.880000pt;}
.h4_c00303{height:44.072344pt;}
.h2_c00303{height:44.800000pt;}
.h3_c00303{height:68.288000pt;}
.h0_c00303{height:1122.520000pt;}
.h1_c00303{height:1122.666667pt;}
.w4_c00303{width:82.800000pt;}
.w3_c00303{width:137.920000pt;}
.w2_c00303{width:150.077333pt;}
.w0_c00303{width:793.701333pt;}
.w1_c00303{width:794.000000pt;}
.x0_c00303{left:0.000000pt;}
.xf_c00303{left:8.146533pt;}
.x1_c00303{left:48.000000pt;}
.x2_c00303{left:113.440000pt;}
.x3_c00303{left:141.840000pt;}
.xd_c00303{left:146.576427pt;}
.xc_c00303{left:153.309867pt;}
.xe_c00303{left:197.840000pt;}
.x4_c00303{left:212.093867pt;}
.x7_c00303{left:245.814507pt;}
.x8_c00303{left:272.801707pt;}
.xb_c00303{left:306.522347pt;}
.x10_c00303{left:370.880000pt;}
.x5_c00303{left:382.433867pt;}
.x9_c00303{left:439.774987pt;}
.x6_c00303{left:549.407147pt;}
.x11_c00303{left:565.440000pt;}
.xa_c00303{left:610.114987pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00304;src:url('chunks/assets/font_af96d9d555a1d1e86f94f421.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00304;src:url('chunks/assets/font_6afb3a84b0013941391f1002.woff2')format("woff");}.ff3_c00304{font-family:ff3_c00304;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00304;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00304{font-family:ff4_c00304;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00304;src:url('chunks/assets/font_e44d2e1fe59cba7bd5859c76.woff2')format("woff");}.ff5_c00304{font-family:ff5_c00304;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00304;src:url('chunks/assets/font_6afb3a84b0013941391f1002.woff2')format("woff");}.ff6_c00304{font-family:ff6_c00304;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00304;src:url('chunks/assets/font_4683ef04cb77350a45743c03.woff2')format("woff");}.ff7_c00304{font-family:ff7_c00304;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00304{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00304{vertical-align:-18.516960px;}
.v0_c00304{vertical-align:0.000000px;}
.lsa_c00304{letter-spacing:-0.216000px;}
.lsc_c00304{letter-spacing:-0.144000px;}
.lsb_c00304{letter-spacing:-0.120240px;}
.ls9_c00304{letter-spacing:-0.072000px;}
.ls8_c00304{letter-spacing:0.000000px;}
.ls0_c00304{letter-spacing:0.072000px;}
.ls4_c00304{letter-spacing:0.120240px;}
.ls7_c00304{letter-spacing:0.144000px;}
.ls1_c00304{letter-spacing:21.672000px;}
.ls6_c00304{letter-spacing:24.163200px;}
.ls3_c00304{letter-spacing:24.170400px;}
.ls2_c00304{letter-spacing:31.680000px;}
.ls5_c00304{letter-spacing:630.899280px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00304{word-spacing:-18.144000px;}
.ws4_c00304{word-spacing:-18.072000px;}
.ws0_c00304{word-spacing:-18.000000px;}
.wsa_c00304{word-spacing:-17.928000px;}
.ws7_c00304{word-spacing:-17.856000px;}
.ws5_c00304{word-spacing:-13.707360px;}
.ws6_c00304{word-spacing:-13.466880px;}
.ws14_c00304{word-spacing:-0.661320px;}
.ws15_c00304{word-spacing:-0.601200px;}
.ws18_c00304{word-spacing:-0.144000px;}
.wsc_c00304{word-spacing:-0.072000px;}
.wsb_c00304{word-spacing:0.000000px;}
.ws17_c00304{word-spacing:0.144000px;}
.ws12_c00304{word-spacing:0.216000px;}
.ws16_c00304{word-spacing:0.432000px;}
.ws19_c00304{word-spacing:0.504000px;}
.wsf_c00304{word-spacing:1.008000px;}
.wsd_c00304{word-spacing:3.528000px;}
.ws3_c00304{word-spacing:3.600000px;}
.ws1_c00304{word-spacing:3.744000px;}
.ws11_c00304{word-spacing:6.048000px;}
.ws10_c00304{word-spacing:9.360000px;}
.wse_c00304{word-spacing:13.680000px;}
.ws13_c00304{word-spacing:23.400000px;}
.ws9_c00304{word-spacing:420.480000px;}
.ws8_c00304{word-spacing:956.376000px;}
._0_c00304{margin-left:-1.087200px;}
._1_c00304{width:1.008000px;}
._2_c00304{width:447.480000px;}
.fc2_c00304{color:transparent;}
.fc1_c00304{color:rgb(0,0,0);}
.fc0_c00304{color:rgb(35,31,32);}
.fs1_c00304{font-size:60.120000px;}
.fs0_c00304{font-size:72.000000px;}
.y0_c00304{bottom:0.000000px;}
.y43_c00304{bottom:4.049400px;}
.y26_c00304{bottom:4.139250px;}
.y24_c00304{bottom:4.139400px;}
.y45_c00304{bottom:4.140900px;}
.y31_c00304{bottom:4.142250px;}
.y2c_c00304{bottom:4.142400px;}
.y1f_c00304{bottom:13.702050px;}
.y35_c00304{bottom:24.749400px;}
.y23_c00304{bottom:24.839250px;}
.y28_c00304{bottom:24.839400px;}
.y38_c00304{bottom:24.842250px;}
.y2b_c00304{bottom:24.842400px;}
.y1_c00304{bottom:61.748550px;}
.y44_c00304{bottom:161.953500px;}
.y42_c00304{bottom:185.265000px;}
.y41_c00304{bottom:249.885000px;}
.y40_c00304{bottom:291.282000px;}
.y3f_c00304{bottom:313.785000px;}
.y3e_c00304{bottom:337.005000px;}
.y3d_c00304{bottom:401.625000px;}
.y3c_c00304{bottom:443.022000px;}
.yb_c00304{bottom:456.974400px;}
.y3b_c00304{bottom:465.525000px;}
.ya_c00304{bottom:488.024400px;}
.y3a_c00304{bottom:506.925000px;}
.y9_c00304{bottom:519.074400px;}
.y39_c00304{bottom:530.232000px;}
.y8_c00304{bottom:550.124400px;}
.y37_c00304{bottom:572.352000px;}
.y7_c00304{bottom:581.174400px;}
.y6_c00304{bottom:612.224400px;}
.y36_c00304{bottom:614.472000px;}
.y5_c00304{bottom:643.274400px;}
.y34_c00304{bottom:656.685000px;}
.y4_c00304{bottom:674.324400px;}
.y33_c00304{bottom:697.995000px;}
.y32_c00304{bottom:720.495000px;}
.y3_c00304{bottom:736.424400px;}
.y30_c00304{bottom:743.802000px;}
.y2e_c00304{bottom:808.425000px;}
.y2f_c00304{bottom:812.564250px;}
.y2d_c00304{bottom:849.825000px;}
.y2a_c00304{bottom:872.322000px;}
.y1e_c00304{bottom:899.955000px;}
.y29_c00304{bottom:913.725000px;}
.y14_c00304{bottom:933.147480px;}
.y27_c00304{bottom:936.945000px;}
.y13_c00304{bottom:948.222570px;}
.yf_c00304{bottom:952.866840px;}
.ye_c00304{bottom:956.338770px;}
.y15_c00304{bottom:956.368830px;}
.y12_c00304{bottom:960.968010px;}
.yd_c00304{bottom:973.713450px;}
.y25_c00304{bottom:979.155000px;}
.y16_c00304{bottom:979.590180px;}
.y17_c00304{bottom:1002.811530px;}
.y11_c00304{bottom:1007.305500px;}
.y22_c00304{bottom:1021.275000px;}
.y18_c00304{bottom:1026.032880px;}
.y19_c00304{bottom:1049.254230px;}
.y1a_c00304{bottom:1072.475580px;}
.y1b_c00304{bottom:1095.696930px;}
.y21_c00304{bottom:1098.494400px;}
.y10_c00304{bottom:1109.238960px;}
.y1c_c00304{bottom:1118.918280px;}
.y20_c00304{bottom:1139.984400px;}
.yc_c00304{bottom:1141.673700px;}
.y1d_c00304{bottom:1142.139630px;}
.y2_c00304{bottom:1193.174400px;}
.ha_c00304{height:22.497000px;}
.h8_c00304{height:22.498500px;}
.hc_c00304{height:22.500000px;}
.h5_c00304{height:27.990000px;}
.hb_c00304{height:41.310000px;}
.hd_c00304{height:41.397000px;}
.h7_c00304{height:41.398500px;}
.h9_c00304{height:41.400000px;}
.h4_c00304{height:49.581387px;}
.h2_c00304{height:50.400000px;}
.h3_c00304{height:76.824000px;}
.h6_c00304{height:78.048000px;}
.h0_c00304{height:1262.835000px;}
.h1_c00304{height:1263.000000px;}
.w3_c00304{width:-501.505500px;}
.w7_c00304{width:-501.504000px;}
.w4_c00304{width:-320.514000px;}
.w5_c00304{width:-163.644000px;}
.w2_c00304{width:0.000000px;}
.w6_c00304{width:0.066000px;}
.wd_c00304{width:120.780000px;}
.wa_c00304{width:123.570000px;}
.wc_c00304{width:127.620000px;}
.wb_c00304{width:132.751500px;}
.w8_c00304{width:197.280000px;}
.w9_c00304{width:381.151500px;}
.w0_c00304{width:892.914000px;}
.w1_c00304{width:893.250000px;}
.x1_c00304{left:-838.913400px;}
.x2_c00304{left:-765.293400px;}
.x3_c00304{left:-733.343400px;}
.xd_c00304{left:-728.014920px;}
.xc_c00304{left:-720.439800px;}
.xe_c00304{left:-661.178550px;}
.x4_c00304{left:-654.307800px;}
.x7_c00304{left:-616.372080px;}
.x8_c00304{left:-586.011480px;}
.xb_c00304{left:-548.075760px;}
.xf_c00304{left:-466.488900px;}
.x5_c00304{left:-462.675300px;}
.x9_c00304{left:-398.166540px;}
.x6_c00304{left:-274.830360px;}
.x10_c00304{left:-247.683150px;}
.xa_c00304{left:-206.534040px;}
.x0_c00304{left:0.000000px;}
.x14_c00304{left:5.310000px;}
.x22_c00304{left:82.260000px;}
.x1c_c00304{left:91.260000px;}
.x21_c00304{left:97.560000px;}
.x1e_c00304{left:100.260000px;}
.x1a_c00304{left:104.310000px;}
.x1b_c00304{left:106.560000px;}
.x19_c00304{left:109.440000px;}
.x1d_c00304{left:113.310000px;}
.x1f_c00304{left:118.440000px;}
.x13_c00304{left:127.620000px;}
.x20_c00304{left:132.480000px;}
.x15_c00304{left:324.450000px;}
.x17_c00304{left:457.200000px;}
.x18_c00304{left:584.820000px;}
.x12_c00304{left:679.950000px;}
.x16_c00304{left:705.600000px;}
.x11_c00304{left:804.366150px;}
@media print{
.v1_c00304{vertical-align:-16.459520pt;}
.v0_c00304{vertical-align:0.000000pt;}
.lsa_c00304{letter-spacing:-0.192000pt;}
.lsc_c00304{letter-spacing:-0.128000pt;}
.lsb_c00304{letter-spacing:-0.106880pt;}
.ls9_c00304{letter-spacing:-0.064000pt;}
.ls8_c00304{letter-spacing:0.000000pt;}
.ls0_c00304{letter-spacing:0.064000pt;}
.ls4_c00304{letter-spacing:0.106880pt;}
.ls7_c00304{letter-spacing:0.128000pt;}
.ls1_c00304{letter-spacing:19.264000pt;}
.ls6_c00304{letter-spacing:21.478400pt;}
.ls3_c00304{letter-spacing:21.484800pt;}
.ls2_c00304{letter-spacing:28.160000pt;}
.ls5_c00304{letter-spacing:560.799360pt;}
.ws2_c00304{word-spacing:-16.128000pt;}
.ws4_c00304{word-spacing:-16.064000pt;}
.ws0_c00304{word-spacing:-16.000000pt;}
.wsa_c00304{word-spacing:-15.936000pt;}
.ws7_c00304{word-spacing:-15.872000pt;}
.ws5_c00304{word-spacing:-12.184320pt;}
.ws6_c00304{word-spacing:-11.970560pt;}
.ws14_c00304{word-spacing:-0.587840pt;}
.ws15_c00304{word-spacing:-0.534400pt;}
.ws18_c00304{word-spacing:-0.128000pt;}
.wsc_c00304{word-spacing:-0.064000pt;}
.wsb_c00304{word-spacing:0.000000pt;}
.ws17_c00304{word-spacing:0.128000pt;}
.ws12_c00304{word-spacing:0.192000pt;}
.ws16_c00304{word-spacing:0.384000pt;}
.ws19_c00304{word-spacing:0.448000pt;}
.wsf_c00304{word-spacing:0.896000pt;}
.wsd_c00304{word-spacing:3.136000pt;}
.ws3_c00304{word-spacing:3.200000pt;}
.ws1_c00304{word-spacing:3.328000pt;}
.ws11_c00304{word-spacing:5.376000pt;}
.ws10_c00304{word-spacing:8.320000pt;}
.wse_c00304{word-spacing:12.160000pt;}
.ws13_c00304{word-spacing:20.800000pt;}
.ws9_c00304{word-spacing:373.760000pt;}
.ws8_c00304{word-spacing:850.112000pt;}
._0_c00304{margin-left:-0.966400pt;}
._1_c00304{width:0.896000pt;}
._2_c00304{width:397.760000pt;}
.fs1_c00304{font-size:53.440000pt;}
.fs0_c00304{font-size:64.000000pt;}
.y0_c00304{bottom:0.000000pt;}
.y43_c00304{bottom:3.599467pt;}
.y26_c00304{bottom:3.679333pt;}
.y24_c00304{bottom:3.679467pt;}
.y45_c00304{bottom:3.680800pt;}
.y31_c00304{bottom:3.682000pt;}
.y2c_c00304{bottom:3.682133pt;}
.y1f_c00304{bottom:12.179600pt;}
.y35_c00304{bottom:21.999467pt;}
.y23_c00304{bottom:22.079333pt;}
.y28_c00304{bottom:22.079467pt;}
.y38_c00304{bottom:22.082000pt;}
.y2b_c00304{bottom:22.082133pt;}
.y1_c00304{bottom:54.887600pt;}
.y44_c00304{bottom:143.958667pt;}
.y42_c00304{bottom:164.680000pt;}
.y41_c00304{bottom:222.120000pt;}
.y40_c00304{bottom:258.917333pt;}
.y3f_c00304{bottom:278.920000pt;}
.y3e_c00304{bottom:299.560000pt;}
.y3d_c00304{bottom:357.000000pt;}
.y3c_c00304{bottom:393.797333pt;}
.yb_c00304{bottom:406.199467pt;}
.y3b_c00304{bottom:413.800000pt;}
.ya_c00304{bottom:433.799467pt;}
.y3a_c00304{bottom:450.600000pt;}
.y9_c00304{bottom:461.399467pt;}
.y39_c00304{bottom:471.317333pt;}
.y8_c00304{bottom:488.999467pt;}
.y37_c00304{bottom:508.757333pt;}
.y7_c00304{bottom:516.599467pt;}
.y6_c00304{bottom:544.199467pt;}
.y36_c00304{bottom:546.197333pt;}
.y5_c00304{bottom:571.799467pt;}
.y34_c00304{bottom:583.720000pt;}
.y4_c00304{bottom:599.399467pt;}
.y33_c00304{bottom:620.440000pt;}
.y32_c00304{bottom:640.440000pt;}
.y3_c00304{bottom:654.599467pt;}
.y30_c00304{bottom:661.157333pt;}
.y2e_c00304{bottom:718.600000pt;}
.y2f_c00304{bottom:722.279333pt;}
.y2d_c00304{bottom:755.400000pt;}
.y2a_c00304{bottom:775.397333pt;}
.y1e_c00304{bottom:799.960000pt;}
.y29_c00304{bottom:812.200000pt;}
.y14_c00304{bottom:829.464427pt;}
.y27_c00304{bottom:832.840000pt;}
.y13_c00304{bottom:842.864507pt;}
.yf_c00304{bottom:846.992747pt;}
.ye_c00304{bottom:850.078907pt;}
.y15_c00304{bottom:850.105627pt;}
.y12_c00304{bottom:854.193787pt;}
.yd_c00304{bottom:865.523067pt;}
.y25_c00304{bottom:870.360000pt;}
.y16_c00304{bottom:870.746827pt;}
.y17_c00304{bottom:891.388027pt;}
.y11_c00304{bottom:895.382667pt;}
.y22_c00304{bottom:907.800000pt;}
.y18_c00304{bottom:912.029227pt;}
.y19_c00304{bottom:932.670427pt;}
.y1a_c00304{bottom:953.311627pt;}
.y1b_c00304{bottom:973.952827pt;}
.y21_c00304{bottom:976.439467pt;}
.y10_c00304{bottom:985.990187pt;}
.y1c_c00304{bottom:994.594027pt;}
.y20_c00304{bottom:1013.319467pt;}
.yc_c00304{bottom:1014.821067pt;}
.y1d_c00304{bottom:1015.235227pt;}
.y2_c00304{bottom:1060.599467pt;}
.ha_c00304{height:19.997333pt;}
.h8_c00304{height:19.998667pt;}
.hc_c00304{height:20.000000pt;}
.h5_c00304{height:24.880000pt;}
.hb_c00304{height:36.720000pt;}
.hd_c00304{height:36.797333pt;}
.h7_c00304{height:36.798667pt;}
.h9_c00304{height:36.800000pt;}
.h4_c00304{height:44.072344pt;}
.h2_c00304{height:44.800000pt;}
.h3_c00304{height:68.288000pt;}
.h6_c00304{height:69.376000pt;}
.h0_c00304{height:1122.520000pt;}
.h1_c00304{height:1122.666667pt;}
.w3_c00304{width:-445.782667pt;}
.w7_c00304{width:-445.781333pt;}
.w4_c00304{width:-284.901333pt;}
.w5_c00304{width:-145.461333pt;}
.w2_c00304{width:0.000000pt;}
.w6_c00304{width:0.058667pt;}
.wd_c00304{width:107.360000pt;}
.wa_c00304{width:109.840000pt;}
.wc_c00304{width:113.440000pt;}
.wb_c00304{width:118.001333pt;}
.w8_c00304{width:175.360000pt;}
.w9_c00304{width:338.801333pt;}
.w0_c00304{width:793.701333pt;}
.w1_c00304{width:794.000000pt;}
.x1_c00304{left:-745.700800pt;}
.x2_c00304{left:-680.260800pt;}
.x3_c00304{left:-651.860800pt;}
.xd_c00304{left:-647.124373pt;}
.xc_c00304{left:-640.390933pt;}
.xe_c00304{left:-587.714267pt;}
.x4_c00304{left:-581.606933pt;}
.x7_c00304{left:-547.886293pt;}
.x8_c00304{left:-520.899093pt;}
.xb_c00304{left:-487.178453pt;}
.xf_c00304{left:-414.656800pt;}
.x5_c00304{left:-411.266933pt;}
.x9_c00304{left:-353.925813pt;}
.x6_c00304{left:-244.293653pt;}
.x10_c00304{left:-220.162800pt;}
.xa_c00304{left:-183.585813pt;}
.x0_c00304{left:0.000000pt;}
.x14_c00304{left:4.720000pt;}
.x22_c00304{left:73.120000pt;}
.x1c_c00304{left:81.120000pt;}
.x21_c00304{left:86.720000pt;}
.x1e_c00304{left:89.120000pt;}
.x1a_c00304{left:92.720000pt;}
.x1b_c00304{left:94.720000pt;}
.x19_c00304{left:97.280000pt;}
.x1d_c00304{left:100.720000pt;}
.x1f_c00304{left:105.280000pt;}
.x13_c00304{left:113.440000pt;}
.x20_c00304{left:117.760000pt;}
.x15_c00304{left:288.400000pt;}
.x17_c00304{left:406.400000pt;}
.x18_c00304{left:519.840000pt;}
.x12_c00304{left:604.400000pt;}
.x16_c00304{left:627.200000pt;}
.x11_c00304{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00305;src:url('chunks/assets/font_37252d21c4b32b7d861c698c.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00305;src:url('chunks/assets/font_b3b18aed3dd88e2f20af88e2.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00305{letter-spacing:-0.144000px;}
.ls4_c00305{letter-spacing:-0.072000px;}
.ls3_c00305{letter-spacing:0.000000px;}
.ls0_c00305{letter-spacing:0.072000px;}
.ls2_c00305{letter-spacing:0.144000px;}
.ls1_c00305{letter-spacing:18.000000px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00305{word-spacing:-18.144000px;}
.ws4_c00305{word-spacing:-18.072000px;}
.ws0_c00305{word-spacing:-18.000000px;}
.ws2_c00305{word-spacing:-17.928000px;}
.ws1_c00305{word-spacing:-17.856000px;}
.ws6_c00305{word-spacing:-0.072000px;}
.ws5_c00305{word-spacing:0.000000px;}
.ws8_c00305{word-spacing:0.144000px;}
.ws7_c00305{word-spacing:0.432000px;}
.ws9_c00305{word-spacing:0.504000px;}
._0_c00305{margin-left:-1.224000px;}
._1_c00305{width:1.152000px;}
.fc1_c00305{color:rgb(0,0,0);}
.fc0_c00305{color:rgb(35,31,32);}
.fs0_c00305{font-size:72.000000px;}
.y0_c00305{bottom:0.000000px;}
.y9_c00305{bottom:4.139250px;}
.y7_c00305{bottom:4.139400px;}
.y26_c00305{bottom:4.140900px;}
.yd_c00305{bottom:4.142250px;}
.y17_c00305{bottom:4.142400px;}
.y6_c00305{bottom:24.839250px;}
.yb_c00305{bottom:24.839400px;}
.y19_c00305{bottom:24.840900px;}
.y11_c00305{bottom:24.842250px;}
.y16_c00305{bottom:24.842400px;}
.y1_c00305{bottom:61.748550px;}
.y25_c00305{bottom:124.153500px;}
.y24_c00305{bottom:147.465000px;}
.y23_c00305{bottom:212.085000px;}
.y22_c00305{bottom:253.482000px;}
.y21_c00305{bottom:275.985000px;}
.y20_c00305{bottom:299.205000px;}
.y1f_c00305{bottom:364.635000px;}
.y1e_c00305{bottom:406.032000px;}
.y1d_c00305{bottom:447.435000px;}
.y1c_c00305{bottom:488.835000px;}
.y1b_c00305{bottom:512.055000px;}
.y1a_c00305{bottom:554.175000px;}
.y18_c00305{bottom:596.383500px;}
.y15_c00305{bottom:638.502000px;}
.y14_c00305{bottom:679.905000px;}
.y13_c00305{bottom:702.405000px;}
.y12_c00305{bottom:725.625000px;}
.y10_c00305{bottom:790.242000px;}
.yf_c00305{bottom:831.645000px;}
.ye_c00305{bottom:873.045000px;}
.yc_c00305{bottom:914.442000px;}
.ya_c00305{bottom:936.945000px;}
.y8_c00305{bottom:979.155000px;}
.y5_c00305{bottom:1021.275000px;}
.y4_c00305{bottom:1098.494400px;}
.y3_c00305{bottom:1139.984400px;}
.y2_c00305{bottom:1193.174400px;}
.h8_c00305{height:22.498500px;}
.h6_c00305{height:22.500000px;}
.h9_c00305{height:41.397000px;}
.h5_c00305{height:41.398500px;}
.h7_c00305{height:41.400000px;}
.h2_c00305{height:50.400000px;}
.h3_c00305{height:76.824000px;}
.h4_c00305{height:78.048000px;}
.h0_c00305{height:1262.835000px;}
.h1_c00305{height:1263.000000px;}
.w7_c00305{width:119.250000px;}
.w4_c00305{width:123.480000px;}
.w6_c00305{width:127.620000px;}
.w5_c00305{width:135.090000px;}
.w2_c00305{width:194.940000px;}
.w3_c00305{width:381.960000px;}
.w0_c00305{width:892.914000px;}
.w1_c00305{width:893.250000px;}
.x0_c00305{left:0.000000px;}
.x3_c00305{left:5.310000px;}
.x1_c00305{left:54.000000px;}
.xd_c00305{left:77.760000px;}
.xa_c00305{left:82.440000px;}
.xb_c00305{left:86.760000px;}
.xc_c00305{left:89.370000px;}
.x9_c00305{left:90.810000px;}
.x8_c00305{left:98.370000px;}
.x2_c00305{left:127.620000px;}
.x4_c00305{left:322.110000px;}
.x6_c00305{left:457.200000px;}
.x7_c00305{left:584.820000px;}
.x5_c00305{left:704.070000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls5_c00305{letter-spacing:-0.128000pt;}
.ls4_c00305{letter-spacing:-0.064000pt;}
.ls3_c00305{letter-spacing:0.000000pt;}
.ls0_c00305{letter-spacing:0.064000pt;}
.ls2_c00305{letter-spacing:0.128000pt;}
.ls1_c00305{letter-spacing:16.000000pt;}
.ws3_c00305{word-spacing:-16.128000pt;}
.ws4_c00305{word-spacing:-16.064000pt;}
.ws0_c00305{word-spacing:-16.000000pt;}
.ws2_c00305{word-spacing:-15.936000pt;}
.ws1_c00305{word-spacing:-15.872000pt;}
.ws6_c00305{word-spacing:-0.064000pt;}
.ws5_c00305{word-spacing:0.000000pt;}
.ws8_c00305{word-spacing:0.128000pt;}
.ws7_c00305{word-spacing:0.384000pt;}
.ws9_c00305{word-spacing:0.448000pt;}
._0_c00305{margin-left:-1.088000pt;}
._1_c00305{width:1.024000pt;}
.fs0_c00305{font-size:64.000000pt;}
.y0_c00305{bottom:0.000000pt;}
.y9_c00305{bottom:3.679333pt;}
.y7_c00305{bottom:3.679467pt;}
.y26_c00305{bottom:3.680800pt;}
.yd_c00305{bottom:3.682000pt;}
.y17_c00305{bottom:3.682133pt;}
.y6_c00305{bottom:22.079333pt;}
.yb_c00305{bottom:22.079467pt;}
.y19_c00305{bottom:22.080800pt;}
.y11_c00305{bottom:22.082000pt;}
.y16_c00305{bottom:22.082133pt;}
.y1_c00305{bottom:54.887600pt;}
.y25_c00305{bottom:110.358667pt;}
.y24_c00305{bottom:131.080000pt;}
.y23_c00305{bottom:188.520000pt;}
.y22_c00305{bottom:225.317333pt;}
.y21_c00305{bottom:245.320000pt;}
.y20_c00305{bottom:265.960000pt;}
.y1f_c00305{bottom:324.120000pt;}
.y1e_c00305{bottom:360.917333pt;}
.y1d_c00305{bottom:397.720000pt;}
.y1c_c00305{bottom:434.520000pt;}
.y1b_c00305{bottom:455.160000pt;}
.y1a_c00305{bottom:492.600000pt;}
.y18_c00305{bottom:530.118667pt;}
.y15_c00305{bottom:567.557333pt;}
.y14_c00305{bottom:604.360000pt;}
.y13_c00305{bottom:624.360000pt;}
.y12_c00305{bottom:645.000000pt;}
.y10_c00305{bottom:702.437333pt;}
.yf_c00305{bottom:739.240000pt;}
.ye_c00305{bottom:776.040000pt;}
.yc_c00305{bottom:812.837333pt;}
.ya_c00305{bottom:832.840000pt;}
.y8_c00305{bottom:870.360000pt;}
.y5_c00305{bottom:907.800000pt;}
.y4_c00305{bottom:976.439467pt;}
.y3_c00305{bottom:1013.319467pt;}
.y2_c00305{bottom:1060.599467pt;}
.h8_c00305{height:19.998667pt;}
.h6_c00305{height:20.000000pt;}
.h9_c00305{height:36.797333pt;}
.h5_c00305{height:36.798667pt;}
.h7_c00305{height:36.800000pt;}
.h2_c00305{height:44.800000pt;}
.h3_c00305{height:68.288000pt;}
.h4_c00305{height:69.376000pt;}
.h0_c00305{height:1122.520000pt;}
.h1_c00305{height:1122.666667pt;}
.w7_c00305{width:106.000000pt;}
.w4_c00305{width:109.760000pt;}
.w6_c00305{width:113.440000pt;}
.w5_c00305{width:120.080000pt;}
.w2_c00305{width:173.280000pt;}
.w3_c00305{width:339.520000pt;}
.w0_c00305{width:793.701333pt;}
.w1_c00305{width:794.000000pt;}
.x0_c00305{left:0.000000pt;}
.x3_c00305{left:4.720000pt;}
.x1_c00305{left:48.000000pt;}
.xd_c00305{left:69.120000pt;}
.xa_c00305{left:73.280000pt;}
.xb_c00305{left:77.120000pt;}
.xc_c00305{left:79.440000pt;}
.x9_c00305{left:80.720000pt;}
.x8_c00305{left:87.440000pt;}
.x2_c00305{left:113.440000pt;}
.x4_c00305{left:286.320000pt;}
.x6_c00305{left:406.400000pt;}
.x7_c00305{left:519.840000pt;}
.x5_c00305{left:625.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00306;src:url('chunks/assets/font_b8e248496ece5aef48393768.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00306;src:url('chunks/assets/font_a82aed1b4427984d92412415.woff2')format("woff");}.ff3_c00306{font-family:ff3_c00306;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00306;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00306{font-family:ff4_c00306;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00306;src:url('chunks/assets/font_c237ce7c5aab144afd988ce4.woff2')format("woff");}.ff5_c00306{font-family:ff5_c00306;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00306;src:url('chunks/assets/font_3a8351e420c2139e96935b60.woff2')format("woff");}.ff6_c00306{font-family:ff6_c00306;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00306;src:url('chunks/assets/font_86f4b42793dfa52763e3baea.woff2')format("woff");}.ff7_c00306{font-family:ff7_c00306;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00306{letter-spacing:-0.288000px;}
.ls10_c00306{letter-spacing:-0.197640px;}
.lsd_c00306{letter-spacing:-0.144000px;}
.ls11_c00306{letter-spacing:-0.120240px;}
.lsc_c00306{letter-spacing:-0.072000px;}
.lsf_c00306{letter-spacing:-0.065880px;}
.lsb_c00306{letter-spacing:0.000000px;}
.ls9_c00306{letter-spacing:0.065880px;}
.ls0_c00306{letter-spacing:0.072000px;}
.lsa_c00306{letter-spacing:0.120240px;}
.ls2_c00306{letter-spacing:0.144000px;}
.ls7_c00306{letter-spacing:0.197640px;}
.ls6_c00306{letter-spacing:16.199892px;}
.ls4_c00306{letter-spacing:16.595172px;}
.ls5_c00306{letter-spacing:16.601760px;}
.ls1_c00306{letter-spacing:18.000000px;}
.ls3_c00306{letter-spacing:26.280000px;}
.ls8_c00306{letter-spacing:36.365760px;}
.sc__c00306{text-shadow:none;}
.sc0_c00306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00306{-webkit-text-stroke:0px transparent;}
.sc0_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00306{word-spacing:-18.144000px;}
.ws4_c00306{word-spacing:-18.072000px;}
.ws0_c00306{word-spacing:-18.000000px;}
.ws2_c00306{word-spacing:-17.928000px;}
.ws1_c00306{word-spacing:-17.856000px;}
.ws9_c00306{word-spacing:-16.667640px;}
.ws7_c00306{word-spacing:-16.404120px;}
.wsa_c00306{word-spacing:-13.707360px;}
.wsb_c00306{word-spacing:-13.466880px;}
.ws25_c00306{word-spacing:-0.661320px;}
.ws26_c00306{word-spacing:-0.601200px;}
.ws8_c00306{word-spacing:-0.592920px;}
.ws6_c00306{word-spacing:-0.504000px;}
.ws20_c00306{word-spacing:-0.461160px;}
.ws1e_c00306{word-spacing:-0.197640px;}
.ws11_c00306{word-spacing:-0.144000px;}
.ws1f_c00306{word-spacing:-0.131760px;}
.wsd_c00306{word-spacing:-0.072000px;}
.wsc_c00306{word-spacing:0.000000px;}
.ws24_c00306{word-spacing:0.065880px;}
.ws1d_c00306{word-spacing:0.131760px;}
.wsf_c00306{word-spacing:0.144000px;}
.ws21_c00306{word-spacing:0.197640px;}
.wse_c00306{word-spacing:0.432000px;}
.ws10_c00306{word-spacing:0.504000px;}
.ws13_c00306{word-spacing:2.088000px;}
.ws15_c00306{word-spacing:2.448000px;}
.ws5_c00306{word-spacing:2.520000px;}
.ws14_c00306{word-spacing:3.096000px;}
.ws19_c00306{word-spacing:3.528000px;}
.ws18_c00306{word-spacing:3.600000px;}
.ws17_c00306{word-spacing:5.256000px;}
.ws16_c00306{word-spacing:5.400000px;}
.ws1b_c00306{word-spacing:7.992000px;}
.ws1a_c00306{word-spacing:8.208000px;}
.ws12_c00306{word-spacing:9.288000px;}
.ws1c_c00306{word-spacing:10.008000px;}
.ws22_c00306{word-spacing:19.698120px;}
.ws23_c00306{word-spacing:19.961640px;}
._0_c00306{margin-left:-1.224000px;}
._1_c00306{width:1.152000px;}
._3_c00306{width:14.400000px;}
._4_c00306{width:19.566360px;}
._2_c00306{width:68.400000px;}
.fc1_c00306{color:transparent;}
.fc0_c00306{color:rgb(35,31,32);}
.fs2_c00306{font-size:60.120000px;}
.fs1_c00306{font-size:65.880000px;}
.fs0_c00306{font-size:72.000000px;}
.y0_c00306{bottom:0.000000px;}
.y9_c00306{bottom:4.139250px;}
.y7_c00306{bottom:4.139400px;}
.yd_c00306{bottom:4.140750px;}
.y17_c00306{bottom:4.140900px;}
.y6_c00306{bottom:24.839250px;}
.yb_c00306{bottom:24.839400px;}
.y11_c00306{bottom:24.840750px;}
.y16_c00306{bottom:24.840900px;}
.y1_c00306{bottom:61.748550px;}
.y45_c00306{bottom:118.421400px;}
.y24_c00306{bottom:124.153500px;}
.y2b_c00306{bottom:124.155000px;}
.y3e_c00306{bottom:137.284080px;}
.y23_c00306{bottom:147.465000px;}
.y3d_c00306{bottom:165.727770px;}
.y3c_c00306{bottom:194.253810px;}
.y22_c00306{bottom:212.085000px;}
.y3b_c00306{bottom:222.697500px;}
.y3a_c00306{bottom:251.141190px;}
.y21_c00306{bottom:253.483500px;}
.y2a_c00306{bottom:253.485000px;}
.y20_c00306{bottom:275.985000px;}
.y39_c00306{bottom:279.584880px;}
.y1f_c00306{bottom:299.205000px;}
.y38_c00306{bottom:339.074520px;}
.y1e_c00306{bottom:364.635000px;}
.y37_c00306{bottom:367.600560px;}
.y36_c00306{bottom:396.044250px;}
.y1d_c00306{bottom:406.033500px;}
.y29_c00306{bottom:406.035000px;}
.y1c_c00306{bottom:447.435000px;}
.y35_c00306{bottom:456.974400px;}
.y34_c00306{bottom:488.024400px;}
.y1b_c00306{bottom:488.835000px;}
.y1a_c00306{bottom:512.055000px;}
.y33_c00306{bottom:519.074400px;}
.y19_c00306{bottom:554.175000px;}
.y32_c00306{bottom:581.174400px;}
.y18_c00306{bottom:596.383500px;}
.y28_c00306{bottom:596.385000px;}
.y44_c00306{bottom:603.672000px;}
.y15_c00306{bottom:638.503500px;}
.y27_c00306{bottom:638.505000px;}
.y40_c00306{bottom:663.681960px;}
.y14_c00306{bottom:679.905000px;}
.y13_c00306{bottom:702.405000px;}
.y12_c00306{bottom:725.625000px;}
.y43_c00306{bottom:749.217750px;}
.y42_c00306{bottom:776.342250px;}
.y10_c00306{bottom:790.243500px;}
.y26_c00306{bottom:790.245000px;}
.y41_c00306{bottom:811.066140px;}
.y3f_c00306{bottom:822.669300px;}
.yf_c00306{bottom:831.645000px;}
.ye_c00306{bottom:873.045000px;}
.yc_c00306{bottom:914.443500px;}
.y25_c00306{bottom:914.445000px;}
.y31_c00306{bottom:922.634400px;}
.ya_c00306{bottom:936.945000px;}
.y30_c00306{bottom:953.684400px;}
.y8_c00306{bottom:979.155000px;}
.y2f_c00306{bottom:984.734400px;}
.y2e_c00306{bottom:1015.784400px;}
.y5_c00306{bottom:1021.275000px;}
.y2d_c00306{bottom:1046.834400px;}
.y4_c00306{bottom:1098.494400px;}
.y2c_c00306{bottom:1108.934400px;}
.y3_c00306{bottom:1139.984400px;}
.y2_c00306{bottom:1193.174400px;}
.h8_c00306{height:22.498500px;}
.h6_c00306{height:22.500000px;}
.h5_c00306{height:41.398500px;}
.h7_c00306{height:41.400000px;}
.ha_c00306{height:49.581387px;}
.h2_c00306{height:50.400000px;}
.h9_c00306{height:71.413920px;}
.h3_c00306{height:76.824000px;}
.h4_c00306{height:78.048000px;}
.hb_c00306{height:132.751500px;}
.h0_c00306{height:1262.835000px;}
.h1_c00306{height:1263.000000px;}
.w3_c00306{width:-570.804000px;}
.w6_c00306{width:-435.714000px;}
.w7_c00306{width:-308.094000px;}
.w4_c00306{width:-188.844000px;}
.w5_c00306{width:-65.364000px;}
.w2_c00306{width:0.000000px;}
.w8_c00306{width:0.066000px;}
.w9_c00306{width:93.240000px;}
.w0_c00306{width:892.914000px;}
.w1_c00306{width:893.250000px;}
.x1_c00306{left:-838.913400px;}
.x2_c00306{left:-765.293400px;}
.x3_c00306{left:-760.433400px;}
.x4_c00306{left:-565.493400px;}
.xc_c00306{left:-481.433400px;}
.x8_c00306{left:-472.433400px;}
.x6_c00306{left:-430.493400px;}
.x9_c00306{left:-344.903400px;}
.x7_c00306{left:-302.873400px;}
.xa_c00306{left:-225.653400px;}
.x5_c00306{left:-183.623400px;}
.xd_c00306{left:-111.083550px;}
.xb_c00306{left:-102.083550px;}
.xe_c00306{left:-97.583550px;}
.x0_c00306{left:0.000000px;}
.x1a_c00306{left:9.135000px;}
.x11_c00306{left:127.620000px;}
.x14_c00306{left:148.950000px;}
.x13_c00306{left:154.620000px;}
.x12_c00306{left:159.570000px;}
.x17_c00306{left:174.960360px;}
.x16_c00306{left:362.384460px;}
.x15_c00306{left:416.462400px;}
.x19_c00306{left:511.830000px;}
.x18_c00306{left:520.965000px;}
.x10_c00306{left:679.950000px;}
.xf_c00306{left:804.366150px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.lse_c00306{letter-spacing:-0.256000pt;}
.ls10_c00306{letter-spacing:-0.175680pt;}
.lsd_c00306{letter-spacing:-0.128000pt;}
.ls11_c00306{letter-spacing:-0.106880pt;}
.lsc_c00306{letter-spacing:-0.064000pt;}
.lsf_c00306{letter-spacing:-0.058560pt;}
.lsb_c00306{letter-spacing:0.000000pt;}
.ls9_c00306{letter-spacing:0.058560pt;}
.ls0_c00306{letter-spacing:0.064000pt;}
.lsa_c00306{letter-spacing:0.106880pt;}
.ls2_c00306{letter-spacing:0.128000pt;}
.ls7_c00306{letter-spacing:0.175680pt;}
.ls6_c00306{letter-spacing:14.399904pt;}
.ls4_c00306{letter-spacing:14.751264pt;}
.ls5_c00306{letter-spacing:14.757120pt;}
.ls1_c00306{letter-spacing:16.000000pt;}
.ls3_c00306{letter-spacing:23.360000pt;}
.ls8_c00306{letter-spacing:32.325120pt;}
.ws3_c00306{word-spacing:-16.128000pt;}
.ws4_c00306{word-spacing:-16.064000pt;}
.ws0_c00306{word-spacing:-16.000000pt;}
.ws2_c00306{word-spacing:-15.936000pt;}
.ws1_c00306{word-spacing:-15.872000pt;}
.ws9_c00306{word-spacing:-14.815680pt;}
.ws7_c00306{word-spacing:-14.581440pt;}
.wsa_c00306{word-spacing:-12.184320pt;}
.wsb_c00306{word-spacing:-11.970560pt;}
.ws25_c00306{word-spacing:-0.587840pt;}
.ws26_c00306{word-spacing:-0.534400pt;}
.ws8_c00306{word-spacing:-0.527040pt;}
.ws6_c00306{word-spacing:-0.448000pt;}
.ws20_c00306{word-spacing:-0.409920pt;}
.ws1e_c00306{word-spacing:-0.175680pt;}
.ws11_c00306{word-spacing:-0.128000pt;}
.ws1f_c00306{word-spacing:-0.117120pt;}
.wsd_c00306{word-spacing:-0.064000pt;}
.wsc_c00306{word-spacing:0.000000pt;}
.ws24_c00306{word-spacing:0.058560pt;}
.ws1d_c00306{word-spacing:0.117120pt;}
.wsf_c00306{word-spacing:0.128000pt;}
.ws21_c00306{word-spacing:0.175680pt;}
.wse_c00306{word-spacing:0.384000pt;}
.ws10_c00306{word-spacing:0.448000pt;}
.ws13_c00306{word-spacing:1.856000pt;}
.ws15_c00306{word-spacing:2.176000pt;}
.ws5_c00306{word-spacing:2.240000pt;}
.ws14_c00306{word-spacing:2.752000pt;}
.ws19_c00306{word-spacing:3.136000pt;}
.ws18_c00306{word-spacing:3.200000pt;}
.ws17_c00306{word-spacing:4.672000pt;}
.ws16_c00306{word-spacing:4.800000pt;}
.ws1b_c00306{word-spacing:7.104000pt;}
.ws1a_c00306{word-spacing:7.296000pt;}
.ws12_c00306{word-spacing:8.256000pt;}
.ws1c_c00306{word-spacing:8.896000pt;}
.ws22_c00306{word-spacing:17.509440pt;}
.ws23_c00306{word-spacing:17.743680pt;}
._0_c00306{margin-left:-1.088000pt;}
._1_c00306{width:1.024000pt;}
._3_c00306{width:12.800000pt;}
._4_c00306{width:17.392320pt;}
._2_c00306{width:60.800000pt;}
.fs2_c00306{font-size:53.440000pt;}
.fs1_c00306{font-size:58.560000pt;}
.fs0_c00306{font-size:64.000000pt;}
.y0_c00306{bottom:0.000000pt;}
.y9_c00306{bottom:3.679333pt;}
.y7_c00306{bottom:3.679467pt;}
.yd_c00306{bottom:3.680667pt;}
.y17_c00306{bottom:3.680800pt;}
.y6_c00306{bottom:22.079333pt;}
.yb_c00306{bottom:22.079467pt;}
.y11_c00306{bottom:22.080667pt;}
.y16_c00306{bottom:22.080800pt;}
.y1_c00306{bottom:54.887600pt;}
.y45_c00306{bottom:105.263467pt;}
.y24_c00306{bottom:110.358667pt;}
.y2b_c00306{bottom:110.360000pt;}
.y3e_c00306{bottom:122.030293pt;}
.y23_c00306{bottom:131.080000pt;}
.y3d_c00306{bottom:147.313573pt;}
.y3c_c00306{bottom:172.670053pt;}
.y22_c00306{bottom:188.520000pt;}
.y3b_c00306{bottom:197.953333pt;}
.y3a_c00306{bottom:223.236613pt;}
.y21_c00306{bottom:225.318667pt;}
.y2a_c00306{bottom:225.320000pt;}
.y20_c00306{bottom:245.320000pt;}
.y39_c00306{bottom:248.519893pt;}
.y1f_c00306{bottom:265.960000pt;}
.y38_c00306{bottom:301.399573pt;}
.y1e_c00306{bottom:324.120000pt;}
.y37_c00306{bottom:326.756053pt;}
.y36_c00306{bottom:352.039333pt;}
.y1d_c00306{bottom:360.918667pt;}
.y29_c00306{bottom:360.920000pt;}
.y1c_c00306{bottom:397.720000pt;}
.y35_c00306{bottom:406.199467pt;}
.y34_c00306{bottom:433.799467pt;}
.y1b_c00306{bottom:434.520000pt;}
.y1a_c00306{bottom:455.160000pt;}
.y33_c00306{bottom:461.399467pt;}
.y19_c00306{bottom:492.600000pt;}
.y32_c00306{bottom:516.599467pt;}
.y18_c00306{bottom:530.118667pt;}
.y28_c00306{bottom:530.120000pt;}
.y44_c00306{bottom:536.597333pt;}
.y15_c00306{bottom:567.558667pt;}
.y27_c00306{bottom:567.560000pt;}
.y40_c00306{bottom:589.939520pt;}
.y14_c00306{bottom:604.360000pt;}
.y13_c00306{bottom:624.360000pt;}
.y12_c00306{bottom:645.000000pt;}
.y43_c00306{bottom:665.971333pt;}
.y42_c00306{bottom:690.082000pt;}
.y10_c00306{bottom:702.438667pt;}
.y26_c00306{bottom:702.440000pt;}
.y41_c00306{bottom:720.947680pt;}
.y3f_c00306{bottom:731.261600pt;}
.yf_c00306{bottom:739.240000pt;}
.ye_c00306{bottom:776.040000pt;}
.yc_c00306{bottom:812.838667pt;}
.y25_c00306{bottom:812.840000pt;}
.y31_c00306{bottom:820.119467pt;}
.ya_c00306{bottom:832.840000pt;}
.y30_c00306{bottom:847.719467pt;}
.y8_c00306{bottom:870.360000pt;}
.y2f_c00306{bottom:875.319467pt;}
.y2e_c00306{bottom:902.919467pt;}
.y5_c00306{bottom:907.800000pt;}
.y2d_c00306{bottom:930.519467pt;}
.y4_c00306{bottom:976.439467pt;}
.y2c_c00306{bottom:985.719467pt;}
.y3_c00306{bottom:1013.319467pt;}
.y2_c00306{bottom:1060.599467pt;}
.h8_c00306{height:19.998667pt;}
.h6_c00306{height:20.000000pt;}
.h5_c00306{height:36.798667pt;}
.h7_c00306{height:36.800000pt;}
.ha_c00306{height:44.072344pt;}
.h2_c00306{height:44.800000pt;}
.h9_c00306{height:63.479040pt;}
.h3_c00306{height:68.288000pt;}
.h4_c00306{height:69.376000pt;}
.hb_c00306{height:118.001333pt;}
.h0_c00306{height:1122.520000pt;}
.h1_c00306{height:1122.666667pt;}
.w3_c00306{width:-507.381333pt;}
.w6_c00306{width:-387.301333pt;}
.w7_c00306{width:-273.861333pt;}
.w4_c00306{width:-167.861333pt;}
.w5_c00306{width:-58.101333pt;}
.w2_c00306{width:0.000000pt;}
.w8_c00306{width:0.058667pt;}
.w9_c00306{width:82.880000pt;}
.w0_c00306{width:793.701333pt;}
.w1_c00306{width:794.000000pt;}
.x1_c00306{left:-745.700800pt;}
.x2_c00306{left:-680.260800pt;}
.x3_c00306{left:-675.940800pt;}
.x4_c00306{left:-502.660800pt;}
.xc_c00306{left:-427.940800pt;}
.x8_c00306{left:-419.940800pt;}
.x6_c00306{left:-382.660800pt;}
.x9_c00306{left:-306.580800pt;}
.x7_c00306{left:-269.220800pt;}
.xa_c00306{left:-200.580800pt;}
.x5_c00306{left:-163.220800pt;}
.xd_c00306{left:-98.740933pt;}
.xb_c00306{left:-90.740933pt;}
.xe_c00306{left:-86.740933pt;}
.x0_c00306{left:0.000000pt;}
.x1a_c00306{left:8.120000pt;}
.x11_c00306{left:113.440000pt;}
.x14_c00306{left:132.400000pt;}
.x13_c00306{left:137.440000pt;}
.x12_c00306{left:141.840000pt;}
.x17_c00306{left:155.520320pt;}
.x16_c00306{left:322.119520pt;}
.x15_c00306{left:370.188800pt;}
.x19_c00306{left:454.960000pt;}
.x18_c00306{left:463.080000pt;}
.x10_c00306{left:604.400000pt;}
.xf_c00306{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00307;src:url('chunks/assets/font_f4a3a5f21b316465441de3f3.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00307;src:url('chunks/assets/font_9c50b92a4497657e6ada9a59.woff2')format("woff");}.ff3_c00307{font-family:ff3_c00307;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00307;src:url('chunks/assets/font_3def105cfc84d8ddc79d72b7.woff2')format("woff");}.ff4_c00307{font-family:ff4_c00307;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00307{letter-spacing:-0.144000px;}
.lsb_c00307{letter-spacing:-0.120240px;}
.ls8_c00307{letter-spacing:-0.065880px;}
.lsa_c00307{letter-spacing:-0.060120px;}
.ls7_c00307{letter-spacing:0.000000px;}
.ls2_c00307{letter-spacing:0.065880px;}
.ls0_c00307{letter-spacing:0.072000px;}
.ls6_c00307{letter-spacing:0.120240px;}
.ls3_c00307{letter-spacing:0.197640px;}
.ls4_c00307{letter-spacing:16.206480px;}
.ls1_c00307{letter-spacing:16.601760px;}
.ls5_c00307{letter-spacing:43.560000px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00307{word-spacing:-18.000000px;}
.ws8_c00307{word-spacing:-17.856000px;}
.ws4_c00307{word-spacing:-16.667640px;}
.ws1_c00307{word-spacing:-16.404120px;}
.ws9_c00307{word-spacing:-13.707360px;}
.wsa_c00307{word-spacing:-13.527000px;}
.ws21_c00307{word-spacing:-0.541080px;}
.ws7_c00307{word-spacing:-0.504000px;}
.ws16_c00307{word-spacing:-0.461160px;}
.ws13_c00307{word-spacing:-0.329400px;}
.ws2_c00307{word-spacing:-0.270108px;}
.ws5_c00307{word-spacing:-0.263520px;}
.ws14_c00307{word-spacing:-0.131760px;}
.wsf_c00307{word-spacing:-0.072000px;}
.ws15_c00307{word-spacing:-0.065880px;}
.wsb_c00307{word-spacing:0.000000px;}
.ws3_c00307{word-spacing:0.059292px;}
.ws11_c00307{word-spacing:0.065880px;}
.ws6_c00307{word-spacing:0.072468px;}
.ws10_c00307{word-spacing:0.131760px;}
.ws12_c00307{word-spacing:0.527040px;}
.ws17_c00307{word-spacing:3.168000px;}
.ws1c_c00307{word-spacing:4.176000px;}
.ws1b_c00307{word-spacing:4.248000px;}
.ws1a_c00307{word-spacing:4.320000px;}
.wsd_c00307{word-spacing:7.056000px;}
.wsc_c00307{word-spacing:7.200000px;}
.ws1e_c00307{word-spacing:11.160000px;}
.wse_c00307{word-spacing:15.048000px;}
.ws1d_c00307{word-spacing:15.840000px;}
.ws20_c00307{word-spacing:24.408000px;}
.ws1f_c00307{word-spacing:24.480000px;}
.ws18_c00307{word-spacing:25.848000px;}
.ws19_c00307{word-spacing:25.920000px;}
._1_c00307{margin-left:-1.231200px;}
._0_c00307{width:1.080000px;}
.fc0_c00307{color:rgb(35,31,32);}
.fs2_c00307{font-size:60.120000px;}
.fs1_c00307{font-size:65.880000px;}
.fs0_c00307{font-size:72.000000px;}
.y0_c00307{bottom:0.000000px;}
.y1_c00307{bottom:61.748550px;}
.y15_c00307{bottom:133.514250px;}
.y14_c00307{bottom:164.564250px;}
.y13_c00307{bottom:195.614250px;}
.y12_c00307{bottom:226.664250px;}
.y11_c00307{bottom:257.714250px;}
.y10_c00307{bottom:319.814250px;}
.y16_c00307{bottom:472.488300px;}
.y19_c00307{bottom:489.768000px;}
.y18_c00307{bottom:516.892200px;}
.y17_c00307{bottom:559.692360px;}
.yf_c00307{bottom:692.414250px;}
.ye_c00307{bottom:723.464250px;}
.yd_c00307{bottom:754.514250px;}
.yc_c00307{bottom:785.564250px;}
.yb_c00307{bottom:846.209760px;}
.ya_c00307{bottom:874.653450px;}
.y9_c00307{bottom:903.097140px;}
.y8_c00307{bottom:960.066870px;}
.y7_c00307{bottom:988.510560px;}
.y6_c00307{bottom:1016.954250px;}
.y5_c00307{bottom:1077.884400px;}
.y4_c00307{bottom:1108.934400px;}
.y3_c00307{bottom:1139.984400px;}
.y2_c00307{bottom:1193.174400px;}
.h6_c00307{height:49.581387px;}
.h2_c00307{height:50.400000px;}
.h4_c00307{height:71.413920px;}
.h3_c00307{height:76.824000px;}
.h5_c00307{height:78.048000px;}
.h0_c00307{height:1262.835000px;}
.h1_c00307{height:1263.000000px;}
.w0_c00307{width:892.914000px;}
.w1_c00307{width:893.250000px;}
.x0_c00307{left:0.000000px;}
.x1_c00307{left:54.000000px;}
.x2_c00307{left:127.620000px;}
.x4_c00307{left:148.950000px;}
.x6_c00307{left:150.193350px;}
.x3_c00307{left:159.570000px;}
.x5_c00307{left:466.875450px;}
.x7_c00307{left:528.607650px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls9_c00307{letter-spacing:-0.128000pt;}
.lsb_c00307{letter-spacing:-0.106880pt;}
.ls8_c00307{letter-spacing:-0.058560pt;}
.lsa_c00307{letter-spacing:-0.053440pt;}
.ls7_c00307{letter-spacing:0.000000pt;}
.ls2_c00307{letter-spacing:0.058560pt;}
.ls0_c00307{letter-spacing:0.064000pt;}
.ls6_c00307{letter-spacing:0.106880pt;}
.ls3_c00307{letter-spacing:0.175680pt;}
.ls4_c00307{letter-spacing:14.405760pt;}
.ls1_c00307{letter-spacing:14.757120pt;}
.ls5_c00307{letter-spacing:38.720000pt;}
.ws0_c00307{word-spacing:-16.000000pt;}
.ws8_c00307{word-spacing:-15.872000pt;}
.ws4_c00307{word-spacing:-14.815680pt;}
.ws1_c00307{word-spacing:-14.581440pt;}
.ws9_c00307{word-spacing:-12.184320pt;}
.wsa_c00307{word-spacing:-12.024000pt;}
.ws21_c00307{word-spacing:-0.480960pt;}
.ws7_c00307{word-spacing:-0.448000pt;}
.ws16_c00307{word-spacing:-0.409920pt;}
.ws13_c00307{word-spacing:-0.292800pt;}
.ws2_c00307{word-spacing:-0.240096pt;}
.ws5_c00307{word-spacing:-0.234240pt;}
.ws14_c00307{word-spacing:-0.117120pt;}
.wsf_c00307{word-spacing:-0.064000pt;}
.ws15_c00307{word-spacing:-0.058560pt;}
.wsb_c00307{word-spacing:0.000000pt;}
.ws3_c00307{word-spacing:0.052704pt;}
.ws11_c00307{word-spacing:0.058560pt;}
.ws6_c00307{word-spacing:0.064416pt;}
.ws10_c00307{word-spacing:0.117120pt;}
.ws12_c00307{word-spacing:0.468480pt;}
.ws17_c00307{word-spacing:2.816000pt;}
.ws1c_c00307{word-spacing:3.712000pt;}
.ws1b_c00307{word-spacing:3.776000pt;}
.ws1a_c00307{word-spacing:3.840000pt;}
.wsd_c00307{word-spacing:6.272000pt;}
.wsc_c00307{word-spacing:6.400000pt;}
.ws1e_c00307{word-spacing:9.920000pt;}
.wse_c00307{word-spacing:13.376000pt;}
.ws1d_c00307{word-spacing:14.080000pt;}
.ws20_c00307{word-spacing:21.696000pt;}
.ws1f_c00307{word-spacing:21.760000pt;}
.ws18_c00307{word-spacing:22.976000pt;}
.ws19_c00307{word-spacing:23.040000pt;}
._1_c00307{margin-left:-1.094400pt;}
._0_c00307{width:0.960000pt;}
.fs2_c00307{font-size:53.440000pt;}
.fs1_c00307{font-size:58.560000pt;}
.fs0_c00307{font-size:64.000000pt;}
.y0_c00307{bottom:0.000000pt;}
.y1_c00307{bottom:54.887600pt;}
.y15_c00307{bottom:118.679333pt;}
.y14_c00307{bottom:146.279333pt;}
.y13_c00307{bottom:173.879333pt;}
.y12_c00307{bottom:201.479333pt;}
.y11_c00307{bottom:229.079333pt;}
.y10_c00307{bottom:284.279333pt;}
.y16_c00307{bottom:419.989600pt;}
.y19_c00307{bottom:435.349333pt;}
.y18_c00307{bottom:459.459733pt;}
.y17_c00307{bottom:497.504320pt;}
.yf_c00307{bottom:615.479333pt;}
.ye_c00307{bottom:643.079333pt;}
.yd_c00307{bottom:670.679333pt;}
.yc_c00307{bottom:698.279333pt;}
.yb_c00307{bottom:752.186453pt;}
.ya_c00307{bottom:777.469733pt;}
.y9_c00307{bottom:802.753013pt;}
.y8_c00307{bottom:853.392773pt;}
.y7_c00307{bottom:878.676053pt;}
.y6_c00307{bottom:903.959333pt;}
.y5_c00307{bottom:958.119467pt;}
.y4_c00307{bottom:985.719467pt;}
.y3_c00307{bottom:1013.319467pt;}
.y2_c00307{bottom:1060.599467pt;}
.h6_c00307{height:44.072344pt;}
.h2_c00307{height:44.800000pt;}
.h4_c00307{height:63.479040pt;}
.h3_c00307{height:68.288000pt;}
.h5_c00307{height:69.376000pt;}
.h0_c00307{height:1122.520000pt;}
.h1_c00307{height:1122.666667pt;}
.w0_c00307{width:793.701333pt;}
.w1_c00307{width:794.000000pt;}
.x0_c00307{left:0.000000pt;}
.x1_c00307{left:48.000000pt;}
.x2_c00307{left:113.440000pt;}
.x4_c00307{left:132.400000pt;}
.x6_c00307{left:133.505200pt;}
.x3_c00307{left:141.840000pt;}
.x5_c00307{left:415.000400pt;}
.x7_c00307{left:469.873467pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00308;src:url('chunks/assets/font_2cc76d1137e457a9b39d84ea.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00308;src:url('chunks/assets/font_e0abc1aa837b408fd6cc9aa6.woff2')format("woff");}.ff3_c00308{font-family:ff3_c00308;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00308;src:url('chunks/assets/font_36755a8d6e24a7ceaeda8826.woff2')format("woff");}.ff4_c00308{font-family:ff4_c00308;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00308;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00308{font-family:ff5_c00308;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00308;src:url('chunks/assets/font_104ccfa2404cd01fbf7caccf.woff2')format("woff");}.ff6_c00308{font-family:ff6_c00308;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00308;src:url('chunks/assets/font_063d2d17fc08085bc5f2b433.woff2')format("woff");}.ff7_c00308{font-family:ff7_c00308;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00308;src:url('chunks/assets/font_02b11ed718487294758a8a37.woff2')format("woff");}.ff8_c00308{font-family:ff8_c00308;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsd_c00308{letter-spacing:-0.329400px;}
.lsa_c00308{letter-spacing:-0.144000px;}
.lsc_c00308{letter-spacing:-0.120240px;}
.ls9_c00308{letter-spacing:-0.065880px;}
.lsb_c00308{letter-spacing:-0.060120px;}
.ls8_c00308{letter-spacing:0.000000px;}
.ls2_c00308{letter-spacing:0.065880px;}
.ls0_c00308{letter-spacing:0.072000px;}
.ls6_c00308{letter-spacing:0.120240px;}
.ls7_c00308{letter-spacing:0.144000px;}
.ls3_c00308{letter-spacing:0.197640px;}
.ls4_c00308{letter-spacing:16.206480px;}
.ls1_c00308{letter-spacing:16.601760px;}
.ls5_c00308{letter-spacing:43.560000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00308{word-spacing:-18.000000px;}
.ws8_c00308{word-spacing:-17.856000px;}
.ws4_c00308{word-spacing:-16.667640px;}
.ws1_c00308{word-spacing:-16.404120px;}
.wsc_c00308{word-spacing:-16.140600px;}
.ws9_c00308{word-spacing:-13.707360px;}
.wsa_c00308{word-spacing:-13.527000px;}
.ws32_c00308{word-spacing:-1.803600px;}
.ws25_c00308{word-spacing:-0.541080px;}
.ws7_c00308{word-spacing:-0.504000px;}
.ws1a_c00308{word-spacing:-0.461160px;}
.ws17_c00308{word-spacing:-0.329400px;}
.wsf_c00308{word-spacing:-0.288000px;}
.ws2_c00308{word-spacing:-0.270108px;}
.ws5_c00308{word-spacing:-0.263520px;}
.ws18_c00308{word-spacing:-0.131760px;}
.ws14_c00308{word-spacing:-0.072000px;}
.ws19_c00308{word-spacing:-0.065880px;}
.ws10_c00308{word-spacing:0.000000px;}
.ws3_c00308{word-spacing:0.059292px;}
.ws15_c00308{word-spacing:0.065880px;}
.ws6_c00308{word-spacing:0.072468px;}
.wse_c00308{word-spacing:0.131760px;}
.ws16_c00308{word-spacing:0.527040px;}
.ws2e_c00308{word-spacing:1.080000px;}
.ws1b_c00308{word-spacing:3.168000px;}
.ws30_c00308{word-spacing:3.528000px;}
.ws2d_c00308{word-spacing:3.888000px;}
.ws20_c00308{word-spacing:4.176000px;}
.ws1f_c00308{word-spacing:4.248000px;}
.ws1e_c00308{word-spacing:4.320000px;}
.ws27_c00308{word-spacing:4.968000px;}
.ws28_c00308{word-spacing:5.976000px;}
.ws26_c00308{word-spacing:5.995080px;}
.ws2a_c00308{word-spacing:6.048000px;}
.ws29_c00308{word-spacing:6.120000px;}
.wsb_c00308{word-spacing:6.252012px;}
.ws2f_c00308{word-spacing:6.480000px;}
.ws12_c00308{word-spacing:7.056000px;}
.ws11_c00308{word-spacing:7.200000px;}
.ws22_c00308{word-spacing:11.160000px;}
.ws31_c00308{word-spacing:12.960000px;}
.ws13_c00308{word-spacing:15.048000px;}
.ws21_c00308{word-spacing:15.840000px;}
.ws2b_c00308{word-spacing:16.931160px;}
.wsd_c00308{word-spacing:17.056332px;}
.ws2c_c00308{word-spacing:17.062920px;}
.ws24_c00308{word-spacing:24.408000px;}
.ws23_c00308{word-spacing:24.480000px;}
.ws1c_c00308{word-spacing:25.848000px;}
.ws1d_c00308{word-spacing:25.920000px;}
._1_c00308{margin-left:-1.231200px;}
._0_c00308{width:1.080000px;}
.fc1_c00308{color:transparent;}
.fc0_c00308{color:rgb(35,31,32);}
.fs2_c00308{font-size:60.120000px;}
.fs1_c00308{font-size:65.880000px;}
.fs0_c00308{font-size:72.000000px;}
.y0_c00308{bottom:0.000000px;}
.y1_c00308{bottom:61.748550px;}
.y15_c00308{bottom:133.514250px;}
.y30_c00308{bottom:141.344250px;}
.y14_c00308{bottom:164.564250px;}
.y2f_c00308{bottom:172.394250px;}
.y13_c00308{bottom:195.614250px;}
.y2e_c00308{bottom:203.444250px;}
.y12_c00308{bottom:226.664250px;}
.y11_c00308{bottom:257.714250px;}
.y2d_c00308{bottom:265.454250px;}
.y10_c00308{bottom:319.814250px;}
.y34_c00308{bottom:401.155350px;}
.y31_c00308{bottom:412.297950px;}
.y33_c00308{bottom:428.279550px;}
.y32_c00308{bottom:443.545320px;}
.y16_c00308{bottom:472.488300px;}
.y19_c00308{bottom:489.757770px;}
.y18_c00308{bottom:516.886920px;}
.y17_c00308{bottom:559.692360px;}
.y2c_c00308{bottom:575.954250px;}
.y2b_c00308{bottom:607.004250px;}
.y2a_c00308{bottom:638.054250px;}
.y29_c00308{bottom:669.104250px;}
.yf_c00308{bottom:692.414250px;}
.ye_c00308{bottom:723.464250px;}
.y28_c00308{bottom:729.760980px;}
.yd_c00308{bottom:754.514250px;}
.y27_c00308{bottom:758.287020px;}
.yc_c00308{bottom:785.564250px;}
.y26_c00308{bottom:786.730710px;}
.y25_c00308{bottom:815.174400px;}
.yb_c00308{bottom:846.209760px;}
.ya_c00308{bottom:874.653450px;}
.y24_c00308{bottom:876.104250px;}
.y9_c00308{bottom:903.097140px;}
.y23_c00308{bottom:907.154250px;}
.y22_c00308{bottom:938.204250px;}
.y8_c00308{bottom:960.066870px;}
.y7_c00308{bottom:988.510560px;}
.y21_c00308{bottom:998.853450px;}
.y6_c00308{bottom:1016.954250px;}
.y20_c00308{bottom:1027.297140px;}
.y1f_c00308{bottom:1055.740830px;}
.y5_c00308{bottom:1077.884400px;}
.y1e_c00308{bottom:1084.266870px;}
.y4_c00308{bottom:1108.934400px;}
.y1d_c00308{bottom:1112.710560px;}
.y1b_c00308{bottom:1139.984400px;}
.y3_c00308{bottom:1139.984550px;}
.y1c_c00308{bottom:1141.154250px;}
.y1a_c00308{bottom:1193.174400px;}
.y2_c00308{bottom:1193.174550px;}
.h6_c00308{height:49.581387px;}
.h2_c00308{height:50.400000px;}
.h4_c00308{height:71.413920px;}
.h3_c00308{height:76.824000px;}
.h5_c00308{height:78.048000px;}
.h0_c00308{height:1262.835000px;}
.h1_c00308{height:1263.000000px;}
.w2_c00308{width:0.000000px;}
.w3_c00308{width:0.066000px;}
.w0_c00308{width:892.914000px;}
.w1_c00308{width:893.250000px;}
.x1_c00308{left:-838.913400px;}
.x2_c00308{left:-765.293400px;}
.x4_c00308{left:-743.963400px;}
.x6_c00308{left:-742.720050px;}
.x3_c00308{left:-733.343400px;}
.x5_c00308{left:-426.037950px;}
.x7_c00308{left:-364.309740px;}
.x0_c00308{left:0.000000px;}
.xc_c00308{left:127.620000px;}
.xa_c00308{left:148.950000px;}
.xb_c00308{left:159.570000px;}
.xf_c00308{left:166.122540px;}
.xd_c00308{left:172.620000px;}
.xe_c00308{left:474.718500px;}
.x10_c00308{left:529.264500px;}
.x9_c00308{left:679.950000px;}
.x8_c00308{left:804.366150px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.lsd_c00308{letter-spacing:-0.292800pt;}
.lsa_c00308{letter-spacing:-0.128000pt;}
.lsc_c00308{letter-spacing:-0.106880pt;}
.ls9_c00308{letter-spacing:-0.058560pt;}
.lsb_c00308{letter-spacing:-0.053440pt;}
.ls8_c00308{letter-spacing:0.000000pt;}
.ls2_c00308{letter-spacing:0.058560pt;}
.ls0_c00308{letter-spacing:0.064000pt;}
.ls6_c00308{letter-spacing:0.106880pt;}
.ls7_c00308{letter-spacing:0.128000pt;}
.ls3_c00308{letter-spacing:0.175680pt;}
.ls4_c00308{letter-spacing:14.405760pt;}
.ls1_c00308{letter-spacing:14.757120pt;}
.ls5_c00308{letter-spacing:38.720000pt;}
.ws0_c00308{word-spacing:-16.000000pt;}
.ws8_c00308{word-spacing:-15.872000pt;}
.ws4_c00308{word-spacing:-14.815680pt;}
.ws1_c00308{word-spacing:-14.581440pt;}
.wsc_c00308{word-spacing:-14.347200pt;}
.ws9_c00308{word-spacing:-12.184320pt;}
.wsa_c00308{word-spacing:-12.024000pt;}
.ws32_c00308{word-spacing:-1.603200pt;}
.ws25_c00308{word-spacing:-0.480960pt;}
.ws7_c00308{word-spacing:-0.448000pt;}
.ws1a_c00308{word-spacing:-0.409920pt;}
.ws17_c00308{word-spacing:-0.292800pt;}
.wsf_c00308{word-spacing:-0.256000pt;}
.ws2_c00308{word-spacing:-0.240096pt;}
.ws5_c00308{word-spacing:-0.234240pt;}
.ws18_c00308{word-spacing:-0.117120pt;}
.ws14_c00308{word-spacing:-0.064000pt;}
.ws19_c00308{word-spacing:-0.058560pt;}
.ws10_c00308{word-spacing:0.000000pt;}
.ws3_c00308{word-spacing:0.052704pt;}
.ws15_c00308{word-spacing:0.058560pt;}
.ws6_c00308{word-spacing:0.064416pt;}
.wse_c00308{word-spacing:0.117120pt;}
.ws16_c00308{word-spacing:0.468480pt;}
.ws2e_c00308{word-spacing:0.960000pt;}
.ws1b_c00308{word-spacing:2.816000pt;}
.ws30_c00308{word-spacing:3.136000pt;}
.ws2d_c00308{word-spacing:3.456000pt;}
.ws20_c00308{word-spacing:3.712000pt;}
.ws1f_c00308{word-spacing:3.776000pt;}
.ws1e_c00308{word-spacing:3.840000pt;}
.ws27_c00308{word-spacing:4.416000pt;}
.ws28_c00308{word-spacing:5.312000pt;}
.ws26_c00308{word-spacing:5.328960pt;}
.ws2a_c00308{word-spacing:5.376000pt;}
.ws29_c00308{word-spacing:5.440000pt;}
.wsb_c00308{word-spacing:5.557344pt;}
.ws2f_c00308{word-spacing:5.760000pt;}
.ws12_c00308{word-spacing:6.272000pt;}
.ws11_c00308{word-spacing:6.400000pt;}
.ws22_c00308{word-spacing:9.920000pt;}
.ws31_c00308{word-spacing:11.520000pt;}
.ws13_c00308{word-spacing:13.376000pt;}
.ws21_c00308{word-spacing:14.080000pt;}
.ws2b_c00308{word-spacing:15.049920pt;}
.wsd_c00308{word-spacing:15.161184pt;}
.ws2c_c00308{word-spacing:15.167040pt;}
.ws24_c00308{word-spacing:21.696000pt;}
.ws23_c00308{word-spacing:21.760000pt;}
.ws1c_c00308{word-spacing:22.976000pt;}
.ws1d_c00308{word-spacing:23.040000pt;}
._1_c00308{margin-left:-1.094400pt;}
._0_c00308{width:0.960000pt;}
.fs2_c00308{font-size:53.440000pt;}
.fs1_c00308{font-size:58.560000pt;}
.fs0_c00308{font-size:64.000000pt;}
.y0_c00308{bottom:0.000000pt;}
.y1_c00308{bottom:54.887600pt;}
.y15_c00308{bottom:118.679333pt;}
.y30_c00308{bottom:125.639333pt;}
.y14_c00308{bottom:146.279333pt;}
.y2f_c00308{bottom:153.239333pt;}
.y13_c00308{bottom:173.879333pt;}
.y2e_c00308{bottom:180.839333pt;}
.y12_c00308{bottom:201.479333pt;}
.y11_c00308{bottom:229.079333pt;}
.y2d_c00308{bottom:235.959333pt;}
.y10_c00308{bottom:284.279333pt;}
.y34_c00308{bottom:356.582533pt;}
.y31_c00308{bottom:366.487067pt;}
.y33_c00308{bottom:380.692933pt;}
.y32_c00308{bottom:394.262507pt;}
.y16_c00308{bottom:419.989600pt;}
.y19_c00308{bottom:435.340240pt;}
.y18_c00308{bottom:459.455040pt;}
.y17_c00308{bottom:497.504320pt;}
.y2c_c00308{bottom:511.959333pt;}
.y2b_c00308{bottom:539.559333pt;}
.y2a_c00308{bottom:567.159333pt;}
.y29_c00308{bottom:594.759333pt;}
.yf_c00308{bottom:615.479333pt;}
.ye_c00308{bottom:643.079333pt;}
.y28_c00308{bottom:648.676427pt;}
.yd_c00308{bottom:670.679333pt;}
.y27_c00308{bottom:674.032907pt;}
.yc_c00308{bottom:698.279333pt;}
.y26_c00308{bottom:699.316187pt;}
.y25_c00308{bottom:724.599467pt;}
.yb_c00308{bottom:752.186453pt;}
.ya_c00308{bottom:777.469733pt;}
.y24_c00308{bottom:778.759333pt;}
.y9_c00308{bottom:802.753013pt;}
.y23_c00308{bottom:806.359333pt;}
.y22_c00308{bottom:833.959333pt;}
.y8_c00308{bottom:853.392773pt;}
.y7_c00308{bottom:878.676053pt;}
.y21_c00308{bottom:887.869733pt;}
.y6_c00308{bottom:903.959333pt;}
.y20_c00308{bottom:913.153013pt;}
.y1f_c00308{bottom:938.436293pt;}
.y5_c00308{bottom:958.119467pt;}
.y1e_c00308{bottom:963.792773pt;}
.y4_c00308{bottom:985.719467pt;}
.y1d_c00308{bottom:989.076053pt;}
.y1b_c00308{bottom:1013.319467pt;}
.y3_c00308{bottom:1013.319600pt;}
.y1c_c00308{bottom:1014.359333pt;}
.y1a_c00308{bottom:1060.599467pt;}
.y2_c00308{bottom:1060.599600pt;}
.h6_c00308{height:44.072344pt;}
.h2_c00308{height:44.800000pt;}
.h4_c00308{height:63.479040pt;}
.h3_c00308{height:68.288000pt;}
.h5_c00308{height:69.376000pt;}
.h0_c00308{height:1122.520000pt;}
.h1_c00308{height:1122.666667pt;}
.w2_c00308{width:0.000000pt;}
.w3_c00308{width:0.058667pt;}
.w0_c00308{width:793.701333pt;}
.w1_c00308{width:794.000000pt;}
.x1_c00308{left:-745.700800pt;}
.x2_c00308{left:-680.260800pt;}
.x4_c00308{left:-661.300800pt;}
.x6_c00308{left:-660.195600pt;}
.x3_c00308{left:-651.860800pt;}
.x5_c00308{left:-378.700400pt;}
.x7_c00308{left:-323.830880pt;}
.x0_c00308{left:0.000000pt;}
.xc_c00308{left:113.440000pt;}
.xa_c00308{left:132.400000pt;}
.xb_c00308{left:141.840000pt;}
.xf_c00308{left:147.664480pt;}
.xd_c00308{left:153.440000pt;}
.xe_c00308{left:421.972000pt;}
.x10_c00308{left:470.457333pt;}
.x9_c00308{left:604.400000pt;}
.x8_c00308{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00309;src:url('chunks/assets/font_24fc5324bf467a6a973016aa.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00309;src:url('chunks/assets/font_d3d0f8b250b89c9df4525150.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00309;src:url('chunks/assets/font_65129a172e1c927c96fa3f4a.woff2')format("woff");}.ff4_c00309{font-family:ff4_c00309;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00309{vertical-align:-6.312600px;}
.v0_c00309{vertical-align:0.000000px;}
.v2_c00309{vertical-align:37.875600px;}
.ls7_c00309{letter-spacing:-0.360000px;}
.ls8_c00309{letter-spacing:-0.120240px;}
.ls6_c00309{letter-spacing:0.000000px;}
.ls0_c00309{letter-spacing:0.072000px;}
.ls2_c00309{letter-spacing:0.120240px;}
.ls1_c00309{letter-spacing:24.480000px;}
.ls4_c00309{letter-spacing:32.404680px;}
.ls5_c00309{letter-spacing:183.606480px;}
.ls3_c00309{letter-spacing:500.438880px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00309{word-spacing:-18.000000px;}
.ws1_c00309{word-spacing:-17.640000px;}
.ws4_c00309{word-spacing:-13.707360px;}
.ws5_c00309{word-spacing:-13.466880px;}
.ws16_c00309{word-spacing:-0.661320px;}
.ws17_c00309{word-spacing:-0.601200px;}
.wsf_c00309{word-spacing:-0.072000px;}
.ws6_c00309{word-spacing:0.000000px;}
.ws15_c00309{word-spacing:0.144000px;}
.ws14_c00309{word-spacing:0.720000px;}
.ws7_c00309{word-spacing:3.600000px;}
.ws9_c00309{word-spacing:5.760000px;}
.ws11_c00309{word-spacing:6.120000px;}
.ws10_c00309{word-spacing:6.336000px;}
.wsa_c00309{word-spacing:6.408000px;}
.ws3_c00309{word-spacing:6.480000px;}
.wsb_c00309{word-spacing:6.840000px;}
.wsd_c00309{word-spacing:8.280000px;}
.ws13_c00309{word-spacing:8.640000px;}
.wse_c00309{word-spacing:12.168000px;}
.ws2_c00309{word-spacing:17.784000px;}
.ws8_c00309{word-spacing:20.808000px;}
.ws12_c00309{word-spacing:26.928000px;}
.wsc_c00309{word-spacing:27.720000px;}
._0_c00309{margin-left:-1.008000px;}
._1_c00309{width:1.094400px;}
.fc1_c00309{color:rgb(0,0,0);}
.fc0_c00309{color:rgb(35,31,32);}
.fs2_c00309{font-size:60.120000px;}
.fs1_c00309{font-size:65.880000px;}
.fs0_c00309{font-size:72.000000px;}
.y0_c00309{bottom:0.000000px;}
.y1_c00309{bottom:61.748550px;}
.y11_c00309{bottom:184.634250px;}
.y10_c00309{bottom:215.684250px;}
.yf_c00309{bottom:246.734250px;}
.ye_c00309{bottom:277.784250px;}
.yd_c00309{bottom:308.834250px;}
.yc_c00309{bottom:370.934250px;}
.yb_c00309{bottom:552.734400px;}
.y21_c00309{bottom:566.549010px;}
.y1b_c00309{bottom:586.027890px;}
.y15_c00309{bottom:601.087950px;}
.y1a_c00309{bottom:601.102980px;}
.y16_c00309{bottom:616.869450px;}
.y1c_c00309{bottom:640.060740px;}
.y1d_c00309{bottom:694.093590px;}
.y17_c00309{bottom:700.481340px;}
.y14_c00309{bottom:733.592430px;}
.y1e_c00309{bottom:748.126440px;}
.y12_c00309{bottom:766.718550px;}
.y19_c00309{bottom:787.249530px;}
.y1f_c00309{bottom:802.159290px;}
.y18_c00309{bottom:810.906750px;}
.y13_c00309{bottom:839.283390px;}
.y20_c00309{bottom:856.192140px;}
.ya_c00309{bottom:922.634400px;}
.y9_c00309{bottom:953.684400px;}
.y8_c00309{bottom:984.734400px;}
.y7_c00309{bottom:1015.784400px;}
.y6_c00309{bottom:1046.834400px;}
.y5_c00309{bottom:1077.884400px;}
.y4_c00309{bottom:1108.934400px;}
.y3_c00309{bottom:1139.984400px;}
.y2_c00309{bottom:1193.174400px;}
.h6_c00309{height:49.581387px;}
.h2_c00309{height:50.400000px;}
.h4_c00309{height:54.331699px;}
.h3_c00309{height:76.824000px;}
.h5_c00309{height:78.048000px;}
.h7_c00309{height:87.456987px;}
.h0_c00309{height:1262.835000px;}
.h1_c00309{height:1263.000000px;}
.w0_c00309{width:892.914000px;}
.w1_c00309{width:893.250000px;}
.x0_c00309{left:0.000000px;}
.x1_c00309{left:54.000000px;}
.x2_c00309{left:127.620000px;}
.x3_c00309{left:132.120000px;}
.xf_c00309{left:140.986440px;}
.xe_c00309{left:148.561560px;}
.x4_c00309{left:159.570000px;}
.x10_c00309{left:191.532330px;}
.x5_c00309{left:207.223650px;}
.x8_c00309{left:239.237550px;}
.xa_c00309{left:267.463890px;}
.xd_c00309{left:295.690230px;}
.x6_c00309{left:362.453490px;}
.x9_c00309{left:394.467390px;}
.xb_c00309{left:418.906170px;}
.x7_c00309{left:517.683330px;}
.xc_c00309{left:574.136010px;}
@media print{
.v1_c00309{vertical-align:-5.611200pt;}
.v0_c00309{vertical-align:0.000000pt;}
.v2_c00309{vertical-align:33.667200pt;}
.ls7_c00309{letter-spacing:-0.320000pt;}
.ls8_c00309{letter-spacing:-0.106880pt;}
.ls6_c00309{letter-spacing:0.000000pt;}
.ls0_c00309{letter-spacing:0.064000pt;}
.ls2_c00309{letter-spacing:0.106880pt;}
.ls1_c00309{letter-spacing:21.760000pt;}
.ls4_c00309{letter-spacing:28.804160pt;}
.ls5_c00309{letter-spacing:163.205760pt;}
.ls3_c00309{letter-spacing:444.834560pt;}
.ws0_c00309{word-spacing:-16.000000pt;}
.ws1_c00309{word-spacing:-15.680000pt;}
.ws4_c00309{word-spacing:-12.184320pt;}
.ws5_c00309{word-spacing:-11.970560pt;}
.ws16_c00309{word-spacing:-0.587840pt;}
.ws17_c00309{word-spacing:-0.534400pt;}
.wsf_c00309{word-spacing:-0.064000pt;}
.ws6_c00309{word-spacing:0.000000pt;}
.ws15_c00309{word-spacing:0.128000pt;}
.ws14_c00309{word-spacing:0.640000pt;}
.ws7_c00309{word-spacing:3.200000pt;}
.ws9_c00309{word-spacing:5.120000pt;}
.ws11_c00309{word-spacing:5.440000pt;}
.ws10_c00309{word-spacing:5.632000pt;}
.wsa_c00309{word-spacing:5.696000pt;}
.ws3_c00309{word-spacing:5.760000pt;}
.wsb_c00309{word-spacing:6.080000pt;}
.wsd_c00309{word-spacing:7.360000pt;}
.ws13_c00309{word-spacing:7.680000pt;}
.wse_c00309{word-spacing:10.816000pt;}
.ws2_c00309{word-spacing:15.808000pt;}
.ws8_c00309{word-spacing:18.496000pt;}
.ws12_c00309{word-spacing:23.936000pt;}
.wsc_c00309{word-spacing:24.640000pt;}
._0_c00309{margin-left:-0.896000pt;}
._1_c00309{width:0.972800pt;}
.fs2_c00309{font-size:53.440000pt;}
.fs1_c00309{font-size:58.560000pt;}
.fs0_c00309{font-size:64.000000pt;}
.y0_c00309{bottom:0.000000pt;}
.y1_c00309{bottom:54.887600pt;}
.y11_c00309{bottom:164.119333pt;}
.y10_c00309{bottom:191.719333pt;}
.yf_c00309{bottom:219.319333pt;}
.ye_c00309{bottom:246.919333pt;}
.yd_c00309{bottom:274.519333pt;}
.yc_c00309{bottom:329.719333pt;}
.yb_c00309{bottom:491.319467pt;}
.y21_c00309{bottom:503.599120pt;}
.y1b_c00309{bottom:520.913680pt;}
.y15_c00309{bottom:534.300400pt;}
.y1a_c00309{bottom:534.313760pt;}
.y16_c00309{bottom:548.328400pt;}
.y1c_c00309{bottom:568.942880pt;}
.y1d_c00309{bottom:616.972080pt;}
.y17_c00309{bottom:622.650080pt;}
.y14_c00309{bottom:652.082160pt;}
.y1e_c00309{bottom:665.001280pt;}
.y12_c00309{bottom:681.527600pt;}
.y19_c00309{bottom:699.777360pt;}
.y1f_c00309{bottom:713.030480pt;}
.y18_c00309{bottom:720.806000pt;}
.y13_c00309{bottom:746.029680pt;}
.y20_c00309{bottom:761.059680pt;}
.ya_c00309{bottom:820.119467pt;}
.y9_c00309{bottom:847.719467pt;}
.y8_c00309{bottom:875.319467pt;}
.y7_c00309{bottom:902.919467pt;}
.y6_c00309{bottom:930.519467pt;}
.y5_c00309{bottom:958.119467pt;}
.y4_c00309{bottom:985.719467pt;}
.y3_c00309{bottom:1013.319467pt;}
.y2_c00309{bottom:1060.599467pt;}
.h6_c00309{height:44.072344pt;}
.h2_c00309{height:44.800000pt;}
.h4_c00309{height:48.294844pt;}
.h3_c00309{height:68.288000pt;}
.h5_c00309{height:69.376000pt;}
.h7_c00309{height:77.739544pt;}
.h0_c00309{height:1122.520000pt;}
.h1_c00309{height:1122.666667pt;}
.w0_c00309{width:793.701333pt;}
.w1_c00309{width:794.000000pt;}
.x0_c00309{left:0.000000pt;}
.x1_c00309{left:48.000000pt;}
.x2_c00309{left:113.440000pt;}
.x3_c00309{left:117.440000pt;}
.xf_c00309{left:125.321280pt;}
.xe_c00309{left:132.054720pt;}
.x4_c00309{left:141.840000pt;}
.x10_c00309{left:170.250960pt;}
.x5_c00309{left:184.198800pt;}
.x8_c00309{left:212.655600pt;}
.xa_c00309{left:237.745680pt;}
.xd_c00309{left:262.835760pt;}
.x6_c00309{left:322.180880pt;}
.x9_c00309{left:350.637680pt;}
.xb_c00309{left:372.361040pt;}
.x7_c00309{left:460.162960pt;}
.xc_c00309{left:510.343120pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00310;src:url('chunks/assets/font_727e395dcd3d243abfaeb15b.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00310;src:url('chunks/assets/font_6d4b344486556d95f1684e1e.woff2')format("woff");}.ff3_c00310{font-family:ff3_c00310;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00310;src:url('chunks/assets/font_ae64b02cb5d03ff725e6e574.woff2')format("woff");}.ff4_c00310{font-family:ff4_c00310;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00310;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00310{font-family:ff5_c00310;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00310;src:url('chunks/assets/font_eb073243719f9b22c1266e05.woff2')format("woff");}.ff6_c00310{font-family:ff6_c00310;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00310;src:url('chunks/assets/font_7fa6cd311b05d1c9464bafdd.woff2')format("woff");}.ff7_c00310{font-family:ff7_c00310;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00310;src:url('chunks/assets/font_967cb9ff2cfcda2ff907f650.woff2')format("woff");}.ff8_c00310{font-family:ff8_c00310;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00310{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00310{vertical-align:-6.312600px;}
.v0_c00310{vertical-align:0.000000px;}
.v2_c00310{vertical-align:37.875600px;}
.ls8_c00310{letter-spacing:-0.360000px;}
.lsb_c00310{letter-spacing:-0.144000px;}
.ls9_c00310{letter-spacing:-0.120240px;}
.lsa_c00310{letter-spacing:-0.072000px;}
.ls7_c00310{letter-spacing:0.000000px;}
.ls0_c00310{letter-spacing:0.072000px;}
.ls2_c00310{letter-spacing:0.120240px;}
.ls6_c00310{letter-spacing:0.144000px;}
.ls1_c00310{letter-spacing:24.480000px;}
.ls4_c00310{letter-spacing:32.404680px;}
.ls5_c00310{letter-spacing:183.606480px;}
.ls3_c00310{letter-spacing:500.438880px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00310{word-spacing:-18.072000px;}
.ws0_c00310{word-spacing:-18.000000px;}
.ws9_c00310{word-spacing:-17.928000px;}
.ws7_c00310{word-spacing:-17.856000px;}
.ws1_c00310{word-spacing:-17.640000px;}
.ws4_c00310{word-spacing:-13.707360px;}
.ws5_c00310{word-spacing:-13.466880px;}
.ws1a_c00310{word-spacing:-0.661320px;}
.ws1b_c00310{word-spacing:-0.601200px;}
.ws6_c00310{word-spacing:-0.144000px;}
.ws13_c00310{word-spacing:-0.072000px;}
.wsa_c00310{word-spacing:0.000000px;}
.ws19_c00310{word-spacing:0.144000px;}
.ws1c_c00310{word-spacing:0.432000px;}
.ws1d_c00310{word-spacing:0.504000px;}
.ws18_c00310{word-spacing:0.720000px;}
.wsb_c00310{word-spacing:3.600000px;}
.wsd_c00310{word-spacing:5.760000px;}
.ws15_c00310{word-spacing:6.120000px;}
.ws14_c00310{word-spacing:6.336000px;}
.wse_c00310{word-spacing:6.408000px;}
.ws3_c00310{word-spacing:6.480000px;}
.wsf_c00310{word-spacing:6.840000px;}
.ws11_c00310{word-spacing:8.280000px;}
.ws17_c00310{word-spacing:8.640000px;}
.ws12_c00310{word-spacing:12.168000px;}
.ws2_c00310{word-spacing:17.784000px;}
.wsc_c00310{word-spacing:20.808000px;}
.ws16_c00310{word-spacing:26.928000px;}
.ws10_c00310{word-spacing:27.720000px;}
._0_c00310{margin-left:-1.008000px;}
._1_c00310{width:1.087200px;}
.fc2_c00310{color:transparent;}
.fc1_c00310{color:rgb(0,0,0);}
.fc0_c00310{color:rgb(35,31,32);}
.fs2_c00310{font-size:60.120000px;}
.fs1_c00310{font-size:65.880000px;}
.fs0_c00310{font-size:72.000000px;}
.y0_c00310{bottom:0.000000px;}
.y27_c00310{bottom:4.139250px;}
.y2e_c00310{bottom:4.139400px;}
.y39_c00310{bottom:4.140900px;}
.y2c_c00310{bottom:4.142400px;}
.y26_c00310{bottom:24.839250px;}
.y29_c00310{bottom:24.839400px;}
.y38_c00310{bottom:24.840900px;}
.y2b_c00310{bottom:24.842400px;}
.y1_c00310{bottom:61.748550px;}
.y44_c00310{bottom:123.165000px;}
.y43_c00310{bottom:146.385000px;}
.y11_c00310{bottom:184.634250px;}
.y42_c00310{bottom:211.005000px;}
.y10_c00310{bottom:215.684250px;}
.yf_c00310{bottom:246.734250px;}
.y41_c00310{bottom:252.402000px;}
.y40_c00310{bottom:274.905000px;}
.ye_c00310{bottom:277.784250px;}
.y3f_c00310{bottom:298.125000px;}
.yd_c00310{bottom:308.834250px;}
.y3e_c00310{bottom:362.833500px;}
.yc_c00310{bottom:370.934250px;}
.y3d_c00310{bottom:404.235000px;}
.y3c_c00310{bottom:445.635000px;}
.y3b_c00310{bottom:487.033500px;}
.y3a_c00310{bottom:510.252000px;}
.y37_c00310{bottom:552.373500px;}
.yb_c00310{bottom:552.734400px;}
.y21_c00310{bottom:566.549010px;}
.y1b_c00310{bottom:586.027890px;}
.y36_c00310{bottom:594.585000px;}
.y15_c00310{bottom:601.087950px;}
.y1a_c00310{bottom:601.102980px;}
.y16_c00310{bottom:616.869450px;}
.y1c_c00310{bottom:640.060740px;}
.y35_c00310{bottom:659.205000px;}
.y1d_c00310{bottom:694.093590px;}
.y17_c00310{bottom:700.481340px;}
.y34_c00310{bottom:700.602000px;}
.y33_c00310{bottom:723.105000px;}
.y14_c00310{bottom:733.592430px;}
.y32_c00310{bottom:746.325000px;}
.y1e_c00310{bottom:748.126440px;}
.y12_c00310{bottom:766.718550px;}
.y19_c00310{bottom:787.249530px;}
.y1f_c00310{bottom:802.159290px;}
.y18_c00310{bottom:810.906750px;}
.y31_c00310{bottom:810.945000px;}
.y13_c00310{bottom:839.283390px;}
.y30_c00310{bottom:852.342000px;}
.y20_c00310{bottom:856.192140px;}
.y2f_c00310{bottom:893.745000px;}
.ya_c00310{bottom:922.634400px;}
.y2d_c00310{bottom:935.145000px;}
.y9_c00310{bottom:953.684400px;}
.y2a_c00310{bottom:957.642000px;}
.y8_c00310{bottom:984.734400px;}
.y28_c00310{bottom:999.855000px;}
.y7_c00310{bottom:1015.784400px;}
.y25_c00310{bottom:1041.975000px;}
.y6_c00310{bottom:1046.834400px;}
.y5_c00310{bottom:1077.884400px;}
.y4_c00310{bottom:1108.934400px;}
.y24_c00310{bottom:1119.194400px;}
.y23_c00310{bottom:1139.984400px;}
.y3_c00310{bottom:1139.984550px;}
.y22_c00310{bottom:1193.174400px;}
.y2_c00310{bottom:1193.174550px;}
.ha_c00310{height:22.497000px;}
.hc_c00310{height:22.498500px;}
.hd_c00310{height:22.500000px;}
.hb_c00310{height:41.397000px;}
.h8_c00310{height:41.398500px;}
.h9_c00310{height:41.400000px;}
.h6_c00310{height:49.581387px;}
.h2_c00310{height:50.400000px;}
.h4_c00310{height:54.331699px;}
.h3_c00310{height:76.824000px;}
.h5_c00310{height:78.048000px;}
.h7_c00310{height:87.456987px;}
.h0_c00310{height:1262.835000px;}
.h1_c00310{height:1263.000000px;}
.w2_c00310{width:0.000000px;}
.w3_c00310{width:0.066000px;}
.w9_c00310{width:117.000000px;}
.w8_c00310{width:127.527000px;}
.w6_c00310{width:131.220000px;}
.w7_c00310{width:138.240000px;}
.w4_c00310{width:191.790000px;}
.w5_c00310{width:382.770000px;}
.w0_c00310{width:892.914000px;}
.w1_c00310{width:893.250000px;}
.x1_c00310{left:-838.913400px;}
.x2_c00310{left:-765.293400px;}
.x3_c00310{left:-760.793400px;}
.xf_c00310{left:-751.926960px;}
.xe_c00310{left:-744.351840px;}
.x4_c00310{left:-733.343400px;}
.x10_c00310{left:-701.381070px;}
.x5_c00310{left:-685.689750px;}
.x8_c00310{left:-653.675850px;}
.xa_c00310{left:-625.449510px;}
.xd_c00310{left:-597.223170px;}
.x6_c00310{left:-530.459910px;}
.x9_c00310{left:-498.446010px;}
.xb_c00310{left:-474.007230px;}
.x7_c00310{left:-375.230070px;}
.xc_c00310{left:-318.777390px;}
.x0_c00310{left:0.000000px;}
.x15_c00310{left:5.310000px;}
.x26_c00310{left:47.070000px;}
.x17_c00310{left:59.040000px;}
.x27_c00310{left:84.690000px;}
.x28_c00310{left:90.000000px;}
.x1d_c00310{left:93.690000px;}
.x23_c00310{left:95.310000px;}
.x1e_c00310{left:99.000000px;}
.x20_c00310{left:102.690000px;}
.x1c_c00310{left:104.310000px;}
.x22_c00310{left:105.930000px;}
.x21_c00310{left:108.000000px;}
.x24_c00310{left:113.310000px;}
.x1b_c00310{left:114.930000px;}
.x25_c00310{left:117.000000px;}
.x14_c00310{left:122.310000px;}
.x1f_c00310{left:123.930000px;}
.x13_c00310{left:127.620000px;}
.x16_c00310{left:314.100000px;}
.x19_c00310{left:452.340000px;}
.x1a_c00310{left:579.870000px;}
.x12_c00310{left:679.950000px;}
.x18_c00310{left:696.870000px;}
.x11_c00310{left:804.366150px;}
@media print{
.v1_c00310{vertical-align:-5.611200pt;}
.v0_c00310{vertical-align:0.000000pt;}
.v2_c00310{vertical-align:33.667200pt;}
.ls8_c00310{letter-spacing:-0.320000pt;}
.lsb_c00310{letter-spacing:-0.128000pt;}
.ls9_c00310{letter-spacing:-0.106880pt;}
.lsa_c00310{letter-spacing:-0.064000pt;}
.ls7_c00310{letter-spacing:0.000000pt;}
.ls0_c00310{letter-spacing:0.064000pt;}
.ls2_c00310{letter-spacing:0.106880pt;}
.ls6_c00310{letter-spacing:0.128000pt;}
.ls1_c00310{letter-spacing:21.760000pt;}
.ls4_c00310{letter-spacing:28.804160pt;}
.ls5_c00310{letter-spacing:163.205760pt;}
.ls3_c00310{letter-spacing:444.834560pt;}
.ws8_c00310{word-spacing:-16.064000pt;}
.ws0_c00310{word-spacing:-16.000000pt;}
.ws9_c00310{word-spacing:-15.936000pt;}
.ws7_c00310{word-spacing:-15.872000pt;}
.ws1_c00310{word-spacing:-15.680000pt;}
.ws4_c00310{word-spacing:-12.184320pt;}
.ws5_c00310{word-spacing:-11.970560pt;}
.ws1a_c00310{word-spacing:-0.587840pt;}
.ws1b_c00310{word-spacing:-0.534400pt;}
.ws6_c00310{word-spacing:-0.128000pt;}
.ws13_c00310{word-spacing:-0.064000pt;}
.wsa_c00310{word-spacing:0.000000pt;}
.ws19_c00310{word-spacing:0.128000pt;}
.ws1c_c00310{word-spacing:0.384000pt;}
.ws1d_c00310{word-spacing:0.448000pt;}
.ws18_c00310{word-spacing:0.640000pt;}
.wsb_c00310{word-spacing:3.200000pt;}
.wsd_c00310{word-spacing:5.120000pt;}
.ws15_c00310{word-spacing:5.440000pt;}
.ws14_c00310{word-spacing:5.632000pt;}
.wse_c00310{word-spacing:5.696000pt;}
.ws3_c00310{word-spacing:5.760000pt;}
.wsf_c00310{word-spacing:6.080000pt;}
.ws11_c00310{word-spacing:7.360000pt;}
.ws17_c00310{word-spacing:7.680000pt;}
.ws12_c00310{word-spacing:10.816000pt;}
.ws2_c00310{word-spacing:15.808000pt;}
.wsc_c00310{word-spacing:18.496000pt;}
.ws16_c00310{word-spacing:23.936000pt;}
.ws10_c00310{word-spacing:24.640000pt;}
._0_c00310{margin-left:-0.896000pt;}
._1_c00310{width:0.966400pt;}
.fs2_c00310{font-size:53.440000pt;}
.fs1_c00310{font-size:58.560000pt;}
.fs0_c00310{font-size:64.000000pt;}
.y0_c00310{bottom:0.000000pt;}
.y27_c00310{bottom:3.679333pt;}
.y2e_c00310{bottom:3.679467pt;}
.y39_c00310{bottom:3.680800pt;}
.y2c_c00310{bottom:3.682133pt;}
.y26_c00310{bottom:22.079333pt;}
.y29_c00310{bottom:22.079467pt;}
.y38_c00310{bottom:22.080800pt;}
.y2b_c00310{bottom:22.082133pt;}
.y1_c00310{bottom:54.887600pt;}
.y44_c00310{bottom:109.480000pt;}
.y43_c00310{bottom:130.120000pt;}
.y11_c00310{bottom:164.119333pt;}
.y42_c00310{bottom:187.560000pt;}
.y10_c00310{bottom:191.719333pt;}
.yf_c00310{bottom:219.319333pt;}
.y41_c00310{bottom:224.357333pt;}
.y40_c00310{bottom:244.360000pt;}
.ye_c00310{bottom:246.919333pt;}
.y3f_c00310{bottom:265.000000pt;}
.yd_c00310{bottom:274.519333pt;}
.y3e_c00310{bottom:322.518667pt;}
.yc_c00310{bottom:329.719333pt;}
.y3d_c00310{bottom:359.320000pt;}
.y3c_c00310{bottom:396.120000pt;}
.y3b_c00310{bottom:432.918667pt;}
.y3a_c00310{bottom:453.557333pt;}
.y37_c00310{bottom:490.998667pt;}
.yb_c00310{bottom:491.319467pt;}
.y21_c00310{bottom:503.599120pt;}
.y1b_c00310{bottom:520.913680pt;}
.y36_c00310{bottom:528.520000pt;}
.y15_c00310{bottom:534.300400pt;}
.y1a_c00310{bottom:534.313760pt;}
.y16_c00310{bottom:548.328400pt;}
.y1c_c00310{bottom:568.942880pt;}
.y35_c00310{bottom:585.960000pt;}
.y1d_c00310{bottom:616.972080pt;}
.y17_c00310{bottom:622.650080pt;}
.y34_c00310{bottom:622.757333pt;}
.y33_c00310{bottom:642.760000pt;}
.y14_c00310{bottom:652.082160pt;}
.y32_c00310{bottom:663.400000pt;}
.y1e_c00310{bottom:665.001280pt;}
.y12_c00310{bottom:681.527600pt;}
.y19_c00310{bottom:699.777360pt;}
.y1f_c00310{bottom:713.030480pt;}
.y18_c00310{bottom:720.806000pt;}
.y31_c00310{bottom:720.840000pt;}
.y13_c00310{bottom:746.029680pt;}
.y30_c00310{bottom:757.637333pt;}
.y20_c00310{bottom:761.059680pt;}
.y2f_c00310{bottom:794.440000pt;}
.ya_c00310{bottom:820.119467pt;}
.y2d_c00310{bottom:831.240000pt;}
.y9_c00310{bottom:847.719467pt;}
.y2a_c00310{bottom:851.237333pt;}
.y8_c00310{bottom:875.319467pt;}
.y28_c00310{bottom:888.760000pt;}
.y7_c00310{bottom:902.919467pt;}
.y25_c00310{bottom:926.200000pt;}
.y6_c00310{bottom:930.519467pt;}
.y5_c00310{bottom:958.119467pt;}
.y4_c00310{bottom:985.719467pt;}
.y24_c00310{bottom:994.839467pt;}
.y23_c00310{bottom:1013.319467pt;}
.y3_c00310{bottom:1013.319600pt;}
.y22_c00310{bottom:1060.599467pt;}
.y2_c00310{bottom:1060.599600pt;}
.ha_c00310{height:19.997333pt;}
.hc_c00310{height:19.998667pt;}
.hd_c00310{height:20.000000pt;}
.hb_c00310{height:36.797333pt;}
.h8_c00310{height:36.798667pt;}
.h9_c00310{height:36.800000pt;}
.h6_c00310{height:44.072344pt;}
.h2_c00310{height:44.800000pt;}
.h4_c00310{height:48.294844pt;}
.h3_c00310{height:68.288000pt;}
.h5_c00310{height:69.376000pt;}
.h7_c00310{height:77.739544pt;}
.h0_c00310{height:1122.520000pt;}
.h1_c00310{height:1122.666667pt;}
.w2_c00310{width:0.000000pt;}
.w3_c00310{width:0.058667pt;}
.w9_c00310{width:104.000000pt;}
.w8_c00310{width:113.357333pt;}
.w6_c00310{width:116.640000pt;}
.w7_c00310{width:122.880000pt;}
.w4_c00310{width:170.480000pt;}
.w5_c00310{width:340.240000pt;}
.w0_c00310{width:793.701333pt;}
.w1_c00310{width:794.000000pt;}
.x1_c00310{left:-745.700800pt;}
.x2_c00310{left:-680.260800pt;}
.x3_c00310{left:-676.260800pt;}
.xf_c00310{left:-668.379520pt;}
.xe_c00310{left:-661.646080pt;}
.x4_c00310{left:-651.860800pt;}
.x10_c00310{left:-623.449840pt;}
.x5_c00310{left:-609.502000pt;}
.x8_c00310{left:-581.045200pt;}
.xa_c00310{left:-555.955120pt;}
.xd_c00310{left:-530.865040pt;}
.x6_c00310{left:-471.519920pt;}
.x9_c00310{left:-443.063120pt;}
.xb_c00310{left:-421.339760pt;}
.x7_c00310{left:-333.537840pt;}
.xc_c00310{left:-283.357680pt;}
.x0_c00310{left:0.000000pt;}
.x15_c00310{left:4.720000pt;}
.x26_c00310{left:41.840000pt;}
.x17_c00310{left:52.480000pt;}
.x27_c00310{left:75.280000pt;}
.x28_c00310{left:80.000000pt;}
.x1d_c00310{left:83.280000pt;}
.x23_c00310{left:84.720000pt;}
.x1e_c00310{left:88.000000pt;}
.x20_c00310{left:91.280000pt;}
.x1c_c00310{left:92.720000pt;}
.x22_c00310{left:94.160000pt;}
.x21_c00310{left:96.000000pt;}
.x24_c00310{left:100.720000pt;}
.x1b_c00310{left:102.160000pt;}
.x25_c00310{left:104.000000pt;}
.x14_c00310{left:108.720000pt;}
.x1f_c00310{left:110.160000pt;}
.x13_c00310{left:113.440000pt;}
.x16_c00310{left:279.200000pt;}
.x19_c00310{left:402.080000pt;}
.x1a_c00310{left:515.440000pt;}
.x12_c00310{left:604.400000pt;}
.x18_c00310{left:619.440000pt;}
.x11_c00310{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00311;src:url('chunks/assets/font_47b8aa449a6a0f54a9e749ef.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00311;src:url('chunks/assets/font_02dcdbc386da495ba9616a46.woff2')format("woff");}.ff3_c00311{font-family:ff3_c00311;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00311{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls4_c00311{letter-spacing:-0.144000px;}
.ls3_c00311{letter-spacing:-0.072000px;}
.ls2_c00311{letter-spacing:0.000000px;}
.ls0_c00311{letter-spacing:0.072000px;}
.ls1_c00311{letter-spacing:0.144000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00311{word-spacing:-18.072000px;}
.ws0_c00311{word-spacing:-18.000000px;}
.ws3_c00311{word-spacing:-17.928000px;}
.ws1_c00311{word-spacing:-17.856000px;}
.wsa_c00311{word-spacing:-0.144000px;}
.ws7_c00311{word-spacing:-0.072000px;}
.ws6_c00311{word-spacing:0.000000px;}
.wsb_c00311{word-spacing:0.072000px;}
.ws9_c00311{word-spacing:0.144000px;}
.ws8_c00311{word-spacing:0.432000px;}
.wsc_c00311{word-spacing:0.504000px;}
.ws5_c00311{word-spacing:323.640000px;}
.ws4_c00311{word-spacing:981.216000px;}
._0_c00311{margin-left:-1.224000px;}
._1_c00311{width:1.152000px;}
._2_c00311{width:384.480000px;}
._3_c00311{width:399.240000px;}
.fc1_c00311{color:rgb(0,0,0);}
.fc0_c00311{color:rgb(35,31,32);}
.fs0_c00311{font-size:72.000000px;}
.y0_c00311{bottom:0.000000px;}
.y16_c00311{bottom:4.049400px;}
.y7_c00311{bottom:4.139250px;}
.y10_c00311{bottom:4.139400px;}
.ye_c00311{bottom:4.142250px;}
.yc_c00311{bottom:4.142400px;}
.y6_c00311{bottom:24.839250px;}
.y9_c00311{bottom:24.839400px;}
.y13_c00311{bottom:24.842250px;}
.yb_c00311{bottom:24.842400px;}
.y1_c00311{bottom:61.748550px;}
.y26_c00311{bottom:122.355000px;}
.y25_c00311{bottom:145.665000px;}
.y24_c00311{bottom:210.282000px;}
.y23_c00311{bottom:251.685000px;}
.y22_c00311{bottom:274.185000px;}
.y21_c00311{bottom:297.405000px;}
.y20_c00311{bottom:362.022000px;}
.y1e_c00311{bottom:403.425000px;}
.y1f_c00311{bottom:407.564400px;}
.y1d_c00311{bottom:444.825000px;}
.y1c_c00311{bottom:486.222000px;}
.y1b_c00311{bottom:509.535000px;}
.y1a_c00311{bottom:551.655000px;}
.y19_c00311{bottom:593.775000px;}
.y18_c00311{bottom:658.482000px;}
.y17_c00311{bottom:699.885000px;}
.y15_c00311{bottom:722.385000px;}
.y14_c00311{bottom:745.605000px;}
.y12_c00311{bottom:810.222000px;}
.y11_c00311{bottom:851.625000px;}
.yf_c00311{bottom:893.025000px;}
.yd_c00311{bottom:934.422000px;}
.ya_c00311{bottom:957.642000px;}
.y8_c00311{bottom:999.855000px;}
.y5_c00311{bottom:1041.975000px;}
.y4_c00311{bottom:1119.194400px;}
.y3_c00311{bottom:1139.984400px;}
.y2_c00311{bottom:1193.174400px;}
.h9_c00311{height:22.498500px;}
.h7_c00311{height:22.500000px;}
.h8_c00311{height:41.397000px;}
.h5_c00311{height:41.398500px;}
.h6_c00311{height:41.400000px;}
.h2_c00311{height:50.400000px;}
.h3_c00311{height:76.824000px;}
.h4_c00311{height:78.048000px;}
.h0_c00311{height:1262.835000px;}
.h1_c00311{height:1263.000000px;}
.w7_c00311{width:117.000000px;}
.w6_c00311{width:127.527000px;}
.w4_c00311{width:131.220000px;}
.w5_c00311{width:138.240000px;}
.w2_c00311{width:191.790000px;}
.w3_c00311{width:382.770000px;}
.w0_c00311{width:892.914000px;}
.w1_c00311{width:893.250000px;}
.x0_c00311{left:0.000000px;}
.x4_c00311{left:5.310000px;}
.x10_c00311{left:47.070000px;}
.x1_c00311{left:54.000000px;}
.x6_c00311{left:59.040000px;}
.x11_c00311{left:71.190000px;}
.xc_c00311{left:80.190000px;}
.xf_c00311{left:81.810000px;}
.xd_c00311{left:85.500000px;}
.xb_c00311{left:90.810000px;}
.x12_c00311{left:92.430000px;}
.xe_c00311{left:94.500000px;}
.x13_c00311{left:99.000000px;}
.xa_c00311{left:101.430000px;}
.x3_c00311{left:122.310000px;}
.x2_c00311{left:127.620000px;}
.x5_c00311{left:314.100000px;}
.x8_c00311{left:452.340000px;}
.x9_c00311{left:579.870000px;}
.x7_c00311{left:696.870000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls4_c00311{letter-spacing:-0.128000pt;}
.ls3_c00311{letter-spacing:-0.064000pt;}
.ls2_c00311{letter-spacing:0.000000pt;}
.ls0_c00311{letter-spacing:0.064000pt;}
.ls1_c00311{letter-spacing:0.128000pt;}
.ws2_c00311{word-spacing:-16.064000pt;}
.ws0_c00311{word-spacing:-16.000000pt;}
.ws3_c00311{word-spacing:-15.936000pt;}
.ws1_c00311{word-spacing:-15.872000pt;}
.wsa_c00311{word-spacing:-0.128000pt;}
.ws7_c00311{word-spacing:-0.064000pt;}
.ws6_c00311{word-spacing:0.000000pt;}
.wsb_c00311{word-spacing:0.064000pt;}
.ws9_c00311{word-spacing:0.128000pt;}
.ws8_c00311{word-spacing:0.384000pt;}
.wsc_c00311{word-spacing:0.448000pt;}
.ws5_c00311{word-spacing:287.680000pt;}
.ws4_c00311{word-spacing:872.192000pt;}
._0_c00311{margin-left:-1.088000pt;}
._1_c00311{width:1.024000pt;}
._2_c00311{width:341.760000pt;}
._3_c00311{width:354.880000pt;}
.fs0_c00311{font-size:64.000000pt;}
.y0_c00311{bottom:0.000000pt;}
.y16_c00311{bottom:3.599467pt;}
.y7_c00311{bottom:3.679333pt;}
.y10_c00311{bottom:3.679467pt;}
.ye_c00311{bottom:3.682000pt;}
.yc_c00311{bottom:3.682133pt;}
.y6_c00311{bottom:22.079333pt;}
.y9_c00311{bottom:22.079467pt;}
.y13_c00311{bottom:22.082000pt;}
.yb_c00311{bottom:22.082133pt;}
.y1_c00311{bottom:54.887600pt;}
.y26_c00311{bottom:108.760000pt;}
.y25_c00311{bottom:129.480000pt;}
.y24_c00311{bottom:186.917333pt;}
.y23_c00311{bottom:223.720000pt;}
.y22_c00311{bottom:243.720000pt;}
.y21_c00311{bottom:264.360000pt;}
.y20_c00311{bottom:321.797333pt;}
.y1e_c00311{bottom:358.600000pt;}
.y1f_c00311{bottom:362.279467pt;}
.y1d_c00311{bottom:395.400000pt;}
.y1c_c00311{bottom:432.197333pt;}
.y1b_c00311{bottom:452.920000pt;}
.y1a_c00311{bottom:490.360000pt;}
.y19_c00311{bottom:527.800000pt;}
.y18_c00311{bottom:585.317333pt;}
.y17_c00311{bottom:622.120000pt;}
.y15_c00311{bottom:642.120000pt;}
.y14_c00311{bottom:662.760000pt;}
.y12_c00311{bottom:720.197333pt;}
.y11_c00311{bottom:757.000000pt;}
.yf_c00311{bottom:793.800000pt;}
.yd_c00311{bottom:830.597333pt;}
.ya_c00311{bottom:851.237333pt;}
.y8_c00311{bottom:888.760000pt;}
.y5_c00311{bottom:926.200000pt;}
.y4_c00311{bottom:994.839467pt;}
.y3_c00311{bottom:1013.319467pt;}
.y2_c00311{bottom:1060.599467pt;}
.h9_c00311{height:19.998667pt;}
.h7_c00311{height:20.000000pt;}
.h8_c00311{height:36.797333pt;}
.h5_c00311{height:36.798667pt;}
.h6_c00311{height:36.800000pt;}
.h2_c00311{height:44.800000pt;}
.h3_c00311{height:68.288000pt;}
.h4_c00311{height:69.376000pt;}
.h0_c00311{height:1122.520000pt;}
.h1_c00311{height:1122.666667pt;}
.w7_c00311{width:104.000000pt;}
.w6_c00311{width:113.357333pt;}
.w4_c00311{width:116.640000pt;}
.w5_c00311{width:122.880000pt;}
.w2_c00311{width:170.480000pt;}
.w3_c00311{width:340.240000pt;}
.w0_c00311{width:793.701333pt;}
.w1_c00311{width:794.000000pt;}
.x0_c00311{left:0.000000pt;}
.x4_c00311{left:4.720000pt;}
.x10_c00311{left:41.840000pt;}
.x1_c00311{left:48.000000pt;}
.x6_c00311{left:52.480000pt;}
.x11_c00311{left:63.280000pt;}
.xc_c00311{left:71.280000pt;}
.xf_c00311{left:72.720000pt;}
.xd_c00311{left:76.000000pt;}
.xb_c00311{left:80.720000pt;}
.x12_c00311{left:82.160000pt;}
.xe_c00311{left:84.000000pt;}
.x13_c00311{left:88.000000pt;}
.xa_c00311{left:90.160000pt;}
.x3_c00311{left:108.720000pt;}
.x2_c00311{left:113.440000pt;}
.x5_c00311{left:279.200000pt;}
.x8_c00311{left:402.080000pt;}
.x9_c00311{left:515.440000pt;}
.x7_c00311{left:619.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00312;src:url('chunks/assets/font_aebe38326a7b643846e94615.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00312;src:url('chunks/assets/font_400120c86aaa68af6841bf34.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00312;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00312{font-family:ff4_c00312;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00312;src:url('chunks/assets/font_8bf639265ed99b8cdca7956e.woff2')format("woff");}.ff5_c00312{font-family:ff5_c00312;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00312;src:url('chunks/assets/font_1a5d02f5c6772360727f9a49.woff2')format("woff");}.ff6_c00312{font-family:ff6_c00312;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00312;src:url('chunks/assets/font_737959412a99581748617fb2.woff2')format("woff");}.ff7_c00312{font-family:ff7_c00312;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00312{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.lsb_c00312{letter-spacing:-0.360000px;}
.lsa_c00312{letter-spacing:-0.288000px;}
.ls9_c00312{letter-spacing:-0.144000px;}
.lsd_c00312{letter-spacing:-0.120240px;}
.ls8_c00312{letter-spacing:-0.072000px;}
.lsc_c00312{letter-spacing:-0.065880px;}
.ls7_c00312{letter-spacing:0.000000px;}
.ls4_c00312{letter-spacing:0.065880px;}
.ls0_c00312{letter-spacing:0.072000px;}
.ls6_c00312{letter-spacing:0.120240px;}
.ls1_c00312{letter-spacing:0.144000px;}
.ls2_c00312{letter-spacing:0.197640px;}
.ls5_c00312{letter-spacing:16.470000px;}
.ls3_c00312{letter-spacing:33.071760px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00312{word-spacing:-18.072000px;}
.ws0_c00312{word-spacing:-18.000000px;}
.ws3_c00312{word-spacing:-17.928000px;}
.ws1_c00312{word-spacing:-17.856000px;}
.ws9_c00312{word-spacing:-16.535880px;}
.ws7_c00312{word-spacing:-16.404120px;}
.wsb_c00312{word-spacing:-13.707360px;}
.wsc_c00312{word-spacing:-13.466880px;}
.ws2d_c00312{word-spacing:-0.661320px;}
.ws2e_c00312{word-spacing:-0.601200px;}
.ws6_c00312{word-spacing:-0.288000px;}
.ws2c_c00312{word-spacing:-0.197640px;}
.ws11_c00312{word-spacing:-0.144000px;}
.ws27_c00312{word-spacing:-0.131760px;}
.wse_c00312{word-spacing:-0.072000px;}
.wsd_c00312{word-spacing:0.000000px;}
.ws29_c00312{word-spacing:0.065880px;}
.ws12_c00312{word-spacing:0.072000px;}
.ws28_c00312{word-spacing:0.131760px;}
.ws10_c00312{word-spacing:0.144000px;}
.wsf_c00312{word-spacing:0.432000px;}
.ws13_c00312{word-spacing:0.504000px;}
.ws1f_c00312{word-spacing:1.944000px;}
.ws1e_c00312{word-spacing:2.088000px;}
.ws1d_c00312{word-spacing:2.160000px;}
.ws17_c00312{word-spacing:4.248000px;}
.ws2b_c00312{word-spacing:4.545720px;}
.ws2a_c00312{word-spacing:5.204520px;}
.ws23_c00312{word-spacing:5.976000px;}
.ws22_c00312{word-spacing:6.048000px;}
.ws24_c00312{word-spacing:6.120000px;}
.ws25_c00312{word-spacing:6.390360px;}
.ws8_c00312{word-spacing:6.588000px;}
.ws26_c00312{word-spacing:6.653880px;}
.ws18_c00312{word-spacing:7.128000px;}
.ws19_c00312{word-spacing:7.200000px;}
.ws20_c00312{word-spacing:8.280000px;}
.ws14_c00312{word-spacing:11.232000px;}
.ws15_c00312{word-spacing:11.448000px;}
.ws16_c00312{word-spacing:11.520000px;}
.ws1a_c00312{word-spacing:12.168000px;}
.ws1b_c00312{word-spacing:12.240000px;}
.ws1c_c00312{word-spacing:12.600000px;}
.ws21_c00312{word-spacing:15.408000px;}
.wsa_c00312{word-spacing:26.747280px;}
.ws5_c00312{word-spacing:323.640000px;}
.ws4_c00312{word-spacing:981.216000px;}
._0_c00312{margin-left:-1.224000px;}
._1_c00312{width:1.152000px;}
._4_c00312{width:14.400000px;}
._6_c00312{width:21.625200px;}
._5_c00312{width:60.192000px;}
._2_c00312{width:384.480000px;}
._3_c00312{width:399.240000px;}
.fc1_c00312{color:transparent;}
.fc0_c00312{color:rgb(35,31,32);}
.fs2_c00312{font-size:60.120000px;}
.fs1_c00312{font-size:65.880000px;}
.fs0_c00312{font-size:72.000000px;}
.y0_c00312{bottom:0.000000px;}
.y16_c00312{bottom:4.049400px;}
.y7_c00312{bottom:4.139250px;}
.y10_c00312{bottom:4.139400px;}
.ye_c00312{bottom:4.140750px;}
.yc_c00312{bottom:4.140900px;}
.y6_c00312{bottom:24.839250px;}
.y9_c00312{bottom:24.839400px;}
.y13_c00312{bottom:24.840750px;}
.yb_c00312{bottom:24.840900px;}
.y1_c00312{bottom:61.748550px;}
.y26_c00312{bottom:122.355000px;}
.y46_c00312{bottom:130.503600px;}
.y3f_c00312{bottom:132.153960px;}
.y25_c00312{bottom:145.665000px;}
.y45_c00312{bottom:157.628100px;}
.y3e_c00312{bottom:160.597650px;}
.y3d_c00312{bottom:189.041340px;}
.y24_c00312{bottom:210.283500px;}
.y2d_c00312{bottom:210.285000px;}
.y3c_c00312{bottom:248.530980px;}
.y23_c00312{bottom:251.685000px;}
.y22_c00312{bottom:274.185000px;}
.y3b_c00312{bottom:276.974670px;}
.y21_c00312{bottom:297.405000px;}
.y3a_c00312{bottom:305.500710px;}
.y39_c00312{bottom:333.944400px;}
.y20_c00312{bottom:362.023500px;}
.y2c_c00312{bottom:362.025000px;}
.y38_c00312{bottom:394.874400px;}
.y1e_c00312{bottom:403.425000px;}
.y1f_c00312{bottom:407.564400px;}
.y37_c00312{bottom:425.924400px;}
.y1d_c00312{bottom:444.825000px;}
.y36_c00312{bottom:456.974400px;}
.y1c_c00312{bottom:486.223500px;}
.y2b_c00312{bottom:486.225000px;}
.y35_c00312{bottom:488.024400px;}
.y1b_c00312{bottom:509.535000px;}
.y34_c00312{bottom:519.074400px;}
.y1a_c00312{bottom:551.655000px;}
.y33_c00312{bottom:581.174400px;}
.y19_c00312{bottom:593.775000px;}
.y44_c00312{bottom:615.552000px;}
.y18_c00312{bottom:658.483500px;}
.y2a_c00312{bottom:658.485000px;}
.y17_c00312{bottom:699.885000px;}
.y15_c00312{bottom:722.385000px;}
.y41_c00312{bottom:730.563330px;}
.y14_c00312{bottom:745.605000px;}
.y40_c00312{bottom:765.342750px;}
.y43_c00312{bottom:800.304450px;}
.y12_c00312{bottom:810.223500px;}
.y29_c00312{bottom:810.225000px;}
.y42_c00312{bottom:848.488710px;}
.y11_c00312{bottom:851.625000px;}
.yf_c00312{bottom:893.025000px;}
.yd_c00312{bottom:934.423500px;}
.y28_c00312{bottom:934.425000px;}
.y32_c00312{bottom:953.684400px;}
.ya_c00312{bottom:957.643500px;}
.y27_c00312{bottom:957.645000px;}
.y31_c00312{bottom:984.734400px;}
.y8_c00312{bottom:999.855000px;}
.y30_c00312{bottom:1015.784400px;}
.y5_c00312{bottom:1041.975000px;}
.y2f_c00312{bottom:1046.834400px;}
.y2e_c00312{bottom:1077.884400px;}
.y4_c00312{bottom:1119.194400px;}
.y3_c00312{bottom:1139.984400px;}
.y2_c00312{bottom:1193.174400px;}
.h8_c00312{height:22.498500px;}
.h7_c00312{height:22.500000px;}
.h5_c00312{height:41.398500px;}
.h6_c00312{height:41.400000px;}
.ha_c00312{height:49.581387px;}
.h2_c00312{height:50.400000px;}
.h9_c00312{height:71.413920px;}
.h3_c00312{height:76.824000px;}
.h4_c00312{height:78.048000px;}
.hc_c00312{height:144.810000px;}
.hb_c00312{height:171.901500px;}
.h0_c00312{height:1262.835000px;}
.h1_c00312{height:1263.000000px;}
.w3_c00312{width:-578.814000px;}
.w6_c00312{width:-440.574000px;}
.w7_c00312{width:-313.047000px;}
.w9_c00312{width:-313.045500px;}
.w4_c00312{width:-196.044000px;}
.w5_c00312{width:-64.824000px;}
.w2_c00312{width:0.000000px;}
.w8_c00312{width:0.066000px;}
.wb_c00312{width:93.150000px;}
.wa_c00312{width:155.161500px;}
.w0_c00312{width:892.914000px;}
.w1_c00312{width:893.250000px;}
.x1_c00312{left:-838.913400px;}
.x2_c00312{left:-765.293400px;}
.x5_c00312{left:-573.593400px;}
.xe_c00312{left:-531.743400px;}
.x3_c00312{left:-519.773400px;}
.x10_c00312{left:-486.383400px;}
.x8_c00312{left:-477.383400px;}
.x6_c00312{left:-435.353400px;}
.xd_c00312{left:-358.763400px;}
.x9_c00312{left:-349.763400px;}
.x7_c00312{left:-307.733400px;}
.xf_c00312{left:-241.853400px;}
.xa_c00312{left:-232.853400px;}
.x4_c00312{left:-190.823400px;}
.xb_c00312{left:-110.543400px;}
.xc_c00312{left:-101.543400px;}
.x11_c00312{left:-97.043400px;}
.x0_c00312{left:0.000000px;}
.x1d_c00312{left:9.119850px;}
.x14_c00312{left:127.620000px;}
.x17_c00312{left:148.950000px;}
.x15_c00312{left:159.570000px;}
.x16_c00312{left:172.620000px;}
.x19_c00312{left:178.491120px;}
.x1a_c00312{left:212.639280px;}
.x18_c00312{left:482.262450px;}
.x1c_c00312{left:527.220000px;}
.x1b_c00312{left:536.339850px;}
.x13_c00312{left:679.950000px;}
.x12_c00312{left:804.366150px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.lsb_c00312{letter-spacing:-0.320000pt;}
.lsa_c00312{letter-spacing:-0.256000pt;}
.ls9_c00312{letter-spacing:-0.128000pt;}
.lsd_c00312{letter-spacing:-0.106880pt;}
.ls8_c00312{letter-spacing:-0.064000pt;}
.lsc_c00312{letter-spacing:-0.058560pt;}
.ls7_c00312{letter-spacing:0.000000pt;}
.ls4_c00312{letter-spacing:0.058560pt;}
.ls0_c00312{letter-spacing:0.064000pt;}
.ls6_c00312{letter-spacing:0.106880pt;}
.ls1_c00312{letter-spacing:0.128000pt;}
.ls2_c00312{letter-spacing:0.175680pt;}
.ls5_c00312{letter-spacing:14.640000pt;}
.ls3_c00312{letter-spacing:29.397120pt;}
.ws2_c00312{word-spacing:-16.064000pt;}
.ws0_c00312{word-spacing:-16.000000pt;}
.ws3_c00312{word-spacing:-15.936000pt;}
.ws1_c00312{word-spacing:-15.872000pt;}
.ws9_c00312{word-spacing:-14.698560pt;}
.ws7_c00312{word-spacing:-14.581440pt;}
.wsb_c00312{word-spacing:-12.184320pt;}
.wsc_c00312{word-spacing:-11.970560pt;}
.ws2d_c00312{word-spacing:-0.587840pt;}
.ws2e_c00312{word-spacing:-0.534400pt;}
.ws6_c00312{word-spacing:-0.256000pt;}
.ws2c_c00312{word-spacing:-0.175680pt;}
.ws11_c00312{word-spacing:-0.128000pt;}
.ws27_c00312{word-spacing:-0.117120pt;}
.wse_c00312{word-spacing:-0.064000pt;}
.wsd_c00312{word-spacing:0.000000pt;}
.ws29_c00312{word-spacing:0.058560pt;}
.ws12_c00312{word-spacing:0.064000pt;}
.ws28_c00312{word-spacing:0.117120pt;}
.ws10_c00312{word-spacing:0.128000pt;}
.wsf_c00312{word-spacing:0.384000pt;}
.ws13_c00312{word-spacing:0.448000pt;}
.ws1f_c00312{word-spacing:1.728000pt;}
.ws1e_c00312{word-spacing:1.856000pt;}
.ws1d_c00312{word-spacing:1.920000pt;}
.ws17_c00312{word-spacing:3.776000pt;}
.ws2b_c00312{word-spacing:4.040640pt;}
.ws2a_c00312{word-spacing:4.626240pt;}
.ws23_c00312{word-spacing:5.312000pt;}
.ws22_c00312{word-spacing:5.376000pt;}
.ws24_c00312{word-spacing:5.440000pt;}
.ws25_c00312{word-spacing:5.680320pt;}
.ws8_c00312{word-spacing:5.856000pt;}
.ws26_c00312{word-spacing:5.914560pt;}
.ws18_c00312{word-spacing:6.336000pt;}
.ws19_c00312{word-spacing:6.400000pt;}
.ws20_c00312{word-spacing:7.360000pt;}
.ws14_c00312{word-spacing:9.984000pt;}
.ws15_c00312{word-spacing:10.176000pt;}
.ws16_c00312{word-spacing:10.240000pt;}
.ws1a_c00312{word-spacing:10.816000pt;}
.ws1b_c00312{word-spacing:10.880000pt;}
.ws1c_c00312{word-spacing:11.200000pt;}
.ws21_c00312{word-spacing:13.696000pt;}
.wsa_c00312{word-spacing:23.775360pt;}
.ws5_c00312{word-spacing:287.680000pt;}
.ws4_c00312{word-spacing:872.192000pt;}
._0_c00312{margin-left:-1.088000pt;}
._1_c00312{width:1.024000pt;}
._4_c00312{width:12.800000pt;}
._6_c00312{width:19.222400pt;}
._5_c00312{width:53.504000pt;}
._2_c00312{width:341.760000pt;}
._3_c00312{width:354.880000pt;}
.fs2_c00312{font-size:53.440000pt;}
.fs1_c00312{font-size:58.560000pt;}
.fs0_c00312{font-size:64.000000pt;}
.y0_c00312{bottom:0.000000pt;}
.y16_c00312{bottom:3.599467pt;}
.y7_c00312{bottom:3.679333pt;}
.y10_c00312{bottom:3.679467pt;}
.ye_c00312{bottom:3.680667pt;}
.yc_c00312{bottom:3.680800pt;}
.y6_c00312{bottom:22.079333pt;}
.y9_c00312{bottom:22.079467pt;}
.y13_c00312{bottom:22.080667pt;}
.yb_c00312{bottom:22.080800pt;}
.y1_c00312{bottom:54.887600pt;}
.y26_c00312{bottom:108.760000pt;}
.y46_c00312{bottom:116.003200pt;}
.y3f_c00312{bottom:117.470187pt;}
.y25_c00312{bottom:129.480000pt;}
.y45_c00312{bottom:140.113867pt;}
.y3e_c00312{bottom:142.753467pt;}
.y3d_c00312{bottom:168.036747pt;}
.y24_c00312{bottom:186.918667pt;}
.y2d_c00312{bottom:186.920000pt;}
.y3c_c00312{bottom:220.916427pt;}
.y23_c00312{bottom:223.720000pt;}
.y22_c00312{bottom:243.720000pt;}
.y3b_c00312{bottom:246.199707pt;}
.y21_c00312{bottom:264.360000pt;}
.y3a_c00312{bottom:271.556187pt;}
.y39_c00312{bottom:296.839467pt;}
.y20_c00312{bottom:321.798667pt;}
.y2c_c00312{bottom:321.800000pt;}
.y38_c00312{bottom:350.999467pt;}
.y1e_c00312{bottom:358.600000pt;}
.y1f_c00312{bottom:362.279467pt;}
.y37_c00312{bottom:378.599467pt;}
.y1d_c00312{bottom:395.400000pt;}
.y36_c00312{bottom:406.199467pt;}
.y1c_c00312{bottom:432.198667pt;}
.y2b_c00312{bottom:432.200000pt;}
.y35_c00312{bottom:433.799467pt;}
.y1b_c00312{bottom:452.920000pt;}
.y34_c00312{bottom:461.399467pt;}
.y1a_c00312{bottom:490.360000pt;}
.y33_c00312{bottom:516.599467pt;}
.y19_c00312{bottom:527.800000pt;}
.y44_c00312{bottom:547.157333pt;}
.y18_c00312{bottom:585.318667pt;}
.y2a_c00312{bottom:585.320000pt;}
.y17_c00312{bottom:622.120000pt;}
.y15_c00312{bottom:642.120000pt;}
.y41_c00312{bottom:649.389627pt;}
.y14_c00312{bottom:662.760000pt;}
.y40_c00312{bottom:680.304667pt;}
.y43_c00312{bottom:711.381733pt;}
.y12_c00312{bottom:720.198667pt;}
.y29_c00312{bottom:720.200000pt;}
.y42_c00312{bottom:754.212187pt;}
.y11_c00312{bottom:757.000000pt;}
.yf_c00312{bottom:793.800000pt;}
.yd_c00312{bottom:830.598667pt;}
.y28_c00312{bottom:830.600000pt;}
.y32_c00312{bottom:847.719467pt;}
.ya_c00312{bottom:851.238667pt;}
.y27_c00312{bottom:851.240000pt;}
.y31_c00312{bottom:875.319467pt;}
.y8_c00312{bottom:888.760000pt;}
.y30_c00312{bottom:902.919467pt;}
.y5_c00312{bottom:926.200000pt;}
.y2f_c00312{bottom:930.519467pt;}
.y2e_c00312{bottom:958.119467pt;}
.y4_c00312{bottom:994.839467pt;}
.y3_c00312{bottom:1013.319467pt;}
.y2_c00312{bottom:1060.599467pt;}
.h8_c00312{height:19.998667pt;}
.h7_c00312{height:20.000000pt;}
.h5_c00312{height:36.798667pt;}
.h6_c00312{height:36.800000pt;}
.ha_c00312{height:44.072344pt;}
.h2_c00312{height:44.800000pt;}
.h9_c00312{height:63.479040pt;}
.h3_c00312{height:68.288000pt;}
.h4_c00312{height:69.376000pt;}
.hc_c00312{height:128.720000pt;}
.hb_c00312{height:152.801333pt;}
.h0_c00312{height:1122.520000pt;}
.h1_c00312{height:1122.666667pt;}
.w3_c00312{width:-514.501333pt;}
.w6_c00312{width:-391.621333pt;}
.w7_c00312{width:-278.264000pt;}
.w9_c00312{width:-278.262667pt;}
.w4_c00312{width:-174.261333pt;}
.w5_c00312{width:-57.621333pt;}
.w2_c00312{width:0.000000pt;}
.w8_c00312{width:0.058667pt;}
.wb_c00312{width:82.800000pt;}
.wa_c00312{width:137.921333pt;}
.w0_c00312{width:793.701333pt;}
.w1_c00312{width:794.000000pt;}
.x1_c00312{left:-745.700800pt;}
.x2_c00312{left:-680.260800pt;}
.x5_c00312{left:-509.860800pt;}
.xe_c00312{left:-472.660800pt;}
.x3_c00312{left:-462.020800pt;}
.x10_c00312{left:-432.340800pt;}
.x8_c00312{left:-424.340800pt;}
.x6_c00312{left:-386.980800pt;}
.xd_c00312{left:-318.900800pt;}
.x9_c00312{left:-310.900800pt;}
.x7_c00312{left:-273.540800pt;}
.xf_c00312{left:-214.980800pt;}
.xa_c00312{left:-206.980800pt;}
.x4_c00312{left:-169.620800pt;}
.xb_c00312{left:-98.260800pt;}
.xc_c00312{left:-90.260800pt;}
.x11_c00312{left:-86.260800pt;}
.x0_c00312{left:0.000000pt;}
.x1d_c00312{left:8.106533pt;}
.x14_c00312{left:113.440000pt;}
.x17_c00312{left:132.400000pt;}
.x15_c00312{left:141.840000pt;}
.x16_c00312{left:153.440000pt;}
.x19_c00312{left:158.658773pt;}
.x1a_c00312{left:189.012693pt;}
.x18_c00312{left:428.677733pt;}
.x1c_c00312{left:468.640000pt;}
.x1b_c00312{left:476.746533pt;}
.x13_c00312{left:604.400000pt;}
.x12_c00312{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00313;src:url('chunks/assets/font_3c17e115dee9af4acd2c2e92.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00313;src:url('chunks/assets/font_83fc29f4b854f6b733d3623c.woff2')format("woff");}.ff3_c00313{font-family:ff3_c00313;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00313;src:url('chunks/assets/font_8042117a2dfaff5d3a1c4b2f.woff2')format("woff");}.ff4_c00313{font-family:ff4_c00313;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsb_c00313{letter-spacing:-0.461160px;}
.lsd_c00313{letter-spacing:-0.120240px;}
.lsa_c00313{letter-spacing:-0.065880px;}
.lsc_c00313{letter-spacing:-0.060120px;}
.ls9_c00313{letter-spacing:0.000000px;}
.ls2_c00313{letter-spacing:0.065880px;}
.ls6_c00313{letter-spacing:0.072000px;}
.ls8_c00313{letter-spacing:0.120240px;}
.ls5_c00313{letter-spacing:0.144000px;}
.ls1_c00313{letter-spacing:0.197640px;}
.ls3_c00313{letter-spacing:16.470000px;}
.ls0_c00313{letter-spacing:16.595172px;}
.ls7_c00313{letter-spacing:16.601760px;}
.ls4_c00313{letter-spacing:54.673812px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00313{word-spacing:-18.000000px;}
.ws2_c00313{word-spacing:-16.535880px;}
.ws1_c00313{word-spacing:-16.404120px;}
.ws6_c00313{word-spacing:-13.707360px;}
.ws7_c00313{word-spacing:-13.527000px;}
.ws15_c00313{word-spacing:-0.541080px;}
.ws3_c00313{word-spacing:-0.270108px;}
.ws9_c00313{word-spacing:-0.197640px;}
.ws5_c00313{word-spacing:-0.144000px;}
.wsb_c00313{word-spacing:-0.131760px;}
.ws10_c00313{word-spacing:-0.072000px;}
.ws8_c00313{word-spacing:0.000000px;}
.ws4_c00313{word-spacing:0.131760px;}
.ws11_c00313{word-spacing:0.527040px;}
.wsd_c00313{word-spacing:5.688000px;}
.wsc_c00313{word-spacing:5.976000px;}
.wsf_c00313{word-spacing:6.048000px;}
.wse_c00313{word-spacing:6.120000px;}
.ws13_c00313{word-spacing:7.056000px;}
.ws12_c00313{word-spacing:7.128000px;}
.ws14_c00313{word-spacing:10.440000px;}
.wsa_c00313{word-spacing:10.936080px;}
._2_c00313{margin-left:-1.185840px;}
._0_c00313{width:1.060668px;}
._1_c00313{width:11.199600px;}
.fc0_c00313{color:rgb(35,31,32);}
.fs2_c00313{font-size:60.120000px;}
.fs1_c00313{font-size:65.880000px;}
.fs0_c00313{font-size:72.000000px;}
.y0_c00313{bottom:0.000000px;}
.y1_c00313{bottom:61.748550px;}
.y16_c00313{bottom:151.694400px;}
.y17_c00313{bottom:246.828300px;}
.y1a_c00313{bottom:311.305200px;}
.y19_c00313{bottom:338.429700px;}
.y18_c00313{bottom:413.345670px;}
.y15_c00313{bottom:493.154400px;}
.y14_c00313{bottom:524.204400px;}
.y13_c00313{bottom:555.254400px;}
.y12_c00313{bottom:615.907770px;}
.y11_c00313{bottom:644.433810px;}
.y10_c00313{bottom:672.877500px;}
.yf_c00313{bottom:701.321190px;}
.ye_c00313{bottom:729.764880px;}
.yd_c00313{bottom:789.254520px;}
.yc_c00313{bottom:817.780560px;}
.yb_c00313{bottom:846.224250px;}
.ya_c00313{bottom:907.154250px;}
.y9_c00313{bottom:938.204250px;}
.y8_c00313{bottom:998.853450px;}
.y7_c00313{bottom:1027.297140px;}
.y6_c00313{bottom:1055.740830px;}
.y5_c00313{bottom:1084.266870px;}
.y4_c00313{bottom:1112.710560px;}
.y3_c00313{bottom:1141.154250px;}
.y2_c00313{bottom:1193.174400px;}
.h6_c00313{height:49.581387px;}
.h2_c00313{height:50.400000px;}
.h4_c00313{height:71.413920px;}
.h3_c00313{height:76.824000px;}
.h5_c00313{height:78.048000px;}
.h0_c00313{height:1262.835000px;}
.h1_c00313{height:1263.000000px;}
.w0_c00313{width:892.914000px;}
.w1_c00313{width:893.250000px;}
.x0_c00313{left:0.000000px;}
.x1_c00313{left:54.000000px;}
.x2_c00313{left:127.620000px;}
.x5_c00313{left:141.120000px;}
.x3_c00313{left:148.950000px;}
.x4_c00313{left:159.570000px;}
.x7_c00313{left:233.391870px;}
.x6_c00313{left:429.623550px;}
.x8_c00313{left:547.282500px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.lsb_c00313{letter-spacing:-0.409920pt;}
.lsd_c00313{letter-spacing:-0.106880pt;}
.lsa_c00313{letter-spacing:-0.058560pt;}
.lsc_c00313{letter-spacing:-0.053440pt;}
.ls9_c00313{letter-spacing:0.000000pt;}
.ls2_c00313{letter-spacing:0.058560pt;}
.ls6_c00313{letter-spacing:0.064000pt;}
.ls8_c00313{letter-spacing:0.106880pt;}
.ls5_c00313{letter-spacing:0.128000pt;}
.ls1_c00313{letter-spacing:0.175680pt;}
.ls3_c00313{letter-spacing:14.640000pt;}
.ls0_c00313{letter-spacing:14.751264pt;}
.ls7_c00313{letter-spacing:14.757120pt;}
.ls4_c00313{letter-spacing:48.598944pt;}
.ws0_c00313{word-spacing:-16.000000pt;}
.ws2_c00313{word-spacing:-14.698560pt;}
.ws1_c00313{word-spacing:-14.581440pt;}
.ws6_c00313{word-spacing:-12.184320pt;}
.ws7_c00313{word-spacing:-12.024000pt;}
.ws15_c00313{word-spacing:-0.480960pt;}
.ws3_c00313{word-spacing:-0.240096pt;}
.ws9_c00313{word-spacing:-0.175680pt;}
.ws5_c00313{word-spacing:-0.128000pt;}
.wsb_c00313{word-spacing:-0.117120pt;}
.ws10_c00313{word-spacing:-0.064000pt;}
.ws8_c00313{word-spacing:0.000000pt;}
.ws4_c00313{word-spacing:0.117120pt;}
.ws11_c00313{word-spacing:0.468480pt;}
.wsd_c00313{word-spacing:5.056000pt;}
.wsc_c00313{word-spacing:5.312000pt;}
.wsf_c00313{word-spacing:5.376000pt;}
.wse_c00313{word-spacing:5.440000pt;}
.ws13_c00313{word-spacing:6.272000pt;}
.ws12_c00313{word-spacing:6.336000pt;}
.ws14_c00313{word-spacing:9.280000pt;}
.wsa_c00313{word-spacing:9.720960pt;}
._2_c00313{margin-left:-1.054080pt;}
._0_c00313{width:0.942816pt;}
._1_c00313{width:9.955200pt;}
.fs2_c00313{font-size:53.440000pt;}
.fs1_c00313{font-size:58.560000pt;}
.fs0_c00313{font-size:64.000000pt;}
.y0_c00313{bottom:0.000000pt;}
.y1_c00313{bottom:54.887600pt;}
.y16_c00313{bottom:134.839467pt;}
.y17_c00313{bottom:219.402933pt;}
.y1a_c00313{bottom:276.715733pt;}
.y19_c00313{bottom:300.826400pt;}
.y18_c00313{bottom:367.418373pt;}
.y15_c00313{bottom:438.359467pt;}
.y14_c00313{bottom:465.959467pt;}
.y13_c00313{bottom:493.559467pt;}
.y12_c00313{bottom:547.473573pt;}
.y11_c00313{bottom:572.830053pt;}
.y10_c00313{bottom:598.113333pt;}
.yf_c00313{bottom:623.396613pt;}
.ye_c00313{bottom:648.679893pt;}
.yd_c00313{bottom:701.559573pt;}
.yc_c00313{bottom:726.916053pt;}
.yb_c00313{bottom:752.199333pt;}
.ya_c00313{bottom:806.359333pt;}
.y9_c00313{bottom:833.959333pt;}
.y8_c00313{bottom:887.869733pt;}
.y7_c00313{bottom:913.153013pt;}
.y6_c00313{bottom:938.436293pt;}
.y5_c00313{bottom:963.792773pt;}
.y4_c00313{bottom:989.076053pt;}
.y3_c00313{bottom:1014.359333pt;}
.y2_c00313{bottom:1060.599467pt;}
.h6_c00313{height:44.072344pt;}
.h2_c00313{height:44.800000pt;}
.h4_c00313{height:63.479040pt;}
.h3_c00313{height:68.288000pt;}
.h5_c00313{height:69.376000pt;}
.h0_c00313{height:1122.520000pt;}
.h1_c00313{height:1122.666667pt;}
.w0_c00313{width:793.701333pt;}
.w1_c00313{width:794.000000pt;}
.x0_c00313{left:0.000000pt;}
.x1_c00313{left:48.000000pt;}
.x2_c00313{left:113.440000pt;}
.x5_c00313{left:125.440000pt;}
.x3_c00313{left:132.400000pt;}
.x4_c00313{left:141.840000pt;}
.x7_c00313{left:207.459440pt;}
.x6_c00313{left:381.887600pt;}
.x8_c00313{left:486.473333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00314;src:url('chunks/assets/font_af33fccb8e0ef42e808735a5.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00314;src:url('chunks/assets/font_5101e8bc5d1500895b4f1bd3.woff2')format("woff");}.ff3_c00314{font-family:ff3_c00314;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00314;src:url('chunks/assets/font_7908974dd995168c7c7d3333.woff2')format("woff");}.ff4_c00314{font-family:ff4_c00314;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00314;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00314{font-family:ff5_c00314;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00314;src:url('chunks/assets/font_4b9b931569fbecca94c64d09.woff2')format("woff");}.ff6_c00314{font-family:ff6_c00314;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00314;src:url('chunks/assets/font_3163f2affca5e209a605e901.woff2')format("woff");}.ff7_c00314{font-family:ff7_c00314;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00314;src:url('chunks/assets/font_87a8cb44cdbdc5190cf521cb.woff2')format("woff");}.ff8_c00314{font-family:ff8_c00314;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00314{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.lse_c00314{letter-spacing:-0.461160px;}
.ls10_c00314{letter-spacing:-0.120240px;}
.lsd_c00314{letter-spacing:-0.065880px;}
.lsf_c00314{letter-spacing:-0.060120px;}
.lsc_c00314{letter-spacing:0.000000px;}
.ls2_c00314{letter-spacing:0.065880px;}
.ls6_c00314{letter-spacing:0.072000px;}
.ls8_c00314{letter-spacing:0.120240px;}
.ls5_c00314{letter-spacing:0.144000px;}
.ls1_c00314{letter-spacing:0.197640px;}
.ls3_c00314{letter-spacing:16.470000px;}
.ls0_c00314{letter-spacing:16.595172px;}
.ls7_c00314{letter-spacing:16.601760px;}
.ls9_c00314{letter-spacing:19.829880px;}
.lsa_c00314{letter-spacing:20.488680px;}
.lsb_c00314{letter-spacing:21.240000px;}
.ls4_c00314{letter-spacing:54.673812px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00314{word-spacing:-18.000000px;}
.ws2_c00314{word-spacing:-16.535880px;}
.ws1_c00314{word-spacing:-16.404120px;}
.ws6_c00314{word-spacing:-13.707360px;}
.ws7_c00314{word-spacing:-13.527000px;}
.ws2a_c00314{word-spacing:-1.803600px;}
.ws19_c00314{word-spacing:-0.541080px;}
.wsb_c00314{word-spacing:-0.504000px;}
.ws1e_c00314{word-spacing:-0.360000px;}
.ws3_c00314{word-spacing:-0.270108px;}
.wsd_c00314{word-spacing:-0.197640px;}
.ws5_c00314{word-spacing:-0.144000px;}
.wsf_c00314{word-spacing:-0.131760px;}
.ws14_c00314{word-spacing:-0.072000px;}
.wsc_c00314{word-spacing:0.000000px;}
.ws4_c00314{word-spacing:0.131760px;}
.ws15_c00314{word-spacing:0.527040px;}
.ws26_c00314{word-spacing:0.648000px;}
.ws25_c00314{word-spacing:0.720000px;}
.wsa_c00314{word-spacing:2.437560px;}
.ws27_c00314{word-spacing:2.736000px;}
.ws24_c00314{word-spacing:2.880000px;}
.ws29_c00314{word-spacing:3.096000px;}
.ws20_c00314{word-spacing:3.096360px;}
.ws28_c00314{word-spacing:3.240000px;}
.ws1f_c00314{word-spacing:3.359880px;}
.ws9_c00314{word-spacing:3.689280px;}
.ws21_c00314{word-spacing:3.821040px;}
.ws11_c00314{word-spacing:5.688000px;}
.ws10_c00314{word-spacing:5.976000px;}
.ws13_c00314{word-spacing:6.048000px;}
.ws12_c00314{word-spacing:6.120000px;}
.ws17_c00314{word-spacing:7.056000px;}
.ws16_c00314{word-spacing:7.128000px;}
.ws18_c00314{word-spacing:10.440000px;}
.wse_c00314{word-spacing:10.936080px;}
.ws23_c00314{word-spacing:17.136000px;}
.ws22_c00314{word-spacing:17.208000px;}
.ws1c_c00314{word-spacing:19.368000px;}
.ws8_c00314{word-spacing:24.912000px;}
.ws1d_c00314{word-spacing:25.128000px;}
.ws1b_c00314{word-spacing:26.208000px;}
.ws1a_c00314{word-spacing:26.280000px;}
._2_c00314{margin-left:-1.185840px;}
._0_c00314{width:1.060668px;}
._1_c00314{width:11.199600px;}
._3_c00314{width:17.655840px;}
.fc1_c00314{color:transparent;}
.fc0_c00314{color:rgb(35,31,32);}
.fs2_c00314{font-size:60.120000px;}
.fs1_c00314{font-size:65.880000px;}
.fs0_c00314{font-size:72.000000px;}
.y0_c00314{bottom:0.000000px;}
.y1_c00314{bottom:61.748550px;}
.y2e_c00314{bottom:138.734400px;}
.y33_c00314{bottom:144.065850px;}
.y16_c00314{bottom:151.694400px;}
.y2d_c00314{bottom:169.784400px;}
.y32_c00314{bottom:171.190200px;}
.y2c_c00314{bottom:231.884400px;}
.y17_c00314{bottom:246.828300px;}
.y31_c00314{bottom:257.802000px;}
.y1a_c00314{bottom:311.307000px;}
.y19_c00314{bottom:338.436150px;}
.y18_c00314{bottom:413.345670px;}
.y2f_c00314{bottom:417.122250px;}
.y30_c00314{bottom:440.388690px;}
.y15_c00314{bottom:493.154400px;}
.y14_c00314{bottom:524.204400px;}
.y13_c00314{bottom:555.254400px;}
.y2b_c00314{bottom:604.394400px;}
.y12_c00314{bottom:615.907770px;}
.y2a_c00314{bottom:635.444400px;}
.y11_c00314{bottom:644.433810px;}
.y29_c00314{bottom:666.494400px;}
.y10_c00314{bottom:672.877500px;}
.yf_c00314{bottom:701.321190px;}
.y28_c00314{bottom:727.226430px;}
.ye_c00314{bottom:729.764880px;}
.y27_c00314{bottom:755.670120px;}
.y26_c00314{bottom:784.113810px;}
.yd_c00314{bottom:789.254520px;}
.y25_c00314{bottom:812.557500px;}
.yc_c00314{bottom:817.780560px;}
.y24_c00314{bottom:841.001190px;}
.yb_c00314{bottom:846.224250px;}
.y23_c00314{bottom:900.573180px;}
.ya_c00314{bottom:907.154250px;}
.y22_c00314{bottom:929.016870px;}
.y9_c00314{bottom:938.204250px;}
.y21_c00314{bottom:957.460560px;}
.y20_c00314{bottom:985.904250px;}
.y8_c00314{bottom:998.853450px;}
.y7_c00314{bottom:1027.297140px;}
.y1f_c00314{bottom:1046.834400px;}
.y6_c00314{bottom:1055.740830px;}
.y1e_c00314{bottom:1077.884400px;}
.y5_c00314{bottom:1084.266870px;}
.y1d_c00314{bottom:1108.934400px;}
.y4_c00314{bottom:1112.710560px;}
.y1c_c00314{bottom:1139.984400px;}
.y3_c00314{bottom:1141.154250px;}
.y1b_c00314{bottom:1193.174400px;}
.y2_c00314{bottom:1193.174550px;}
.h6_c00314{height:49.581387px;}
.h2_c00314{height:50.400000px;}
.h4_c00314{height:71.413920px;}
.h3_c00314{height:76.824000px;}
.h5_c00314{height:78.048000px;}
.h8_c00314{height:158.403000px;}
.h7_c00314{height:185.490000px;}
.h0_c00314{height:1262.835000px;}
.h1_c00314{height:1263.000000px;}
.w2_c00314{width:0.000000px;}
.w3_c00314{width:0.066000px;}
.w4_c00314{width:163.080000px;}
.w5_c00314{width:178.110000px;}
.w0_c00314{width:892.914000px;}
.w1_c00314{width:893.250000px;}
.x1_c00314{left:-838.913400px;}
.x2_c00314{left:-765.293400px;}
.x5_c00314{left:-751.793400px;}
.x3_c00314{left:-743.963400px;}
.x4_c00314{left:-733.343400px;}
.x7_c00314{left:-659.521530px;}
.x6_c00314{left:-463.289850px;}
.x8_c00314{left:-345.635010px;}
.x0_c00314{left:0.000000px;}
.x12_c00314{left:9.119250px;}
.xc_c00314{left:127.620000px;}
.xd_c00314{left:148.950000px;}
.xb_c00314{left:159.570000px;}
.xe_c00314{left:163.620000px;}
.x10_c00314{left:175.398660px;}
.xf_c00314{left:482.356350px;}
.x11_c00314{left:527.670000px;}
.xa_c00314{left:679.950000px;}
.x9_c00314{left:804.366150px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.lse_c00314{letter-spacing:-0.409920pt;}
.ls10_c00314{letter-spacing:-0.106880pt;}
.lsd_c00314{letter-spacing:-0.058560pt;}
.lsf_c00314{letter-spacing:-0.053440pt;}
.lsc_c00314{letter-spacing:0.000000pt;}
.ls2_c00314{letter-spacing:0.058560pt;}
.ls6_c00314{letter-spacing:0.064000pt;}
.ls8_c00314{letter-spacing:0.106880pt;}
.ls5_c00314{letter-spacing:0.128000pt;}
.ls1_c00314{letter-spacing:0.175680pt;}
.ls3_c00314{letter-spacing:14.640000pt;}
.ls0_c00314{letter-spacing:14.751264pt;}
.ls7_c00314{letter-spacing:14.757120pt;}
.ls9_c00314{letter-spacing:17.626560pt;}
.lsa_c00314{letter-spacing:18.212160pt;}
.lsb_c00314{letter-spacing:18.880000pt;}
.ls4_c00314{letter-spacing:48.598944pt;}
.ws0_c00314{word-spacing:-16.000000pt;}
.ws2_c00314{word-spacing:-14.698560pt;}
.ws1_c00314{word-spacing:-14.581440pt;}
.ws6_c00314{word-spacing:-12.184320pt;}
.ws7_c00314{word-spacing:-12.024000pt;}
.ws2a_c00314{word-spacing:-1.603200pt;}
.ws19_c00314{word-spacing:-0.480960pt;}
.wsb_c00314{word-spacing:-0.448000pt;}
.ws1e_c00314{word-spacing:-0.320000pt;}
.ws3_c00314{word-spacing:-0.240096pt;}
.wsd_c00314{word-spacing:-0.175680pt;}
.ws5_c00314{word-spacing:-0.128000pt;}
.wsf_c00314{word-spacing:-0.117120pt;}
.ws14_c00314{word-spacing:-0.064000pt;}
.wsc_c00314{word-spacing:0.000000pt;}
.ws4_c00314{word-spacing:0.117120pt;}
.ws15_c00314{word-spacing:0.468480pt;}
.ws26_c00314{word-spacing:0.576000pt;}
.ws25_c00314{word-spacing:0.640000pt;}
.wsa_c00314{word-spacing:2.166720pt;}
.ws27_c00314{word-spacing:2.432000pt;}
.ws24_c00314{word-spacing:2.560000pt;}
.ws29_c00314{word-spacing:2.752000pt;}
.ws20_c00314{word-spacing:2.752320pt;}
.ws28_c00314{word-spacing:2.880000pt;}
.ws1f_c00314{word-spacing:2.986560pt;}
.ws9_c00314{word-spacing:3.279360pt;}
.ws21_c00314{word-spacing:3.396480pt;}
.ws11_c00314{word-spacing:5.056000pt;}
.ws10_c00314{word-spacing:5.312000pt;}
.ws13_c00314{word-spacing:5.376000pt;}
.ws12_c00314{word-spacing:5.440000pt;}
.ws17_c00314{word-spacing:6.272000pt;}
.ws16_c00314{word-spacing:6.336000pt;}
.ws18_c00314{word-spacing:9.280000pt;}
.wse_c00314{word-spacing:9.720960pt;}
.ws23_c00314{word-spacing:15.232000pt;}
.ws22_c00314{word-spacing:15.296000pt;}
.ws1c_c00314{word-spacing:17.216000pt;}
.ws8_c00314{word-spacing:22.144000pt;}
.ws1d_c00314{word-spacing:22.336000pt;}
.ws1b_c00314{word-spacing:23.296000pt;}
.ws1a_c00314{word-spacing:23.360000pt;}
._2_c00314{margin-left:-1.054080pt;}
._0_c00314{width:0.942816pt;}
._1_c00314{width:9.955200pt;}
._3_c00314{width:15.694080pt;}
.fs2_c00314{font-size:53.440000pt;}
.fs1_c00314{font-size:58.560000pt;}
.fs0_c00314{font-size:64.000000pt;}
.y0_c00314{bottom:0.000000pt;}
.y1_c00314{bottom:54.887600pt;}
.y2e_c00314{bottom:123.319467pt;}
.y33_c00314{bottom:128.058533pt;}
.y16_c00314{bottom:134.839467pt;}
.y2d_c00314{bottom:150.919467pt;}
.y32_c00314{bottom:152.169067pt;}
.y2c_c00314{bottom:206.119467pt;}
.y17_c00314{bottom:219.402933pt;}
.y31_c00314{bottom:229.157333pt;}
.y1a_c00314{bottom:276.717333pt;}
.y19_c00314{bottom:300.832133pt;}
.y18_c00314{bottom:367.418373pt;}
.y2f_c00314{bottom:370.775333pt;}
.y30_c00314{bottom:391.456613pt;}
.y15_c00314{bottom:438.359467pt;}
.y14_c00314{bottom:465.959467pt;}
.y13_c00314{bottom:493.559467pt;}
.y2b_c00314{bottom:537.239467pt;}
.y12_c00314{bottom:547.473573pt;}
.y2a_c00314{bottom:564.839467pt;}
.y11_c00314{bottom:572.830053pt;}
.y29_c00314{bottom:592.439467pt;}
.y10_c00314{bottom:598.113333pt;}
.yf_c00314{bottom:623.396613pt;}
.y28_c00314{bottom:646.423493pt;}
.ye_c00314{bottom:648.679893pt;}
.y27_c00314{bottom:671.706773pt;}
.y26_c00314{bottom:696.990053pt;}
.yd_c00314{bottom:701.559573pt;}
.y25_c00314{bottom:722.273333pt;}
.yc_c00314{bottom:726.916053pt;}
.y24_c00314{bottom:747.556613pt;}
.yb_c00314{bottom:752.199333pt;}
.y23_c00314{bottom:800.509493pt;}
.ya_c00314{bottom:806.359333pt;}
.y22_c00314{bottom:825.792773pt;}
.y9_c00314{bottom:833.959333pt;}
.y21_c00314{bottom:851.076053pt;}
.y20_c00314{bottom:876.359333pt;}
.y8_c00314{bottom:887.869733pt;}
.y7_c00314{bottom:913.153013pt;}
.y1f_c00314{bottom:930.519467pt;}
.y6_c00314{bottom:938.436293pt;}
.y1e_c00314{bottom:958.119467pt;}
.y5_c00314{bottom:963.792773pt;}
.y1d_c00314{bottom:985.719467pt;}
.y4_c00314{bottom:989.076053pt;}
.y1c_c00314{bottom:1013.319467pt;}
.y3_c00314{bottom:1014.359333pt;}
.y1b_c00314{bottom:1060.599467pt;}
.y2_c00314{bottom:1060.599600pt;}
.h6_c00314{height:44.072344pt;}
.h2_c00314{height:44.800000pt;}
.h4_c00314{height:63.479040pt;}
.h3_c00314{height:68.288000pt;}
.h5_c00314{height:69.376000pt;}
.h8_c00314{height:140.802667pt;}
.h7_c00314{height:164.880000pt;}
.h0_c00314{height:1122.520000pt;}
.h1_c00314{height:1122.666667pt;}
.w2_c00314{width:0.000000pt;}
.w3_c00314{width:0.058667pt;}
.w4_c00314{width:144.960000pt;}
.w5_c00314{width:158.320000pt;}
.w0_c00314{width:793.701333pt;}
.w1_c00314{width:794.000000pt;}
.x1_c00314{left:-745.700800pt;}
.x2_c00314{left:-680.260800pt;}
.x5_c00314{left:-668.260800pt;}
.x3_c00314{left:-661.300800pt;}
.x4_c00314{left:-651.860800pt;}
.x7_c00314{left:-586.241360pt;}
.x6_c00314{left:-411.813200pt;}
.x8_c00314{left:-307.231120pt;}
.x0_c00314{left:0.000000pt;}
.x12_c00314{left:8.106000pt;}
.xc_c00314{left:113.440000pt;}
.xd_c00314{left:132.400000pt;}
.xb_c00314{left:141.840000pt;}
.xe_c00314{left:145.440000pt;}
.x10_c00314{left:155.909920pt;}
.xf_c00314{left:428.761200pt;}
.x11_c00314{left:469.040000pt;}
.xa_c00314{left:604.400000pt;}
.x9_c00314{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00315;src:url('chunks/assets/font_ca5b82ef45f375d5f1ed0651.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00315;src:url('chunks/assets/font_a7cb74b76a85521ca26481d5.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:1.592000;font-style:normal;font-weight:normal;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_c701a4daea96e1c5f4441e2c.woff2')format("woff");}.ff4_c00315{font-family:ff4_c00315;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00315{vertical-align:-52.244280px;}
.v4_c00315{vertical-align:-40.220280px;}
.v3_c00315{vertical-align:-12.084120px;}
.v0_c00315{vertical-align:0.000000px;}
.v2_c00315{vertical-align:12.084120px;}
.ls7_c00315{letter-spacing:-0.360000px;}
.ls8_c00315{letter-spacing:-0.120240px;}
.ls5_c00315{letter-spacing:0.000000px;}
.ls0_c00315{letter-spacing:0.072000px;}
.ls2_c00315{letter-spacing:0.120240px;}
.ls6_c00315{letter-spacing:0.144000px;}
.ls1_c00315{letter-spacing:18.000000px;}
.ls4_c00315{letter-spacing:469.837800px;}
.ls3_c00315{letter-spacing:500.438880px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00315{word-spacing:-36.000000px;}
.ws0_c00315{word-spacing:-18.000000px;}
.ws3_c00315{word-spacing:-17.640000px;}
.ws4_c00315{word-spacing:-13.707360px;}
.ws5_c00315{word-spacing:-13.466880px;}
.ws18_c00315{word-spacing:-0.661320px;}
.ws19_c00315{word-spacing:-0.601200px;}
.ws17_c00315{word-spacing:-0.504000px;}
.wsa_c00315{word-spacing:-0.144000px;}
.ws10_c00315{word-spacing:-0.072000px;}
.ws6_c00315{word-spacing:0.000000px;}
.wse_c00315{word-spacing:0.360000px;}
.wsd_c00315{word-spacing:2.160000px;}
.ws11_c00315{word-spacing:3.888000px;}
.ws12_c00315{word-spacing:4.176000px;}
.ws8_c00315{word-spacing:4.248000px;}
.ws7_c00315{word-spacing:4.320000px;}
.wsf_c00315{word-spacing:10.368000px;}
.ws15_c00315{word-spacing:15.048000px;}
.ws16_c00315{word-spacing:15.480000px;}
.ws1_c00315{word-spacing:17.424000px;}
.wsc_c00315{word-spacing:18.288000px;}
.wsb_c00315{word-spacing:21.600000px;}
.ws9_c00315{word-spacing:24.840000px;}
.ws14_c00315{word-spacing:25.488000px;}
.ws13_c00315{word-spacing:25.560000px;}
._4_c00315{margin-left:-18.000000px;}
._1_c00315{margin-left:-1.375200px;}
._3_c00315{width:1.224000px;}
._0_c00315{width:4.680000px;}
._2_c00315{width:23.544000px;}
.fc1_c00315{color:rgb(0,0,0);}
.fc0_c00315{color:rgb(35,31,32);}
.fs1_c00315{font-size:60.120000px;}
.fs0_c00315{font-size:72.000000px;}
.y0_c00315{bottom:0.000000px;}
.y22_c00315{bottom:13.773000px;}
.y1_c00315{bottom:61.748550px;}
.y12_c00315{bottom:153.314400px;}
.y11_c00315{bottom:184.364400px;}
.y10_c00315{bottom:215.414400px;}
.yf_c00315{bottom:246.464400px;}
.ye_c00315{bottom:277.514400px;}
.yd_c00315{bottom:308.474400px;}
.yc_c00315{bottom:370.574400px;}
.y21_c00315{bottom:521.685000px;}
.y1a_c00315{bottom:554.961840px;}
.y19_c00315{bottom:580.092000px;}
.y16_c00315{bottom:583.098000px;}
.y1b_c00315{bottom:599.991720px;}
.y1c_c00315{bottom:645.021600px;}
.y14_c00315{bottom:656.459430px;}
.y15_c00315{bottom:674.555550px;}
.y18_c00315{bottom:677.576580px;}
.y1d_c00315{bottom:690.051480px;}
.y1e_c00315{bottom:735.081360px;}
.y1f_c00315{bottom:780.111240px;}
.y17_c00315{bottom:791.143260px;}
.y13_c00315{bottom:817.265400px;}
.y20_c00315{bottom:825.141120px;}
.yb_c00315{bottom:891.584400px;}
.ya_c00315{bottom:922.634400px;}
.y9_c00315{bottom:953.684400px;}
.y8_c00315{bottom:984.734400px;}
.y7_c00315{bottom:1015.784400px;}
.y6_c00315{bottom:1046.834400px;}
.y5_c00315{bottom:1077.884400px;}
.y4_c00315{bottom:1108.934400px;}
.y3_c00315{bottom:1139.984400px;}
.y2_c00315{bottom:1193.174400px;}
.h6_c00315{height:28.080000px;}
.h5_c00315{height:49.581387px;}
.h2_c00315{height:50.400000px;}
.h3_c00315{height:76.824000px;}
.h4_c00315{height:78.048000px;}
.h0_c00315{height:1262.835000px;}
.h1_c00315{height:1263.000000px;}
.w4_c00315{width:93.240000px;}
.w3_c00315{width:155.160000px;}
.w2_c00315{width:168.750000px;}
.w0_c00315{width:892.914000px;}
.w1_c00315{width:893.250000px;}
.x0_c00315{left:0.000000px;}
.xe_c00315{left:9.119850px;}
.x1_c00315{left:54.000000px;}
.x2_c00315{left:127.620000px;}
.x3_c00315{left:159.120000px;}
.xc_c00315{left:169.206240px;}
.xb_c00315{left:176.781360px;}
.xd_c00315{left:210.600000px;}
.x4_c00315{left:235.443450px;}
.x7_c00315{left:267.442320px;}
.x8_c00315{left:291.896130px;}
.xa_c00315{left:323.910030px;}
.xf_c00315{left:372.600000px;}
.x5_c00315{left:394.445820px;}
.x9_c00315{left:447.125970px;}
.x6_c00315{left:545.888100px;}
.x10_c00315{left:558.810000px;}
@media print{
.v1_c00315{vertical-align:-46.439360pt;}
.v4_c00315{vertical-align:-35.751360pt;}
.v3_c00315{vertical-align:-10.741440pt;}
.v0_c00315{vertical-align:0.000000pt;}
.v2_c00315{vertical-align:10.741440pt;}
.ls7_c00315{letter-spacing:-0.320000pt;}
.ls8_c00315{letter-spacing:-0.106880pt;}
.ls5_c00315{letter-spacing:0.000000pt;}
.ls0_c00315{letter-spacing:0.064000pt;}
.ls2_c00315{letter-spacing:0.106880pt;}
.ls6_c00315{letter-spacing:0.128000pt;}
.ls1_c00315{letter-spacing:16.000000pt;}
.ls4_c00315{letter-spacing:417.633600pt;}
.ls3_c00315{letter-spacing:444.834560pt;}
.ws2_c00315{word-spacing:-32.000000pt;}
.ws0_c00315{word-spacing:-16.000000pt;}
.ws3_c00315{word-spacing:-15.680000pt;}
.ws4_c00315{word-spacing:-12.184320pt;}
.ws5_c00315{word-spacing:-11.970560pt;}
.ws18_c00315{word-spacing:-0.587840pt;}
.ws19_c00315{word-spacing:-0.534400pt;}
.ws17_c00315{word-spacing:-0.448000pt;}
.wsa_c00315{word-spacing:-0.128000pt;}
.ws10_c00315{word-spacing:-0.064000pt;}
.ws6_c00315{word-spacing:0.000000pt;}
.wse_c00315{word-spacing:0.320000pt;}
.wsd_c00315{word-spacing:1.920000pt;}
.ws11_c00315{word-spacing:3.456000pt;}
.ws12_c00315{word-spacing:3.712000pt;}
.ws8_c00315{word-spacing:3.776000pt;}
.ws7_c00315{word-spacing:3.840000pt;}
.wsf_c00315{word-spacing:9.216000pt;}
.ws15_c00315{word-spacing:13.376000pt;}
.ws16_c00315{word-spacing:13.760000pt;}
.ws1_c00315{word-spacing:15.488000pt;}
.wsc_c00315{word-spacing:16.256000pt;}
.wsb_c00315{word-spacing:19.200000pt;}
.ws9_c00315{word-spacing:22.080000pt;}
.ws14_c00315{word-spacing:22.656000pt;}
.ws13_c00315{word-spacing:22.720000pt;}
._4_c00315{margin-left:-16.000000pt;}
._1_c00315{margin-left:-1.222400pt;}
._3_c00315{width:1.088000pt;}
._0_c00315{width:4.160000pt;}
._2_c00315{width:20.928000pt;}
.fs1_c00315{font-size:53.440000pt;}
.fs0_c00315{font-size:64.000000pt;}
.y0_c00315{bottom:0.000000pt;}
.y22_c00315{bottom:12.242667pt;}
.y1_c00315{bottom:54.887600pt;}
.y12_c00315{bottom:136.279467pt;}
.y11_c00315{bottom:163.879467pt;}
.y10_c00315{bottom:191.479467pt;}
.yf_c00315{bottom:219.079467pt;}
.ye_c00315{bottom:246.679467pt;}
.yd_c00315{bottom:274.199467pt;}
.yc_c00315{bottom:329.399467pt;}
.y21_c00315{bottom:463.720000pt;}
.y1a_c00315{bottom:493.299413pt;}
.y19_c00315{bottom:515.637333pt;}
.y16_c00315{bottom:518.309333pt;}
.y1b_c00315{bottom:533.325973pt;}
.y1c_c00315{bottom:573.352533pt;}
.y14_c00315{bottom:583.519493pt;}
.y15_c00315{bottom:599.604933pt;}
.y18_c00315{bottom:602.290293pt;}
.y1d_c00315{bottom:613.379093pt;}
.y1e_c00315{bottom:653.405653pt;}
.y1f_c00315{bottom:693.432213pt;}
.y17_c00315{bottom:703.238453pt;}
.y13_c00315{bottom:726.458133pt;}
.y20_c00315{bottom:733.458773pt;}
.yb_c00315{bottom:792.519467pt;}
.ya_c00315{bottom:820.119467pt;}
.y9_c00315{bottom:847.719467pt;}
.y8_c00315{bottom:875.319467pt;}
.y7_c00315{bottom:902.919467pt;}
.y6_c00315{bottom:930.519467pt;}
.y5_c00315{bottom:958.119467pt;}
.y4_c00315{bottom:985.719467pt;}
.y3_c00315{bottom:1013.319467pt;}
.y2_c00315{bottom:1060.599467pt;}
.h6_c00315{height:24.960000pt;}
.h5_c00315{height:44.072344pt;}
.h2_c00315{height:44.800000pt;}
.h3_c00315{height:68.288000pt;}
.h4_c00315{height:69.376000pt;}
.h0_c00315{height:1122.520000pt;}
.h1_c00315{height:1122.666667pt;}
.w4_c00315{width:82.880000pt;}
.w3_c00315{width:137.920000pt;}
.w2_c00315{width:150.000000pt;}
.w0_c00315{width:793.701333pt;}
.w1_c00315{width:794.000000pt;}
.x0_c00315{left:0.000000pt;}
.xe_c00315{left:8.106533pt;}
.x1_c00315{left:48.000000pt;}
.x2_c00315{left:113.440000pt;}
.x3_c00315{left:141.440000pt;}
.xc_c00315{left:150.405547pt;}
.xb_c00315{left:157.138987pt;}
.xd_c00315{left:187.200000pt;}
.x4_c00315{left:209.283067pt;}
.x7_c00315{left:237.726507pt;}
.x8_c00315{left:259.463227pt;}
.xa_c00315{left:287.920027pt;}
.xf_c00315{left:331.200000pt;}
.x5_c00315{left:350.618507pt;}
.x9_c00315{left:397.445307pt;}
.x6_c00315{left:485.233867pt;}
.x10_c00315{left:496.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00316;src:url('chunks/assets/font_96a4bc858124d101a5e7ee38.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00316;src:url('chunks/assets/font_14c9ea79864522edf1edf733.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00316;src:url('chunks/assets/font_14bf798a04704c8e55da7d37.woff2')format("woff");}.ff4_c00316{font-family:ff4_c00316;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00316;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00316{font-family:ff5_c00316;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00316;src:url('chunks/assets/font_eb896dd199888b0b67a58a79.woff2')format("woff");}.ff6_c00316{font-family:ff6_c00316;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00316;src:url('chunks/assets/font_1bbf40b1d600cac9e3263e07.woff2')format("woff");}.ff7_c00316{font-family:ff7_c00316;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00316;src:url('chunks/assets/font_b1881481487b09767e400bc3.woff2')format("woff");}.ff8_c00316{font-family:ff8_c00316;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00316{vertical-align:-52.244280px;}
.v4_c00316{vertical-align:-40.220280px;}
.v3_c00316{vertical-align:-12.084120px;}
.v0_c00316{vertical-align:0.000000px;}
.v2_c00316{vertical-align:12.084120px;}
.ls7_c00316{letter-spacing:-0.360000px;}
.lsa_c00316{letter-spacing:-0.144000px;}
.ls8_c00316{letter-spacing:-0.120240px;}
.ls9_c00316{letter-spacing:-0.072000px;}
.ls6_c00316{letter-spacing:0.000000px;}
.ls0_c00316{letter-spacing:0.072000px;}
.ls2_c00316{letter-spacing:0.120240px;}
.ls5_c00316{letter-spacing:0.144000px;}
.ls1_c00316{letter-spacing:18.000000px;}
.ls4_c00316{letter-spacing:469.837800px;}
.ls3_c00316{letter-spacing:500.438880px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00316{word-spacing:-36.000000px;}
.ws8_c00316{word-spacing:-18.072000px;}
.ws0_c00316{word-spacing:-18.000000px;}
.ws9_c00316{word-spacing:-17.928000px;}
.ws7_c00316{word-spacing:-17.856000px;}
.ws3_c00316{word-spacing:-17.640000px;}
.ws4_c00316{word-spacing:-13.707360px;}
.ws5_c00316{word-spacing:-13.466880px;}
.ws1d_c00316{word-spacing:-0.661320px;}
.ws1e_c00316{word-spacing:-0.601200px;}
.ws6_c00316{word-spacing:-0.504000px;}
.ws10_c00316{word-spacing:-0.144000px;}
.ws16_c00316{word-spacing:-0.072000px;}
.wsc_c00316{word-spacing:0.000000px;}
.ws20_c00316{word-spacing:0.144000px;}
.ws14_c00316{word-spacing:0.360000px;}
.ws1f_c00316{word-spacing:0.432000px;}
.ws21_c00316{word-spacing:0.504000px;}
.ws13_c00316{word-spacing:2.160000px;}
.ws17_c00316{word-spacing:3.888000px;}
.ws18_c00316{word-spacing:4.176000px;}
.wse_c00316{word-spacing:4.248000px;}
.wsd_c00316{word-spacing:4.320000px;}
.ws15_c00316{word-spacing:10.368000px;}
.ws1b_c00316{word-spacing:15.048000px;}
.ws1c_c00316{word-spacing:15.480000px;}
.ws1_c00316{word-spacing:17.424000px;}
.ws12_c00316{word-spacing:18.288000px;}
.ws11_c00316{word-spacing:21.600000px;}
.wsf_c00316{word-spacing:24.840000px;}
.ws1a_c00316{word-spacing:25.488000px;}
.ws19_c00316{word-spacing:25.560000px;}
.wsb_c00316{word-spacing:413.640000px;}
.wsa_c00316{word-spacing:1071.216000px;}
._4_c00316{margin-left:-18.000000px;}
._1_c00316{margin-left:-1.382400px;}
._3_c00316{width:1.224000px;}
._0_c00316{width:4.680000px;}
._2_c00316{width:23.544000px;}
._6_c00316{width:453.240000px;}
._5_c00316{width:474.480000px;}
.fc2_c00316{color:transparent;}
.fc1_c00316{color:rgb(0,0,0);}
.fc0_c00316{color:rgb(35,31,32);}
.fs1_c00316{font-size:60.120000px;}
.fs0_c00316{font-size:72.000000px;}
.y0_c00316{bottom:0.000000px;}
.y35_c00316{bottom:4.049400px;}
.y26_c00316{bottom:4.139250px;}
.y2f_c00316{bottom:4.139400px;}
.y2d_c00316{bottom:4.142250px;}
.y2b_c00316{bottom:4.142400px;}
.y22_c00316{bottom:13.773000px;}
.y25_c00316{bottom:24.839250px;}
.y28_c00316{bottom:24.839400px;}
.y32_c00316{bottom:24.842250px;}
.y2a_c00316{bottom:24.842400px;}
.y1_c00316{bottom:61.748550px;}
.y45_c00316{bottom:122.355000px;}
.y44_c00316{bottom:145.665000px;}
.y12_c00316{bottom:153.314400px;}
.y11_c00316{bottom:184.364400px;}
.y43_c00316{bottom:210.282000px;}
.y10_c00316{bottom:215.414400px;}
.yf_c00316{bottom:246.464400px;}
.y42_c00316{bottom:251.685000px;}
.y41_c00316{bottom:274.185000px;}
.ye_c00316{bottom:277.514400px;}
.y40_c00316{bottom:297.405000px;}
.yd_c00316{bottom:308.474400px;}
.y3f_c00316{bottom:362.022000px;}
.yc_c00316{bottom:370.574400px;}
.y3d_c00316{bottom:403.425000px;}
.y3e_c00316{bottom:407.564400px;}
.y3c_c00316{bottom:444.825000px;}
.y3b_c00316{bottom:486.222000px;}
.y3a_c00316{bottom:509.535000px;}
.y21_c00316{bottom:521.685000px;}
.y39_c00316{bottom:551.655000px;}
.y1a_c00316{bottom:554.961840px;}
.y19_c00316{bottom:580.092000px;}
.y16_c00316{bottom:583.098000px;}
.y38_c00316{bottom:593.775000px;}
.y1b_c00316{bottom:599.991720px;}
.y1c_c00316{bottom:645.021600px;}
.y14_c00316{bottom:656.459430px;}
.y37_c00316{bottom:658.482000px;}
.y15_c00316{bottom:674.555550px;}
.y18_c00316{bottom:677.576580px;}
.y1d_c00316{bottom:690.051480px;}
.y36_c00316{bottom:699.885000px;}
.y34_c00316{bottom:722.385000px;}
.y1e_c00316{bottom:735.081360px;}
.y33_c00316{bottom:745.605000px;}
.y1f_c00316{bottom:780.111240px;}
.y17_c00316{bottom:791.143260px;}
.y31_c00316{bottom:810.222000px;}
.y13_c00316{bottom:817.265400px;}
.y20_c00316{bottom:825.141120px;}
.y30_c00316{bottom:851.625000px;}
.yb_c00316{bottom:891.584400px;}
.y2e_c00316{bottom:893.025000px;}
.ya_c00316{bottom:922.634400px;}
.y2c_c00316{bottom:934.422000px;}
.y9_c00316{bottom:953.684400px;}
.y29_c00316{bottom:957.642000px;}
.y8_c00316{bottom:984.734400px;}
.y27_c00316{bottom:999.855000px;}
.y7_c00316{bottom:1015.784400px;}
.y24_c00316{bottom:1041.975000px;}
.y6_c00316{bottom:1046.834400px;}
.y5_c00316{bottom:1077.884400px;}
.y4_c00316{bottom:1108.934400px;}
.y23_c00316{bottom:1119.194400px;}
.y3_c00316{bottom:1139.984400px;}
.y2_c00316{bottom:1193.174400px;}
.hb_c00316{height:22.498500px;}
.h9_c00316{height:22.500000px;}
.h6_c00316{height:28.080000px;}
.ha_c00316{height:41.397000px;}
.h7_c00316{height:41.398500px;}
.h8_c00316{height:41.400000px;}
.h5_c00316{height:49.581387px;}
.h2_c00316{height:50.400000px;}
.h3_c00316{height:76.824000px;}
.h4_c00316{height:78.048000px;}
.h0_c00316{height:1262.835000px;}
.h1_c00316{height:1263.000000px;}
.w3_c00316{width:-513.564000px;}
.w4_c00316{width:-365.154000px;}
.w5_c00316{width:-240.864000px;}
.w2_c00316{width:0.000000px;}
.w6_c00316{width:0.066000px;}
.wc_c00316{width:117.000000px;}
.wb_c00316{width:127.527000px;}
.w9_c00316{width:131.220000px;}
.wa_c00316{width:138.240000px;}
.w7_c00316{width:191.790000px;}
.w8_c00316{width:382.770000px;}
.w0_c00316{width:892.914000px;}
.w1_c00316{width:893.250000px;}
.x1_c00316{left:-838.913400px;}
.x2_c00316{left:-765.293400px;}
.x3_c00316{left:-733.793400px;}
.xc_c00316{left:-723.707310px;}
.xb_c00316{left:-716.132190px;}
.xd_c00316{left:-673.193550px;}
.x4_c00316{left:-657.470100px;}
.x7_c00316{left:-625.471230px;}
.x8_c00316{left:-601.017420px;}
.xa_c00316{left:-569.003520px;}
.xe_c00316{left:-511.218900px;}
.x5_c00316{left:-498.467730px;}
.x9_c00316{left:-445.787580px;}
.x6_c00316{left:-347.025450px;}
.xf_c00316{left:-325.038150px;}
.x0_c00316{left:0.000000px;}
.x14_c00316{left:5.310000px;}
.x24_c00316{left:47.070000px;}
.x16_c00316{left:59.040000px;}
.x25_c00316{left:90.000000px;}
.x1c_c00316{left:93.690000px;}
.x1d_c00316{left:99.000000px;}
.x22_c00316{left:102.690000px;}
.x1b_c00316{left:104.310000px;}
.x1a_c00316{left:105.930000px;}
.x1f_c00316{left:108.000000px;}
.x21_c00316{left:113.310000px;}
.x1e_c00316{left:114.930000px;}
.x23_c00316{left:117.000000px;}
.x13_c00316{left:122.310000px;}
.x20_c00316{left:123.930000px;}
.x12_c00316{left:127.620000px;}
.x15_c00316{left:314.100000px;}
.x18_c00316{left:452.340000px;}
.x19_c00316{left:579.870000px;}
.x11_c00316{left:679.950000px;}
.x17_c00316{left:696.870000px;}
.x10_c00316{left:804.366150px;}
@media print{
.v1_c00316{vertical-align:-46.439360pt;}
.v4_c00316{vertical-align:-35.751360pt;}
.v3_c00316{vertical-align:-10.741440pt;}
.v0_c00316{vertical-align:0.000000pt;}
.v2_c00316{vertical-align:10.741440pt;}
.ls7_c00316{letter-spacing:-0.320000pt;}
.lsa_c00316{letter-spacing:-0.128000pt;}
.ls8_c00316{letter-spacing:-0.106880pt;}
.ls9_c00316{letter-spacing:-0.064000pt;}
.ls6_c00316{letter-spacing:0.000000pt;}
.ls0_c00316{letter-spacing:0.064000pt;}
.ls2_c00316{letter-spacing:0.106880pt;}
.ls5_c00316{letter-spacing:0.128000pt;}
.ls1_c00316{letter-spacing:16.000000pt;}
.ls4_c00316{letter-spacing:417.633600pt;}
.ls3_c00316{letter-spacing:444.834560pt;}
.ws2_c00316{word-spacing:-32.000000pt;}
.ws8_c00316{word-spacing:-16.064000pt;}
.ws0_c00316{word-spacing:-16.000000pt;}
.ws9_c00316{word-spacing:-15.936000pt;}
.ws7_c00316{word-spacing:-15.872000pt;}
.ws3_c00316{word-spacing:-15.680000pt;}
.ws4_c00316{word-spacing:-12.184320pt;}
.ws5_c00316{word-spacing:-11.970560pt;}
.ws1d_c00316{word-spacing:-0.587840pt;}
.ws1e_c00316{word-spacing:-0.534400pt;}
.ws6_c00316{word-spacing:-0.448000pt;}
.ws10_c00316{word-spacing:-0.128000pt;}
.ws16_c00316{word-spacing:-0.064000pt;}
.wsc_c00316{word-spacing:0.000000pt;}
.ws20_c00316{word-spacing:0.128000pt;}
.ws14_c00316{word-spacing:0.320000pt;}
.ws1f_c00316{word-spacing:0.384000pt;}
.ws21_c00316{word-spacing:0.448000pt;}
.ws13_c00316{word-spacing:1.920000pt;}
.ws17_c00316{word-spacing:3.456000pt;}
.ws18_c00316{word-spacing:3.712000pt;}
.wse_c00316{word-spacing:3.776000pt;}
.wsd_c00316{word-spacing:3.840000pt;}
.ws15_c00316{word-spacing:9.216000pt;}
.ws1b_c00316{word-spacing:13.376000pt;}
.ws1c_c00316{word-spacing:13.760000pt;}
.ws1_c00316{word-spacing:15.488000pt;}
.ws12_c00316{word-spacing:16.256000pt;}
.ws11_c00316{word-spacing:19.200000pt;}
.wsf_c00316{word-spacing:22.080000pt;}
.ws1a_c00316{word-spacing:22.656000pt;}
.ws19_c00316{word-spacing:22.720000pt;}
.wsb_c00316{word-spacing:367.680000pt;}
.wsa_c00316{word-spacing:952.192000pt;}
._4_c00316{margin-left:-16.000000pt;}
._1_c00316{margin-left:-1.228800pt;}
._3_c00316{width:1.088000pt;}
._0_c00316{width:4.160000pt;}
._2_c00316{width:20.928000pt;}
._6_c00316{width:402.880000pt;}
._5_c00316{width:421.760000pt;}
.fs1_c00316{font-size:53.440000pt;}
.fs0_c00316{font-size:64.000000pt;}
.y0_c00316{bottom:0.000000pt;}
.y35_c00316{bottom:3.599467pt;}
.y26_c00316{bottom:3.679333pt;}
.y2f_c00316{bottom:3.679467pt;}
.y2d_c00316{bottom:3.682000pt;}
.y2b_c00316{bottom:3.682133pt;}
.y22_c00316{bottom:12.242667pt;}
.y25_c00316{bottom:22.079333pt;}
.y28_c00316{bottom:22.079467pt;}
.y32_c00316{bottom:22.082000pt;}
.y2a_c00316{bottom:22.082133pt;}
.y1_c00316{bottom:54.887600pt;}
.y45_c00316{bottom:108.760000pt;}
.y44_c00316{bottom:129.480000pt;}
.y12_c00316{bottom:136.279467pt;}
.y11_c00316{bottom:163.879467pt;}
.y43_c00316{bottom:186.917333pt;}
.y10_c00316{bottom:191.479467pt;}
.yf_c00316{bottom:219.079467pt;}
.y42_c00316{bottom:223.720000pt;}
.y41_c00316{bottom:243.720000pt;}
.ye_c00316{bottom:246.679467pt;}
.y40_c00316{bottom:264.360000pt;}
.yd_c00316{bottom:274.199467pt;}
.y3f_c00316{bottom:321.797333pt;}
.yc_c00316{bottom:329.399467pt;}
.y3d_c00316{bottom:358.600000pt;}
.y3e_c00316{bottom:362.279467pt;}
.y3c_c00316{bottom:395.400000pt;}
.y3b_c00316{bottom:432.197333pt;}
.y3a_c00316{bottom:452.920000pt;}
.y21_c00316{bottom:463.720000pt;}
.y39_c00316{bottom:490.360000pt;}
.y1a_c00316{bottom:493.299413pt;}
.y19_c00316{bottom:515.637333pt;}
.y16_c00316{bottom:518.309333pt;}
.y38_c00316{bottom:527.800000pt;}
.y1b_c00316{bottom:533.325973pt;}
.y1c_c00316{bottom:573.352533pt;}
.y14_c00316{bottom:583.519493pt;}
.y37_c00316{bottom:585.317333pt;}
.y15_c00316{bottom:599.604933pt;}
.y18_c00316{bottom:602.290293pt;}
.y1d_c00316{bottom:613.379093pt;}
.y36_c00316{bottom:622.120000pt;}
.y34_c00316{bottom:642.120000pt;}
.y1e_c00316{bottom:653.405653pt;}
.y33_c00316{bottom:662.760000pt;}
.y1f_c00316{bottom:693.432213pt;}
.y17_c00316{bottom:703.238453pt;}
.y31_c00316{bottom:720.197333pt;}
.y13_c00316{bottom:726.458133pt;}
.y20_c00316{bottom:733.458773pt;}
.y30_c00316{bottom:757.000000pt;}
.yb_c00316{bottom:792.519467pt;}
.y2e_c00316{bottom:793.800000pt;}
.ya_c00316{bottom:820.119467pt;}
.y2c_c00316{bottom:830.597333pt;}
.y9_c00316{bottom:847.719467pt;}
.y29_c00316{bottom:851.237333pt;}
.y8_c00316{bottom:875.319467pt;}
.y27_c00316{bottom:888.760000pt;}
.y7_c00316{bottom:902.919467pt;}
.y24_c00316{bottom:926.200000pt;}
.y6_c00316{bottom:930.519467pt;}
.y5_c00316{bottom:958.119467pt;}
.y4_c00316{bottom:985.719467pt;}
.y23_c00316{bottom:994.839467pt;}
.y3_c00316{bottom:1013.319467pt;}
.y2_c00316{bottom:1060.599467pt;}
.hb_c00316{height:19.998667pt;}
.h9_c00316{height:20.000000pt;}
.h6_c00316{height:24.960000pt;}
.ha_c00316{height:36.797333pt;}
.h7_c00316{height:36.798667pt;}
.h8_c00316{height:36.800000pt;}
.h5_c00316{height:44.072344pt;}
.h2_c00316{height:44.800000pt;}
.h3_c00316{height:68.288000pt;}
.h4_c00316{height:69.376000pt;}
.h0_c00316{height:1122.520000pt;}
.h1_c00316{height:1122.666667pt;}
.w3_c00316{width:-456.501333pt;}
.w4_c00316{width:-324.581333pt;}
.w5_c00316{width:-214.101333pt;}
.w2_c00316{width:0.000000pt;}
.w6_c00316{width:0.058667pt;}
.wc_c00316{width:104.000000pt;}
.wb_c00316{width:113.357333pt;}
.w9_c00316{width:116.640000pt;}
.wa_c00316{width:122.880000pt;}
.w7_c00316{width:170.480000pt;}
.w8_c00316{width:340.240000pt;}
.w0_c00316{width:793.701333pt;}
.w1_c00316{width:794.000000pt;}
.x1_c00316{left:-745.700800pt;}
.x2_c00316{left:-680.260800pt;}
.x3_c00316{left:-652.260800pt;}
.xc_c00316{left:-643.295387pt;}
.xb_c00316{left:-636.561947pt;}
.xd_c00316{left:-598.394267pt;}
.x4_c00316{left:-584.417867pt;}
.x7_c00316{left:-555.974427pt;}
.x8_c00316{left:-534.237707pt;}
.xa_c00316{left:-505.780907pt;}
.xe_c00316{left:-454.416800pt;}
.x5_c00316{left:-443.082427pt;}
.x9_c00316{left:-396.255627pt;}
.x6_c00316{left:-308.467067pt;}
.xf_c00316{left:-288.922800pt;}
.x0_c00316{left:0.000000pt;}
.x14_c00316{left:4.720000pt;}
.x24_c00316{left:41.840000pt;}
.x16_c00316{left:52.480000pt;}
.x25_c00316{left:80.000000pt;}
.x1c_c00316{left:83.280000pt;}
.x1d_c00316{left:88.000000pt;}
.x22_c00316{left:91.280000pt;}
.x1b_c00316{left:92.720000pt;}
.x1a_c00316{left:94.160000pt;}
.x1f_c00316{left:96.000000pt;}
.x21_c00316{left:100.720000pt;}
.x1e_c00316{left:102.160000pt;}
.x23_c00316{left:104.000000pt;}
.x13_c00316{left:108.720000pt;}
.x20_c00316{left:110.160000pt;}
.x12_c00316{left:113.440000pt;}
.x15_c00316{left:279.200000pt;}
.x18_c00316{left:402.080000pt;}
.x19_c00316{left:515.440000pt;}
.x11_c00316{left:604.400000pt;}
.x17_c00316{left:619.440000pt;}
.x10_c00316{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00317;src:url('chunks/assets/font_ea17b89152d30bbf45a97f48.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00317;src:url('chunks/assets/font_f7599eacedec1287d605ba0e.woff2')format("woff");}.ff3_c00317{font-family:ff3_c00317;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls4_c00317{letter-spacing:-0.144000px;}
.ls3_c00317{letter-spacing:-0.072000px;}
.ls2_c00317{letter-spacing:0.000000px;}
.ls0_c00317{letter-spacing:0.072000px;}
.ls1_c00317{letter-spacing:0.144000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00317{word-spacing:-18.072000px;}
.ws0_c00317{word-spacing:-18.000000px;}
.ws3_c00317{word-spacing:-17.928000px;}
.ws1_c00317{word-spacing:-17.856000px;}
.wsa_c00317{word-spacing:-0.144000px;}
.ws7_c00317{word-spacing:-0.072000px;}
.ws6_c00317{word-spacing:0.000000px;}
.wsb_c00317{word-spacing:0.072000px;}
.ws9_c00317{word-spacing:0.144000px;}
.ws8_c00317{word-spacing:0.432000px;}
.wsc_c00317{word-spacing:0.504000px;}
.ws5_c00317{word-spacing:323.640000px;}
.ws4_c00317{word-spacing:981.216000px;}
._0_c00317{margin-left:-1.224000px;}
._1_c00317{width:1.152000px;}
._2_c00317{width:384.480000px;}
._3_c00317{width:399.240000px;}
.fc1_c00317{color:rgb(0,0,0);}
.fc0_c00317{color:rgb(35,31,32);}
.fs0_c00317{font-size:72.000000px;}
.y0_c00317{bottom:0.000000px;}
.y16_c00317{bottom:4.049400px;}
.y7_c00317{bottom:4.139250px;}
.y10_c00317{bottom:4.139400px;}
.ye_c00317{bottom:4.142250px;}
.yc_c00317{bottom:4.142400px;}
.y6_c00317{bottom:24.839250px;}
.y9_c00317{bottom:24.839400px;}
.y13_c00317{bottom:24.842250px;}
.yb_c00317{bottom:24.842400px;}
.y1_c00317{bottom:61.748550px;}
.y26_c00317{bottom:122.355000px;}
.y25_c00317{bottom:145.665000px;}
.y24_c00317{bottom:210.282000px;}
.y23_c00317{bottom:251.685000px;}
.y22_c00317{bottom:274.185000px;}
.y21_c00317{bottom:297.405000px;}
.y20_c00317{bottom:362.022000px;}
.y1e_c00317{bottom:403.425000px;}
.y1f_c00317{bottom:407.564400px;}
.y1d_c00317{bottom:444.825000px;}
.y1c_c00317{bottom:486.222000px;}
.y1b_c00317{bottom:509.535000px;}
.y1a_c00317{bottom:551.655000px;}
.y19_c00317{bottom:593.775000px;}
.y18_c00317{bottom:658.482000px;}
.y17_c00317{bottom:699.885000px;}
.y15_c00317{bottom:722.385000px;}
.y14_c00317{bottom:745.605000px;}
.y12_c00317{bottom:810.222000px;}
.y11_c00317{bottom:851.625000px;}
.yf_c00317{bottom:893.025000px;}
.yd_c00317{bottom:934.422000px;}
.ya_c00317{bottom:957.642000px;}
.y8_c00317{bottom:999.855000px;}
.y5_c00317{bottom:1041.975000px;}
.y4_c00317{bottom:1119.194400px;}
.y3_c00317{bottom:1139.984400px;}
.y2_c00317{bottom:1193.174400px;}
.h9_c00317{height:22.498500px;}
.h7_c00317{height:22.500000px;}
.h8_c00317{height:41.397000px;}
.h5_c00317{height:41.398500px;}
.h6_c00317{height:41.400000px;}
.h2_c00317{height:50.400000px;}
.h3_c00317{height:76.824000px;}
.h4_c00317{height:78.048000px;}
.h0_c00317{height:1262.835000px;}
.h1_c00317{height:1263.000000px;}
.w7_c00317{width:117.000000px;}
.w6_c00317{width:127.527000px;}
.w4_c00317{width:131.220000px;}
.w5_c00317{width:138.240000px;}
.w2_c00317{width:191.790000px;}
.w3_c00317{width:382.770000px;}
.w0_c00317{width:892.914000px;}
.w1_c00317{width:893.250000px;}
.x0_c00317{left:0.000000px;}
.x4_c00317{left:5.310000px;}
.x10_c00317{left:47.070000px;}
.x1_c00317{left:54.000000px;}
.x6_c00317{left:59.040000px;}
.xc_c00317{left:80.190000px;}
.xd_c00317{left:85.500000px;}
.xb_c00317{left:90.810000px;}
.xa_c00317{left:92.430000px;}
.xf_c00317{left:94.500000px;}
.x11_c00317{left:99.000000px;}
.xe_c00317{left:101.430000px;}
.x3_c00317{left:122.310000px;}
.x2_c00317{left:127.620000px;}
.x5_c00317{left:314.100000px;}
.x8_c00317{left:452.340000px;}
.x9_c00317{left:579.870000px;}
.x7_c00317{left:696.870000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls4_c00317{letter-spacing:-0.128000pt;}
.ls3_c00317{letter-spacing:-0.064000pt;}
.ls2_c00317{letter-spacing:0.000000pt;}
.ls0_c00317{letter-spacing:0.064000pt;}
.ls1_c00317{letter-spacing:0.128000pt;}
.ws2_c00317{word-spacing:-16.064000pt;}
.ws0_c00317{word-spacing:-16.000000pt;}
.ws3_c00317{word-spacing:-15.936000pt;}
.ws1_c00317{word-spacing:-15.872000pt;}
.wsa_c00317{word-spacing:-0.128000pt;}
.ws7_c00317{word-spacing:-0.064000pt;}
.ws6_c00317{word-spacing:0.000000pt;}
.wsb_c00317{word-spacing:0.064000pt;}
.ws9_c00317{word-spacing:0.128000pt;}
.ws8_c00317{word-spacing:0.384000pt;}
.wsc_c00317{word-spacing:0.448000pt;}
.ws5_c00317{word-spacing:287.680000pt;}
.ws4_c00317{word-spacing:872.192000pt;}
._0_c00317{margin-left:-1.088000pt;}
._1_c00317{width:1.024000pt;}
._2_c00317{width:341.760000pt;}
._3_c00317{width:354.880000pt;}
.fs0_c00317{font-size:64.000000pt;}
.y0_c00317{bottom:0.000000pt;}
.y16_c00317{bottom:3.599467pt;}
.y7_c00317{bottom:3.679333pt;}
.y10_c00317{bottom:3.679467pt;}
.ye_c00317{bottom:3.682000pt;}
.yc_c00317{bottom:3.682133pt;}
.y6_c00317{bottom:22.079333pt;}
.y9_c00317{bottom:22.079467pt;}
.y13_c00317{bottom:22.082000pt;}
.yb_c00317{bottom:22.082133pt;}
.y1_c00317{bottom:54.887600pt;}
.y26_c00317{bottom:108.760000pt;}
.y25_c00317{bottom:129.480000pt;}
.y24_c00317{bottom:186.917333pt;}
.y23_c00317{bottom:223.720000pt;}
.y22_c00317{bottom:243.720000pt;}
.y21_c00317{bottom:264.360000pt;}
.y20_c00317{bottom:321.797333pt;}
.y1e_c00317{bottom:358.600000pt;}
.y1f_c00317{bottom:362.279467pt;}
.y1d_c00317{bottom:395.400000pt;}
.y1c_c00317{bottom:432.197333pt;}
.y1b_c00317{bottom:452.920000pt;}
.y1a_c00317{bottom:490.360000pt;}
.y19_c00317{bottom:527.800000pt;}
.y18_c00317{bottom:585.317333pt;}
.y17_c00317{bottom:622.120000pt;}
.y15_c00317{bottom:642.120000pt;}
.y14_c00317{bottom:662.760000pt;}
.y12_c00317{bottom:720.197333pt;}
.y11_c00317{bottom:757.000000pt;}
.yf_c00317{bottom:793.800000pt;}
.yd_c00317{bottom:830.597333pt;}
.ya_c00317{bottom:851.237333pt;}
.y8_c00317{bottom:888.760000pt;}
.y5_c00317{bottom:926.200000pt;}
.y4_c00317{bottom:994.839467pt;}
.y3_c00317{bottom:1013.319467pt;}
.y2_c00317{bottom:1060.599467pt;}
.h9_c00317{height:19.998667pt;}
.h7_c00317{height:20.000000pt;}
.h8_c00317{height:36.797333pt;}
.h5_c00317{height:36.798667pt;}
.h6_c00317{height:36.800000pt;}
.h2_c00317{height:44.800000pt;}
.h3_c00317{height:68.288000pt;}
.h4_c00317{height:69.376000pt;}
.h0_c00317{height:1122.520000pt;}
.h1_c00317{height:1122.666667pt;}
.w7_c00317{width:104.000000pt;}
.w6_c00317{width:113.357333pt;}
.w4_c00317{width:116.640000pt;}
.w5_c00317{width:122.880000pt;}
.w2_c00317{width:170.480000pt;}
.w3_c00317{width:340.240000pt;}
.w0_c00317{width:793.701333pt;}
.w1_c00317{width:794.000000pt;}
.x0_c00317{left:0.000000pt;}
.x4_c00317{left:4.720000pt;}
.x10_c00317{left:41.840000pt;}
.x1_c00317{left:48.000000pt;}
.x6_c00317{left:52.480000pt;}
.xc_c00317{left:71.280000pt;}
.xd_c00317{left:76.000000pt;}
.xb_c00317{left:80.720000pt;}
.xa_c00317{left:82.160000pt;}
.xf_c00317{left:84.000000pt;}
.x11_c00317{left:88.000000pt;}
.xe_c00317{left:90.160000pt;}
.x3_c00317{left:108.720000pt;}
.x2_c00317{left:113.440000pt;}
.x5_c00317{left:279.200000pt;}
.x8_c00317{left:402.080000pt;}
.x9_c00317{left:515.440000pt;}
.x7_c00317{left:619.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00318;src:url('chunks/assets/font_38d821b5c99c70342d1d6b60.woff2')format("woff");}.ff2_c00318{font-family:ff2_c00318;line-height:1.575000;font-style:normal;font-weight:normal;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_0db864d5170cb37db7e6807b.woff2')format("woff");}.ff3_c00318{font-family:ff3_c00318;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00318;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00318{font-family:ff4_c00318;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00318;src:url('chunks/assets/font_2ba3ea1262b52ed46832c235.woff2')format("woff");}.ff5_c00318{font-family:ff5_c00318;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00318;src:url('chunks/assets/font_30c75381dbaf08be37e27c39.woff2')format("woff");}.ff6_c00318{font-family:ff6_c00318;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00318;src:url('chunks/assets/font_5d996ed98870515990314d50.woff2')format("woff");}.ff7_c00318{font-family:ff7_c00318;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00318;src:url('chunks/assets/font_33c6e7ee775ba26f913bb96a.woff2')format("woff");}.ff8_c00318{font-family:ff8_c00318;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls9_c00318{letter-spacing:-0.288000px;}
.ls8_c00318{letter-spacing:-0.144000px;}
.lsb_c00318{letter-spacing:-0.120240px;}
.ls7_c00318{letter-spacing:-0.072000px;}
.lsa_c00318{letter-spacing:-0.060120px;}
.ls6_c00318{letter-spacing:0.000000px;}
.ls0_c00318{letter-spacing:0.072000px;}
.ls5_c00318{letter-spacing:0.120240px;}
.ls1_c00318{letter-spacing:0.144000px;}
.ls3_c00318{letter-spacing:0.360000px;}
.ls4_c00318{letter-spacing:21.600000px;}
.ls2_c00318{letter-spacing:23.832000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00318{word-spacing:-18.072000px;}
.ws0_c00318{word-spacing:-18.000000px;}
.ws3_c00318{word-spacing:-17.928000px;}
.ws1_c00318{word-spacing:-17.856000px;}
.wsb_c00318{word-spacing:-13.707360px;}
.wsc_c00318{word-spacing:-13.466880px;}
.ws2d_c00318{word-spacing:-0.661320px;}
.ws2e_c00318{word-spacing:-0.601200px;}
.ws2c_c00318{word-spacing:-0.541080px;}
.ws24_c00318{word-spacing:-0.360000px;}
.ws9_c00318{word-spacing:-0.144000px;}
.ws2b_c00318{word-spacing:-0.120240px;}
.wse_c00318{word-spacing:-0.072000px;}
.wsd_c00318{word-spacing:0.000000px;}
.ws11_c00318{word-spacing:0.072000px;}
.ws10_c00318{word-spacing:0.144000px;}
.wsf_c00318{word-spacing:0.432000px;}
.ws12_c00318{word-spacing:0.504000px;}
.ws23_c00318{word-spacing:0.720000px;}
.ws26_c00318{word-spacing:2.808000px;}
.ws1a_c00318{word-spacing:2.880000px;}
.ws25_c00318{word-spacing:3.096000px;}
.ws27_c00318{word-spacing:3.240000px;}
.ws28_c00318{word-spacing:3.600000px;}
.ws1e_c00318{word-spacing:4.248000px;}
.ws8_c00318{word-spacing:4.320000px;}
.ws1f_c00318{word-spacing:4.608000px;}
.ws1d_c00318{word-spacing:4.680000px;}
.ws14_c00318{word-spacing:5.688000px;}
.ws13_c00318{word-spacing:5.760000px;}
.ws2a_c00318{word-spacing:6.768000px;}
.ws29_c00318{word-spacing:6.840000px;}
.wsa_c00318{word-spacing:6.912000px;}
.ws19_c00318{word-spacing:7.848000px;}
.ws1c_c00318{word-spacing:12.888000px;}
.ws1b_c00318{word-spacing:12.960000px;}
.ws18_c00318{word-spacing:18.000000px;}
.ws17_c00318{word-spacing:18.288000px;}
.ws16_c00318{word-spacing:18.360000px;}
.ws22_c00318{word-spacing:18.936000px;}
.ws7_c00318{word-spacing:19.008000px;}
.ws21_c00318{word-spacing:19.368000px;}
.ws20_c00318{word-spacing:19.440000px;}
.ws15_c00318{word-spacing:22.680000px;}
.ws6_c00318{word-spacing:104.400000px;}
.ws5_c00318{word-spacing:323.640000px;}
.ws4_c00318{word-spacing:981.216000px;}
._0_c00318{margin-left:-1.224000px;}
._1_c00318{width:1.152000px;}
._5_c00318{width:19.584000px;}
._4_c00318{width:24.904800px;}
._2_c00318{width:384.480000px;}
._3_c00318{width:399.240000px;}
.fc2_c00318{color:transparent;}
.fc1_c00318{color:rgb(0,0,0);}
.fc0_c00318{color:rgb(35,31,32);}
.fs1_c00318{font-size:60.120000px;}
.fs0_c00318{font-size:72.000000px;}
.y0_c00318{bottom:0.000000px;}
.y16_c00318{bottom:4.049400px;}
.y7_c00318{bottom:4.139250px;}
.y10_c00318{bottom:4.139400px;}
.ye_c00318{bottom:4.140750px;}
.yc_c00318{bottom:4.140900px;}
.y56_c00318{bottom:18.235200px;}
.y6_c00318{bottom:24.839250px;}
.y9_c00318{bottom:24.839400px;}
.y13_c00318{bottom:24.840750px;}
.yb_c00318{bottom:24.840900px;}
.y55_c00318{bottom:49.874400px;}
.y1_c00318{bottom:61.748550px;}
.y40_c00318{bottom:115.424400px;}
.y26_c00318{bottom:122.355000px;}
.y25_c00318{bottom:145.665000px;}
.y3f_c00318{bottom:146.474400px;}
.y3e_c00318{bottom:177.524400px;}
.y3d_c00318{bottom:208.574400px;}
.y24_c00318{bottom:210.283500px;}
.y2d_c00318{bottom:210.285000px;}
.y23_c00318{bottom:251.685000px;}
.y3c_c00318{bottom:270.674400px;}
.y22_c00318{bottom:274.185000px;}
.y21_c00318{bottom:297.405000px;}
.y54_c00318{bottom:304.782000px;}
.y20_c00318{bottom:362.023500px;}
.y2c_c00318{bottom:362.025000px;}
.y4a_c00318{bottom:374.148690px;}
.y4b_c00318{bottom:400.105500px;}
.y47_c00318{bottom:400.887060px;}
.y1e_c00318{bottom:403.425000px;}
.y1f_c00318{bottom:407.564400px;}
.y4c_c00318{bottom:426.062310px;}
.y44_c00318{bottom:436.478100px;}
.y1d_c00318{bottom:444.825000px;}
.y46_c00318{bottom:445.150410px;}
.y49_c00318{bottom:451.222530px;}
.y4d_c00318{bottom:452.019120px;}
.y42_c00318{bottom:452.920920px;}
.y48_c00318{bottom:471.467940px;}
.y4e_c00318{bottom:477.975930px;}
.y1c_c00318{bottom:486.223500px;}
.y2b_c00318{bottom:486.225000px;}
.y45_c00318{bottom:502.940760px;}
.y4f_c00318{bottom:503.932740px;}
.y1b_c00318{bottom:509.535000px;}
.y50_c00318{bottom:529.889550px;}
.y43_c00318{bottom:530.926620px;}
.y1a_c00318{bottom:551.655000px;}
.y51_c00318{bottom:555.846360px;}
.y52_c00318{bottom:581.803170px;}
.y41_c00318{bottom:589.934400px;}
.y19_c00318{bottom:593.775000px;}
.y53_c00318{bottom:607.759980px;}
.y18_c00318{bottom:658.483500px;}
.y2a_c00318{bottom:658.485000px;}
.y3b_c00318{bottom:674.324400px;}
.y17_c00318{bottom:699.885000px;}
.y3a_c00318{bottom:705.374400px;}
.y15_c00318{bottom:722.385000px;}
.y39_c00318{bottom:736.424400px;}
.y14_c00318{bottom:745.605000px;}
.y38_c00318{bottom:767.474400px;}
.y37_c00318{bottom:798.434400px;}
.y12_c00318{bottom:810.223500px;}
.y29_c00318{bottom:810.225000px;}
.y36_c00318{bottom:829.484400px;}
.y11_c00318{bottom:851.625000px;}
.y35_c00318{bottom:860.534400px;}
.y34_c00318{bottom:891.584400px;}
.yf_c00318{bottom:893.025000px;}
.y33_c00318{bottom:922.634400px;}
.yd_c00318{bottom:934.423500px;}
.y28_c00318{bottom:934.425000px;}
.y32_c00318{bottom:953.684400px;}
.ya_c00318{bottom:957.643500px;}
.y27_c00318{bottom:957.645000px;}
.y8_c00318{bottom:999.855000px;}
.y31_c00318{bottom:1015.784400px;}
.y5_c00318{bottom:1041.975000px;}
.y30_c00318{bottom:1046.834400px;}
.y2f_c00318{bottom:1108.754400px;}
.y4_c00318{bottom:1119.194400px;}
.y2e_c00318{bottom:1139.804400px;}
.y3_c00318{bottom:1139.984400px;}
.y2_c00318{bottom:1193.174400px;}
.h8_c00318{height:22.498500px;}
.h7_c00318{height:22.500000px;}
.hb_c00318{height:32.583000px;}
.h5_c00318{height:41.398500px;}
.h6_c00318{height:41.400000px;}
.h9_c00318{height:49.581387px;}
.h2_c00318{height:50.400000px;}
.ha_c00318{height:64.173000px;}
.h3_c00318{height:76.824000px;}
.h4_c00318{height:78.048000px;}
.h0_c00318{height:1262.835000px;}
.h1_c00318{height:1263.000000px;}
.w3_c00318{width:-578.814000px;}
.w6_c00318{width:-440.574000px;}
.w7_c00318{width:-313.047000px;}
.w9_c00318{width:-313.045500px;}
.w4_c00318{width:-196.044000px;}
.w5_c00318{width:-64.824000px;}
.w2_c00318{width:0.000000px;}
.w8_c00318{width:0.066000px;}
.wa_c00318{width:62.550000px;}
.wb_c00318{width:62.640000px;}
.we_c00318{width:93.150000px;}
.wd_c00318{width:155.250000px;}
.wc_c00318{width:168.750000px;}
.w0_c00318{width:892.914000px;}
.w1_c00318{width:893.250000px;}
.x1_c00318{left:-838.913400px;}
.x2_c00318{left:-765.293400px;}
.x5_c00318{left:-573.593400px;}
.xe_c00318{left:-531.743400px;}
.x3_c00318{left:-519.773400px;}
.x8_c00318{left:-486.383400px;}
.xc_c00318{left:-477.383400px;}
.x6_c00318{left:-435.353400px;}
.x9_c00318{left:-349.763400px;}
.x7_c00318{left:-307.733400px;}
.xa_c00318{left:-232.853400px;}
.x4_c00318{left:-190.823400px;}
.xb_c00318{left:-110.543400px;}
.xd_c00318{left:-101.543400px;}
.xf_c00318{left:-97.043400px;}
.x0_c00318{left:0.000000px;}
.x21_c00318{left:9.117300px;}
.x12_c00318{left:127.620000px;}
.x14_c00318{left:141.660000px;}
.x13_c00318{left:159.570000px;}
.x1f_c00318{left:169.466790px;}
.x1e_c00318{left:177.041910px;}
.x24_c00318{left:213.210000px;}
.x15_c00318{left:226.310250px;}
.x20_c00318{left:248.130000px;}
.x18_c00318{left:271.986420px;}
.x1b_c00318{left:312.387060px;}
.x16_c00318{left:381.855720px;}
.x25_c00318{left:398.700000px;}
.x22_c00318{left:409.680000px;}
.x19_c00318{left:427.531890px;}
.x1c_c00318{left:468.653970px;}
.x17_c00318{left:549.395130px;}
.x23_c00318{left:571.140000px;}
.x1a_c00318{left:585.286770px;}
.x1d_c00318{left:639.199380px;}
.x11_c00318{left:679.950000px;}
.x10_c00318{left:804.366150px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls9_c00318{letter-spacing:-0.256000pt;}
.ls8_c00318{letter-spacing:-0.128000pt;}
.lsb_c00318{letter-spacing:-0.106880pt;}
.ls7_c00318{letter-spacing:-0.064000pt;}
.lsa_c00318{letter-spacing:-0.053440pt;}
.ls6_c00318{letter-spacing:0.000000pt;}
.ls0_c00318{letter-spacing:0.064000pt;}
.ls5_c00318{letter-spacing:0.106880pt;}
.ls1_c00318{letter-spacing:0.128000pt;}
.ls3_c00318{letter-spacing:0.320000pt;}
.ls4_c00318{letter-spacing:19.200000pt;}
.ls2_c00318{letter-spacing:21.184000pt;}
.ws2_c00318{word-spacing:-16.064000pt;}
.ws0_c00318{word-spacing:-16.000000pt;}
.ws3_c00318{word-spacing:-15.936000pt;}
.ws1_c00318{word-spacing:-15.872000pt;}
.wsb_c00318{word-spacing:-12.184320pt;}
.wsc_c00318{word-spacing:-11.970560pt;}
.ws2d_c00318{word-spacing:-0.587840pt;}
.ws2e_c00318{word-spacing:-0.534400pt;}
.ws2c_c00318{word-spacing:-0.480960pt;}
.ws24_c00318{word-spacing:-0.320000pt;}
.ws9_c00318{word-spacing:-0.128000pt;}
.ws2b_c00318{word-spacing:-0.106880pt;}
.wse_c00318{word-spacing:-0.064000pt;}
.wsd_c00318{word-spacing:0.000000pt;}
.ws11_c00318{word-spacing:0.064000pt;}
.ws10_c00318{word-spacing:0.128000pt;}
.wsf_c00318{word-spacing:0.384000pt;}
.ws12_c00318{word-spacing:0.448000pt;}
.ws23_c00318{word-spacing:0.640000pt;}
.ws26_c00318{word-spacing:2.496000pt;}
.ws1a_c00318{word-spacing:2.560000pt;}
.ws25_c00318{word-spacing:2.752000pt;}
.ws27_c00318{word-spacing:2.880000pt;}
.ws28_c00318{word-spacing:3.200000pt;}
.ws1e_c00318{word-spacing:3.776000pt;}
.ws8_c00318{word-spacing:3.840000pt;}
.ws1f_c00318{word-spacing:4.096000pt;}
.ws1d_c00318{word-spacing:4.160000pt;}
.ws14_c00318{word-spacing:5.056000pt;}
.ws13_c00318{word-spacing:5.120000pt;}
.ws2a_c00318{word-spacing:6.016000pt;}
.ws29_c00318{word-spacing:6.080000pt;}
.wsa_c00318{word-spacing:6.144000pt;}
.ws19_c00318{word-spacing:6.976000pt;}
.ws1c_c00318{word-spacing:11.456000pt;}
.ws1b_c00318{word-spacing:11.520000pt;}
.ws18_c00318{word-spacing:16.000000pt;}
.ws17_c00318{word-spacing:16.256000pt;}
.ws16_c00318{word-spacing:16.320000pt;}
.ws22_c00318{word-spacing:16.832000pt;}
.ws7_c00318{word-spacing:16.896000pt;}
.ws21_c00318{word-spacing:17.216000pt;}
.ws20_c00318{word-spacing:17.280000pt;}
.ws15_c00318{word-spacing:20.160000pt;}
.ws6_c00318{word-spacing:92.800000pt;}
.ws5_c00318{word-spacing:287.680000pt;}
.ws4_c00318{word-spacing:872.192000pt;}
._0_c00318{margin-left:-1.088000pt;}
._1_c00318{width:1.024000pt;}
._5_c00318{width:17.408000pt;}
._4_c00318{width:22.137600pt;}
._2_c00318{width:341.760000pt;}
._3_c00318{width:354.880000pt;}
.fs1_c00318{font-size:53.440000pt;}
.fs0_c00318{font-size:64.000000pt;}
.y0_c00318{bottom:0.000000pt;}
.y16_c00318{bottom:3.599467pt;}
.y7_c00318{bottom:3.679333pt;}
.y10_c00318{bottom:3.679467pt;}
.ye_c00318{bottom:3.680667pt;}
.yc_c00318{bottom:3.680800pt;}
.y56_c00318{bottom:16.209067pt;}
.y6_c00318{bottom:22.079333pt;}
.y9_c00318{bottom:22.079467pt;}
.y13_c00318{bottom:22.080667pt;}
.yb_c00318{bottom:22.080800pt;}
.y55_c00318{bottom:44.332800pt;}
.y1_c00318{bottom:54.887600pt;}
.y40_c00318{bottom:102.599467pt;}
.y26_c00318{bottom:108.760000pt;}
.y25_c00318{bottom:129.480000pt;}
.y3f_c00318{bottom:130.199467pt;}
.y3e_c00318{bottom:157.799467pt;}
.y3d_c00318{bottom:185.399467pt;}
.y24_c00318{bottom:186.918667pt;}
.y2d_c00318{bottom:186.920000pt;}
.y23_c00318{bottom:223.720000pt;}
.y3c_c00318{bottom:240.599467pt;}
.y22_c00318{bottom:243.720000pt;}
.y21_c00318{bottom:264.360000pt;}
.y54_c00318{bottom:270.917333pt;}
.y20_c00318{bottom:321.798667pt;}
.y2c_c00318{bottom:321.800000pt;}
.y4a_c00318{bottom:332.576613pt;}
.y4b_c00318{bottom:355.649333pt;}
.y47_c00318{bottom:356.344053pt;}
.y1e_c00318{bottom:358.600000pt;}
.y1f_c00318{bottom:362.279467pt;}
.y4c_c00318{bottom:378.722053pt;}
.y44_c00318{bottom:387.980533pt;}
.y1d_c00318{bottom:395.400000pt;}
.y46_c00318{bottom:395.689253pt;}
.y49_c00318{bottom:401.086693pt;}
.y4d_c00318{bottom:401.794773pt;}
.y42_c00318{bottom:402.596373pt;}
.y48_c00318{bottom:419.082613pt;}
.y4e_c00318{bottom:424.867493pt;}
.y1c_c00318{bottom:432.198667pt;}
.y2b_c00318{bottom:432.200000pt;}
.y45_c00318{bottom:447.058453pt;}
.y4f_c00318{bottom:447.940213pt;}
.y1b_c00318{bottom:452.920000pt;}
.y50_c00318{bottom:471.012933pt;}
.y43_c00318{bottom:471.934773pt;}
.y1a_c00318{bottom:490.360000pt;}
.y51_c00318{bottom:494.085653pt;}
.y52_c00318{bottom:517.158373pt;}
.y41_c00318{bottom:524.386133pt;}
.y19_c00318{bottom:527.800000pt;}
.y53_c00318{bottom:540.231093pt;}
.y18_c00318{bottom:585.318667pt;}
.y2a_c00318{bottom:585.320000pt;}
.y3b_c00318{bottom:599.399467pt;}
.y17_c00318{bottom:622.120000pt;}
.y3a_c00318{bottom:626.999467pt;}
.y15_c00318{bottom:642.120000pt;}
.y39_c00318{bottom:654.599467pt;}
.y14_c00318{bottom:662.760000pt;}
.y38_c00318{bottom:682.199467pt;}
.y37_c00318{bottom:709.719467pt;}
.y12_c00318{bottom:720.198667pt;}
.y29_c00318{bottom:720.200000pt;}
.y36_c00318{bottom:737.319467pt;}
.y11_c00318{bottom:757.000000pt;}
.y35_c00318{bottom:764.919467pt;}
.y34_c00318{bottom:792.519467pt;}
.yf_c00318{bottom:793.800000pt;}
.y33_c00318{bottom:820.119467pt;}
.yd_c00318{bottom:830.598667pt;}
.y28_c00318{bottom:830.600000pt;}
.y32_c00318{bottom:847.719467pt;}
.ya_c00318{bottom:851.238667pt;}
.y27_c00318{bottom:851.240000pt;}
.y8_c00318{bottom:888.760000pt;}
.y31_c00318{bottom:902.919467pt;}
.y5_c00318{bottom:926.200000pt;}
.y30_c00318{bottom:930.519467pt;}
.y2f_c00318{bottom:985.559467pt;}
.y4_c00318{bottom:994.839467pt;}
.y2e_c00318{bottom:1013.159467pt;}
.y3_c00318{bottom:1013.319467pt;}
.y2_c00318{bottom:1060.599467pt;}
.h8_c00318{height:19.998667pt;}
.h7_c00318{height:20.000000pt;}
.hb_c00318{height:28.962667pt;}
.h5_c00318{height:36.798667pt;}
.h6_c00318{height:36.800000pt;}
.h9_c00318{height:44.072344pt;}
.h2_c00318{height:44.800000pt;}
.ha_c00318{height:57.042667pt;}
.h3_c00318{height:68.288000pt;}
.h4_c00318{height:69.376000pt;}
.h0_c00318{height:1122.520000pt;}
.h1_c00318{height:1122.666667pt;}
.w3_c00318{width:-514.501333pt;}
.w6_c00318{width:-391.621333pt;}
.w7_c00318{width:-278.264000pt;}
.w9_c00318{width:-278.262667pt;}
.w4_c00318{width:-174.261333pt;}
.w5_c00318{width:-57.621333pt;}
.w2_c00318{width:0.000000pt;}
.w8_c00318{width:0.058667pt;}
.wa_c00318{width:55.600000pt;}
.wb_c00318{width:55.680000pt;}
.we_c00318{width:82.800000pt;}
.wd_c00318{width:138.000000pt;}
.wc_c00318{width:150.000000pt;}
.w0_c00318{width:793.701333pt;}
.w1_c00318{width:794.000000pt;}
.x1_c00318{left:-745.700800pt;}
.x2_c00318{left:-680.260800pt;}
.x5_c00318{left:-509.860800pt;}
.xe_c00318{left:-472.660800pt;}
.x3_c00318{left:-462.020800pt;}
.x8_c00318{left:-432.340800pt;}
.xc_c00318{left:-424.340800pt;}
.x6_c00318{left:-386.980800pt;}
.x9_c00318{left:-310.900800pt;}
.x7_c00318{left:-273.540800pt;}
.xa_c00318{left:-206.980800pt;}
.x4_c00318{left:-169.620800pt;}
.xb_c00318{left:-98.260800pt;}
.xd_c00318{left:-90.260800pt;}
.xf_c00318{left:-86.260800pt;}
.x0_c00318{left:0.000000pt;}
.x21_c00318{left:8.104267pt;}
.x12_c00318{left:113.440000pt;}
.x14_c00318{left:125.920000pt;}
.x13_c00318{left:141.840000pt;}
.x1f_c00318{left:150.637147pt;}
.x1e_c00318{left:157.370587pt;}
.x24_c00318{left:189.520000pt;}
.x15_c00318{left:201.164667pt;}
.x20_c00318{left:220.560000pt;}
.x18_c00318{left:241.765707pt;}
.x1b_c00318{left:277.677387pt;}
.x16_c00318{left:339.427307pt;}
.x25_c00318{left:354.400000pt;}
.x22_c00318{left:364.160000pt;}
.x19_c00318{left:380.028347pt;}
.x1c_c00318{left:416.581307pt;}
.x17_c00318{left:488.351227pt;}
.x23_c00318{left:507.680000pt;}
.x1a_c00318{left:520.254907pt;}
.x1d_c00318{left:568.177227pt;}
.x11_c00318{left:604.400000pt;}
.x10_c00318{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00319;src:url('chunks/assets/font_9a5ce5416cc2bf4e0132b8b9.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00319;src:url('chunks/assets/font_81ba5d340a11800d6bf07309.woff2')format("woff");}.ff3_c00319{font-family:ff3_c00319;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00319;src:url('chunks/assets/font_abfe4f0359afc04858ed5056.woff2')format("woff");}.ff4_c00319{font-family:ff4_c00319;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00319{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.ls8_c00319{letter-spacing:-0.120240px;}
.ls7_c00319{letter-spacing:-0.060120px;}
.ls6_c00319{letter-spacing:0.000000px;}
.ls0_c00319{letter-spacing:0.072000px;}
.ls5_c00319{letter-spacing:0.120240px;}
.ls4_c00319{letter-spacing:20.181600px;}
.ls3_c00319{letter-spacing:21.024000px;}
.ls1_c00319{letter-spacing:23.040000px;}
.ls2_c00319{letter-spacing:27.000000px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00319{word-spacing:-18.000000px;}
.ws4_c00319{word-spacing:-13.707360px;}
.ws5_c00319{word-spacing:-13.527000px;}
.ws21_c00319{word-spacing:-0.541080px;}
.ws1f_c00319{word-spacing:-0.360000px;}
.ws20_c00319{word-spacing:-0.120240px;}
.wsc_c00319{word-spacing:-0.072000px;}
.ws3_c00319{word-spacing:0.000000px;}
.ws1e_c00319{word-spacing:2.088000px;}
.ws12_c00319{word-spacing:2.160000px;}
.ws1d_c00319{word-spacing:2.304000px;}
.ws1c_c00319{word-spacing:2.520000px;}
.ws11_c00319{word-spacing:2.808000px;}
.ws10_c00319{word-spacing:2.880000px;}
.ws8_c00319{word-spacing:4.320000px;}
.wsa_c00319{word-spacing:4.896000px;}
.wsb_c00319{word-spacing:4.968000px;}
.ws1_c00319{word-spacing:5.040000px;}
.ws16_c00319{word-spacing:8.136000px;}
.ws14_c00319{word-spacing:8.208000px;}
.ws15_c00319{word-spacing:8.280000px;}
.wsf_c00319{word-spacing:8.928000px;}
.wse_c00319{word-spacing:9.000000px;}
.ws13_c00319{word-spacing:9.648000px;}
.ws7_c00319{word-spacing:11.088000px;}
.ws6_c00319{word-spacing:11.448000px;}
.ws19_c00319{word-spacing:15.048000px;}
.ws18_c00319{word-spacing:15.480000px;}
.ws9_c00319{word-spacing:17.640000px;}
.ws2_c00319{word-spacing:17.784000px;}
.ws1b_c00319{word-spacing:18.936000px;}
.ws1a_c00319{word-spacing:19.368000px;}
.wsd_c00319{word-spacing:24.840000px;}
.ws17_c00319{word-spacing:34.920000px;}
._0_c00319{margin-left:-1.094400px;}
._1_c00319{width:1.008000px;}
._2_c00319{width:24.192000px;}
.fc1_c00319{color:rgb(0,0,0);}
.fc0_c00319{color:rgb(35,31,32);}
.fs1_c00319{font-size:60.120000px;}
.fs0_c00319{font-size:72.000000px;}
.y0_c00319{bottom:0.000000px;}
.y28_c00319{bottom:18.190200px;}
.y27_c00319{bottom:49.828950px;}
.y1_c00319{bottom:61.748550px;}
.y15_c00319{bottom:177.524400px;}
.y14_c00319{bottom:208.574400px;}
.y13_c00319{bottom:239.624400px;}
.y12_c00319{bottom:270.674400px;}
.y11_c00319{bottom:301.724400px;}
.y10_c00319{bottom:332.774400px;}
.yf_c00319{bottom:363.824400px;}
.ye_c00319{bottom:394.874400px;}
.yd_c00319{bottom:425.924400px;}
.yc_c00319{bottom:456.974400px;}
.yb_c00319{bottom:488.024400px;}
.ya_c00319{bottom:550.124400px;}
.y26_c00319{bottom:568.302000px;}
.y1c_c00319{bottom:637.630920px;}
.y1d_c00319{bottom:663.587730px;}
.y1e_c00319{bottom:689.544540px;}
.y1b_c00319{bottom:696.939300px;}
.y1f_c00319{bottom:715.501350px;}
.y16_c00319{bottom:735.340950px;}
.y20_c00319{bottom:741.458160px;}
.y1a_c00319{bottom:747.635490px;}
.y21_c00319{bottom:767.414970px;}
.y22_c00319{bottom:793.371780px;}
.y17_c00319{bottom:817.374690px;}
.y23_c00319{bottom:819.328590px;}
.y19_c00319{bottom:829.669230px;}
.y24_c00319{bottom:845.285400px;}
.y18_c00319{bottom:868.070880px;}
.y25_c00319{bottom:871.242210px;}
.y9_c00319{bottom:953.684400px;}
.y8_c00319{bottom:984.734400px;}
.y7_c00319{bottom:1015.784400px;}
.y6_c00319{bottom:1046.834400px;}
.y5_c00319{bottom:1077.884400px;}
.y4_c00319{bottom:1108.934400px;}
.y3_c00319{bottom:1139.984400px;}
.y2_c00319{bottom:1193.174400px;}
.h7_c00319{height:32.490000px;}
.h5_c00319{height:49.581387px;}
.h2_c00319{height:50.400000px;}
.h6_c00319{height:64.171500px;}
.h3_c00319{height:76.824000px;}
.h4_c00319{height:78.048000px;}
.h0_c00319{height:1262.835000px;}
.h1_c00319{height:1263.000000px;}
.w2_c00319{width:62.550000px;}
.w3_c00319{width:62.640000px;}
.w4_c00319{width:86.850000px;}
.w5_c00319{width:146.523000px;}
.w0_c00319{width:892.914000px;}
.w1_c00319{width:893.250000px;}
.x0_c00319{left:0.000000px;}
.xe_c00319{left:9.117300px;}
.x1_c00319{left:54.000000px;}
.x2_c00319{left:127.620000px;}
.x3_c00319{left:159.480000px;}
.x4_c00319{left:167.580000px;}
.xc_c00319{left:169.469970px;}
.xb_c00319{left:177.045090px;}
.x5_c00319{left:230.131050px;}
.xd_c00319{left:248.130000px;}
.x8_c00319{left:285.291150px;}
.x11_c00319{left:315.090000px;}
.x6_c00319{left:400.676460px;}
.xf_c00319{left:409.680000px;}
.x12_c00319{left:415.440000px;}
.x9_c00319{left:454.333560px;}
.x7_c00319{left:562.218900px;}
.x10_c00319{left:571.140000px;}
.xa_c00319{left:618.882000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls8_c00319{letter-spacing:-0.106880pt;}
.ls7_c00319{letter-spacing:-0.053440pt;}
.ls6_c00319{letter-spacing:0.000000pt;}
.ls0_c00319{letter-spacing:0.064000pt;}
.ls5_c00319{letter-spacing:0.106880pt;}
.ls4_c00319{letter-spacing:17.939200pt;}
.ls3_c00319{letter-spacing:18.688000pt;}
.ls1_c00319{letter-spacing:20.480000pt;}
.ls2_c00319{letter-spacing:24.000000pt;}
.ws0_c00319{word-spacing:-16.000000pt;}
.ws4_c00319{word-spacing:-12.184320pt;}
.ws5_c00319{word-spacing:-12.024000pt;}
.ws21_c00319{word-spacing:-0.480960pt;}
.ws1f_c00319{word-spacing:-0.320000pt;}
.ws20_c00319{word-spacing:-0.106880pt;}
.wsc_c00319{word-spacing:-0.064000pt;}
.ws3_c00319{word-spacing:0.000000pt;}
.ws1e_c00319{word-spacing:1.856000pt;}
.ws12_c00319{word-spacing:1.920000pt;}
.ws1d_c00319{word-spacing:2.048000pt;}
.ws1c_c00319{word-spacing:2.240000pt;}
.ws11_c00319{word-spacing:2.496000pt;}
.ws10_c00319{word-spacing:2.560000pt;}
.ws8_c00319{word-spacing:3.840000pt;}
.wsa_c00319{word-spacing:4.352000pt;}
.wsb_c00319{word-spacing:4.416000pt;}
.ws1_c00319{word-spacing:4.480000pt;}
.ws16_c00319{word-spacing:7.232000pt;}
.ws14_c00319{word-spacing:7.296000pt;}
.ws15_c00319{word-spacing:7.360000pt;}
.wsf_c00319{word-spacing:7.936000pt;}
.wse_c00319{word-spacing:8.000000pt;}
.ws13_c00319{word-spacing:8.576000pt;}
.ws7_c00319{word-spacing:9.856000pt;}
.ws6_c00319{word-spacing:10.176000pt;}
.ws19_c00319{word-spacing:13.376000pt;}
.ws18_c00319{word-spacing:13.760000pt;}
.ws9_c00319{word-spacing:15.680000pt;}
.ws2_c00319{word-spacing:15.808000pt;}
.ws1b_c00319{word-spacing:16.832000pt;}
.ws1a_c00319{word-spacing:17.216000pt;}
.wsd_c00319{word-spacing:22.080000pt;}
.ws17_c00319{word-spacing:31.040000pt;}
._0_c00319{margin-left:-0.972800pt;}
._1_c00319{width:0.896000pt;}
._2_c00319{width:21.504000pt;}
.fs1_c00319{font-size:53.440000pt;}
.fs0_c00319{font-size:64.000000pt;}
.y0_c00319{bottom:0.000000pt;}
.y28_c00319{bottom:16.169067pt;}
.y27_c00319{bottom:44.292400pt;}
.y1_c00319{bottom:54.887600pt;}
.y15_c00319{bottom:157.799467pt;}
.y14_c00319{bottom:185.399467pt;}
.y13_c00319{bottom:212.999467pt;}
.y12_c00319{bottom:240.599467pt;}
.y11_c00319{bottom:268.199467pt;}
.y10_c00319{bottom:295.799467pt;}
.yf_c00319{bottom:323.399467pt;}
.ye_c00319{bottom:350.999467pt;}
.yd_c00319{bottom:378.599467pt;}
.yc_c00319{bottom:406.199467pt;}
.yb_c00319{bottom:433.799467pt;}
.ya_c00319{bottom:488.999467pt;}
.y26_c00319{bottom:505.157333pt;}
.y1c_c00319{bottom:566.783040pt;}
.y1d_c00319{bottom:589.855760pt;}
.y1e_c00319{bottom:612.928480pt;}
.y1b_c00319{bottom:619.501600pt;}
.y1f_c00319{bottom:636.001200pt;}
.y16_c00319{bottom:653.636400pt;}
.y20_c00319{bottom:659.073920pt;}
.y1a_c00319{bottom:664.564880pt;}
.y21_c00319{bottom:682.146640pt;}
.y22_c00319{bottom:705.219360pt;}
.y17_c00319{bottom:726.555280pt;}
.y23_c00319{bottom:728.292080pt;}
.y19_c00319{bottom:737.483760pt;}
.y24_c00319{bottom:751.364800pt;}
.y18_c00319{bottom:771.618560pt;}
.y25_c00319{bottom:774.437520pt;}
.y9_c00319{bottom:847.719467pt;}
.y8_c00319{bottom:875.319467pt;}
.y7_c00319{bottom:902.919467pt;}
.y6_c00319{bottom:930.519467pt;}
.y5_c00319{bottom:958.119467pt;}
.y4_c00319{bottom:985.719467pt;}
.y3_c00319{bottom:1013.319467pt;}
.y2_c00319{bottom:1060.599467pt;}
.h7_c00319{height:28.880000pt;}
.h5_c00319{height:44.072344pt;}
.h2_c00319{height:44.800000pt;}
.h6_c00319{height:57.041333pt;}
.h3_c00319{height:68.288000pt;}
.h4_c00319{height:69.376000pt;}
.h0_c00319{height:1122.520000pt;}
.h1_c00319{height:1122.666667pt;}
.w2_c00319{width:55.600000pt;}
.w3_c00319{width:55.680000pt;}
.w4_c00319{width:77.200000pt;}
.w5_c00319{width:130.242667pt;}
.w0_c00319{width:793.701333pt;}
.w1_c00319{width:794.000000pt;}
.x0_c00319{left:0.000000pt;}
.xe_c00319{left:8.104267pt;}
.x1_c00319{left:48.000000pt;}
.x2_c00319{left:113.440000pt;}
.x3_c00319{left:141.760000pt;}
.x4_c00319{left:148.960000pt;}
.xc_c00319{left:150.639973pt;}
.xb_c00319{left:157.373413pt;}
.x5_c00319{left:204.560933pt;}
.xd_c00319{left:220.560000pt;}
.x8_c00319{left:253.592133pt;}
.x11_c00319{left:280.080000pt;}
.x6_c00319{left:356.156853pt;}
.xf_c00319{left:364.160000pt;}
.x12_c00319{left:369.280000pt;}
.x9_c00319{left:403.852053pt;}
.x7_c00319{left:499.750133pt;}
.x10_c00319{left:507.680000pt;}
.xa_c00319{left:550.117333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00320;src:url('chunks/assets/font_782e2230bef917357986c702.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00320;src:url('chunks/assets/font_e6dcac270e027c63d34c0368.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00320;src:url('chunks/assets/font_b9500a64801dcb3e281639fc.woff2')format("woff");}.ff4_c00320{font-family:ff4_c00320;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00320;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00320{font-family:ff5_c00320;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00320;src:url('chunks/assets/font_2c0cd7501d519655fbda3ac6.woff2')format("woff");}.ff6_c00320{font-family:ff6_c00320;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00320;src:url('chunks/assets/font_e6dcac270e027c63d34c0368.woff2')format("woff");}.ff7_c00320{font-family:ff7_c00320;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00320;src:url('chunks/assets/font_2d3aad2dba49d94538f66f13.woff2')format("woff");}.ff8_c00320{font-family:ff8_c00320;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v3_c00320{vertical-align:-39.378600px;}
.v2_c00320{vertical-align:-30.540960px;}
.v0_c00320{vertical-align:0.000000px;}
.v4_c00320{vertical-align:30.540960px;}
.v1_c00320{vertical-align:39.378600px;}
.ls10_c00320{letter-spacing:-0.360000px;}
.lsf_c00320{letter-spacing:-0.288000px;}
.lse_c00320{letter-spacing:-0.120240px;}
.lsd_c00320{letter-spacing:-0.060120px;}
.lsc_c00320{letter-spacing:0.000000px;}
.ls0_c00320{letter-spacing:0.072000px;}
.ls5_c00320{letter-spacing:0.120240px;}
.ls7_c00320{letter-spacing:0.144000px;}
.ls6_c00320{letter-spacing:20.167200px;}
.ls4_c00320{letter-spacing:20.174400px;}
.ls3_c00320{letter-spacing:21.024000px;}
.ls1_c00320{letter-spacing:23.040000px;}
.ls2_c00320{letter-spacing:27.000000px;}
.ls8_c00320{letter-spacing:32.040000px;}
.lsa_c00320{letter-spacing:495.088200px;}
.lsb_c00320{letter-spacing:501.100200px;}
.ls9_c00320{letter-spacing:531.100080px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00320{word-spacing:-18.000000px;}
.ws4_c00320{word-spacing:-13.707360px;}
.ws5_c00320{word-spacing:-13.527000px;}
.ws35_c00320{word-spacing:-1.803600px;}
.ws22_c00320{word-spacing:-0.541080px;}
.ws20_c00320{word-spacing:-0.360000px;}
.ws21_c00320{word-spacing:-0.120240px;}
.wsd_c00320{word-spacing:-0.072000px;}
.ws3_c00320{word-spacing:0.000000px;}
.ws23_c00320{word-spacing:0.288000px;}
.ws34_c00320{word-spacing:1.080000px;}
.ws1f_c00320{word-spacing:2.088000px;}
.ws13_c00320{word-spacing:2.160000px;}
.ws1e_c00320{word-spacing:2.304000px;}
.ws1d_c00320{word-spacing:2.520000px;}
.ws12_c00320{word-spacing:2.808000px;}
.ws11_c00320{word-spacing:2.880000px;}
.ws2e_c00320{word-spacing:3.096000px;}
.ws2d_c00320{word-spacing:3.168000px;}
.ws2f_c00320{word-spacing:3.240000px;}
.ws9_c00320{word-spacing:4.320000px;}
.ws26_c00320{word-spacing:4.608000px;}
.wsb_c00320{word-spacing:4.896000px;}
.wsc_c00320{word-spacing:4.968000px;}
.ws1_c00320{word-spacing:5.040000px;}
.ws25_c00320{word-spacing:6.048000px;}
.ws24_c00320{word-spacing:6.120000px;}
.ws27_c00320{word-spacing:6.768000px;}
.ws17_c00320{word-spacing:8.136000px;}
.ws15_c00320{word-spacing:8.208000px;}
.ws16_c00320{word-spacing:8.280000px;}
.ws10_c00320{word-spacing:8.928000px;}
.wsf_c00320{word-spacing:9.000000px;}
.ws14_c00320{word-spacing:9.648000px;}
.ws28_c00320{word-spacing:9.720000px;}
.ws29_c00320{word-spacing:10.296000px;}
.ws8_c00320{word-spacing:11.088000px;}
.ws7_c00320{word-spacing:11.448000px;}
.ws31_c00320{word-spacing:13.680000px;}
.ws30_c00320{word-spacing:13.968000px;}
.ws1a_c00320{word-spacing:15.048000px;}
.ws33_c00320{word-spacing:15.336000px;}
.ws32_c00320{word-spacing:15.408000px;}
.ws19_c00320{word-spacing:15.480000px;}
.wsa_c00320{word-spacing:17.640000px;}
.ws2_c00320{word-spacing:17.784000px;}
.ws1c_c00320{word-spacing:18.936000px;}
.ws1b_c00320{word-spacing:19.368000px;}
.ws2c_c00320{word-spacing:21.600000px;}
.wse_c00320{word-spacing:24.840000px;}
.ws2b_c00320{word-spacing:27.576000px;}
.ws6_c00320{word-spacing:27.648000px;}
.ws2a_c00320{word-spacing:27.720000px;}
.ws18_c00320{word-spacing:34.920000px;}
._0_c00320{margin-left:-1.094400px;}
._1_c00320{width:1.008000px;}
._2_c00320{width:24.192000px;}
.fc2_c00320{color:transparent;}
.fc1_c00320{color:rgb(0,0,0);}
.fc0_c00320{color:rgb(35,31,32);}
.fs1_c00320{font-size:60.120000px;}
.fs0_c00320{font-size:72.000000px;}
.y0_c00320{bottom:0.000000px;}
.y2b_c00320{bottom:18.187200px;}
.y28_c00320{bottom:18.188700px;}
.y3e_c00320{bottom:18.232200px;}
.y2a_c00320{bottom:49.825950px;}
.y27_c00320{bottom:49.827450px;}
.y3d_c00320{bottom:49.871250px;}
.y1_c00320{bottom:61.748550px;}
.y15_c00320{bottom:177.524400px;}
.y14_c00320{bottom:208.574400px;}
.y13_c00320{bottom:239.624400px;}
.y12_c00320{bottom:270.674400px;}
.y11_c00320{bottom:301.724400px;}
.y10_c00320{bottom:332.774400px;}
.yf_c00320{bottom:363.824400px;}
.ye_c00320{bottom:394.874400px;}
.yd_c00320{bottom:425.924400px;}
.yc_c00320{bottom:456.974400px;}
.yb_c00320{bottom:488.024400px;}
.y32_c00320{bottom:519.074400px;}
.ya_c00320{bottom:550.124400px;}
.y26_c00320{bottom:568.303500px;}
.y29_c00320{bottom:568.305000px;}
.y31_c00320{bottom:612.224400px;}
.y1c_c00320{bottom:637.630920px;}
.y30_c00320{bottom:643.274400px;}
.y1d_c00320{bottom:663.587730px;}
.y2f_c00320{bottom:674.324400px;}
.y1e_c00320{bottom:689.544540px;}
.y1b_c00320{bottom:696.939300px;}
.y2e_c00320{bottom:705.374400px;}
.y1f_c00320{bottom:715.501350px;}
.y16_c00320{bottom:735.340950px;}
.y2d_c00320{bottom:736.424400px;}
.y20_c00320{bottom:741.458160px;}
.y1a_c00320{bottom:747.635490px;}
.y21_c00320{bottom:767.414970px;}
.y22_c00320{bottom:793.371780px;}
.y2c_c00320{bottom:798.434400px;}
.y17_c00320{bottom:817.374690px;}
.y23_c00320{bottom:819.328590px;}
.y19_c00320{bottom:829.669230px;}
.y3c_c00320{bottom:832.185000px;}
.y24_c00320{bottom:845.285400px;}
.y18_c00320{bottom:868.070880px;}
.y25_c00320{bottom:871.242210px;}
.y35_c00320{bottom:901.547190px;}
.y36_c00320{bottom:940.489920px;}
.y9_c00320{bottom:953.684400px;}
.y37_c00320{bottom:979.432650px;}
.y8_c00320{bottom:984.734400px;}
.y7_c00320{bottom:1015.784400px;}
.y38_c00320{bottom:1018.375380px;}
.y6_c00320{bottom:1046.834400px;}
.y39_c00320{bottom:1057.318110px;}
.y5_c00320{bottom:1077.884400px;}
.y3a_c00320{bottom:1096.260840px;}
.y4_c00320{bottom:1108.934400px;}
.y33_c00320{bottom:1110.870000px;}
.y34_c00320{bottom:1111.786830px;}
.y3b_c00320{bottom:1135.203570px;}
.y3_c00320{bottom:1139.984400px;}
.y2_c00320{bottom:1193.174400px;}
.h7_c00320{height:32.490000px;}
.ha_c00320{height:32.580000px;}
.h5_c00320{height:49.581387px;}
.h2_c00320{height:50.400000px;}
.h8_c00320{height:64.170000px;}
.h6_c00320{height:64.171500px;}
.h3_c00320{height:76.824000px;}
.h4_c00320{height:78.048000px;}
.h9_c00320{height:88.959987px;}
.h0_c00320{height:1262.835000px;}
.h1_c00320{height:1263.000000px;}
.w3_c00320{width:-582.234000px;}
.w6_c00320{width:-490.974000px;}
.w4_c00320{width:-420.684000px;}
.w9_c00320{width:-330.954000px;}
.w7_c00320{width:-330.952500px;}
.w5_c00320{width:-259.134000px;}
.w2_c00320{width:0.000000px;}
.w8_c00320{width:0.066000px;}
.wa_c00320{width:62.550000px;}
.wb_c00320{width:62.640000px;}
.wc_c00320{width:163.167000px;}
.wd_c00320{width:178.113000px;}
.w0_c00320{width:892.914000px;}
.w1_c00320{width:893.250000px;}
.x1_c00320{left:-838.913400px;}
.x2_c00320{left:-765.293400px;}
.x3_c00320{left:-733.433400px;}
.x4_c00320{left:-725.333400px;}
.xc_c00320{left:-723.443430px;}
.xb_c00320{left:-715.868310px;}
.x5_c00320{left:-662.782350px;}
.xd_c00320{left:-635.666100px;}
.x8_c00320{left:-607.622250px;}
.x10_c00320{left:-568.643400px;}
.x6_c00320{left:-492.236940px;}
.xe_c00320{left:-474.123900px;}
.x11_c00320{left:-468.361800px;}
.x9_c00320{left:-438.579840px;}
.x7_c00320{left:-330.694500px;}
.xf_c00320{left:-312.581850px;}
.xa_c00320{left:-274.031400px;}
.x0_c00320{left:0.000000px;}
.x1b_c00320{left:9.117300px;}
.x16_c00320{left:127.620000px;}
.x15_c00320{left:159.480000px;}
.x19_c00320{left:169.469970px;}
.x14_c00320{left:176.670000px;}
.x17_c00320{left:230.131050px;}
.x1a_c00320{left:248.130000px;}
.x1e_c00320{left:253.890000px;}
.x18_c00320{left:294.294120px;}
.x1c_c00320{left:409.680000px;}
.x1f_c00320{left:441.630000px;}
.x1d_c00320{left:571.140000px;}
.x13_c00320{left:679.950000px;}
.x12_c00320{left:804.366150px;}
@media print{
.v3_c00320{vertical-align:-35.003200pt;}
.v2_c00320{vertical-align:-27.147520pt;}
.v0_c00320{vertical-align:0.000000pt;}
.v4_c00320{vertical-align:27.147520pt;}
.v1_c00320{vertical-align:35.003200pt;}
.ls10_c00320{letter-spacing:-0.320000pt;}
.lsf_c00320{letter-spacing:-0.256000pt;}
.lse_c00320{letter-spacing:-0.106880pt;}
.lsd_c00320{letter-spacing:-0.053440pt;}
.lsc_c00320{letter-spacing:0.000000pt;}
.ls0_c00320{letter-spacing:0.064000pt;}
.ls5_c00320{letter-spacing:0.106880pt;}
.ls7_c00320{letter-spacing:0.128000pt;}
.ls6_c00320{letter-spacing:17.926400pt;}
.ls4_c00320{letter-spacing:17.932800pt;}
.ls3_c00320{letter-spacing:18.688000pt;}
.ls1_c00320{letter-spacing:20.480000pt;}
.ls2_c00320{letter-spacing:24.000000pt;}
.ls8_c00320{letter-spacing:28.480000pt;}
.lsa_c00320{letter-spacing:440.078400pt;}
.lsb_c00320{letter-spacing:445.422400pt;}
.ls9_c00320{letter-spacing:472.088960pt;}
.ws0_c00320{word-spacing:-16.000000pt;}
.ws4_c00320{word-spacing:-12.184320pt;}
.ws5_c00320{word-spacing:-12.024000pt;}
.ws35_c00320{word-spacing:-1.603200pt;}
.ws22_c00320{word-spacing:-0.480960pt;}
.ws20_c00320{word-spacing:-0.320000pt;}
.ws21_c00320{word-spacing:-0.106880pt;}
.wsd_c00320{word-spacing:-0.064000pt;}
.ws3_c00320{word-spacing:0.000000pt;}
.ws23_c00320{word-spacing:0.256000pt;}
.ws34_c00320{word-spacing:0.960000pt;}
.ws1f_c00320{word-spacing:1.856000pt;}
.ws13_c00320{word-spacing:1.920000pt;}
.ws1e_c00320{word-spacing:2.048000pt;}
.ws1d_c00320{word-spacing:2.240000pt;}
.ws12_c00320{word-spacing:2.496000pt;}
.ws11_c00320{word-spacing:2.560000pt;}
.ws2e_c00320{word-spacing:2.752000pt;}
.ws2d_c00320{word-spacing:2.816000pt;}
.ws2f_c00320{word-spacing:2.880000pt;}
.ws9_c00320{word-spacing:3.840000pt;}
.ws26_c00320{word-spacing:4.096000pt;}
.wsb_c00320{word-spacing:4.352000pt;}
.wsc_c00320{word-spacing:4.416000pt;}
.ws1_c00320{word-spacing:4.480000pt;}
.ws25_c00320{word-spacing:5.376000pt;}
.ws24_c00320{word-spacing:5.440000pt;}
.ws27_c00320{word-spacing:6.016000pt;}
.ws17_c00320{word-spacing:7.232000pt;}
.ws15_c00320{word-spacing:7.296000pt;}
.ws16_c00320{word-spacing:7.360000pt;}
.ws10_c00320{word-spacing:7.936000pt;}
.wsf_c00320{word-spacing:8.000000pt;}
.ws14_c00320{word-spacing:8.576000pt;}
.ws28_c00320{word-spacing:8.640000pt;}
.ws29_c00320{word-spacing:9.152000pt;}
.ws8_c00320{word-spacing:9.856000pt;}
.ws7_c00320{word-spacing:10.176000pt;}
.ws31_c00320{word-spacing:12.160000pt;}
.ws30_c00320{word-spacing:12.416000pt;}
.ws1a_c00320{word-spacing:13.376000pt;}
.ws33_c00320{word-spacing:13.632000pt;}
.ws32_c00320{word-spacing:13.696000pt;}
.ws19_c00320{word-spacing:13.760000pt;}
.wsa_c00320{word-spacing:15.680000pt;}
.ws2_c00320{word-spacing:15.808000pt;}
.ws1c_c00320{word-spacing:16.832000pt;}
.ws1b_c00320{word-spacing:17.216000pt;}
.ws2c_c00320{word-spacing:19.200000pt;}
.wse_c00320{word-spacing:22.080000pt;}
.ws2b_c00320{word-spacing:24.512000pt;}
.ws6_c00320{word-spacing:24.576000pt;}
.ws2a_c00320{word-spacing:24.640000pt;}
.ws18_c00320{word-spacing:31.040000pt;}
._0_c00320{margin-left:-0.972800pt;}
._1_c00320{width:0.896000pt;}
._2_c00320{width:21.504000pt;}
.fs1_c00320{font-size:53.440000pt;}
.fs0_c00320{font-size:64.000000pt;}
.y0_c00320{bottom:0.000000pt;}
.y2b_c00320{bottom:16.166400pt;}
.y28_c00320{bottom:16.167733pt;}
.y3e_c00320{bottom:16.206400pt;}
.y2a_c00320{bottom:44.289733pt;}
.y27_c00320{bottom:44.291067pt;}
.y3d_c00320{bottom:44.330000pt;}
.y1_c00320{bottom:54.887600pt;}
.y15_c00320{bottom:157.799467pt;}
.y14_c00320{bottom:185.399467pt;}
.y13_c00320{bottom:212.999467pt;}
.y12_c00320{bottom:240.599467pt;}
.y11_c00320{bottom:268.199467pt;}
.y10_c00320{bottom:295.799467pt;}
.yf_c00320{bottom:323.399467pt;}
.ye_c00320{bottom:350.999467pt;}
.yd_c00320{bottom:378.599467pt;}
.yc_c00320{bottom:406.199467pt;}
.yb_c00320{bottom:433.799467pt;}
.y32_c00320{bottom:461.399467pt;}
.ya_c00320{bottom:488.999467pt;}
.y26_c00320{bottom:505.158667pt;}
.y29_c00320{bottom:505.160000pt;}
.y31_c00320{bottom:544.199467pt;}
.y1c_c00320{bottom:566.783040pt;}
.y30_c00320{bottom:571.799467pt;}
.y1d_c00320{bottom:589.855760pt;}
.y2f_c00320{bottom:599.399467pt;}
.y1e_c00320{bottom:612.928480pt;}
.y1b_c00320{bottom:619.501600pt;}
.y2e_c00320{bottom:626.999467pt;}
.y1f_c00320{bottom:636.001200pt;}
.y16_c00320{bottom:653.636400pt;}
.y2d_c00320{bottom:654.599467pt;}
.y20_c00320{bottom:659.073920pt;}
.y1a_c00320{bottom:664.564880pt;}
.y21_c00320{bottom:682.146640pt;}
.y22_c00320{bottom:705.219360pt;}
.y2c_c00320{bottom:709.719467pt;}
.y17_c00320{bottom:726.555280pt;}
.y23_c00320{bottom:728.292080pt;}
.y19_c00320{bottom:737.483760pt;}
.y3c_c00320{bottom:739.720000pt;}
.y24_c00320{bottom:751.364800pt;}
.y18_c00320{bottom:771.618560pt;}
.y25_c00320{bottom:774.437520pt;}
.y35_c00320{bottom:801.375280pt;}
.y36_c00320{bottom:835.991040pt;}
.y9_c00320{bottom:847.719467pt;}
.y37_c00320{bottom:870.606800pt;}
.y8_c00320{bottom:875.319467pt;}
.y7_c00320{bottom:902.919467pt;}
.y38_c00320{bottom:905.222560pt;}
.y6_c00320{bottom:930.519467pt;}
.y39_c00320{bottom:939.838320pt;}
.y5_c00320{bottom:958.119467pt;}
.y3a_c00320{bottom:974.454080pt;}
.y4_c00320{bottom:985.719467pt;}
.y33_c00320{bottom:987.440000pt;}
.y34_c00320{bottom:988.254960pt;}
.y3b_c00320{bottom:1009.069840pt;}
.y3_c00320{bottom:1013.319467pt;}
.y2_c00320{bottom:1060.599467pt;}
.h7_c00320{height:28.880000pt;}
.ha_c00320{height:28.960000pt;}
.h5_c00320{height:44.072344pt;}
.h2_c00320{height:44.800000pt;}
.h8_c00320{height:57.040000pt;}
.h6_c00320{height:57.041333pt;}
.h3_c00320{height:68.288000pt;}
.h4_c00320{height:69.376000pt;}
.h9_c00320{height:79.075544pt;}
.h0_c00320{height:1122.520000pt;}
.h1_c00320{height:1122.666667pt;}
.w3_c00320{width:-517.541333pt;}
.w6_c00320{width:-436.421333pt;}
.w4_c00320{width:-373.941333pt;}
.w9_c00320{width:-294.181333pt;}
.w7_c00320{width:-294.180000pt;}
.w5_c00320{width:-230.341333pt;}
.w2_c00320{width:0.000000pt;}
.w8_c00320{width:0.058667pt;}
.wa_c00320{width:55.600000pt;}
.wb_c00320{width:55.680000pt;}
.wc_c00320{width:145.037333pt;}
.wd_c00320{width:158.322667pt;}
.w0_c00320{width:793.701333pt;}
.w1_c00320{width:794.000000pt;}
.x1_c00320{left:-745.700800pt;}
.x2_c00320{left:-680.260800pt;}
.x3_c00320{left:-651.940800pt;}
.x4_c00320{left:-644.740800pt;}
.xc_c00320{left:-643.060827pt;}
.xb_c00320{left:-636.327387pt;}
.x5_c00320{left:-589.139867pt;}
.xd_c00320{left:-565.036533pt;}
.x8_c00320{left:-540.108667pt;}
.x10_c00320{left:-505.460800pt;}
.x6_c00320{left:-437.543947pt;}
.xe_c00320{left:-421.443467pt;}
.x11_c00320{left:-416.321600pt;}
.x9_c00320{left:-389.848747pt;}
.x7_c00320{left:-293.950667pt;}
.xf_c00320{left:-277.850533pt;}
.xa_c00320{left:-243.583467pt;}
.x0_c00320{left:0.000000pt;}
.x1b_c00320{left:8.104267pt;}
.x16_c00320{left:113.440000pt;}
.x15_c00320{left:141.760000pt;}
.x19_c00320{left:150.639973pt;}
.x14_c00320{left:157.040000pt;}
.x17_c00320{left:204.560933pt;}
.x1a_c00320{left:220.560000pt;}
.x1e_c00320{left:225.680000pt;}
.x18_c00320{left:261.594773pt;}
.x1c_c00320{left:364.160000pt;}
.x1f_c00320{left:392.560000pt;}
.x1d_c00320{left:507.680000pt;}
.x13_c00320{left:604.400000pt;}
.x12_c00320{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00321;src:url('chunks/assets/font_ac6209613b7e056da6af463a.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00321;src:url('chunks/assets/font_aaafd7d0f87d18ddb755901a.woff2')format("woff");}.ff3_c00321{font-family:ff3_c00321;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00321;src:url('chunks/assets/font_d95043ed5a83a1caeb13ceb4.woff2')format("woff");}.ff4_c00321{font-family:ff4_c00321;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00321{vertical-align:-19.058040px;}
.v0_c00321{vertical-align:0.000000px;}
.v2_c00321{vertical-align:8.597160px;}
.v3_c00321{vertical-align:21.342600px;}
.ls8_c00321{letter-spacing:-0.360000px;}
.lsa_c00321{letter-spacing:-0.120240px;}
.ls7_c00321{letter-spacing:-0.072000px;}
.ls9_c00321{letter-spacing:-0.060120px;}
.ls6_c00321{letter-spacing:0.000000px;}
.ls0_c00321{letter-spacing:0.072000px;}
.ls3_c00321{letter-spacing:0.120240px;}
.ls1_c00321{letter-spacing:22.320000px;}
.ls2_c00321{letter-spacing:27.720000px;}
.ls5_c00321{letter-spacing:215.275440px;}
.ls4_c00321{letter-spacing:458.174520px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00321{word-spacing:-18.072000px;}
.ws0_c00321{word-spacing:-18.000000px;}
.ws6_c00321{word-spacing:-13.707360px;}
.ws23_c00321{word-spacing:-1.442880px;}
.ws21_c00321{word-spacing:-0.541080px;}
.ws22_c00321{word-spacing:-0.480960px;}
.ws20_c00321{word-spacing:-0.120240px;}
.wsd_c00321{word-spacing:-0.072000px;}
.ws7_c00321{word-spacing:0.000000px;}
.ws3_c00321{word-spacing:0.072000px;}
.ws14_c00321{word-spacing:0.360000px;}
.ws5_c00321{word-spacing:2.088000px;}
.ws18_c00321{word-spacing:2.160000px;}
.ws15_c00321{word-spacing:2.808000px;}
.ws16_c00321{word-spacing:2.880000px;}
.ws1c_c00321{word-spacing:3.528000px;}
.ws1b_c00321{word-spacing:3.600000px;}
.wsb_c00321{word-spacing:4.320000px;}
.wsa_c00321{word-spacing:4.608000px;}
.ws9_c00321{word-spacing:6.048000px;}
.ws17_c00321{word-spacing:6.120000px;}
.ws8_c00321{word-spacing:6.408000px;}
.wsc_c00321{word-spacing:7.200000px;}
.ws10_c00321{word-spacing:9.216000px;}
.wsf_c00321{word-spacing:9.288000px;}
.wse_c00321{word-spacing:9.360000px;}
.ws4_c00321{word-spacing:9.648000px;}
.ws13_c00321{word-spacing:9.720000px;}
.ws19_c00321{word-spacing:13.464000px;}
.ws1a_c00321{word-spacing:13.680000px;}
.ws1e_c00321{word-spacing:14.616000px;}
.ws1f_c00321{word-spacing:15.048000px;}
.ws12_c00321{word-spacing:18.000000px;}
.ws11_c00321{word-spacing:24.120000px;}
.ws1_c00321{word-spacing:24.264000px;}
.ws1d_c00321{word-spacing:28.080000px;}
._6_c00321{margin-left:-2.164320px;}
._0_c00321{margin-left:-1.152000px;}
._1_c00321{width:1.080000px;}
._3_c00321{width:3.528000px;}
._2_c00321{width:9.720000px;}
._5_c00321{width:566.631000px;}
._4_c00321{width:604.807200px;}
.fc1_c00321{color:rgb(0,0,0);}
.fc0_c00321{color:rgb(35,31,32);}
.fs1_c00321{font-size:60.120000px;}
.fs0_c00321{font-size:72.000000px;}
.y0_c00321{bottom:0.000000px;}
.y2a_c00321{bottom:17.602350px;}
.y1_c00321{bottom:61.748550px;}
.y14_c00321{bottom:177.524400px;}
.y13_c00321{bottom:208.574400px;}
.y12_c00321{bottom:239.624400px;}
.y11_c00321{bottom:270.674400px;}
.y10_c00321{bottom:301.724400px;}
.yf_c00321{bottom:332.774400px;}
.ye_c00321{bottom:363.824400px;}
.yd_c00321{bottom:394.874400px;}
.yc_c00321{bottom:425.924400px;}
.yb_c00321{bottom:456.974400px;}
.ya_c00321{bottom:488.024400px;}
.y9_c00321{bottom:519.074400px;}
.y8_c00321{bottom:581.174400px;}
.y7_c00321{bottom:612.224400px;}
.y6_c00321{bottom:643.274400px;}
.y5_c00321{bottom:674.324400px;}
.y4_c00321{bottom:736.424400px;}
.y3_c00321{bottom:767.474400px;}
.y29_c00321{bottom:801.852000px;}
.y28_c00321{bottom:845.423550px;}
.y27_c00321{bottom:870.951510px;}
.y1d_c00321{bottom:890.445420px;}
.y1c_c00321{bottom:905.520510px;}
.y18_c00321{bottom:910.285020px;}
.y1e_c00321{bottom:914.267970px;}
.y1f_c00321{bottom:938.090520px;}
.y1a_c00321{bottom:949.347990px;}
.y20_c00321{bottom:961.913070px;}
.y16_c00321{bottom:978.566310px;}
.y21_c00321{bottom:985.735620px;}
.y22_c00321{bottom:1009.558170px;}
.y1b_c00321{bottom:1022.483970px;}
.y23_c00321{bottom:1033.380720px;}
.y17_c00321{bottom:1036.356660px;}
.y24_c00321{bottom:1057.203270px;}
.y19_c00321{bottom:1070.655120px;}
.y25_c00321{bottom:1081.025820px;}
.y15_c00321{bottom:1103.961600px;}
.y26_c00321{bottom:1104.848370px;}
.y2_c00321{bottom:1193.174400px;}
.h8_c00321{height:31.950000px;}
.h5_c00321{height:49.581387px;}
.h2_c00321{height:50.400000px;}
.h6_c00321{height:58.178547px;}
.h7_c00321{height:70.923987px;}
.h3_c00321{height:76.824000px;}
.h4_c00321{height:78.048000px;}
.h0_c00321{height:1262.835000px;}
.h1_c00321{height:1263.000000px;}
.w3_c00321{width:155.610000px;}
.w2_c00321{width:216.357000px;}
.w0_c00321{width:892.914000px;}
.w1_c00321{width:893.250000px;}
.x0_c00321{left:0.000000px;}
.x11_c00321{left:9.188400px;}
.x1_c00321{left:54.000000px;}
.x2_c00321{left:127.620000px;}
.x3_c00321{left:159.480000px;}
.xd_c00321{left:169.423380px;}
.xc_c00321{left:177.088680px;}
.x4_c00321{left:218.255850px;}
.x10_c00321{left:226.350000px;}
.xf_c00321{left:235.538400px;}
.xe_c00321{left:257.604390px;}
.x7_c00321{left:261.166500px;}
.x8_c00321{left:277.248600px;}
.xb_c00321{left:320.159250px;}
.x5_c00321{left:380.474640px;}
.x9_c00321{left:447.117660px;}
.x12_c00321{left:463.230000px;}
.x6_c00321{left:542.693430px;}
.xa_c00321{left:601.686180px;}
@media print{
.v1_c00321{vertical-align:-16.940480pt;}
.v0_c00321{vertical-align:0.000000pt;}
.v2_c00321{vertical-align:7.641920pt;}
.v3_c00321{vertical-align:18.971200pt;}
.ls8_c00321{letter-spacing:-0.320000pt;}
.lsa_c00321{letter-spacing:-0.106880pt;}
.ls7_c00321{letter-spacing:-0.064000pt;}
.ls9_c00321{letter-spacing:-0.053440pt;}
.ls6_c00321{letter-spacing:0.000000pt;}
.ls0_c00321{letter-spacing:0.064000pt;}
.ls3_c00321{letter-spacing:0.106880pt;}
.ls1_c00321{letter-spacing:19.840000pt;}
.ls2_c00321{letter-spacing:24.640000pt;}
.ls5_c00321{letter-spacing:191.355947pt;}
.ls4_c00321{letter-spacing:407.266240pt;}
.ws2_c00321{word-spacing:-16.064000pt;}
.ws0_c00321{word-spacing:-16.000000pt;}
.ws6_c00321{word-spacing:-12.184320pt;}
.ws23_c00321{word-spacing:-1.282560pt;}
.ws21_c00321{word-spacing:-0.480960pt;}
.ws22_c00321{word-spacing:-0.427520pt;}
.ws20_c00321{word-spacing:-0.106880pt;}
.wsd_c00321{word-spacing:-0.064000pt;}
.ws7_c00321{word-spacing:0.000000pt;}
.ws3_c00321{word-spacing:0.064000pt;}
.ws14_c00321{word-spacing:0.320000pt;}
.ws5_c00321{word-spacing:1.856000pt;}
.ws18_c00321{word-spacing:1.920000pt;}
.ws15_c00321{word-spacing:2.496000pt;}
.ws16_c00321{word-spacing:2.560000pt;}
.ws1c_c00321{word-spacing:3.136000pt;}
.ws1b_c00321{word-spacing:3.200000pt;}
.wsb_c00321{word-spacing:3.840000pt;}
.wsa_c00321{word-spacing:4.096000pt;}
.ws9_c00321{word-spacing:5.376000pt;}
.ws17_c00321{word-spacing:5.440000pt;}
.ws8_c00321{word-spacing:5.696000pt;}
.wsc_c00321{word-spacing:6.400000pt;}
.ws10_c00321{word-spacing:8.192000pt;}
.wsf_c00321{word-spacing:8.256000pt;}
.wse_c00321{word-spacing:8.320000pt;}
.ws4_c00321{word-spacing:8.576000pt;}
.ws13_c00321{word-spacing:8.640000pt;}
.ws19_c00321{word-spacing:11.968000pt;}
.ws1a_c00321{word-spacing:12.160000pt;}
.ws1e_c00321{word-spacing:12.992000pt;}
.ws1f_c00321{word-spacing:13.376000pt;}
.ws12_c00321{word-spacing:16.000000pt;}
.ws11_c00321{word-spacing:21.440000pt;}
.ws1_c00321{word-spacing:21.568000pt;}
.ws1d_c00321{word-spacing:24.960000pt;}
._6_c00321{margin-left:-1.923840pt;}
._0_c00321{margin-left:-1.024000pt;}
._1_c00321{width:0.960000pt;}
._3_c00321{width:3.136000pt;}
._2_c00321{width:8.640000pt;}
._5_c00321{width:503.672000pt;}
._4_c00321{width:537.606400pt;}
.fs1_c00321{font-size:53.440000pt;}
.fs0_c00321{font-size:64.000000pt;}
.y0_c00321{bottom:0.000000pt;}
.y2a_c00321{bottom:15.646533pt;}
.y1_c00321{bottom:54.887600pt;}
.y14_c00321{bottom:157.799467pt;}
.y13_c00321{bottom:185.399467pt;}
.y12_c00321{bottom:212.999467pt;}
.y11_c00321{bottom:240.599467pt;}
.y10_c00321{bottom:268.199467pt;}
.yf_c00321{bottom:295.799467pt;}
.ye_c00321{bottom:323.399467pt;}
.yd_c00321{bottom:350.999467pt;}
.yc_c00321{bottom:378.599467pt;}
.yb_c00321{bottom:406.199467pt;}
.ya_c00321{bottom:433.799467pt;}
.y9_c00321{bottom:461.399467pt;}
.y8_c00321{bottom:516.599467pt;}
.y7_c00321{bottom:544.199467pt;}
.y6_c00321{bottom:571.799467pt;}
.y5_c00321{bottom:599.399467pt;}
.y4_c00321{bottom:654.599467pt;}
.y3_c00321{bottom:682.199467pt;}
.y29_c00321{bottom:712.757333pt;}
.y28_c00321{bottom:751.487600pt;}
.y27_c00321{bottom:774.179120pt;}
.y1d_c00321{bottom:791.507040pt;}
.y1c_c00321{bottom:804.907120pt;}
.y18_c00321{bottom:809.142240pt;}
.y1e_c00321{bottom:812.682640pt;}
.y1f_c00321{bottom:833.858240pt;}
.y1a_c00321{bottom:843.864880pt;}
.y20_c00321{bottom:855.033840pt;}
.y16_c00321{bottom:869.836720pt;}
.y21_c00321{bottom:876.209440pt;}
.y22_c00321{bottom:897.385040pt;}
.y1b_c00321{bottom:908.874640pt;}
.y23_c00321{bottom:918.560640pt;}
.y17_c00321{bottom:921.205920pt;}
.y24_c00321{bottom:939.736240pt;}
.y19_c00321{bottom:951.693440pt;}
.y25_c00321{bottom:960.911840pt;}
.y15_c00321{bottom:981.299200pt;}
.y26_c00321{bottom:982.087440pt;}
.y2_c00321{bottom:1060.599467pt;}
.h8_c00321{height:28.400000pt;}
.h5_c00321{height:44.072344pt;}
.h2_c00321{height:44.800000pt;}
.h6_c00321{height:51.714264pt;}
.h7_c00321{height:63.043544pt;}
.h3_c00321{height:68.288000pt;}
.h4_c00321{height:69.376000pt;}
.h0_c00321{height:1122.520000pt;}
.h1_c00321{height:1122.666667pt;}
.w3_c00321{width:138.320000pt;}
.w2_c00321{width:192.317333pt;}
.w0_c00321{width:793.701333pt;}
.w1_c00321{width:794.000000pt;}
.x0_c00321{left:0.000000pt;}
.x11_c00321{left:8.167467pt;}
.x1_c00321{left:48.000000pt;}
.x2_c00321{left:113.440000pt;}
.x3_c00321{left:141.760000pt;}
.xd_c00321{left:150.598560pt;}
.xc_c00321{left:157.412160pt;}
.x4_c00321{left:194.005200pt;}
.x10_c00321{left:201.200000pt;}
.xf_c00321{left:209.367467pt;}
.xe_c00321{left:228.981680pt;}
.x7_c00321{left:232.148000pt;}
.x8_c00321{left:246.443200pt;}
.xb_c00321{left:284.586000pt;}
.x5_c00321{left:338.199680pt;}
.x9_c00321{left:397.437920pt;}
.x12_c00321{left:411.760000pt;}
.x6_c00321{left:482.394160pt;}
.xa_c00321{left:534.832160pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00322;src:url('chunks/assets/font_dff4f1829f8b200ebbae651a.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00322;src:url('chunks/assets/font_c2b9317b4ab1752bad45f03c.woff2')format("woff");}.ff3_c00322{font-family:ff3_c00322;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00322;src:url('chunks/assets/font_90e3a18c0bc5ed4b4c904c09.woff2')format("woff");}.ff4_c00322{font-family:ff4_c00322;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00322;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00322{font-family:ff5_c00322;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00322;src:url('chunks/assets/font_c002558246e9abe04d27044b.woff2')format("woff");}.ff6_c00322{font-family:ff6_c00322;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00322;src:url('chunks/assets/font_58de8773aa785e236f1d2dcc.woff2')format("woff");}.ff7_c00322{font-family:ff7_c00322;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00322;src:url('chunks/assets/font_b31cb1005b17ab881b8f7d40.woff2')format("woff");}.ff8_c00322{font-family:ff8_c00322;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00322{vertical-align:-19.058040px;}
.v0_c00322{vertical-align:0.000000px;}
.v2_c00322{vertical-align:8.597160px;}
.v5_c00322{vertical-align:16.052040px;}
.v3_c00322{vertical-align:21.342600px;}
.v4_c00322{vertical-align:26.633160px;}
.lse_c00322{letter-spacing:-0.360000px;}
.ls10_c00322{letter-spacing:-0.120240px;}
.lsd_c00322{letter-spacing:-0.072000px;}
.ls11_c00322{letter-spacing:-0.065880px;}
.lsf_c00322{letter-spacing:-0.060120px;}
.lsc_c00322{letter-spacing:0.000000px;}
.ls0_c00322{letter-spacing:0.072000px;}
.ls3_c00322{letter-spacing:0.120240px;}
.ls8_c00322{letter-spacing:0.144000px;}
.ls6_c00322{letter-spacing:18.720000px;}
.ls1_c00322{letter-spacing:22.320000px;}
.ls7_c00322{letter-spacing:24.134400px;}
.ls2_c00322{letter-spacing:27.720000px;}
.ls9_c00322{letter-spacing:29.160000px;}
.lsb_c00322{letter-spacing:94.403040px;}
.ls5_c00322{letter-spacing:215.289720px;}
.ls4_c00322{letter-spacing:458.174520px;}
.lsa_c00322{letter-spacing:543.965760px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00322{word-spacing:-18.072000px;}
.ws0_c00322{word-spacing:-18.000000px;}
.ws6_c00322{word-spacing:-13.707360px;}
.ws24_c00322{word-spacing:-1.442880px;}
.ws22_c00322{word-spacing:-0.541080px;}
.ws23_c00322{word-spacing:-0.480960px;}
.ws2e_c00322{word-spacing:-0.144000px;}
.ws21_c00322{word-spacing:-0.120240px;}
.wse_c00322{word-spacing:-0.072000px;}
.ws8_c00322{word-spacing:0.000000px;}
.ws3_c00322{word-spacing:0.072000px;}
.ws25_c00322{word-spacing:0.131760px;}
.ws15_c00322{word-spacing:0.360000px;}
.ws27_c00322{word-spacing:0.648000px;}
.ws28_c00322{word-spacing:0.720000px;}
.ws2c_c00322{word-spacing:1.008000px;}
.ws34_c00322{word-spacing:1.368000px;}
.ws33_c00322{word-spacing:1.440000px;}
.ws5_c00322{word-spacing:2.088000px;}
.ws19_c00322{word-spacing:2.160000px;}
.ws31_c00322{word-spacing:2.520000px;}
.ws16_c00322{word-spacing:2.808000px;}
.ws17_c00322{word-spacing:2.880000px;}
.ws1d_c00322{word-spacing:3.528000px;}
.ws1c_c00322{word-spacing:3.600000px;}
.wsc_c00322{word-spacing:4.320000px;}
.wsb_c00322{word-spacing:4.608000px;}
.ws2f_c00322{word-spacing:4.680000px;}
.wsa_c00322{word-spacing:6.048000px;}
.ws18_c00322{word-spacing:6.120000px;}
.ws9_c00322{word-spacing:6.408000px;}
.wsd_c00322{word-spacing:7.200000px;}
.ws29_c00322{word-spacing:7.848000px;}
.ws2a_c00322{word-spacing:7.920000px;}
.ws30_c00322{word-spacing:8.928000px;}
.ws11_c00322{word-spacing:9.216000px;}
.ws10_c00322{word-spacing:9.288000px;}
.wsf_c00322{word-spacing:9.360000px;}
.ws35_c00322{word-spacing:9.576000px;}
.ws4_c00322{word-spacing:9.648000px;}
.ws14_c00322{word-spacing:9.720000px;}
.ws26_c00322{word-spacing:11.088000px;}
.ws2d_c00322{word-spacing:11.160000px;}
.ws32_c00322{word-spacing:11.520000px;}
.ws1a_c00322{word-spacing:13.464000px;}
.ws1b_c00322{word-spacing:13.680000px;}
.ws1f_c00322{word-spacing:14.616000px;}
.ws20_c00322{word-spacing:15.048000px;}
.ws7_c00322{word-spacing:16.720344px;}
.ws13_c00322{word-spacing:18.000000px;}
.ws2b_c00322{word-spacing:19.008000px;}
.ws12_c00322{word-spacing:24.120000px;}
.ws1_c00322{word-spacing:24.264000px;}
.ws1e_c00322{word-spacing:28.080000px;}
._6_c00322{margin-left:-2.164320px;}
._0_c00322{margin-left:-1.152000px;}
._1_c00322{width:1.080000px;}
._9_c00322{width:2.088000px;}
._3_c00322{width:3.528000px;}
._2_c00322{width:9.720000px;}
._7_c00322{width:11.088000px;}
._8_c00322{width:16.704000px;}
._a_c00322{width:544.086000px;}
._5_c00322{width:566.631000px;}
._4_c00322{width:604.807200px;}
.fc2_c00322{color:transparent;}
.fc1_c00322{color:rgb(0,0,0);}
.fc0_c00322{color:rgb(35,31,32);}
.fs1_c00322{font-size:60.120000px;}
.fs2_c00322{font-size:65.880000px;}
.fs0_c00322{font-size:72.000000px;}
.y0_c00322{bottom:0.000000px;}
.y2c_c00322{bottom:17.599350px;}
.y2a_c00322{bottom:17.600850px;}
.y53_c00322{bottom:37.608750px;}
.y1_c00322{bottom:61.748550px;}
.y51_c00322{bottom:75.932700px;}
.y3e_c00322{bottom:151.694400px;}
.y14_c00322{bottom:177.524400px;}
.y3d_c00322{bottom:182.744400px;}
.y13_c00322{bottom:208.574400px;}
.y3c_c00322{bottom:213.794400px;}
.y12_c00322{bottom:239.624400px;}
.y3b_c00322{bottom:244.844400px;}
.y11_c00322{bottom:270.674400px;}
.y3a_c00322{bottom:275.804400px;}
.y10_c00322{bottom:301.724400px;}
.y39_c00322{bottom:306.854400px;}
.yf_c00322{bottom:332.774400px;}
.y38_c00322{bottom:337.904400px;}
.ye_c00322{bottom:363.824400px;}
.yd_c00322{bottom:394.874400px;}
.y37_c00322{bottom:400.004400px;}
.yc_c00322{bottom:425.924400px;}
.y36_c00322{bottom:431.054400px;}
.yb_c00322{bottom:456.974400px;}
.y35_c00322{bottom:462.104400px;}
.ya_c00322{bottom:488.024400px;}
.y34_c00322{bottom:493.154400px;}
.y9_c00322{bottom:519.074400px;}
.y33_c00322{bottom:524.204400px;}
.y32_c00322{bottom:555.254400px;}
.y8_c00322{bottom:581.174400px;}
.y31_c00322{bottom:586.304400px;}
.y7_c00322{bottom:612.224400px;}
.y6_c00322{bottom:643.274400px;}
.y30_c00322{bottom:648.404400px;}
.y5_c00322{bottom:674.324400px;}
.y2f_c00322{bottom:679.454400px;}
.y2e_c00322{bottom:710.504400px;}
.y4_c00322{bottom:736.424400px;}
.y3_c00322{bottom:767.474400px;}
.y2d_c00322{bottom:771.259500px;}
.y29_c00322{bottom:801.853500px;}
.y2b_c00322{bottom:801.855000px;}
.y50_c00322{bottom:813.285000px;}
.y52_c00322{bottom:817.065000px;}
.y54_c00322{bottom:828.690900px;}
.y28_c00322{bottom:845.430570px;}
.y27_c00322{bottom:870.951510px;}
.y1d_c00322{bottom:890.445420px;}
.y1c_c00322{bottom:905.520510px;}
.y46_c00322{bottom:908.717100px;}
.y18_c00322{bottom:910.285020px;}
.y1e_c00322{bottom:914.267970px;}
.y42_c00322{bottom:923.792190px;}
.y47_c00322{bottom:931.532640px;}
.y1f_c00322{bottom:938.090520px;}
.y3f_c00322{bottom:948.847200px;}
.y1a_c00322{bottom:949.347990px;}
.y48_c00322{bottom:954.348180px;}
.y20_c00322{bottom:961.913070px;}
.y41_c00322{bottom:967.604640px;}
.y49_c00322{bottom:977.163720px;}
.y45_c00322{bottom:978.275940px;}
.y16_c00322{bottom:978.566310px;}
.y43_c00322{bottom:981.838050px;}
.y21_c00322{bottom:985.735620px;}
.y4a_c00322{bottom:999.979260px;}
.y22_c00322{bottom:1009.558170px;}
.y44_c00322{bottom:1012.409070px;}
.y1b_c00322{bottom:1022.483970px;}
.y4b_c00322{bottom:1022.794800px;}
.y40_c00322{bottom:1024.372950px;}
.y23_c00322{bottom:1033.380720px;}
.y17_c00322{bottom:1036.356660px;}
.y4c_c00322{bottom:1045.610340px;}
.y24_c00322{bottom:1057.203270px;}
.y4d_c00322{bottom:1068.425880px;}
.y19_c00322{bottom:1070.655120px;}
.y25_c00322{bottom:1081.025820px;}
.y4e_c00322{bottom:1091.241420px;}
.y15_c00322{bottom:1103.961600px;}
.y26_c00322{bottom:1104.848370px;}
.y4f_c00322{bottom:1114.056960px;}
.y2_c00322{bottom:1193.174400px;}
.h8_c00322{height:31.950000px;}
.h5_c00322{height:49.581387px;}
.h2_c00322{height:50.400000px;}
.hd_c00322{height:51.930000px;}
.h6_c00322{height:58.178547px;}
.hb_c00322{height:65.633427px;}
.h7_c00322{height:70.923987px;}
.h9_c00322{height:71.413920px;}
.ha_c00322{height:76.214547px;}
.h3_c00322{height:76.824000px;}
.h4_c00322{height:78.048000px;}
.hc_c00322{height:90.270000px;}
.h0_c00322{height:1262.835000px;}
.h1_c00322{height:1263.000000px;}
.w3_c00322{width:-450.205500px;}
.w6_c00322{width:-450.204000px;}
.w4_c00322{width:-274.074000px;}
.w2_c00322{width:0.000000px;}
.w5_c00322{width:0.066000px;}
.w8_c00322{width:62.550000px;}
.w7_c00322{width:62.640000px;}
.wa_c00322{width:140.581500px;}
.w9_c00322{width:197.910000px;}
.w0_c00322{width:892.914000px;}
.w1_c00322{width:893.250000px;}
.x1_c00322{left:-838.913400px;}
.x2_c00322{left:-765.293400px;}
.x3_c00322{left:-733.433400px;}
.xd_c00322{left:-723.490020px;}
.xc_c00322{left:-715.824720px;}
.x4_c00322{left:-674.657550px;}
.xf_c00322{left:-657.373050px;}
.xe_c00322{left:-635.309010px;}
.x7_c00322{left:-631.746900px;}
.x8_c00322{left:-615.664800px;}
.xb_c00322{left:-572.754150px;}
.x5_c00322{left:-512.438760px;}
.x9_c00322{left:-445.795740px;}
.x10_c00322{left:-420.520950px;}
.x6_c00322{left:-350.219970px;}
.xa_c00322{left:-291.227220px;}
.x0_c00322{left:0.000000px;}
.x20_c00322{left:9.131100px;}
.x14_c00322{left:127.620000px;}
.x13_c00322{left:159.480000px;}
.x1e_c00322{left:174.625980px;}
.x1d_c00322{left:182.291280px;}
.x15_c00322{left:226.088700px;}
.x24_c00322{left:235.293600px;}
.x1f_c00322{left:250.830000px;}
.x18_c00322{left:264.084540px;}
.x19_c00322{left:279.144600px;}
.x1c_c00322{left:321.018180px;}
.x16_c00322{left:378.793500px;}
.x21_c00322{left:407.430000px;}
.x1a_c00322{left:435.727140px;}
.x23_c00322{left:451.080000px;}
.x17_c00322{left:543.026310px;}
.x22_c00322{left:564.030000px;}
.x1b_c00322{left:592.309680px;}
.x12_c00322{left:679.950000px;}
.x11_c00322{left:804.366150px;}
@media print{
.v1_c00322{vertical-align:-16.940480pt;}
.v0_c00322{vertical-align:0.000000pt;}
.v2_c00322{vertical-align:7.641920pt;}
.v5_c00322{vertical-align:14.268480pt;}
.v3_c00322{vertical-align:18.971200pt;}
.v4_c00322{vertical-align:23.673920pt;}
.lse_c00322{letter-spacing:-0.320000pt;}
.ls10_c00322{letter-spacing:-0.106880pt;}
.lsd_c00322{letter-spacing:-0.064000pt;}
.ls11_c00322{letter-spacing:-0.058560pt;}
.lsf_c00322{letter-spacing:-0.053440pt;}
.lsc_c00322{letter-spacing:0.000000pt;}
.ls0_c00322{letter-spacing:0.064000pt;}
.ls3_c00322{letter-spacing:0.106880pt;}
.ls8_c00322{letter-spacing:0.128000pt;}
.ls6_c00322{letter-spacing:16.640000pt;}
.ls1_c00322{letter-spacing:19.840000pt;}
.ls7_c00322{letter-spacing:21.452800pt;}
.ls2_c00322{letter-spacing:24.640000pt;}
.ls9_c00322{letter-spacing:25.920000pt;}
.lsb_c00322{letter-spacing:83.913813pt;}
.ls5_c00322{letter-spacing:191.368640pt;}
.ls4_c00322{letter-spacing:407.266240pt;}
.lsa_c00322{letter-spacing:483.525120pt;}
.ws2_c00322{word-spacing:-16.064000pt;}
.ws0_c00322{word-spacing:-16.000000pt;}
.ws6_c00322{word-spacing:-12.184320pt;}
.ws24_c00322{word-spacing:-1.282560pt;}
.ws22_c00322{word-spacing:-0.480960pt;}
.ws23_c00322{word-spacing:-0.427520pt;}
.ws2e_c00322{word-spacing:-0.128000pt;}
.ws21_c00322{word-spacing:-0.106880pt;}
.wse_c00322{word-spacing:-0.064000pt;}
.ws8_c00322{word-spacing:0.000000pt;}
.ws3_c00322{word-spacing:0.064000pt;}
.ws25_c00322{word-spacing:0.117120pt;}
.ws15_c00322{word-spacing:0.320000pt;}
.ws27_c00322{word-spacing:0.576000pt;}
.ws28_c00322{word-spacing:0.640000pt;}
.ws2c_c00322{word-spacing:0.896000pt;}
.ws34_c00322{word-spacing:1.216000pt;}
.ws33_c00322{word-spacing:1.280000pt;}
.ws5_c00322{word-spacing:1.856000pt;}
.ws19_c00322{word-spacing:1.920000pt;}
.ws31_c00322{word-spacing:2.240000pt;}
.ws16_c00322{word-spacing:2.496000pt;}
.ws17_c00322{word-spacing:2.560000pt;}
.ws1d_c00322{word-spacing:3.136000pt;}
.ws1c_c00322{word-spacing:3.200000pt;}
.wsc_c00322{word-spacing:3.840000pt;}
.wsb_c00322{word-spacing:4.096000pt;}
.ws2f_c00322{word-spacing:4.160000pt;}
.wsa_c00322{word-spacing:5.376000pt;}
.ws18_c00322{word-spacing:5.440000pt;}
.ws9_c00322{word-spacing:5.696000pt;}
.wsd_c00322{word-spacing:6.400000pt;}
.ws29_c00322{word-spacing:6.976000pt;}
.ws2a_c00322{word-spacing:7.040000pt;}
.ws30_c00322{word-spacing:7.936000pt;}
.ws11_c00322{word-spacing:8.192000pt;}
.ws10_c00322{word-spacing:8.256000pt;}
.wsf_c00322{word-spacing:8.320000pt;}
.ws35_c00322{word-spacing:8.512000pt;}
.ws4_c00322{word-spacing:8.576000pt;}
.ws14_c00322{word-spacing:8.640000pt;}
.ws26_c00322{word-spacing:9.856000pt;}
.ws2d_c00322{word-spacing:9.920000pt;}
.ws32_c00322{word-spacing:10.240000pt;}
.ws1a_c00322{word-spacing:11.968000pt;}
.ws1b_c00322{word-spacing:12.160000pt;}
.ws1f_c00322{word-spacing:12.992000pt;}
.ws20_c00322{word-spacing:13.376000pt;}
.ws7_c00322{word-spacing:14.862528pt;}
.ws13_c00322{word-spacing:16.000000pt;}
.ws2b_c00322{word-spacing:16.896000pt;}
.ws12_c00322{word-spacing:21.440000pt;}
.ws1_c00322{word-spacing:21.568000pt;}
.ws1e_c00322{word-spacing:24.960000pt;}
._6_c00322{margin-left:-1.923840pt;}
._0_c00322{margin-left:-1.024000pt;}
._1_c00322{width:0.960000pt;}
._9_c00322{width:1.856000pt;}
._3_c00322{width:3.136000pt;}
._2_c00322{width:8.640000pt;}
._7_c00322{width:9.856000pt;}
._8_c00322{width:14.848000pt;}
._a_c00322{width:483.632000pt;}
._5_c00322{width:503.672000pt;}
._4_c00322{width:537.606400pt;}
.fs1_c00322{font-size:53.440000pt;}
.fs2_c00322{font-size:58.560000pt;}
.fs0_c00322{font-size:64.000000pt;}
.y0_c00322{bottom:0.000000pt;}
.y2c_c00322{bottom:15.643867pt;}
.y2a_c00322{bottom:15.645200pt;}
.y53_c00322{bottom:33.430000pt;}
.y1_c00322{bottom:54.887600pt;}
.y51_c00322{bottom:67.495733pt;}
.y3e_c00322{bottom:134.839467pt;}
.y14_c00322{bottom:157.799467pt;}
.y3d_c00322{bottom:162.439467pt;}
.y13_c00322{bottom:185.399467pt;}
.y3c_c00322{bottom:190.039467pt;}
.y12_c00322{bottom:212.999467pt;}
.y3b_c00322{bottom:217.639467pt;}
.y11_c00322{bottom:240.599467pt;}
.y3a_c00322{bottom:245.159467pt;}
.y10_c00322{bottom:268.199467pt;}
.y39_c00322{bottom:272.759467pt;}
.yf_c00322{bottom:295.799467pt;}
.y38_c00322{bottom:300.359467pt;}
.ye_c00322{bottom:323.399467pt;}
.yd_c00322{bottom:350.999467pt;}
.y37_c00322{bottom:355.559467pt;}
.yc_c00322{bottom:378.599467pt;}
.y36_c00322{bottom:383.159467pt;}
.yb_c00322{bottom:406.199467pt;}
.y35_c00322{bottom:410.759467pt;}
.ya_c00322{bottom:433.799467pt;}
.y34_c00322{bottom:438.359467pt;}
.y9_c00322{bottom:461.399467pt;}
.y33_c00322{bottom:465.959467pt;}
.y32_c00322{bottom:493.559467pt;}
.y8_c00322{bottom:516.599467pt;}
.y31_c00322{bottom:521.159467pt;}
.y7_c00322{bottom:544.199467pt;}
.y6_c00322{bottom:571.799467pt;}
.y30_c00322{bottom:576.359467pt;}
.y5_c00322{bottom:599.399467pt;}
.y2f_c00322{bottom:603.959467pt;}
.y2e_c00322{bottom:631.559467pt;}
.y4_c00322{bottom:654.599467pt;}
.y3_c00322{bottom:682.199467pt;}
.y2d_c00322{bottom:685.564000pt;}
.y29_c00322{bottom:712.758667pt;}
.y2b_c00322{bottom:712.760000pt;}
.y50_c00322{bottom:722.920000pt;}
.y52_c00322{bottom:726.280000pt;}
.y54_c00322{bottom:736.614133pt;}
.y28_c00322{bottom:751.493840pt;}
.y27_c00322{bottom:774.179120pt;}
.y1d_c00322{bottom:791.507040pt;}
.y1c_c00322{bottom:804.907120pt;}
.y46_c00322{bottom:807.748533pt;}
.y18_c00322{bottom:809.142240pt;}
.y1e_c00322{bottom:812.682640pt;}
.y42_c00322{bottom:821.148613pt;}
.y47_c00322{bottom:828.029013pt;}
.y1f_c00322{bottom:833.858240pt;}
.y3f_c00322{bottom:843.419733pt;}
.y1a_c00322{bottom:843.864880pt;}
.y48_c00322{bottom:848.309493pt;}
.y20_c00322{bottom:855.033840pt;}
.y41_c00322{bottom:860.093013pt;}
.y49_c00322{bottom:868.589973pt;}
.y45_c00322{bottom:869.578613pt;}
.y16_c00322{bottom:869.836720pt;}
.y43_c00322{bottom:872.744933pt;}
.y21_c00322{bottom:876.209440pt;}
.y4a_c00322{bottom:888.870453pt;}
.y22_c00322{bottom:897.385040pt;}
.y44_c00322{bottom:899.919173pt;}
.y1b_c00322{bottom:908.874640pt;}
.y4b_c00322{bottom:909.150933pt;}
.y40_c00322{bottom:910.553733pt;}
.y23_c00322{bottom:918.560640pt;}
.y17_c00322{bottom:921.205920pt;}
.y4c_c00322{bottom:929.431413pt;}
.y24_c00322{bottom:939.736240pt;}
.y4d_c00322{bottom:949.711893pt;}
.y19_c00322{bottom:951.693440pt;}
.y25_c00322{bottom:960.911840pt;}
.y4e_c00322{bottom:969.992373pt;}
.y15_c00322{bottom:981.299200pt;}
.y26_c00322{bottom:982.087440pt;}
.y4f_c00322{bottom:990.272853pt;}
.y2_c00322{bottom:1060.599467pt;}
.h8_c00322{height:28.400000pt;}
.h5_c00322{height:44.072344pt;}
.h2_c00322{height:44.800000pt;}
.hd_c00322{height:46.160000pt;}
.h6_c00322{height:51.714264pt;}
.hb_c00322{height:58.340824pt;}
.h7_c00322{height:63.043544pt;}
.h9_c00322{height:63.479040pt;}
.ha_c00322{height:67.746264pt;}
.h3_c00322{height:68.288000pt;}
.h4_c00322{height:69.376000pt;}
.hc_c00322{height:80.240000pt;}
.h0_c00322{height:1122.520000pt;}
.h1_c00322{height:1122.666667pt;}
.w3_c00322{width:-400.182667pt;}
.w6_c00322{width:-400.181333pt;}
.w4_c00322{width:-243.621333pt;}
.w2_c00322{width:0.000000pt;}
.w5_c00322{width:0.058667pt;}
.w8_c00322{width:55.600000pt;}
.w7_c00322{width:55.680000pt;}
.wa_c00322{width:124.961333pt;}
.w9_c00322{width:175.920000pt;}
.w0_c00322{width:793.701333pt;}
.w1_c00322{width:794.000000pt;}
.x1_c00322{left:-745.700800pt;}
.x2_c00322{left:-680.260800pt;}
.x3_c00322{left:-651.940800pt;}
.xd_c00322{left:-643.102240pt;}
.xc_c00322{left:-636.288640pt;}
.x4_c00322{left:-599.695600pt;}
.xf_c00322{left:-584.331600pt;}
.xe_c00322{left:-564.719120pt;}
.x7_c00322{left:-561.552800pt;}
.x8_c00322{left:-547.257600pt;}
.xb_c00322{left:-509.114800pt;}
.x5_c00322{left:-455.501120pt;}
.x9_c00322{left:-396.262880pt;}
.x10_c00322{left:-373.796400pt;}
.x6_c00322{left:-311.306640pt;}
.xa_c00322{left:-258.868640pt;}
.x0_c00322{left:0.000000pt;}
.x20_c00322{left:8.116533pt;}
.x14_c00322{left:113.440000pt;}
.x13_c00322{left:141.760000pt;}
.x1e_c00322{left:155.223093pt;}
.x1d_c00322{left:162.036693pt;}
.x15_c00322{left:200.967733pt;}
.x24_c00322{left:209.149867pt;}
.x1f_c00322{left:222.960000pt;}
.x18_c00322{left:234.741813pt;}
.x19_c00322{left:248.128533pt;}
.x1c_c00322{left:285.349493pt;}
.x16_c00322{left:336.705333pt;}
.x21_c00322{left:362.160000pt;}
.x1a_c00322{left:387.313013pt;}
.x23_c00322{left:400.960000pt;}
.x17_c00322{left:482.690053pt;}
.x22_c00322{left:501.360000pt;}
.x1b_c00322{left:526.497493pt;}
.x12_c00322{left:604.400000pt;}
.x11_c00322{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00323;src:url('chunks/assets/font_a89ad831195723bf943803ff.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00323;src:url('chunks/assets/font_f51325494ab4f889debbb10e.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:1.592000;font-style:normal;font-weight:normal;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_cd28f69448d15e07cfe6212b.woff2')format("woff");}.ff4_c00323{font-family:ff4_c00323;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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);}
.v1_c00323{vertical-align:-12.084120px;}
.v0_c00323{vertical-align:0.000000px;}
.v3_c00323{vertical-align:6.132240px;}
.v4_c00323{vertical-align:16.352640px;}
.v2_c00323{vertical-align:24.288480px;}
.ls8_c00323{letter-spacing:-0.120240px;}
.ls7_c00323{letter-spacing:-0.060120px;}
.ls6_c00323{letter-spacing:0.000000px;}
.ls0_c00323{letter-spacing:0.072000px;}
.ls1_c00323{letter-spacing:0.120240px;}
.ls5_c00323{letter-spacing:130.568640px;}
.ls4_c00323{letter-spacing:455.469120px;}
.ls2_c00323{letter-spacing:495.088200px;}
.ls3_c00323{letter-spacing:525.689280px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00323{word-spacing:-18.000000px;}
.ws2_c00323{word-spacing:-13.707360px;}
.ws8_c00323{word-spacing:-1.442880px;}
.ws6_c00323{word-spacing:-0.541080px;}
.ws7_c00323{word-spacing:-0.480960px;}
.ws5_c00323{word-spacing:-0.120240px;}
.ws4_c00323{word-spacing:-0.072000px;}
.ws3_c00323{word-spacing:0.000000px;}
.ws1_c00323{word-spacing:17.784000px;}
._3_c00323{margin-left:-2.164320px;}
._0_c00323{margin-left:-1.152000px;}
._2_c00323{width:1.142280px;}
._1_c00323{width:563.985720px;}
.fc1_c00323{color:rgb(0,0,0);}
.fc0_c00323{color:rgb(35,31,32);}
.fs1_c00323{font-size:60.120000px;}
.fs0_c00323{font-size:72.000000px;}
.y0_c00323{bottom:0.000000px;}
.y16_c00323{bottom:37.611750px;}
.y1_c00323{bottom:61.748550px;}
.y3_c00323{bottom:767.474400px;}
.y15_c00323{bottom:794.562000px;}
.y17_c00323{bottom:806.190900px;}
.y14_c00323{bottom:863.216700px;}
.ya_c00323{bottom:882.770730px;}
.y6_c00323{bottom:897.845820px;}
.yb_c00323{bottom:905.962020px;}
.y4_c00323{bottom:905.977050px;}
.y7_c00323{bottom:910.561200px;}
.yc_c00323{bottom:929.153310px;}
.y9_c00323{bottom:951.713340px;}
.yd_c00323{bottom:952.344600px;}
.y5_c00323{bottom:954.734370px;}
.ye_c00323{bottom:975.535890px;}
.y8_c00323{bottom:977.790390px;}
.yf_c00323{bottom:998.727180px;}
.y10_c00323{bottom:1021.918470px;}
.y11_c00323{bottom:1045.109760px;}
.y12_c00323{bottom:1068.301050px;}
.y13_c00323{bottom:1091.492340px;}
.y2_c00323{bottom:1193.174400px;}
.h5_c00323{height:49.581387px;}
.h2_c00323{height:50.400000px;}
.h8_c00323{height:51.930000px;}
.h7_c00323{height:65.934027px;}
.h6_c00323{height:73.869867px;}
.h3_c00323{height:76.824000px;}
.h4_c00323{height:78.048000px;}
.h0_c00323{height:1262.835000px;}
.h1_c00323{height:1263.000000px;}
.w3_c00323{width:140.580000px;}
.w2_c00323{width:197.910000px;}
.w0_c00323{width:892.914000px;}
.w1_c00323{width:893.250000px;}
.x0_c00323{left:0.000000px;}
.xe_c00323{left:9.149850px;}
.x1_c00323{left:54.000000px;}
.x2_c00323{left:127.620000px;}
.xb_c00323{left:169.462020px;}
.xa_c00323{left:177.037140px;}
.x3_c00323{left:221.931750px;}
.xd_c00323{left:225.000000px;}
.x10_c00323{left:234.150000px;}
.xc_c00323{left:257.252250px;}
.x5_c00323{left:260.829390px;}
.x6_c00323{left:280.668990px;}
.x9_c00323{left:319.566630px;}
.x4_c00323{left:379.686630px;}
.x7_c00323{left:438.423870px;}
.xf_c00323{left:459.000000px;}
.x8_c00323{left:599.966310px;}
@media print{
.v1_c00323{vertical-align:-10.741440pt;}
.v0_c00323{vertical-align:0.000000pt;}
.v3_c00323{vertical-align:5.450880pt;}
.v4_c00323{vertical-align:14.535680pt;}
.v2_c00323{vertical-align:21.589760pt;}
.ls8_c00323{letter-spacing:-0.106880pt;}
.ls7_c00323{letter-spacing:-0.053440pt;}
.ls6_c00323{letter-spacing:0.000000pt;}
.ls0_c00323{letter-spacing:0.064000pt;}
.ls1_c00323{letter-spacing:0.106880pt;}
.ls5_c00323{letter-spacing:116.061013pt;}
.ls4_c00323{letter-spacing:404.861440pt;}
.ls2_c00323{letter-spacing:440.078400pt;}
.ls3_c00323{letter-spacing:467.279360pt;}
.ws0_c00323{word-spacing:-16.000000pt;}
.ws2_c00323{word-spacing:-12.184320pt;}
.ws8_c00323{word-spacing:-1.282560pt;}
.ws6_c00323{word-spacing:-0.480960pt;}
.ws7_c00323{word-spacing:-0.427520pt;}
.ws5_c00323{word-spacing:-0.106880pt;}
.ws4_c00323{word-spacing:-0.064000pt;}
.ws3_c00323{word-spacing:0.000000pt;}
.ws1_c00323{word-spacing:15.808000pt;}
._3_c00323{margin-left:-1.923840pt;}
._0_c00323{margin-left:-1.024000pt;}
._2_c00323{width:1.015360pt;}
._1_c00323{width:501.320640pt;}
.fs1_c00323{font-size:53.440000pt;}
.fs0_c00323{font-size:64.000000pt;}
.y0_c00323{bottom:0.000000pt;}
.y16_c00323{bottom:33.432667pt;}
.y1_c00323{bottom:54.887600pt;}
.y3_c00323{bottom:682.199467pt;}
.y15_c00323{bottom:706.277333pt;}
.y17_c00323{bottom:716.614133pt;}
.y14_c00323{bottom:767.303733pt;}
.ya_c00323{bottom:784.685093pt;}
.y6_c00323{bottom:798.085173pt;}
.yb_c00323{bottom:805.299573pt;}
.y4_c00323{bottom:805.312933pt;}
.y7_c00323{bottom:809.387733pt;}
.yc_c00323{bottom:825.914053pt;}
.y9_c00323{bottom:845.967413pt;}
.yd_c00323{bottom:846.528533pt;}
.y5_c00323{bottom:848.652773pt;}
.ye_c00323{bottom:867.143013pt;}
.y8_c00323{bottom:869.147013pt;}
.yf_c00323{bottom:887.757493pt;}
.y10_c00323{bottom:908.371973pt;}
.y11_c00323{bottom:928.986453pt;}
.y12_c00323{bottom:949.600933pt;}
.y13_c00323{bottom:970.215413pt;}
.y2_c00323{bottom:1060.599467pt;}
.h5_c00323{height:44.072344pt;}
.h2_c00323{height:44.800000pt;}
.h8_c00323{height:46.160000pt;}
.h7_c00323{height:58.608024pt;}
.h6_c00323{height:65.662104pt;}
.h3_c00323{height:68.288000pt;}
.h4_c00323{height:69.376000pt;}
.h0_c00323{height:1122.520000pt;}
.h1_c00323{height:1122.666667pt;}
.w3_c00323{width:124.960000pt;}
.w2_c00323{width:175.920000pt;}
.w0_c00323{width:793.701333pt;}
.w1_c00323{width:794.000000pt;}
.x0_c00323{left:0.000000pt;}
.xe_c00323{left:8.133200pt;}
.x1_c00323{left:48.000000pt;}
.x2_c00323{left:113.440000pt;}
.xb_c00323{left:150.632907pt;}
.xa_c00323{left:157.366347pt;}
.x3_c00323{left:197.272667pt;}
.xd_c00323{left:200.000000pt;}
.x10_c00323{left:208.133333pt;}
.xc_c00323{left:228.668667pt;}
.x5_c00323{left:231.848347pt;}
.x6_c00323{left:249.483547pt;}
.x9_c00323{left:284.059227pt;}
.x4_c00323{left:337.499227pt;}
.x7_c00323{left:389.710107pt;}
.xf_c00323{left:408.000000pt;}
.x8_c00323{left:533.303387pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00324;src:url('chunks/assets/font_9267c6361a21e700ba70fbba.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00324;src:url('chunks/assets/font_333b72b9b2e4d1296c17b295.woff2')format("woff");}.ff3_c00324{font-family:ff3_c00324;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00324;src:url('chunks/assets/font_dc7004a310f5a61d32d8ec6c.woff2')format("woff");}.ff4_c00324{font-family:ff4_c00324;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00324;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00324{font-family:ff5_c00324;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00324;src:url('chunks/assets/font_e204aeb88ad7b762e23ef69f.woff2')format("woff");}.ff6_c00324{font-family:ff6_c00324;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00324;src:url('chunks/assets/font_6aef25d0cac15302c1ca44a2.woff2')format("woff");}.ff7_c00324{font-family:ff7_c00324;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00324;src:url('chunks/assets/font_dc7004a310f5a61d32d8ec6c.woff2')format("woff");}.ff8_c00324{font-family:ff8_c00324;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00324;src:url('chunks/assets/font_71939f1d95e56c24a7ca1263.woff2')format("woff");}.ff9_c00324{font-family:ff9_c00324;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-12.084120px;}
.v0_c00324{vertical-align:0.000000px;}
.v3_c00324{vertical-align:6.132240px;}
.v4_c00324{vertical-align:16.352640px;}
.v2_c00324{vertical-align:24.288480px;}
.ls11_c00324{letter-spacing:-0.329400px;}
.lsc_c00324{letter-spacing:-0.120240px;}
.lsd_c00324{letter-spacing:-0.072000px;}
.lsf_c00324{letter-spacing:-0.065880px;}
.lsb_c00324{letter-spacing:-0.060120px;}
.lsa_c00324{letter-spacing:0.000000px;}
.ls10_c00324{letter-spacing:0.065880px;}
.ls0_c00324{letter-spacing:0.072000px;}
.ls1_c00324{letter-spacing:0.120240px;}
.lse_c00324{letter-spacing:0.144000px;}
.ls7_c00324{letter-spacing:0.197640px;}
.ls9_c00324{letter-spacing:16.206480px;}
.ls8_c00324{letter-spacing:16.601760px;}
.ls6_c00324{letter-spacing:20.880000px;}
.ls5_c00324{letter-spacing:130.580640px;}
.ls4_c00324{letter-spacing:455.469120px;}
.ls2_c00324{letter-spacing:495.088200px;}
.ls3_c00324{letter-spacing:525.689280px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00324{word-spacing:-18.144000px;}
.ws8_c00324{word-spacing:-18.072000px;}
.ws0_c00324{word-spacing:-18.000000px;}
.wsd_c00324{word-spacing:-16.667640px;}
.wsa_c00324{word-spacing:-16.535880px;}
.wsc_c00324{word-spacing:-16.140600px;}
.ws2_c00324{word-spacing:-13.707360px;}
.ws13_c00324{word-spacing:-1.442880px;}
.ws11_c00324{word-spacing:-0.541080px;}
.ws12_c00324{word-spacing:-0.480960px;}
.ws22_c00324{word-spacing:-0.432000px;}
.ws3_c00324{word-spacing:-0.144000px;}
.ws24_c00324{word-spacing:-0.131760px;}
.ws10_c00324{word-spacing:-0.120240px;}
.wsf_c00324{word-spacing:-0.072000px;}
.wse_c00324{word-spacing:0.000000px;}
.ws2a_c00324{word-spacing:0.065880px;}
.ws14_c00324{word-spacing:0.072000px;}
.wsb_c00324{word-spacing:0.131760px;}
.ws16_c00324{word-spacing:1.080000px;}
.ws19_c00324{word-spacing:1.800000px;}
.ws1b_c00324{word-spacing:2.016000px;}
.ws1a_c00324{word-spacing:2.088000px;}
.ws1e_c00324{word-spacing:2.808000px;}
.ws1f_c00324{word-spacing:2.880000px;}
.ws29_c00324{word-spacing:4.176000px;}
.ws23_c00324{word-spacing:4.216320px;}
.ws28_c00324{word-spacing:4.248000px;}
.ws9_c00324{word-spacing:4.320000px;}
.ws26_c00324{word-spacing:6.390360px;}
.ws25_c00324{word-spacing:6.653880px;}
.ws1d_c00324{word-spacing:6.768000px;}
.ws27_c00324{word-spacing:7.444440px;}
.ws1c_c00324{word-spacing:15.120000px;}
.ws7_c00324{word-spacing:15.192000px;}
.ws20_c00324{word-spacing:15.480000px;}
.ws21_c00324{word-spacing:16.128000px;}
.ws1_c00324{word-spacing:17.784000px;}
.ws17_c00324{word-spacing:24.408000px;}
.ws18_c00324{word-spacing:24.480000px;}
.ws15_c00324{word-spacing:25.128000px;}
.ws6_c00324{word-spacing:104.400000px;}
.ws4_c00324{word-spacing:140.400000px;}
._3_c00324{margin-left:-2.164320px;}
._0_c00324{margin-left:-1.152000px;}
._2_c00324{width:1.142280px;}
._1_c00324{width:563.985720px;}
.fc2_c00324{color:transparent;}
.fc1_c00324{color:rgb(0,0,0);}
.fc0_c00324{color:rgb(35,31,32);}
.fs1_c00324{font-size:60.120000px;}
.fs2_c00324{font-size:65.880000px;}
.fs0_c00324{font-size:72.000000px;}
.y0_c00324{bottom:0.000000px;}
.y19_c00324{bottom:37.608750px;}
.y16_c00324{bottom:37.610250px;}
.y1_c00324{bottom:61.748550px;}
.y33_c00324{bottom:137.290980px;}
.y32_c00324{bottom:165.734670px;}
.y31_c00324{bottom:194.260710px;}
.y30_c00324{bottom:222.704400px;}
.y2f_c00324{bottom:283.634400px;}
.y2e_c00324{bottom:314.684400px;}
.y2d_c00324{bottom:375.337140px;}
.y2c_c00324{bottom:403.780830px;}
.y2b_c00324{bottom:432.224520px;}
.y2a_c00324{bottom:460.750560px;}
.y29_c00324{bottom:489.194250px;}
.y28_c00324{bottom:550.124400px;}
.y27_c00324{bottom:581.174400px;}
.y26_c00324{bottom:612.224400px;}
.y25_c00324{bottom:643.274400px;}
.y24_c00324{bottom:705.374400px;}
.y23_c00324{bottom:736.424400px;}
.y3_c00324{bottom:767.474400px;}
.y15_c00324{bottom:794.563500px;}
.y18_c00324{bottom:794.565000px;}
.y22_c00324{bottom:798.434400px;}
.y17_c00324{bottom:806.190900px;}
.y21_c00324{bottom:829.484400px;}
.y14_c00324{bottom:863.216700px;}
.ya_c00324{bottom:882.770730px;}
.y20_c00324{bottom:891.404400px;}
.y6_c00324{bottom:897.845820px;}
.yb_c00324{bottom:905.962020px;}
.y4_c00324{bottom:905.977050px;}
.y7_c00324{bottom:910.561200px;}
.yc_c00324{bottom:929.153310px;}
.y9_c00324{bottom:951.713340px;}
.yd_c00324{bottom:952.344600px;}
.y1f_c00324{bottom:953.684400px;}
.y5_c00324{bottom:954.734370px;}
.ye_c00324{bottom:975.535890px;}
.y8_c00324{bottom:977.790390px;}
.y1e_c00324{bottom:984.734400px;}
.yf_c00324{bottom:998.727180px;}
.y1d_c00324{bottom:1015.784400px;}
.y10_c00324{bottom:1021.918470px;}
.y11_c00324{bottom:1045.109760px;}
.y1c_c00324{bottom:1046.834400px;}
.y12_c00324{bottom:1068.301050px;}
.y13_c00324{bottom:1091.492340px;}
.y1b_c00324{bottom:1108.754400px;}
.y1a_c00324{bottom:1139.804400px;}
.y2_c00324{bottom:1193.174400px;}
.h5_c00324{height:49.581387px;}
.h2_c00324{height:50.400000px;}
.h8_c00324{height:51.930000px;}
.h7_c00324{height:65.934027px;}
.h9_c00324{height:71.413920px;}
.h6_c00324{height:73.869867px;}
.h3_c00324{height:76.824000px;}
.h4_c00324{height:78.048000px;}
.h0_c00324{height:1262.835000px;}
.h1_c00324{height:1263.000000px;}
.w3_c00324{width:-470.004000px;}
.w4_c00324{width:-293.334000px;}
.w2_c00324{width:0.000000px;}
.w5_c00324{width:0.066000px;}
.w0_c00324{width:892.914000px;}
.w1_c00324{width:893.250000px;}
.x1_c00324{left:-838.913400px;}
.x2_c00324{left:-765.293400px;}
.xb_c00324{left:-723.451380px;}
.xa_c00324{left:-715.876260px;}
.x3_c00324{left:-670.981650px;}
.xd_c00324{left:-658.763550px;}
.xc_c00324{left:-635.661150px;}
.x5_c00324{left:-632.084010px;}
.x6_c00324{left:-612.244410px;}
.x9_c00324{left:-573.346770px;}
.x4_c00324{left:-513.226770px;}
.x7_c00324{left:-454.489530px;}
.xe_c00324{left:-424.749150px;}
.x8_c00324{left:-292.947090px;}
.x0_c00324{left:0.000000px;}
.x11_c00324{left:127.620000px;}
.x13_c00324{left:148.950000px;}
.x12_c00324{left:159.570000px;}
.x10_c00324{left:679.950000px;}
.xf_c00324{left:804.366150px;}
@media print{
.v1_c00324{vertical-align:-10.741440pt;}
.v0_c00324{vertical-align:0.000000pt;}
.v3_c00324{vertical-align:5.450880pt;}
.v4_c00324{vertical-align:14.535680pt;}
.v2_c00324{vertical-align:21.589760pt;}
.ls11_c00324{letter-spacing:-0.292800pt;}
.lsc_c00324{letter-spacing:-0.106880pt;}
.lsd_c00324{letter-spacing:-0.064000pt;}
.lsf_c00324{letter-spacing:-0.058560pt;}
.lsb_c00324{letter-spacing:-0.053440pt;}
.lsa_c00324{letter-spacing:0.000000pt;}
.ls10_c00324{letter-spacing:0.058560pt;}
.ls0_c00324{letter-spacing:0.064000pt;}
.ls1_c00324{letter-spacing:0.106880pt;}
.lse_c00324{letter-spacing:0.128000pt;}
.ls7_c00324{letter-spacing:0.175680pt;}
.ls9_c00324{letter-spacing:14.405760pt;}
.ls8_c00324{letter-spacing:14.757120pt;}
.ls6_c00324{letter-spacing:18.560000pt;}
.ls5_c00324{letter-spacing:116.071680pt;}
.ls4_c00324{letter-spacing:404.861440pt;}
.ls2_c00324{letter-spacing:440.078400pt;}
.ls3_c00324{letter-spacing:467.279360pt;}
.ws5_c00324{word-spacing:-16.128000pt;}
.ws8_c00324{word-spacing:-16.064000pt;}
.ws0_c00324{word-spacing:-16.000000pt;}
.wsd_c00324{word-spacing:-14.815680pt;}
.wsa_c00324{word-spacing:-14.698560pt;}
.wsc_c00324{word-spacing:-14.347200pt;}
.ws2_c00324{word-spacing:-12.184320pt;}
.ws13_c00324{word-spacing:-1.282560pt;}
.ws11_c00324{word-spacing:-0.480960pt;}
.ws12_c00324{word-spacing:-0.427520pt;}
.ws22_c00324{word-spacing:-0.384000pt;}
.ws3_c00324{word-spacing:-0.128000pt;}
.ws24_c00324{word-spacing:-0.117120pt;}
.ws10_c00324{word-spacing:-0.106880pt;}
.wsf_c00324{word-spacing:-0.064000pt;}
.wse_c00324{word-spacing:0.000000pt;}
.ws2a_c00324{word-spacing:0.058560pt;}
.ws14_c00324{word-spacing:0.064000pt;}
.wsb_c00324{word-spacing:0.117120pt;}
.ws16_c00324{word-spacing:0.960000pt;}
.ws19_c00324{word-spacing:1.600000pt;}
.ws1b_c00324{word-spacing:1.792000pt;}
.ws1a_c00324{word-spacing:1.856000pt;}
.ws1e_c00324{word-spacing:2.496000pt;}
.ws1f_c00324{word-spacing:2.560000pt;}
.ws29_c00324{word-spacing:3.712000pt;}
.ws23_c00324{word-spacing:3.747840pt;}
.ws28_c00324{word-spacing:3.776000pt;}
.ws9_c00324{word-spacing:3.840000pt;}
.ws26_c00324{word-spacing:5.680320pt;}
.ws25_c00324{word-spacing:5.914560pt;}
.ws1d_c00324{word-spacing:6.016000pt;}
.ws27_c00324{word-spacing:6.617280pt;}
.ws1c_c00324{word-spacing:13.440000pt;}
.ws7_c00324{word-spacing:13.504000pt;}
.ws20_c00324{word-spacing:13.760000pt;}
.ws21_c00324{word-spacing:14.336000pt;}
.ws1_c00324{word-spacing:15.808000pt;}
.ws17_c00324{word-spacing:21.696000pt;}
.ws18_c00324{word-spacing:21.760000pt;}
.ws15_c00324{word-spacing:22.336000pt;}
.ws6_c00324{word-spacing:92.800000pt;}
.ws4_c00324{word-spacing:124.800000pt;}
._3_c00324{margin-left:-1.923840pt;}
._0_c00324{margin-left:-1.024000pt;}
._2_c00324{width:1.015360pt;}
._1_c00324{width:501.320640pt;}
.fs1_c00324{font-size:53.440000pt;}
.fs2_c00324{font-size:58.560000pt;}
.fs0_c00324{font-size:64.000000pt;}
.y0_c00324{bottom:0.000000pt;}
.y19_c00324{bottom:33.430000pt;}
.y16_c00324{bottom:33.431333pt;}
.y1_c00324{bottom:54.887600pt;}
.y33_c00324{bottom:122.036427pt;}
.y32_c00324{bottom:147.319707pt;}
.y31_c00324{bottom:172.676187pt;}
.y30_c00324{bottom:197.959467pt;}
.y2f_c00324{bottom:252.119467pt;}
.y2e_c00324{bottom:279.719467pt;}
.y2d_c00324{bottom:333.633013pt;}
.y2c_c00324{bottom:358.916293pt;}
.y2b_c00324{bottom:384.199573pt;}
.y2a_c00324{bottom:409.556053pt;}
.y29_c00324{bottom:434.839333pt;}
.y28_c00324{bottom:488.999467pt;}
.y27_c00324{bottom:516.599467pt;}
.y26_c00324{bottom:544.199467pt;}
.y25_c00324{bottom:571.799467pt;}
.y24_c00324{bottom:626.999467pt;}
.y23_c00324{bottom:654.599467pt;}
.y3_c00324{bottom:682.199467pt;}
.y15_c00324{bottom:706.278667pt;}
.y18_c00324{bottom:706.280000pt;}
.y22_c00324{bottom:709.719467pt;}
.y17_c00324{bottom:716.614133pt;}
.y21_c00324{bottom:737.319467pt;}
.y14_c00324{bottom:767.303733pt;}
.ya_c00324{bottom:784.685093pt;}
.y20_c00324{bottom:792.359467pt;}
.y6_c00324{bottom:798.085173pt;}
.yb_c00324{bottom:805.299573pt;}
.y4_c00324{bottom:805.312933pt;}
.y7_c00324{bottom:809.387733pt;}
.yc_c00324{bottom:825.914053pt;}
.y9_c00324{bottom:845.967413pt;}
.yd_c00324{bottom:846.528533pt;}
.y1f_c00324{bottom:847.719467pt;}
.y5_c00324{bottom:848.652773pt;}
.ye_c00324{bottom:867.143013pt;}
.y8_c00324{bottom:869.147013pt;}
.y1e_c00324{bottom:875.319467pt;}
.yf_c00324{bottom:887.757493pt;}
.y1d_c00324{bottom:902.919467pt;}
.y10_c00324{bottom:908.371973pt;}
.y11_c00324{bottom:928.986453pt;}
.y1c_c00324{bottom:930.519467pt;}
.y12_c00324{bottom:949.600933pt;}
.y13_c00324{bottom:970.215413pt;}
.y1b_c00324{bottom:985.559467pt;}
.y1a_c00324{bottom:1013.159467pt;}
.y2_c00324{bottom:1060.599467pt;}
.h5_c00324{height:44.072344pt;}
.h2_c00324{height:44.800000pt;}
.h8_c00324{height:46.160000pt;}
.h7_c00324{height:58.608024pt;}
.h9_c00324{height:63.479040pt;}
.h6_c00324{height:65.662104pt;}
.h3_c00324{height:68.288000pt;}
.h4_c00324{height:69.376000pt;}
.h0_c00324{height:1122.520000pt;}
.h1_c00324{height:1122.666667pt;}
.w3_c00324{width:-417.781333pt;}
.w4_c00324{width:-260.741333pt;}
.w2_c00324{width:0.000000pt;}
.w5_c00324{width:0.058667pt;}
.w0_c00324{width:793.701333pt;}
.w1_c00324{width:794.000000pt;}
.x1_c00324{left:-745.700800pt;}
.x2_c00324{left:-680.260800pt;}
.xb_c00324{left:-643.067893pt;}
.xa_c00324{left:-636.334453pt;}
.x3_c00324{left:-596.428133pt;}
.xd_c00324{left:-585.567600pt;}
.xc_c00324{left:-565.032133pt;}
.x5_c00324{left:-561.852453pt;}
.x6_c00324{left:-544.217253pt;}
.x9_c00324{left:-509.641573pt;}
.x4_c00324{left:-456.201573pt;}
.x7_c00324{left:-403.990693pt;}
.xe_c00324{left:-377.554800pt;}
.x8_c00324{left:-260.397413pt;}
.x0_c00324{left:0.000000pt;}
.x11_c00324{left:113.440000pt;}
.x13_c00324{left:132.400000pt;}
.x12_c00324{left:141.840000pt;}
.x10_c00324{left:604.400000pt;}
.xf_c00324{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00325;src:url('chunks/assets/font_2d11546ed2aedbe8af319235.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00325;src:url('chunks/assets/font_6e54cf512316f4c92fd46a07.woff2')format("woff");}.ff3_c00325{font-family:ff3_c00325;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls9_c00325{letter-spacing:-0.216000px;}
.lsa_c00325{letter-spacing:-0.072000px;}
.ls8_c00325{letter-spacing:-0.065880px;}
.ls6_c00325{letter-spacing:0.000000px;}
.ls7_c00325{letter-spacing:0.065880px;}
.ls0_c00325{letter-spacing:0.072000px;}
.ls3_c00325{letter-spacing:0.197640px;}
.ls2_c00325{letter-spacing:16.199892px;}
.ls5_c00325{letter-spacing:16.595172px;}
.ls4_c00325{letter-spacing:16.601760px;}
.ls1_c00325{letter-spacing:20.592000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00325{word-spacing:-18.000000px;}
.ws3_c00325{word-spacing:-16.667640px;}
.ws1_c00325{word-spacing:-16.535880px;}
.ws2_c00325{word-spacing:-16.404120px;}
.ws8_c00325{word-spacing:-0.270108px;}
.wsa_c00325{word-spacing:-0.131760px;}
.ws10_c00325{word-spacing:-0.072000px;}
.ws13_c00325{word-spacing:-0.065880px;}
.ws9_c00325{word-spacing:0.000000px;}
.ws14_c00325{word-spacing:0.065880px;}
.ws5_c00325{word-spacing:0.125172px;}
.ws7_c00325{word-spacing:0.131760px;}
.ws11_c00325{word-spacing:0.648000px;}
.ws4_c00325{word-spacing:0.864000px;}
.wsc_c00325{word-spacing:2.448000px;}
.ws12_c00325{word-spacing:2.520000px;}
.wsd_c00325{word-spacing:2.736000px;}
.wsb_c00325{word-spacing:6.480000px;}
.wsf_c00325{word-spacing:7.128000px;}
.wse_c00325{word-spacing:7.560000px;}
.ws6_c00325{word-spacing:16.595172px;}
._0_c00325{margin-left:-1.449360px;}
._1_c00325{width:1.027728px;}
.fc1_c00325{color:rgb(0,0,0);}
.fc0_c00325{color:rgb(35,31,32);}
.fs1_c00325{font-size:65.880000px;}
.fs0_c00325{font-size:72.000000px;}
.y0_c00325{bottom:0.000000px;}
.y1_c00325{bottom:61.748550px;}
.y1e_c00325{bottom:170.946780px;}
.y1d_c00325{bottom:199.390470px;}
.y1c_c00325{bottom:258.880110px;}
.y1b_c00325{bottom:287.323800px;}
.y1a_c00325{bottom:315.849840px;}
.y19_c00325{bottom:344.293530px;}
.y18_c00325{bottom:372.737220px;}
.y17_c00325{bottom:401.180910px;}
.y16_c00325{bottom:429.706950px;}
.y15_c00325{bottom:489.180120px;}
.y14_c00325{bottom:517.623810px;}
.y13_c00325{bottom:546.067500px;}
.y12_c00325{bottom:574.511190px;}
.y11_c00325{bottom:603.037230px;}
.y10_c00325{bottom:631.480920px;}
.yf_c00325{bottom:659.924610px;}
.ye_c00325{bottom:688.368300px;}
.yd_c00325{bottom:746.774400px;}
.yc_c00325{bottom:777.824400px;}
.yb_c00325{bottom:808.784400px;}
.ya_c00325{bottom:869.527020px;}
.y9_c00325{bottom:897.970710px;}
.y8_c00325{bottom:926.414400px;}
.y7_c00325{bottom:987.344250px;}
.y6_c00325{bottom:1018.394250px;}
.y5_c00325{bottom:1049.444250px;}
.y4_c00325{bottom:1080.494250px;}
.y3_c00325{bottom:1141.154250px;}
.y2_c00325{bottom:1193.174400px;}
.h2_c00325{height:50.400000px;}
.h4_c00325{height:71.413920px;}
.h3_c00325{height:76.824000px;}
.h5_c00325{height:78.048000px;}
.h0_c00325{height:1262.835000px;}
.h1_c00325{height:1263.000000px;}
.w0_c00325{width:892.914000px;}
.w1_c00325{width:893.250000px;}
.x0_c00325{left:0.000000px;}
.x1_c00325{left:54.000000px;}
.x2_c00325{left:127.620000px;}
.x3_c00325{left:148.950000px;}
.x4_c00325{left:159.570000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls9_c00325{letter-spacing:-0.192000pt;}
.lsa_c00325{letter-spacing:-0.064000pt;}
.ls8_c00325{letter-spacing:-0.058560pt;}
.ls6_c00325{letter-spacing:0.000000pt;}
.ls7_c00325{letter-spacing:0.058560pt;}
.ls0_c00325{letter-spacing:0.064000pt;}
.ls3_c00325{letter-spacing:0.175680pt;}
.ls2_c00325{letter-spacing:14.399904pt;}
.ls5_c00325{letter-spacing:14.751264pt;}
.ls4_c00325{letter-spacing:14.757120pt;}
.ls1_c00325{letter-spacing:18.304000pt;}
.ws0_c00325{word-spacing:-16.000000pt;}
.ws3_c00325{word-spacing:-14.815680pt;}
.ws1_c00325{word-spacing:-14.698560pt;}
.ws2_c00325{word-spacing:-14.581440pt;}
.ws8_c00325{word-spacing:-0.240096pt;}
.wsa_c00325{word-spacing:-0.117120pt;}
.ws10_c00325{word-spacing:-0.064000pt;}
.ws13_c00325{word-spacing:-0.058560pt;}
.ws9_c00325{word-spacing:0.000000pt;}
.ws14_c00325{word-spacing:0.058560pt;}
.ws5_c00325{word-spacing:0.111264pt;}
.ws7_c00325{word-spacing:0.117120pt;}
.ws11_c00325{word-spacing:0.576000pt;}
.ws4_c00325{word-spacing:0.768000pt;}
.wsc_c00325{word-spacing:2.176000pt;}
.ws12_c00325{word-spacing:2.240000pt;}
.wsd_c00325{word-spacing:2.432000pt;}
.wsb_c00325{word-spacing:5.760000pt;}
.wsf_c00325{word-spacing:6.336000pt;}
.wse_c00325{word-spacing:6.720000pt;}
.ws6_c00325{word-spacing:14.751264pt;}
._0_c00325{margin-left:-1.288320pt;}
._1_c00325{width:0.913536pt;}
.fs1_c00325{font-size:58.560000pt;}
.fs0_c00325{font-size:64.000000pt;}
.y0_c00325{bottom:0.000000pt;}
.y1_c00325{bottom:54.887600pt;}
.y1e_c00325{bottom:151.952693pt;}
.y1d_c00325{bottom:177.235973pt;}
.y1c_c00325{bottom:230.115653pt;}
.y1b_c00325{bottom:255.398933pt;}
.y1a_c00325{bottom:280.755413pt;}
.y19_c00325{bottom:306.038693pt;}
.y18_c00325{bottom:331.321973pt;}
.y17_c00325{bottom:356.605253pt;}
.y16_c00325{bottom:381.961733pt;}
.y15_c00325{bottom:434.826773pt;}
.y14_c00325{bottom:460.110053pt;}
.y13_c00325{bottom:485.393333pt;}
.y12_c00325{bottom:510.676613pt;}
.y11_c00325{bottom:536.033093pt;}
.y10_c00325{bottom:561.316373pt;}
.yf_c00325{bottom:586.599653pt;}
.ye_c00325{bottom:611.882933pt;}
.yd_c00325{bottom:663.799467pt;}
.yc_c00325{bottom:691.399467pt;}
.yb_c00325{bottom:718.919467pt;}
.ya_c00325{bottom:772.912907pt;}
.y9_c00325{bottom:798.196187pt;}
.y8_c00325{bottom:823.479467pt;}
.y7_c00325{bottom:877.639333pt;}
.y6_c00325{bottom:905.239333pt;}
.y5_c00325{bottom:932.839333pt;}
.y4_c00325{bottom:960.439333pt;}
.y3_c00325{bottom:1014.359333pt;}
.y2_c00325{bottom:1060.599467pt;}
.h2_c00325{height:44.800000pt;}
.h4_c00325{height:63.479040pt;}
.h3_c00325{height:68.288000pt;}
.h5_c00325{height:69.376000pt;}
.h0_c00325{height:1122.520000pt;}
.h1_c00325{height:1122.666667pt;}
.w0_c00325{width:793.701333pt;}
.w1_c00325{width:794.000000pt;}
.x0_c00325{left:0.000000pt;}
.x1_c00325{left:48.000000pt;}
.x2_c00325{left:113.440000pt;}
.x3_c00325{left:132.400000pt;}
.x4_c00325{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00326;src:url('chunks/assets/font_6b3a7237daf683f5c7e05498.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00326;src:url('chunks/assets/font_8ffb743ca4d940cdb915ba19.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00326;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00326{font-family:ff4_c00326;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00326;src:url('chunks/assets/font_f04e0c0a8b2b7806b21651e7.woff2')format("woff");}.ff5_c00326{font-family:ff5_c00326;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00326;src:url('chunks/assets/font_47cc53d51ecc2a601fe9d1f3.woff2')format("woff");}.ff6_c00326{font-family:ff6_c00326;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00326{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.lsc_c00326{letter-spacing:-0.216000px;}
.lse_c00326{letter-spacing:-0.131760px;}
.lsd_c00326{letter-spacing:-0.072000px;}
.lsb_c00326{letter-spacing:-0.065880px;}
.lsa_c00326{letter-spacing:0.000000px;}
.ls9_c00326{letter-spacing:0.065880px;}
.ls0_c00326{letter-spacing:0.072000px;}
.ls8_c00326{letter-spacing:0.144000px;}
.ls3_c00326{letter-spacing:0.197640px;}
.ls2_c00326{letter-spacing:16.199892px;}
.ls7_c00326{letter-spacing:16.259184px;}
.ls6_c00326{letter-spacing:16.535880px;}
.ls5_c00326{letter-spacing:16.595172px;}
.ls4_c00326{letter-spacing:16.601760px;}
.ls1_c00326{letter-spacing:20.592000px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00326{word-spacing:-18.000000px;}
.ws3_c00326{word-spacing:-16.667640px;}
.ws1_c00326{word-spacing:-16.535880px;}
.ws2_c00326{word-spacing:-16.404120px;}
.ws9_c00326{word-spacing:-16.338240px;}
.ws8_c00326{word-spacing:-0.270108px;}
.ws16_c00326{word-spacing:-0.197640px;}
.ws19_c00326{word-spacing:-0.144000px;}
.wsb_c00326{word-spacing:-0.131760px;}
.ws11_c00326{word-spacing:-0.072000px;}
.ws14_c00326{word-spacing:-0.065880px;}
.wsa_c00326{word-spacing:0.000000px;}
.ws15_c00326{word-spacing:0.065880px;}
.ws5_c00326{word-spacing:0.125172px;}
.ws7_c00326{word-spacing:0.131760px;}
.ws12_c00326{word-spacing:0.648000px;}
.ws4_c00326{word-spacing:0.864000px;}
.wsd_c00326{word-spacing:2.448000px;}
.ws13_c00326{word-spacing:2.520000px;}
.wse_c00326{word-spacing:2.736000px;}
.wsc_c00326{word-spacing:6.480000px;}
.ws10_c00326{word-spacing:7.128000px;}
.wsf_c00326{word-spacing:7.560000px;}
.ws1a_c00326{word-spacing:10.008000px;}
.ws1b_c00326{word-spacing:11.088000px;}
.ws17_c00326{word-spacing:12.096000px;}
.ws18_c00326{word-spacing:12.456000px;}
.ws6_c00326{word-spacing:16.595172px;}
._0_c00326{margin-left:-1.449360px;}
._1_c00326{width:1.034316px;}
.fc2_c00326{color:transparent;}
.fc1_c00326{color:rgb(0,0,0);}
.fc0_c00326{color:rgb(35,31,32);}
.fs1_c00326{font-size:65.880000px;}
.fs0_c00326{font-size:72.000000px;}
.y0_c00326{bottom:0.000000px;}
.y1_c00326{bottom:61.748550px;}
.y1e_c00326{bottom:170.946780px;}
.y3b_c00326{bottom:173.555940px;}
.y1d_c00326{bottom:199.390470px;}
.y3a_c00326{bottom:201.999630px;}
.y39_c00326{bottom:230.443320px;}
.y1c_c00326{bottom:258.880110px;}
.y38_c00326{bottom:258.887010px;}
.y1b_c00326{bottom:287.323800px;}
.y37_c00326{bottom:287.330700px;}
.y1a_c00326{bottom:315.849840px;}
.y19_c00326{bottom:344.293530px;}
.y36_c00326{bottom:346.886220px;}
.y18_c00326{bottom:372.737220px;}
.y35_c00326{bottom:375.329910px;}
.y17_c00326{bottom:401.180910px;}
.y34_c00326{bottom:403.773600px;}
.y16_c00326{bottom:429.706950px;}
.y33_c00326{bottom:432.217290px;}
.y32_c00326{bottom:460.743330px;}
.y15_c00326{bottom:489.180120px;}
.y31_c00326{bottom:489.187020px;}
.y14_c00326{bottom:517.623810px;}
.y30_c00326{bottom:517.630710px;}
.y13_c00326{bottom:546.067500px;}
.y2f_c00326{bottom:546.074400px;}
.y12_c00326{bottom:574.511190px;}
.y11_c00326{bottom:603.037230px;}
.y2e_c00326{bottom:607.004250px;}
.y10_c00326{bottom:631.480920px;}
.y2d_c00326{bottom:638.054250px;}
.yf_c00326{bottom:659.924610px;}
.y2c_c00326{bottom:669.104250px;}
.ye_c00326{bottom:688.368300px;}
.y2b_c00326{bottom:729.753600px;}
.yd_c00326{bottom:746.774400px;}
.y2a_c00326{bottom:758.279640px;}
.yc_c00326{bottom:777.824400px;}
.y29_c00326{bottom:786.723330px;}
.yb_c00326{bottom:808.784400px;}
.y28_c00326{bottom:815.167020px;}
.y27_c00326{bottom:843.610710px;}
.ya_c00326{bottom:869.527020px;}
.y26_c00326{bottom:872.054400px;}
.y9_c00326{bottom:897.970710px;}
.y8_c00326{bottom:926.414400px;}
.y25_c00326{bottom:932.984250px;}
.y24_c00326{bottom:964.034250px;}
.y7_c00326{bottom:987.344250px;}
.y23_c00326{bottom:995.084250px;}
.y6_c00326{bottom:1018.394250px;}
.y5_c00326{bottom:1049.444250px;}
.y22_c00326{bottom:1055.740830px;}
.y4_c00326{bottom:1080.494250px;}
.y21_c00326{bottom:1084.266870px;}
.y20_c00326{bottom:1112.710560px;}
.y3_c00326{bottom:1141.154250px;}
.y1f_c00326{bottom:1193.174400px;}
.y2_c00326{bottom:1193.174550px;}
.h2_c00326{height:50.400000px;}
.h4_c00326{height:71.413920px;}
.h3_c00326{height:76.824000px;}
.h5_c00326{height:78.048000px;}
.h0_c00326{height:1262.835000px;}
.h1_c00326{height:1263.000000px;}
.w2_c00326{width:0.000000px;}
.w3_c00326{width:0.066000px;}
.w0_c00326{width:892.914000px;}
.w1_c00326{width:893.250000px;}
.x1_c00326{left:-838.913400px;}
.x2_c00326{left:-765.293400px;}
.x3_c00326{left:-743.963400px;}
.x4_c00326{left:-733.343400px;}
.x0_c00326{left:0.000000px;}
.x9_c00326{left:127.620000px;}
.x7_c00326{left:148.950000px;}
.x8_c00326{left:159.570000px;}
.x6_c00326{left:679.950000px;}
.x5_c00326{left:804.366150px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.lsc_c00326{letter-spacing:-0.192000pt;}
.lse_c00326{letter-spacing:-0.117120pt;}
.lsd_c00326{letter-spacing:-0.064000pt;}
.lsb_c00326{letter-spacing:-0.058560pt;}
.lsa_c00326{letter-spacing:0.000000pt;}
.ls9_c00326{letter-spacing:0.058560pt;}
.ls0_c00326{letter-spacing:0.064000pt;}
.ls8_c00326{letter-spacing:0.128000pt;}
.ls3_c00326{letter-spacing:0.175680pt;}
.ls2_c00326{letter-spacing:14.399904pt;}
.ls7_c00326{letter-spacing:14.452608pt;}
.ls6_c00326{letter-spacing:14.698560pt;}
.ls5_c00326{letter-spacing:14.751264pt;}
.ls4_c00326{letter-spacing:14.757120pt;}
.ls1_c00326{letter-spacing:18.304000pt;}
.ws0_c00326{word-spacing:-16.000000pt;}
.ws3_c00326{word-spacing:-14.815680pt;}
.ws1_c00326{word-spacing:-14.698560pt;}
.ws2_c00326{word-spacing:-14.581440pt;}
.ws9_c00326{word-spacing:-14.522880pt;}
.ws8_c00326{word-spacing:-0.240096pt;}
.ws16_c00326{word-spacing:-0.175680pt;}
.ws19_c00326{word-spacing:-0.128000pt;}
.wsb_c00326{word-spacing:-0.117120pt;}
.ws11_c00326{word-spacing:-0.064000pt;}
.ws14_c00326{word-spacing:-0.058560pt;}
.wsa_c00326{word-spacing:0.000000pt;}
.ws15_c00326{word-spacing:0.058560pt;}
.ws5_c00326{word-spacing:0.111264pt;}
.ws7_c00326{word-spacing:0.117120pt;}
.ws12_c00326{word-spacing:0.576000pt;}
.ws4_c00326{word-spacing:0.768000pt;}
.wsd_c00326{word-spacing:2.176000pt;}
.ws13_c00326{word-spacing:2.240000pt;}
.wse_c00326{word-spacing:2.432000pt;}
.wsc_c00326{word-spacing:5.760000pt;}
.ws10_c00326{word-spacing:6.336000pt;}
.wsf_c00326{word-spacing:6.720000pt;}
.ws1a_c00326{word-spacing:8.896000pt;}
.ws1b_c00326{word-spacing:9.856000pt;}
.ws17_c00326{word-spacing:10.752000pt;}
.ws18_c00326{word-spacing:11.072000pt;}
.ws6_c00326{word-spacing:14.751264pt;}
._0_c00326{margin-left:-1.288320pt;}
._1_c00326{width:0.919392pt;}
.fs1_c00326{font-size:58.560000pt;}
.fs0_c00326{font-size:64.000000pt;}
.y0_c00326{bottom:0.000000pt;}
.y1_c00326{bottom:54.887600pt;}
.y1e_c00326{bottom:151.952693pt;}
.y3b_c00326{bottom:154.271947pt;}
.y1d_c00326{bottom:177.235973pt;}
.y3a_c00326{bottom:179.555227pt;}
.y39_c00326{bottom:204.838507pt;}
.y1c_c00326{bottom:230.115653pt;}
.y38_c00326{bottom:230.121787pt;}
.y1b_c00326{bottom:255.398933pt;}
.y37_c00326{bottom:255.405067pt;}
.y1a_c00326{bottom:280.755413pt;}
.y19_c00326{bottom:306.038693pt;}
.y36_c00326{bottom:308.343307pt;}
.y18_c00326{bottom:331.321973pt;}
.y35_c00326{bottom:333.626587pt;}
.y17_c00326{bottom:356.605253pt;}
.y34_c00326{bottom:358.909867pt;}
.y16_c00326{bottom:381.961733pt;}
.y33_c00326{bottom:384.193147pt;}
.y32_c00326{bottom:409.549627pt;}
.y15_c00326{bottom:434.826773pt;}
.y31_c00326{bottom:434.832907pt;}
.y14_c00326{bottom:460.110053pt;}
.y30_c00326{bottom:460.116187pt;}
.y13_c00326{bottom:485.393333pt;}
.y2f_c00326{bottom:485.399467pt;}
.y12_c00326{bottom:510.676613pt;}
.y11_c00326{bottom:536.033093pt;}
.y2e_c00326{bottom:539.559333pt;}
.y10_c00326{bottom:561.316373pt;}
.y2d_c00326{bottom:567.159333pt;}
.yf_c00326{bottom:586.599653pt;}
.y2c_c00326{bottom:594.759333pt;}
.ye_c00326{bottom:611.882933pt;}
.y2b_c00326{bottom:648.669867pt;}
.yd_c00326{bottom:663.799467pt;}
.y2a_c00326{bottom:674.026347pt;}
.yc_c00326{bottom:691.399467pt;}
.y29_c00326{bottom:699.309627pt;}
.yb_c00326{bottom:718.919467pt;}
.y28_c00326{bottom:724.592907pt;}
.y27_c00326{bottom:749.876187pt;}
.ya_c00326{bottom:772.912907pt;}
.y26_c00326{bottom:775.159467pt;}
.y9_c00326{bottom:798.196187pt;}
.y8_c00326{bottom:823.479467pt;}
.y25_c00326{bottom:829.319333pt;}
.y24_c00326{bottom:856.919333pt;}
.y7_c00326{bottom:877.639333pt;}
.y23_c00326{bottom:884.519333pt;}
.y6_c00326{bottom:905.239333pt;}
.y5_c00326{bottom:932.839333pt;}
.y22_c00326{bottom:938.436293pt;}
.y4_c00326{bottom:960.439333pt;}
.y21_c00326{bottom:963.792773pt;}
.y20_c00326{bottom:989.076053pt;}
.y3_c00326{bottom:1014.359333pt;}
.y1f_c00326{bottom:1060.599467pt;}
.y2_c00326{bottom:1060.599600pt;}
.h2_c00326{height:44.800000pt;}
.h4_c00326{height:63.479040pt;}
.h3_c00326{height:68.288000pt;}
.h5_c00326{height:69.376000pt;}
.h0_c00326{height:1122.520000pt;}
.h1_c00326{height:1122.666667pt;}
.w2_c00326{width:0.000000pt;}
.w3_c00326{width:0.058667pt;}
.w0_c00326{width:793.701333pt;}
.w1_c00326{width:794.000000pt;}
.x1_c00326{left:-745.700800pt;}
.x2_c00326{left:-680.260800pt;}
.x3_c00326{left:-661.300800pt;}
.x4_c00326{left:-651.860800pt;}
.x0_c00326{left:0.000000pt;}
.x9_c00326{left:113.440000pt;}
.x7_c00326{left:132.400000pt;}
.x8_c00326{left:141.840000pt;}
.x6_c00326{left:604.400000pt;}
.x5_c00326{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00327;src:url('chunks/assets/font_47d263c93bae2f14ebb0f8c8.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00327;src:url('chunks/assets/font_dc5bffa14b224f9f88e3cdfb.woff2')format("woff");}.ff3_c00327{font-family:ff3_c00327;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00327{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.ls7_c00327{letter-spacing:-0.360000px;}
.ls6_c00327{letter-spacing:-0.065880px;}
.ls4_c00327{letter-spacing:0.000000px;}
.ls5_c00327{letter-spacing:0.065880px;}
.ls0_c00327{letter-spacing:0.072000px;}
.ls2_c00327{letter-spacing:0.197640px;}
.ls3_c00327{letter-spacing:20.923200px;}
.ls1_c00327{letter-spacing:25.759080px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00327{word-spacing:-18.000000px;}
.ws1_c00327{word-spacing:-16.404120px;}
.ws17_c00327{word-spacing:-0.131760px;}
.ws1f_c00327{word-spacing:-0.072000px;}
.wsd_c00327{word-spacing:-0.065880px;}
.ws6_c00327{word-spacing:0.000000px;}
.ws12_c00327{word-spacing:0.131760px;}
.ws4_c00327{word-spacing:0.720000px;}
.wsb_c00327{word-spacing:1.008000px;}
.wsa_c00327{word-spacing:1.080000px;}
.ws11_c00327{word-spacing:1.581120px;}
.ws3_c00327{word-spacing:1.607472px;}
.ws1e_c00327{word-spacing:1.728000px;}
.ws16_c00327{word-spacing:2.766960px;}
.ws8_c00327{word-spacing:2.808000px;}
.ws7_c00327{word-spacing:2.880000px;}
.ws5_c00327{word-spacing:3.017304px;}
.ws15_c00327{word-spacing:3.030480px;}
.ws1c_c00327{word-spacing:3.168000px;}
.ws1d_c00327{word-spacing:3.240000px;}
.ws9_c00327{word-spacing:4.176000px;}
.ws13_c00327{word-spacing:4.248000px;}
.ws14_c00327{word-spacing:4.320000px;}
.ws2_c00327{word-spacing:4.392000px;}
.ws19_c00327{word-spacing:5.995080px;}
.ws18_c00327{word-spacing:6.258600px;}
.wsf_c00327{word-spacing:6.719760px;}
.ws10_c00327{word-spacing:6.983280px;}
.wse_c00327{word-spacing:9.223200px;}
.ws20_c00327{word-spacing:9.486720px;}
.ws23_c00327{word-spacing:10.936080px;}
.ws21_c00327{word-spacing:12.517200px;}
.ws22_c00327{word-spacing:12.780720px;}
.wsc_c00327{word-spacing:16.200000px;}
.ws1a_c00327{word-spacing:18.051120px;}
.ws1b_c00327{word-spacing:18.182880px;}
.ws24_c00327{word-spacing:34.848000px;}
._1_c00327{margin-left:-1.296000px;}
._2_c00327{width:1.065600px;}
._0_c00327{width:3.312000px;}
._3_c00327{width:9.420840px;}
.fc1_c00327{color:rgb(0,0,0);}
.fc0_c00327{color:rgb(35,31,32);}
.fs1_c00327{font-size:65.880000px;}
.fs0_c00327{font-size:72.000000px;}
.y0_c00327{bottom:0.000000px;}
.y1_c00327{bottom:61.748550px;}
.y1d_c00327{bottom:154.214400px;}
.y1c_c00327{bottom:185.264400px;}
.y1b_c00327{bottom:245.999490px;}
.y1a_c00327{bottom:274.443180px;}
.y19_c00327{bottom:302.886870px;}
.y18_c00327{bottom:331.330560px;}
.y17_c00327{bottom:359.774250px;}
.y16_c00327{bottom:420.704400px;}
.y15_c00327{bottom:451.754400px;}
.y14_c00327{bottom:482.804400px;}
.y13_c00327{bottom:543.461190px;}
.y12_c00327{bottom:571.987230px;}
.y11_c00327{bottom:600.430920px;}
.y10_c00327{bottom:659.920560px;}
.yf_c00327{bottom:688.364250px;}
.ye_c00327{bottom:749.294100px;}
.yd_c00327{bottom:780.344100px;}
.yc_c00327{bottom:811.394100px;}
.yb_c00327{bottom:872.047230px;}
.ya_c00327{bottom:900.573270px;}
.y9_c00327{bottom:929.016960px;}
.y8_c00327{bottom:957.460650px;}
.y7_c00327{bottom:1015.784400px;}
.y6_c00327{bottom:1046.834400px;}
.y5_c00327{bottom:1077.884400px;}
.y4_c00327{bottom:1108.934400px;}
.y3_c00327{bottom:1139.984400px;}
.y2_c00327{bottom:1193.174400px;}
.h2_c00327{height:50.400000px;}
.h4_c00327{height:71.413920px;}
.h3_c00327{height:76.824000px;}
.h0_c00327{height:1262.835000px;}
.h1_c00327{height:1263.000000px;}
.w0_c00327{width:892.914000px;}
.w1_c00327{width:893.250000px;}
.x0_c00327{left:0.000000px;}
.x1_c00327{left:54.000000px;}
.x2_c00327{left:127.620000px;}
.x4_c00327{left:148.950000px;}
.x3_c00327{left:159.570000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls7_c00327{letter-spacing:-0.320000pt;}
.ls6_c00327{letter-spacing:-0.058560pt;}
.ls4_c00327{letter-spacing:0.000000pt;}
.ls5_c00327{letter-spacing:0.058560pt;}
.ls0_c00327{letter-spacing:0.064000pt;}
.ls2_c00327{letter-spacing:0.175680pt;}
.ls3_c00327{letter-spacing:18.598400pt;}
.ls1_c00327{letter-spacing:22.896960pt;}
.ws0_c00327{word-spacing:-16.000000pt;}
.ws1_c00327{word-spacing:-14.581440pt;}
.ws17_c00327{word-spacing:-0.117120pt;}
.ws1f_c00327{word-spacing:-0.064000pt;}
.wsd_c00327{word-spacing:-0.058560pt;}
.ws6_c00327{word-spacing:0.000000pt;}
.ws12_c00327{word-spacing:0.117120pt;}
.ws4_c00327{word-spacing:0.640000pt;}
.wsb_c00327{word-spacing:0.896000pt;}
.wsa_c00327{word-spacing:0.960000pt;}
.ws11_c00327{word-spacing:1.405440pt;}
.ws3_c00327{word-spacing:1.428864pt;}
.ws1e_c00327{word-spacing:1.536000pt;}
.ws16_c00327{word-spacing:2.459520pt;}
.ws8_c00327{word-spacing:2.496000pt;}
.ws7_c00327{word-spacing:2.560000pt;}
.ws5_c00327{word-spacing:2.682048pt;}
.ws15_c00327{word-spacing:2.693760pt;}
.ws1c_c00327{word-spacing:2.816000pt;}
.ws1d_c00327{word-spacing:2.880000pt;}
.ws9_c00327{word-spacing:3.712000pt;}
.ws13_c00327{word-spacing:3.776000pt;}
.ws14_c00327{word-spacing:3.840000pt;}
.ws2_c00327{word-spacing:3.904000pt;}
.ws19_c00327{word-spacing:5.328960pt;}
.ws18_c00327{word-spacing:5.563200pt;}
.wsf_c00327{word-spacing:5.973120pt;}
.ws10_c00327{word-spacing:6.207360pt;}
.wse_c00327{word-spacing:8.198400pt;}
.ws20_c00327{word-spacing:8.432640pt;}
.ws23_c00327{word-spacing:9.720960pt;}
.ws21_c00327{word-spacing:11.126400pt;}
.ws22_c00327{word-spacing:11.360640pt;}
.wsc_c00327{word-spacing:14.400000pt;}
.ws1a_c00327{word-spacing:16.045440pt;}
.ws1b_c00327{word-spacing:16.162560pt;}
.ws24_c00327{word-spacing:30.976000pt;}
._1_c00327{margin-left:-1.152000pt;}
._2_c00327{width:0.947200pt;}
._0_c00327{width:2.944000pt;}
._3_c00327{width:8.374080pt;}
.fs1_c00327{font-size:58.560000pt;}
.fs0_c00327{font-size:64.000000pt;}
.y0_c00327{bottom:0.000000pt;}
.y1_c00327{bottom:54.887600pt;}
.y1d_c00327{bottom:137.079467pt;}
.y1c_c00327{bottom:164.679467pt;}
.y1b_c00327{bottom:218.666213pt;}
.y1a_c00327{bottom:243.949493pt;}
.y19_c00327{bottom:269.232773pt;}
.y18_c00327{bottom:294.516053pt;}
.y17_c00327{bottom:319.799333pt;}
.y16_c00327{bottom:373.959467pt;}
.y15_c00327{bottom:401.559467pt;}
.y14_c00327{bottom:429.159467pt;}
.y13_c00327{bottom:483.076613pt;}
.y12_c00327{bottom:508.433093pt;}
.y11_c00327{bottom:533.716373pt;}
.y10_c00327{bottom:586.596053pt;}
.yf_c00327{bottom:611.879333pt;}
.ye_c00327{bottom:666.039200pt;}
.yd_c00327{bottom:693.639200pt;}
.yc_c00327{bottom:721.239200pt;}
.yb_c00327{bottom:775.153093pt;}
.ya_c00327{bottom:800.509573pt;}
.y9_c00327{bottom:825.792853pt;}
.y8_c00327{bottom:851.076133pt;}
.y7_c00327{bottom:902.919467pt;}
.y6_c00327{bottom:930.519467pt;}
.y5_c00327{bottom:958.119467pt;}
.y4_c00327{bottom:985.719467pt;}
.y3_c00327{bottom:1013.319467pt;}
.y2_c00327{bottom:1060.599467pt;}
.h2_c00327{height:44.800000pt;}
.h4_c00327{height:63.479040pt;}
.h3_c00327{height:68.288000pt;}
.h0_c00327{height:1122.520000pt;}
.h1_c00327{height:1122.666667pt;}
.w0_c00327{width:793.701333pt;}
.w1_c00327{width:794.000000pt;}
.x0_c00327{left:0.000000pt;}
.x1_c00327{left:48.000000pt;}
.x2_c00327{left:113.440000pt;}
.x4_c00327{left:132.400000pt;}
.x3_c00327{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00328;src:url('chunks/assets/font_ae2c3149313b5a041b9c3895.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00328;src:url('chunks/assets/font_c3f82aa711e44ceafce3133a.woff2')format("woff");}.ff3_c00328{font-family:ff3_c00328;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00328;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00328{font-family:ff4_c00328;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00328;src:url('chunks/assets/font_0f4c65f45e31ad93d1bfce8a.woff2')format("woff");}.ff5_c00328{font-family:ff5_c00328;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00328;src:url('chunks/assets/font_7e6a02f0184cda7636049346.woff2')format("woff");}.ff6_c00328{font-family:ff6_c00328;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsd_c00328{letter-spacing:-0.360000px;}
.lsc_c00328{letter-spacing:-0.065880px;}
.lsa_c00328{letter-spacing:0.000000px;}
.lsb_c00328{letter-spacing:0.065880px;}
.ls0_c00328{letter-spacing:0.072000px;}
.lse_c00328{letter-spacing:0.144000px;}
.ls2_c00328{letter-spacing:0.197640px;}
.ls6_c00328{letter-spacing:16.199892px;}
.ls4_c00328{letter-spacing:16.206480px;}
.ls5_c00328{letter-spacing:16.601760px;}
.ls8_c00328{letter-spacing:17.326440px;}
.ls3_c00328{letter-spacing:20.923200px;}
.ls7_c00328{letter-spacing:24.836760px;}
.ls9_c00328{letter-spacing:25.200000px;}
.ls1_c00328{letter-spacing:25.759080px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00328{word-spacing:-18.000000px;}
.ws7_c00328{word-spacing:-16.470000px;}
.ws1_c00328{word-spacing:-16.404120px;}
.ws19_c00328{word-spacing:-0.131760px;}
.ws21_c00328{word-spacing:-0.072000px;}
.wsf_c00328{word-spacing:-0.065880px;}
.ws8_c00328{word-spacing:0.000000px;}
.ws28_c00328{word-spacing:0.065880px;}
.ws14_c00328{word-spacing:0.131760px;}
.ws2b_c00328{word-spacing:0.592920px;}
.ws4_c00328{word-spacing:0.720000px;}
.wsd_c00328{word-spacing:1.008000px;}
.wsc_c00328{word-spacing:1.080000px;}
.ws13_c00328{word-spacing:1.581120px;}
.ws3_c00328{word-spacing:1.607472px;}
.ws6_c00328{word-spacing:1.614060px;}
.ws20_c00328{word-spacing:1.728000px;}
.ws18_c00328{word-spacing:2.766960px;}
.wsa_c00328{word-spacing:2.808000px;}
.ws9_c00328{word-spacing:2.880000px;}
.ws5_c00328{word-spacing:3.017304px;}
.ws17_c00328{word-spacing:3.030480px;}
.ws1e_c00328{word-spacing:3.168000px;}
.ws1f_c00328{word-spacing:3.240000px;}
.ws2e_c00328{word-spacing:3.528000px;}
.wsb_c00328{word-spacing:4.176000px;}
.ws15_c00328{word-spacing:4.248000px;}
.ws16_c00328{word-spacing:4.320000px;}
.ws2_c00328{word-spacing:4.392000px;}
.ws2d_c00328{word-spacing:4.941000px;}
.ws2c_c00328{word-spacing:5.072760px;}
.ws1b_c00328{word-spacing:5.995080px;}
.ws1a_c00328{word-spacing:6.258600px;}
.ws11_c00328{word-spacing:6.719760px;}
.ws27_c00328{word-spacing:6.768000px;}
.ws12_c00328{word-spacing:6.983280px;}
.ws31_c00328{word-spacing:7.272000px;}
.ws30_c00328{word-spacing:7.488000px;}
.ws2f_c00328{word-spacing:7.560000px;}
.ws2a_c00328{word-spacing:8.169120px;}
.ws10_c00328{word-spacing:9.223200px;}
.ws22_c00328{word-spacing:9.486720px;}
.ws25_c00328{word-spacing:10.936080px;}
.ws23_c00328{word-spacing:12.517200px;}
.ws24_c00328{word-spacing:12.780720px;}
.wse_c00328{word-spacing:16.200000px;}
.ws1c_c00328{word-spacing:18.051120px;}
.ws1d_c00328{word-spacing:18.182880px;}
.ws29_c00328{word-spacing:21.240000px;}
.ws26_c00328{word-spacing:34.848000px;}
._1_c00328{margin-left:-1.296000px;}
._2_c00328{width:1.065600px;}
._0_c00328{width:3.312000px;}
._3_c00328{width:9.420840px;}
.fc2_c00328{color:transparent;}
.fc1_c00328{color:rgb(0,0,0);}
.fc0_c00328{color:rgb(35,31,32);}
.fs1_c00328{font-size:65.880000px;}
.fs0_c00328{font-size:72.000000px;}
.y0_c00328{bottom:0.000000px;}
.y1_c00328{bottom:61.748550px;}
.y3c_c00328{bottom:143.864400px;}
.y1d_c00328{bottom:154.214400px;}
.y3b_c00328{bottom:174.914400px;}
.y1c_c00328{bottom:185.264400px;}
.y3a_c00328{bottom:205.964400px;}
.y39_c00328{bottom:237.014400px;}
.y1b_c00328{bottom:245.999490px;}
.y1a_c00328{bottom:274.443180px;}
.y38_c00328{bottom:297.660450px;}
.y19_c00328{bottom:302.886870px;}
.y37_c00328{bottom:326.186490px;}
.y18_c00328{bottom:331.330560px;}
.y36_c00328{bottom:354.630180px;}
.y17_c00328{bottom:359.774250px;}
.y35_c00328{bottom:383.073870px;}
.y34_c00328{bottom:411.517560px;}
.y16_c00328{bottom:420.704400px;}
.y33_c00328{bottom:440.043600px;}
.y15_c00328{bottom:451.754400px;}
.y32_c00328{bottom:468.487290px;}
.y14_c00328{bottom:482.804400px;}
.y31_c00328{bottom:496.930980px;}
.y30_c00328{bottom:525.374670px;}
.y13_c00328{bottom:543.461190px;}
.y2f_c00328{bottom:553.818360px;}
.y12_c00328{bottom:571.987230px;}
.y2e_c00328{bottom:582.344400px;}
.y11_c00328{bottom:600.430920px;}
.y2d_c00328{bottom:643.274400px;}
.y10_c00328{bottom:659.920560px;}
.y2c_c00328{bottom:674.324400px;}
.yf_c00328{bottom:688.364250px;}
.y2b_c00328{bottom:734.959110px;}
.ye_c00328{bottom:749.294100px;}
.y2a_c00328{bottom:763.402800px;}
.yd_c00328{bottom:780.344100px;}
.y29_c00328{bottom:791.846490px;}
.yc_c00328{bottom:811.394100px;}
.y28_c00328{bottom:820.290180px;}
.y27_c00328{bottom:848.816220px;}
.yb_c00328{bottom:872.047230px;}
.y26_c00328{bottom:877.259910px;}
.ya_c00328{bottom:900.573270px;}
.y25_c00328{bottom:905.703600px;}
.y9_c00328{bottom:929.016960px;}
.y24_c00328{bottom:934.147290px;}
.y8_c00328{bottom:957.460650px;}
.y23_c00328{bottom:962.673330px;}
.y22_c00328{bottom:991.117020px;}
.y7_c00328{bottom:1015.784400px;}
.y21_c00328{bottom:1019.560710px;}
.y6_c00328{bottom:1046.834400px;}
.y20_c00328{bottom:1048.004400px;}
.y5_c00328{bottom:1077.884400px;}
.y4_c00328{bottom:1108.934400px;}
.y1f_c00328{bottom:1139.984400px;}
.y3_c00328{bottom:1139.984550px;}
.y1e_c00328{bottom:1193.174400px;}
.y2_c00328{bottom:1193.174550px;}
.h2_c00328{height:50.400000px;}
.h4_c00328{height:71.413920px;}
.h3_c00328{height:76.824000px;}
.h0_c00328{height:1262.835000px;}
.h1_c00328{height:1263.000000px;}
.w2_c00328{width:0.000000px;}
.w3_c00328{width:0.066000px;}
.w0_c00328{width:892.914000px;}
.w1_c00328{width:893.250000px;}
.x1_c00328{left:-838.913400px;}
.x2_c00328{left:-765.293400px;}
.x4_c00328{left:-743.963400px;}
.x3_c00328{left:-733.343400px;}
.x0_c00328{left:0.000000px;}
.x7_c00328{left:127.620000px;}
.x8_c00328{left:148.950000px;}
.x9_c00328{left:159.570000px;}
.x6_c00328{left:679.950000px;}
.x5_c00328{left:804.366150px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.lsd_c00328{letter-spacing:-0.320000pt;}
.lsc_c00328{letter-spacing:-0.058560pt;}
.lsa_c00328{letter-spacing:0.000000pt;}
.lsb_c00328{letter-spacing:0.058560pt;}
.ls0_c00328{letter-spacing:0.064000pt;}
.lse_c00328{letter-spacing:0.128000pt;}
.ls2_c00328{letter-spacing:0.175680pt;}
.ls6_c00328{letter-spacing:14.399904pt;}
.ls4_c00328{letter-spacing:14.405760pt;}
.ls5_c00328{letter-spacing:14.757120pt;}
.ls8_c00328{letter-spacing:15.401280pt;}
.ls3_c00328{letter-spacing:18.598400pt;}
.ls7_c00328{letter-spacing:22.077120pt;}
.ls9_c00328{letter-spacing:22.400000pt;}
.ls1_c00328{letter-spacing:22.896960pt;}
.ws0_c00328{word-spacing:-16.000000pt;}
.ws7_c00328{word-spacing:-14.640000pt;}
.ws1_c00328{word-spacing:-14.581440pt;}
.ws19_c00328{word-spacing:-0.117120pt;}
.ws21_c00328{word-spacing:-0.064000pt;}
.wsf_c00328{word-spacing:-0.058560pt;}
.ws8_c00328{word-spacing:0.000000pt;}
.ws28_c00328{word-spacing:0.058560pt;}
.ws14_c00328{word-spacing:0.117120pt;}
.ws2b_c00328{word-spacing:0.527040pt;}
.ws4_c00328{word-spacing:0.640000pt;}
.wsd_c00328{word-spacing:0.896000pt;}
.wsc_c00328{word-spacing:0.960000pt;}
.ws13_c00328{word-spacing:1.405440pt;}
.ws3_c00328{word-spacing:1.428864pt;}
.ws6_c00328{word-spacing:1.434720pt;}
.ws20_c00328{word-spacing:1.536000pt;}
.ws18_c00328{word-spacing:2.459520pt;}
.wsa_c00328{word-spacing:2.496000pt;}
.ws9_c00328{word-spacing:2.560000pt;}
.ws5_c00328{word-spacing:2.682048pt;}
.ws17_c00328{word-spacing:2.693760pt;}
.ws1e_c00328{word-spacing:2.816000pt;}
.ws1f_c00328{word-spacing:2.880000pt;}
.ws2e_c00328{word-spacing:3.136000pt;}
.wsb_c00328{word-spacing:3.712000pt;}
.ws15_c00328{word-spacing:3.776000pt;}
.ws16_c00328{word-spacing:3.840000pt;}
.ws2_c00328{word-spacing:3.904000pt;}
.ws2d_c00328{word-spacing:4.392000pt;}
.ws2c_c00328{word-spacing:4.509120pt;}
.ws1b_c00328{word-spacing:5.328960pt;}
.ws1a_c00328{word-spacing:5.563200pt;}
.ws11_c00328{word-spacing:5.973120pt;}
.ws27_c00328{word-spacing:6.016000pt;}
.ws12_c00328{word-spacing:6.207360pt;}
.ws31_c00328{word-spacing:6.464000pt;}
.ws30_c00328{word-spacing:6.656000pt;}
.ws2f_c00328{word-spacing:6.720000pt;}
.ws2a_c00328{word-spacing:7.261440pt;}
.ws10_c00328{word-spacing:8.198400pt;}
.ws22_c00328{word-spacing:8.432640pt;}
.ws25_c00328{word-spacing:9.720960pt;}
.ws23_c00328{word-spacing:11.126400pt;}
.ws24_c00328{word-spacing:11.360640pt;}
.wse_c00328{word-spacing:14.400000pt;}
.ws1c_c00328{word-spacing:16.045440pt;}
.ws1d_c00328{word-spacing:16.162560pt;}
.ws29_c00328{word-spacing:18.880000pt;}
.ws26_c00328{word-spacing:30.976000pt;}
._1_c00328{margin-left:-1.152000pt;}
._2_c00328{width:0.947200pt;}
._0_c00328{width:2.944000pt;}
._3_c00328{width:8.374080pt;}
.fs1_c00328{font-size:58.560000pt;}
.fs0_c00328{font-size:64.000000pt;}
.y0_c00328{bottom:0.000000pt;}
.y1_c00328{bottom:54.887600pt;}
.y3c_c00328{bottom:127.879467pt;}
.y1d_c00328{bottom:137.079467pt;}
.y3b_c00328{bottom:155.479467pt;}
.y1c_c00328{bottom:164.679467pt;}
.y3a_c00328{bottom:183.079467pt;}
.y39_c00328{bottom:210.679467pt;}
.y1b_c00328{bottom:218.666213pt;}
.y1a_c00328{bottom:243.949493pt;}
.y38_c00328{bottom:264.587067pt;}
.y19_c00328{bottom:269.232773pt;}
.y37_c00328{bottom:289.943547pt;}
.y18_c00328{bottom:294.516053pt;}
.y36_c00328{bottom:315.226827pt;}
.y17_c00328{bottom:319.799333pt;}
.y35_c00328{bottom:340.510107pt;}
.y34_c00328{bottom:365.793387pt;}
.y16_c00328{bottom:373.959467pt;}
.y33_c00328{bottom:391.149867pt;}
.y15_c00328{bottom:401.559467pt;}
.y32_c00328{bottom:416.433147pt;}
.y14_c00328{bottom:429.159467pt;}
.y31_c00328{bottom:441.716427pt;}
.y30_c00328{bottom:466.999707pt;}
.y13_c00328{bottom:483.076613pt;}
.y2f_c00328{bottom:492.282987pt;}
.y12_c00328{bottom:508.433093pt;}
.y2e_c00328{bottom:517.639467pt;}
.y11_c00328{bottom:533.716373pt;}
.y2d_c00328{bottom:571.799467pt;}
.y10_c00328{bottom:586.596053pt;}
.y2c_c00328{bottom:599.399467pt;}
.yf_c00328{bottom:611.879333pt;}
.y2b_c00328{bottom:653.296987pt;}
.ye_c00328{bottom:666.039200pt;}
.y2a_c00328{bottom:678.580267pt;}
.yd_c00328{bottom:693.639200pt;}
.y29_c00328{bottom:703.863547pt;}
.yc_c00328{bottom:721.239200pt;}
.y28_c00328{bottom:729.146827pt;}
.y27_c00328{bottom:754.503307pt;}
.yb_c00328{bottom:775.153093pt;}
.y26_c00328{bottom:779.786587pt;}
.ya_c00328{bottom:800.509573pt;}
.y25_c00328{bottom:805.069867pt;}
.y9_c00328{bottom:825.792853pt;}
.y24_c00328{bottom:830.353147pt;}
.y8_c00328{bottom:851.076133pt;}
.y23_c00328{bottom:855.709627pt;}
.y22_c00328{bottom:880.992907pt;}
.y7_c00328{bottom:902.919467pt;}
.y21_c00328{bottom:906.276187pt;}
.y6_c00328{bottom:930.519467pt;}
.y20_c00328{bottom:931.559467pt;}
.y5_c00328{bottom:958.119467pt;}
.y4_c00328{bottom:985.719467pt;}
.y1f_c00328{bottom:1013.319467pt;}
.y3_c00328{bottom:1013.319600pt;}
.y1e_c00328{bottom:1060.599467pt;}
.y2_c00328{bottom:1060.599600pt;}
.h2_c00328{height:44.800000pt;}
.h4_c00328{height:63.479040pt;}
.h3_c00328{height:68.288000pt;}
.h0_c00328{height:1122.520000pt;}
.h1_c00328{height:1122.666667pt;}
.w2_c00328{width:0.000000pt;}
.w3_c00328{width:0.058667pt;}
.w0_c00328{width:793.701333pt;}
.w1_c00328{width:794.000000pt;}
.x1_c00328{left:-745.700800pt;}
.x2_c00328{left:-680.260800pt;}
.x4_c00328{left:-661.300800pt;}
.x3_c00328{left:-651.860800pt;}
.x0_c00328{left:0.000000pt;}
.x7_c00328{left:113.440000pt;}
.x8_c00328{left:132.400000pt;}
.x9_c00328{left:141.840000pt;}
.x6_c00328{left:604.400000pt;}
.x5_c00328{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00329;src:url('chunks/assets/font_291d6351b02abda6871c4a75.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00329;src:url('chunks/assets/font_d65ceacaeb4d29d7d57014ef.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00329;src:url('chunks/assets/font_a527e5872b8a6605487d95d4.woff2')format("woff");}.ff4_c00329{font-family:ff4_c00329;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00329;src:url('chunks/assets/font_0af319f7fd0e730797779a18.woff2')format("woff");}.ff5_c00329{font-family:ff5_c00329;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls8_c00329{letter-spacing:-0.065880px;}
.ls7_c00329{letter-spacing:0.000000px;}
.ls1_c00329{letter-spacing:0.065880px;}
.ls5_c00329{letter-spacing:0.072000px;}
.ls9_c00329{letter-spacing:0.144000px;}
.ls3_c00329{letter-spacing:0.197640px;}
.ls0_c00329{letter-spacing:16.601760px;}
.ls2_c00329{letter-spacing:16.931160px;}
.ls4_c00329{letter-spacing:18.709920px;}
.ls6_c00329{letter-spacing:50.414400px;}
.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;}
}
.ws6_c00329{word-spacing:-18.072000px;}
.ws0_c00329{word-spacing:-18.000000px;}
.ws3_c00329{word-spacing:-16.667640px;}
.ws4_c00329{word-spacing:-16.535880px;}
.ws1_c00329{word-spacing:-16.404120px;}
.ws7_c00329{word-spacing:-0.792000px;}
.ws2_c00329{word-spacing:-0.270108px;}
.ws9_c00329{word-spacing:-0.131760px;}
.ws15_c00329{word-spacing:-0.072000px;}
.ws8_c00329{word-spacing:0.000000px;}
.ws18_c00329{word-spacing:0.131760px;}
.wsa_c00329{word-spacing:0.263520px;}
.ws12_c00329{word-spacing:0.648000px;}
.ws17_c00329{word-spacing:1.251720px;}
.ws1b_c00329{word-spacing:1.712880px;}
.wsb_c00329{word-spacing:2.042280px;}
.ws1a_c00329{word-spacing:2.437560px;}
.ws19_c00329{word-spacing:2.701080px;}
.ws16_c00329{word-spacing:4.216320px;}
.ws10_c00329{word-spacing:18.000000px;}
.ws13_c00329{word-spacing:18.288000px;}
.wsd_c00329{word-spacing:24.336000px;}
.wse_c00329{word-spacing:24.408000px;}
.wsc_c00329{word-spacing:24.480000px;}
.ws5_c00329{word-spacing:24.624000px;}
.ws11_c00329{word-spacing:25.128000px;}
.ws14_c00329{word-spacing:32.040000px;}
.wsf_c00329{word-spacing:32.688000px;}
._1_c00329{margin-left:-1.199016px;}
._0_c00329{width:1.060668px;}
._2_c00329{width:122.400000px;}
.fc1_c00329{color:rgb(0,0,0);}
.fc0_c00329{color:rgb(35,31,32);}
.fs1_c00329{font-size:65.880000px;}
.fs0_c00329{font-size:72.000000px;}
.y0_c00329{bottom:0.000000px;}
.y1_c00329{bottom:61.748550px;}
.y1c_c00329{bottom:217.493130px;}
.y1b_c00329{bottom:246.019170px;}
.y1a_c00329{bottom:274.462860px;}
.y19_c00329{bottom:333.952500px;}
.y18_c00329{bottom:362.396190px;}
.y17_c00329{bottom:421.885830px;}
.y16_c00329{bottom:450.411870px;}
.y15_c00329{bottom:511.334250px;}
.y14_c00329{bottom:542.294250px;}
.y13_c00329{bottom:573.344250px;}
.y12_c00329{bottom:604.394250px;}
.y11_c00329{bottom:635.444250px;}
.y10_c00329{bottom:697.364250px;}
.yf_c00329{bottom:759.644250px;}
.ye_c00329{bottom:790.694250px;}
.yd_c00329{bottom:821.744250px;}
.yc_c00329{bottom:852.794250px;}
.yb_c00329{bottom:913.440030px;}
.ya_c00329{bottom:941.966070px;}
.y9_c00329{bottom:970.409760px;}
.y8_c00329{bottom:998.853450px;}
.y7_c00329{bottom:1027.297140px;}
.y6_c00329{bottom:1055.740830px;}
.y5_c00329{bottom:1084.266870px;}
.y4_c00329{bottom:1112.710560px;}
.y3_c00329{bottom:1141.154250px;}
.y2_c00329{bottom:1193.174400px;}
.h2_c00329{height:50.400000px;}
.h4_c00329{height:71.413920px;}
.h3_c00329{height:76.824000px;}
.h0_c00329{height:1262.835000px;}
.h1_c00329{height:1263.000000px;}
.w0_c00329{width:892.914000px;}
.w1_c00329{width:893.250000px;}
.x0_c00329{left:0.000000px;}
.x1_c00329{left:54.000000px;}
.x2_c00329{left:127.620000px;}
.x3_c00329{left:148.950000px;}
.x4_c00329{left:159.570000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls8_c00329{letter-spacing:-0.058560pt;}
.ls7_c00329{letter-spacing:0.000000pt;}
.ls1_c00329{letter-spacing:0.058560pt;}
.ls5_c00329{letter-spacing:0.064000pt;}
.ls9_c00329{letter-spacing:0.128000pt;}
.ls3_c00329{letter-spacing:0.175680pt;}
.ls0_c00329{letter-spacing:14.757120pt;}
.ls2_c00329{letter-spacing:15.049920pt;}
.ls4_c00329{letter-spacing:16.631040pt;}
.ls6_c00329{letter-spacing:44.812800pt;}
.ws6_c00329{word-spacing:-16.064000pt;}
.ws0_c00329{word-spacing:-16.000000pt;}
.ws3_c00329{word-spacing:-14.815680pt;}
.ws4_c00329{word-spacing:-14.698560pt;}
.ws1_c00329{word-spacing:-14.581440pt;}
.ws7_c00329{word-spacing:-0.704000pt;}
.ws2_c00329{word-spacing:-0.240096pt;}
.ws9_c00329{word-spacing:-0.117120pt;}
.ws15_c00329{word-spacing:-0.064000pt;}
.ws8_c00329{word-spacing:0.000000pt;}
.ws18_c00329{word-spacing:0.117120pt;}
.wsa_c00329{word-spacing:0.234240pt;}
.ws12_c00329{word-spacing:0.576000pt;}
.ws17_c00329{word-spacing:1.112640pt;}
.ws1b_c00329{word-spacing:1.522560pt;}
.wsb_c00329{word-spacing:1.815360pt;}
.ws1a_c00329{word-spacing:2.166720pt;}
.ws19_c00329{word-spacing:2.400960pt;}
.ws16_c00329{word-spacing:3.747840pt;}
.ws10_c00329{word-spacing:16.000000pt;}
.ws13_c00329{word-spacing:16.256000pt;}
.wsd_c00329{word-spacing:21.632000pt;}
.wse_c00329{word-spacing:21.696000pt;}
.wsc_c00329{word-spacing:21.760000pt;}
.ws5_c00329{word-spacing:21.888000pt;}
.ws11_c00329{word-spacing:22.336000pt;}
.ws14_c00329{word-spacing:28.480000pt;}
.wsf_c00329{word-spacing:29.056000pt;}
._1_c00329{margin-left:-1.065792pt;}
._0_c00329{width:0.942816pt;}
._2_c00329{width:108.800000pt;}
.fs1_c00329{font-size:58.560000pt;}
.fs0_c00329{font-size:64.000000pt;}
.y0_c00329{bottom:0.000000pt;}
.y1_c00329{bottom:54.887600pt;}
.y1c_c00329{bottom:193.327227pt;}
.y1b_c00329{bottom:218.683707pt;}
.y1a_c00329{bottom:243.966987pt;}
.y19_c00329{bottom:296.846667pt;}
.y18_c00329{bottom:322.129947pt;}
.y17_c00329{bottom:375.009627pt;}
.y16_c00329{bottom:400.366107pt;}
.y15_c00329{bottom:454.519333pt;}
.y14_c00329{bottom:482.039333pt;}
.y13_c00329{bottom:509.639333pt;}
.y12_c00329{bottom:537.239333pt;}
.y11_c00329{bottom:564.839333pt;}
.y10_c00329{bottom:619.879333pt;}
.yf_c00329{bottom:675.239333pt;}
.ye_c00329{bottom:702.839333pt;}
.yd_c00329{bottom:730.439333pt;}
.yc_c00329{bottom:758.039333pt;}
.yb_c00329{bottom:811.946693pt;}
.ya_c00329{bottom:837.303173pt;}
.y9_c00329{bottom:862.586453pt;}
.y8_c00329{bottom:887.869733pt;}
.y7_c00329{bottom:913.153013pt;}
.y6_c00329{bottom:938.436293pt;}
.y5_c00329{bottom:963.792773pt;}
.y4_c00329{bottom:989.076053pt;}
.y3_c00329{bottom:1014.359333pt;}
.y2_c00329{bottom:1060.599467pt;}
.h2_c00329{height:44.800000pt;}
.h4_c00329{height:63.479040pt;}
.h3_c00329{height:68.288000pt;}
.h0_c00329{height:1122.520000pt;}
.h1_c00329{height:1122.666667pt;}
.w0_c00329{width:793.701333pt;}
.w1_c00329{width:794.000000pt;}
.x0_c00329{left:0.000000pt;}
.x1_c00329{left:48.000000pt;}
.x2_c00329{left:113.440000pt;}
.x3_c00329{left:132.400000pt;}
.x4_c00329{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00330;src:url('chunks/assets/font_0c19cf6c309bd3f6d98e6cb4.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00330;src:url('chunks/assets/font_5211a88651b17ee3e01f2868.woff2')format("woff");}.ff3_c00330{font-family:ff3_c00330;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00330;src:url('chunks/assets/font_78db843ecf85cd62c6672e2a.woff2')format("woff");}.ff4_c00330{font-family:ff4_c00330;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00330;src:url('chunks/assets/font_0af319f7fd0e730797779a18.woff2')format("woff");}.ff5_c00330{font-family:ff5_c00330;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00330;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00330{font-family:ff6_c00330;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00330;src:url('chunks/assets/font_401491d76d35716d449d404a.woff2')format("woff");}.ff7_c00330{font-family:ff7_c00330;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00330;src:url('chunks/assets/font_1c296ca9e6f7cecbb18b782e.woff2')format("woff");}.ff8_c00330{font-family:ff8_c00330;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00330;src:url('chunks/assets/font_076a15be77157e7cbfd1898e.woff2')format("woff");}.ff9_c00330{font-family:ff9_c00330;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00330;src:url('chunks/assets/font_0af319f7fd0e730797779a18.woff2')format("woff");}.ffa_c00330{font-family:ffa_c00330;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00330{letter-spacing:-0.131760px;}
.lsb_c00330{letter-spacing:-0.072000px;}
.ls9_c00330{letter-spacing:-0.065880px;}
.ls8_c00330{letter-spacing:0.000000px;}
.ls1_c00330{letter-spacing:0.065880px;}
.ls5_c00330{letter-spacing:0.072000px;}
.lsa_c00330{letter-spacing:0.144000px;}
.ls3_c00330{letter-spacing:0.197640px;}
.ls0_c00330{letter-spacing:16.601760px;}
.ls2_c00330{letter-spacing:16.931160px;}
.ls4_c00330{letter-spacing:18.709920px;}
.ls7_c00330{letter-spacing:24.494400px;}
.ls6_c00330{letter-spacing:50.414400px;}
.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;}
}
.ws6_c00330{word-spacing:-18.072000px;}
.ws0_c00330{word-spacing:-18.000000px;}
.ws3_c00330{word-spacing:-16.667640px;}
.ws4_c00330{word-spacing:-16.535880px;}
.wsc_c00330{word-spacing:-16.470000px;}
.ws1_c00330{word-spacing:-16.404120px;}
.wsa_c00330{word-spacing:-16.338240px;}
.ws7_c00330{word-spacing:-0.792000px;}
.ws2_c00330{word-spacing:-0.270108px;}
.ws9_c00330{word-spacing:-0.263520px;}
.ws2f_c00330{word-spacing:-0.197640px;}
.wse_c00330{word-spacing:-0.131760px;}
.ws1a_c00330{word-spacing:-0.072000px;}
.wsd_c00330{word-spacing:0.000000px;}
.ws28_c00330{word-spacing:0.072000px;}
.ws1d_c00330{word-spacing:0.131760px;}
.wsf_c00330{word-spacing:0.263520px;}
.ws36_c00330{word-spacing:0.527040px;}
.ws17_c00330{word-spacing:0.648000px;}
.ws25_c00330{word-spacing:0.856440px;}
.ws1c_c00330{word-spacing:1.251720px;}
.ws31_c00330{word-spacing:1.317600px;}
.ws21_c00330{word-spacing:1.368000px;}
.ws2b_c00330{word-spacing:1.440000px;}
.ws20_c00330{word-spacing:1.712880px;}
.ws10_c00330{word-spacing:2.042280px;}
.ws1f_c00330{word-spacing:2.437560px;}
.ws1e_c00330{word-spacing:2.701080px;}
.ws1b_c00330{word-spacing:4.216320px;}
.ws23_c00330{word-spacing:4.248000px;}
.ws24_c00330{word-spacing:4.608000px;}
.ws22_c00330{word-spacing:4.680000px;}
.ws32_c00330{word-spacing:4.809240px;}
.ws26_c00330{word-spacing:5.270400px;}
.ws27_c00330{word-spacing:5.533920px;}
.ws35_c00330{word-spacing:6.048000px;}
.ws34_c00330{word-spacing:6.408000px;}
.wsb_c00330{word-spacing:6.480000px;}
.ws2e_c00330{word-spacing:6.719760px;}
.ws8_c00330{word-spacing:6.917400px;}
.ws2d_c00330{word-spacing:10.672560px;}
.ws2c_c00330{word-spacing:10.936080px;}
.ws30_c00330{word-spacing:15.020640px;}
.ws15_c00330{word-spacing:18.000000px;}
.ws18_c00330{word-spacing:18.288000px;}
.ws2a_c00330{word-spacing:20.088000px;}
.ws29_c00330{word-spacing:20.160000px;}
.ws33_c00330{word-spacing:21.240000px;}
.ws12_c00330{word-spacing:24.336000px;}
.ws13_c00330{word-spacing:24.408000px;}
.ws11_c00330{word-spacing:24.480000px;}
.ws5_c00330{word-spacing:24.624000px;}
.ws16_c00330{word-spacing:25.128000px;}
.ws19_c00330{word-spacing:32.040000px;}
.ws14_c00330{word-spacing:32.688000px;}
._1_c00330{margin-left:-1.199016px;}
._0_c00330{width:1.060668px;}
._3_c00330{width:20.304000px;}
._2_c00330{width:122.400000px;}
.fc2_c00330{color:transparent;}
.fc1_c00330{color:rgb(0,0,0);}
.fc0_c00330{color:rgb(35,31,32);}
.fs1_c00330{font-size:65.880000px;}
.fs0_c00330{font-size:72.000000px;}
.y0_c00330{bottom:0.000000px;}
.y1_c00330{bottom:61.748550px;}
.y35_c00330{bottom:214.957020px;}
.y1c_c00330{bottom:217.493130px;}
.y34_c00330{bottom:243.400710px;}
.y1b_c00330{bottom:246.019170px;}
.y33_c00330{bottom:271.844400px;}
.y1a_c00330{bottom:274.462860px;}
.y32_c00330{bottom:332.774250px;}
.y19_c00330{bottom:333.952500px;}
.y18_c00330{bottom:362.396190px;}
.y31_c00330{bottom:363.824250px;}
.y30_c00330{bottom:394.874250px;}
.y17_c00330{bottom:421.885830px;}
.y16_c00330{bottom:450.411870px;}
.y2f_c00330{bottom:455.532180px;}
.y2e_c00330{bottom:483.975870px;}
.y15_c00330{bottom:511.334250px;}
.y14_c00330{bottom:542.294250px;}
.y2d_c00330{bottom:543.465510px;}
.y2c_c00330{bottom:571.991550px;}
.y13_c00330{bottom:573.344250px;}
.y12_c00330{bottom:604.394250px;}
.y2b_c00330{bottom:631.481190px;}
.y11_c00330{bottom:635.444250px;}
.y2a_c00330{bottom:659.924880px;}
.y10_c00330{bottom:697.364250px;}
.y29_c00330{bottom:719.414520px;}
.y28_c00330{bottom:747.940560px;}
.yf_c00330{bottom:759.644250px;}
.y27_c00330{bottom:776.384250px;}
.ye_c00330{bottom:790.694250px;}
.yd_c00330{bottom:821.744250px;}
.y26_c00330{bottom:837.314400px;}
.yc_c00330{bottom:852.794250px;}
.y25_c00330{bottom:868.364400px;}
.y24_c00330{bottom:899.414400px;}
.yb_c00330{bottom:913.440030px;}
.ya_c00330{bottom:941.966070px;}
.y23_c00330{bottom:960.066870px;}
.y9_c00330{bottom:970.409760px;}
.y22_c00330{bottom:988.510560px;}
.y8_c00330{bottom:998.853450px;}
.y21_c00330{bottom:1016.954250px;}
.y7_c00330{bottom:1027.297140px;}
.y6_c00330{bottom:1055.740830px;}
.y20_c00330{bottom:1077.884400px;}
.y5_c00330{bottom:1084.266870px;}
.y1f_c00330{bottom:1108.934400px;}
.y4_c00330{bottom:1112.710560px;}
.y1e_c00330{bottom:1139.984400px;}
.y3_c00330{bottom:1141.154250px;}
.y1d_c00330{bottom:1193.174400px;}
.y2_c00330{bottom:1193.174550px;}
.h2_c00330{height:50.400000px;}
.h4_c00330{height:71.413920px;}
.h3_c00330{height:76.824000px;}
.h5_c00330{height:78.048000px;}
.h0_c00330{height:1262.835000px;}
.h1_c00330{height:1263.000000px;}
.w2_c00330{width:0.000000px;}
.w3_c00330{width:0.066000px;}
.w0_c00330{width:892.914000px;}
.w1_c00330{width:893.250000px;}
.x1_c00330{left:-838.913400px;}
.x2_c00330{left:-765.293400px;}
.x3_c00330{left:-743.963400px;}
.x4_c00330{left:-733.343400px;}
.x0_c00330{left:0.000000px;}
.x8_c00330{left:127.620000px;}
.x9_c00330{left:148.950000px;}
.x7_c00330{left:159.570000px;}
.x6_c00330{left:679.950000px;}
.x5_c00330{left:804.366150px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.lsc_c00330{letter-spacing:-0.117120pt;}
.lsb_c00330{letter-spacing:-0.064000pt;}
.ls9_c00330{letter-spacing:-0.058560pt;}
.ls8_c00330{letter-spacing:0.000000pt;}
.ls1_c00330{letter-spacing:0.058560pt;}
.ls5_c00330{letter-spacing:0.064000pt;}
.lsa_c00330{letter-spacing:0.128000pt;}
.ls3_c00330{letter-spacing:0.175680pt;}
.ls0_c00330{letter-spacing:14.757120pt;}
.ls2_c00330{letter-spacing:15.049920pt;}
.ls4_c00330{letter-spacing:16.631040pt;}
.ls7_c00330{letter-spacing:21.772800pt;}
.ls6_c00330{letter-spacing:44.812800pt;}
.ws6_c00330{word-spacing:-16.064000pt;}
.ws0_c00330{word-spacing:-16.000000pt;}
.ws3_c00330{word-spacing:-14.815680pt;}
.ws4_c00330{word-spacing:-14.698560pt;}
.wsc_c00330{word-spacing:-14.640000pt;}
.ws1_c00330{word-spacing:-14.581440pt;}
.wsa_c00330{word-spacing:-14.522880pt;}
.ws7_c00330{word-spacing:-0.704000pt;}
.ws2_c00330{word-spacing:-0.240096pt;}
.ws9_c00330{word-spacing:-0.234240pt;}
.ws2f_c00330{word-spacing:-0.175680pt;}
.wse_c00330{word-spacing:-0.117120pt;}
.ws1a_c00330{word-spacing:-0.064000pt;}
.wsd_c00330{word-spacing:0.000000pt;}
.ws28_c00330{word-spacing:0.064000pt;}
.ws1d_c00330{word-spacing:0.117120pt;}
.wsf_c00330{word-spacing:0.234240pt;}
.ws36_c00330{word-spacing:0.468480pt;}
.ws17_c00330{word-spacing:0.576000pt;}
.ws25_c00330{word-spacing:0.761280pt;}
.ws1c_c00330{word-spacing:1.112640pt;}
.ws31_c00330{word-spacing:1.171200pt;}
.ws21_c00330{word-spacing:1.216000pt;}
.ws2b_c00330{word-spacing:1.280000pt;}
.ws20_c00330{word-spacing:1.522560pt;}
.ws10_c00330{word-spacing:1.815360pt;}
.ws1f_c00330{word-spacing:2.166720pt;}
.ws1e_c00330{word-spacing:2.400960pt;}
.ws1b_c00330{word-spacing:3.747840pt;}
.ws23_c00330{word-spacing:3.776000pt;}
.ws24_c00330{word-spacing:4.096000pt;}
.ws22_c00330{word-spacing:4.160000pt;}
.ws32_c00330{word-spacing:4.274880pt;}
.ws26_c00330{word-spacing:4.684800pt;}
.ws27_c00330{word-spacing:4.919040pt;}
.ws35_c00330{word-spacing:5.376000pt;}
.ws34_c00330{word-spacing:5.696000pt;}
.wsb_c00330{word-spacing:5.760000pt;}
.ws2e_c00330{word-spacing:5.973120pt;}
.ws8_c00330{word-spacing:6.148800pt;}
.ws2d_c00330{word-spacing:9.486720pt;}
.ws2c_c00330{word-spacing:9.720960pt;}
.ws30_c00330{word-spacing:13.351680pt;}
.ws15_c00330{word-spacing:16.000000pt;}
.ws18_c00330{word-spacing:16.256000pt;}
.ws2a_c00330{word-spacing:17.856000pt;}
.ws29_c00330{word-spacing:17.920000pt;}
.ws33_c00330{word-spacing:18.880000pt;}
.ws12_c00330{word-spacing:21.632000pt;}
.ws13_c00330{word-spacing:21.696000pt;}
.ws11_c00330{word-spacing:21.760000pt;}
.ws5_c00330{word-spacing:21.888000pt;}
.ws16_c00330{word-spacing:22.336000pt;}
.ws19_c00330{word-spacing:28.480000pt;}
.ws14_c00330{word-spacing:29.056000pt;}
._1_c00330{margin-left:-1.065792pt;}
._0_c00330{width:0.942816pt;}
._3_c00330{width:18.048000pt;}
._2_c00330{width:108.800000pt;}
.fs1_c00330{font-size:58.560000pt;}
.fs0_c00330{font-size:64.000000pt;}
.y0_c00330{bottom:0.000000pt;}
.y1_c00330{bottom:54.887600pt;}
.y35_c00330{bottom:191.072907pt;}
.y1c_c00330{bottom:193.327227pt;}
.y34_c00330{bottom:216.356187pt;}
.y1b_c00330{bottom:218.683707pt;}
.y33_c00330{bottom:241.639467pt;}
.y1a_c00330{bottom:243.966987pt;}
.y32_c00330{bottom:295.799333pt;}
.y19_c00330{bottom:296.846667pt;}
.y18_c00330{bottom:322.129947pt;}
.y31_c00330{bottom:323.399333pt;}
.y30_c00330{bottom:350.999333pt;}
.y17_c00330{bottom:375.009627pt;}
.y16_c00330{bottom:400.366107pt;}
.y2f_c00330{bottom:404.917493pt;}
.y2e_c00330{bottom:430.200773pt;}
.y15_c00330{bottom:454.519333pt;}
.y14_c00330{bottom:482.039333pt;}
.y2d_c00330{bottom:483.080453pt;}
.y2c_c00330{bottom:508.436933pt;}
.y13_c00330{bottom:509.639333pt;}
.y12_c00330{bottom:537.239333pt;}
.y2b_c00330{bottom:561.316613pt;}
.y11_c00330{bottom:564.839333pt;}
.y2a_c00330{bottom:586.599893pt;}
.y10_c00330{bottom:619.879333pt;}
.y29_c00330{bottom:639.479573pt;}
.y28_c00330{bottom:664.836053pt;}
.yf_c00330{bottom:675.239333pt;}
.y27_c00330{bottom:690.119333pt;}
.ye_c00330{bottom:702.839333pt;}
.yd_c00330{bottom:730.439333pt;}
.y26_c00330{bottom:744.279467pt;}
.yc_c00330{bottom:758.039333pt;}
.y25_c00330{bottom:771.879467pt;}
.y24_c00330{bottom:799.479467pt;}
.yb_c00330{bottom:811.946693pt;}
.ya_c00330{bottom:837.303173pt;}
.y23_c00330{bottom:853.392773pt;}
.y9_c00330{bottom:862.586453pt;}
.y22_c00330{bottom:878.676053pt;}
.y8_c00330{bottom:887.869733pt;}
.y21_c00330{bottom:903.959333pt;}
.y7_c00330{bottom:913.153013pt;}
.y6_c00330{bottom:938.436293pt;}
.y20_c00330{bottom:958.119467pt;}
.y5_c00330{bottom:963.792773pt;}
.y1f_c00330{bottom:985.719467pt;}
.y4_c00330{bottom:989.076053pt;}
.y1e_c00330{bottom:1013.319467pt;}
.y3_c00330{bottom:1014.359333pt;}
.y1d_c00330{bottom:1060.599467pt;}
.y2_c00330{bottom:1060.599600pt;}
.h2_c00330{height:44.800000pt;}
.h4_c00330{height:63.479040pt;}
.h3_c00330{height:68.288000pt;}
.h5_c00330{height:69.376000pt;}
.h0_c00330{height:1122.520000pt;}
.h1_c00330{height:1122.666667pt;}
.w2_c00330{width:0.000000pt;}
.w3_c00330{width:0.058667pt;}
.w0_c00330{width:793.701333pt;}
.w1_c00330{width:794.000000pt;}
.x1_c00330{left:-745.700800pt;}
.x2_c00330{left:-680.260800pt;}
.x3_c00330{left:-661.300800pt;}
.x4_c00330{left:-651.860800pt;}
.x0_c00330{left:0.000000pt;}
.x8_c00330{left:113.440000pt;}
.x9_c00330{left:132.400000pt;}
.x7_c00330{left:141.840000pt;}
.x6_c00330{left:604.400000pt;}
.x5_c00330{left:714.992133pt;}
}





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

.ir_c00331:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00331;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00331;src:url('chunks/assets/font_564e02597d304bd115e42797.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00331;src:url('chunks/assets/font_0222b27eee0b980c6e289d0e.woff2')format("woff");}.ff3_c00331{font-family:ff3_c00331;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00331;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff4_c00331{font-family:ff4_c00331;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00331{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls7_c00331{letter-spacing:-0.288000px;}
.ls6_c00331{letter-spacing:-0.065880px;}
.ls5_c00331{letter-spacing:0.000000px;}
.ls4_c00331{letter-spacing:0.065880px;}
.ls0_c00331{letter-spacing:0.072000px;}
.ls3_c00331{letter-spacing:0.197640px;}
.ls1_c00331{letter-spacing:20.520000px;}
.ls2_c00331{letter-spacing:23.453280px;}
.sc__c00331{text-shadow:none;}
.sc0_c00331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00331{-webkit-text-stroke:0px transparent;}
.sc0_c00331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00331{word-spacing:-18.000000px;}
.ws6_c00331{word-spacing:-16.535880px;}
.ws2_c00331{word-spacing:-16.470000px;}
.wsa_c00331{word-spacing:-0.432000px;}
.ws19_c00331{word-spacing:-0.197640px;}
.wsf_c00331{word-spacing:-0.131760px;}
.ws11_c00331{word-spacing:-0.072000px;}
.ws1_c00331{word-spacing:0.000000px;}
.wse_c00331{word-spacing:0.263520px;}
.ws5_c00331{word-spacing:0.461160px;}
.ws28_c00331{word-spacing:0.592920px;}
.ws29_c00331{word-spacing:0.856440px;}
.ws16_c00331{word-spacing:1.317600px;}
.ws7_c00331{word-spacing:1.368000px;}
.ws17_c00331{word-spacing:1.581120px;}
.ws1c_c00331{word-spacing:1.712880px;}
.ws23_c00331{word-spacing:1.728000px;}
.ws24_c00331{word-spacing:1.800000px;}
.ws1b_c00331{word-spacing:1.976400px;}
.ws18_c00331{word-spacing:2.042280px;}
.wsd_c00331{word-spacing:2.437560px;}
.ws8_c00331{word-spacing:2.448000px;}
.ws9_c00331{word-spacing:2.520000px;}
.ws1d_c00331{word-spacing:3.096360px;}
.ws4_c00331{word-spacing:3.359880px;}
.ws1e_c00331{word-spacing:3.425760px;}
.ws1a_c00331{word-spacing:3.491640px;}
.ws15_c00331{word-spacing:3.888000px;}
.ws10_c00331{word-spacing:4.608000px;}
.ws22_c00331{word-spacing:5.270400px;}
.ws2b_c00331{word-spacing:5.533920px;}
.ws12_c00331{word-spacing:6.336000px;}
.ws13_c00331{word-spacing:6.696000px;}
.wsb_c00331{word-spacing:6.719760px;}
.ws14_c00331{word-spacing:6.840000px;}
.wsc_c00331{word-spacing:6.983280px;}
.ws3_c00331{word-spacing:7.560000px;}
.ws2a_c00331{word-spacing:11.067840px;}
.ws26_c00331{word-spacing:12.528000px;}
.ws21_c00331{word-spacing:13.110120px;}
.ws1f_c00331{word-spacing:13.176000px;}
.ws20_c00331{word-spacing:13.439520px;}
.ws25_c00331{word-spacing:20.448000px;}
.ws27_c00331{word-spacing:29.808000px;}
._0_c00331{margin-left:-1.152000px;}
._1_c00331{width:1.159776px;}
._4_c00331{width:3.359880px;}
._2_c00331{width:6.912000px;}
._5_c00331{width:20.645892px;}
._3_c00331{width:23.760000px;}
.fc1_c00331{color:rgb(0,0,0);}
.fc0_c00331{color:rgb(35,31,32);}
.fs1_c00331{font-size:65.880000px;}
.fs0_c00331{font-size:72.000000px;}
.y0_c00331{bottom:0.000000px;}
.y1_c00331{bottom:61.748550px;}
.y20_c00331{bottom:130.358370px;}
.y1f_c00331{bottom:158.802060px;}
.y1e_c00331{bottom:187.328100px;}
.y1d_c00331{bottom:217.204680px;}
.y1c_c00331{bottom:246.010710px;}
.y1b_c00331{bottom:274.454400px;}
.y1a_c00331{bottom:335.384400px;}
.y19_c00331{bottom:366.434400px;}
.y18_c00331{bottom:397.484400px;}
.y17_c00331{bottom:428.534400px;}
.y16_c00331{bottom:459.584400px;}
.y15_c00331{bottom:520.230120px;}
.y14_c00331{bottom:548.673810px;}
.y13_c00331{bottom:577.117500px;}
.y12_c00331{bottom:605.561190px;}
.y11_c00331{bottom:634.087230px;}
.y10_c00331{bottom:662.530920px;}
.yf_c00331{bottom:690.974610px;}
.ye_c00331{bottom:719.418300px;}
.yd_c00331{bottom:777.824250px;}
.yc_c00331{bottom:808.784250px;}
.yb_c00331{bottom:839.834250px;}
.ya_c00331{bottom:870.884250px;}
.y9_c00331{bottom:931.623180px;}
.y8_c00331{bottom:960.066870px;}
.y7_c00331{bottom:988.510560px;}
.y6_c00331{bottom:1016.954250px;}
.y5_c00331{bottom:1077.884400px;}
.y4_c00331{bottom:1108.934400px;}
.y3_c00331{bottom:1139.984400px;}
.y2_c00331{bottom:1193.174400px;}
.h2_c00331{height:50.400000px;}
.h6_c00331{height:54.331699px;}
.h5_c00331{height:71.413920px;}
.h3_c00331{height:76.824000px;}
.h4_c00331{height:78.048000px;}
.h0_c00331{height:1262.835000px;}
.h1_c00331{height:1263.000000px;}
.w0_c00331{width:892.914000px;}
.w1_c00331{width:893.250000px;}
.x0_c00331{left:0.000000px;}
.x1_c00331{left:54.000000px;}
.x2_c00331{left:127.620000px;}
.x4_c00331{left:148.950000px;}
.x3_c00331{left:159.570000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls7_c00331{letter-spacing:-0.256000pt;}
.ls6_c00331{letter-spacing:-0.058560pt;}
.ls5_c00331{letter-spacing:0.000000pt;}
.ls4_c00331{letter-spacing:0.058560pt;}
.ls0_c00331{letter-spacing:0.064000pt;}
.ls3_c00331{letter-spacing:0.175680pt;}
.ls1_c00331{letter-spacing:18.240000pt;}
.ls2_c00331{letter-spacing:20.847360pt;}
.ws0_c00331{word-spacing:-16.000000pt;}
.ws6_c00331{word-spacing:-14.698560pt;}
.ws2_c00331{word-spacing:-14.640000pt;}
.wsa_c00331{word-spacing:-0.384000pt;}
.ws19_c00331{word-spacing:-0.175680pt;}
.wsf_c00331{word-spacing:-0.117120pt;}
.ws11_c00331{word-spacing:-0.064000pt;}
.ws1_c00331{word-spacing:0.000000pt;}
.wse_c00331{word-spacing:0.234240pt;}
.ws5_c00331{word-spacing:0.409920pt;}
.ws28_c00331{word-spacing:0.527040pt;}
.ws29_c00331{word-spacing:0.761280pt;}
.ws16_c00331{word-spacing:1.171200pt;}
.ws7_c00331{word-spacing:1.216000pt;}
.ws17_c00331{word-spacing:1.405440pt;}
.ws1c_c00331{word-spacing:1.522560pt;}
.ws23_c00331{word-spacing:1.536000pt;}
.ws24_c00331{word-spacing:1.600000pt;}
.ws1b_c00331{word-spacing:1.756800pt;}
.ws18_c00331{word-spacing:1.815360pt;}
.wsd_c00331{word-spacing:2.166720pt;}
.ws8_c00331{word-spacing:2.176000pt;}
.ws9_c00331{word-spacing:2.240000pt;}
.ws1d_c00331{word-spacing:2.752320pt;}
.ws4_c00331{word-spacing:2.986560pt;}
.ws1e_c00331{word-spacing:3.045120pt;}
.ws1a_c00331{word-spacing:3.103680pt;}
.ws15_c00331{word-spacing:3.456000pt;}
.ws10_c00331{word-spacing:4.096000pt;}
.ws22_c00331{word-spacing:4.684800pt;}
.ws2b_c00331{word-spacing:4.919040pt;}
.ws12_c00331{word-spacing:5.632000pt;}
.ws13_c00331{word-spacing:5.952000pt;}
.wsb_c00331{word-spacing:5.973120pt;}
.ws14_c00331{word-spacing:6.080000pt;}
.wsc_c00331{word-spacing:6.207360pt;}
.ws3_c00331{word-spacing:6.720000pt;}
.ws2a_c00331{word-spacing:9.838080pt;}
.ws26_c00331{word-spacing:11.136000pt;}
.ws21_c00331{word-spacing:11.653440pt;}
.ws1f_c00331{word-spacing:11.712000pt;}
.ws20_c00331{word-spacing:11.946240pt;}
.ws25_c00331{word-spacing:18.176000pt;}
.ws27_c00331{word-spacing:26.496000pt;}
._0_c00331{margin-left:-1.024000pt;}
._1_c00331{width:1.030912pt;}
._4_c00331{width:2.986560pt;}
._2_c00331{width:6.144000pt;}
._5_c00331{width:18.351904pt;}
._3_c00331{width:21.120000pt;}
.fs1_c00331{font-size:58.560000pt;}
.fs0_c00331{font-size:64.000000pt;}
.y0_c00331{bottom:0.000000pt;}
.y1_c00331{bottom:54.887600pt;}
.y20_c00331{bottom:115.874107pt;}
.y1f_c00331{bottom:141.157387pt;}
.y1e_c00331{bottom:166.513867pt;}
.y1d_c00331{bottom:193.070827pt;}
.y1c_c00331{bottom:218.676187pt;}
.y1b_c00331{bottom:243.959467pt;}
.y1a_c00331{bottom:298.119467pt;}
.y19_c00331{bottom:325.719467pt;}
.y18_c00331{bottom:353.319467pt;}
.y17_c00331{bottom:380.919467pt;}
.y16_c00331{bottom:408.519467pt;}
.y15_c00331{bottom:462.426773pt;}
.y14_c00331{bottom:487.710053pt;}
.y13_c00331{bottom:512.993333pt;}
.y12_c00331{bottom:538.276613pt;}
.y11_c00331{bottom:563.633093pt;}
.y10_c00331{bottom:588.916373pt;}
.yf_c00331{bottom:614.199653pt;}
.ye_c00331{bottom:639.482933pt;}
.yd_c00331{bottom:691.399333pt;}
.yc_c00331{bottom:718.919333pt;}
.yb_c00331{bottom:746.519333pt;}
.ya_c00331{bottom:774.119333pt;}
.y9_c00331{bottom:828.109493pt;}
.y8_c00331{bottom:853.392773pt;}
.y7_c00331{bottom:878.676053pt;}
.y6_c00331{bottom:903.959333pt;}
.y5_c00331{bottom:958.119467pt;}
.y4_c00331{bottom:985.719467pt;}
.y3_c00331{bottom:1013.319467pt;}
.y2_c00331{bottom:1060.599467pt;}
.h2_c00331{height:44.800000pt;}
.h6_c00331{height:48.294844pt;}
.h5_c00331{height:63.479040pt;}
.h3_c00331{height:68.288000pt;}
.h4_c00331{height:69.376000pt;}
.h0_c00331{height:1122.520000pt;}
.h1_c00331{height:1122.666667pt;}
.w0_c00331{width:793.701333pt;}
.w1_c00331{width:794.000000pt;}
.x0_c00331{left:0.000000pt;}
.x1_c00331{left:48.000000pt;}
.x2_c00331{left:113.440000pt;}
.x4_c00331{left:132.400000pt;}
.x3_c00331{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00332;src:url('chunks/assets/font_6601c57c3b6453994104b485.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00332;src:url('chunks/assets/font_c060d73f36428789d028dd05.woff2')format("woff");}.ff3_c00332{font-family:ff3_c00332;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00332;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff4_c00332{font-family:ff4_c00332;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00332;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00332{font-family:ff5_c00332;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00332;src:url('chunks/assets/font_5ef3b86919f6479f2bf536f4.woff2')format("woff");}.ff6_c00332{font-family:ff6_c00332;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00332;src:url('chunks/assets/font_d3c5e9c077a3467ab544cbd5.woff2')format("woff");}.ff7_c00332{font-family:ff7_c00332;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00332;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff8_c00332{font-family:ff8_c00332;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lsc_c00332{letter-spacing:-0.288000px;}
.lsd_c00332{letter-spacing:-0.072000px;}
.lsb_c00332{letter-spacing:-0.065880px;}
.lsa_c00332{letter-spacing:0.000000px;}
.ls4_c00332{letter-spacing:0.065880px;}
.ls0_c00332{letter-spacing:0.072000px;}
.ls8_c00332{letter-spacing:0.144000px;}
.ls3_c00332{letter-spacing:0.197640px;}
.ls1_c00332{letter-spacing:20.520000px;}
.ls6_c00332{letter-spacing:22.464000px;}
.ls2_c00332{letter-spacing:23.453280px;}
.ls5_c00332{letter-spacing:24.421716px;}
.ls9_c00332{letter-spacing:26.336520px;}
.ls7_c00332{letter-spacing:44.640000px;}
.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;}
}
.wsa_c00332{word-spacing:-18.144000px;}
.ws1_c00332{word-spacing:-18.072000px;}
.ws0_c00332{word-spacing:-18.000000px;}
.ws8_c00332{word-spacing:-16.667640px;}
.ws7_c00332{word-spacing:-16.535880px;}
.ws3_c00332{word-spacing:-16.470000px;}
.ws9_c00332{word-spacing:-0.909144px;}
.wse_c00332{word-spacing:-0.432000px;}
.ws1d_c00332{word-spacing:-0.197640px;}
.ws13_c00332{word-spacing:-0.131760px;}
.ws15_c00332{word-spacing:-0.072000px;}
.ws2_c00332{word-spacing:0.000000px;}
.ws35_c00332{word-spacing:0.065880px;}
.ws46_c00332{word-spacing:0.072000px;}
.ws34_c00332{word-spacing:0.131760px;}
.ws12_c00332{word-spacing:0.263520px;}
.ws6_c00332{word-spacing:0.461160px;}
.ws2c_c00332{word-spacing:0.592920px;}
.ws2d_c00332{word-spacing:0.856440px;}
.ws30_c00332{word-spacing:0.988200px;}
.ws1a_c00332{word-spacing:1.317600px;}
.wsb_c00332{word-spacing:1.368000px;}
.ws1b_c00332{word-spacing:1.581120px;}
.ws20_c00332{word-spacing:1.712880px;}
.ws27_c00332{word-spacing:1.728000px;}
.ws28_c00332{word-spacing:1.800000px;}
.ws1f_c00332{word-spacing:1.976400px;}
.ws1c_c00332{word-spacing:2.042280px;}
.ws11_c00332{word-spacing:2.437560px;}
.wsc_c00332{word-spacing:2.448000px;}
.wsd_c00332{word-spacing:2.520000px;}
.ws31_c00332{word-spacing:2.766960px;}
.ws37_c00332{word-spacing:2.808000px;}
.ws3d_c00332{word-spacing:2.880000px;}
.ws33_c00332{word-spacing:2.898720px;}
.ws32_c00332{word-spacing:3.030480px;}
.ws21_c00332{word-spacing:3.096360px;}
.ws42_c00332{word-spacing:3.168000px;}
.ws3e_c00332{word-spacing:3.240000px;}
.ws5_c00332{word-spacing:3.359880px;}
.ws22_c00332{word-spacing:3.425760px;}
.ws1e_c00332{word-spacing:3.491640px;}
.ws43_c00332{word-spacing:3.600000px;}
.ws44_c00332{word-spacing:3.821040px;}
.ws19_c00332{word-spacing:3.888000px;}
.ws40_c00332{word-spacing:3.960000px;}
.ws41_c00332{word-spacing:4.248000px;}
.ws3f_c00332{word-spacing:4.320000px;}
.ws14_c00332{word-spacing:4.608000px;}
.ws26_c00332{word-spacing:5.270400px;}
.ws2f_c00332{word-spacing:5.533920px;}
.ws16_c00332{word-spacing:6.336000px;}
.ws17_c00332{word-spacing:6.696000px;}
.wsf_c00332{word-spacing:6.719760px;}
.ws18_c00332{word-spacing:6.840000px;}
.ws10_c00332{word-spacing:6.983280px;}
.ws47_c00332{word-spacing:7.128000px;}
.ws3a_c00332{word-spacing:7.200000px;}
.ws4_c00332{word-spacing:7.560000px;}
.ws38_c00332{word-spacing:8.103240px;}
.ws39_c00332{word-spacing:8.432640px;}
.ws45_c00332{word-spacing:10.211400px;}
.ws2e_c00332{word-spacing:11.067840px;}
.ws2a_c00332{word-spacing:12.528000px;}
.ws25_c00332{word-spacing:13.110120px;}
.ws23_c00332{word-spacing:13.176000px;}
.ws24_c00332{word-spacing:13.439520px;}
.ws48_c00332{word-spacing:13.680000px;}
.ws29_c00332{word-spacing:20.448000px;}
.ws36_c00332{word-spacing:21.168000px;}
.ws2b_c00332{word-spacing:29.808000px;}
.ws3b_c00332{word-spacing:30.888000px;}
.ws3c_c00332{word-spacing:30.960000px;}
._0_c00332{margin-left:-1.152000px;}
._1_c00332{width:1.159776px;}
._4_c00332{width:3.359880px;}
._2_c00332{width:6.912000px;}
._5_c00332{width:20.645892px;}
._3_c00332{width:23.760000px;}
.fc2_c00332{color:transparent;}
.fc1_c00332{color:rgb(0,0,0);}
.fc0_c00332{color:rgb(35,31,32);}
.fs1_c00332{font-size:65.880000px;}
.fs0_c00332{font-size:72.000000px;}
.y0_c00332{bottom:0.000000px;}
.y1_c00332{bottom:61.748550px;}
.y20_c00332{bottom:130.358370px;}
.y1f_c00332{bottom:158.802060px;}
.y3d_c00332{bottom:175.814400px;}
.y1e_c00332{bottom:187.328100px;}
.y3c_c00332{bottom:206.864400px;}
.y1d_c00332{bottom:217.204680px;}
.y3b_c00332{bottom:237.914400px;}
.y1c_c00332{bottom:246.010710px;}
.y1b_c00332{bottom:274.454400px;}
.y3a_c00332{bottom:299.834400px;}
.y39_c00332{bottom:330.876330px;}
.y1a_c00332{bottom:335.384400px;}
.y38_c00332{bottom:360.670560px;}
.y19_c00332{bottom:366.434400px;}
.y37_c00332{bottom:389.114250px;}
.y18_c00332{bottom:397.484400px;}
.y17_c00332{bottom:428.534400px;}
.y36_c00332{bottom:450.044250px;}
.y16_c00332{bottom:459.584400px;}
.y35_c00332{bottom:481.094250px;}
.y34_c00332{bottom:512.144250px;}
.y15_c00332{bottom:520.230120px;}
.y33_c00332{bottom:543.194250px;}
.y14_c00332{bottom:548.673810px;}
.y32_c00332{bottom:574.244250px;}
.y13_c00332{bottom:577.117500px;}
.y31_c00332{bottom:605.294250px;}
.y12_c00332{bottom:605.561190px;}
.y11_c00332{bottom:634.087230px;}
.y10_c00332{bottom:662.530920px;}
.y30_c00332{bottom:665.944410px;}
.yf_c00332{bottom:690.974610px;}
.y2f_c00332{bottom:694.388100px;}
.ye_c00332{bottom:719.418300px;}
.y2e_c00332{bottom:724.363500px;}
.y2d_c00332{bottom:753.070710px;}
.yd_c00332{bottom:777.824250px;}
.y2c_c00332{bottom:781.514400px;}
.yc_c00332{bottom:808.784250px;}
.yb_c00332{bottom:839.834250px;}
.y2b_c00332{bottom:842.444250px;}
.ya_c00332{bottom:870.884250px;}
.y2a_c00332{bottom:873.494250px;}
.y29_c00332{bottom:904.544250px;}
.y9_c00332{bottom:931.623180px;}
.y28_c00332{bottom:935.588280px;}
.y8_c00332{bottom:960.066870px;}
.y27_c00332{bottom:965.201340px;}
.y7_c00332{bottom:988.510560px;}
.y26_c00332{bottom:993.727380px;}
.y6_c00332{bottom:1016.954250px;}
.y25_c00332{bottom:1053.217020px;}
.y5_c00332{bottom:1077.884400px;}
.y24_c00332{bottom:1081.660710px;}
.y4_c00332{bottom:1108.934400px;}
.y23_c00332{bottom:1110.104400px;}
.y22_c00332{bottom:1139.984400px;}
.y3_c00332{bottom:1139.984550px;}
.y21_c00332{bottom:1193.174400px;}
.y2_c00332{bottom:1193.174550px;}
.h2_c00332{height:50.400000px;}
.h6_c00332{height:54.331699px;}
.h5_c00332{height:71.413920px;}
.h3_c00332{height:76.824000px;}
.h4_c00332{height:78.048000px;}
.h7_c00332{height:78.080280px;}
.h0_c00332{height:1262.835000px;}
.h1_c00332{height:1263.000000px;}
.w2_c00332{width:0.000000px;}
.w3_c00332{width:0.066000px;}
.w0_c00332{width:892.914000px;}
.w1_c00332{width:893.250000px;}
.x1_c00332{left:-838.913400px;}
.x2_c00332{left:-765.293400px;}
.x4_c00332{left:-743.963400px;}
.x3_c00332{left:-733.343400px;}
.x0_c00332{left:0.000000px;}
.x8_c00332{left:127.604880px;}
.x7_c00332{left:148.950000px;}
.x9_c00332{left:159.570000px;}
.x6_c00332{left:679.950000px;}
.x5_c00332{left:804.366150px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.lsc_c00332{letter-spacing:-0.256000pt;}
.lsd_c00332{letter-spacing:-0.064000pt;}
.lsb_c00332{letter-spacing:-0.058560pt;}
.lsa_c00332{letter-spacing:0.000000pt;}
.ls4_c00332{letter-spacing:0.058560pt;}
.ls0_c00332{letter-spacing:0.064000pt;}
.ls8_c00332{letter-spacing:0.128000pt;}
.ls3_c00332{letter-spacing:0.175680pt;}
.ls1_c00332{letter-spacing:18.240000pt;}
.ls6_c00332{letter-spacing:19.968000pt;}
.ls2_c00332{letter-spacing:20.847360pt;}
.ls5_c00332{letter-spacing:21.708192pt;}
.ls9_c00332{letter-spacing:23.410240pt;}
.ls7_c00332{letter-spacing:39.680000pt;}
.wsa_c00332{word-spacing:-16.128000pt;}
.ws1_c00332{word-spacing:-16.064000pt;}
.ws0_c00332{word-spacing:-16.000000pt;}
.ws8_c00332{word-spacing:-14.815680pt;}
.ws7_c00332{word-spacing:-14.698560pt;}
.ws3_c00332{word-spacing:-14.640000pt;}
.ws9_c00332{word-spacing:-0.808128pt;}
.wse_c00332{word-spacing:-0.384000pt;}
.ws1d_c00332{word-spacing:-0.175680pt;}
.ws13_c00332{word-spacing:-0.117120pt;}
.ws15_c00332{word-spacing:-0.064000pt;}
.ws2_c00332{word-spacing:0.000000pt;}
.ws35_c00332{word-spacing:0.058560pt;}
.ws46_c00332{word-spacing:0.064000pt;}
.ws34_c00332{word-spacing:0.117120pt;}
.ws12_c00332{word-spacing:0.234240pt;}
.ws6_c00332{word-spacing:0.409920pt;}
.ws2c_c00332{word-spacing:0.527040pt;}
.ws2d_c00332{word-spacing:0.761280pt;}
.ws30_c00332{word-spacing:0.878400pt;}
.ws1a_c00332{word-spacing:1.171200pt;}
.wsb_c00332{word-spacing:1.216000pt;}
.ws1b_c00332{word-spacing:1.405440pt;}
.ws20_c00332{word-spacing:1.522560pt;}
.ws27_c00332{word-spacing:1.536000pt;}
.ws28_c00332{word-spacing:1.600000pt;}
.ws1f_c00332{word-spacing:1.756800pt;}
.ws1c_c00332{word-spacing:1.815360pt;}
.ws11_c00332{word-spacing:2.166720pt;}
.wsc_c00332{word-spacing:2.176000pt;}
.wsd_c00332{word-spacing:2.240000pt;}
.ws31_c00332{word-spacing:2.459520pt;}
.ws37_c00332{word-spacing:2.496000pt;}
.ws3d_c00332{word-spacing:2.560000pt;}
.ws33_c00332{word-spacing:2.576640pt;}
.ws32_c00332{word-spacing:2.693760pt;}
.ws21_c00332{word-spacing:2.752320pt;}
.ws42_c00332{word-spacing:2.816000pt;}
.ws3e_c00332{word-spacing:2.880000pt;}
.ws5_c00332{word-spacing:2.986560pt;}
.ws22_c00332{word-spacing:3.045120pt;}
.ws1e_c00332{word-spacing:3.103680pt;}
.ws43_c00332{word-spacing:3.200000pt;}
.ws44_c00332{word-spacing:3.396480pt;}
.ws19_c00332{word-spacing:3.456000pt;}
.ws40_c00332{word-spacing:3.520000pt;}
.ws41_c00332{word-spacing:3.776000pt;}
.ws3f_c00332{word-spacing:3.840000pt;}
.ws14_c00332{word-spacing:4.096000pt;}
.ws26_c00332{word-spacing:4.684800pt;}
.ws2f_c00332{word-spacing:4.919040pt;}
.ws16_c00332{word-spacing:5.632000pt;}
.ws17_c00332{word-spacing:5.952000pt;}
.wsf_c00332{word-spacing:5.973120pt;}
.ws18_c00332{word-spacing:6.080000pt;}
.ws10_c00332{word-spacing:6.207360pt;}
.ws47_c00332{word-spacing:6.336000pt;}
.ws3a_c00332{word-spacing:6.400000pt;}
.ws4_c00332{word-spacing:6.720000pt;}
.ws38_c00332{word-spacing:7.202880pt;}
.ws39_c00332{word-spacing:7.495680pt;}
.ws45_c00332{word-spacing:9.076800pt;}
.ws2e_c00332{word-spacing:9.838080pt;}
.ws2a_c00332{word-spacing:11.136000pt;}
.ws25_c00332{word-spacing:11.653440pt;}
.ws23_c00332{word-spacing:11.712000pt;}
.ws24_c00332{word-spacing:11.946240pt;}
.ws48_c00332{word-spacing:12.160000pt;}
.ws29_c00332{word-spacing:18.176000pt;}
.ws36_c00332{word-spacing:18.816000pt;}
.ws2b_c00332{word-spacing:26.496000pt;}
.ws3b_c00332{word-spacing:27.456000pt;}
.ws3c_c00332{word-spacing:27.520000pt;}
._0_c00332{margin-left:-1.024000pt;}
._1_c00332{width:1.030912pt;}
._4_c00332{width:2.986560pt;}
._2_c00332{width:6.144000pt;}
._5_c00332{width:18.351904pt;}
._3_c00332{width:21.120000pt;}
.fs1_c00332{font-size:58.560000pt;}
.fs0_c00332{font-size:64.000000pt;}
.y0_c00332{bottom:0.000000pt;}
.y1_c00332{bottom:54.887600pt;}
.y20_c00332{bottom:115.874107pt;}
.y1f_c00332{bottom:141.157387pt;}
.y3d_c00332{bottom:156.279467pt;}
.y1e_c00332{bottom:166.513867pt;}
.y3c_c00332{bottom:183.879467pt;}
.y1d_c00332{bottom:193.070827pt;}
.y3b_c00332{bottom:211.479467pt;}
.y1c_c00332{bottom:218.676187pt;}
.y1b_c00332{bottom:243.959467pt;}
.y3a_c00332{bottom:266.519467pt;}
.y39_c00332{bottom:294.112293pt;}
.y1a_c00332{bottom:298.119467pt;}
.y38_c00332{bottom:320.596053pt;}
.y19_c00332{bottom:325.719467pt;}
.y37_c00332{bottom:345.879333pt;}
.y18_c00332{bottom:353.319467pt;}
.y17_c00332{bottom:380.919467pt;}
.y36_c00332{bottom:400.039333pt;}
.y16_c00332{bottom:408.519467pt;}
.y35_c00332{bottom:427.639333pt;}
.y34_c00332{bottom:455.239333pt;}
.y15_c00332{bottom:462.426773pt;}
.y33_c00332{bottom:482.839333pt;}
.y14_c00332{bottom:487.710053pt;}
.y32_c00332{bottom:510.439333pt;}
.y13_c00332{bottom:512.993333pt;}
.y31_c00332{bottom:538.039333pt;}
.y12_c00332{bottom:538.276613pt;}
.y11_c00332{bottom:563.633093pt;}
.y10_c00332{bottom:588.916373pt;}
.y30_c00332{bottom:591.950587pt;}
.yf_c00332{bottom:614.199653pt;}
.y2f_c00332{bottom:617.233867pt;}
.ye_c00332{bottom:639.482933pt;}
.y2e_c00332{bottom:643.878667pt;}
.y2d_c00332{bottom:669.396187pt;}
.yd_c00332{bottom:691.399333pt;}
.y2c_c00332{bottom:694.679467pt;}
.yc_c00332{bottom:718.919333pt;}
.yb_c00332{bottom:746.519333pt;}
.y2b_c00332{bottom:748.839333pt;}
.ya_c00332{bottom:774.119333pt;}
.y2a_c00332{bottom:776.439333pt;}
.y29_c00332{bottom:804.039333pt;}
.y9_c00332{bottom:828.109493pt;}
.y28_c00332{bottom:831.634027pt;}
.y8_c00332{bottom:853.392773pt;}
.y27_c00332{bottom:857.956747pt;}
.y7_c00332{bottom:878.676053pt;}
.y26_c00332{bottom:883.313227pt;}
.y6_c00332{bottom:903.959333pt;}
.y25_c00332{bottom:936.192907pt;}
.y5_c00332{bottom:958.119467pt;}
.y24_c00332{bottom:961.476187pt;}
.y4_c00332{bottom:985.719467pt;}
.y23_c00332{bottom:986.759467pt;}
.y22_c00332{bottom:1013.319467pt;}
.y3_c00332{bottom:1013.319600pt;}
.y21_c00332{bottom:1060.599467pt;}
.y2_c00332{bottom:1060.599600pt;}
.h2_c00332{height:44.800000pt;}
.h6_c00332{height:48.294844pt;}
.h5_c00332{height:63.479040pt;}
.h3_c00332{height:68.288000pt;}
.h4_c00332{height:69.376000pt;}
.h7_c00332{height:69.404693pt;}
.h0_c00332{height:1122.520000pt;}
.h1_c00332{height:1122.666667pt;}
.w2_c00332{width:0.000000pt;}
.w3_c00332{width:0.058667pt;}
.w0_c00332{width:793.701333pt;}
.w1_c00332{width:794.000000pt;}
.x1_c00332{left:-745.700800pt;}
.x2_c00332{left:-680.260800pt;}
.x4_c00332{left:-661.300800pt;}
.x3_c00332{left:-651.860800pt;}
.x0_c00332{left:0.000000pt;}
.x8_c00332{left:113.426560pt;}
.x7_c00332{left:132.400000pt;}
.x9_c00332{left:141.840000pt;}
.x6_c00332{left:604.400000pt;}
.x5_c00332{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00333;src:url('chunks/assets/font_75908c45bcb312c070086557.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00333;src:url('chunks/assets/font_66086b2f72c65054d0c35ace.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls10_c00333{letter-spacing:-0.288000px;}
.ls11_c00333{letter-spacing:-0.216000px;}
.lsf_c00333{letter-spacing:-0.065880px;}
.lse_c00333{letter-spacing:0.000000px;}
.lsa_c00333{letter-spacing:0.065880px;}
.ls5_c00333{letter-spacing:0.072000px;}
.ls2_c00333{letter-spacing:0.144000px;}
.ls0_c00333{letter-spacing:0.197640px;}
.lsd_c00333{letter-spacing:0.527040px;}
.ls4_c00333{letter-spacing:16.489800px;}
.lsb_c00333{letter-spacing:16.522488px;}
.ls7_c00333{letter-spacing:16.541892px;}
.ls9_c00333{letter-spacing:16.633440px;}
.ls1_c00333{letter-spacing:16.636680px;}
.ls3_c00333{letter-spacing:16.733520px;}
.ls6_c00333{letter-spacing:20.620440px;}
.lsc_c00333{letter-spacing:25.034400px;}
.ls8_c00333{letter-spacing:29.520000px;}
.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;}
}
.ws2_c00333{word-spacing:-18.144000px;}
.ws0_c00333{word-spacing:-18.000000px;}
.ws3_c00333{word-spacing:-16.404120px;}
.ws8_c00333{word-spacing:-0.360000px;}
.ws7_c00333{word-spacing:-0.131760px;}
.ws10_c00333{word-spacing:-0.072000px;}
.ws4_c00333{word-spacing:0.000000px;}
.ws14_c00333{word-spacing:0.065880px;}
.wsa_c00333{word-spacing:0.131760px;}
.wsb_c00333{word-spacing:0.216000px;}
.wsc_c00333{word-spacing:0.288000px;}
.ws1_c00333{word-spacing:0.322812px;}
.ws5_c00333{word-spacing:2.437560px;}
.ws12_c00333{word-spacing:2.701080px;}
.ws19_c00333{word-spacing:2.766960px;}
.ws16_c00333{word-spacing:2.880000px;}
.ws11_c00333{word-spacing:3.491640px;}
.ws13_c00333{word-spacing:4.084560px;}
.ws18_c00333{word-spacing:4.941000px;}
.ws6_c00333{word-spacing:6.390360px;}
.ws9_c00333{word-spacing:7.115040px;}
.ws20_c00333{word-spacing:8.169120px;}
.ws21_c00333{word-spacing:8.432640px;}
.wsf_c00333{word-spacing:8.568000px;}
.ws15_c00333{word-spacing:11.448000px;}
.ws1f_c00333{word-spacing:14.625360px;}
.ws17_c00333{word-spacing:14.888880px;}
.wsd_c00333{word-spacing:15.048000px;}
.wse_c00333{word-spacing:15.408000px;}
.ws1c_c00333{word-spacing:26.280000px;}
.ws1e_c00333{word-spacing:26.568000px;}
.ws1d_c00333{word-spacing:26.640000px;}
.ws1a_c00333{word-spacing:28.368000px;}
.ws1b_c00333{word-spacing:28.440000px;}
._1_c00333{margin-left:-2.075220px;}
._0_c00333{margin-left:-1.054080px;}
._2_c00333{width:1.021140px;}
._3_c00333{width:18.736272px;}
.fc1_c00333{color:rgb(0,0,0);}
.fc0_c00333{color:rgb(35,31,32);}
.fs1_c00333{font-size:65.880000px;}
.fs0_c00333{font-size:72.000000px;}
.y0_c00333{bottom:0.000000px;}
.y1_c00333{bottom:61.748550px;}
.y1d_c00333{bottom:111.460710px;}
.y1c_c00333{bottom:139.904400px;}
.y1b_c00333{bottom:200.834400px;}
.y1a_c00333{bottom:231.884400px;}
.y19_c00333{bottom:262.934400px;}
.y18_c00333{bottom:293.984400px;}
.y17_c00333{bottom:355.995120px;}
.y16_c00333{bottom:385.690530px;}
.y15_c00333{bottom:414.134220px;}
.y14_c00333{bottom:474.978990px;}
.y13_c00333{bottom:504.674400px;}
.y12_c00333{bottom:565.604250px;}
.y11_c00333{bottom:596.654250px;}
.y10_c00333{bottom:627.704250px;}
.yf_c00333{bottom:689.719110px;}
.ye_c00333{bottom:719.414520px;}
.yd_c00333{bottom:747.940560px;}
.yc_c00333{bottom:776.384250px;}
.yb_c00333{bottom:837.314400px;}
.ya_c00333{bottom:868.364400px;}
.y9_c00333{bottom:899.414400px;}
.y8_c00333{bottom:930.464400px;}
.y7_c00333{bottom:992.478810px;}
.y6_c00333{bottom:1022.174220px;}
.y5_c00333{bottom:1083.015150px;}
.y4_c00333{bottom:1112.710560px;}
.y3_c00333{bottom:1141.154250px;}
.y2_c00333{bottom:1193.174400px;}
.h2_c00333{height:50.400000px;}
.h4_c00333{height:71.413920px;}
.h3_c00333{height:76.824000px;}
.h8_c00333{height:78.029160px;}
.h9_c00333{height:78.029640px;}
.h6_c00333{height:78.029760px;}
.h5_c00333{height:78.045000px;}
.ha_c00333{height:78.045120px;}
.h7_c00333{height:78.048000px;}
.h0_c00333{height:1262.835000px;}
.h1_c00333{height:1263.000000px;}
.w0_c00333{width:892.914000px;}
.w1_c00333{width:893.250000px;}
.x0_c00333{left:0.000000px;}
.x1_c00333{left:54.000000px;}
.x2_c00333{left:127.620000px;}
.x3_c00333{left:148.950000px;}
.x5_c00333{left:153.081270px;}
.x4_c00333{left:159.570000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls10_c00333{letter-spacing:-0.256000pt;}
.ls11_c00333{letter-spacing:-0.192000pt;}
.lsf_c00333{letter-spacing:-0.058560pt;}
.lse_c00333{letter-spacing:0.000000pt;}
.lsa_c00333{letter-spacing:0.058560pt;}
.ls5_c00333{letter-spacing:0.064000pt;}
.ls2_c00333{letter-spacing:0.128000pt;}
.ls0_c00333{letter-spacing:0.175680pt;}
.lsd_c00333{letter-spacing:0.468480pt;}
.ls4_c00333{letter-spacing:14.657600pt;}
.lsb_c00333{letter-spacing:14.686656pt;}
.ls7_c00333{letter-spacing:14.703904pt;}
.ls9_c00333{letter-spacing:14.785280pt;}
.ls1_c00333{letter-spacing:14.788160pt;}
.ls3_c00333{letter-spacing:14.874240pt;}
.ls6_c00333{letter-spacing:18.329280pt;}
.lsc_c00333{letter-spacing:22.252800pt;}
.ls8_c00333{letter-spacing:26.240000pt;}
.ws2_c00333{word-spacing:-16.128000pt;}
.ws0_c00333{word-spacing:-16.000000pt;}
.ws3_c00333{word-spacing:-14.581440pt;}
.ws8_c00333{word-spacing:-0.320000pt;}
.ws7_c00333{word-spacing:-0.117120pt;}
.ws10_c00333{word-spacing:-0.064000pt;}
.ws4_c00333{word-spacing:0.000000pt;}
.ws14_c00333{word-spacing:0.058560pt;}
.wsa_c00333{word-spacing:0.117120pt;}
.wsb_c00333{word-spacing:0.192000pt;}
.wsc_c00333{word-spacing:0.256000pt;}
.ws1_c00333{word-spacing:0.286944pt;}
.ws5_c00333{word-spacing:2.166720pt;}
.ws12_c00333{word-spacing:2.400960pt;}
.ws19_c00333{word-spacing:2.459520pt;}
.ws16_c00333{word-spacing:2.560000pt;}
.ws11_c00333{word-spacing:3.103680pt;}
.ws13_c00333{word-spacing:3.630720pt;}
.ws18_c00333{word-spacing:4.392000pt;}
.ws6_c00333{word-spacing:5.680320pt;}
.ws9_c00333{word-spacing:6.324480pt;}
.ws20_c00333{word-spacing:7.261440pt;}
.ws21_c00333{word-spacing:7.495680pt;}
.wsf_c00333{word-spacing:7.616000pt;}
.ws15_c00333{word-spacing:10.176000pt;}
.ws1f_c00333{word-spacing:13.000320pt;}
.ws17_c00333{word-spacing:13.234560pt;}
.wsd_c00333{word-spacing:13.376000pt;}
.wse_c00333{word-spacing:13.696000pt;}
.ws1c_c00333{word-spacing:23.360000pt;}
.ws1e_c00333{word-spacing:23.616000pt;}
.ws1d_c00333{word-spacing:23.680000pt;}
.ws1a_c00333{word-spacing:25.216000pt;}
.ws1b_c00333{word-spacing:25.280000pt;}
._1_c00333{margin-left:-1.844640pt;}
._0_c00333{margin-left:-0.936960pt;}
._2_c00333{width:0.907680pt;}
._3_c00333{width:16.654464pt;}
.fs1_c00333{font-size:58.560000pt;}
.fs0_c00333{font-size:64.000000pt;}
.y0_c00333{bottom:0.000000pt;}
.y1_c00333{bottom:54.887600pt;}
.y1d_c00333{bottom:99.076187pt;}
.y1c_c00333{bottom:124.359467pt;}
.y1b_c00333{bottom:178.519467pt;}
.y1a_c00333{bottom:206.119467pt;}
.y19_c00333{bottom:233.719467pt;}
.y18_c00333{bottom:261.319467pt;}
.y17_c00333{bottom:316.440107pt;}
.y16_c00333{bottom:342.836027pt;}
.y15_c00333{bottom:368.119307pt;}
.y14_c00333{bottom:422.203547pt;}
.y13_c00333{bottom:448.599467pt;}
.y12_c00333{bottom:502.759333pt;}
.y11_c00333{bottom:530.359333pt;}
.y10_c00333{bottom:557.959333pt;}
.yf_c00333{bottom:613.083653pt;}
.ye_c00333{bottom:639.479573pt;}
.yd_c00333{bottom:664.836053pt;}
.yc_c00333{bottom:690.119333pt;}
.yb_c00333{bottom:744.279467pt;}
.ya_c00333{bottom:771.879467pt;}
.y9_c00333{bottom:799.479467pt;}
.y8_c00333{bottom:827.079467pt;}
.y7_c00333{bottom:882.203387pt;}
.y6_c00333{bottom:908.599307pt;}
.y5_c00333{bottom:962.680133pt;}
.y4_c00333{bottom:989.076053pt;}
.y3_c00333{bottom:1014.359333pt;}
.y2_c00333{bottom:1060.599467pt;}
.h2_c00333{height:44.800000pt;}
.h4_c00333{height:63.479040pt;}
.h3_c00333{height:68.288000pt;}
.h8_c00333{height:69.359253pt;}
.h9_c00333{height:69.359680pt;}
.h6_c00333{height:69.359787pt;}
.h5_c00333{height:69.373333pt;}
.ha_c00333{height:69.373440pt;}
.h7_c00333{height:69.376000pt;}
.h0_c00333{height:1122.520000pt;}
.h1_c00333{height:1122.666667pt;}
.w0_c00333{width:793.701333pt;}
.w1_c00333{width:794.000000pt;}
.x0_c00333{left:0.000000pt;}
.x1_c00333{left:48.000000pt;}
.x2_c00333{left:113.440000pt;}
.x3_c00333{left:132.400000pt;}
.x5_c00333{left:136.072240pt;}
.x4_c00333{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00334;src:url('chunks/assets/font_107050609c284cd736212caa.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00334;src:url('chunks/assets/font_0c97433ff2dec969bcac8074.woff2')format("woff");}.ff3_c00334{font-family:ff3_c00334;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00334;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00334{font-family:ff4_c00334;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00334;src:url('chunks/assets/font_db315678bc6bac57fd5e4590.woff2')format("woff");}.ff5_c00334{font-family:ff5_c00334;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00334;src:url('chunks/assets/font_4270cf24df22c549a460b55e.woff2')format("woff");}.ff6_c00334{font-family:ff6_c00334;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls12_c00334{letter-spacing:-0.288000px;}
.ls13_c00334{letter-spacing:-0.216000px;}
.ls11_c00334{letter-spacing:-0.065880px;}
.ls10_c00334{letter-spacing:0.000000px;}
.lsa_c00334{letter-spacing:0.065880px;}
.ls5_c00334{letter-spacing:0.072000px;}
.ls2_c00334{letter-spacing:0.144000px;}
.ls0_c00334{letter-spacing:0.197640px;}
.lsd_c00334{letter-spacing:0.527040px;}
.ls4_c00334{letter-spacing:16.489800px;}
.lsb_c00334{letter-spacing:16.522488px;}
.ls7_c00334{letter-spacing:16.541292px;}
.ls9_c00334{letter-spacing:16.633440px;}
.ls1_c00334{letter-spacing:16.636680px;}
.ls3_c00334{letter-spacing:16.733520px;}
.lsf_c00334{letter-spacing:17.018748px;}
.ls6_c00334{letter-spacing:20.620440px;}
.lse_c00334{letter-spacing:21.279240px;}
.lsc_c00334{letter-spacing:25.034400px;}
.ls8_c00334{letter-spacing:29.520000px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00334{word-spacing:-18.144000px;}
.ws4_c00334{word-spacing:-18.072000px;}
.ws0_c00334{word-spacing:-18.000000px;}
.ws5_c00334{word-spacing:-16.470000px;}
.ws3_c00334{word-spacing:-16.404120px;}
.ws2a_c00334{word-spacing:-0.432000px;}
.wsa_c00334{word-spacing:-0.360000px;}
.ws27_c00334{word-spacing:-0.144000px;}
.ws9_c00334{word-spacing:-0.131760px;}
.ws12_c00334{word-spacing:-0.072000px;}
.ws6_c00334{word-spacing:0.000000px;}
.ws16_c00334{word-spacing:0.065880px;}
.wsc_c00334{word-spacing:0.131760px;}
.wsd_c00334{word-spacing:0.216000px;}
.wse_c00334{word-spacing:0.288000px;}
.ws1_c00334{word-spacing:0.322812px;}
.ws3b_c00334{word-spacing:1.712880px;}
.ws37_c00334{word-spacing:2.016000px;}
.ws2c_c00334{word-spacing:2.088000px;}
.ws7_c00334{word-spacing:2.437560px;}
.ws2d_c00334{word-spacing:2.520000px;}
.ws14_c00334{word-spacing:2.701080px;}
.ws1b_c00334{word-spacing:2.766960px;}
.ws18_c00334{word-spacing:2.880000px;}
.ws13_c00334{word-spacing:3.491640px;}
.ws15_c00334{word-spacing:4.084560px;}
.ws30_c00334{word-spacing:4.216320px;}
.ws28_c00334{word-spacing:4.248000px;}
.ws2f_c00334{word-spacing:4.479840px;}
.ws1a_c00334{word-spacing:4.941000px;}
.ws2b_c00334{word-spacing:5.533920px;}
.ws31_c00334{word-spacing:6.258600px;}
.ws8_c00334{word-spacing:6.390360px;}
.ws24_c00334{word-spacing:6.719760px;}
.ws26_c00334{word-spacing:6.851520px;}
.ws25_c00334{word-spacing:6.983280px;}
.wsb_c00334{word-spacing:7.115040px;}
.ws35_c00334{word-spacing:7.488000px;}
.ws33_c00334{word-spacing:7.776000px;}
.ws32_c00334{word-spacing:7.848000px;}
.ws34_c00334{word-spacing:7.920000px;}
.ws22_c00334{word-spacing:8.169120px;}
.ws23_c00334{word-spacing:8.432640px;}
.ws3a_c00334{word-spacing:8.498520px;}
.ws11_c00334{word-spacing:8.568000px;}
.ws39_c00334{word-spacing:9.720000px;}
.ws38_c00334{word-spacing:10.008000px;}
.ws17_c00334{word-spacing:11.448000px;}
.ws36_c00334{word-spacing:12.528000px;}
.ws21_c00334{word-spacing:14.625360px;}
.ws19_c00334{word-spacing:14.888880px;}
.wsf_c00334{word-spacing:15.048000px;}
.ws10_c00334{word-spacing:15.408000px;}
.ws29_c00334{word-spacing:16.128000px;}
.ws1e_c00334{word-spacing:26.280000px;}
.ws2e_c00334{word-spacing:26.549640px;}
.ws20_c00334{word-spacing:26.568000px;}
.ws1f_c00334{word-spacing:26.640000px;}
.ws1c_c00334{word-spacing:28.368000px;}
.ws1d_c00334{word-spacing:28.440000px;}
._1_c00334{margin-left:-2.075220px;}
._0_c00334{margin-left:-1.054080px;}
._2_c00334{width:1.021140px;}
._3_c00334{width:18.736272px;}
.fc2_c00334{color:transparent;}
.fc1_c00334{color:rgb(0,0,0);}
.fc0_c00334{color:rgb(35,31,32);}
.fs1_c00334{font-size:65.880000px;}
.fs0_c00334{font-size:72.000000px;}
.y0_c00334{bottom:0.000000px;}
.y1_c00334{bottom:61.748550px;}
.y1d_c00334{bottom:111.460710px;}
.y1c_c00334{bottom:139.904400px;}
.y39_c00334{bottom:148.994400px;}
.y38_c00334{bottom:180.041610px;}
.y1b_c00334{bottom:200.834400px;}
.y37_c00334{bottom:209.737020px;}
.y1a_c00334{bottom:231.884400px;}
.y36_c00334{bottom:238.180710px;}
.y19_c00334{bottom:262.934400px;}
.y35_c00334{bottom:266.624400px;}
.y18_c00334{bottom:293.984400px;}
.y34_c00334{bottom:327.554400px;}
.y17_c00334{bottom:355.995120px;}
.y33_c00334{bottom:358.604400px;}
.y16_c00334{bottom:385.690530px;}
.y32_c00334{bottom:389.654400px;}
.y15_c00334{bottom:414.134220px;}
.y31_c00334{bottom:420.704400px;}
.y30_c00334{bottom:451.754400px;}
.y14_c00334{bottom:474.978990px;}
.y2f_c00334{bottom:482.804400px;}
.y13_c00334{bottom:504.674400px;}
.y2e_c00334{bottom:543.457290px;}
.y12_c00334{bottom:565.604250px;}
.y2d_c00334{bottom:571.983330px;}
.y11_c00334{bottom:596.654250px;}
.y2c_c00334{bottom:600.427020px;}
.y10_c00334{bottom:627.704250px;}
.y2b_c00334{bottom:628.870710px;}
.y2a_c00334{bottom:657.314400px;}
.yf_c00334{bottom:689.719110px;}
.y29_c00334{bottom:718.244400px;}
.ye_c00334{bottom:719.414520px;}
.yd_c00334{bottom:747.940560px;}
.y28_c00334{bottom:749.294400px;}
.yc_c00334{bottom:776.384250px;}
.y27_c00334{bottom:780.344400px;}
.yb_c00334{bottom:837.314400px;}
.y26_c00334{bottom:841.000980px;}
.ya_c00334{bottom:868.364400px;}
.y25_c00334{bottom:869.527020px;}
.y24_c00334{bottom:897.970710px;}
.y9_c00334{bottom:899.414400px;}
.y23_c00334{bottom:926.414400px;}
.y8_c00334{bottom:930.464400px;}
.y22_c00334{bottom:987.344400px;}
.y7_c00334{bottom:992.478810px;}
.y21_c00334{bottom:1018.394400px;}
.y6_c00334{bottom:1022.174220px;}
.y20_c00334{bottom:1049.444400px;}
.y5_c00334{bottom:1083.015150px;}
.y1f_c00334{bottom:1111.454250px;}
.y4_c00334{bottom:1112.710560px;}
.y3_c00334{bottom:1141.154250px;}
.y1e_c00334{bottom:1193.174400px;}
.y2_c00334{bottom:1193.174550px;}
.h2_c00334{height:50.400000px;}
.h4_c00334{height:71.413920px;}
.h3_c00334{height:76.824000px;}
.h8_c00334{height:78.029160px;}
.h9_c00334{height:78.029640px;}
.h6_c00334{height:78.029760px;}
.h5_c00334{height:78.045000px;}
.ha_c00334{height:78.045120px;}
.h7_c00334{height:78.048000px;}
.hb_c00334{height:78.059160px;}
.h0_c00334{height:1262.835000px;}
.h1_c00334{height:1263.000000px;}
.w2_c00334{width:0.000000px;}
.w3_c00334{width:0.066000px;}
.w0_c00334{width:892.914000px;}
.w1_c00334{width:893.250000px;}
.x1_c00334{left:-838.913400px;}
.x2_c00334{left:-765.293400px;}
.x3_c00334{left:-743.963400px;}
.x5_c00334{left:-739.832130px;}
.x4_c00334{left:-733.343400px;}
.x0_c00334{left:0.000000px;}
.xa_c00334{left:127.620000px;}
.x8_c00334{left:148.950000px;}
.x9_c00334{left:159.570000px;}
.x7_c00334{left:679.950000px;}
.x6_c00334{left:804.366150px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls12_c00334{letter-spacing:-0.256000pt;}
.ls13_c00334{letter-spacing:-0.192000pt;}
.ls11_c00334{letter-spacing:-0.058560pt;}
.ls10_c00334{letter-spacing:0.000000pt;}
.lsa_c00334{letter-spacing:0.058560pt;}
.ls5_c00334{letter-spacing:0.064000pt;}
.ls2_c00334{letter-spacing:0.128000pt;}
.ls0_c00334{letter-spacing:0.175680pt;}
.lsd_c00334{letter-spacing:0.468480pt;}
.ls4_c00334{letter-spacing:14.657600pt;}
.lsb_c00334{letter-spacing:14.686656pt;}
.ls7_c00334{letter-spacing:14.703371pt;}
.ls9_c00334{letter-spacing:14.785280pt;}
.ls1_c00334{letter-spacing:14.788160pt;}
.ls3_c00334{letter-spacing:14.874240pt;}
.lsf_c00334{letter-spacing:15.127776pt;}
.ls6_c00334{letter-spacing:18.329280pt;}
.lse_c00334{letter-spacing:18.914880pt;}
.lsc_c00334{letter-spacing:22.252800pt;}
.ls8_c00334{letter-spacing:26.240000pt;}
.ws2_c00334{word-spacing:-16.128000pt;}
.ws4_c00334{word-spacing:-16.064000pt;}
.ws0_c00334{word-spacing:-16.000000pt;}
.ws5_c00334{word-spacing:-14.640000pt;}
.ws3_c00334{word-spacing:-14.581440pt;}
.ws2a_c00334{word-spacing:-0.384000pt;}
.wsa_c00334{word-spacing:-0.320000pt;}
.ws27_c00334{word-spacing:-0.128000pt;}
.ws9_c00334{word-spacing:-0.117120pt;}
.ws12_c00334{word-spacing:-0.064000pt;}
.ws6_c00334{word-spacing:0.000000pt;}
.ws16_c00334{word-spacing:0.058560pt;}
.wsc_c00334{word-spacing:0.117120pt;}
.wsd_c00334{word-spacing:0.192000pt;}
.wse_c00334{word-spacing:0.256000pt;}
.ws1_c00334{word-spacing:0.286944pt;}
.ws3b_c00334{word-spacing:1.522560pt;}
.ws37_c00334{word-spacing:1.792000pt;}
.ws2c_c00334{word-spacing:1.856000pt;}
.ws7_c00334{word-spacing:2.166720pt;}
.ws2d_c00334{word-spacing:2.240000pt;}
.ws14_c00334{word-spacing:2.400960pt;}
.ws1b_c00334{word-spacing:2.459520pt;}
.ws18_c00334{word-spacing:2.560000pt;}
.ws13_c00334{word-spacing:3.103680pt;}
.ws15_c00334{word-spacing:3.630720pt;}
.ws30_c00334{word-spacing:3.747840pt;}
.ws28_c00334{word-spacing:3.776000pt;}
.ws2f_c00334{word-spacing:3.982080pt;}
.ws1a_c00334{word-spacing:4.392000pt;}
.ws2b_c00334{word-spacing:4.919040pt;}
.ws31_c00334{word-spacing:5.563200pt;}
.ws8_c00334{word-spacing:5.680320pt;}
.ws24_c00334{word-spacing:5.973120pt;}
.ws26_c00334{word-spacing:6.090240pt;}
.ws25_c00334{word-spacing:6.207360pt;}
.wsb_c00334{word-spacing:6.324480pt;}
.ws35_c00334{word-spacing:6.656000pt;}
.ws33_c00334{word-spacing:6.912000pt;}
.ws32_c00334{word-spacing:6.976000pt;}
.ws34_c00334{word-spacing:7.040000pt;}
.ws22_c00334{word-spacing:7.261440pt;}
.ws23_c00334{word-spacing:7.495680pt;}
.ws3a_c00334{word-spacing:7.554240pt;}
.ws11_c00334{word-spacing:7.616000pt;}
.ws39_c00334{word-spacing:8.640000pt;}
.ws38_c00334{word-spacing:8.896000pt;}
.ws17_c00334{word-spacing:10.176000pt;}
.ws36_c00334{word-spacing:11.136000pt;}
.ws21_c00334{word-spacing:13.000320pt;}
.ws19_c00334{word-spacing:13.234560pt;}
.wsf_c00334{word-spacing:13.376000pt;}
.ws10_c00334{word-spacing:13.696000pt;}
.ws29_c00334{word-spacing:14.336000pt;}
.ws1e_c00334{word-spacing:23.360000pt;}
.ws2e_c00334{word-spacing:23.599680pt;}
.ws20_c00334{word-spacing:23.616000pt;}
.ws1f_c00334{word-spacing:23.680000pt;}
.ws1c_c00334{word-spacing:25.216000pt;}
.ws1d_c00334{word-spacing:25.280000pt;}
._1_c00334{margin-left:-1.844640pt;}
._0_c00334{margin-left:-0.936960pt;}
._2_c00334{width:0.907680pt;}
._3_c00334{width:16.654464pt;}
.fs1_c00334{font-size:58.560000pt;}
.fs0_c00334{font-size:64.000000pt;}
.y0_c00334{bottom:0.000000pt;}
.y1_c00334{bottom:54.887600pt;}
.y1d_c00334{bottom:99.076187pt;}
.y1c_c00334{bottom:124.359467pt;}
.y39_c00334{bottom:132.439467pt;}
.y38_c00334{bottom:160.036987pt;}
.y1b_c00334{bottom:178.519467pt;}
.y37_c00334{bottom:186.432907pt;}
.y1a_c00334{bottom:206.119467pt;}
.y36_c00334{bottom:211.716187pt;}
.y19_c00334{bottom:233.719467pt;}
.y35_c00334{bottom:236.999467pt;}
.y18_c00334{bottom:261.319467pt;}
.y34_c00334{bottom:291.159467pt;}
.y17_c00334{bottom:316.440107pt;}
.y33_c00334{bottom:318.759467pt;}
.y16_c00334{bottom:342.836027pt;}
.y32_c00334{bottom:346.359467pt;}
.y15_c00334{bottom:368.119307pt;}
.y31_c00334{bottom:373.959467pt;}
.y30_c00334{bottom:401.559467pt;}
.y14_c00334{bottom:422.203547pt;}
.y2f_c00334{bottom:429.159467pt;}
.y13_c00334{bottom:448.599467pt;}
.y2e_c00334{bottom:483.073147pt;}
.y12_c00334{bottom:502.759333pt;}
.y2d_c00334{bottom:508.429627pt;}
.y11_c00334{bottom:530.359333pt;}
.y2c_c00334{bottom:533.712907pt;}
.y10_c00334{bottom:557.959333pt;}
.y2b_c00334{bottom:558.996187pt;}
.y2a_c00334{bottom:584.279467pt;}
.yf_c00334{bottom:613.083653pt;}
.y29_c00334{bottom:638.439467pt;}
.ye_c00334{bottom:639.479573pt;}
.yd_c00334{bottom:664.836053pt;}
.y28_c00334{bottom:666.039467pt;}
.yc_c00334{bottom:690.119333pt;}
.y27_c00334{bottom:693.639467pt;}
.yb_c00334{bottom:744.279467pt;}
.y26_c00334{bottom:747.556427pt;}
.ya_c00334{bottom:771.879467pt;}
.y25_c00334{bottom:772.912907pt;}
.y24_c00334{bottom:798.196187pt;}
.y9_c00334{bottom:799.479467pt;}
.y23_c00334{bottom:823.479467pt;}
.y8_c00334{bottom:827.079467pt;}
.y22_c00334{bottom:877.639467pt;}
.y7_c00334{bottom:882.203387pt;}
.y21_c00334{bottom:905.239467pt;}
.y6_c00334{bottom:908.599307pt;}
.y20_c00334{bottom:932.839467pt;}
.y5_c00334{bottom:962.680133pt;}
.y1f_c00334{bottom:987.959333pt;}
.y4_c00334{bottom:989.076053pt;}
.y3_c00334{bottom:1014.359333pt;}
.y1e_c00334{bottom:1060.599467pt;}
.y2_c00334{bottom:1060.599600pt;}
.h2_c00334{height:44.800000pt;}
.h4_c00334{height:63.479040pt;}
.h3_c00334{height:68.288000pt;}
.h8_c00334{height:69.359253pt;}
.h9_c00334{height:69.359680pt;}
.h6_c00334{height:69.359787pt;}
.h5_c00334{height:69.373333pt;}
.ha_c00334{height:69.373440pt;}
.h7_c00334{height:69.376000pt;}
.hb_c00334{height:69.385920pt;}
.h0_c00334{height:1122.520000pt;}
.h1_c00334{height:1122.666667pt;}
.w2_c00334{width:0.000000pt;}
.w3_c00334{width:0.058667pt;}
.w0_c00334{width:793.701333pt;}
.w1_c00334{width:794.000000pt;}
.x1_c00334{left:-745.700800pt;}
.x2_c00334{left:-680.260800pt;}
.x3_c00334{left:-661.300800pt;}
.x5_c00334{left:-657.628560pt;}
.x4_c00334{left:-651.860800pt;}
.x0_c00334{left:0.000000pt;}
.xa_c00334{left:113.440000pt;}
.x8_c00334{left:132.400000pt;}
.x9_c00334{left:141.840000pt;}
.x7_c00334{left:604.400000pt;}
.x6_c00334{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00335;src:url('chunks/assets/font_3fb4a89afed9d376c4327fed.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00335;src:url('chunks/assets/font_d71f831baa2a3b5a152220c2.woff2')format("woff");}.ff3_c00335{font-family:ff3_c00335;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00335;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff4_c00335{font-family:ff4_c00335;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.lsc_c00335{letter-spacing:-0.360000px;}
.lsf_c00335{letter-spacing:-0.288000px;}
.lsd_c00335{letter-spacing:-0.197640px;}
.lse_c00335{letter-spacing:-0.065880px;}
.lsb_c00335{letter-spacing:0.000000px;}
.ls8_c00335{letter-spacing:0.065880px;}
.ls0_c00335{letter-spacing:0.072000px;}
.ls1_c00335{letter-spacing:0.144000px;}
.ls3_c00335{letter-spacing:0.197640px;}
.ls6_c00335{letter-spacing:16.576992px;}
.ls4_c00335{letter-spacing:16.677000px;}
.ls7_c00335{letter-spacing:20.356920px;}
.ls9_c00335{letter-spacing:21.028320px;}
.ls2_c00335{letter-spacing:21.312000px;}
.lsa_c00335{letter-spacing:23.068800px;}
.ls5_c00335{letter-spacing:26.640000px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00335{word-spacing:-18.072000px;}
.ws0_c00335{word-spacing:-18.000000px;}
.ws10_c00335{word-spacing:-0.144000px;}
.wsd_c00335{word-spacing:-0.131760px;}
.wsa_c00335{word-spacing:-0.072000px;}
.ws5_c00335{word-spacing:0.000000px;}
.ws1d_c00335{word-spacing:0.131760px;}
.wsf_c00335{word-spacing:0.197640px;}
.ws19_c00335{word-spacing:0.592920px;}
.ws11_c00335{word-spacing:0.648000px;}
.ws18_c00335{word-spacing:0.720000px;}
.wsb_c00335{word-spacing:0.988200px;}
.ws17_c00335{word-spacing:1.317600px;}
.ws6_c00335{word-spacing:1.368000px;}
.ws4_c00335{word-spacing:1.515240px;}
.ws1c_c00335{word-spacing:1.581120px;}
.ws1e_c00335{word-spacing:2.042280px;}
.ws16_c00335{word-spacing:2.437560px;}
.ws15_c00335{word-spacing:2.808000px;}
.ws12_c00335{word-spacing:2.880000px;}
.ws2_c00335{word-spacing:2.887200px;}
.wse_c00335{word-spacing:3.162240px;}
.ws8_c00335{word-spacing:3.456000px;}
.ws1b_c00335{word-spacing:3.491640px;}
.ws7_c00335{word-spacing:3.528000px;}
.ws9_c00335{word-spacing:3.600000px;}
.ws1a_c00335{word-spacing:3.755160px;}
.ws20_c00335{word-spacing:3.821040px;}
.ws1_c00335{word-spacing:4.320000px;}
.ws1f_c00335{word-spacing:4.479840px;}
.ws24_c00335{word-spacing:4.968000px;}
.ws21_c00335{word-spacing:5.040000px;}
.ws25_c00335{word-spacing:5.328000px;}
.ws14_c00335{word-spacing:8.568000px;}
.ws13_c00335{word-spacing:8.640000px;}
.wsc_c00335{word-spacing:13.900680px;}
.ws22_c00335{word-spacing:22.248000px;}
.ws23_c00335{word-spacing:22.320000px;}
._0_c00335{margin-left:-1.310400px;}
._1_c00335{width:1.137600px;}
._3_c00335{width:14.918760px;}
._2_c00335{width:16.302240px;}
.fc1_c00335{color:rgb(0,0,0);}
.fc0_c00335{color:rgb(35,31,32);}
.fs1_c00335{font-size:65.880000px;}
.fs0_c00335{font-size:72.000000px;}
.y0_c00335{bottom:0.000000px;}
.y1_c00335{bottom:61.748550px;}
.y20_c00335{bottom:113.714400px;}
.y1f_c00335{bottom:144.764400px;}
.y1e_c00335{bottom:175.814400px;}
.y1d_c00335{bottom:237.824400px;}
.y1c_c00335{bottom:268.871880px;}
.y1b_c00335{bottom:298.567290px;}
.y1a_c00335{bottom:327.010980px;}
.y19_c00335{bottom:355.454670px;}
.y18_c00335{bottom:383.898360px;}
.y17_c00335{bottom:412.424400px;}
.y16_c00335{bottom:473.354250px;}
.y15_c00335{bottom:504.404250px;}
.y14_c00335{bottom:535.454250px;}
.y13_c00335{bottom:597.354510px;}
.y12_c00335{bottom:627.148740px;}
.y11_c00335{bottom:655.592430px;}
.y10_c00335{bottom:685.567830px;}
.yf_c00335{bottom:715.724250px;}
.ye_c00335{bottom:746.774250px;}
.yd_c00335{bottom:777.824250px;}
.yc_c00335{bottom:808.784250px;}
.yb_c00335{bottom:839.834250px;}
.ya_c00335{bottom:901.828950px;}
.y9_c00335{bottom:931.623180px;}
.y8_c00335{bottom:960.066870px;}
.y7_c00335{bottom:988.510560px;}
.y6_c00335{bottom:1016.954250px;}
.y5_c00335{bottom:1077.884400px;}
.y4_c00335{bottom:1108.934400px;}
.y3_c00335{bottom:1139.984400px;}
.y2_c00335{bottom:1193.174400px;}
.h2_c00335{height:50.400000px;}
.h6_c00335{height:54.331699px;}
.h4_c00335{height:71.413920px;}
.h3_c00335{height:76.824000px;}
.h9_c00335{height:78.048000px;}
.h8_c00335{height:78.058080px;}
.h5_c00335{height:78.109800px;}
.h7_c00335{height:78.126960px;}
.h0_c00335{height:1262.835000px;}
.h1_c00335{height:1263.000000px;}
.w0_c00335{width:892.914000px;}
.w1_c00335{width:893.250000px;}
.x0_c00335{left:0.000000px;}
.x1_c00335{left:54.000000px;}
.x2_c00335{left:127.620000px;}
.x4_c00335{left:148.950000px;}
.x3_c00335{left:159.570000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.lsc_c00335{letter-spacing:-0.320000pt;}
.lsf_c00335{letter-spacing:-0.256000pt;}
.lsd_c00335{letter-spacing:-0.175680pt;}
.lse_c00335{letter-spacing:-0.058560pt;}
.lsb_c00335{letter-spacing:0.000000pt;}
.ls8_c00335{letter-spacing:0.058560pt;}
.ls0_c00335{letter-spacing:0.064000pt;}
.ls1_c00335{letter-spacing:0.128000pt;}
.ls3_c00335{letter-spacing:0.175680pt;}
.ls6_c00335{letter-spacing:14.735104pt;}
.ls4_c00335{letter-spacing:14.824000pt;}
.ls7_c00335{letter-spacing:18.095040pt;}
.ls9_c00335{letter-spacing:18.691840pt;}
.ls2_c00335{letter-spacing:18.944000pt;}
.lsa_c00335{letter-spacing:20.505600pt;}
.ls5_c00335{letter-spacing:23.680000pt;}
.ws3_c00335{word-spacing:-16.064000pt;}
.ws0_c00335{word-spacing:-16.000000pt;}
.ws10_c00335{word-spacing:-0.128000pt;}
.wsd_c00335{word-spacing:-0.117120pt;}
.wsa_c00335{word-spacing:-0.064000pt;}
.ws5_c00335{word-spacing:0.000000pt;}
.ws1d_c00335{word-spacing:0.117120pt;}
.wsf_c00335{word-spacing:0.175680pt;}
.ws19_c00335{word-spacing:0.527040pt;}
.ws11_c00335{word-spacing:0.576000pt;}
.ws18_c00335{word-spacing:0.640000pt;}
.wsb_c00335{word-spacing:0.878400pt;}
.ws17_c00335{word-spacing:1.171200pt;}
.ws6_c00335{word-spacing:1.216000pt;}
.ws4_c00335{word-spacing:1.346880pt;}
.ws1c_c00335{word-spacing:1.405440pt;}
.ws1e_c00335{word-spacing:1.815360pt;}
.ws16_c00335{word-spacing:2.166720pt;}
.ws15_c00335{word-spacing:2.496000pt;}
.ws12_c00335{word-spacing:2.560000pt;}
.ws2_c00335{word-spacing:2.566400pt;}
.wse_c00335{word-spacing:2.810880pt;}
.ws8_c00335{word-spacing:3.072000pt;}
.ws1b_c00335{word-spacing:3.103680pt;}
.ws7_c00335{word-spacing:3.136000pt;}
.ws9_c00335{word-spacing:3.200000pt;}
.ws1a_c00335{word-spacing:3.337920pt;}
.ws20_c00335{word-spacing:3.396480pt;}
.ws1_c00335{word-spacing:3.840000pt;}
.ws1f_c00335{word-spacing:3.982080pt;}
.ws24_c00335{word-spacing:4.416000pt;}
.ws21_c00335{word-spacing:4.480000pt;}
.ws25_c00335{word-spacing:4.736000pt;}
.ws14_c00335{word-spacing:7.616000pt;}
.ws13_c00335{word-spacing:7.680000pt;}
.wsc_c00335{word-spacing:12.356160pt;}
.ws22_c00335{word-spacing:19.776000pt;}
.ws23_c00335{word-spacing:19.840000pt;}
._0_c00335{margin-left:-1.164800pt;}
._1_c00335{width:1.011200pt;}
._3_c00335{width:13.261120pt;}
._2_c00335{width:14.490880pt;}
.fs1_c00335{font-size:58.560000pt;}
.fs0_c00335{font-size:64.000000pt;}
.y0_c00335{bottom:0.000000pt;}
.y1_c00335{bottom:54.887600pt;}
.y20_c00335{bottom:101.079467pt;}
.y1f_c00335{bottom:128.679467pt;}
.y1e_c00335{bottom:156.279467pt;}
.y1d_c00335{bottom:211.399467pt;}
.y1c_c00335{bottom:238.997227pt;}
.y1b_c00335{bottom:265.393147pt;}
.y1a_c00335{bottom:290.676427pt;}
.y19_c00335{bottom:315.959707pt;}
.y18_c00335{bottom:341.242987pt;}
.y17_c00335{bottom:366.599467pt;}
.y16_c00335{bottom:420.759333pt;}
.y15_c00335{bottom:448.359333pt;}
.y14_c00335{bottom:475.959333pt;}
.y13_c00335{bottom:530.981787pt;}
.y12_c00335{bottom:557.465547pt;}
.y11_c00335{bottom:582.748827pt;}
.y10_c00335{bottom:609.393627pt;}
.yf_c00335{bottom:636.199333pt;}
.ye_c00335{bottom:663.799333pt;}
.yd_c00335{bottom:691.399333pt;}
.yc_c00335{bottom:718.919333pt;}
.yb_c00335{bottom:746.519333pt;}
.ya_c00335{bottom:801.625733pt;}
.y9_c00335{bottom:828.109493pt;}
.y8_c00335{bottom:853.392773pt;}
.y7_c00335{bottom:878.676053pt;}
.y6_c00335{bottom:903.959333pt;}
.y5_c00335{bottom:958.119467pt;}
.y4_c00335{bottom:985.719467pt;}
.y3_c00335{bottom:1013.319467pt;}
.y2_c00335{bottom:1060.599467pt;}
.h2_c00335{height:44.800000pt;}
.h6_c00335{height:48.294844pt;}
.h4_c00335{height:63.479040pt;}
.h3_c00335{height:68.288000pt;}
.h9_c00335{height:69.376000pt;}
.h8_c00335{height:69.384960pt;}
.h5_c00335{height:69.430933pt;}
.h7_c00335{height:69.446187pt;}
.h0_c00335{height:1122.520000pt;}
.h1_c00335{height:1122.666667pt;}
.w0_c00335{width:793.701333pt;}
.w1_c00335{width:794.000000pt;}
.x0_c00335{left:0.000000pt;}
.x1_c00335{left:48.000000pt;}
.x2_c00335{left:113.440000pt;}
.x4_c00335{left:132.400000pt;}
.x3_c00335{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00336;src:url('chunks/assets/font_f204f08f2c5a2a000ca03aee.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00336;src:url('chunks/assets/font_29828de101dcc859f6d85cc8.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00336;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff4_c00336{font-family:ff4_c00336;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00336;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00336{font-family:ff5_c00336;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00336;src:url('chunks/assets/font_b03ef2373290b0900950bffb.woff2')format("woff");}.ff6_c00336{font-family:ff6_c00336;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00336;src:url('chunks/assets/font_62a5b2c1d2a415ef1ba5df3d.woff2')format("woff");}.ff7_c00336{font-family:ff7_c00336;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00336;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff8_c00336{font-family:ff8_c00336;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00336{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.lsf_c00336{letter-spacing:-0.360000px;}
.ls12_c00336{letter-spacing:-0.288000px;}
.ls10_c00336{letter-spacing:-0.197640px;}
.ls11_c00336{letter-spacing:-0.065880px;}
.lse_c00336{letter-spacing:0.000000px;}
.ls8_c00336{letter-spacing:0.065880px;}
.ls0_c00336{letter-spacing:0.072000px;}
.ls1_c00336{letter-spacing:0.144000px;}
.ls3_c00336{letter-spacing:0.197640px;}
.ls6_c00336{letter-spacing:16.583580px;}
.ls4_c00336{letter-spacing:16.677000px;}
.lsd_c00336{letter-spacing:20.225160px;}
.ls7_c00336{letter-spacing:20.356920px;}
.ls9_c00336{letter-spacing:21.028320px;}
.ls2_c00336{letter-spacing:21.312000px;}
.lsa_c00336{letter-spacing:23.068800px;}
.ls5_c00336{letter-spacing:26.640000px;}
.lsb_c00336{letter-spacing:27.000000px;}
.lsc_c00336{letter-spacing:38.605680px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00336{word-spacing:-18.072000px;}
.ws0_c00336{word-spacing:-18.000000px;}
.ws5_c00336{word-spacing:-16.470000px;}
.ws2d_c00336{word-spacing:-0.360000px;}
.ws11_c00336{word-spacing:-0.144000px;}
.wse_c00336{word-spacing:-0.131760px;}
.wsb_c00336{word-spacing:-0.072000px;}
.ws3b_c00336{word-spacing:-0.065880px;}
.ws6_c00336{word-spacing:0.000000px;}
.ws1e_c00336{word-spacing:0.131760px;}
.ws10_c00336{word-spacing:0.197640px;}
.ws3f_c00336{word-spacing:0.288000px;}
.ws1a_c00336{word-spacing:0.592920px;}
.ws12_c00336{word-spacing:0.648000px;}
.ws19_c00336{word-spacing:0.720000px;}
.wsc_c00336{word-spacing:0.988200px;}
.ws2a_c00336{word-spacing:1.251720px;}
.ws18_c00336{word-spacing:1.317600px;}
.ws7_c00336{word-spacing:1.368000px;}
.ws30_c00336{word-spacing:1.440000px;}
.ws4_c00336{word-spacing:1.515240px;}
.ws1d_c00336{word-spacing:1.581120px;}
.ws37_c00336{word-spacing:1.712880px;}
.ws36_c00336{word-spacing:1.844640px;}
.ws35_c00336{word-spacing:1.976400px;}
.ws1f_c00336{word-spacing:2.042280px;}
.ws17_c00336{word-spacing:2.437560px;}
.ws16_c00336{word-spacing:2.808000px;}
.ws13_c00336{word-spacing:2.880000px;}
.ws3_c00336{word-spacing:2.887200px;}
.wsf_c00336{word-spacing:3.162240px;}
.ws43_c00336{word-spacing:3.168000px;}
.ws9_c00336{word-spacing:3.456000px;}
.ws1c_c00336{word-spacing:3.491640px;}
.ws8_c00336{word-spacing:3.528000px;}
.wsa_c00336{word-spacing:3.600000px;}
.ws1b_c00336{word-spacing:3.755160px;}
.ws21_c00336{word-spacing:3.821040px;}
.ws38_c00336{word-spacing:4.084560px;}
.ws2e_c00336{word-spacing:4.248000px;}
.ws2_c00336{word-spacing:4.320000px;}
.ws20_c00336{word-spacing:4.479840px;}
.ws25_c00336{word-spacing:4.968000px;}
.ws22_c00336{word-spacing:5.040000px;}
.ws26_c00336{word-spacing:5.328000px;}
.ws3a_c00336{word-spacing:5.995080px;}
.ws34_c00336{word-spacing:6.258600px;}
.ws15_c00336{word-spacing:8.568000px;}
.ws14_c00336{word-spacing:8.640000px;}
.ws31_c00336{word-spacing:9.000000px;}
.ws28_c00336{word-spacing:9.947880px;}
.ws27_c00336{word-spacing:10.211400px;}
.ws3c_c00336{word-spacing:10.672560px;}
.ws2c_c00336{word-spacing:11.397240px;}
.ws42_c00336{word-spacing:11.448000px;}
.ws2b_c00336{word-spacing:11.660760px;}
.ws3e_c00336{word-spacing:12.816000px;}
.ws40_c00336{word-spacing:12.960000px;}
.wsd_c00336{word-spacing:13.900680px;}
.ws29_c00336{word-spacing:16.338240px;}
.ws41_c00336{word-spacing:18.648000px;}
.ws33_c00336{word-spacing:18.973440px;}
.ws32_c00336{word-spacing:19.236960px;}
.ws39_c00336{word-spacing:22.135680px;}
.ws23_c00336{word-spacing:22.248000px;}
.ws24_c00336{word-spacing:22.320000px;}
.ws3d_c00336{word-spacing:23.980320px;}
.ws2f_c00336{word-spacing:24.480000px;}
.ws44_c00336{word-spacing:29.448000px;}
._0_c00336{margin-left:-1.310400px;}
._1_c00336{width:1.137600px;}
._4_c00336{width:3.689280px;}
._5_c00336{width:12.830400px;}
._3_c00336{width:14.918760px;}
._2_c00336{width:16.302240px;}
.fc2_c00336{color:transparent;}
.fc1_c00336{color:rgb(0,0,0);}
.fc0_c00336{color:rgb(35,31,32);}
.fs1_c00336{font-size:65.880000px;}
.fs0_c00336{font-size:72.000000px;}
.y0_c00336{bottom:0.000000px;}
.y1_c00336{bottom:61.748550px;}
.y20_c00336{bottom:113.714400px;}
.y1f_c00336{bottom:144.764400px;}
.y1e_c00336{bottom:175.814400px;}
.y3f_c00336{bottom:183.554400px;}
.y3e_c00336{bottom:214.604400px;}
.y1d_c00336{bottom:237.824400px;}
.y3d_c00336{bottom:245.654400px;}
.y1c_c00336{bottom:268.871880px;}
.y3c_c00336{bottom:276.704400px;}
.y1b_c00336{bottom:298.567290px;}
.y3b_c00336{bottom:307.754400px;}
.y1a_c00336{bottom:327.010980px;}
.y3a_c00336{bottom:338.804400px;}
.y19_c00336{bottom:355.454670px;}
.y18_c00336{bottom:383.898360px;}
.y39_c00336{bottom:400.814400px;}
.y17_c00336{bottom:412.424400px;}
.y38_c00336{bottom:430.503870px;}
.y37_c00336{bottom:458.947560px;}
.y16_c00336{bottom:473.354250px;}
.y36_c00336{bottom:487.391250px;}
.y15_c00336{bottom:504.404250px;}
.y35_c00336{bottom:517.366650px;}
.y14_c00336{bottom:535.454250px;}
.y34_c00336{bottom:547.424400px;}
.y33_c00336{bottom:577.113600px;}
.y13_c00336{bottom:597.354510px;}
.y32_c00336{bottom:605.557290px;}
.y12_c00336{bottom:627.148740px;}
.y31_c00336{bottom:634.083330px;}
.y11_c00336{bottom:655.592430px;}
.y30_c00336{bottom:662.527020px;}
.y10_c00336{bottom:685.567830px;}
.y2f_c00336{bottom:690.970710px;}
.yf_c00336{bottom:715.724250px;}
.y2e_c00336{bottom:719.414400px;}
.ye_c00336{bottom:746.774250px;}
.yd_c00336{bottom:777.824250px;}
.y2d_c00336{bottom:780.344250px;}
.yc_c00336{bottom:808.784250px;}
.y2c_c00336{bottom:811.394250px;}
.yb_c00336{bottom:839.834250px;}
.y2b_c00336{bottom:842.444250px;}
.y2a_c00336{bottom:873.494250px;}
.ya_c00336{bottom:901.828950px;}
.y29_c00336{bottom:904.544250px;}
.y9_c00336{bottom:931.623180px;}
.y8_c00336{bottom:960.066870px;}
.y28_c00336{bottom:966.554400px;}
.y7_c00336{bottom:988.510560px;}
.y27_c00336{bottom:996.247290px;}
.y6_c00336{bottom:1016.954250px;}
.y26_c00336{bottom:1024.773330px;}
.y25_c00336{bottom:1053.217020px;}
.y5_c00336{bottom:1077.884400px;}
.y24_c00336{bottom:1081.660710px;}
.y4_c00336{bottom:1108.934400px;}
.y23_c00336{bottom:1110.104400px;}
.y22_c00336{bottom:1139.984400px;}
.y3_c00336{bottom:1139.984550px;}
.y21_c00336{bottom:1193.174400px;}
.y2_c00336{bottom:1193.174550px;}
.h2_c00336{height:50.400000px;}
.h6_c00336{height:54.331699px;}
.h4_c00336{height:71.413920px;}
.h3_c00336{height:76.824000px;}
.h9_c00336{height:78.048000px;}
.h8_c00336{height:78.058080px;}
.h5_c00336{height:78.109800px;}
.h7_c00336{height:78.126960px;}
.h0_c00336{height:1262.835000px;}
.h1_c00336{height:1263.000000px;}
.w2_c00336{width:0.000000px;}
.w3_c00336{width:0.066000px;}
.w0_c00336{width:892.914000px;}
.w1_c00336{width:893.250000px;}
.x1_c00336{left:-838.913400px;}
.x2_c00336{left:-765.293400px;}
.x4_c00336{left:-743.963400px;}
.x3_c00336{left:-733.343400px;}
.x0_c00336{left:0.000000px;}
.x9_c00336{left:127.620000px;}
.x7_c00336{left:148.950000px;}
.x8_c00336{left:159.570000px;}
.x6_c00336{left:679.950000px;}
.x5_c00336{left:804.366150px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.lsf_c00336{letter-spacing:-0.320000pt;}
.ls12_c00336{letter-spacing:-0.256000pt;}
.ls10_c00336{letter-spacing:-0.175680pt;}
.ls11_c00336{letter-spacing:-0.058560pt;}
.lse_c00336{letter-spacing:0.000000pt;}
.ls8_c00336{letter-spacing:0.058560pt;}
.ls0_c00336{letter-spacing:0.064000pt;}
.ls1_c00336{letter-spacing:0.128000pt;}
.ls3_c00336{letter-spacing:0.175680pt;}
.ls6_c00336{letter-spacing:14.740960pt;}
.ls4_c00336{letter-spacing:14.824000pt;}
.lsd_c00336{letter-spacing:17.977920pt;}
.ls7_c00336{letter-spacing:18.095040pt;}
.ls9_c00336{letter-spacing:18.691840pt;}
.ls2_c00336{letter-spacing:18.944000pt;}
.lsa_c00336{letter-spacing:20.505600pt;}
.ls5_c00336{letter-spacing:23.680000pt;}
.lsb_c00336{letter-spacing:24.000000pt;}
.lsc_c00336{letter-spacing:34.316160pt;}
.ws1_c00336{word-spacing:-16.064000pt;}
.ws0_c00336{word-spacing:-16.000000pt;}
.ws5_c00336{word-spacing:-14.640000pt;}
.ws2d_c00336{word-spacing:-0.320000pt;}
.ws11_c00336{word-spacing:-0.128000pt;}
.wse_c00336{word-spacing:-0.117120pt;}
.wsb_c00336{word-spacing:-0.064000pt;}
.ws3b_c00336{word-spacing:-0.058560pt;}
.ws6_c00336{word-spacing:0.000000pt;}
.ws1e_c00336{word-spacing:0.117120pt;}
.ws10_c00336{word-spacing:0.175680pt;}
.ws3f_c00336{word-spacing:0.256000pt;}
.ws1a_c00336{word-spacing:0.527040pt;}
.ws12_c00336{word-spacing:0.576000pt;}
.ws19_c00336{word-spacing:0.640000pt;}
.wsc_c00336{word-spacing:0.878400pt;}
.ws2a_c00336{word-spacing:1.112640pt;}
.ws18_c00336{word-spacing:1.171200pt;}
.ws7_c00336{word-spacing:1.216000pt;}
.ws30_c00336{word-spacing:1.280000pt;}
.ws4_c00336{word-spacing:1.346880pt;}
.ws1d_c00336{word-spacing:1.405440pt;}
.ws37_c00336{word-spacing:1.522560pt;}
.ws36_c00336{word-spacing:1.639680pt;}
.ws35_c00336{word-spacing:1.756800pt;}
.ws1f_c00336{word-spacing:1.815360pt;}
.ws17_c00336{word-spacing:2.166720pt;}
.ws16_c00336{word-spacing:2.496000pt;}
.ws13_c00336{word-spacing:2.560000pt;}
.ws3_c00336{word-spacing:2.566400pt;}
.wsf_c00336{word-spacing:2.810880pt;}
.ws43_c00336{word-spacing:2.816000pt;}
.ws9_c00336{word-spacing:3.072000pt;}
.ws1c_c00336{word-spacing:3.103680pt;}
.ws8_c00336{word-spacing:3.136000pt;}
.wsa_c00336{word-spacing:3.200000pt;}
.ws1b_c00336{word-spacing:3.337920pt;}
.ws21_c00336{word-spacing:3.396480pt;}
.ws38_c00336{word-spacing:3.630720pt;}
.ws2e_c00336{word-spacing:3.776000pt;}
.ws2_c00336{word-spacing:3.840000pt;}
.ws20_c00336{word-spacing:3.982080pt;}
.ws25_c00336{word-spacing:4.416000pt;}
.ws22_c00336{word-spacing:4.480000pt;}
.ws26_c00336{word-spacing:4.736000pt;}
.ws3a_c00336{word-spacing:5.328960pt;}
.ws34_c00336{word-spacing:5.563200pt;}
.ws15_c00336{word-spacing:7.616000pt;}
.ws14_c00336{word-spacing:7.680000pt;}
.ws31_c00336{word-spacing:8.000000pt;}
.ws28_c00336{word-spacing:8.842560pt;}
.ws27_c00336{word-spacing:9.076800pt;}
.ws3c_c00336{word-spacing:9.486720pt;}
.ws2c_c00336{word-spacing:10.130880pt;}
.ws42_c00336{word-spacing:10.176000pt;}
.ws2b_c00336{word-spacing:10.365120pt;}
.ws3e_c00336{word-spacing:11.392000pt;}
.ws40_c00336{word-spacing:11.520000pt;}
.wsd_c00336{word-spacing:12.356160pt;}
.ws29_c00336{word-spacing:14.522880pt;}
.ws41_c00336{word-spacing:16.576000pt;}
.ws33_c00336{word-spacing:16.865280pt;}
.ws32_c00336{word-spacing:17.099520pt;}
.ws39_c00336{word-spacing:19.676160pt;}
.ws23_c00336{word-spacing:19.776000pt;}
.ws24_c00336{word-spacing:19.840000pt;}
.ws3d_c00336{word-spacing:21.315840pt;}
.ws2f_c00336{word-spacing:21.760000pt;}
.ws44_c00336{word-spacing:26.176000pt;}
._0_c00336{margin-left:-1.164800pt;}
._1_c00336{width:1.011200pt;}
._4_c00336{width:3.279360pt;}
._5_c00336{width:11.404800pt;}
._3_c00336{width:13.261120pt;}
._2_c00336{width:14.490880pt;}
.fs1_c00336{font-size:58.560000pt;}
.fs0_c00336{font-size:64.000000pt;}
.y0_c00336{bottom:0.000000pt;}
.y1_c00336{bottom:54.887600pt;}
.y20_c00336{bottom:101.079467pt;}
.y1f_c00336{bottom:128.679467pt;}
.y1e_c00336{bottom:156.279467pt;}
.y3f_c00336{bottom:163.159467pt;}
.y3e_c00336{bottom:190.759467pt;}
.y1d_c00336{bottom:211.399467pt;}
.y3d_c00336{bottom:218.359467pt;}
.y1c_c00336{bottom:238.997227pt;}
.y3c_c00336{bottom:245.959467pt;}
.y1b_c00336{bottom:265.393147pt;}
.y3b_c00336{bottom:273.559467pt;}
.y1a_c00336{bottom:290.676427pt;}
.y3a_c00336{bottom:301.159467pt;}
.y19_c00336{bottom:315.959707pt;}
.y18_c00336{bottom:341.242987pt;}
.y39_c00336{bottom:356.279467pt;}
.y17_c00336{bottom:366.599467pt;}
.y38_c00336{bottom:382.670107pt;}
.y37_c00336{bottom:407.953387pt;}
.y16_c00336{bottom:420.759333pt;}
.y36_c00336{bottom:433.236667pt;}
.y15_c00336{bottom:448.359333pt;}
.y35_c00336{bottom:459.881467pt;}
.y14_c00336{bottom:475.959333pt;}
.y34_c00336{bottom:486.599467pt;}
.y33_c00336{bottom:512.989867pt;}
.y13_c00336{bottom:530.981787pt;}
.y32_c00336{bottom:538.273147pt;}
.y12_c00336{bottom:557.465547pt;}
.y31_c00336{bottom:563.629627pt;}
.y11_c00336{bottom:582.748827pt;}
.y30_c00336{bottom:588.912907pt;}
.y10_c00336{bottom:609.393627pt;}
.y2f_c00336{bottom:614.196187pt;}
.yf_c00336{bottom:636.199333pt;}
.y2e_c00336{bottom:639.479467pt;}
.ye_c00336{bottom:663.799333pt;}
.yd_c00336{bottom:691.399333pt;}
.y2d_c00336{bottom:693.639333pt;}
.yc_c00336{bottom:718.919333pt;}
.y2c_c00336{bottom:721.239333pt;}
.yb_c00336{bottom:746.519333pt;}
.y2b_c00336{bottom:748.839333pt;}
.y2a_c00336{bottom:776.439333pt;}
.ya_c00336{bottom:801.625733pt;}
.y29_c00336{bottom:804.039333pt;}
.y9_c00336{bottom:828.109493pt;}
.y8_c00336{bottom:853.392773pt;}
.y28_c00336{bottom:859.159467pt;}
.y7_c00336{bottom:878.676053pt;}
.y27_c00336{bottom:885.553147pt;}
.y6_c00336{bottom:903.959333pt;}
.y26_c00336{bottom:910.909627pt;}
.y25_c00336{bottom:936.192907pt;}
.y5_c00336{bottom:958.119467pt;}
.y24_c00336{bottom:961.476187pt;}
.y4_c00336{bottom:985.719467pt;}
.y23_c00336{bottom:986.759467pt;}
.y22_c00336{bottom:1013.319467pt;}
.y3_c00336{bottom:1013.319600pt;}
.y21_c00336{bottom:1060.599467pt;}
.y2_c00336{bottom:1060.599600pt;}
.h2_c00336{height:44.800000pt;}
.h6_c00336{height:48.294844pt;}
.h4_c00336{height:63.479040pt;}
.h3_c00336{height:68.288000pt;}
.h9_c00336{height:69.376000pt;}
.h8_c00336{height:69.384960pt;}
.h5_c00336{height:69.430933pt;}
.h7_c00336{height:69.446187pt;}
.h0_c00336{height:1122.520000pt;}
.h1_c00336{height:1122.666667pt;}
.w2_c00336{width:0.000000pt;}
.w3_c00336{width:0.058667pt;}
.w0_c00336{width:793.701333pt;}
.w1_c00336{width:794.000000pt;}
.x1_c00336{left:-745.700800pt;}
.x2_c00336{left:-680.260800pt;}
.x4_c00336{left:-661.300800pt;}
.x3_c00336{left:-651.860800pt;}
.x0_c00336{left:0.000000pt;}
.x9_c00336{left:113.440000pt;}
.x7_c00336{left:132.400000pt;}
.x8_c00336{left:141.840000pt;}
.x6_c00336{left:604.400000pt;}
.x5_c00336{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00337;src:url('chunks/assets/font_8d390e07f364637cc6dcc0b0.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00337;src:url('chunks/assets/font_8f17304e1415e29e5874f736.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00337;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff4_c00337{font-family:ff4_c00337;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls7_c00337{letter-spacing:-0.065880px;}
.ls6_c00337{letter-spacing:0.000000px;}
.ls8_c00337{letter-spacing:0.065880px;}
.ls3_c00337{letter-spacing:0.072000px;}
.ls2_c00337{letter-spacing:0.144000px;}
.ls0_c00337{letter-spacing:0.197640px;}
.ls1_c00337{letter-spacing:16.308540px;}
.ls5_c00337{letter-spacing:16.311888px;}
.ls4_c00337{letter-spacing:24.309720px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00337{word-spacing:-18.072000px;}
.ws0_c00337{word-spacing:-18.000000px;}
.ws1_c00337{word-spacing:-0.461160px;}
.wsf_c00337{word-spacing:-0.360000px;}
.ws1e_c00337{word-spacing:-0.197640px;}
.wsa_c00337{word-spacing:-0.144000px;}
.ws9_c00337{word-spacing:-0.131760px;}
.ws14_c00337{word-spacing:-0.072000px;}
.ws4_c00337{word-spacing:0.000000px;}
.wsd_c00337{word-spacing:0.131760px;}
.wsc_c00337{word-spacing:0.263520px;}
.ws16_c00337{word-spacing:0.527040px;}
.ws1d_c00337{word-spacing:0.592920px;}
.ws7_c00337{word-spacing:1.317600px;}
.ws5_c00337{word-spacing:1.712880px;}
.ws6_c00337{word-spacing:1.976400px;}
.ws13_c00337{word-spacing:3.168000px;}
.ws1c_c00337{word-spacing:4.176000px;}
.ws8_c00337{word-spacing:5.929200px;}
.ws12_c00337{word-spacing:6.048000px;}
.wsb_c00337{word-spacing:7.444440px;}
.ws15_c00337{word-spacing:7.576200px;}
.ws19_c00337{word-spacing:7.707960px;}
.ws3_c00337{word-spacing:7.905600px;}
.ws17_c00337{word-spacing:8.893800px;}
.ws18_c00337{word-spacing:9.223200px;}
.ws1f_c00337{word-spacing:10.672560px;}
.ws20_c00337{word-spacing:11.067840px;}
.ws1a_c00337{word-spacing:13.248000px;}
.ws1b_c00337{word-spacing:13.320000px;}
.wse_c00337{word-spacing:18.578160px;}
.ws11_c00337{word-spacing:19.080000px;}
.ws10_c00337{word-spacing:37.728000px;}
._0_c00337{margin-left:-1.067256px;}
._2_c00337{width:1.199016px;}
._3_c00337{width:15.112872px;}
._1_c00337{width:17.076096px;}
.fc1_c00337{color:rgb(0,0,0);}
.fc0_c00337{color:rgb(35,31,32);}
.fs1_c00337{font-size:65.880000px;}
.fs0_c00337{font-size:72.000000px;}
.y0_c00337{bottom:0.000000px;}
.y1_c00337{bottom:61.748550px;}
.y20_c00337{bottom:134.397300px;}
.y1f_c00337{bottom:163.203330px;}
.y1e_c00337{bottom:191.647020px;}
.y1d_c00337{bottom:220.090710px;}
.y1c_c00337{bottom:248.534400px;}
.y1b_c00337{bottom:309.464250px;}
.y1a_c00337{bottom:340.514250px;}
.y19_c00337{bottom:371.564250px;}
.y18_c00337{bottom:432.213600px;}
.y17_c00337{bottom:460.739640px;}
.y16_c00337{bottom:489.183330px;}
.y15_c00337{bottom:517.627020px;}
.y14_c00337{bottom:546.070710px;}
.y13_c00337{bottom:574.514400px;}
.y12_c00337{bottom:635.444100px;}
.y11_c00337{bottom:666.494100px;}
.y10_c00337{bottom:697.544100px;}
.yf_c00337{bottom:728.594100px;}
.ye_c00337{bottom:759.644100px;}
.yd_c00337{bottom:821.654250px;}
.yc_c00337{bottom:851.346960px;}
.yb_c00337{bottom:879.873000px;}
.ya_c00337{bottom:908.316690px;}
.y9_c00337{bottom:936.760380px;}
.y8_c00337{bottom:965.204070px;}
.y7_c00337{bottom:1026.045420px;}
.y6_c00337{bottom:1055.740830px;}
.y5_c00337{bottom:1084.266870px;}
.y4_c00337{bottom:1112.710560px;}
.y3_c00337{bottom:1141.154250px;}
.y2_c00337{bottom:1193.174400px;}
.h2_c00337{height:50.400000px;}
.h7_c00337{height:54.331699px;}
.h4_c00337{height:71.413920px;}
.h3_c00337{height:76.824000px;}
.h5_c00337{height:78.043320px;}
.h6_c00337{height:78.048000px;}
.h0_c00337{height:1262.835000px;}
.h1_c00337{height:1263.000000px;}
.w0_c00337{width:892.914000px;}
.w1_c00337{width:893.250000px;}
.x0_c00337{left:0.000000px;}
.x1_c00337{left:54.000000px;}
.x2_c00337{left:127.620000px;}
.x3_c00337{left:148.950000px;}
.x4_c00337{left:159.570000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls7_c00337{letter-spacing:-0.058560pt;}
.ls6_c00337{letter-spacing:0.000000pt;}
.ls8_c00337{letter-spacing:0.058560pt;}
.ls3_c00337{letter-spacing:0.064000pt;}
.ls2_c00337{letter-spacing:0.128000pt;}
.ls0_c00337{letter-spacing:0.175680pt;}
.ls1_c00337{letter-spacing:14.496480pt;}
.ls5_c00337{letter-spacing:14.499456pt;}
.ls4_c00337{letter-spacing:21.608640pt;}
.ws2_c00337{word-spacing:-16.064000pt;}
.ws0_c00337{word-spacing:-16.000000pt;}
.ws1_c00337{word-spacing:-0.409920pt;}
.wsf_c00337{word-spacing:-0.320000pt;}
.ws1e_c00337{word-spacing:-0.175680pt;}
.wsa_c00337{word-spacing:-0.128000pt;}
.ws9_c00337{word-spacing:-0.117120pt;}
.ws14_c00337{word-spacing:-0.064000pt;}
.ws4_c00337{word-spacing:0.000000pt;}
.wsd_c00337{word-spacing:0.117120pt;}
.wsc_c00337{word-spacing:0.234240pt;}
.ws16_c00337{word-spacing:0.468480pt;}
.ws1d_c00337{word-spacing:0.527040pt;}
.ws7_c00337{word-spacing:1.171200pt;}
.ws5_c00337{word-spacing:1.522560pt;}
.ws6_c00337{word-spacing:1.756800pt;}
.ws13_c00337{word-spacing:2.816000pt;}
.ws1c_c00337{word-spacing:3.712000pt;}
.ws8_c00337{word-spacing:5.270400pt;}
.ws12_c00337{word-spacing:5.376000pt;}
.wsb_c00337{word-spacing:6.617280pt;}
.ws15_c00337{word-spacing:6.734400pt;}
.ws19_c00337{word-spacing:6.851520pt;}
.ws3_c00337{word-spacing:7.027200pt;}
.ws17_c00337{word-spacing:7.905600pt;}
.ws18_c00337{word-spacing:8.198400pt;}
.ws1f_c00337{word-spacing:9.486720pt;}
.ws20_c00337{word-spacing:9.838080pt;}
.ws1a_c00337{word-spacing:11.776000pt;}
.ws1b_c00337{word-spacing:11.840000pt;}
.wse_c00337{word-spacing:16.513920pt;}
.ws11_c00337{word-spacing:16.960000pt;}
.ws10_c00337{word-spacing:33.536000pt;}
._0_c00337{margin-left:-0.948672pt;}
._2_c00337{width:1.065792pt;}
._3_c00337{width:13.433664pt;}
._1_c00337{width:15.178752pt;}
.fs1_c00337{font-size:58.560000pt;}
.fs0_c00337{font-size:64.000000pt;}
.y0_c00337{bottom:0.000000pt;}
.y1_c00337{bottom:54.887600pt;}
.y20_c00337{bottom:119.464267pt;}
.y1f_c00337{bottom:145.069627pt;}
.y1e_c00337{bottom:170.352907pt;}
.y1d_c00337{bottom:195.636187pt;}
.y1c_c00337{bottom:220.919467pt;}
.y1b_c00337{bottom:275.079333pt;}
.y1a_c00337{bottom:302.679333pt;}
.y19_c00337{bottom:330.279333pt;}
.y18_c00337{bottom:384.189867pt;}
.y17_c00337{bottom:409.546347pt;}
.y16_c00337{bottom:434.829627pt;}
.y15_c00337{bottom:460.112907pt;}
.y14_c00337{bottom:485.396187pt;}
.y13_c00337{bottom:510.679467pt;}
.y12_c00337{bottom:564.839200pt;}
.y11_c00337{bottom:592.439200pt;}
.y10_c00337{bottom:620.039200pt;}
.yf_c00337{bottom:647.639200pt;}
.ye_c00337{bottom:675.239200pt;}
.yd_c00337{bottom:730.359333pt;}
.yc_c00337{bottom:756.752853pt;}
.yb_c00337{bottom:782.109333pt;}
.ya_c00337{bottom:807.392613pt;}
.y9_c00337{bottom:832.675893pt;}
.y8_c00337{bottom:857.959173pt;}
.y7_c00337{bottom:912.040373pt;}
.y6_c00337{bottom:938.436293pt;}
.y5_c00337{bottom:963.792773pt;}
.y4_c00337{bottom:989.076053pt;}
.y3_c00337{bottom:1014.359333pt;}
.y2_c00337{bottom:1060.599467pt;}
.h2_c00337{height:44.800000pt;}
.h7_c00337{height:48.294844pt;}
.h4_c00337{height:63.479040pt;}
.h3_c00337{height:68.288000pt;}
.h5_c00337{height:69.371840pt;}
.h6_c00337{height:69.376000pt;}
.h0_c00337{height:1122.520000pt;}
.h1_c00337{height:1122.666667pt;}
.w0_c00337{width:793.701333pt;}
.w1_c00337{width:794.000000pt;}
.x0_c00337{left:0.000000pt;}
.x1_c00337{left:48.000000pt;}
.x2_c00337{left:113.440000pt;}
.x3_c00337{left:132.400000pt;}
.x4_c00337{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00338;src:url('chunks/assets/font_3ccf0d7d669085d9a078c459.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.575000;font-style:normal;font-weight:normal;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_580d32e51675ff9821f65919.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.592000;font-style:normal;font-weight:normal;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_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff4_c00338{font-family:ff4_c00338;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00338;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00338{font-family:ff5_c00338;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00338;src:url('chunks/assets/font_6eb16ecd948ac2ad7a23a636.woff2')format("woff");}.ff6_c00338{font-family:ff6_c00338;line-height:1.575000;font-style:normal;font-weight:normal;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_d60cfd64277e384dd7a231ff.woff2')format("woff");}.ff7_c00338{font-family:ff7_c00338;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00338;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff8_c00338{font-family:ff8_c00338;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00338;src:url('chunks/assets/font_59318211930e44f9eaff8a9f.woff2')format("woff");}.ff9_c00338{font-family:ff9_c00338;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls9_c00338{letter-spacing:-0.065880px;}
.ls8_c00338{letter-spacing:0.000000px;}
.lsa_c00338{letter-spacing:0.065880px;}
.ls3_c00338{letter-spacing:0.072000px;}
.ls2_c00338{letter-spacing:0.144000px;}
.ls0_c00338{letter-spacing:0.197640px;}
.ls7_c00338{letter-spacing:16.305300px;}
.ls6_c00338{letter-spacing:16.308540px;}
.ls5_c00338{letter-spacing:16.311888px;}
.ls1_c00338{letter-spacing:16.315128px;}
.ls4_c00338{letter-spacing:24.309720px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00338{word-spacing:-18.072000px;}
.ws0_c00338{word-spacing:-18.000000px;}
.ws5_c00338{word-spacing:-16.535880px;}
.ws1_c00338{word-spacing:-0.461160px;}
.ws11_c00338{word-spacing:-0.360000px;}
.ws20_c00338{word-spacing:-0.197640px;}
.wsc_c00338{word-spacing:-0.144000px;}
.wsb_c00338{word-spacing:-0.131760px;}
.ws16_c00338{word-spacing:-0.072000px;}
.ws6_c00338{word-spacing:0.000000px;}
.wsf_c00338{word-spacing:0.131760px;}
.wse_c00338{word-spacing:0.263520px;}
.ws18_c00338{word-spacing:0.527040px;}
.ws1f_c00338{word-spacing:0.592920px;}
.ws9_c00338{word-spacing:1.317600px;}
.ws7_c00338{word-spacing:1.712880px;}
.ws8_c00338{word-spacing:1.976400px;}
.ws25_c00338{word-spacing:2.766960px;}
.ws34_c00338{word-spacing:3.030480px;}
.ws15_c00338{word-spacing:3.168000px;}
.ws1e_c00338{word-spacing:4.176000px;}
.ws30_c00338{word-spacing:4.320000px;}
.ws2f_c00338{word-spacing:4.608000px;}
.wsa_c00338{word-spacing:5.929200px;}
.ws32_c00338{word-spacing:5.995080px;}
.ws14_c00338{word-spacing:6.048000px;}
.ws31_c00338{word-spacing:6.258600px;}
.ws35_c00338{word-spacing:6.390360px;}
.ws28_c00338{word-spacing:6.408000px;}
.ws36_c00338{word-spacing:6.522120px;}
.ws26_c00338{word-spacing:6.719760px;}
.ws2e_c00338{word-spacing:6.768000px;}
.ws2d_c00338{word-spacing:7.200000px;}
.wsd_c00338{word-spacing:7.444440px;}
.ws17_c00338{word-spacing:7.576200px;}
.ws1b_c00338{word-spacing:7.707960px;}
.ws3_c00338{word-spacing:7.905600px;}
.ws19_c00338{word-spacing:8.893800px;}
.ws24_c00338{word-spacing:8.928000px;}
.ws1a_c00338{word-spacing:9.223200px;}
.ws21_c00338{word-spacing:10.672560px;}
.ws23_c00338{word-spacing:10.728000px;}
.ws22_c00338{word-spacing:11.067840px;}
.ws33_c00338{word-spacing:11.792520px;}
.ws2b_c00338{word-spacing:12.528000px;}
.ws2c_c00338{word-spacing:12.888000px;}
.ws1c_c00338{word-spacing:13.248000px;}
.ws1d_c00338{word-spacing:13.320000px;}
.ws10_c00338{word-spacing:18.578160px;}
.ws13_c00338{word-spacing:19.080000px;}
.ws27_c00338{word-spacing:20.808000px;}
.ws2a_c00338{word-spacing:28.008000px;}
.ws29_c00338{word-spacing:28.368000px;}
.ws12_c00338{word-spacing:37.728000px;}
.ws4_c00338{word-spacing:104.400000px;}
._0_c00338{margin-left:-1.067256px;}
._2_c00338{width:1.199016px;}
._3_c00338{width:15.112872px;}
._1_c00338{width:17.076096px;}
._5_c00338{width:18.103824px;}
._4_c00338{width:21.464280px;}
.fc2_c00338{color:transparent;}
.fc1_c00338{color:rgb(0,0,0);}
.fc0_c00338{color:rgb(35,31,32);}
.fs1_c00338{font-size:65.880000px;}
.fs0_c00338{font-size:72.000000px;}
.y0_c00338{bottom:0.000000px;}
.y1_c00338{bottom:61.748550px;}
.y20_c00338{bottom:134.397300px;}
.y3a_c00338{bottom:147.637920px;}
.y1f_c00338{bottom:163.203330px;}
.y39_c00338{bottom:176.081610px;}
.y1e_c00338{bottom:191.647020px;}
.y38_c00338{bottom:204.607650px;}
.y1d_c00338{bottom:220.090710px;}
.y37_c00338{bottom:233.051340px;}
.y1c_c00338{bottom:248.534400px;}
.y36_c00338{bottom:292.540980px;}
.y1b_c00338{bottom:309.464250px;}
.y35_c00338{bottom:320.984670px;}
.y1a_c00338{bottom:340.514250px;}
.y34_c00338{bottom:349.428360px;}
.y19_c00338{bottom:371.564250px;}
.y33_c00338{bottom:377.954400px;}
.y18_c00338{bottom:432.213600px;}
.y32_c00338{bottom:438.884400px;}
.y17_c00338{bottom:460.739640px;}
.y31_c00338{bottom:469.934400px;}
.y16_c00338{bottom:489.183330px;}
.y30_c00338{bottom:500.984400px;}
.y15_c00338{bottom:517.627020px;}
.y2f_c00338{bottom:531.944400px;}
.y14_c00338{bottom:546.070710px;}
.y2e_c00338{bottom:562.994400px;}
.y13_c00338{bottom:574.514400px;}
.y2d_c00338{bottom:625.094400px;}
.y12_c00338{bottom:635.444100px;}
.y2c_c00338{bottom:656.144400px;}
.y11_c00338{bottom:666.494100px;}
.y2b_c00338{bottom:687.194400px;}
.y10_c00338{bottom:697.544100px;}
.y2a_c00338{bottom:718.244400px;}
.yf_c00338{bottom:728.594100px;}
.ye_c00338{bottom:759.644100px;}
.y29_c00338{bottom:780.164400px;}
.yd_c00338{bottom:821.654250px;}
.y28_c00338{bottom:841.004520px;}
.yc_c00338{bottom:851.346960px;}
.y27_c00338{bottom:869.530560px;}
.yb_c00338{bottom:879.873000px;}
.y26_c00338{bottom:897.974250px;}
.ya_c00338{bottom:908.316690px;}
.y9_c00338{bottom:936.760380px;}
.y25_c00338{bottom:958.904400px;}
.y8_c00338{bottom:965.204070px;}
.y24_c00338{bottom:989.954400px;}
.y23_c00338{bottom:1021.004400px;}
.y7_c00338{bottom:1026.045420px;}
.y22_c00338{bottom:1052.054400px;}
.y6_c00338{bottom:1055.740830px;}
.y5_c00338{bottom:1084.266870px;}
.y4_c00338{bottom:1112.710560px;}
.y3_c00338{bottom:1141.154250px;}
.y21_c00338{bottom:1193.174400px;}
.y2_c00338{bottom:1193.174550px;}
.h2_c00338{height:50.400000px;}
.h7_c00338{height:54.331699px;}
.h4_c00338{height:71.413920px;}
.h3_c00338{height:76.824000px;}
.h5_c00338{height:78.043320px;}
.h6_c00338{height:78.048000px;}
.h0_c00338{height:1262.835000px;}
.h1_c00338{height:1263.000000px;}
.w2_c00338{width:0.000000px;}
.w3_c00338{width:0.066000px;}
.w0_c00338{width:892.914000px;}
.w1_c00338{width:893.250000px;}
.x1_c00338{left:-838.913400px;}
.x2_c00338{left:-765.293400px;}
.x3_c00338{left:-743.963400px;}
.x4_c00338{left:-733.343400px;}
.x0_c00338{left:0.000000px;}
.x9_c00338{left:127.620000px;}
.x7_c00338{left:148.950000px;}
.x8_c00338{left:159.570000px;}
.x6_c00338{left:679.950000px;}
.x5_c00338{left:804.366150px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls9_c00338{letter-spacing:-0.058560pt;}
.ls8_c00338{letter-spacing:0.000000pt;}
.lsa_c00338{letter-spacing:0.058560pt;}
.ls3_c00338{letter-spacing:0.064000pt;}
.ls2_c00338{letter-spacing:0.128000pt;}
.ls0_c00338{letter-spacing:0.175680pt;}
.ls7_c00338{letter-spacing:14.493600pt;}
.ls6_c00338{letter-spacing:14.496480pt;}
.ls5_c00338{letter-spacing:14.499456pt;}
.ls1_c00338{letter-spacing:14.502336pt;}
.ls4_c00338{letter-spacing:21.608640pt;}
.ws2_c00338{word-spacing:-16.064000pt;}
.ws0_c00338{word-spacing:-16.000000pt;}
.ws5_c00338{word-spacing:-14.698560pt;}
.ws1_c00338{word-spacing:-0.409920pt;}
.ws11_c00338{word-spacing:-0.320000pt;}
.ws20_c00338{word-spacing:-0.175680pt;}
.wsc_c00338{word-spacing:-0.128000pt;}
.wsb_c00338{word-spacing:-0.117120pt;}
.ws16_c00338{word-spacing:-0.064000pt;}
.ws6_c00338{word-spacing:0.000000pt;}
.wsf_c00338{word-spacing:0.117120pt;}
.wse_c00338{word-spacing:0.234240pt;}
.ws18_c00338{word-spacing:0.468480pt;}
.ws1f_c00338{word-spacing:0.527040pt;}
.ws9_c00338{word-spacing:1.171200pt;}
.ws7_c00338{word-spacing:1.522560pt;}
.ws8_c00338{word-spacing:1.756800pt;}
.ws25_c00338{word-spacing:2.459520pt;}
.ws34_c00338{word-spacing:2.693760pt;}
.ws15_c00338{word-spacing:2.816000pt;}
.ws1e_c00338{word-spacing:3.712000pt;}
.ws30_c00338{word-spacing:3.840000pt;}
.ws2f_c00338{word-spacing:4.096000pt;}
.wsa_c00338{word-spacing:5.270400pt;}
.ws32_c00338{word-spacing:5.328960pt;}
.ws14_c00338{word-spacing:5.376000pt;}
.ws31_c00338{word-spacing:5.563200pt;}
.ws35_c00338{word-spacing:5.680320pt;}
.ws28_c00338{word-spacing:5.696000pt;}
.ws36_c00338{word-spacing:5.797440pt;}
.ws26_c00338{word-spacing:5.973120pt;}
.ws2e_c00338{word-spacing:6.016000pt;}
.ws2d_c00338{word-spacing:6.400000pt;}
.wsd_c00338{word-spacing:6.617280pt;}
.ws17_c00338{word-spacing:6.734400pt;}
.ws1b_c00338{word-spacing:6.851520pt;}
.ws3_c00338{word-spacing:7.027200pt;}
.ws19_c00338{word-spacing:7.905600pt;}
.ws24_c00338{word-spacing:7.936000pt;}
.ws1a_c00338{word-spacing:8.198400pt;}
.ws21_c00338{word-spacing:9.486720pt;}
.ws23_c00338{word-spacing:9.536000pt;}
.ws22_c00338{word-spacing:9.838080pt;}
.ws33_c00338{word-spacing:10.482240pt;}
.ws2b_c00338{word-spacing:11.136000pt;}
.ws2c_c00338{word-spacing:11.456000pt;}
.ws1c_c00338{word-spacing:11.776000pt;}
.ws1d_c00338{word-spacing:11.840000pt;}
.ws10_c00338{word-spacing:16.513920pt;}
.ws13_c00338{word-spacing:16.960000pt;}
.ws27_c00338{word-spacing:18.496000pt;}
.ws2a_c00338{word-spacing:24.896000pt;}
.ws29_c00338{word-spacing:25.216000pt;}
.ws12_c00338{word-spacing:33.536000pt;}
.ws4_c00338{word-spacing:92.800000pt;}
._0_c00338{margin-left:-0.948672pt;}
._2_c00338{width:1.065792pt;}
._3_c00338{width:13.433664pt;}
._1_c00338{width:15.178752pt;}
._5_c00338{width:16.092288pt;}
._4_c00338{width:19.079360pt;}
.fs1_c00338{font-size:58.560000pt;}
.fs0_c00338{font-size:64.000000pt;}
.y0_c00338{bottom:0.000000pt;}
.y1_c00338{bottom:54.887600pt;}
.y20_c00338{bottom:119.464267pt;}
.y3a_c00338{bottom:131.233707pt;}
.y1f_c00338{bottom:145.069627pt;}
.y39_c00338{bottom:156.516987pt;}
.y1e_c00338{bottom:170.352907pt;}
.y38_c00338{bottom:181.873467pt;}
.y1d_c00338{bottom:195.636187pt;}
.y37_c00338{bottom:207.156747pt;}
.y1c_c00338{bottom:220.919467pt;}
.y36_c00338{bottom:260.036427pt;}
.y1b_c00338{bottom:275.079333pt;}
.y35_c00338{bottom:285.319707pt;}
.y1a_c00338{bottom:302.679333pt;}
.y34_c00338{bottom:310.602987pt;}
.y19_c00338{bottom:330.279333pt;}
.y33_c00338{bottom:335.959467pt;}
.y18_c00338{bottom:384.189867pt;}
.y32_c00338{bottom:390.119467pt;}
.y17_c00338{bottom:409.546347pt;}
.y31_c00338{bottom:417.719467pt;}
.y16_c00338{bottom:434.829627pt;}
.y30_c00338{bottom:445.319467pt;}
.y15_c00338{bottom:460.112907pt;}
.y2f_c00338{bottom:472.839467pt;}
.y14_c00338{bottom:485.396187pt;}
.y2e_c00338{bottom:500.439467pt;}
.y13_c00338{bottom:510.679467pt;}
.y2d_c00338{bottom:555.639467pt;}
.y12_c00338{bottom:564.839200pt;}
.y2c_c00338{bottom:583.239467pt;}
.y11_c00338{bottom:592.439200pt;}
.y2b_c00338{bottom:610.839467pt;}
.y10_c00338{bottom:620.039200pt;}
.y2a_c00338{bottom:638.439467pt;}
.yf_c00338{bottom:647.639200pt;}
.ye_c00338{bottom:675.239200pt;}
.y29_c00338{bottom:693.479467pt;}
.yd_c00338{bottom:730.359333pt;}
.y28_c00338{bottom:747.559573pt;}
.yc_c00338{bottom:756.752853pt;}
.y27_c00338{bottom:772.916053pt;}
.yb_c00338{bottom:782.109333pt;}
.y26_c00338{bottom:798.199333pt;}
.ya_c00338{bottom:807.392613pt;}
.y9_c00338{bottom:832.675893pt;}
.y25_c00338{bottom:852.359467pt;}
.y8_c00338{bottom:857.959173pt;}
.y24_c00338{bottom:879.959467pt;}
.y23_c00338{bottom:907.559467pt;}
.y7_c00338{bottom:912.040373pt;}
.y22_c00338{bottom:935.159467pt;}
.y6_c00338{bottom:938.436293pt;}
.y5_c00338{bottom:963.792773pt;}
.y4_c00338{bottom:989.076053pt;}
.y3_c00338{bottom:1014.359333pt;}
.y21_c00338{bottom:1060.599467pt;}
.y2_c00338{bottom:1060.599600pt;}
.h2_c00338{height:44.800000pt;}
.h7_c00338{height:48.294844pt;}
.h4_c00338{height:63.479040pt;}
.h3_c00338{height:68.288000pt;}
.h5_c00338{height:69.371840pt;}
.h6_c00338{height:69.376000pt;}
.h0_c00338{height:1122.520000pt;}
.h1_c00338{height:1122.666667pt;}
.w2_c00338{width:0.000000pt;}
.w3_c00338{width:0.058667pt;}
.w0_c00338{width:793.701333pt;}
.w1_c00338{width:794.000000pt;}
.x1_c00338{left:-745.700800pt;}
.x2_c00338{left:-680.260800pt;}
.x3_c00338{left:-661.300800pt;}
.x4_c00338{left:-651.860800pt;}
.x0_c00338{left:0.000000pt;}
.x9_c00338{left:113.440000pt;}
.x7_c00338{left:132.400000pt;}
.x8_c00338{left:141.840000pt;}
.x6_c00338{left:604.400000pt;}
.x5_c00338{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00339;src:url('chunks/assets/font_e211b5e258ec344f56f3b210.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00339;src:url('chunks/assets/font_1c0f19d342de9cbae63a4e58.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls7_c00339{letter-spacing:-0.065880px;}
.ls6_c00339{letter-spacing:0.000000px;}
.ls5_c00339{letter-spacing:0.065880px;}
.ls1_c00339{letter-spacing:0.072000px;}
.ls2_c00339{letter-spacing:0.144000px;}
.ls0_c00339{letter-spacing:0.197640px;}
.ls4_c00339{letter-spacing:23.040000px;}
.ls3_c00339{letter-spacing:24.840000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00339{word-spacing:-18.000000px;}
.ws9_c00339{word-spacing:-0.131760px;}
.ws10_c00339{word-spacing:-0.072000px;}
.ws1_c00339{word-spacing:0.000000px;}
.ws19_c00339{word-spacing:0.131760px;}
.ws1a_c00339{word-spacing:0.288000px;}
.ws6_c00339{word-spacing:0.988200px;}
.wsc_c00339{word-spacing:1.368000px;}
.wsb_c00339{word-spacing:1.440000px;}
.ws1b_c00339{word-spacing:2.088000px;}
.ws15_c00339{word-spacing:3.755160px;}
.ws7_c00339{word-spacing:4.545720px;}
.ws8_c00339{word-spacing:4.809240px;}
.wse_c00339{word-spacing:4.896000px;}
.wsf_c00339{word-spacing:5.400000px;}
.ws1d_c00339{word-spacing:5.760000px;}
.wsd_c00339{word-spacing:6.840000px;}
.ws2_c00339{word-spacing:7.213860px;}
.ws18_c00339{word-spacing:7.444440px;}
.ws17_c00339{word-spacing:7.576200px;}
.ws11_c00339{word-spacing:9.618480px;}
.ws1c_c00339{word-spacing:9.648000px;}
.ws16_c00339{word-spacing:10.672560px;}
.ws13_c00339{word-spacing:14.760000px;}
.ws5_c00339{word-spacing:16.470000px;}
.ws3_c00339{word-spacing:17.524080px;}
.ws4_c00339{word-spacing:17.787600px;}
.ws14_c00339{word-spacing:19.080000px;}
.ws12_c00339{word-spacing:21.147480px;}
.wsa_c00339{word-spacing:22.608000px;}
._0_c00339{margin-left:-1.067256px;}
._1_c00339{width:1.258308px;}
.fc1_c00339{color:rgb(0,0,0);}
.fc0_c00339{color:rgb(35,31,32);}
.fs1_c00339{font-size:65.880000px;}
.fs0_c00339{font-size:72.000000px;}
.y0_c00339{bottom:0.000000px;}
.y1_c00339{bottom:61.748550px;}
.y1d_c00339{bottom:177.524400px;}
.y1c_c00339{bottom:208.574400px;}
.y1b_c00339{bottom:239.624400px;}
.y1a_c00339{bottom:270.674400px;}
.y19_c00339{bottom:301.724400px;}
.y18_c00339{bottom:362.380830px;}
.y17_c00339{bottom:390.824520px;}
.y16_c00339{bottom:419.350560px;}
.y15_c00339{bottom:447.794250px;}
.y14_c00339{bottom:508.724400px;}
.y13_c00339{bottom:539.774400px;}
.y12_c00339{bottom:570.824400px;}
.y11_c00339{bottom:631.476870px;}
.y10_c00339{bottom:659.920560px;}
.yf_c00339{bottom:688.364250px;}
.ye_c00339{bottom:749.294100px;}
.yd_c00339{bottom:780.344100px;}
.yc_c00339{bottom:811.394100px;}
.yb_c00339{bottom:873.494100px;}
.ya_c00339{bottom:904.454100px;}
.y9_c00339{bottom:935.594100px;}
.y8_c00339{bottom:966.644100px;}
.y7_c00339{bottom:1027.297140px;}
.y6_c00339{bottom:1055.740830px;}
.y5_c00339{bottom:1084.266870px;}
.y4_c00339{bottom:1112.710560px;}
.y3_c00339{bottom:1141.154250px;}
.y2_c00339{bottom:1193.174400px;}
.h2_c00339{height:50.400000px;}
.h4_c00339{height:71.413920px;}
.h3_c00339{height:76.824000px;}
.h5_c00339{height:78.048000px;}
.h0_c00339{height:1262.835000px;}
.h1_c00339{height:1263.000000px;}
.w0_c00339{width:892.914000px;}
.w1_c00339{width:893.250000px;}
.x0_c00339{left:0.000000px;}
.x1_c00339{left:54.000000px;}
.x2_c00339{left:127.620000px;}
.x3_c00339{left:148.950000px;}
.x4_c00339{left:159.570000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls7_c00339{letter-spacing:-0.058560pt;}
.ls6_c00339{letter-spacing:0.000000pt;}
.ls5_c00339{letter-spacing:0.058560pt;}
.ls1_c00339{letter-spacing:0.064000pt;}
.ls2_c00339{letter-spacing:0.128000pt;}
.ls0_c00339{letter-spacing:0.175680pt;}
.ls4_c00339{letter-spacing:20.480000pt;}
.ls3_c00339{letter-spacing:22.080000pt;}
.ws0_c00339{word-spacing:-16.000000pt;}
.ws9_c00339{word-spacing:-0.117120pt;}
.ws10_c00339{word-spacing:-0.064000pt;}
.ws1_c00339{word-spacing:0.000000pt;}
.ws19_c00339{word-spacing:0.117120pt;}
.ws1a_c00339{word-spacing:0.256000pt;}
.ws6_c00339{word-spacing:0.878400pt;}
.wsc_c00339{word-spacing:1.216000pt;}
.wsb_c00339{word-spacing:1.280000pt;}
.ws1b_c00339{word-spacing:1.856000pt;}
.ws15_c00339{word-spacing:3.337920pt;}
.ws7_c00339{word-spacing:4.040640pt;}
.ws8_c00339{word-spacing:4.274880pt;}
.wse_c00339{word-spacing:4.352000pt;}
.wsf_c00339{word-spacing:4.800000pt;}
.ws1d_c00339{word-spacing:5.120000pt;}
.wsd_c00339{word-spacing:6.080000pt;}
.ws2_c00339{word-spacing:6.412320pt;}
.ws18_c00339{word-spacing:6.617280pt;}
.ws17_c00339{word-spacing:6.734400pt;}
.ws11_c00339{word-spacing:8.549760pt;}
.ws1c_c00339{word-spacing:8.576000pt;}
.ws16_c00339{word-spacing:9.486720pt;}
.ws13_c00339{word-spacing:13.120000pt;}
.ws5_c00339{word-spacing:14.640000pt;}
.ws3_c00339{word-spacing:15.576960pt;}
.ws4_c00339{word-spacing:15.811200pt;}
.ws14_c00339{word-spacing:16.960000pt;}
.ws12_c00339{word-spacing:18.797760pt;}
.wsa_c00339{word-spacing:20.096000pt;}
._0_c00339{margin-left:-0.948672pt;}
._1_c00339{width:1.118496pt;}
.fs1_c00339{font-size:58.560000pt;}
.fs0_c00339{font-size:64.000000pt;}
.y0_c00339{bottom:0.000000pt;}
.y1_c00339{bottom:54.887600pt;}
.y1d_c00339{bottom:157.799467pt;}
.y1c_c00339{bottom:185.399467pt;}
.y1b_c00339{bottom:212.999467pt;}
.y1a_c00339{bottom:240.599467pt;}
.y19_c00339{bottom:268.199467pt;}
.y18_c00339{bottom:322.116293pt;}
.y17_c00339{bottom:347.399573pt;}
.y16_c00339{bottom:372.756053pt;}
.y15_c00339{bottom:398.039333pt;}
.y14_c00339{bottom:452.199467pt;}
.y13_c00339{bottom:479.799467pt;}
.y12_c00339{bottom:507.399467pt;}
.y11_c00339{bottom:561.312773pt;}
.y10_c00339{bottom:586.596053pt;}
.yf_c00339{bottom:611.879333pt;}
.ye_c00339{bottom:666.039200pt;}
.yd_c00339{bottom:693.639200pt;}
.yc_c00339{bottom:721.239200pt;}
.yb_c00339{bottom:776.439200pt;}
.ya_c00339{bottom:803.959200pt;}
.y9_c00339{bottom:831.639200pt;}
.y8_c00339{bottom:859.239200pt;}
.y7_c00339{bottom:913.153013pt;}
.y6_c00339{bottom:938.436293pt;}
.y5_c00339{bottom:963.792773pt;}
.y4_c00339{bottom:989.076053pt;}
.y3_c00339{bottom:1014.359333pt;}
.y2_c00339{bottom:1060.599467pt;}
.h2_c00339{height:44.800000pt;}
.h4_c00339{height:63.479040pt;}
.h3_c00339{height:68.288000pt;}
.h5_c00339{height:69.376000pt;}
.h0_c00339{height:1122.520000pt;}
.h1_c00339{height:1122.666667pt;}
.w0_c00339{width:793.701333pt;}
.w1_c00339{width:794.000000pt;}
.x0_c00339{left:0.000000pt;}
.x1_c00339{left:48.000000pt;}
.x2_c00339{left:113.440000pt;}
.x3_c00339{left:132.400000pt;}
.x4_c00339{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00340;src:url('chunks/assets/font_ce24080ed4779da6f3069588.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00340;src:url('chunks/assets/font_55988d83b8e3e1fa80c75b5b.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00340;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00340;src:url('chunks/assets/font_0a0f8cc78900af3468a07105.woff2')format("woff");}.ff5_c00340{font-family:ff5_c00340;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00340;src:url('chunks/assets/font_7e6b9a542b2f3b32b3998079.woff2')format("woff");}.ff6_c00340{font-family:ff6_c00340;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.ls9_c00340{letter-spacing:-0.360000px;}
.lsa_c00340{letter-spacing:-0.144000px;}
.ls8_c00340{letter-spacing:-0.065880px;}
.ls7_c00340{letter-spacing:0.000000px;}
.ls5_c00340{letter-spacing:0.065880px;}
.ls1_c00340{letter-spacing:0.072000px;}
.ls2_c00340{letter-spacing:0.144000px;}
.ls0_c00340{letter-spacing:0.197640px;}
.ls6_c00340{letter-spacing:21.384000px;}
.ls4_c00340{letter-spacing:23.040000px;}
.ls3_c00340{letter-spacing:24.840000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00340{word-spacing:-18.000000px;}
.ws6_c00340{word-spacing:-17.856000px;}
.ws25_c00340{word-spacing:-0.263520px;}
.wsd_c00340{word-spacing:-0.131760px;}
.ws13_c00340{word-spacing:-0.072000px;}
.ws1_c00340{word-spacing:0.000000px;}
.ws1c_c00340{word-spacing:0.131760px;}
.ws1d_c00340{word-spacing:0.288000px;}
.wsa_c00340{word-spacing:0.988200px;}
.ws26_c00340{word-spacing:1.008000px;}
.ws29_c00340{word-spacing:1.251720px;}
.wsf_c00340{word-spacing:1.368000px;}
.ws5_c00340{word-spacing:1.440000px;}
.ws34_c00340{word-spacing:1.712880px;}
.ws36_c00340{word-spacing:2.042280px;}
.ws1e_c00340{word-spacing:2.088000px;}
.ws31_c00340{word-spacing:3.096000px;}
.ws33_c00340{word-spacing:3.168000px;}
.ws32_c00340{word-spacing:3.240000px;}
.ws18_c00340{word-spacing:3.755160px;}
.ws24_c00340{word-spacing:4.348080px;}
.wsb_c00340{word-spacing:4.545720px;}
.wsc_c00340{word-spacing:4.809240px;}
.ws11_c00340{word-spacing:4.896000px;}
.ws12_c00340{word-spacing:5.400000px;}
.ws20_c00340{word-spacing:5.760000px;}
.ws4_c00340{word-spacing:6.624000px;}
.ws28_c00340{word-spacing:6.768000px;}
.ws10_c00340{word-spacing:6.840000px;}
.ws27_c00340{word-spacing:7.200000px;}
.ws2_c00340{word-spacing:7.207272px;}
.ws1b_c00340{word-spacing:7.444440px;}
.ws1a_c00340{word-spacing:7.576200px;}
.ws3_c00340{word-spacing:7.632000px;}
.ws30_c00340{word-spacing:8.640000px;}
.ws22_c00340{word-spacing:8.893800px;}
.ws23_c00340{word-spacing:9.486720px;}
.ws14_c00340{word-spacing:9.618480px;}
.ws1f_c00340{word-spacing:9.648000px;}
.ws2b_c00340{word-spacing:10.008000px;}
.ws2d_c00340{word-spacing:10.368000px;}
.ws2c_c00340{word-spacing:10.440000px;}
.ws19_c00340{word-spacing:10.672560px;}
.ws2a_c00340{word-spacing:12.888000px;}
.ws16_c00340{word-spacing:14.760000px;}
.ws9_c00340{word-spacing:16.470000px;}
.ws7_c00340{word-spacing:17.524080px;}
.ws8_c00340{word-spacing:17.787600px;}
.ws17_c00340{word-spacing:19.080000px;}
.ws15_c00340{word-spacing:21.147480px;}
.ws21_c00340{word-spacing:21.476880px;}
.ws2e_c00340{word-spacing:22.320000px;}
.wse_c00340{word-spacing:22.608000px;}
.ws2f_c00340{word-spacing:22.680000px;}
.ws35_c00340{word-spacing:25.824960px;}
._0_c00340{margin-left:-1.067256px;}
._1_c00340{width:1.258308px;}
._2_c00340{width:7.344000px;}
.fc2_c00340{color:transparent;}
.fc1_c00340{color:rgb(0,0,0);}
.fc0_c00340{color:rgb(35,31,32);}
.fs1_c00340{font-size:65.880000px;}
.fs0_c00340{font-size:72.000000px;}
.y0_c00340{bottom:0.000000px;}
.y1_c00340{bottom:61.748550px;}
.y1d_c00340{bottom:177.524400px;}
.y35_c00340{bottom:180.044400px;}
.y1c_c00340{bottom:208.574400px;}
.y34_c00340{bottom:209.737020px;}
.y33_c00340{bottom:238.180710px;}
.y1b_c00340{bottom:239.624400px;}
.y32_c00340{bottom:266.624400px;}
.y1a_c00340{bottom:270.674400px;}
.y19_c00340{bottom:301.724400px;}
.y31_c00340{bottom:327.554400px;}
.y30_c00340{bottom:358.604400px;}
.y18_c00340{bottom:362.380830px;}
.y2f_c00340{bottom:389.654400px;}
.y17_c00340{bottom:390.824520px;}
.y16_c00340{bottom:419.350560px;}
.y2e_c00340{bottom:420.704400px;}
.y15_c00340{bottom:447.794250px;}
.y2d_c00340{bottom:451.754400px;}
.y14_c00340{bottom:508.724400px;}
.y2c_c00340{bottom:513.854400px;}
.y13_c00340{bottom:539.774400px;}
.y2b_c00340{bottom:544.814400px;}
.y12_c00340{bottom:570.824400px;}
.y2a_c00340{bottom:575.954400px;}
.y29_c00340{bottom:607.004400px;}
.y11_c00340{bottom:631.476870px;}
.y28_c00340{bottom:638.054400px;}
.y10_c00340{bottom:659.920560px;}
.yf_c00340{bottom:688.364250px;}
.y27_c00340{bottom:698.710980px;}
.y26_c00340{bottom:727.237020px;}
.ye_c00340{bottom:749.294100px;}
.y25_c00340{bottom:755.680710px;}
.yd_c00340{bottom:780.344100px;}
.y24_c00340{bottom:784.124400px;}
.yc_c00340{bottom:811.394100px;}
.y23_c00340{bottom:845.054250px;}
.yb_c00340{bottom:873.494100px;}
.y22_c00340{bottom:876.104250px;}
.ya_c00340{bottom:904.454100px;}
.y21_c00340{bottom:907.154250px;}
.y9_c00340{bottom:935.594100px;}
.y8_c00340{bottom:966.644100px;}
.y20_c00340{bottom:967.807500px;}
.y1f_c00340{bottom:996.251190px;}
.y7_c00340{bottom:1027.297140px;}
.y6_c00340{bottom:1055.740830px;}
.y5_c00340{bottom:1084.266870px;}
.y4_c00340{bottom:1112.710560px;}
.y3_c00340{bottom:1141.154250px;}
.y1e_c00340{bottom:1193.174400px;}
.y2_c00340{bottom:1193.174550px;}
.h2_c00340{height:50.400000px;}
.h4_c00340{height:71.413920px;}
.h3_c00340{height:76.824000px;}
.h5_c00340{height:78.048000px;}
.h0_c00340{height:1262.835000px;}
.h1_c00340{height:1263.000000px;}
.w2_c00340{width:0.000000px;}
.w3_c00340{width:0.066000px;}
.w0_c00340{width:892.914000px;}
.w1_c00340{width:893.250000px;}
.x1_c00340{left:-838.913400px;}
.x2_c00340{left:-765.293400px;}
.x3_c00340{left:-743.963400px;}
.x4_c00340{left:-733.343400px;}
.x0_c00340{left:0.000000px;}
.x9_c00340{left:127.620000px;}
.x7_c00340{left:148.950000px;}
.x8_c00340{left:159.570000px;}
.x6_c00340{left:679.950000px;}
.x5_c00340{left:804.366150px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls9_c00340{letter-spacing:-0.320000pt;}
.lsa_c00340{letter-spacing:-0.128000pt;}
.ls8_c00340{letter-spacing:-0.058560pt;}
.ls7_c00340{letter-spacing:0.000000pt;}
.ls5_c00340{letter-spacing:0.058560pt;}
.ls1_c00340{letter-spacing:0.064000pt;}
.ls2_c00340{letter-spacing:0.128000pt;}
.ls0_c00340{letter-spacing:0.175680pt;}
.ls6_c00340{letter-spacing:19.008000pt;}
.ls4_c00340{letter-spacing:20.480000pt;}
.ls3_c00340{letter-spacing:22.080000pt;}
.ws0_c00340{word-spacing:-16.000000pt;}
.ws6_c00340{word-spacing:-15.872000pt;}
.ws25_c00340{word-spacing:-0.234240pt;}
.wsd_c00340{word-spacing:-0.117120pt;}
.ws13_c00340{word-spacing:-0.064000pt;}
.ws1_c00340{word-spacing:0.000000pt;}
.ws1c_c00340{word-spacing:0.117120pt;}
.ws1d_c00340{word-spacing:0.256000pt;}
.wsa_c00340{word-spacing:0.878400pt;}
.ws26_c00340{word-spacing:0.896000pt;}
.ws29_c00340{word-spacing:1.112640pt;}
.wsf_c00340{word-spacing:1.216000pt;}
.ws5_c00340{word-spacing:1.280000pt;}
.ws34_c00340{word-spacing:1.522560pt;}
.ws36_c00340{word-spacing:1.815360pt;}
.ws1e_c00340{word-spacing:1.856000pt;}
.ws31_c00340{word-spacing:2.752000pt;}
.ws33_c00340{word-spacing:2.816000pt;}
.ws32_c00340{word-spacing:2.880000pt;}
.ws18_c00340{word-spacing:3.337920pt;}
.ws24_c00340{word-spacing:3.864960pt;}
.wsb_c00340{word-spacing:4.040640pt;}
.wsc_c00340{word-spacing:4.274880pt;}
.ws11_c00340{word-spacing:4.352000pt;}
.ws12_c00340{word-spacing:4.800000pt;}
.ws20_c00340{word-spacing:5.120000pt;}
.ws4_c00340{word-spacing:5.888000pt;}
.ws28_c00340{word-spacing:6.016000pt;}
.ws10_c00340{word-spacing:6.080000pt;}
.ws27_c00340{word-spacing:6.400000pt;}
.ws2_c00340{word-spacing:6.406464pt;}
.ws1b_c00340{word-spacing:6.617280pt;}
.ws1a_c00340{word-spacing:6.734400pt;}
.ws3_c00340{word-spacing:6.784000pt;}
.ws30_c00340{word-spacing:7.680000pt;}
.ws22_c00340{word-spacing:7.905600pt;}
.ws23_c00340{word-spacing:8.432640pt;}
.ws14_c00340{word-spacing:8.549760pt;}
.ws1f_c00340{word-spacing:8.576000pt;}
.ws2b_c00340{word-spacing:8.896000pt;}
.ws2d_c00340{word-spacing:9.216000pt;}
.ws2c_c00340{word-spacing:9.280000pt;}
.ws19_c00340{word-spacing:9.486720pt;}
.ws2a_c00340{word-spacing:11.456000pt;}
.ws16_c00340{word-spacing:13.120000pt;}
.ws9_c00340{word-spacing:14.640000pt;}
.ws7_c00340{word-spacing:15.576960pt;}
.ws8_c00340{word-spacing:15.811200pt;}
.ws17_c00340{word-spacing:16.960000pt;}
.ws15_c00340{word-spacing:18.797760pt;}
.ws21_c00340{word-spacing:19.090560pt;}
.ws2e_c00340{word-spacing:19.840000pt;}
.wse_c00340{word-spacing:20.096000pt;}
.ws2f_c00340{word-spacing:20.160000pt;}
.ws35_c00340{word-spacing:22.955520pt;}
._0_c00340{margin-left:-0.948672pt;}
._1_c00340{width:1.118496pt;}
._2_c00340{width:6.528000pt;}
.fs1_c00340{font-size:58.560000pt;}
.fs0_c00340{font-size:64.000000pt;}
.y0_c00340{bottom:0.000000pt;}
.y1_c00340{bottom:54.887600pt;}
.y1d_c00340{bottom:157.799467pt;}
.y35_c00340{bottom:160.039467pt;}
.y1c_c00340{bottom:185.399467pt;}
.y34_c00340{bottom:186.432907pt;}
.y33_c00340{bottom:211.716187pt;}
.y1b_c00340{bottom:212.999467pt;}
.y32_c00340{bottom:236.999467pt;}
.y1a_c00340{bottom:240.599467pt;}
.y19_c00340{bottom:268.199467pt;}
.y31_c00340{bottom:291.159467pt;}
.y30_c00340{bottom:318.759467pt;}
.y18_c00340{bottom:322.116293pt;}
.y2f_c00340{bottom:346.359467pt;}
.y17_c00340{bottom:347.399573pt;}
.y16_c00340{bottom:372.756053pt;}
.y2e_c00340{bottom:373.959467pt;}
.y15_c00340{bottom:398.039333pt;}
.y2d_c00340{bottom:401.559467pt;}
.y14_c00340{bottom:452.199467pt;}
.y2c_c00340{bottom:456.759467pt;}
.y13_c00340{bottom:479.799467pt;}
.y2b_c00340{bottom:484.279467pt;}
.y12_c00340{bottom:507.399467pt;}
.y2a_c00340{bottom:511.959467pt;}
.y29_c00340{bottom:539.559467pt;}
.y11_c00340{bottom:561.312773pt;}
.y28_c00340{bottom:567.159467pt;}
.y10_c00340{bottom:586.596053pt;}
.yf_c00340{bottom:611.879333pt;}
.y27_c00340{bottom:621.076427pt;}
.y26_c00340{bottom:646.432907pt;}
.ye_c00340{bottom:666.039200pt;}
.y25_c00340{bottom:671.716187pt;}
.yd_c00340{bottom:693.639200pt;}
.y24_c00340{bottom:696.999467pt;}
.yc_c00340{bottom:721.239200pt;}
.y23_c00340{bottom:751.159333pt;}
.yb_c00340{bottom:776.439200pt;}
.y22_c00340{bottom:778.759333pt;}
.ya_c00340{bottom:803.959200pt;}
.y21_c00340{bottom:806.359333pt;}
.y9_c00340{bottom:831.639200pt;}
.y8_c00340{bottom:859.239200pt;}
.y20_c00340{bottom:860.273333pt;}
.y1f_c00340{bottom:885.556613pt;}
.y7_c00340{bottom:913.153013pt;}
.y6_c00340{bottom:938.436293pt;}
.y5_c00340{bottom:963.792773pt;}
.y4_c00340{bottom:989.076053pt;}
.y3_c00340{bottom:1014.359333pt;}
.y1e_c00340{bottom:1060.599467pt;}
.y2_c00340{bottom:1060.599600pt;}
.h2_c00340{height:44.800000pt;}
.h4_c00340{height:63.479040pt;}
.h3_c00340{height:68.288000pt;}
.h5_c00340{height:69.376000pt;}
.h0_c00340{height:1122.520000pt;}
.h1_c00340{height:1122.666667pt;}
.w2_c00340{width:0.000000pt;}
.w3_c00340{width:0.058667pt;}
.w0_c00340{width:793.701333pt;}
.w1_c00340{width:794.000000pt;}
.x1_c00340{left:-745.700800pt;}
.x2_c00340{left:-680.260800pt;}
.x3_c00340{left:-661.300800pt;}
.x4_c00340{left:-651.860800pt;}
.x0_c00340{left:0.000000pt;}
.x9_c00340{left:113.440000pt;}
.x7_c00340{left:132.400000pt;}
.x8_c00340{left:141.840000pt;}
.x6_c00340{left:604.400000pt;}
.x5_c00340{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_e8c46beef1a3af57b31001ff.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_01954d1be4c80e6b95e467e5.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00341;src:url('chunks/assets/font_d43c5cddb6df575da0c365ab.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00341{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.lsa_c00341{letter-spacing:-0.065880px;}
.ls9_c00341{letter-spacing:0.000000px;}
.ls0_c00341{letter-spacing:0.072000px;}
.ls3_c00341{letter-spacing:0.144000px;}
.ls5_c00341{letter-spacing:0.197640px;}
.ls8_c00341{letter-spacing:16.079868px;}
.ls7_c00341{letter-spacing:16.276392px;}
.ls6_c00341{letter-spacing:17.853480px;}
.ls4_c00341{letter-spacing:19.440000px;}
.ls1_c00341{letter-spacing:21.744000px;}
.ls2_c00341{letter-spacing:43.560000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00341{word-spacing:-18.072000px;}
.ws0_c00341{word-spacing:-18.000000px;}
.ws19_c00341{word-spacing:-0.144000px;}
.ws15_c00341{word-spacing:-0.131760px;}
.ws11_c00341{word-spacing:-0.072000px;}
.ws2_c00341{word-spacing:0.000000px;}
.ws12_c00341{word-spacing:0.263520px;}
.ws10_c00341{word-spacing:0.648000px;}
.ws14_c00341{word-spacing:0.988200px;}
.wse_c00341{word-spacing:1.008000px;}
.wsd_c00341{word-spacing:1.080000px;}
.ws13_c00341{word-spacing:1.251720px;}
.ws1a_c00341{word-spacing:1.712880px;}
.ws17_c00341{word-spacing:1.800000px;}
.ws6_c00341{word-spacing:2.160000px;}
.ws18_c00341{word-spacing:2.520000px;}
.ws5_c00341{word-spacing:2.808000px;}
.ws9_c00341{word-spacing:2.880000px;}
.wsc_c00341{word-spacing:3.240000px;}
.ws8_c00341{word-spacing:3.528000px;}
.ws7_c00341{word-spacing:3.960000px;}
.ws3_c00341{word-spacing:4.968000px;}
.ws4_c00341{word-spacing:5.040000px;}
.ws1c_c00341{word-spacing:6.719760px;}
.ws1e_c00341{word-spacing:6.840000px;}
.ws1b_c00341{word-spacing:6.983280px;}
.ws1d_c00341{word-spacing:7.115040px;}
.wsb_c00341{word-spacing:10.008000px;}
.ws16_c00341{word-spacing:12.528000px;}
.wsf_c00341{word-spacing:26.208000px;}
.wsa_c00341{word-spacing:29.880000px;}
._0_c00341{margin-left:-1.584000px;}
._1_c00341{width:1.195200px;}
.fc1_c00341{color:rgb(0,0,0);}
.fc0_c00341{color:rgb(35,31,32);}
.fs1_c00341{font-size:65.880000px;}
.fs0_c00341{font-size:72.000000px;}
.y0_c00341{bottom:0.000000px;}
.y1_c00341{bottom:61.748550px;}
.y1d_c00341{bottom:189.944400px;}
.y1c_c00341{bottom:220.994400px;}
.y1b_c00341{bottom:252.044400px;}
.y1a_c00341{bottom:314.051610px;}
.y19_c00341{bottom:343.747020px;}
.y18_c00341{bottom:372.190710px;}
.y17_c00341{bottom:400.634400px;}
.y16_c00341{bottom:461.564400px;}
.y15_c00341{bottom:492.614400px;}
.y14_c00341{bottom:523.664400px;}
.y13_c00341{bottom:554.714400px;}
.y12_c00341{bottom:616.732800px;}
.y11_c00341{bottom:646.428210px;}
.y10_c00341{bottom:674.954250px;}
.yf_c00341{bottom:735.884250px;}
.ye_c00341{bottom:766.934250px;}
.yd_c00341{bottom:797.984250px;}
.yc_c00341{bottom:828.944250px;}
.yb_c00341{bottom:859.994250px;}
.ya_c00341{bottom:891.044250px;}
.y9_c00341{bottom:953.504400px;}
.y8_c00341{bottom:984.734400px;}
.y7_c00341{bottom:1015.784400px;}
.y6_c00341{bottom:1046.834400px;}
.y5_c00341{bottom:1077.794400px;}
.y4_c00341{bottom:1108.934400px;}
.y3_c00341{bottom:1139.984400px;}
.y2_c00341{bottom:1193.174400px;}
.h2_c00341{height:50.400000px;}
.h5_c00341{height:71.413920px;}
.h3_c00341{height:76.824000px;}
.h6_c00341{height:78.014400px;}
.h4_c00341{height:78.048000px;}
.h7_c00341{height:78.059160px;}
.h0_c00341{height:1262.835000px;}
.h1_c00341{height:1263.000000px;}
.w0_c00341{width:892.914000px;}
.w1_c00341{width:893.250000px;}
.x0_c00341{left:0.000000px;}
.x1_c00341{left:54.000000px;}
.x2_c00341{left:127.620000px;}
.x4_c00341{left:148.950000px;}
.x3_c00341{left:159.570000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.lsa_c00341{letter-spacing:-0.058560pt;}
.ls9_c00341{letter-spacing:0.000000pt;}
.ls0_c00341{letter-spacing:0.064000pt;}
.ls3_c00341{letter-spacing:0.128000pt;}
.ls5_c00341{letter-spacing:0.175680pt;}
.ls8_c00341{letter-spacing:14.293216pt;}
.ls7_c00341{letter-spacing:14.467904pt;}
.ls6_c00341{letter-spacing:15.869760pt;}
.ls4_c00341{letter-spacing:17.280000pt;}
.ls1_c00341{letter-spacing:19.328000pt;}
.ls2_c00341{letter-spacing:38.720000pt;}
.ws1_c00341{word-spacing:-16.064000pt;}
.ws0_c00341{word-spacing:-16.000000pt;}
.ws19_c00341{word-spacing:-0.128000pt;}
.ws15_c00341{word-spacing:-0.117120pt;}
.ws11_c00341{word-spacing:-0.064000pt;}
.ws2_c00341{word-spacing:0.000000pt;}
.ws12_c00341{word-spacing:0.234240pt;}
.ws10_c00341{word-spacing:0.576000pt;}
.ws14_c00341{word-spacing:0.878400pt;}
.wse_c00341{word-spacing:0.896000pt;}
.wsd_c00341{word-spacing:0.960000pt;}
.ws13_c00341{word-spacing:1.112640pt;}
.ws1a_c00341{word-spacing:1.522560pt;}
.ws17_c00341{word-spacing:1.600000pt;}
.ws6_c00341{word-spacing:1.920000pt;}
.ws18_c00341{word-spacing:2.240000pt;}
.ws5_c00341{word-spacing:2.496000pt;}
.ws9_c00341{word-spacing:2.560000pt;}
.wsc_c00341{word-spacing:2.880000pt;}
.ws8_c00341{word-spacing:3.136000pt;}
.ws7_c00341{word-spacing:3.520000pt;}
.ws3_c00341{word-spacing:4.416000pt;}
.ws4_c00341{word-spacing:4.480000pt;}
.ws1c_c00341{word-spacing:5.973120pt;}
.ws1e_c00341{word-spacing:6.080000pt;}
.ws1b_c00341{word-spacing:6.207360pt;}
.ws1d_c00341{word-spacing:6.324480pt;}
.wsb_c00341{word-spacing:8.896000pt;}
.ws16_c00341{word-spacing:11.136000pt;}
.wsf_c00341{word-spacing:23.296000pt;}
.wsa_c00341{word-spacing:26.560000pt;}
._0_c00341{margin-left:-1.408000pt;}
._1_c00341{width:1.062400pt;}
.fs1_c00341{font-size:58.560000pt;}
.fs0_c00341{font-size:64.000000pt;}
.y0_c00341{bottom:0.000000pt;}
.y1_c00341{bottom:54.887600pt;}
.y1d_c00341{bottom:168.839467pt;}
.y1c_c00341{bottom:196.439467pt;}
.y1b_c00341{bottom:224.039467pt;}
.y1a_c00341{bottom:279.156987pt;}
.y19_c00341{bottom:305.552907pt;}
.y18_c00341{bottom:330.836187pt;}
.y17_c00341{bottom:356.119467pt;}
.y16_c00341{bottom:410.279467pt;}
.y15_c00341{bottom:437.879467pt;}
.y14_c00341{bottom:465.479467pt;}
.y13_c00341{bottom:493.079467pt;}
.y12_c00341{bottom:548.206933pt;}
.y11_c00341{bottom:574.602853pt;}
.y10_c00341{bottom:599.959333pt;}
.yf_c00341{bottom:654.119333pt;}
.ye_c00341{bottom:681.719333pt;}
.yd_c00341{bottom:709.319333pt;}
.yc_c00341{bottom:736.839333pt;}
.yb_c00341{bottom:764.439333pt;}
.ya_c00341{bottom:792.039333pt;}
.y9_c00341{bottom:847.559467pt;}
.y8_c00341{bottom:875.319467pt;}
.y7_c00341{bottom:902.919467pt;}
.y6_c00341{bottom:930.519467pt;}
.y5_c00341{bottom:958.039467pt;}
.y4_c00341{bottom:985.719467pt;}
.y3_c00341{bottom:1013.319467pt;}
.y2_c00341{bottom:1060.599467pt;}
.h2_c00341{height:44.800000pt;}
.h5_c00341{height:63.479040pt;}
.h3_c00341{height:68.288000pt;}
.h6_c00341{height:69.346133pt;}
.h4_c00341{height:69.376000pt;}
.h7_c00341{height:69.385920pt;}
.h0_c00341{height:1122.520000pt;}
.h1_c00341{height:1122.666667pt;}
.w0_c00341{width:793.701333pt;}
.w1_c00341{width:794.000000pt;}
.x0_c00341{left:0.000000pt;}
.x1_c00341{left:48.000000pt;}
.x2_c00341{left:113.440000pt;}
.x4_c00341{left:132.400000pt;}
.x3_c00341{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00342;src:url('chunks/assets/font_680dce74be666565fa8f0640.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00342;src:url('chunks/assets/font_2ced60c129945cb37c426c6f.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00342;src:url('chunks/assets/font_830be3a7adca571ad8b1f1fa.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00342;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00342{font-family:ff5_c00342;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00342;src:url('chunks/assets/font_ac9538049491d0abdd188b56.woff2')format("woff");}.ff6_c00342{font-family:ff6_c00342;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00342;src:url('chunks/assets/font_34f0e9eea60368b18738e8a5.woff2')format("woff");}.ff7_c00342{font-family:ff7_c00342;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00342;src:url('chunks/assets/font_96c90b82001f5fcdc26169f5.woff2')format("woff");}.ff8_c00342{font-family:ff8_c00342;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00342;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff9_c00342{font-family:ff9_c00342;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00342{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.ls13_c00342{letter-spacing:-0.288000px;}
.ls12_c00342{letter-spacing:-0.072000px;}
.ls10_c00342{letter-spacing:-0.065880px;}
.lsf_c00342{letter-spacing:0.000000px;}
.ls11_c00342{letter-spacing:0.065880px;}
.ls0_c00342{letter-spacing:0.072000px;}
.ls3_c00342{letter-spacing:0.144000px;}
.ls5_c00342{letter-spacing:0.197640px;}
.ls8_c00342{letter-spacing:16.086456px;}
.ls9_c00342{letter-spacing:16.093044px;}
.ls7_c00342{letter-spacing:16.276392px;}
.ls6_c00342{letter-spacing:17.853480px;}
.lsc_c00342{letter-spacing:18.720000px;}
.ls4_c00342{letter-spacing:19.440000px;}
.ls1_c00342{letter-spacing:21.744000px;}
.lsb_c00342{letter-spacing:24.840000px;}
.lsa_c00342{letter-spacing:31.464000px;}
.lse_c00342{letter-spacing:31.680000px;}
.ls2_c00342{letter-spacing:43.560000px;}
.lsd_c00342{letter-spacing:43.704000px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00342{word-spacing:-18.072000px;}
.ws0_c00342{word-spacing:-18.000000px;}
.ws3_c00342{word-spacing:-16.470000px;}
.ws34_c00342{word-spacing:-0.432000px;}
.ws1b_c00342{word-spacing:-0.144000px;}
.ws17_c00342{word-spacing:-0.131760px;}
.ws13_c00342{word-spacing:-0.072000px;}
.ws4_c00342{word-spacing:0.000000px;}
.ws23_c00342{word-spacing:0.065880px;}
.ws28_c00342{word-spacing:0.131760px;}
.ws14_c00342{word-spacing:0.263520px;}
.ws12_c00342{word-spacing:0.648000px;}
.ws2f_c00342{word-spacing:0.936000px;}
.ws16_c00342{word-spacing:0.988200px;}
.ws10_c00342{word-spacing:1.008000px;}
.wsf_c00342{word-spacing:1.080000px;}
.ws27_c00342{word-spacing:1.119960px;}
.ws15_c00342{word-spacing:1.251720px;}
.ws24_c00342{word-spacing:1.581120px;}
.ws1c_c00342{word-spacing:1.712880px;}
.ws19_c00342{word-spacing:1.800000px;}
.ws2_c00342{word-spacing:1.963224px;}
.ws8_c00342{word-spacing:2.160000px;}
.ws22_c00342{word-spacing:2.437560px;}
.ws1a_c00342{word-spacing:2.520000px;}
.ws21_c00342{word-spacing:2.701080px;}
.ws7_c00342{word-spacing:2.808000px;}
.wsb_c00342{word-spacing:2.880000px;}
.ws29_c00342{word-spacing:3.168000px;}
.wse_c00342{word-spacing:3.240000px;}
.wsa_c00342{word-spacing:3.528000px;}
.ws35_c00342{word-spacing:3.821040px;}
.ws9_c00342{word-spacing:3.960000px;}
.ws39_c00342{word-spacing:4.084560px;}
.ws37_c00342{word-spacing:4.248000px;}
.ws26_c00342{word-spacing:4.479840px;}
.ws5_c00342{word-spacing:4.968000px;}
.ws6_c00342{word-spacing:5.040000px;}
.ws36_c00342{word-spacing:5.688000px;}
.ws1e_c00342{word-spacing:6.719760px;}
.ws20_c00342{word-spacing:6.840000px;}
.ws1d_c00342{word-spacing:6.983280px;}
.ws2b_c00342{word-spacing:6.984000px;}
.ws1f_c00342{word-spacing:7.115040px;}
.ws25_c00342{word-spacing:7.444440px;}
.ws3b_c00342{word-spacing:8.893800px;}
.ws3c_c00342{word-spacing:9.157320px;}
.ws3a_c00342{word-spacing:9.223200px;}
.wsd_c00342{word-spacing:10.008000px;}
.ws38_c00342{word-spacing:10.343160px;}
.ws2c_c00342{word-spacing:12.096000px;}
.ws2d_c00342{word-spacing:12.168000px;}
.ws2e_c00342{word-spacing:12.240000px;}
.ws18_c00342{word-spacing:12.528000px;}
.ws2a_c00342{word-spacing:13.320000px;}
.ws33_c00342{word-spacing:13.680000px;}
.ws32_c00342{word-spacing:13.968000px;}
.ws30_c00342{word-spacing:25.056000px;}
.ws31_c00342{word-spacing:25.560000px;}
.ws11_c00342{word-spacing:26.208000px;}
.wsc_c00342{word-spacing:29.880000px;}
._0_c00342{margin-left:-1.584000px;}
._1_c00342{width:1.195200px;}
._2_c00342{width:24.114960px;}
.fc2_c00342{color:transparent;}
.fc1_c00342{color:rgb(0,0,0);}
.fc0_c00342{color:rgb(35,31,32);}
.fs1_c00342{font-size:65.880000px;}
.fs0_c00342{font-size:72.000000px;}
.y0_c00342{bottom:0.000000px;}
.y1_c00342{bottom:61.748550px;}
.y3d_c00342{bottom:123.427290px;}
.y3c_c00342{bottom:151.870980px;}
.y3b_c00342{bottom:180.397020px;}
.y1d_c00342{bottom:189.944400px;}
.y3a_c00342{bottom:208.840710px;}
.y1c_c00342{bottom:220.994400px;}
.y39_c00342{bottom:237.284400px;}
.y1b_c00342{bottom:252.044400px;}
.y38_c00342{bottom:298.214250px;}
.y1a_c00342{bottom:314.051610px;}
.y37_c00342{bottom:329.264250px;}
.y19_c00342{bottom:343.747020px;}
.y36_c00342{bottom:360.314250px;}
.y18_c00342{bottom:372.190710px;}
.y17_c00342{bottom:400.634400px;}
.y35_c00342{bottom:420.970710px;}
.y34_c00342{bottom:449.414400px;}
.y16_c00342{bottom:461.564400px;}
.y15_c00342{bottom:492.614400px;}
.y33_c00342{bottom:510.344400px;}
.y14_c00342{bottom:523.664400px;}
.y32_c00342{bottom:541.394400px;}
.y13_c00342{bottom:554.714400px;}
.y31_c00342{bottom:572.444400px;}
.y30_c00342{bottom:603.494400px;}
.y12_c00342{bottom:616.732800px;}
.y2f_c00342{bottom:634.544400px;}
.y11_c00342{bottom:646.428210px;}
.y10_c00342{bottom:674.954250px;}
.y2e_c00342{bottom:696.644400px;}
.y2d_c00342{bottom:727.694400px;}
.yf_c00342{bottom:735.884250px;}
.y2c_c00342{bottom:758.744400px;}
.ye_c00342{bottom:766.934250px;}
.y2b_c00342{bottom:789.794400px;}
.yd_c00342{bottom:797.984250px;}
.y2a_c00342{bottom:820.844400px;}
.yc_c00342{bottom:828.944250px;}
.yb_c00342{bottom:859.994250px;}
.y29_c00342{bottom:881.488230px;}
.ya_c00342{bottom:891.044250px;}
.y28_c00342{bottom:909.931920px;}
.y27_c00342{bottom:938.457960px;}
.y9_c00342{bottom:953.504400px;}
.y26_c00342{bottom:968.334540px;}
.y8_c00342{bottom:984.734400px;}
.y25_c00342{bottom:997.140570px;}
.y7_c00342{bottom:1015.784400px;}
.y24_c00342{bottom:1025.584260px;}
.y6_c00342{bottom:1046.834400px;}
.y23_c00342{bottom:1054.027950px;}
.y5_c00342{bottom:1077.794400px;}
.y22_c00342{bottom:1084.003350px;}
.y4_c00342{bottom:1108.934400px;}
.y21_c00342{bottom:1112.710560px;}
.y1f_c00342{bottom:1139.984400px;}
.y3_c00342{bottom:1139.984550px;}
.y20_c00342{bottom:1141.154250px;}
.y1e_c00342{bottom:1193.174400px;}
.y2_c00342{bottom:1193.174550px;}
.h2_c00342{height:50.400000px;}
.h8_c00342{height:54.331699px;}
.h5_c00342{height:71.413920px;}
.h3_c00342{height:76.824000px;}
.h6_c00342{height:78.014400px;}
.h4_c00342{height:78.048000px;}
.h7_c00342{height:78.059160px;}
.h0_c00342{height:1262.835000px;}
.h1_c00342{height:1263.000000px;}
.w2_c00342{width:0.000000px;}
.w3_c00342{width:0.066000px;}
.w0_c00342{width:892.914000px;}
.w1_c00342{width:893.250000px;}
.x1_c00342{left:-838.913400px;}
.x2_c00342{left:-765.293400px;}
.x4_c00342{left:-743.963400px;}
.x3_c00342{left:-733.343400px;}
.x0_c00342{left:0.000000px;}
.x8_c00342{left:127.621350px;}
.x7_c00342{left:148.950000px;}
.x9_c00342{left:159.570000px;}
.x6_c00342{left:679.950000px;}
.x5_c00342{left:804.366150px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls13_c00342{letter-spacing:-0.256000pt;}
.ls12_c00342{letter-spacing:-0.064000pt;}
.ls10_c00342{letter-spacing:-0.058560pt;}
.lsf_c00342{letter-spacing:0.000000pt;}
.ls11_c00342{letter-spacing:0.058560pt;}
.ls0_c00342{letter-spacing:0.064000pt;}
.ls3_c00342{letter-spacing:0.128000pt;}
.ls5_c00342{letter-spacing:0.175680pt;}
.ls8_c00342{letter-spacing:14.299072pt;}
.ls9_c00342{letter-spacing:14.304928pt;}
.ls7_c00342{letter-spacing:14.467904pt;}
.ls6_c00342{letter-spacing:15.869760pt;}
.lsc_c00342{letter-spacing:16.640000pt;}
.ls4_c00342{letter-spacing:17.280000pt;}
.ls1_c00342{letter-spacing:19.328000pt;}
.lsb_c00342{letter-spacing:22.080000pt;}
.lsa_c00342{letter-spacing:27.968000pt;}
.lse_c00342{letter-spacing:28.160000pt;}
.ls2_c00342{letter-spacing:38.720000pt;}
.lsd_c00342{letter-spacing:38.848000pt;}
.ws1_c00342{word-spacing:-16.064000pt;}
.ws0_c00342{word-spacing:-16.000000pt;}
.ws3_c00342{word-spacing:-14.640000pt;}
.ws34_c00342{word-spacing:-0.384000pt;}
.ws1b_c00342{word-spacing:-0.128000pt;}
.ws17_c00342{word-spacing:-0.117120pt;}
.ws13_c00342{word-spacing:-0.064000pt;}
.ws4_c00342{word-spacing:0.000000pt;}
.ws23_c00342{word-spacing:0.058560pt;}
.ws28_c00342{word-spacing:0.117120pt;}
.ws14_c00342{word-spacing:0.234240pt;}
.ws12_c00342{word-spacing:0.576000pt;}
.ws2f_c00342{word-spacing:0.832000pt;}
.ws16_c00342{word-spacing:0.878400pt;}
.ws10_c00342{word-spacing:0.896000pt;}
.wsf_c00342{word-spacing:0.960000pt;}
.ws27_c00342{word-spacing:0.995520pt;}
.ws15_c00342{word-spacing:1.112640pt;}
.ws24_c00342{word-spacing:1.405440pt;}
.ws1c_c00342{word-spacing:1.522560pt;}
.ws19_c00342{word-spacing:1.600000pt;}
.ws2_c00342{word-spacing:1.745088pt;}
.ws8_c00342{word-spacing:1.920000pt;}
.ws22_c00342{word-spacing:2.166720pt;}
.ws1a_c00342{word-spacing:2.240000pt;}
.ws21_c00342{word-spacing:2.400960pt;}
.ws7_c00342{word-spacing:2.496000pt;}
.wsb_c00342{word-spacing:2.560000pt;}
.ws29_c00342{word-spacing:2.816000pt;}
.wse_c00342{word-spacing:2.880000pt;}
.wsa_c00342{word-spacing:3.136000pt;}
.ws35_c00342{word-spacing:3.396480pt;}
.ws9_c00342{word-spacing:3.520000pt;}
.ws39_c00342{word-spacing:3.630720pt;}
.ws37_c00342{word-spacing:3.776000pt;}
.ws26_c00342{word-spacing:3.982080pt;}
.ws5_c00342{word-spacing:4.416000pt;}
.ws6_c00342{word-spacing:4.480000pt;}
.ws36_c00342{word-spacing:5.056000pt;}
.ws1e_c00342{word-spacing:5.973120pt;}
.ws20_c00342{word-spacing:6.080000pt;}
.ws1d_c00342{word-spacing:6.207360pt;}
.ws2b_c00342{word-spacing:6.208000pt;}
.ws1f_c00342{word-spacing:6.324480pt;}
.ws25_c00342{word-spacing:6.617280pt;}
.ws3b_c00342{word-spacing:7.905600pt;}
.ws3c_c00342{word-spacing:8.139840pt;}
.ws3a_c00342{word-spacing:8.198400pt;}
.wsd_c00342{word-spacing:8.896000pt;}
.ws38_c00342{word-spacing:9.193920pt;}
.ws2c_c00342{word-spacing:10.752000pt;}
.ws2d_c00342{word-spacing:10.816000pt;}
.ws2e_c00342{word-spacing:10.880000pt;}
.ws18_c00342{word-spacing:11.136000pt;}
.ws2a_c00342{word-spacing:11.840000pt;}
.ws33_c00342{word-spacing:12.160000pt;}
.ws32_c00342{word-spacing:12.416000pt;}
.ws30_c00342{word-spacing:22.272000pt;}
.ws31_c00342{word-spacing:22.720000pt;}
.ws11_c00342{word-spacing:23.296000pt;}
.wsc_c00342{word-spacing:26.560000pt;}
._0_c00342{margin-left:-1.408000pt;}
._1_c00342{width:1.062400pt;}
._2_c00342{width:21.435520pt;}
.fs1_c00342{font-size:58.560000pt;}
.fs0_c00342{font-size:64.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y1_c00342{bottom:54.887600pt;}
.y3d_c00342{bottom:109.713147pt;}
.y3c_c00342{bottom:134.996427pt;}
.y3b_c00342{bottom:160.352907pt;}
.y1d_c00342{bottom:168.839467pt;}
.y3a_c00342{bottom:185.636187pt;}
.y1c_c00342{bottom:196.439467pt;}
.y39_c00342{bottom:210.919467pt;}
.y1b_c00342{bottom:224.039467pt;}
.y38_c00342{bottom:265.079333pt;}
.y1a_c00342{bottom:279.156987pt;}
.y37_c00342{bottom:292.679333pt;}
.y19_c00342{bottom:305.552907pt;}
.y36_c00342{bottom:320.279333pt;}
.y18_c00342{bottom:330.836187pt;}
.y17_c00342{bottom:356.119467pt;}
.y35_c00342{bottom:374.196187pt;}
.y34_c00342{bottom:399.479467pt;}
.y16_c00342{bottom:410.279467pt;}
.y15_c00342{bottom:437.879467pt;}
.y33_c00342{bottom:453.639467pt;}
.y14_c00342{bottom:465.479467pt;}
.y32_c00342{bottom:481.239467pt;}
.y13_c00342{bottom:493.079467pt;}
.y31_c00342{bottom:508.839467pt;}
.y30_c00342{bottom:536.439467pt;}
.y12_c00342{bottom:548.206933pt;}
.y2f_c00342{bottom:564.039467pt;}
.y11_c00342{bottom:574.602853pt;}
.y10_c00342{bottom:599.959333pt;}
.y2e_c00342{bottom:619.239467pt;}
.y2d_c00342{bottom:646.839467pt;}
.yf_c00342{bottom:654.119333pt;}
.y2c_c00342{bottom:674.439467pt;}
.ye_c00342{bottom:681.719333pt;}
.y2b_c00342{bottom:702.039467pt;}
.yd_c00342{bottom:709.319333pt;}
.y2a_c00342{bottom:729.639467pt;}
.yc_c00342{bottom:736.839333pt;}
.yb_c00342{bottom:764.439333pt;}
.y29_c00342{bottom:783.545093pt;}
.ya_c00342{bottom:792.039333pt;}
.y28_c00342{bottom:808.828373pt;}
.y27_c00342{bottom:834.184853pt;}
.y9_c00342{bottom:847.559467pt;}
.y26_c00342{bottom:860.741813pt;}
.y8_c00342{bottom:875.319467pt;}
.y25_c00342{bottom:886.347173pt;}
.y7_c00342{bottom:902.919467pt;}
.y24_c00342{bottom:911.630453pt;}
.y6_c00342{bottom:930.519467pt;}
.y23_c00342{bottom:936.913733pt;}
.y5_c00342{bottom:958.039467pt;}
.y22_c00342{bottom:963.558533pt;}
.y4_c00342{bottom:985.719467pt;}
.y21_c00342{bottom:989.076053pt;}
.y1f_c00342{bottom:1013.319467pt;}
.y3_c00342{bottom:1013.319600pt;}
.y20_c00342{bottom:1014.359333pt;}
.y1e_c00342{bottom:1060.599467pt;}
.y2_c00342{bottom:1060.599600pt;}
.h2_c00342{height:44.800000pt;}
.h8_c00342{height:48.294844pt;}
.h5_c00342{height:63.479040pt;}
.h3_c00342{height:68.288000pt;}
.h6_c00342{height:69.346133pt;}
.h4_c00342{height:69.376000pt;}
.h7_c00342{height:69.385920pt;}
.h0_c00342{height:1122.520000pt;}
.h1_c00342{height:1122.666667pt;}
.w2_c00342{width:0.000000pt;}
.w3_c00342{width:0.058667pt;}
.w0_c00342{width:793.701333pt;}
.w1_c00342{width:794.000000pt;}
.x1_c00342{left:-745.700800pt;}
.x2_c00342{left:-680.260800pt;}
.x4_c00342{left:-661.300800pt;}
.x3_c00342{left:-651.860800pt;}
.x0_c00342{left:0.000000pt;}
.x8_c00342{left:113.441200pt;}
.x7_c00342{left:132.400000pt;}
.x9_c00342{left:141.840000pt;}
.x6_c00342{left:604.400000pt;}
.x5_c00342{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_97280df7fd60d195e89901ad.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_701fe7dee8ef4745b28bc775.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00343;src:url('chunks/assets/font_2b102bb179a42deee1a85c0c.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00343{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.ls6_c00343{letter-spacing:-0.216000px;}
.ls4_c00343{letter-spacing:-0.072000px;}
.ls3_c00343{letter-spacing:-0.065880px;}
.ls2_c00343{letter-spacing:0.000000px;}
.ls0_c00343{letter-spacing:0.072000px;}
.ls5_c00343{letter-spacing:0.144000px;}
.ls1_c00343{letter-spacing:0.197640px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00343{word-spacing:-18.000000px;}
.ws13_c00343{word-spacing:-0.360000px;}
.ws5_c00343{word-spacing:-0.131760px;}
.wsf_c00343{word-spacing:-0.072000px;}
.ws3_c00343{word-spacing:0.000000px;}
.ws17_c00343{word-spacing:0.065880px;}
.ws8_c00343{word-spacing:0.072000px;}
.ws6_c00343{word-spacing:0.131760px;}
.wse_c00343{word-spacing:0.216000px;}
.wsc_c00343{word-spacing:1.008000px;}
.wsd_c00343{word-spacing:1.080000px;}
.ws18_c00343{word-spacing:1.251720px;}
.ws2_c00343{word-spacing:1.512000px;}
.ws1c_c00343{word-spacing:1.800000px;}
.ws15_c00343{word-spacing:2.437560px;}
.wsa_c00343{word-spacing:7.488000px;}
.wsb_c00343{word-spacing:7.848000px;}
.ws1e_c00343{word-spacing:10.008000px;}
.ws1b_c00343{word-spacing:10.440000px;}
.ws19_c00343{word-spacing:10.672560px;}
.ws1a_c00343{word-spacing:10.800000px;}
.ws1d_c00343{word-spacing:12.600000px;}
.ws10_c00343{word-spacing:15.350040px;}
.ws11_c00343{word-spacing:15.613560px;}
.ws7_c00343{word-spacing:16.799400px;}
.ws14_c00343{word-spacing:18.512280px;}
.ws4_c00343{word-spacing:18.720000px;}
.ws16_c00343{word-spacing:18.973440px;}
.ws1_c00343{word-spacing:20.592000px;}
.ws9_c00343{word-spacing:20.808000px;}
.ws12_c00343{word-spacing:22.608000px;}
._0_c00343{margin-left:-1.080000px;}
._1_c00343{width:1.130976px;}
._3_c00343{width:17.856000px;}
._2_c00343{width:21.024000px;}
._4_c00343{width:122.400000px;}
.fc1_c00343{color:rgb(0,0,0);}
.fc0_c00343{color:rgb(35,31,32);}
.fs1_c00343{font-size:65.880000px;}
.fs0_c00343{font-size:72.000000px;}
.y0_c00343{bottom:0.000000px;}
.y1_c00343{bottom:61.748550px;}
.y1d_c00343{bottom:112.814400px;}
.y1c_c00343{bottom:143.864400px;}
.y1b_c00343{bottom:205.784400px;}
.y1a_c00343{bottom:268.064400px;}
.y19_c00343{bottom:299.114400px;}
.y18_c00343{bottom:330.164400px;}
.y17_c00343{bottom:361.214400px;}
.y16_c00343{bottom:392.264400px;}
.y15_c00343{bottom:452.913600px;}
.y14_c00343{bottom:481.439640px;}
.y13_c00343{bottom:509.883330px;}
.y12_c00343{bottom:538.327020px;}
.y11_c00343{bottom:566.770710px;}
.y10_c00343{bottom:595.214400px;}
.yf_c00343{bottom:656.144250px;}
.ye_c00343{bottom:687.194250px;}
.yd_c00343{bottom:747.940560px;}
.yc_c00343{bottom:776.384250px;}
.yb_c00343{bottom:837.314400px;}
.ya_c00343{bottom:868.364400px;}
.y9_c00343{bottom:899.414400px;}
.y8_c00343{bottom:930.464400px;}
.y7_c00343{bottom:991.117020px;}
.y6_c00343{bottom:1019.560710px;}
.y5_c00343{bottom:1048.004400px;}
.y4_c00343{bottom:1108.934400px;}
.y3_c00343{bottom:1139.984400px;}
.y2_c00343{bottom:1193.174400px;}
.h2_c00343{height:50.400000px;}
.h4_c00343{height:71.413920px;}
.h3_c00343{height:76.824000px;}
.h5_c00343{height:78.048000px;}
.h0_c00343{height:1262.835000px;}
.h1_c00343{height:1263.000000px;}
.w0_c00343{width:892.914000px;}
.w1_c00343{width:893.250000px;}
.x0_c00343{left:0.000000px;}
.x1_c00343{left:54.000000px;}
.x2_c00343{left:127.620000px;}
.x4_c00343{left:148.950000px;}
.x3_c00343{left:159.570000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls6_c00343{letter-spacing:-0.192000pt;}
.ls4_c00343{letter-spacing:-0.064000pt;}
.ls3_c00343{letter-spacing:-0.058560pt;}
.ls2_c00343{letter-spacing:0.000000pt;}
.ls0_c00343{letter-spacing:0.064000pt;}
.ls5_c00343{letter-spacing:0.128000pt;}
.ls1_c00343{letter-spacing:0.175680pt;}
.ws0_c00343{word-spacing:-16.000000pt;}
.ws13_c00343{word-spacing:-0.320000pt;}
.ws5_c00343{word-spacing:-0.117120pt;}
.wsf_c00343{word-spacing:-0.064000pt;}
.ws3_c00343{word-spacing:0.000000pt;}
.ws17_c00343{word-spacing:0.058560pt;}
.ws8_c00343{word-spacing:0.064000pt;}
.ws6_c00343{word-spacing:0.117120pt;}
.wse_c00343{word-spacing:0.192000pt;}
.wsc_c00343{word-spacing:0.896000pt;}
.wsd_c00343{word-spacing:0.960000pt;}
.ws18_c00343{word-spacing:1.112640pt;}
.ws2_c00343{word-spacing:1.344000pt;}
.ws1c_c00343{word-spacing:1.600000pt;}
.ws15_c00343{word-spacing:2.166720pt;}
.wsa_c00343{word-spacing:6.656000pt;}
.wsb_c00343{word-spacing:6.976000pt;}
.ws1e_c00343{word-spacing:8.896000pt;}
.ws1b_c00343{word-spacing:9.280000pt;}
.ws19_c00343{word-spacing:9.486720pt;}
.ws1a_c00343{word-spacing:9.600000pt;}
.ws1d_c00343{word-spacing:11.200000pt;}
.ws10_c00343{word-spacing:13.644480pt;}
.ws11_c00343{word-spacing:13.878720pt;}
.ws7_c00343{word-spacing:14.932800pt;}
.ws14_c00343{word-spacing:16.455360pt;}
.ws4_c00343{word-spacing:16.640000pt;}
.ws16_c00343{word-spacing:16.865280pt;}
.ws1_c00343{word-spacing:18.304000pt;}
.ws9_c00343{word-spacing:18.496000pt;}
.ws12_c00343{word-spacing:20.096000pt;}
._0_c00343{margin-left:-0.960000pt;}
._1_c00343{width:1.005312pt;}
._3_c00343{width:15.872000pt;}
._2_c00343{width:18.688000pt;}
._4_c00343{width:108.800000pt;}
.fs1_c00343{font-size:58.560000pt;}
.fs0_c00343{font-size:64.000000pt;}
.y0_c00343{bottom:0.000000pt;}
.y1_c00343{bottom:54.887600pt;}
.y1d_c00343{bottom:100.279467pt;}
.y1c_c00343{bottom:127.879467pt;}
.y1b_c00343{bottom:182.919467pt;}
.y1a_c00343{bottom:238.279467pt;}
.y19_c00343{bottom:265.879467pt;}
.y18_c00343{bottom:293.479467pt;}
.y17_c00343{bottom:321.079467pt;}
.y16_c00343{bottom:348.679467pt;}
.y15_c00343{bottom:402.589867pt;}
.y14_c00343{bottom:427.946347pt;}
.y13_c00343{bottom:453.229627pt;}
.y12_c00343{bottom:478.512907pt;}
.y11_c00343{bottom:503.796187pt;}
.y10_c00343{bottom:529.079467pt;}
.yf_c00343{bottom:583.239333pt;}
.ye_c00343{bottom:610.839333pt;}
.yd_c00343{bottom:664.836053pt;}
.yc_c00343{bottom:690.119333pt;}
.yb_c00343{bottom:744.279467pt;}
.ya_c00343{bottom:771.879467pt;}
.y9_c00343{bottom:799.479467pt;}
.y8_c00343{bottom:827.079467pt;}
.y7_c00343{bottom:880.992907pt;}
.y6_c00343{bottom:906.276187pt;}
.y5_c00343{bottom:931.559467pt;}
.y4_c00343{bottom:985.719467pt;}
.y3_c00343{bottom:1013.319467pt;}
.y2_c00343{bottom:1060.599467pt;}
.h2_c00343{height:44.800000pt;}
.h4_c00343{height:63.479040pt;}
.h3_c00343{height:68.288000pt;}
.h5_c00343{height:69.376000pt;}
.h0_c00343{height:1122.520000pt;}
.h1_c00343{height:1122.666667pt;}
.w0_c00343{width:793.701333pt;}
.w1_c00343{width:794.000000pt;}
.x0_c00343{left:0.000000pt;}
.x1_c00343{left:48.000000pt;}
.x2_c00343{left:113.440000pt;}
.x4_c00343{left:132.400000pt;}
.x3_c00343{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00344;src:url('chunks/assets/font_fa611a3093240d6906c454b2.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_c48406a541f062367a9f2b84.woff2')format("woff");}.ff3_c00344{font-family:ff3_c00344;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00344;src:url('chunks/assets/font_37561211946601312ec01beb.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00344;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00344{font-family:ff5_c00344;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00344;src:url('chunks/assets/font_46d0ddbe6d8935a42f7b3265.woff2')format("woff");}.ff6_c00344{font-family:ff6_c00344;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00344;src:url('chunks/assets/font_7ba7b5106eeee964b08f5fab.woff2')format("woff");}.ff7_c00344{font-family:ff7_c00344;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00344;src:url('chunks/assets/font_dcc8990e4d5e2c573caf8bc3.woff2')format("woff");}.ff8_c00344{font-family:ff8_c00344;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00344;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff9_c00344{font-family:ff9_c00344;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00344{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.ls8_c00344{letter-spacing:-0.329400px;}
.ls7_c00344{letter-spacing:-0.216000px;}
.ls5_c00344{letter-spacing:-0.072000px;}
.ls4_c00344{letter-spacing:-0.065880px;}
.ls3_c00344{letter-spacing:0.000000px;}
.ls0_c00344{letter-spacing:0.072000px;}
.ls6_c00344{letter-spacing:0.144000px;}
.ls1_c00344{letter-spacing:0.197640px;}
.ls2_c00344{letter-spacing:17.932536px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00344{word-spacing:-18.000000px;}
.ws4_c00344{word-spacing:-17.784000px;}
.ws5_c00344{word-spacing:-16.470000px;}
.ws6_c00344{word-spacing:-16.140600px;}
.ws18_c00344{word-spacing:-0.360000px;}
.wsb_c00344{word-spacing:-0.131760px;}
.ws14_c00344{word-spacing:-0.072000px;}
.ws9_c00344{word-spacing:0.000000px;}
.ws1c_c00344{word-spacing:0.065880px;}
.wse_c00344{word-spacing:0.072000px;}
.wsc_c00344{word-spacing:0.131760px;}
.ws13_c00344{word-spacing:0.216000px;}
.ws7_c00344{word-spacing:0.360000px;}
.ws24_c00344{word-spacing:0.936000px;}
.ws3_c00344{word-spacing:1.008000px;}
.ws12_c00344{word-spacing:1.080000px;}
.ws1d_c00344{word-spacing:1.251720px;}
.ws2_c00344{word-spacing:1.512000px;}
.ws29_c00344{word-spacing:1.712880px;}
.ws21_c00344{word-spacing:1.800000px;}
.ws31_c00344{word-spacing:1.976400px;}
.ws2a_c00344{word-spacing:2.305800px;}
.ws1a_c00344{word-spacing:2.437560px;}
.ws2b_c00344{word-spacing:3.491640px;}
.ws2c_c00344{word-spacing:3.755160px;}
.ws32_c00344{word-spacing:4.248000px;}
.ws30_c00344{word-spacing:4.941000px;}
.ws2e_c00344{word-spacing:5.204520px;}
.ws36_c00344{word-spacing:5.400000px;}
.ws2f_c00344{word-spacing:5.995080px;}
.ws34_c00344{word-spacing:6.408000px;}
.ws33_c00344{word-spacing:6.480000px;}
.ws8_c00344{word-spacing:6.785640px;}
.ws38_c00344{word-spacing:7.444440px;}
.ws10_c00344{word-spacing:7.488000px;}
.ws2d_c00344{word-spacing:7.839720px;}
.ws11_c00344{word-spacing:7.848000px;}
.ws37_c00344{word-spacing:9.720000px;}
.ws23_c00344{word-spacing:10.008000px;}
.ws26_c00344{word-spacing:10.080000px;}
.ws20_c00344{word-spacing:10.440000px;}
.ws1e_c00344{word-spacing:10.672560px;}
.ws25_c00344{word-spacing:10.728000px;}
.ws1f_c00344{word-spacing:10.800000px;}
.ws22_c00344{word-spacing:12.600000px;}
.ws39_c00344{word-spacing:14.976000px;}
.ws3a_c00344{word-spacing:15.048000px;}
.ws15_c00344{word-spacing:15.350040px;}
.ws16_c00344{word-spacing:15.613560px;}
.ws35_c00344{word-spacing:16.200000px;}
.wsd_c00344{word-spacing:16.799400px;}
.ws19_c00344{word-spacing:18.512280px;}
.ws27_c00344{word-spacing:18.648000px;}
.wsa_c00344{word-spacing:18.720000px;}
.ws1b_c00344{word-spacing:18.973440px;}
.ws1_c00344{word-spacing:20.592000px;}
.wsf_c00344{word-spacing:20.808000px;}
.ws3b_c00344{word-spacing:21.960000px;}
.ws28_c00344{word-spacing:22.201560px;}
.ws17_c00344{word-spacing:22.608000px;}
._0_c00344{margin-left:-1.080000px;}
._1_c00344{width:1.130976px;}
._3_c00344{width:17.856000px;}
._2_c00344{width:21.024000px;}
._5_c00344{width:32.097600px;}
._4_c00344{width:122.400000px;}
.fc2_c00344{color:transparent;}
.fc1_c00344{color:rgb(0,0,0);}
.fc0_c00344{color:rgb(35,31,32);}
.fs1_c00344{font-size:65.880000px;}
.fs0_c00344{font-size:72.000000px;}
.y0_c00344{bottom:0.000000px;}
.y1_c00344{bottom:61.748550px;}
.y1d_c00344{bottom:112.814400px;}
.y3b_c00344{bottom:118.844400px;}
.y1c_c00344{bottom:143.864400px;}
.y3a_c00344{bottom:149.894400px;}
.y39_c00344{bottom:180.944400px;}
.y1b_c00344{bottom:205.784400px;}
.y38_c00344{bottom:241.608360px;}
.y1a_c00344{bottom:268.064400px;}
.y37_c00344{bottom:270.134400px;}
.y19_c00344{bottom:299.114400px;}
.y18_c00344{bottom:330.164400px;}
.y36_c00344{bottom:330.974250px;}
.y17_c00344{bottom:361.214400px;}
.y35_c00344{bottom:362.024250px;}
.y16_c00344{bottom:392.264400px;}
.y34_c00344{bottom:392.984250px;}
.y33_c00344{bottom:424.124250px;}
.y15_c00344{bottom:452.913600px;}
.y32_c00344{bottom:455.174250px;}
.y14_c00344{bottom:481.439640px;}
.y31_c00344{bottom:486.224250px;}
.y13_c00344{bottom:509.883330px;}
.y30_c00344{bottom:517.274250px;}
.y12_c00344{bottom:538.327020px;}
.y11_c00344{bottom:566.770710px;}
.y2f_c00344{bottom:577.934400px;}
.y10_c00344{bottom:595.214400px;}
.y2e_c00344{bottom:606.460440px;}
.y2d_c00344{bottom:634.904130px;}
.yf_c00344{bottom:656.144250px;}
.y2c_c00344{bottom:663.347820px;}
.ye_c00344{bottom:687.194250px;}
.y2b_c00344{bottom:691.791510px;}
.y2a_c00344{bottom:721.766910px;}
.yd_c00344{bottom:747.940560px;}
.y29_c00344{bottom:750.474120px;}
.yc_c00344{bottom:776.384250px;}
.y28_c00344{bottom:779.000160px;}
.yb_c00344{bottom:837.314400px;}
.y27_c00344{bottom:838.473330px;}
.y26_c00344{bottom:866.917020px;}
.ya_c00344{bottom:868.364400px;}
.y25_c00344{bottom:895.360710px;}
.y9_c00344{bottom:899.414400px;}
.y24_c00344{bottom:923.804400px;}
.y8_c00344{bottom:930.464400px;}
.y23_c00344{bottom:984.734400px;}
.y7_c00344{bottom:991.117020px;}
.y22_c00344{bottom:1015.784400px;}
.y6_c00344{bottom:1019.560710px;}
.y21_c00344{bottom:1046.834400px;}
.y5_c00344{bottom:1048.004400px;}
.y20_c00344{bottom:1077.884400px;}
.y4_c00344{bottom:1108.934400px;}
.y1f_c00344{bottom:1139.984400px;}
.y3_c00344{bottom:1139.984550px;}
.y1e_c00344{bottom:1193.174400px;}
.y2_c00344{bottom:1193.174550px;}
.h2_c00344{height:50.400000px;}
.h6_c00344{height:54.331699px;}
.h4_c00344{height:71.413920px;}
.h3_c00344{height:76.824000px;}
.h5_c00344{height:78.048000px;}
.h0_c00344{height:1262.835000px;}
.h1_c00344{height:1263.000000px;}
.w2_c00344{width:0.000000px;}
.w3_c00344{width:0.066000px;}
.w0_c00344{width:892.914000px;}
.w1_c00344{width:893.250000px;}
.x1_c00344{left:-838.913400px;}
.x2_c00344{left:-765.293400px;}
.x4_c00344{left:-743.963400px;}
.x3_c00344{left:-733.343400px;}
.x0_c00344{left:0.000000px;}
.x7_c00344{left:127.620000px;}
.x8_c00344{left:148.950000px;}
.x9_c00344{left:159.570000px;}
.x6_c00344{left:679.950000px;}
.x5_c00344{left:804.366150px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls8_c00344{letter-spacing:-0.292800pt;}
.ls7_c00344{letter-spacing:-0.192000pt;}
.ls5_c00344{letter-spacing:-0.064000pt;}
.ls4_c00344{letter-spacing:-0.058560pt;}
.ls3_c00344{letter-spacing:0.000000pt;}
.ls0_c00344{letter-spacing:0.064000pt;}
.ls6_c00344{letter-spacing:0.128000pt;}
.ls1_c00344{letter-spacing:0.175680pt;}
.ls2_c00344{letter-spacing:15.940032pt;}
.ws0_c00344{word-spacing:-16.000000pt;}
.ws4_c00344{word-spacing:-15.808000pt;}
.ws5_c00344{word-spacing:-14.640000pt;}
.ws6_c00344{word-spacing:-14.347200pt;}
.ws18_c00344{word-spacing:-0.320000pt;}
.wsb_c00344{word-spacing:-0.117120pt;}
.ws14_c00344{word-spacing:-0.064000pt;}
.ws9_c00344{word-spacing:0.000000pt;}
.ws1c_c00344{word-spacing:0.058560pt;}
.wse_c00344{word-spacing:0.064000pt;}
.wsc_c00344{word-spacing:0.117120pt;}
.ws13_c00344{word-spacing:0.192000pt;}
.ws7_c00344{word-spacing:0.320000pt;}
.ws24_c00344{word-spacing:0.832000pt;}
.ws3_c00344{word-spacing:0.896000pt;}
.ws12_c00344{word-spacing:0.960000pt;}
.ws1d_c00344{word-spacing:1.112640pt;}
.ws2_c00344{word-spacing:1.344000pt;}
.ws29_c00344{word-spacing:1.522560pt;}
.ws21_c00344{word-spacing:1.600000pt;}
.ws31_c00344{word-spacing:1.756800pt;}
.ws2a_c00344{word-spacing:2.049600pt;}
.ws1a_c00344{word-spacing:2.166720pt;}
.ws2b_c00344{word-spacing:3.103680pt;}
.ws2c_c00344{word-spacing:3.337920pt;}
.ws32_c00344{word-spacing:3.776000pt;}
.ws30_c00344{word-spacing:4.392000pt;}
.ws2e_c00344{word-spacing:4.626240pt;}
.ws36_c00344{word-spacing:4.800000pt;}
.ws2f_c00344{word-spacing:5.328960pt;}
.ws34_c00344{word-spacing:5.696000pt;}
.ws33_c00344{word-spacing:5.760000pt;}
.ws8_c00344{word-spacing:6.031680pt;}
.ws38_c00344{word-spacing:6.617280pt;}
.ws10_c00344{word-spacing:6.656000pt;}
.ws2d_c00344{word-spacing:6.968640pt;}
.ws11_c00344{word-spacing:6.976000pt;}
.ws37_c00344{word-spacing:8.640000pt;}
.ws23_c00344{word-spacing:8.896000pt;}
.ws26_c00344{word-spacing:8.960000pt;}
.ws20_c00344{word-spacing:9.280000pt;}
.ws1e_c00344{word-spacing:9.486720pt;}
.ws25_c00344{word-spacing:9.536000pt;}
.ws1f_c00344{word-spacing:9.600000pt;}
.ws22_c00344{word-spacing:11.200000pt;}
.ws39_c00344{word-spacing:13.312000pt;}
.ws3a_c00344{word-spacing:13.376000pt;}
.ws15_c00344{word-spacing:13.644480pt;}
.ws16_c00344{word-spacing:13.878720pt;}
.ws35_c00344{word-spacing:14.400000pt;}
.wsd_c00344{word-spacing:14.932800pt;}
.ws19_c00344{word-spacing:16.455360pt;}
.ws27_c00344{word-spacing:16.576000pt;}
.wsa_c00344{word-spacing:16.640000pt;}
.ws1b_c00344{word-spacing:16.865280pt;}
.ws1_c00344{word-spacing:18.304000pt;}
.wsf_c00344{word-spacing:18.496000pt;}
.ws3b_c00344{word-spacing:19.520000pt;}
.ws28_c00344{word-spacing:19.734720pt;}
.ws17_c00344{word-spacing:20.096000pt;}
._0_c00344{margin-left:-0.960000pt;}
._1_c00344{width:1.005312pt;}
._3_c00344{width:15.872000pt;}
._2_c00344{width:18.688000pt;}
._5_c00344{width:28.531200pt;}
._4_c00344{width:108.800000pt;}
.fs1_c00344{font-size:58.560000pt;}
.fs0_c00344{font-size:64.000000pt;}
.y0_c00344{bottom:0.000000pt;}
.y1_c00344{bottom:54.887600pt;}
.y1d_c00344{bottom:100.279467pt;}
.y3b_c00344{bottom:105.639467pt;}
.y1c_c00344{bottom:127.879467pt;}
.y3a_c00344{bottom:133.239467pt;}
.y39_c00344{bottom:160.839467pt;}
.y1b_c00344{bottom:182.919467pt;}
.y38_c00344{bottom:214.762987pt;}
.y1a_c00344{bottom:238.279467pt;}
.y37_c00344{bottom:240.119467pt;}
.y19_c00344{bottom:265.879467pt;}
.y18_c00344{bottom:293.479467pt;}
.y36_c00344{bottom:294.199333pt;}
.y17_c00344{bottom:321.079467pt;}
.y35_c00344{bottom:321.799333pt;}
.y16_c00344{bottom:348.679467pt;}
.y34_c00344{bottom:349.319333pt;}
.y33_c00344{bottom:376.999333pt;}
.y15_c00344{bottom:402.589867pt;}
.y32_c00344{bottom:404.599333pt;}
.y14_c00344{bottom:427.946347pt;}
.y31_c00344{bottom:432.199333pt;}
.y13_c00344{bottom:453.229627pt;}
.y30_c00344{bottom:459.799333pt;}
.y12_c00344{bottom:478.512907pt;}
.y11_c00344{bottom:503.796187pt;}
.y2f_c00344{bottom:513.719467pt;}
.y10_c00344{bottom:529.079467pt;}
.y2e_c00344{bottom:539.075947pt;}
.y2d_c00344{bottom:564.359227pt;}
.yf_c00344{bottom:583.239333pt;}
.y2c_c00344{bottom:589.642507pt;}
.ye_c00344{bottom:610.839333pt;}
.y2b_c00344{bottom:614.925787pt;}
.y2a_c00344{bottom:641.570587pt;}
.yd_c00344{bottom:664.836053pt;}
.y29_c00344{bottom:667.088107pt;}
.yc_c00344{bottom:690.119333pt;}
.y28_c00344{bottom:692.444587pt;}
.yb_c00344{bottom:744.279467pt;}
.y27_c00344{bottom:745.309627pt;}
.y26_c00344{bottom:770.592907pt;}
.ya_c00344{bottom:771.879467pt;}
.y25_c00344{bottom:795.876187pt;}
.y9_c00344{bottom:799.479467pt;}
.y24_c00344{bottom:821.159467pt;}
.y8_c00344{bottom:827.079467pt;}
.y23_c00344{bottom:875.319467pt;}
.y7_c00344{bottom:880.992907pt;}
.y22_c00344{bottom:902.919467pt;}
.y6_c00344{bottom:906.276187pt;}
.y21_c00344{bottom:930.519467pt;}
.y5_c00344{bottom:931.559467pt;}
.y20_c00344{bottom:958.119467pt;}
.y4_c00344{bottom:985.719467pt;}
.y1f_c00344{bottom:1013.319467pt;}
.y3_c00344{bottom:1013.319600pt;}
.y1e_c00344{bottom:1060.599467pt;}
.y2_c00344{bottom:1060.599600pt;}
.h2_c00344{height:44.800000pt;}
.h6_c00344{height:48.294844pt;}
.h4_c00344{height:63.479040pt;}
.h3_c00344{height:68.288000pt;}
.h5_c00344{height:69.376000pt;}
.h0_c00344{height:1122.520000pt;}
.h1_c00344{height:1122.666667pt;}
.w2_c00344{width:0.000000pt;}
.w3_c00344{width:0.058667pt;}
.w0_c00344{width:793.701333pt;}
.w1_c00344{width:794.000000pt;}
.x1_c00344{left:-745.700800pt;}
.x2_c00344{left:-680.260800pt;}
.x4_c00344{left:-661.300800pt;}
.x3_c00344{left:-651.860800pt;}
.x0_c00344{left:0.000000pt;}
.x7_c00344{left:113.440000pt;}
.x8_c00344{left:132.400000pt;}
.x9_c00344{left:141.840000pt;}
.x6_c00344{left:604.400000pt;}
.x5_c00344{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00345;src:url('chunks/assets/font_986d3a274ede6045f49b37fe.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00345;src:url('chunks/assets/font_e9dc2b047636f31b2bfeb03a.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.lsb_c00345{letter-spacing:-0.065880px;}
.lsa_c00345{letter-spacing:0.000000px;}
.lsc_c00345{letter-spacing:0.065880px;}
.ls3_c00345{letter-spacing:0.072000px;}
.ls8_c00345{letter-spacing:0.144000px;}
.ls1_c00345{letter-spacing:0.197640px;}
.ls7_c00345{letter-spacing:16.681320px;}
.ls9_c00345{letter-spacing:18.504000px;}
.ls2_c00345{letter-spacing:22.728600px;}
.ls5_c00345{letter-spacing:24.624000px;}
.ls6_c00345{letter-spacing:26.108244px;}
.ls4_c00345{letter-spacing:26.417880px;}
.ls0_c00345{letter-spacing:40.186800px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00345{word-spacing:-18.000000px;}
.ws1_c00345{word-spacing:-16.404120px;}
.ws12_c00345{word-spacing:-0.131760px;}
.ws1f_c00345{word-spacing:-0.072000px;}
.wsd_c00345{word-spacing:-0.065880px;}
.ws6_c00345{word-spacing:0.000000px;}
.ws11_c00345{word-spacing:0.131760px;}
.ws1c_c00345{word-spacing:0.216000px;}
.ws18_c00345{word-spacing:0.288000px;}
.ws17_c00345{word-spacing:0.360000px;}
.ws15_c00345{word-spacing:0.648000px;}
.ws23_c00345{word-spacing:1.368000px;}
.ws22_c00345{word-spacing:1.440000px;}
.ws1b_c00345{word-spacing:3.600000px;}
.wsf_c00345{word-spacing:5.995080px;}
.ws10_c00345{word-spacing:6.258600px;}
.wsb_c00345{word-spacing:6.390360px;}
.ws1e_c00345{word-spacing:6.480000px;}
.wsa_c00345{word-spacing:6.653880px;}
.ws1d_c00345{word-spacing:6.840000px;}
.ws8_c00345{word-spacing:7.378560px;}
.ws14_c00345{word-spacing:7.560000px;}
.ws9_c00345{word-spacing:7.707960px;}
.ws3_c00345{word-spacing:7.783200px;}
.ws13_c00345{word-spacing:7.848000px;}
.ws4_c00345{word-spacing:7.920000px;}
.ws20_c00345{word-spacing:9.618480px;}
.ws19_c00345{word-spacing:10.343160px;}
.ws5_c00345{word-spacing:10.672560px;}
.ws21_c00345{word-spacing:11.088000px;}
.ws16_c00345{word-spacing:16.488000px;}
.ws1a_c00345{word-spacing:19.961640px;}
.ws7_c00345{word-spacing:23.585040px;}
.ws2_c00345{word-spacing:30.765960px;}
.wsc_c00345{word-spacing:30.831840px;}
.wse_c00345{word-spacing:31.095360px;}
._1_c00345{margin-left:-1.054080px;}
._0_c00345{width:1.199016px;}
._4_c00345{width:19.460160px;}
._2_c00345{width:21.984156px;}
._3_c00345{width:30.502440px;}
.fc1_c00345{color:rgb(0,0,0);}
.fc0_c00345{color:rgb(35,31,32);}
.fs1_c00345{font-size:65.880000px;}
.fs0_c00345{font-size:72.000000px;}
.y0_c00345{bottom:0.000000px;}
.y1_c00345{bottom:61.748550px;}
.y1c_c00345{bottom:208.574400px;}
.y1b_c00345{bottom:239.624400px;}
.y1a_c00345{bottom:270.674400px;}
.y19_c00345{bottom:332.685300px;}
.y18_c00345{bottom:362.380710px;}
.y17_c00345{bottom:390.824400px;}
.y16_c00345{bottom:451.754250px;}
.y15_c00345{bottom:482.804250px;}
.y14_c00345{bottom:513.764250px;}
.y13_c00345{bottom:544.904250px;}
.y12_c00345{bottom:575.954250px;}
.y11_c00345{bottom:636.610830px;}
.y10_c00345{bottom:665.136870px;}
.yf_c00345{bottom:693.580560px;}
.ye_c00345{bottom:722.024250px;}
.yd_c00345{bottom:782.954250px;}
.yc_c00345{bottom:814.004250px;}
.yb_c00345{bottom:845.054250px;}
.ya_c00345{bottom:876.104250px;}
.y9_c00345{bottom:907.154250px;}
.y8_c00345{bottom:967.803600px;}
.y7_c00345{bottom:996.247290px;}
.y6_c00345{bottom:1024.773330px;}
.y5_c00345{bottom:1053.217020px;}
.y4_c00345{bottom:1081.660710px;}
.y3_c00345{bottom:1110.104400px;}
.y2_c00345{bottom:1193.174400px;}
.h2_c00345{height:50.400000px;}
.h4_c00345{height:71.413920px;}
.h3_c00345{height:76.824000px;}
.h6_c00345{height:78.044400px;}
.h5_c00345{height:78.048000px;}
.h0_c00345{height:1262.835000px;}
.h1_c00345{height:1263.000000px;}
.w0_c00345{width:892.914000px;}
.w1_c00345{width:893.250000px;}
.x0_c00345{left:0.000000px;}
.x1_c00345{left:54.000000px;}
.x2_c00345{left:127.620000px;}
.x3_c00345{left:148.950000px;}
.x4_c00345{left:159.570000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.lsb_c00345{letter-spacing:-0.058560pt;}
.lsa_c00345{letter-spacing:0.000000pt;}
.lsc_c00345{letter-spacing:0.058560pt;}
.ls3_c00345{letter-spacing:0.064000pt;}
.ls8_c00345{letter-spacing:0.128000pt;}
.ls1_c00345{letter-spacing:0.175680pt;}
.ls7_c00345{letter-spacing:14.827840pt;}
.ls9_c00345{letter-spacing:16.448000pt;}
.ls2_c00345{letter-spacing:20.203200pt;}
.ls5_c00345{letter-spacing:21.888000pt;}
.ls6_c00345{letter-spacing:23.207328pt;}
.ls4_c00345{letter-spacing:23.482560pt;}
.ls0_c00345{letter-spacing:35.721600pt;}
.ws0_c00345{word-spacing:-16.000000pt;}
.ws1_c00345{word-spacing:-14.581440pt;}
.ws12_c00345{word-spacing:-0.117120pt;}
.ws1f_c00345{word-spacing:-0.064000pt;}
.wsd_c00345{word-spacing:-0.058560pt;}
.ws6_c00345{word-spacing:0.000000pt;}
.ws11_c00345{word-spacing:0.117120pt;}
.ws1c_c00345{word-spacing:0.192000pt;}
.ws18_c00345{word-spacing:0.256000pt;}
.ws17_c00345{word-spacing:0.320000pt;}
.ws15_c00345{word-spacing:0.576000pt;}
.ws23_c00345{word-spacing:1.216000pt;}
.ws22_c00345{word-spacing:1.280000pt;}
.ws1b_c00345{word-spacing:3.200000pt;}
.wsf_c00345{word-spacing:5.328960pt;}
.ws10_c00345{word-spacing:5.563200pt;}
.wsb_c00345{word-spacing:5.680320pt;}
.ws1e_c00345{word-spacing:5.760000pt;}
.wsa_c00345{word-spacing:5.914560pt;}
.ws1d_c00345{word-spacing:6.080000pt;}
.ws8_c00345{word-spacing:6.558720pt;}
.ws14_c00345{word-spacing:6.720000pt;}
.ws9_c00345{word-spacing:6.851520pt;}
.ws3_c00345{word-spacing:6.918400pt;}
.ws13_c00345{word-spacing:6.976000pt;}
.ws4_c00345{word-spacing:7.040000pt;}
.ws20_c00345{word-spacing:8.549760pt;}
.ws19_c00345{word-spacing:9.193920pt;}
.ws5_c00345{word-spacing:9.486720pt;}
.ws21_c00345{word-spacing:9.856000pt;}
.ws16_c00345{word-spacing:14.656000pt;}
.ws1a_c00345{word-spacing:17.743680pt;}
.ws7_c00345{word-spacing:20.964480pt;}
.ws2_c00345{word-spacing:27.347520pt;}
.wsc_c00345{word-spacing:27.406080pt;}
.wse_c00345{word-spacing:27.640320pt;}
._1_c00345{margin-left:-0.936960pt;}
._0_c00345{width:1.065792pt;}
._4_c00345{width:17.297920pt;}
._2_c00345{width:19.541472pt;}
._3_c00345{width:27.113280pt;}
.fs1_c00345{font-size:58.560000pt;}
.fs0_c00345{font-size:64.000000pt;}
.y0_c00345{bottom:0.000000pt;}
.y1_c00345{bottom:54.887600pt;}
.y1c_c00345{bottom:185.399467pt;}
.y1b_c00345{bottom:212.999467pt;}
.y1a_c00345{bottom:240.599467pt;}
.y19_c00345{bottom:295.720267pt;}
.y18_c00345{bottom:322.116187pt;}
.y17_c00345{bottom:347.399467pt;}
.y16_c00345{bottom:401.559333pt;}
.y15_c00345{bottom:429.159333pt;}
.y14_c00345{bottom:456.679333pt;}
.y13_c00345{bottom:484.359333pt;}
.y12_c00345{bottom:511.959333pt;}
.y11_c00345{bottom:565.876293pt;}
.y10_c00345{bottom:591.232773pt;}
.yf_c00345{bottom:616.516053pt;}
.ye_c00345{bottom:641.799333pt;}
.yd_c00345{bottom:695.959333pt;}
.yc_c00345{bottom:723.559333pt;}
.yb_c00345{bottom:751.159333pt;}
.ya_c00345{bottom:778.759333pt;}
.y9_c00345{bottom:806.359333pt;}
.y8_c00345{bottom:860.269867pt;}
.y7_c00345{bottom:885.553147pt;}
.y6_c00345{bottom:910.909627pt;}
.y5_c00345{bottom:936.192907pt;}
.y4_c00345{bottom:961.476187pt;}
.y3_c00345{bottom:986.759467pt;}
.y2_c00345{bottom:1060.599467pt;}
.h2_c00345{height:44.800000pt;}
.h4_c00345{height:63.479040pt;}
.h3_c00345{height:68.288000pt;}
.h6_c00345{height:69.372800pt;}
.h5_c00345{height:69.376000pt;}
.h0_c00345{height:1122.520000pt;}
.h1_c00345{height:1122.666667pt;}
.w0_c00345{width:793.701333pt;}
.w1_c00345{width:794.000000pt;}
.x0_c00345{left:0.000000pt;}
.x1_c00345{left:48.000000pt;}
.x2_c00345{left:113.440000pt;}
.x3_c00345{left:132.400000pt;}
.x4_c00345{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00346;src:url('chunks/assets/font_fe467e83ecb6adf81af20ec2.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.575000;font-style:normal;font-weight:normal;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_0b285414522bf913de90092a.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00346;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00346;src:url('chunks/assets/font_12dd619304b499214aebbce9.woff2')format("woff");}.ff5_c00346{font-family:ff5_c00346;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00346;src:url('chunks/assets/font_fdc54f5fcbc79b776b1238dd.woff2')format("woff");}.ff6_c00346{font-family:ff6_c00346;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.ls12_c00346{letter-spacing:-0.197640px;}
.ls11_c00346{letter-spacing:-0.065880px;}
.ls10_c00346{letter-spacing:0.000000px;}
.lsc_c00346{letter-spacing:0.065880px;}
.ls3_c00346{letter-spacing:0.072000px;}
.ls8_c00346{letter-spacing:0.144000px;}
.ls1_c00346{letter-spacing:0.197640px;}
.lse_c00346{letter-spacing:16.632000px;}
.lsd_c00346{letter-spacing:16.656480px;}
.ls7_c00346{letter-spacing:16.681320px;}
.ls9_c00346{letter-spacing:18.504000px;}
.lsa_c00346{letter-spacing:21.240000px;}
.lsb_c00346{letter-spacing:21.435156px;}
.ls2_c00346{letter-spacing:22.728600px;}
.ls5_c00346{letter-spacing:24.624000px;}
.lsf_c00346{letter-spacing:25.297920px;}
.ls6_c00346{letter-spacing:26.108244px;}
.ls4_c00346{letter-spacing:26.417880px;}
.ls0_c00346{letter-spacing:40.186800px;}
.sc__c00346{text-shadow:none;}
.sc0_c00346{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00346{-webkit-text-stroke:0px transparent;}
.sc0_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00346{word-spacing:-18.144000px;}
.ws0_c00346{word-spacing:-18.000000px;}
.ws7_c00346{word-spacing:-16.470000px;}
.ws1_c00346{word-spacing:-16.404120px;}
.ws15_c00346{word-spacing:-0.131760px;}
.ws22_c00346{word-spacing:-0.072000px;}
.ws10_c00346{word-spacing:-0.065880px;}
.ws9_c00346{word-spacing:0.000000px;}
.ws14_c00346{word-spacing:0.131760px;}
.ws3c_c00346{word-spacing:0.197640px;}
.ws1f_c00346{word-spacing:0.216000px;}
.ws1b_c00346{word-spacing:0.288000px;}
.ws1a_c00346{word-spacing:0.360000px;}
.ws3e_c00346{word-spacing:0.527040px;}
.ws18_c00346{word-spacing:0.648000px;}
.ws3f_c00346{word-spacing:1.317600px;}
.ws26_c00346{word-spacing:1.368000px;}
.ws25_c00346{word-spacing:1.440000px;}
.ws31_c00346{word-spacing:2.437560px;}
.ws32_c00346{word-spacing:2.701080px;}
.ws8_c00346{word-spacing:3.017304px;}
.ws3a_c00346{word-spacing:3.030480px;}
.ws27_c00346{word-spacing:3.096000px;}
.ws28_c00346{word-spacing:3.240000px;}
.ws1e_c00346{word-spacing:3.600000px;}
.ws2a_c00346{word-spacing:4.545720px;}
.ws29_c00346{word-spacing:4.608000px;}
.ws2b_c00346{word-spacing:4.809240px;}
.ws2c_c00346{word-spacing:5.270400px;}
.ws2e_c00346{word-spacing:5.328000px;}
.ws30_c00346{word-spacing:5.797440px;}
.ws2f_c00346{word-spacing:5.929200px;}
.ws12_c00346{word-spacing:5.995080px;}
.ws2d_c00346{word-spacing:6.120000px;}
.ws13_c00346{word-spacing:6.258600px;}
.wse_c00346{word-spacing:6.390360px;}
.ws21_c00346{word-spacing:6.480000px;}
.wsd_c00346{word-spacing:6.653880px;}
.ws20_c00346{word-spacing:6.840000px;}
.ws3d_c00346{word-spacing:7.115040px;}
.wsb_c00346{word-spacing:7.378560px;}
.ws17_c00346{word-spacing:7.560000px;}
.wsc_c00346{word-spacing:7.707960px;}
.ws3_c00346{word-spacing:7.783200px;}
.ws16_c00346{word-spacing:7.848000px;}
.ws4_c00346{word-spacing:7.920000px;}
.ws37_c00346{word-spacing:8.169120px;}
.ws3b_c00346{word-spacing:8.762040px;}
.ws23_c00346{word-spacing:9.618480px;}
.ws1c_c00346{word-spacing:10.343160px;}
.ws5_c00346{word-spacing:10.672560px;}
.ws24_c00346{word-spacing:11.088000px;}
.ws36_c00346{word-spacing:11.792520px;}
.ws39_c00346{word-spacing:12.240000px;}
.ws38_c00346{word-spacing:12.528000px;}
.ws33_c00346{word-spacing:15.048000px;}
.ws19_c00346{word-spacing:16.488000px;}
.ws1d_c00346{word-spacing:19.961640px;}
.wsa_c00346{word-spacing:23.585040px;}
.ws34_c00346{word-spacing:30.528000px;}
.ws35_c00346{word-spacing:30.600000px;}
.ws2_c00346{word-spacing:30.765960px;}
.wsf_c00346{word-spacing:30.831840px;}
.ws11_c00346{word-spacing:31.095360px;}
._1_c00346{margin-left:-1.054080px;}
._0_c00346{width:1.199016px;}
._5_c00346{width:6.298128px;}
._4_c00346{width:19.460160px;}
._7_c00346{width:20.811492px;}
._2_c00346{width:21.984156px;}
._6_c00346{width:23.301756px;}
._3_c00346{width:30.502440px;}
.fc2_c00346{color:transparent;}
.fc1_c00346{color:rgb(0,0,0);}
.fc0_c00346{color:rgb(35,31,32);}
.fs1_c00346{font-size:65.880000px;}
.fs0_c00346{font-size:72.000000px;}
.y0_c00346{bottom:0.000000px;}
.y1_c00346{bottom:61.748550px;}
.y38_c00346{bottom:113.977110px;}
.y37_c00346{bottom:142.503150px;}
.y36_c00346{bottom:170.946840px;}
.y35_c00346{bottom:199.390530px;}
.y1c_c00346{bottom:208.574400px;}
.y34_c00346{bottom:227.834220px;}
.y1b_c00346{bottom:239.624400px;}
.y1a_c00346{bottom:270.674400px;}
.y33_c00346{bottom:288.678990px;}
.y32_c00346{bottom:318.374400px;}
.y19_c00346{bottom:332.685300px;}
.y18_c00346{bottom:362.380710px;}
.y31_c00346{bottom:379.304400px;}
.y17_c00346{bottom:390.824400px;}
.y30_c00346{bottom:410.354400px;}
.y2f_c00346{bottom:441.404400px;}
.y16_c00346{bottom:451.754250px;}
.y15_c00346{bottom:482.804250px;}
.y2e_c00346{bottom:503.422950px;}
.y14_c00346{bottom:513.764250px;}
.y2d_c00346{bottom:533.118360px;}
.y13_c00346{bottom:544.904250px;}
.y2c_c00346{bottom:561.644400px;}
.y12_c00346{bottom:575.954250px;}
.y2b_c00346{bottom:622.574400px;}
.y11_c00346{bottom:636.610830px;}
.y2a_c00346{bottom:653.624400px;}
.y10_c00346{bottom:665.136870px;}
.y29_c00346{bottom:684.674400px;}
.yf_c00346{bottom:693.580560px;}
.ye_c00346{bottom:722.024250px;}
.y28_c00346{bottom:745.327020px;}
.y27_c00346{bottom:773.770710px;}
.yd_c00346{bottom:782.954250px;}
.y26_c00346{bottom:802.214400px;}
.yc_c00346{bottom:814.004250px;}
.yb_c00346{bottom:845.054250px;}
.y25_c00346{bottom:863.144400px;}
.ya_c00346{bottom:876.104250px;}
.y24_c00346{bottom:894.194400px;}
.y9_c00346{bottom:907.154250px;}
.y23_c00346{bottom:956.204400px;}
.y8_c00346{bottom:967.803600px;}
.y22_c00346{bottom:987.258840px;}
.y7_c00346{bottom:996.247290px;}
.y21_c00346{bottom:1016.954250px;}
.y6_c00346{bottom:1024.773330px;}
.y5_c00346{bottom:1053.217020px;}
.y20_c00346{bottom:1077.884400px;}
.y4_c00346{bottom:1081.660710px;}
.y1f_c00346{bottom:1108.934400px;}
.y3_c00346{bottom:1110.104400px;}
.y1e_c00346{bottom:1139.984400px;}
.y1d_c00346{bottom:1193.174400px;}
.y2_c00346{bottom:1193.174550px;}
.h2_c00346{height:50.400000px;}
.h4_c00346{height:71.413920px;}
.h3_c00346{height:76.824000px;}
.h8_c00346{height:78.013800px;}
.h9_c00346{height:78.029640px;}
.h7_c00346{height:78.030240px;}
.h6_c00346{height:78.044400px;}
.h5_c00346{height:78.048000px;}
.h0_c00346{height:1262.835000px;}
.h1_c00346{height:1263.000000px;}
.w2_c00346{width:0.000000px;}
.w3_c00346{width:0.066000px;}
.w0_c00346{width:892.914000px;}
.w1_c00346{width:893.250000px;}
.x1_c00346{left:-838.913400px;}
.x2_c00346{left:-765.293400px;}
.x3_c00346{left:-743.963400px;}
.x4_c00346{left:-733.343400px;}
.x0_c00346{left:0.000000px;}
.x8_c00346{left:127.620000px;}
.x9_c00346{left:148.950000px;}
.x7_c00346{left:159.570000px;}
.x6_c00346{left:679.950000px;}
.x5_c00346{left:804.366150px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls12_c00346{letter-spacing:-0.175680pt;}
.ls11_c00346{letter-spacing:-0.058560pt;}
.ls10_c00346{letter-spacing:0.000000pt;}
.lsc_c00346{letter-spacing:0.058560pt;}
.ls3_c00346{letter-spacing:0.064000pt;}
.ls8_c00346{letter-spacing:0.128000pt;}
.ls1_c00346{letter-spacing:0.175680pt;}
.lse_c00346{letter-spacing:14.784000pt;}
.lsd_c00346{letter-spacing:14.805760pt;}
.ls7_c00346{letter-spacing:14.827840pt;}
.ls9_c00346{letter-spacing:16.448000pt;}
.lsa_c00346{letter-spacing:18.880000pt;}
.lsb_c00346{letter-spacing:19.053472pt;}
.ls2_c00346{letter-spacing:20.203200pt;}
.ls5_c00346{letter-spacing:21.888000pt;}
.lsf_c00346{letter-spacing:22.487040pt;}
.ls6_c00346{letter-spacing:23.207328pt;}
.ls4_c00346{letter-spacing:23.482560pt;}
.ls0_c00346{letter-spacing:35.721600pt;}
.ws6_c00346{word-spacing:-16.128000pt;}
.ws0_c00346{word-spacing:-16.000000pt;}
.ws7_c00346{word-spacing:-14.640000pt;}
.ws1_c00346{word-spacing:-14.581440pt;}
.ws15_c00346{word-spacing:-0.117120pt;}
.ws22_c00346{word-spacing:-0.064000pt;}
.ws10_c00346{word-spacing:-0.058560pt;}
.ws9_c00346{word-spacing:0.000000pt;}
.ws14_c00346{word-spacing:0.117120pt;}
.ws3c_c00346{word-spacing:0.175680pt;}
.ws1f_c00346{word-spacing:0.192000pt;}
.ws1b_c00346{word-spacing:0.256000pt;}
.ws1a_c00346{word-spacing:0.320000pt;}
.ws3e_c00346{word-spacing:0.468480pt;}
.ws18_c00346{word-spacing:0.576000pt;}
.ws3f_c00346{word-spacing:1.171200pt;}
.ws26_c00346{word-spacing:1.216000pt;}
.ws25_c00346{word-spacing:1.280000pt;}
.ws31_c00346{word-spacing:2.166720pt;}
.ws32_c00346{word-spacing:2.400960pt;}
.ws8_c00346{word-spacing:2.682048pt;}
.ws3a_c00346{word-spacing:2.693760pt;}
.ws27_c00346{word-spacing:2.752000pt;}
.ws28_c00346{word-spacing:2.880000pt;}
.ws1e_c00346{word-spacing:3.200000pt;}
.ws2a_c00346{word-spacing:4.040640pt;}
.ws29_c00346{word-spacing:4.096000pt;}
.ws2b_c00346{word-spacing:4.274880pt;}
.ws2c_c00346{word-spacing:4.684800pt;}
.ws2e_c00346{word-spacing:4.736000pt;}
.ws30_c00346{word-spacing:5.153280pt;}
.ws2f_c00346{word-spacing:5.270400pt;}
.ws12_c00346{word-spacing:5.328960pt;}
.ws2d_c00346{word-spacing:5.440000pt;}
.ws13_c00346{word-spacing:5.563200pt;}
.wse_c00346{word-spacing:5.680320pt;}
.ws21_c00346{word-spacing:5.760000pt;}
.wsd_c00346{word-spacing:5.914560pt;}
.ws20_c00346{word-spacing:6.080000pt;}
.ws3d_c00346{word-spacing:6.324480pt;}
.wsb_c00346{word-spacing:6.558720pt;}
.ws17_c00346{word-spacing:6.720000pt;}
.wsc_c00346{word-spacing:6.851520pt;}
.ws3_c00346{word-spacing:6.918400pt;}
.ws16_c00346{word-spacing:6.976000pt;}
.ws4_c00346{word-spacing:7.040000pt;}
.ws37_c00346{word-spacing:7.261440pt;}
.ws3b_c00346{word-spacing:7.788480pt;}
.ws23_c00346{word-spacing:8.549760pt;}
.ws1c_c00346{word-spacing:9.193920pt;}
.ws5_c00346{word-spacing:9.486720pt;}
.ws24_c00346{word-spacing:9.856000pt;}
.ws36_c00346{word-spacing:10.482240pt;}
.ws39_c00346{word-spacing:10.880000pt;}
.ws38_c00346{word-spacing:11.136000pt;}
.ws33_c00346{word-spacing:13.376000pt;}
.ws19_c00346{word-spacing:14.656000pt;}
.ws1d_c00346{word-spacing:17.743680pt;}
.wsa_c00346{word-spacing:20.964480pt;}
.ws34_c00346{word-spacing:27.136000pt;}
.ws35_c00346{word-spacing:27.200000pt;}
.ws2_c00346{word-spacing:27.347520pt;}
.wsf_c00346{word-spacing:27.406080pt;}
.ws11_c00346{word-spacing:27.640320pt;}
._1_c00346{margin-left:-0.936960pt;}
._0_c00346{width:1.065792pt;}
._5_c00346{width:5.598336pt;}
._4_c00346{width:17.297920pt;}
._7_c00346{width:18.499104pt;}
._2_c00346{width:19.541472pt;}
._6_c00346{width:20.712672pt;}
._3_c00346{width:27.113280pt;}
.fs1_c00346{font-size:58.560000pt;}
.fs0_c00346{font-size:64.000000pt;}
.y0_c00346{bottom:0.000000pt;}
.y1_c00346{bottom:54.887600pt;}
.y38_c00346{bottom:101.312987pt;}
.y37_c00346{bottom:126.669467pt;}
.y36_c00346{bottom:151.952747pt;}
.y35_c00346{bottom:177.236027pt;}
.y1c_c00346{bottom:185.399467pt;}
.y34_c00346{bottom:202.519307pt;}
.y1b_c00346{bottom:212.999467pt;}
.y1a_c00346{bottom:240.599467pt;}
.y33_c00346{bottom:256.603547pt;}
.y32_c00346{bottom:282.999467pt;}
.y19_c00346{bottom:295.720267pt;}
.y18_c00346{bottom:322.116187pt;}
.y31_c00346{bottom:337.159467pt;}
.y17_c00346{bottom:347.399467pt;}
.y30_c00346{bottom:364.759467pt;}
.y2f_c00346{bottom:392.359467pt;}
.y16_c00346{bottom:401.559333pt;}
.y15_c00346{bottom:429.159333pt;}
.y2e_c00346{bottom:447.487067pt;}
.y14_c00346{bottom:456.679333pt;}
.y2d_c00346{bottom:473.882987pt;}
.y13_c00346{bottom:484.359333pt;}
.y2c_c00346{bottom:499.239467pt;}
.y12_c00346{bottom:511.959333pt;}
.y2b_c00346{bottom:553.399467pt;}
.y11_c00346{bottom:565.876293pt;}
.y2a_c00346{bottom:580.999467pt;}
.y10_c00346{bottom:591.232773pt;}
.y29_c00346{bottom:608.599467pt;}
.yf_c00346{bottom:616.516053pt;}
.ye_c00346{bottom:641.799333pt;}
.y28_c00346{bottom:662.512907pt;}
.y27_c00346{bottom:687.796187pt;}
.yd_c00346{bottom:695.959333pt;}
.y26_c00346{bottom:713.079467pt;}
.yc_c00346{bottom:723.559333pt;}
.yb_c00346{bottom:751.159333pt;}
.y25_c00346{bottom:767.239467pt;}
.ya_c00346{bottom:778.759333pt;}
.y24_c00346{bottom:794.839467pt;}
.y9_c00346{bottom:806.359333pt;}
.y23_c00346{bottom:849.959467pt;}
.y8_c00346{bottom:860.269867pt;}
.y22_c00346{bottom:877.563413pt;}
.y7_c00346{bottom:885.553147pt;}
.y21_c00346{bottom:903.959333pt;}
.y6_c00346{bottom:910.909627pt;}
.y5_c00346{bottom:936.192907pt;}
.y20_c00346{bottom:958.119467pt;}
.y4_c00346{bottom:961.476187pt;}
.y1f_c00346{bottom:985.719467pt;}
.y3_c00346{bottom:986.759467pt;}
.y1e_c00346{bottom:1013.319467pt;}
.y1d_c00346{bottom:1060.599467pt;}
.y2_c00346{bottom:1060.599600pt;}
.h2_c00346{height:44.800000pt;}
.h4_c00346{height:63.479040pt;}
.h3_c00346{height:68.288000pt;}
.h8_c00346{height:69.345600pt;}
.h9_c00346{height:69.359680pt;}
.h7_c00346{height:69.360213pt;}
.h6_c00346{height:69.372800pt;}
.h5_c00346{height:69.376000pt;}
.h0_c00346{height:1122.520000pt;}
.h1_c00346{height:1122.666667pt;}
.w2_c00346{width:0.000000pt;}
.w3_c00346{width:0.058667pt;}
.w0_c00346{width:793.701333pt;}
.w1_c00346{width:794.000000pt;}
.x1_c00346{left:-745.700800pt;}
.x2_c00346{left:-680.260800pt;}
.x3_c00346{left:-661.300800pt;}
.x4_c00346{left:-651.860800pt;}
.x0_c00346{left:0.000000pt;}
.x8_c00346{left:113.440000pt;}
.x9_c00346{left:132.400000pt;}
.x7_c00346{left:141.840000pt;}
.x6_c00346{left:604.400000pt;}
.x5_c00346{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00347;src:url('chunks/assets/font_d1bdf4fae0fcbf7e189336da.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00347;src:url('chunks/assets/font_0b9aa4efe17a83fd76d4eee0.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls7_c00347{letter-spacing:-0.360000px;}
.ls6_c00347{letter-spacing:-0.065880px;}
.ls4_c00347{letter-spacing:0.000000px;}
.ls5_c00347{letter-spacing:0.065880px;}
.ls0_c00347{letter-spacing:0.072000px;}
.ls3_c00347{letter-spacing:0.144000px;}
.ls1_c00347{letter-spacing:0.197640px;}
.ls2_c00347{letter-spacing:24.825600px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00347{word-spacing:-18.000000px;}
.ws19_c00347{word-spacing:-0.131760px;}
.wsf_c00347{word-spacing:-0.072000px;}
.ws4_c00347{word-spacing:0.000000px;}
.wsc_c00347{word-spacing:0.131760px;}
.ws1_c00347{word-spacing:0.162360px;}
.ws1e_c00347{word-spacing:0.263520px;}
.ws1c_c00347{word-spacing:0.360000px;}
.ws6_c00347{word-spacing:0.648000px;}
.ws1a_c00347{word-spacing:2.088000px;}
.ws1b_c00347{word-spacing:2.160000px;}
.ws16_c00347{word-spacing:2.766960px;}
.ws2_c00347{word-spacing:3.175416px;}
.wsa_c00347{word-spacing:3.491640px;}
.wsb_c00347{word-spacing:3.755160px;}
.ws21_c00347{word-spacing:3.821040px;}
.ws15_c00347{word-spacing:4.216320px;}
.ws5_c00347{word-spacing:5.270400px;}
.ws3_c00347{word-spacing:5.435100px;}
.ws18_c00347{word-spacing:5.995080px;}
.ws1d_c00347{word-spacing:6.480000px;}
.ws17_c00347{word-spacing:6.653880px;}
.wse_c00347{word-spacing:7.560000px;}
.wsd_c00347{word-spacing:8.280000px;}
.ws14_c00347{word-spacing:10.296000px;}
.ws13_c00347{word-spacing:10.440000px;}
.ws11_c00347{word-spacing:11.376000px;}
.ws20_c00347{word-spacing:11.397240px;}
.ws1f_c00347{word-spacing:11.660760px;}
.ws12_c00347{word-spacing:11.808000px;}
.ws10_c00347{word-spacing:11.880000px;}
.ws7_c00347{word-spacing:15.048000px;}
.ws8_c00347{word-spacing:16.931160px;}
.ws9_c00347{word-spacing:17.062920px;}
.ws22_c00347{word-spacing:26.154360px;}
.ws23_c00347{word-spacing:26.286120px;}
._0_c00347{margin-left:-1.054080px;}
._1_c00347{width:1.001376px;}
._2_c00347{width:26.944920px;}
._3_c00347{width:41.767920px;}
.fc1_c00347{color:rgb(0,0,0);}
.fc0_c00347{color:rgb(35,31,32);}
.fs1_c00347{font-size:65.880000px;}
.fs0_c00347{font-size:72.000000px;}
.y0_c00347{bottom:0.000000px;}
.y1_c00347{bottom:61.748550px;}
.y1c_c00347{bottom:181.297650px;}
.y1b_c00347{bottom:209.741340px;}
.y1a_c00347{bottom:269.230980px;}
.y19_c00347{bottom:297.674670px;}
.y18_c00347{bottom:326.200710px;}
.y17_c00347{bottom:354.644400px;}
.y16_c00347{bottom:415.574400px;}
.y15_c00347{bottom:446.624400px;}
.y14_c00347{bottom:477.674400px;}
.y13_c00347{bottom:538.330980px;}
.y12_c00347{bottom:566.774670px;}
.y11_c00347{bottom:595.218360px;}
.y10_c00347{bottom:623.744400px;}
.yf_c00347{bottom:684.674400px;}
.ye_c00347{bottom:715.724400px;}
.yd_c00347{bottom:746.774400px;}
.yc_c00347{bottom:777.824400px;}
.yb_c00347{bottom:808.784400px;}
.ya_c00347{bottom:869.527020px;}
.y9_c00347{bottom:897.970710px;}
.y8_c00347{bottom:926.414400px;}
.y7_c00347{bottom:987.344400px;}
.y6_c00347{bottom:1018.394400px;}
.y5_c00347{bottom:1049.444400px;}
.y4_c00347{bottom:1111.458840px;}
.y3_c00347{bottom:1141.154250px;}
.y2_c00347{bottom:1193.174400px;}
.h2_c00347{height:50.400000px;}
.h4_c00347{height:71.413920px;}
.h3_c00347{height:76.824000px;}
.h5_c00347{height:78.029640px;}
.h0_c00347{height:1262.835000px;}
.h1_c00347{height:1263.000000px;}
.w0_c00347{width:892.914000px;}
.w1_c00347{width:893.250000px;}
.x0_c00347{left:0.000000px;}
.x1_c00347{left:54.000000px;}
.x2_c00347{left:127.620000px;}
.x3_c00347{left:148.950000px;}
.x4_c00347{left:159.570000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls7_c00347{letter-spacing:-0.320000pt;}
.ls6_c00347{letter-spacing:-0.058560pt;}
.ls4_c00347{letter-spacing:0.000000pt;}
.ls5_c00347{letter-spacing:0.058560pt;}
.ls0_c00347{letter-spacing:0.064000pt;}
.ls3_c00347{letter-spacing:0.128000pt;}
.ls1_c00347{letter-spacing:0.175680pt;}
.ls2_c00347{letter-spacing:22.067200pt;}
.ws0_c00347{word-spacing:-16.000000pt;}
.ws19_c00347{word-spacing:-0.117120pt;}
.wsf_c00347{word-spacing:-0.064000pt;}
.ws4_c00347{word-spacing:0.000000pt;}
.wsc_c00347{word-spacing:0.117120pt;}
.ws1_c00347{word-spacing:0.144320pt;}
.ws1e_c00347{word-spacing:0.234240pt;}
.ws1c_c00347{word-spacing:0.320000pt;}
.ws6_c00347{word-spacing:0.576000pt;}
.ws1a_c00347{word-spacing:1.856000pt;}
.ws1b_c00347{word-spacing:1.920000pt;}
.ws16_c00347{word-spacing:2.459520pt;}
.ws2_c00347{word-spacing:2.822592pt;}
.wsa_c00347{word-spacing:3.103680pt;}
.wsb_c00347{word-spacing:3.337920pt;}
.ws21_c00347{word-spacing:3.396480pt;}
.ws15_c00347{word-spacing:3.747840pt;}
.ws5_c00347{word-spacing:4.684800pt;}
.ws3_c00347{word-spacing:4.831200pt;}
.ws18_c00347{word-spacing:5.328960pt;}
.ws1d_c00347{word-spacing:5.760000pt;}
.ws17_c00347{word-spacing:5.914560pt;}
.wse_c00347{word-spacing:6.720000pt;}
.wsd_c00347{word-spacing:7.360000pt;}
.ws14_c00347{word-spacing:9.152000pt;}
.ws13_c00347{word-spacing:9.280000pt;}
.ws11_c00347{word-spacing:10.112000pt;}
.ws20_c00347{word-spacing:10.130880pt;}
.ws1f_c00347{word-spacing:10.365120pt;}
.ws12_c00347{word-spacing:10.496000pt;}
.ws10_c00347{word-spacing:10.560000pt;}
.ws7_c00347{word-spacing:13.376000pt;}
.ws8_c00347{word-spacing:15.049920pt;}
.ws9_c00347{word-spacing:15.167040pt;}
.ws22_c00347{word-spacing:23.248320pt;}
.ws23_c00347{word-spacing:23.365440pt;}
._0_c00347{margin-left:-0.936960pt;}
._1_c00347{width:0.890112pt;}
._2_c00347{width:23.951040pt;}
._3_c00347{width:37.127040pt;}
.fs1_c00347{font-size:58.560000pt;}
.fs0_c00347{font-size:64.000000pt;}
.y0_c00347{bottom:0.000000pt;}
.y1_c00347{bottom:54.887600pt;}
.y1c_c00347{bottom:161.153467pt;}
.y1b_c00347{bottom:186.436747pt;}
.y1a_c00347{bottom:239.316427pt;}
.y19_c00347{bottom:264.599707pt;}
.y18_c00347{bottom:289.956187pt;}
.y17_c00347{bottom:315.239467pt;}
.y16_c00347{bottom:369.399467pt;}
.y15_c00347{bottom:396.999467pt;}
.y14_c00347{bottom:424.599467pt;}
.y13_c00347{bottom:478.516427pt;}
.y12_c00347{bottom:503.799707pt;}
.y11_c00347{bottom:529.082987pt;}
.y10_c00347{bottom:554.439467pt;}
.yf_c00347{bottom:608.599467pt;}
.ye_c00347{bottom:636.199467pt;}
.yd_c00347{bottom:663.799467pt;}
.yc_c00347{bottom:691.399467pt;}
.yb_c00347{bottom:718.919467pt;}
.ya_c00347{bottom:772.912907pt;}
.y9_c00347{bottom:798.196187pt;}
.y8_c00347{bottom:823.479467pt;}
.y7_c00347{bottom:877.639467pt;}
.y6_c00347{bottom:905.239467pt;}
.y5_c00347{bottom:932.839467pt;}
.y4_c00347{bottom:987.963413pt;}
.y3_c00347{bottom:1014.359333pt;}
.y2_c00347{bottom:1060.599467pt;}
.h2_c00347{height:44.800000pt;}
.h4_c00347{height:63.479040pt;}
.h3_c00347{height:68.288000pt;}
.h5_c00347{height:69.359680pt;}
.h0_c00347{height:1122.520000pt;}
.h1_c00347{height:1122.666667pt;}
.w0_c00347{width:793.701333pt;}
.w1_c00347{width:794.000000pt;}
.x0_c00347{left:0.000000pt;}
.x1_c00347{left:48.000000pt;}
.x2_c00347{left:113.440000pt;}
.x3_c00347{left:132.400000pt;}
.x4_c00347{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00348;src:url('chunks/assets/font_0432db4431ad8a2c1ead762b.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00348;src:url('chunks/assets/font_9fb87372e1ca31bb2a1e0208.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.592000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00348{font-family:ff4_c00348;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00348;src:url('chunks/assets/font_219fd54d7a2ec4c5df82156a.woff2')format("woff");}.ff5_c00348{font-family:ff5_c00348;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00348;src:url('chunks/assets/font_95797354437a52e8aa1d4bf1.woff2')format("woff");}.ff6_c00348{font-family:ff6_c00348;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00348;src:url('chunks/assets/font_85048d675eec8c013ff05afc.woff2')format("woff");}.ff7_c00348{font-family:ff7_c00348;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00348{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.ls9_c00348{letter-spacing:-0.360000px;}
.ls8_c00348{letter-spacing:-0.065880px;}
.ls6_c00348{letter-spacing:0.000000px;}
.ls7_c00348{letter-spacing:0.065880px;}
.ls0_c00348{letter-spacing:0.072000px;}
.ls3_c00348{letter-spacing:0.144000px;}
.ls1_c00348{letter-spacing:0.197640px;}
.ls5_c00348{letter-spacing:21.279240px;}
.ls2_c00348{letter-spacing:24.825600px;}
.ls4_c00348{letter-spacing:26.233416px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00348{word-spacing:-18.000000px;}
.ws3a_c00348{word-spacing:-0.461160px;}
.ws1b_c00348{word-spacing:-0.131760px;}
.ws11_c00348{word-spacing:-0.072000px;}
.ws7_c00348{word-spacing:0.000000px;}
.wse_c00348{word-spacing:0.131760px;}
.ws1_c00348{word-spacing:0.162360px;}
.ws20_c00348{word-spacing:0.263520px;}
.ws1e_c00348{word-spacing:0.360000px;}
.ws9_c00348{word-spacing:0.648000px;}
.ws27_c00348{word-spacing:0.988200px;}
.ws26_c00348{word-spacing:1.251720px;}
.ws37_c00348{word-spacing:1.317600px;}
.ws35_c00348{word-spacing:1.976400px;}
.ws1c_c00348{word-spacing:2.088000px;}
.ws1d_c00348{word-spacing:2.160000px;}
.ws18_c00348{word-spacing:2.766960px;}
.ws2_c00348{word-spacing:3.175416px;}
.wsd_c00348{word-spacing:3.491640px;}
.ws2a_c00348{word-spacing:3.528000px;}
.ws2b_c00348{word-spacing:3.600000px;}
.ws5_c00348{word-spacing:3.755160px;}
.ws23_c00348{word-spacing:3.821040px;}
.ws17_c00348{word-spacing:4.216320px;}
.ws2c_c00348{word-spacing:4.536000px;}
.ws39_c00348{word-spacing:4.545720px;}
.ws2d_c00348{word-spacing:4.608000px;}
.ws6_c00348{word-spacing:4.809240px;}
.ws38_c00348{word-spacing:4.941000px;}
.ws8_c00348{word-spacing:5.270400px;}
.ws3_c00348{word-spacing:5.435100px;}
.ws4_c00348{word-spacing:5.441688px;}
.ws1a_c00348{word-spacing:5.995080px;}
.ws1f_c00348{word-spacing:6.480000px;}
.ws19_c00348{word-spacing:6.653880px;}
.ws2e_c00348{word-spacing:6.719760px;}
.ws2f_c00348{word-spacing:6.983280px;}
.ws10_c00348{word-spacing:7.560000px;}
.wsf_c00348{word-spacing:8.280000px;}
.ws34_c00348{word-spacing:9.288000px;}
.ws36_c00348{word-spacing:9.947880px;}
.ws16_c00348{word-spacing:10.296000px;}
.ws15_c00348{word-spacing:10.440000px;}
.ws13_c00348{word-spacing:11.376000px;}
.ws22_c00348{word-spacing:11.397240px;}
.ws21_c00348{word-spacing:11.660760px;}
.ws14_c00348{word-spacing:11.808000px;}
.ws12_c00348{word-spacing:11.880000px;}
.ws31_c00348{word-spacing:12.121920px;}
.ws32_c00348{word-spacing:12.456000px;}
.ws33_c00348{word-spacing:12.528000px;}
.ws29_c00348{word-spacing:12.780720px;}
.ws28_c00348{word-spacing:12.846600px;}
.wsa_c00348{word-spacing:15.048000px;}
.wsb_c00348{word-spacing:16.931160px;}
.wsc_c00348{word-spacing:17.062920px;}
.ws30_c00348{word-spacing:17.524080px;}
.ws3b_c00348{word-spacing:19.728000px;}
.ws24_c00348{word-spacing:26.154360px;}
.ws25_c00348{word-spacing:26.286120px;}
._0_c00348{margin-left:-1.054080px;}
._1_c00348{width:1.001376px;}
._2_c00348{width:26.944920px;}
._3_c00348{width:41.767920px;}
._4_c00348{width:122.400000px;}
.fc2_c00348{color:transparent;}
.fc1_c00348{color:rgb(0,0,0);}
.fc0_c00348{color:rgb(35,31,32);}
.fs1_c00348{font-size:65.880000px;}
.fs0_c00348{font-size:72.000000px;}
.y0_c00348{bottom:0.000000px;}
.y1_c00348{bottom:61.748550px;}
.y1c_c00348{bottom:181.297650px;}
.y37_c00348{bottom:190.484400px;}
.y1b_c00348{bottom:209.741340px;}
.y36_c00348{bottom:221.534400px;}
.y35_c00348{bottom:252.584400px;}
.y1a_c00348{bottom:269.230980px;}
.y19_c00348{bottom:297.674670px;}
.y34_c00348{bottom:314.504400px;}
.y18_c00348{bottom:326.200710px;}
.y17_c00348{bottom:354.644400px;}
.y33_c00348{bottom:375.326220px;}
.y32_c00348{bottom:403.769910px;}
.y16_c00348{bottom:415.574400px;}
.y31_c00348{bottom:432.213600px;}
.y15_c00348{bottom:446.624400px;}
.y30_c00348{bottom:460.739640px;}
.y14_c00348{bottom:477.674400px;}
.y2f_c00348{bottom:489.183330px;}
.y2e_c00348{bottom:517.627020px;}
.y13_c00348{bottom:538.330980px;}
.y2d_c00348{bottom:546.070710px;}
.y12_c00348{bottom:566.774670px;}
.y2c_c00348{bottom:574.514400px;}
.y11_c00348{bottom:595.218360px;}
.y10_c00348{bottom:623.744400px;}
.y2b_c00348{bottom:635.444250px;}
.y2a_c00348{bottom:666.494250px;}
.yf_c00348{bottom:684.674400px;}
.y29_c00348{bottom:697.544250px;}
.ye_c00348{bottom:715.724400px;}
.yd_c00348{bottom:746.774400px;}
.y28_c00348{bottom:758.279640px;}
.yc_c00348{bottom:777.824400px;}
.y27_c00348{bottom:786.723330px;}
.yb_c00348{bottom:808.784400px;}
.y26_c00348{bottom:815.167020px;}
.y25_c00348{bottom:843.610710px;}
.ya_c00348{bottom:869.527020px;}
.y24_c00348{bottom:872.054400px;}
.y9_c00348{bottom:897.970710px;}
.y8_c00348{bottom:926.414400px;}
.y23_c00348{bottom:932.984250px;}
.y22_c00348{bottom:964.034250px;}
.y7_c00348{bottom:987.344400px;}
.y21_c00348{bottom:995.084250px;}
.y6_c00348{bottom:1018.394400px;}
.y5_c00348{bottom:1049.444400px;}
.y20_c00348{bottom:1055.740830px;}
.y1f_c00348{bottom:1084.266870px;}
.y4_c00348{bottom:1111.458840px;}
.y1e_c00348{bottom:1112.710560px;}
.y3_c00348{bottom:1141.154250px;}
.y1d_c00348{bottom:1193.174400px;}
.y2_c00348{bottom:1193.174550px;}
.h2_c00348{height:50.400000px;}
.h4_c00348{height:71.413920px;}
.h3_c00348{height:76.824000px;}
.h5_c00348{height:78.029640px;}
.h0_c00348{height:1262.835000px;}
.h1_c00348{height:1263.000000px;}
.w2_c00348{width:0.000000px;}
.w3_c00348{width:0.066000px;}
.w0_c00348{width:892.914000px;}
.w1_c00348{width:893.250000px;}
.x1_c00348{left:-838.913400px;}
.x2_c00348{left:-765.293400px;}
.x3_c00348{left:-743.963400px;}
.x4_c00348{left:-733.343400px;}
.x0_c00348{left:0.000000px;}
.x9_c00348{left:127.620000px;}
.x7_c00348{left:148.950000px;}
.x8_c00348{left:159.570000px;}
.x6_c00348{left:679.950000px;}
.x5_c00348{left:804.366150px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls9_c00348{letter-spacing:-0.320000pt;}
.ls8_c00348{letter-spacing:-0.058560pt;}
.ls6_c00348{letter-spacing:0.000000pt;}
.ls7_c00348{letter-spacing:0.058560pt;}
.ls0_c00348{letter-spacing:0.064000pt;}
.ls3_c00348{letter-spacing:0.128000pt;}
.ls1_c00348{letter-spacing:0.175680pt;}
.ls5_c00348{letter-spacing:18.914880pt;}
.ls2_c00348{letter-spacing:22.067200pt;}
.ls4_c00348{letter-spacing:23.318592pt;}
.ws0_c00348{word-spacing:-16.000000pt;}
.ws3a_c00348{word-spacing:-0.409920pt;}
.ws1b_c00348{word-spacing:-0.117120pt;}
.ws11_c00348{word-spacing:-0.064000pt;}
.ws7_c00348{word-spacing:0.000000pt;}
.wse_c00348{word-spacing:0.117120pt;}
.ws1_c00348{word-spacing:0.144320pt;}
.ws20_c00348{word-spacing:0.234240pt;}
.ws1e_c00348{word-spacing:0.320000pt;}
.ws9_c00348{word-spacing:0.576000pt;}
.ws27_c00348{word-spacing:0.878400pt;}
.ws26_c00348{word-spacing:1.112640pt;}
.ws37_c00348{word-spacing:1.171200pt;}
.ws35_c00348{word-spacing:1.756800pt;}
.ws1c_c00348{word-spacing:1.856000pt;}
.ws1d_c00348{word-spacing:1.920000pt;}
.ws18_c00348{word-spacing:2.459520pt;}
.ws2_c00348{word-spacing:2.822592pt;}
.wsd_c00348{word-spacing:3.103680pt;}
.ws2a_c00348{word-spacing:3.136000pt;}
.ws2b_c00348{word-spacing:3.200000pt;}
.ws5_c00348{word-spacing:3.337920pt;}
.ws23_c00348{word-spacing:3.396480pt;}
.ws17_c00348{word-spacing:3.747840pt;}
.ws2c_c00348{word-spacing:4.032000pt;}
.ws39_c00348{word-spacing:4.040640pt;}
.ws2d_c00348{word-spacing:4.096000pt;}
.ws6_c00348{word-spacing:4.274880pt;}
.ws38_c00348{word-spacing:4.392000pt;}
.ws8_c00348{word-spacing:4.684800pt;}
.ws3_c00348{word-spacing:4.831200pt;}
.ws4_c00348{word-spacing:4.837056pt;}
.ws1a_c00348{word-spacing:5.328960pt;}
.ws1f_c00348{word-spacing:5.760000pt;}
.ws19_c00348{word-spacing:5.914560pt;}
.ws2e_c00348{word-spacing:5.973120pt;}
.ws2f_c00348{word-spacing:6.207360pt;}
.ws10_c00348{word-spacing:6.720000pt;}
.wsf_c00348{word-spacing:7.360000pt;}
.ws34_c00348{word-spacing:8.256000pt;}
.ws36_c00348{word-spacing:8.842560pt;}
.ws16_c00348{word-spacing:9.152000pt;}
.ws15_c00348{word-spacing:9.280000pt;}
.ws13_c00348{word-spacing:10.112000pt;}
.ws22_c00348{word-spacing:10.130880pt;}
.ws21_c00348{word-spacing:10.365120pt;}
.ws14_c00348{word-spacing:10.496000pt;}
.ws12_c00348{word-spacing:10.560000pt;}
.ws31_c00348{word-spacing:10.775040pt;}
.ws32_c00348{word-spacing:11.072000pt;}
.ws33_c00348{word-spacing:11.136000pt;}
.ws29_c00348{word-spacing:11.360640pt;}
.ws28_c00348{word-spacing:11.419200pt;}
.wsa_c00348{word-spacing:13.376000pt;}
.wsb_c00348{word-spacing:15.049920pt;}
.wsc_c00348{word-spacing:15.167040pt;}
.ws30_c00348{word-spacing:15.576960pt;}
.ws3b_c00348{word-spacing:17.536000pt;}
.ws24_c00348{word-spacing:23.248320pt;}
.ws25_c00348{word-spacing:23.365440pt;}
._0_c00348{margin-left:-0.936960pt;}
._1_c00348{width:0.890112pt;}
._2_c00348{width:23.951040pt;}
._3_c00348{width:37.127040pt;}
._4_c00348{width:108.800000pt;}
.fs1_c00348{font-size:58.560000pt;}
.fs0_c00348{font-size:64.000000pt;}
.y0_c00348{bottom:0.000000pt;}
.y1_c00348{bottom:54.887600pt;}
.y1c_c00348{bottom:161.153467pt;}
.y37_c00348{bottom:169.319467pt;}
.y1b_c00348{bottom:186.436747pt;}
.y36_c00348{bottom:196.919467pt;}
.y35_c00348{bottom:224.519467pt;}
.y1a_c00348{bottom:239.316427pt;}
.y19_c00348{bottom:264.599707pt;}
.y34_c00348{bottom:279.559467pt;}
.y18_c00348{bottom:289.956187pt;}
.y17_c00348{bottom:315.239467pt;}
.y33_c00348{bottom:333.623307pt;}
.y32_c00348{bottom:358.906587pt;}
.y16_c00348{bottom:369.399467pt;}
.y31_c00348{bottom:384.189867pt;}
.y15_c00348{bottom:396.999467pt;}
.y30_c00348{bottom:409.546347pt;}
.y14_c00348{bottom:424.599467pt;}
.y2f_c00348{bottom:434.829627pt;}
.y2e_c00348{bottom:460.112907pt;}
.y13_c00348{bottom:478.516427pt;}
.y2d_c00348{bottom:485.396187pt;}
.y12_c00348{bottom:503.799707pt;}
.y2c_c00348{bottom:510.679467pt;}
.y11_c00348{bottom:529.082987pt;}
.y10_c00348{bottom:554.439467pt;}
.y2b_c00348{bottom:564.839333pt;}
.y2a_c00348{bottom:592.439333pt;}
.yf_c00348{bottom:608.599467pt;}
.y29_c00348{bottom:620.039333pt;}
.ye_c00348{bottom:636.199467pt;}
.yd_c00348{bottom:663.799467pt;}
.y28_c00348{bottom:674.026347pt;}
.yc_c00348{bottom:691.399467pt;}
.y27_c00348{bottom:699.309627pt;}
.yb_c00348{bottom:718.919467pt;}
.y26_c00348{bottom:724.592907pt;}
.y25_c00348{bottom:749.876187pt;}
.ya_c00348{bottom:772.912907pt;}
.y24_c00348{bottom:775.159467pt;}
.y9_c00348{bottom:798.196187pt;}
.y8_c00348{bottom:823.479467pt;}
.y23_c00348{bottom:829.319333pt;}
.y22_c00348{bottom:856.919333pt;}
.y7_c00348{bottom:877.639467pt;}
.y21_c00348{bottom:884.519333pt;}
.y6_c00348{bottom:905.239467pt;}
.y5_c00348{bottom:932.839467pt;}
.y20_c00348{bottom:938.436293pt;}
.y1f_c00348{bottom:963.792773pt;}
.y4_c00348{bottom:987.963413pt;}
.y1e_c00348{bottom:989.076053pt;}
.y3_c00348{bottom:1014.359333pt;}
.y1d_c00348{bottom:1060.599467pt;}
.y2_c00348{bottom:1060.599600pt;}
.h2_c00348{height:44.800000pt;}
.h4_c00348{height:63.479040pt;}
.h3_c00348{height:68.288000pt;}
.h5_c00348{height:69.359680pt;}
.h0_c00348{height:1122.520000pt;}
.h1_c00348{height:1122.666667pt;}
.w2_c00348{width:0.000000pt;}
.w3_c00348{width:0.058667pt;}
.w0_c00348{width:793.701333pt;}
.w1_c00348{width:794.000000pt;}
.x1_c00348{left:-745.700800pt;}
.x2_c00348{left:-680.260800pt;}
.x3_c00348{left:-661.300800pt;}
.x4_c00348{left:-651.860800pt;}
.x0_c00348{left:0.000000pt;}
.x9_c00348{left:113.440000pt;}
.x7_c00348{left:132.400000pt;}
.x8_c00348{left:141.840000pt;}
.x6_c00348{left:604.400000pt;}
.x5_c00348{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00349;src:url('chunks/assets/font_cb61405cc4720b9546716511.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00349;src:url('chunks/assets/font_dd0904bb7d57700c90aedbba.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00349{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.lsb_c00349{letter-spacing:-0.288000px;}
.lsa_c00349{letter-spacing:-0.065880px;}
.ls9_c00349{letter-spacing:0.000000px;}
.ls7_c00349{letter-spacing:0.065880px;}
.ls0_c00349{letter-spacing:0.072000px;}
.ls3_c00349{letter-spacing:0.144000px;}
.ls6_c00349{letter-spacing:0.197640px;}
.ls5_c00349{letter-spacing:17.062920px;}
.ls2_c00349{letter-spacing:18.144000px;}
.ls4_c00349{letter-spacing:18.720000px;}
.ls1_c00349{letter-spacing:23.760000px;}
.ls8_c00349{letter-spacing:27.720000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00349{word-spacing:-18.000000px;}
.wsf_c00349{word-spacing:-0.131760px;}
.wsd_c00349{word-spacing:-0.072000px;}
.ws1_c00349{word-spacing:0.000000px;}
.wse_c00349{word-spacing:0.131760px;}
.ws17_c00349{word-spacing:0.263520px;}
.ws13_c00349{word-spacing:0.288000px;}
.ws1c_c00349{word-spacing:0.592920px;}
.ws9_c00349{word-spacing:0.648000px;}
.wsa_c00349{word-spacing:0.720000px;}
.ws1d_c00349{word-spacing:0.856440px;}
.ws5_c00349{word-spacing:2.448000px;}
.ws6_c00349{word-spacing:2.520000px;}
.ws19_c00349{word-spacing:3.821040px;}
.ws1a_c00349{word-spacing:3.960000px;}
.ws18_c00349{word-spacing:4.084560px;}
.ws2_c00349{word-spacing:4.320000px;}
.ws12_c00349{word-spacing:4.896000px;}
.ws11_c00349{word-spacing:5.040000px;}
.ws3_c00349{word-spacing:5.688000px;}
.ws4_c00349{word-spacing:5.760000px;}
.wsc_c00349{word-spacing:6.048000px;}
.wsb_c00349{word-spacing:6.120000px;}
.ws14_c00349{word-spacing:8.208000px;}
.ws1e_c00349{word-spacing:9.648000px;}
.ws1f_c00349{word-spacing:9.720000px;}
.ws20_c00349{word-spacing:10.008000px;}
.ws10_c00349{word-spacing:11.660760px;}
.ws15_c00349{word-spacing:17.919360px;}
.ws16_c00349{word-spacing:18.182880px;}
.ws7_c00349{word-spacing:24.696000px;}
.ws8_c00349{word-spacing:24.840000px;}
.ws1b_c00349{word-spacing:27.720000px;}
._1_c00349{margin-left:-1.173600px;}
._0_c00349{width:1.008000px;}
._2_c00349{width:5.371200px;}
._3_c00349{width:27.669600px;}
.fc1_c00349{color:rgb(0,0,0);}
.fc0_c00349{color:rgb(35,31,32);}
.fs1_c00349{font-size:65.880000px;}
.fs0_c00349{font-size:72.000000px;}
.y0_c00349{bottom:0.000000px;}
.y1_c00349{bottom:61.748550px;}
.y1c_c00349{bottom:141.344400px;}
.y1b_c00349{bottom:172.394400px;}
.y1a_c00349{bottom:233.050710px;}
.y19_c00349{bottom:261.494400px;}
.y18_c00349{bottom:322.424250px;}
.y17_c00349{bottom:353.474250px;}
.y16_c00349{bottom:384.524250px;}
.y15_c00349{bottom:445.181340px;}
.y14_c00349{bottom:473.625030px;}
.y13_c00349{bottom:533.114670px;}
.y12_c00349{bottom:561.640710px;}
.y11_c00349{bottom:590.084400px;}
.y10_c00349{bottom:651.014250px;}
.yf_c00349{bottom:682.064250px;}
.ye_c00349{bottom:713.114250px;}
.yd_c00349{bottom:773.766870px;}
.yc_c00349{bottom:802.210560px;}
.yb_c00349{bottom:830.654250px;}
.ya_c00349{bottom:891.584400px;}
.y9_c00349{bottom:922.634400px;}
.y8_c00349{bottom:953.684400px;}
.y7_c00349{bottom:984.734400px;}
.y6_c00349{bottom:1046.834400px;}
.y5_c00349{bottom:1077.884400px;}
.y4_c00349{bottom:1108.934400px;}
.y3_c00349{bottom:1139.984400px;}
.y2_c00349{bottom:1193.174400px;}
.h2_c00349{height:50.400000px;}
.h5_c00349{height:71.413920px;}
.h3_c00349{height:76.824000px;}
.h4_c00349{height:78.048000px;}
.h0_c00349{height:1262.835000px;}
.h1_c00349{height:1263.000000px;}
.w0_c00349{width:892.914000px;}
.w1_c00349{width:893.250000px;}
.x0_c00349{left:0.000000px;}
.x1_c00349{left:54.000000px;}
.x2_c00349{left:127.620000px;}
.x4_c00349{left:148.950000px;}
.x3_c00349{left:159.570000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.lsb_c00349{letter-spacing:-0.256000pt;}
.lsa_c00349{letter-spacing:-0.058560pt;}
.ls9_c00349{letter-spacing:0.000000pt;}
.ls7_c00349{letter-spacing:0.058560pt;}
.ls0_c00349{letter-spacing:0.064000pt;}
.ls3_c00349{letter-spacing:0.128000pt;}
.ls6_c00349{letter-spacing:0.175680pt;}
.ls5_c00349{letter-spacing:15.167040pt;}
.ls2_c00349{letter-spacing:16.128000pt;}
.ls4_c00349{letter-spacing:16.640000pt;}
.ls1_c00349{letter-spacing:21.120000pt;}
.ls8_c00349{letter-spacing:24.640000pt;}
.ws0_c00349{word-spacing:-16.000000pt;}
.wsf_c00349{word-spacing:-0.117120pt;}
.wsd_c00349{word-spacing:-0.064000pt;}
.ws1_c00349{word-spacing:0.000000pt;}
.wse_c00349{word-spacing:0.117120pt;}
.ws17_c00349{word-spacing:0.234240pt;}
.ws13_c00349{word-spacing:0.256000pt;}
.ws1c_c00349{word-spacing:0.527040pt;}
.ws9_c00349{word-spacing:0.576000pt;}
.wsa_c00349{word-spacing:0.640000pt;}
.ws1d_c00349{word-spacing:0.761280pt;}
.ws5_c00349{word-spacing:2.176000pt;}
.ws6_c00349{word-spacing:2.240000pt;}
.ws19_c00349{word-spacing:3.396480pt;}
.ws1a_c00349{word-spacing:3.520000pt;}
.ws18_c00349{word-spacing:3.630720pt;}
.ws2_c00349{word-spacing:3.840000pt;}
.ws12_c00349{word-spacing:4.352000pt;}
.ws11_c00349{word-spacing:4.480000pt;}
.ws3_c00349{word-spacing:5.056000pt;}
.ws4_c00349{word-spacing:5.120000pt;}
.wsc_c00349{word-spacing:5.376000pt;}
.wsb_c00349{word-spacing:5.440000pt;}
.ws14_c00349{word-spacing:7.296000pt;}
.ws1e_c00349{word-spacing:8.576000pt;}
.ws1f_c00349{word-spacing:8.640000pt;}
.ws20_c00349{word-spacing:8.896000pt;}
.ws10_c00349{word-spacing:10.365120pt;}
.ws15_c00349{word-spacing:15.928320pt;}
.ws16_c00349{word-spacing:16.162560pt;}
.ws7_c00349{word-spacing:21.952000pt;}
.ws8_c00349{word-spacing:22.080000pt;}
.ws1b_c00349{word-spacing:24.640000pt;}
._1_c00349{margin-left:-1.043200pt;}
._0_c00349{width:0.896000pt;}
._2_c00349{width:4.774400pt;}
._3_c00349{width:24.595200pt;}
.fs1_c00349{font-size:58.560000pt;}
.fs0_c00349{font-size:64.000000pt;}
.y0_c00349{bottom:0.000000pt;}
.y1_c00349{bottom:54.887600pt;}
.y1c_c00349{bottom:125.639467pt;}
.y1b_c00349{bottom:153.239467pt;}
.y1a_c00349{bottom:207.156187pt;}
.y19_c00349{bottom:232.439467pt;}
.y18_c00349{bottom:286.599333pt;}
.y17_c00349{bottom:314.199333pt;}
.y16_c00349{bottom:341.799333pt;}
.y15_c00349{bottom:395.716747pt;}
.y14_c00349{bottom:421.000027pt;}
.y13_c00349{bottom:473.879707pt;}
.y12_c00349{bottom:499.236187pt;}
.y11_c00349{bottom:524.519467pt;}
.y10_c00349{bottom:578.679333pt;}
.yf_c00349{bottom:606.279333pt;}
.ye_c00349{bottom:633.879333pt;}
.yd_c00349{bottom:687.792773pt;}
.yc_c00349{bottom:713.076053pt;}
.yb_c00349{bottom:738.359333pt;}
.ya_c00349{bottom:792.519467pt;}
.y9_c00349{bottom:820.119467pt;}
.y8_c00349{bottom:847.719467pt;}
.y7_c00349{bottom:875.319467pt;}
.y6_c00349{bottom:930.519467pt;}
.y5_c00349{bottom:958.119467pt;}
.y4_c00349{bottom:985.719467pt;}
.y3_c00349{bottom:1013.319467pt;}
.y2_c00349{bottom:1060.599467pt;}
.h2_c00349{height:44.800000pt;}
.h5_c00349{height:63.479040pt;}
.h3_c00349{height:68.288000pt;}
.h4_c00349{height:69.376000pt;}
.h0_c00349{height:1122.520000pt;}
.h1_c00349{height:1122.666667pt;}
.w0_c00349{width:793.701333pt;}
.w1_c00349{width:794.000000pt;}
.x0_c00349{left:0.000000pt;}
.x1_c00349{left:48.000000pt;}
.x2_c00349{left:113.440000pt;}
.x4_c00349{left:132.400000pt;}
.x3_c00349{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00350;src:url('chunks/assets/font_2ace48fc98cff0f56d4f3360.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00350;src:url('chunks/assets/font_7e9473e38515598fee3bb428.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00350;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00350{font-family:ff4_c00350;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00350;src:url('chunks/assets/font_cce13880d0f9e7c1e6c6385b.woff2')format("woff");}.ff5_c00350{font-family:ff5_c00350;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00350;src:url('chunks/assets/font_9d6757535a1c7b7f786e6c99.woff2')format("woff");}.ff6_c00350{font-family:ff6_c00350;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00350{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.lsc_c00350{letter-spacing:-0.288000px;}
.lsb_c00350{letter-spacing:-0.065880px;}
.lsa_c00350{letter-spacing:0.000000px;}
.ls7_c00350{letter-spacing:0.065880px;}
.ls0_c00350{letter-spacing:0.072000px;}
.ls3_c00350{letter-spacing:0.144000px;}
.ls6_c00350{letter-spacing:0.197640px;}
.ls5_c00350{letter-spacing:17.062920px;}
.ls2_c00350{letter-spacing:18.144000px;}
.ls4_c00350{letter-spacing:18.720000px;}
.ls1_c00350{letter-spacing:23.760000px;}
.ls9_c00350{letter-spacing:24.120000px;}
.ls8_c00350{letter-spacing:27.720000px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00350{word-spacing:-18.072000px;}
.ws0_c00350{word-spacing:-18.000000px;}
.ws1_c00350{word-spacing:-16.667640px;}
.ws4_c00350{word-spacing:-16.404120px;}
.ws2f_c00350{word-spacing:-0.360000px;}
.ws27_c00350{word-spacing:-0.144000px;}
.ws14_c00350{word-spacing:-0.131760px;}
.ws12_c00350{word-spacing:-0.072000px;}
.ws6_c00350{word-spacing:0.000000px;}
.ws13_c00350{word-spacing:0.131760px;}
.ws1c_c00350{word-spacing:0.263520px;}
.ws18_c00350{word-spacing:0.288000px;}
.ws21_c00350{word-spacing:0.592920px;}
.wse_c00350{word-spacing:0.648000px;}
.wsf_c00350{word-spacing:0.720000px;}
.ws22_c00350{word-spacing:0.856440px;}
.ws2d_c00350{word-spacing:1.080000px;}
.ws2e_c00350{word-spacing:1.368000px;}
.ws2c_c00350{word-spacing:1.440000px;}
.ws32_c00350{word-spacing:1.712880px;}
.ws39_c00350{word-spacing:1.800000px;}
.ws38_c00350{word-spacing:2.437560px;}
.wsa_c00350{word-spacing:2.448000px;}
.wsb_c00350{word-spacing:2.520000px;}
.ws37_c00350{word-spacing:2.701080px;}
.ws34_c00350{word-spacing:2.766960px;}
.ws28_c00350{word-spacing:3.030480px;}
.ws1e_c00350{word-spacing:3.821040px;}
.ws1f_c00350{word-spacing:3.960000px;}
.ws1d_c00350{word-spacing:4.084560px;}
.ws7_c00350{word-spacing:4.320000px;}
.ws17_c00350{word-spacing:4.896000px;}
.ws30_c00350{word-spacing:4.941000px;}
.ws16_c00350{word-spacing:5.040000px;}
.ws8_c00350{word-spacing:5.688000px;}
.ws9_c00350{word-spacing:5.760000px;}
.ws29_c00350{word-spacing:5.995080px;}
.ws11_c00350{word-spacing:6.048000px;}
.ws10_c00350{word-spacing:6.120000px;}
.ws2a_c00350{word-spacing:6.258600px;}
.ws2_c00350{word-spacing:6.522120px;}
.ws19_c00350{word-spacing:8.208000px;}
.ws23_c00350{word-spacing:9.648000px;}
.ws24_c00350{word-spacing:9.720000px;}
.ws25_c00350{word-spacing:10.008000px;}
.ws15_c00350{word-spacing:11.660760px;}
.ws35_c00350{word-spacing:12.121920px;}
.ws3_c00350{word-spacing:12.451320px;}
.ws33_c00350{word-spacing:12.780720px;}
.ws36_c00350{word-spacing:13.176000px;}
.ws1a_c00350{word-spacing:17.919360px;}
.ws1b_c00350{word-spacing:18.182880px;}
.ws31_c00350{word-spacing:19.961640px;}
.ws26_c00350{word-spacing:20.160000px;}
.ws3a_c00350{word-spacing:22.680000px;}
.wsc_c00350{word-spacing:24.696000px;}
.wsd_c00350{word-spacing:24.840000px;}
.ws20_c00350{word-spacing:27.720000px;}
.ws2b_c00350{word-spacing:37.008000px;}
._1_c00350{margin-left:-1.173600px;}
._0_c00350{width:1.008000px;}
._2_c00350{width:5.371200px;}
._4_c00350{width:15.657768px;}
._3_c00350{width:27.669600px;}
.fc2_c00350{color:transparent;}
.fc1_c00350{color:rgb(0,0,0);}
.fc0_c00350{color:rgb(35,31,32);}
.fs1_c00350{font-size:65.880000px;}
.fs0_c00350{font-size:72.000000px;}
.y0_c00350{bottom:0.000000px;}
.y1_c00350{bottom:61.748550px;}
.y1c_c00350{bottom:141.344400px;}
.y37_c00350{bottom:156.824400px;}
.y1b_c00350{bottom:172.394400px;}
.y36_c00350{bottom:187.874400px;}
.y35_c00350{bottom:218.924400px;}
.y1a_c00350{bottom:233.050710px;}
.y34_c00350{bottom:249.974400px;}
.y19_c00350{bottom:261.494400px;}
.y33_c00350{bottom:310.625220px;}
.y18_c00350{bottom:322.424250px;}
.y32_c00350{bottom:339.068910px;}
.y17_c00350{bottom:353.474250px;}
.y31_c00350{bottom:367.594950px;}
.y16_c00350{bottom:384.524250px;}
.y30_c00350{bottom:427.084590px;}
.y15_c00350{bottom:445.181340px;}
.y2f_c00350{bottom:455.528280px;}
.y14_c00350{bottom:473.625030px;}
.y2e_c00350{bottom:483.971970px;}
.y13_c00350{bottom:533.114670px;}
.y2d_c00350{bottom:543.461610px;}
.y12_c00350{bottom:561.640710px;}
.y2c_c00350{bottom:571.987650px;}
.y11_c00350{bottom:590.084400px;}
.y2b_c00350{bottom:600.431340px;}
.y10_c00350{bottom:651.014250px;}
.y2a_c00350{bottom:659.920980px;}
.yf_c00350{bottom:682.064250px;}
.y29_c00350{bottom:688.364670px;}
.ye_c00350{bottom:713.114250px;}
.y28_c00350{bottom:716.890710px;}
.y27_c00350{bottom:745.334400px;}
.yd_c00350{bottom:773.766870px;}
.yc_c00350{bottom:802.210560px;}
.y26_c00350{bottom:806.264400px;}
.yb_c00350{bottom:830.654250px;}
.y25_c00350{bottom:837.314400px;}
.y24_c00350{bottom:868.364400px;}
.ya_c00350{bottom:891.584400px;}
.y23_c00350{bottom:899.414400px;}
.y9_c00350{bottom:922.634400px;}
.y8_c00350{bottom:953.684400px;}
.y22_c00350{bottom:960.066870px;}
.y7_c00350{bottom:984.734400px;}
.y21_c00350{bottom:988.510560px;}
.y20_c00350{bottom:1016.954250px;}
.y6_c00350{bottom:1046.834400px;}
.y5_c00350{bottom:1077.884400px;}
.y4_c00350{bottom:1108.934400px;}
.y1f_c00350{bottom:1139.894400px;}
.y1e_c00350{bottom:1139.984400px;}
.y3_c00350{bottom:1139.984550px;}
.y1d_c00350{bottom:1193.174400px;}
.y2_c00350{bottom:1193.174550px;}
.h2_c00350{height:50.400000px;}
.h5_c00350{height:71.413920px;}
.h3_c00350{height:76.824000px;}
.h4_c00350{height:78.048000px;}
.h0_c00350{height:1262.835000px;}
.h1_c00350{height:1263.000000px;}
.w2_c00350{width:0.000000px;}
.w3_c00350{width:0.066000px;}
.w0_c00350{width:892.914000px;}
.w1_c00350{width:893.250000px;}
.x1_c00350{left:-838.913400px;}
.x2_c00350{left:-765.293400px;}
.x4_c00350{left:-743.963400px;}
.x3_c00350{left:-733.343400px;}
.x0_c00350{left:0.000000px;}
.x7_c00350{left:127.620000px;}
.x8_c00350{left:148.950000px;}
.x9_c00350{left:159.570000px;}
.x6_c00350{left:679.950000px;}
.x5_c00350{left:804.366150px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.lsc_c00350{letter-spacing:-0.256000pt;}
.lsb_c00350{letter-spacing:-0.058560pt;}
.lsa_c00350{letter-spacing:0.000000pt;}
.ls7_c00350{letter-spacing:0.058560pt;}
.ls0_c00350{letter-spacing:0.064000pt;}
.ls3_c00350{letter-spacing:0.128000pt;}
.ls6_c00350{letter-spacing:0.175680pt;}
.ls5_c00350{letter-spacing:15.167040pt;}
.ls2_c00350{letter-spacing:16.128000pt;}
.ls4_c00350{letter-spacing:16.640000pt;}
.ls1_c00350{letter-spacing:21.120000pt;}
.ls9_c00350{letter-spacing:21.440000pt;}
.ls8_c00350{letter-spacing:24.640000pt;}
.ws5_c00350{word-spacing:-16.064000pt;}
.ws0_c00350{word-spacing:-16.000000pt;}
.ws1_c00350{word-spacing:-14.815680pt;}
.ws4_c00350{word-spacing:-14.581440pt;}
.ws2f_c00350{word-spacing:-0.320000pt;}
.ws27_c00350{word-spacing:-0.128000pt;}
.ws14_c00350{word-spacing:-0.117120pt;}
.ws12_c00350{word-spacing:-0.064000pt;}
.ws6_c00350{word-spacing:0.000000pt;}
.ws13_c00350{word-spacing:0.117120pt;}
.ws1c_c00350{word-spacing:0.234240pt;}
.ws18_c00350{word-spacing:0.256000pt;}
.ws21_c00350{word-spacing:0.527040pt;}
.wse_c00350{word-spacing:0.576000pt;}
.wsf_c00350{word-spacing:0.640000pt;}
.ws22_c00350{word-spacing:0.761280pt;}
.ws2d_c00350{word-spacing:0.960000pt;}
.ws2e_c00350{word-spacing:1.216000pt;}
.ws2c_c00350{word-spacing:1.280000pt;}
.ws32_c00350{word-spacing:1.522560pt;}
.ws39_c00350{word-spacing:1.600000pt;}
.ws38_c00350{word-spacing:2.166720pt;}
.wsa_c00350{word-spacing:2.176000pt;}
.wsb_c00350{word-spacing:2.240000pt;}
.ws37_c00350{word-spacing:2.400960pt;}
.ws34_c00350{word-spacing:2.459520pt;}
.ws28_c00350{word-spacing:2.693760pt;}
.ws1e_c00350{word-spacing:3.396480pt;}
.ws1f_c00350{word-spacing:3.520000pt;}
.ws1d_c00350{word-spacing:3.630720pt;}
.ws7_c00350{word-spacing:3.840000pt;}
.ws17_c00350{word-spacing:4.352000pt;}
.ws30_c00350{word-spacing:4.392000pt;}
.ws16_c00350{word-spacing:4.480000pt;}
.ws8_c00350{word-spacing:5.056000pt;}
.ws9_c00350{word-spacing:5.120000pt;}
.ws29_c00350{word-spacing:5.328960pt;}
.ws11_c00350{word-spacing:5.376000pt;}
.ws10_c00350{word-spacing:5.440000pt;}
.ws2a_c00350{word-spacing:5.563200pt;}
.ws2_c00350{word-spacing:5.797440pt;}
.ws19_c00350{word-spacing:7.296000pt;}
.ws23_c00350{word-spacing:8.576000pt;}
.ws24_c00350{word-spacing:8.640000pt;}
.ws25_c00350{word-spacing:8.896000pt;}
.ws15_c00350{word-spacing:10.365120pt;}
.ws35_c00350{word-spacing:10.775040pt;}
.ws3_c00350{word-spacing:11.067840pt;}
.ws33_c00350{word-spacing:11.360640pt;}
.ws36_c00350{word-spacing:11.712000pt;}
.ws1a_c00350{word-spacing:15.928320pt;}
.ws1b_c00350{word-spacing:16.162560pt;}
.ws31_c00350{word-spacing:17.743680pt;}
.ws26_c00350{word-spacing:17.920000pt;}
.ws3a_c00350{word-spacing:20.160000pt;}
.wsc_c00350{word-spacing:21.952000pt;}
.wsd_c00350{word-spacing:22.080000pt;}
.ws20_c00350{word-spacing:24.640000pt;}
.ws2b_c00350{word-spacing:32.896000pt;}
._1_c00350{margin-left:-1.043200pt;}
._0_c00350{width:0.896000pt;}
._2_c00350{width:4.774400pt;}
._4_c00350{width:13.918016pt;}
._3_c00350{width:24.595200pt;}
.fs1_c00350{font-size:58.560000pt;}
.fs0_c00350{font-size:64.000000pt;}
.y0_c00350{bottom:0.000000pt;}
.y1_c00350{bottom:54.887600pt;}
.y1c_c00350{bottom:125.639467pt;}
.y37_c00350{bottom:139.399467pt;}
.y1b_c00350{bottom:153.239467pt;}
.y36_c00350{bottom:166.999467pt;}
.y35_c00350{bottom:194.599467pt;}
.y1a_c00350{bottom:207.156187pt;}
.y34_c00350{bottom:222.199467pt;}
.y19_c00350{bottom:232.439467pt;}
.y33_c00350{bottom:276.111307pt;}
.y18_c00350{bottom:286.599333pt;}
.y32_c00350{bottom:301.394587pt;}
.y17_c00350{bottom:314.199333pt;}
.y31_c00350{bottom:326.751067pt;}
.y16_c00350{bottom:341.799333pt;}
.y30_c00350{bottom:379.630747pt;}
.y15_c00350{bottom:395.716747pt;}
.y2f_c00350{bottom:404.914027pt;}
.y14_c00350{bottom:421.000027pt;}
.y2e_c00350{bottom:430.197307pt;}
.y13_c00350{bottom:473.879707pt;}
.y2d_c00350{bottom:483.076987pt;}
.y12_c00350{bottom:499.236187pt;}
.y2c_c00350{bottom:508.433467pt;}
.y11_c00350{bottom:524.519467pt;}
.y2b_c00350{bottom:533.716747pt;}
.y10_c00350{bottom:578.679333pt;}
.y2a_c00350{bottom:586.596427pt;}
.yf_c00350{bottom:606.279333pt;}
.y29_c00350{bottom:611.879707pt;}
.ye_c00350{bottom:633.879333pt;}
.y28_c00350{bottom:637.236187pt;}
.y27_c00350{bottom:662.519467pt;}
.yd_c00350{bottom:687.792773pt;}
.yc_c00350{bottom:713.076053pt;}
.y26_c00350{bottom:716.679467pt;}
.yb_c00350{bottom:738.359333pt;}
.y25_c00350{bottom:744.279467pt;}
.y24_c00350{bottom:771.879467pt;}
.ya_c00350{bottom:792.519467pt;}
.y23_c00350{bottom:799.479467pt;}
.y9_c00350{bottom:820.119467pt;}
.y8_c00350{bottom:847.719467pt;}
.y22_c00350{bottom:853.392773pt;}
.y7_c00350{bottom:875.319467pt;}
.y21_c00350{bottom:878.676053pt;}
.y20_c00350{bottom:903.959333pt;}
.y6_c00350{bottom:930.519467pt;}
.y5_c00350{bottom:958.119467pt;}
.y4_c00350{bottom:985.719467pt;}
.y1f_c00350{bottom:1013.239467pt;}
.y1e_c00350{bottom:1013.319467pt;}
.y3_c00350{bottom:1013.319600pt;}
.y1d_c00350{bottom:1060.599467pt;}
.y2_c00350{bottom:1060.599600pt;}
.h2_c00350{height:44.800000pt;}
.h5_c00350{height:63.479040pt;}
.h3_c00350{height:68.288000pt;}
.h4_c00350{height:69.376000pt;}
.h0_c00350{height:1122.520000pt;}
.h1_c00350{height:1122.666667pt;}
.w2_c00350{width:0.000000pt;}
.w3_c00350{width:0.058667pt;}
.w0_c00350{width:793.701333pt;}
.w1_c00350{width:794.000000pt;}
.x1_c00350{left:-745.700800pt;}
.x2_c00350{left:-680.260800pt;}
.x4_c00350{left:-661.300800pt;}
.x3_c00350{left:-651.860800pt;}
.x0_c00350{left:0.000000pt;}
.x7_c00350{left:113.440000pt;}
.x8_c00350{left:132.400000pt;}
.x9_c00350{left:141.840000pt;}
.x6_c00350{left:604.400000pt;}
.x5_c00350{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_aff643271e140eb3ff9f35aa.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_241ae769688c2a0af8b67217.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00351{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls9_c00351{letter-spacing:-0.065880px;}
.ls8_c00351{letter-spacing:0.000000px;}
.ls2_c00351{letter-spacing:0.065880px;}
.ls1_c00351{letter-spacing:0.072000px;}
.ls4_c00351{letter-spacing:0.144000px;}
.ls0_c00351{letter-spacing:0.197640px;}
.ls7_c00351{letter-spacing:16.487604px;}
.ls3_c00351{letter-spacing:17.688780px;}
.ls5_c00351{letter-spacing:26.280000px;}
.ls6_c00351{letter-spacing:26.352000px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00351{word-spacing:-18.144000px;}
.ws0_c00351{word-spacing:-18.000000px;}
.ws1_c00351{word-spacing:-16.470000px;}
.ws1f_c00351{word-spacing:-0.131760px;}
.wsb_c00351{word-spacing:-0.072000px;}
.ws5_c00351{word-spacing:0.000000px;}
.ws19_c00351{word-spacing:0.072000px;}
.ws8_c00351{word-spacing:0.131760px;}
.ws18_c00351{word-spacing:0.360000px;}
.ws17_c00351{word-spacing:0.648000px;}
.ws16_c00351{word-spacing:0.720000px;}
.wsd_c00351{word-spacing:1.317600px;}
.wse_c00351{word-spacing:1.581120px;}
.ws11_c00351{word-spacing:1.712880px;}
.ws10_c00351{word-spacing:1.976400px;}
.wsc_c00351{word-spacing:2.437560px;}
.ws13_c00351{word-spacing:2.448000px;}
.ws3_c00351{word-spacing:2.592000px;}
.ws12_c00351{word-spacing:2.880000px;}
.ws9_c00351{word-spacing:3.528000px;}
.wsf_c00351{word-spacing:3.821040px;}
.ws2_c00351{word-spacing:4.018680px;}
.ws1d_c00351{word-spacing:4.216320px;}
.ws1a_c00351{word-spacing:8.280000px;}
.ws15_c00351{word-spacing:8.928000px;}
.ws1c_c00351{word-spacing:9.618480px;}
.ws1b_c00351{word-spacing:9.882000px;}
.ws20_c00351{word-spacing:10.728000px;}
.ws7_c00351{word-spacing:11.792520px;}
.ws14_c00351{word-spacing:12.168000px;}
.ws6_c00351{word-spacing:13.505400px;}
.wsa_c00351{word-spacing:16.200000px;}
.ws21_c00351{word-spacing:20.422800px;}
.ws1e_c00351{word-spacing:25.693200px;}
._1_c00351{margin-left:-1.067256px;}
._0_c00351{width:1.126548px;}
.fc1_c00351{color:rgb(0,0,0);}
.fc0_c00351{color:rgb(35,31,32);}
.fs1_c00351{font-size:65.880000px;}
.fs0_c00351{font-size:72.000000px;}
.y0_c00351{bottom:0.000000px;}
.y1_c00351{bottom:61.748550px;}
.y1e_c00351{bottom:124.338360px;}
.y1d_c00351{bottom:152.864400px;}
.y1c_c00351{bottom:213.794400px;}
.y1b_c00351{bottom:244.844400px;}
.y1a_c00351{bottom:275.804400px;}
.y19_c00351{bottom:337.802790px;}
.y18_c00351{bottom:367.597020px;}
.y17_c00351{bottom:396.040710px;}
.y16_c00351{bottom:424.484400px;}
.y15_c00351{bottom:485.414400px;}
.y14_c00351{bottom:516.464400px;}
.y13_c00351{bottom:547.424400px;}
.y12_c00351{bottom:578.564400px;}
.y11_c00351{bottom:609.614400px;}
.y10_c00351{bottom:640.664400px;}
.yf_c00351{bottom:671.714400px;}
.ye_c00351{bottom:732.363660px;}
.yd_c00351{bottom:760.807350px;}
.yc_c00351{bottom:789.251040px;}
.yb_c00351{bottom:846.220770px;}
.ya_c00351{bottom:874.664460px;}
.y9_c00351{bottom:903.108150px;}
.y8_c00351{bottom:961.514250px;}
.y7_c00351{bottom:992.564250px;}
.y6_c00351{bottom:1023.614250px;}
.y5_c00351{bottom:1084.266870px;}
.y4_c00351{bottom:1112.710560px;}
.y3_c00351{bottom:1141.154250px;}
.y2_c00351{bottom:1193.174400px;}
.h2_c00351{height:50.400000px;}
.h4_c00351{height:71.413920px;}
.h3_c00351{height:76.824000px;}
.h5_c00351{height:78.048000px;}
.h6_c00351{height:78.093840px;}
.h0_c00351{height:1262.835000px;}
.h1_c00351{height:1263.000000px;}
.w0_c00351{width:892.914000px;}
.w1_c00351{width:893.250000px;}
.x0_c00351{left:0.000000px;}
.x1_c00351{left:54.000000px;}
.x2_c00351{left:127.620000px;}
.x3_c00351{left:148.950000px;}
.x4_c00351{left:159.570000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls9_c00351{letter-spacing:-0.058560pt;}
.ls8_c00351{letter-spacing:0.000000pt;}
.ls2_c00351{letter-spacing:0.058560pt;}
.ls1_c00351{letter-spacing:0.064000pt;}
.ls4_c00351{letter-spacing:0.128000pt;}
.ls0_c00351{letter-spacing:0.175680pt;}
.ls7_c00351{letter-spacing:14.655648pt;}
.ls3_c00351{letter-spacing:15.723360pt;}
.ls5_c00351{letter-spacing:23.360000pt;}
.ls6_c00351{letter-spacing:23.424000pt;}
.ws4_c00351{word-spacing:-16.128000pt;}
.ws0_c00351{word-spacing:-16.000000pt;}
.ws1_c00351{word-spacing:-14.640000pt;}
.ws1f_c00351{word-spacing:-0.117120pt;}
.wsb_c00351{word-spacing:-0.064000pt;}
.ws5_c00351{word-spacing:0.000000pt;}
.ws19_c00351{word-spacing:0.064000pt;}
.ws8_c00351{word-spacing:0.117120pt;}
.ws18_c00351{word-spacing:0.320000pt;}
.ws17_c00351{word-spacing:0.576000pt;}
.ws16_c00351{word-spacing:0.640000pt;}
.wsd_c00351{word-spacing:1.171200pt;}
.wse_c00351{word-spacing:1.405440pt;}
.ws11_c00351{word-spacing:1.522560pt;}
.ws10_c00351{word-spacing:1.756800pt;}
.wsc_c00351{word-spacing:2.166720pt;}
.ws13_c00351{word-spacing:2.176000pt;}
.ws3_c00351{word-spacing:2.304000pt;}
.ws12_c00351{word-spacing:2.560000pt;}
.ws9_c00351{word-spacing:3.136000pt;}
.wsf_c00351{word-spacing:3.396480pt;}
.ws2_c00351{word-spacing:3.572160pt;}
.ws1d_c00351{word-spacing:3.747840pt;}
.ws1a_c00351{word-spacing:7.360000pt;}
.ws15_c00351{word-spacing:7.936000pt;}
.ws1c_c00351{word-spacing:8.549760pt;}
.ws1b_c00351{word-spacing:8.784000pt;}
.ws20_c00351{word-spacing:9.536000pt;}
.ws7_c00351{word-spacing:10.482240pt;}
.ws14_c00351{word-spacing:10.816000pt;}
.ws6_c00351{word-spacing:12.004800pt;}
.wsa_c00351{word-spacing:14.400000pt;}
.ws21_c00351{word-spacing:18.153600pt;}
.ws1e_c00351{word-spacing:22.838400pt;}
._1_c00351{margin-left:-0.948672pt;}
._0_c00351{width:1.001376pt;}
.fs1_c00351{font-size:58.560000pt;}
.fs0_c00351{font-size:64.000000pt;}
.y0_c00351{bottom:0.000000pt;}
.y1_c00351{bottom:54.887600pt;}
.y1e_c00351{bottom:110.522987pt;}
.y1d_c00351{bottom:135.879467pt;}
.y1c_c00351{bottom:190.039467pt;}
.y1b_c00351{bottom:217.639467pt;}
.y1a_c00351{bottom:245.159467pt;}
.y19_c00351{bottom:300.269147pt;}
.y18_c00351{bottom:326.752907pt;}
.y17_c00351{bottom:352.036187pt;}
.y16_c00351{bottom:377.319467pt;}
.y15_c00351{bottom:431.479467pt;}
.y14_c00351{bottom:459.079467pt;}
.y13_c00351{bottom:486.599467pt;}
.y12_c00351{bottom:514.279467pt;}
.y11_c00351{bottom:541.879467pt;}
.y10_c00351{bottom:569.479467pt;}
.yf_c00351{bottom:597.079467pt;}
.ye_c00351{bottom:650.989920pt;}
.yd_c00351{bottom:676.273200pt;}
.yc_c00351{bottom:701.556480pt;}
.yb_c00351{bottom:752.196240pt;}
.ya_c00351{bottom:777.479520pt;}
.y9_c00351{bottom:802.762800pt;}
.y8_c00351{bottom:854.679333pt;}
.y7_c00351{bottom:882.279333pt;}
.y6_c00351{bottom:909.879333pt;}
.y5_c00351{bottom:963.792773pt;}
.y4_c00351{bottom:989.076053pt;}
.y3_c00351{bottom:1014.359333pt;}
.y2_c00351{bottom:1060.599467pt;}
.h2_c00351{height:44.800000pt;}
.h4_c00351{height:63.479040pt;}
.h3_c00351{height:68.288000pt;}
.h5_c00351{height:69.376000pt;}
.h6_c00351{height:69.416747pt;}
.h0_c00351{height:1122.520000pt;}
.h1_c00351{height:1122.666667pt;}
.w0_c00351{width:793.701333pt;}
.w1_c00351{width:794.000000pt;}
.x0_c00351{left:0.000000pt;}
.x1_c00351{left:48.000000pt;}
.x2_c00351{left:113.440000pt;}
.x3_c00351{left:132.400000pt;}
.x4_c00351{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00352;src:url('chunks/assets/font_74224d5168d38d88520e56a7.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00352;src:url('chunks/assets/font_1c0c305b09a79bb8933914c6.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00352;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00352;src:url('chunks/assets/font_1c5d67b458b8ba45b0e5bbcb.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00352;src:url('chunks/assets/font_297d753322e7bf366653562d.woff2')format("woff");}.ff6_c00352{font-family:ff6_c00352;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00352{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls11_c00352{letter-spacing:-0.197640px;}
.ls10_c00352{letter-spacing:-0.065880px;}
.lsf_c00352{letter-spacing:0.000000px;}
.ls2_c00352{letter-spacing:0.065880px;}
.ls1_c00352{letter-spacing:0.072000px;}
.ls4_c00352{letter-spacing:0.144000px;}
.ls0_c00352{letter-spacing:0.197640px;}
.lse_c00352{letter-spacing:16.470000px;}
.ls7_c00352{letter-spacing:16.487604px;}
.lsc_c00352{letter-spacing:16.555644px;}
.lsd_c00352{letter-spacing:16.601760px;}
.lsb_c00352{letter-spacing:17.141976px;}
.ls3_c00352{letter-spacing:17.682192px;}
.ls8_c00352{letter-spacing:22.118544px;}
.lsa_c00352{letter-spacing:22.694400px;}
.ls9_c00352{letter-spacing:24.177960px;}
.ls5_c00352{letter-spacing:26.280000px;}
.ls6_c00352{letter-spacing:26.352000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00352{word-spacing:-18.144000px;}
.ws0_c00352{word-spacing:-18.000000px;}
.ws1_c00352{word-spacing:-16.470000px;}
.ws2f_c00352{word-spacing:-0.504000px;}
.ws33_c00352{word-spacing:-0.461160px;}
.ws1f_c00352{word-spacing:-0.131760px;}
.wsb_c00352{word-spacing:-0.072000px;}
.ws6_c00352{word-spacing:0.000000px;}
.ws19_c00352{word-spacing:0.072000px;}
.ws8_c00352{word-spacing:0.131760px;}
.ws28_c00352{word-spacing:0.197640px;}
.ws32_c00352{word-spacing:0.263520px;}
.ws18_c00352{word-spacing:0.360000px;}
.ws25_c00352{word-spacing:0.592920px;}
.ws17_c00352{word-spacing:0.648000px;}
.ws16_c00352{word-spacing:0.720000px;}
.ws31_c00352{word-spacing:0.856440px;}
.wsd_c00352{word-spacing:1.317600px;}
.wse_c00352{word-spacing:1.581120px;}
.ws11_c00352{word-spacing:1.712880px;}
.ws10_c00352{word-spacing:1.976400px;}
.wsc_c00352{word-spacing:2.437560px;}
.ws13_c00352{word-spacing:2.448000px;}
.ws2b_c00352{word-spacing:2.520000px;}
.ws3_c00352{word-spacing:2.592000px;}
.ws38_c00352{word-spacing:2.766960px;}
.ws12_c00352{word-spacing:2.880000px;}
.ws9_c00352{word-spacing:3.528000px;}
.wsf_c00352{word-spacing:3.821040px;}
.ws2_c00352{word-spacing:4.018680px;}
.ws1d_c00352{word-spacing:4.216320px;}
.ws24_c00352{word-spacing:4.248000px;}
.ws2d_c00352{word-spacing:4.608000px;}
.ws2e_c00352{word-spacing:4.680000px;}
.ws2c_c00352{word-spacing:5.400000px;}
.ws36_c00352{word-spacing:6.120000px;}
.ws22_c00352{word-spacing:6.390360px;}
.ws27_c00352{word-spacing:7.444440px;}
.ws26_c00352{word-spacing:7.707960px;}
.ws1a_c00352{word-spacing:8.280000px;}
.ws15_c00352{word-spacing:8.928000px;}
.ws23_c00352{word-spacing:9.000000px;}
.ws1c_c00352{word-spacing:9.618480px;}
.ws1b_c00352{word-spacing:9.882000px;}
.ws30_c00352{word-spacing:9.947880px;}
.ws20_c00352{word-spacing:10.728000px;}
.ws5_c00352{word-spacing:11.792520px;}
.ws29_c00352{word-spacing:12.121920px;}
.ws14_c00352{word-spacing:12.168000px;}
.ws2a_c00352{word-spacing:12.385440px;}
.ws3b_c00352{word-spacing:12.978360px;}
.ws3a_c00352{word-spacing:13.307760px;}
.ws7_c00352{word-spacing:13.505400px;}
.ws39_c00352{word-spacing:15.613560px;}
.wsa_c00352{word-spacing:16.200000px;}
.ws35_c00352{word-spacing:16.488000px;}
.ws34_c00352{word-spacing:19.368000px;}
.ws21_c00352{word-spacing:20.422800px;}
.ws37_c00352{word-spacing:20.448000px;}
.ws1e_c00352{word-spacing:25.693200px;}
._3_c00352{margin-left:-6.713172px;}
._1_c00352{margin-left:-1.067256px;}
._0_c00352{width:1.126548px;}
._2_c00352{width:6.805404px;}
._4_c00352{width:27.669600px;}
.fc2_c00352{color:transparent;}
.fc1_c00352{color:rgb(0,0,0);}
.fc0_c00352{color:rgb(35,31,32);}
.fs1_c00352{font-size:65.880000px;}
.fs0_c00352{font-size:72.000000px;}
.y0_c00352{bottom:0.000000px;}
.y1_c00352{bottom:61.748550px;}
.y1e_c00352{bottom:124.338360px;}
.y1d_c00352{bottom:152.864400px;}
.y3a_c00352{bottom:178.687290px;}
.y39_c00352{bottom:207.130980px;}
.y1c_c00352{bottom:213.794400px;}
.y38_c00352{bottom:235.657020px;}
.y1b_c00352{bottom:244.844400px;}
.y37_c00352{bottom:264.100710px;}
.y1a_c00352{bottom:275.804400px;}
.y36_c00352{bottom:292.544400px;}
.y19_c00352{bottom:337.802790px;}
.y35_c00352{bottom:353.474400px;}
.y18_c00352{bottom:367.597020px;}
.y34_c00352{bottom:384.524400px;}
.y17_c00352{bottom:396.040710px;}
.y33_c00352{bottom:415.574400px;}
.y16_c00352{bottom:424.484400px;}
.y32_c00352{bottom:446.624400px;}
.y31_c00352{bottom:477.674400px;}
.y15_c00352{bottom:485.414400px;}
.y14_c00352{bottom:516.464400px;}
.y30_c00352{bottom:538.330980px;}
.y13_c00352{bottom:547.424400px;}
.y2f_c00352{bottom:566.774670px;}
.y12_c00352{bottom:578.564400px;}
.y2e_c00352{bottom:595.218360px;}
.y11_c00352{bottom:609.614400px;}
.y2d_c00352{bottom:623.744400px;}
.y10_c00352{bottom:640.664400px;}
.yf_c00352{bottom:671.714400px;}
.y2c_c00352{bottom:684.674100px;}
.y2b_c00352{bottom:715.724100px;}
.ye_c00352{bottom:732.363660px;}
.y2a_c00352{bottom:746.774100px;}
.yd_c00352{bottom:760.807350px;}
.y29_c00352{bottom:777.824100px;}
.yc_c00352{bottom:789.251040px;}
.y28_c00352{bottom:838.473330px;}
.yb_c00352{bottom:846.220770px;}
.y27_c00352{bottom:866.917020px;}
.ya_c00352{bottom:874.664460px;}
.y26_c00352{bottom:895.360710px;}
.y9_c00352{bottom:903.108150px;}
.y25_c00352{bottom:923.804400px;}
.y8_c00352{bottom:961.514250px;}
.y24_c00352{bottom:984.734250px;}
.y7_c00352{bottom:992.564250px;}
.y23_c00352{bottom:1015.784250px;}
.y6_c00352{bottom:1023.614250px;}
.y22_c00352{bottom:1046.834250px;}
.y5_c00352{bottom:1084.266870px;}
.y21_c00352{bottom:1108.844400px;}
.y4_c00352{bottom:1112.710560px;}
.y20_c00352{bottom:1139.894400px;}
.y3_c00352{bottom:1141.154250px;}
.y1f_c00352{bottom:1193.174400px;}
.y2_c00352{bottom:1193.174550px;}
.h2_c00352{height:50.400000px;}
.h4_c00352{height:71.413920px;}
.h3_c00352{height:76.824000px;}
.h5_c00352{height:78.048000px;}
.h6_c00352{height:78.093840px;}
.h0_c00352{height:1262.835000px;}
.h1_c00352{height:1263.000000px;}
.w2_c00352{width:0.000000px;}
.w3_c00352{width:0.066000px;}
.w0_c00352{width:892.914000px;}
.w1_c00352{width:893.250000px;}
.x1_c00352{left:-838.913400px;}
.x2_c00352{left:-765.293400px;}
.x3_c00352{left:-743.963400px;}
.x4_c00352{left:-733.343400px;}
.x0_c00352{left:0.000000px;}
.x9_c00352{left:127.620000px;}
.x7_c00352{left:148.950000px;}
.x8_c00352{left:159.570000px;}
.x6_c00352{left:679.950000px;}
.x5_c00352{left:804.366150px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls11_c00352{letter-spacing:-0.175680pt;}
.ls10_c00352{letter-spacing:-0.058560pt;}
.lsf_c00352{letter-spacing:0.000000pt;}
.ls2_c00352{letter-spacing:0.058560pt;}
.ls1_c00352{letter-spacing:0.064000pt;}
.ls4_c00352{letter-spacing:0.128000pt;}
.ls0_c00352{letter-spacing:0.175680pt;}
.lse_c00352{letter-spacing:14.640000pt;}
.ls7_c00352{letter-spacing:14.655648pt;}
.lsc_c00352{letter-spacing:14.716128pt;}
.lsd_c00352{letter-spacing:14.757120pt;}
.lsb_c00352{letter-spacing:15.237312pt;}
.ls3_c00352{letter-spacing:15.717504pt;}
.ls8_c00352{letter-spacing:19.660928pt;}
.lsa_c00352{letter-spacing:20.172800pt;}
.ls9_c00352{letter-spacing:21.491520pt;}
.ls5_c00352{letter-spacing:23.360000pt;}
.ls6_c00352{letter-spacing:23.424000pt;}
.ws4_c00352{word-spacing:-16.128000pt;}
.ws0_c00352{word-spacing:-16.000000pt;}
.ws1_c00352{word-spacing:-14.640000pt;}
.ws2f_c00352{word-spacing:-0.448000pt;}
.ws33_c00352{word-spacing:-0.409920pt;}
.ws1f_c00352{word-spacing:-0.117120pt;}
.wsb_c00352{word-spacing:-0.064000pt;}
.ws6_c00352{word-spacing:0.000000pt;}
.ws19_c00352{word-spacing:0.064000pt;}
.ws8_c00352{word-spacing:0.117120pt;}
.ws28_c00352{word-spacing:0.175680pt;}
.ws32_c00352{word-spacing:0.234240pt;}
.ws18_c00352{word-spacing:0.320000pt;}
.ws25_c00352{word-spacing:0.527040pt;}
.ws17_c00352{word-spacing:0.576000pt;}
.ws16_c00352{word-spacing:0.640000pt;}
.ws31_c00352{word-spacing:0.761280pt;}
.wsd_c00352{word-spacing:1.171200pt;}
.wse_c00352{word-spacing:1.405440pt;}
.ws11_c00352{word-spacing:1.522560pt;}
.ws10_c00352{word-spacing:1.756800pt;}
.wsc_c00352{word-spacing:2.166720pt;}
.ws13_c00352{word-spacing:2.176000pt;}
.ws2b_c00352{word-spacing:2.240000pt;}
.ws3_c00352{word-spacing:2.304000pt;}
.ws38_c00352{word-spacing:2.459520pt;}
.ws12_c00352{word-spacing:2.560000pt;}
.ws9_c00352{word-spacing:3.136000pt;}
.wsf_c00352{word-spacing:3.396480pt;}
.ws2_c00352{word-spacing:3.572160pt;}
.ws1d_c00352{word-spacing:3.747840pt;}
.ws24_c00352{word-spacing:3.776000pt;}
.ws2d_c00352{word-spacing:4.096000pt;}
.ws2e_c00352{word-spacing:4.160000pt;}
.ws2c_c00352{word-spacing:4.800000pt;}
.ws36_c00352{word-spacing:5.440000pt;}
.ws22_c00352{word-spacing:5.680320pt;}
.ws27_c00352{word-spacing:6.617280pt;}
.ws26_c00352{word-spacing:6.851520pt;}
.ws1a_c00352{word-spacing:7.360000pt;}
.ws15_c00352{word-spacing:7.936000pt;}
.ws23_c00352{word-spacing:8.000000pt;}
.ws1c_c00352{word-spacing:8.549760pt;}
.ws1b_c00352{word-spacing:8.784000pt;}
.ws30_c00352{word-spacing:8.842560pt;}
.ws20_c00352{word-spacing:9.536000pt;}
.ws5_c00352{word-spacing:10.482240pt;}
.ws29_c00352{word-spacing:10.775040pt;}
.ws14_c00352{word-spacing:10.816000pt;}
.ws2a_c00352{word-spacing:11.009280pt;}
.ws3b_c00352{word-spacing:11.536320pt;}
.ws3a_c00352{word-spacing:11.829120pt;}
.ws7_c00352{word-spacing:12.004800pt;}
.ws39_c00352{word-spacing:13.878720pt;}
.wsa_c00352{word-spacing:14.400000pt;}
.ws35_c00352{word-spacing:14.656000pt;}
.ws34_c00352{word-spacing:17.216000pt;}
.ws21_c00352{word-spacing:18.153600pt;}
.ws37_c00352{word-spacing:18.176000pt;}
.ws1e_c00352{word-spacing:22.838400pt;}
._3_c00352{margin-left:-5.967264pt;}
._1_c00352{margin-left:-0.948672pt;}
._0_c00352{width:1.001376pt;}
._2_c00352{width:6.049248pt;}
._4_c00352{width:24.595200pt;}
.fs1_c00352{font-size:58.560000pt;}
.fs0_c00352{font-size:64.000000pt;}
.y0_c00352{bottom:0.000000pt;}
.y1_c00352{bottom:54.887600pt;}
.y1e_c00352{bottom:110.522987pt;}
.y1d_c00352{bottom:135.879467pt;}
.y3a_c00352{bottom:158.833147pt;}
.y39_c00352{bottom:184.116427pt;}
.y1c_c00352{bottom:190.039467pt;}
.y38_c00352{bottom:209.472907pt;}
.y1b_c00352{bottom:217.639467pt;}
.y37_c00352{bottom:234.756187pt;}
.y1a_c00352{bottom:245.159467pt;}
.y36_c00352{bottom:260.039467pt;}
.y19_c00352{bottom:300.269147pt;}
.y35_c00352{bottom:314.199467pt;}
.y18_c00352{bottom:326.752907pt;}
.y34_c00352{bottom:341.799467pt;}
.y17_c00352{bottom:352.036187pt;}
.y33_c00352{bottom:369.399467pt;}
.y16_c00352{bottom:377.319467pt;}
.y32_c00352{bottom:396.999467pt;}
.y31_c00352{bottom:424.599467pt;}
.y15_c00352{bottom:431.479467pt;}
.y14_c00352{bottom:459.079467pt;}
.y30_c00352{bottom:478.516427pt;}
.y13_c00352{bottom:486.599467pt;}
.y2f_c00352{bottom:503.799707pt;}
.y12_c00352{bottom:514.279467pt;}
.y2e_c00352{bottom:529.082987pt;}
.y11_c00352{bottom:541.879467pt;}
.y2d_c00352{bottom:554.439467pt;}
.y10_c00352{bottom:569.479467pt;}
.yf_c00352{bottom:597.079467pt;}
.y2c_c00352{bottom:608.599200pt;}
.y2b_c00352{bottom:636.199200pt;}
.ye_c00352{bottom:650.989920pt;}
.y2a_c00352{bottom:663.799200pt;}
.yd_c00352{bottom:676.273200pt;}
.y29_c00352{bottom:691.399200pt;}
.yc_c00352{bottom:701.556480pt;}
.y28_c00352{bottom:745.309627pt;}
.yb_c00352{bottom:752.196240pt;}
.y27_c00352{bottom:770.592907pt;}
.ya_c00352{bottom:777.479520pt;}
.y26_c00352{bottom:795.876187pt;}
.y9_c00352{bottom:802.762800pt;}
.y25_c00352{bottom:821.159467pt;}
.y8_c00352{bottom:854.679333pt;}
.y24_c00352{bottom:875.319333pt;}
.y7_c00352{bottom:882.279333pt;}
.y23_c00352{bottom:902.919333pt;}
.y6_c00352{bottom:909.879333pt;}
.y22_c00352{bottom:930.519333pt;}
.y5_c00352{bottom:963.792773pt;}
.y21_c00352{bottom:985.639467pt;}
.y4_c00352{bottom:989.076053pt;}
.y20_c00352{bottom:1013.239467pt;}
.y3_c00352{bottom:1014.359333pt;}
.y1f_c00352{bottom:1060.599467pt;}
.y2_c00352{bottom:1060.599600pt;}
.h2_c00352{height:44.800000pt;}
.h4_c00352{height:63.479040pt;}
.h3_c00352{height:68.288000pt;}
.h5_c00352{height:69.376000pt;}
.h6_c00352{height:69.416747pt;}
.h0_c00352{height:1122.520000pt;}
.h1_c00352{height:1122.666667pt;}
.w2_c00352{width:0.000000pt;}
.w3_c00352{width:0.058667pt;}
.w0_c00352{width:793.701333pt;}
.w1_c00352{width:794.000000pt;}
.x1_c00352{left:-745.700800pt;}
.x2_c00352{left:-680.260800pt;}
.x3_c00352{left:-661.300800pt;}
.x4_c00352{left:-651.860800pt;}
.x0_c00352{left:0.000000pt;}
.x9_c00352{left:113.440000pt;}
.x7_c00352{left:132.400000pt;}
.x8_c00352{left:141.840000pt;}
.x6_c00352{left:604.400000pt;}
.x5_c00352{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00353;src:url('chunks/assets/font_85f73ae9affd7d350c1d9756.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00353;src:url('chunks/assets/font_9dc589a2da4c719e48267676.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00353{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.lsb_c00353{letter-spacing:-0.216000px;}
.lsd_c00353{letter-spacing:-0.072000px;}
.lsc_c00353{letter-spacing:-0.065880px;}
.lsa_c00353{letter-spacing:0.000000px;}
.ls8_c00353{letter-spacing:0.065880px;}
.ls0_c00353{letter-spacing:0.072000px;}
.ls1_c00353{letter-spacing:0.144000px;}
.ls2_c00353{letter-spacing:0.197640px;}
.ls9_c00353{letter-spacing:17.253972px;}
.ls4_c00353{letter-spacing:24.046200px;}
.ls3_c00353{letter-spacing:25.956720px;}
.ls5_c00353{letter-spacing:34.200000px;}
.ls7_c00353{letter-spacing:39.923280px;}
.ls6_c00353{letter-spacing:40.713840px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00353{word-spacing:-18.000000px;}
.ws1_c00353{word-spacing:-17.784000px;}
.ws3_c00353{word-spacing:-16.667640px;}
.ws4_c00353{word-spacing:-16.470000px;}
.ws2_c00353{word-spacing:-16.404120px;}
.ws13_c00353{word-spacing:-0.197640px;}
.ws1e_c00353{word-spacing:-0.131760px;}
.ws1b_c00353{word-spacing:-0.072000px;}
.ws5_c00353{word-spacing:0.000000px;}
.ws21_c00353{word-spacing:0.065880px;}
.ws16_c00353{word-spacing:0.072000px;}
.ws17_c00353{word-spacing:0.216000px;}
.ws18_c00353{word-spacing:0.360000px;}
.ws20_c00353{word-spacing:0.988200px;}
.ws22_c00353{word-spacing:1.251720px;}
.ws1c_c00353{word-spacing:2.042280px;}
.ws23_c00353{word-spacing:3.096000px;}
.ws24_c00353{word-spacing:3.240000px;}
.ws11_c00353{word-spacing:3.491640px;}
.ws10_c00353{word-spacing:3.623400px;}
.ws27_c00353{word-spacing:4.216320px;}
.ws6_c00353{word-spacing:4.680000px;}
.wsc_c00353{word-spacing:5.256000px;}
.ws26_c00353{word-spacing:5.270400px;}
.wsa_c00353{word-spacing:5.328000px;}
.wsb_c00353{word-spacing:5.400000px;}
.wse_c00353{word-spacing:6.719760px;}
.ws7_c00353{word-spacing:6.768000px;}
.ws8_c00353{word-spacing:7.056000px;}
.ws9_c00353{word-spacing:7.128000px;}
.ws1d_c00353{word-spacing:7.444440px;}
.ws14_c00353{word-spacing:8.103240px;}
.wsf_c00353{word-spacing:8.498520px;}
.ws12_c00353{word-spacing:9.223200px;}
.ws1a_c00353{word-spacing:15.840000px;}
.ws25_c00353{word-spacing:16.128000px;}
.ws19_c00353{word-spacing:16.200000px;}
.ws15_c00353{word-spacing:16.470000px;}
.wsd_c00353{word-spacing:20.880000px;}
.ws1f_c00353{word-spacing:23.980320px;}
._1_c00353{margin-left:-1.029600px;}
._0_c00353{width:1.008000px;}
.fc1_c00353{color:rgb(0,0,0);}
.fc0_c00353{color:rgb(35,31,32);}
.fs1_c00353{font-size:65.880000px;}
.fs0_c00353{font-size:72.000000px;}
.y0_c00353{bottom:0.000000px;}
.y1_c00353{bottom:61.748550px;}
.y1f_c00353{bottom:124.338360px;}
.y1e_c00353{bottom:152.864400px;}
.y1d_c00353{bottom:213.794250px;}
.y1c_c00353{bottom:244.844250px;}
.y1b_c00353{bottom:275.804250px;}
.y1a_c00353{bottom:306.854250px;}
.y19_c00353{bottom:367.593960px;}
.y18_c00353{bottom:396.037650px;}
.y17_c00353{bottom:424.481340px;}
.y16_c00353{bottom:452.925030px;}
.y15_c00353{bottom:512.497020px;}
.y14_c00353{bottom:540.940710px;}
.y13_c00353{bottom:569.384400px;}
.y12_c00353{bottom:630.314400px;}
.y11_c00353{bottom:661.364400px;}
.y10_c00353{bottom:692.414400px;}
.yf_c00353{bottom:753.059910px;}
.ye_c00353{bottom:781.503600px;}
.yd_c00353{bottom:809.947290px;}
.yc_c00353{bottom:838.473330px;}
.yb_c00353{bottom:866.917020px;}
.ya_c00353{bottom:895.360710px;}
.y9_c00353{bottom:923.804400px;}
.y8_c00353{bottom:984.734400px;}
.y7_c00353{bottom:1015.784400px;}
.y6_c00353{bottom:1046.834400px;}
.y5_c00353{bottom:1077.884400px;}
.y4_c00353{bottom:1108.934400px;}
.y3_c00353{bottom:1139.984400px;}
.y2_c00353{bottom:1193.174400px;}
.h2_c00353{height:50.400000px;}
.h5_c00353{height:71.413920px;}
.h3_c00353{height:76.824000px;}
.h4_c00353{height:78.048000px;}
.h0_c00353{height:1262.835000px;}
.h1_c00353{height:1263.000000px;}
.w0_c00353{width:892.914000px;}
.w1_c00353{width:893.250000px;}
.x0_c00353{left:0.000000px;}
.x1_c00353{left:54.000000px;}
.x2_c00353{left:127.620000px;}
.x4_c00353{left:148.950000px;}
.x3_c00353{left:159.480000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.lsb_c00353{letter-spacing:-0.192000pt;}
.lsd_c00353{letter-spacing:-0.064000pt;}
.lsc_c00353{letter-spacing:-0.058560pt;}
.lsa_c00353{letter-spacing:0.000000pt;}
.ls8_c00353{letter-spacing:0.058560pt;}
.ls0_c00353{letter-spacing:0.064000pt;}
.ls1_c00353{letter-spacing:0.128000pt;}
.ls2_c00353{letter-spacing:0.175680pt;}
.ls9_c00353{letter-spacing:15.336864pt;}
.ls4_c00353{letter-spacing:21.374400pt;}
.ls3_c00353{letter-spacing:23.072640pt;}
.ls5_c00353{letter-spacing:30.400000pt;}
.ls7_c00353{letter-spacing:35.487360pt;}
.ls6_c00353{letter-spacing:36.190080pt;}
.ws0_c00353{word-spacing:-16.000000pt;}
.ws1_c00353{word-spacing:-15.808000pt;}
.ws3_c00353{word-spacing:-14.815680pt;}
.ws4_c00353{word-spacing:-14.640000pt;}
.ws2_c00353{word-spacing:-14.581440pt;}
.ws13_c00353{word-spacing:-0.175680pt;}
.ws1e_c00353{word-spacing:-0.117120pt;}
.ws1b_c00353{word-spacing:-0.064000pt;}
.ws5_c00353{word-spacing:0.000000pt;}
.ws21_c00353{word-spacing:0.058560pt;}
.ws16_c00353{word-spacing:0.064000pt;}
.ws17_c00353{word-spacing:0.192000pt;}
.ws18_c00353{word-spacing:0.320000pt;}
.ws20_c00353{word-spacing:0.878400pt;}
.ws22_c00353{word-spacing:1.112640pt;}
.ws1c_c00353{word-spacing:1.815360pt;}
.ws23_c00353{word-spacing:2.752000pt;}
.ws24_c00353{word-spacing:2.880000pt;}
.ws11_c00353{word-spacing:3.103680pt;}
.ws10_c00353{word-spacing:3.220800pt;}
.ws27_c00353{word-spacing:3.747840pt;}
.ws6_c00353{word-spacing:4.160000pt;}
.wsc_c00353{word-spacing:4.672000pt;}
.ws26_c00353{word-spacing:4.684800pt;}
.wsa_c00353{word-spacing:4.736000pt;}
.wsb_c00353{word-spacing:4.800000pt;}
.wse_c00353{word-spacing:5.973120pt;}
.ws7_c00353{word-spacing:6.016000pt;}
.ws8_c00353{word-spacing:6.272000pt;}
.ws9_c00353{word-spacing:6.336000pt;}
.ws1d_c00353{word-spacing:6.617280pt;}
.ws14_c00353{word-spacing:7.202880pt;}
.wsf_c00353{word-spacing:7.554240pt;}
.ws12_c00353{word-spacing:8.198400pt;}
.ws1a_c00353{word-spacing:14.080000pt;}
.ws25_c00353{word-spacing:14.336000pt;}
.ws19_c00353{word-spacing:14.400000pt;}
.ws15_c00353{word-spacing:14.640000pt;}
.wsd_c00353{word-spacing:18.560000pt;}
.ws1f_c00353{word-spacing:21.315840pt;}
._1_c00353{margin-left:-0.915200pt;}
._0_c00353{width:0.896000pt;}
.fs1_c00353{font-size:58.560000pt;}
.fs0_c00353{font-size:64.000000pt;}
.y0_c00353{bottom:0.000000pt;}
.y1_c00353{bottom:54.887600pt;}
.y1f_c00353{bottom:110.522987pt;}
.y1e_c00353{bottom:135.879467pt;}
.y1d_c00353{bottom:190.039333pt;}
.y1c_c00353{bottom:217.639333pt;}
.y1b_c00353{bottom:245.159333pt;}
.y1a_c00353{bottom:272.759333pt;}
.y19_c00353{bottom:326.750187pt;}
.y18_c00353{bottom:352.033467pt;}
.y17_c00353{bottom:377.316747pt;}
.y16_c00353{bottom:402.600027pt;}
.y15_c00353{bottom:455.552907pt;}
.y14_c00353{bottom:480.836187pt;}
.y13_c00353{bottom:506.119467pt;}
.y12_c00353{bottom:560.279467pt;}
.y11_c00353{bottom:587.879467pt;}
.y10_c00353{bottom:615.479467pt;}
.yf_c00353{bottom:669.386587pt;}
.ye_c00353{bottom:694.669867pt;}
.yd_c00353{bottom:719.953147pt;}
.yc_c00353{bottom:745.309627pt;}
.yb_c00353{bottom:770.592907pt;}
.ya_c00353{bottom:795.876187pt;}
.y9_c00353{bottom:821.159467pt;}
.y8_c00353{bottom:875.319467pt;}
.y7_c00353{bottom:902.919467pt;}
.y6_c00353{bottom:930.519467pt;}
.y5_c00353{bottom:958.119467pt;}
.y4_c00353{bottom:985.719467pt;}
.y3_c00353{bottom:1013.319467pt;}
.y2_c00353{bottom:1060.599467pt;}
.h2_c00353{height:44.800000pt;}
.h5_c00353{height:63.479040pt;}
.h3_c00353{height:68.288000pt;}
.h4_c00353{height:69.376000pt;}
.h0_c00353{height:1122.520000pt;}
.h1_c00353{height:1122.666667pt;}
.w0_c00353{width:793.701333pt;}
.w1_c00353{width:794.000000pt;}
.x0_c00353{left:0.000000pt;}
.x1_c00353{left:48.000000pt;}
.x2_c00353{left:113.440000pt;}
.x4_c00353{left:132.400000pt;}
.x3_c00353{left:141.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00354;src:url('chunks/assets/font_0a86e82f01624685aef5b044.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_933f2ecdda7714eabb2a1be1.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00354;src:url('chunks/assets/font_cd27f27d920d6d9eef6aa8ec.woff2')format("woff");}.ff5_c00354{font-family:ff5_c00354;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00354;src:url('chunks/assets/font_2271fd401bbbda3b14eded63.woff2')format("woff");}.ff6_c00354{font-family:ff6_c00354;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00354;src:url('chunks/assets/font_040d855c1195e5e5881e1664.woff2')format("woff");}.ff7_c00354{font-family:ff7_c00354;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00354{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.lsf_c00354{letter-spacing:-0.216000px;}
.ls11_c00354{letter-spacing:-0.072000px;}
.ls10_c00354{letter-spacing:-0.065880px;}
.lse_c00354{letter-spacing:0.000000px;}
.ls8_c00354{letter-spacing:0.065880px;}
.ls0_c00354{letter-spacing:0.072000px;}
.ls1_c00354{letter-spacing:0.144000px;}
.ls2_c00354{letter-spacing:0.197640px;}
.ls9_c00354{letter-spacing:17.253972px;}
.lsd_c00354{letter-spacing:19.908936px;}
.lsb_c00354{letter-spacing:19.961640px;}
.lsa_c00354{letter-spacing:20.093400px;}
.ls4_c00354{letter-spacing:24.046200px;}
.ls3_c00354{letter-spacing:25.956720px;}
.ls5_c00354{letter-spacing:34.200000px;}
.lsc_c00354{letter-spacing:35.397324px;}
.ls7_c00354{letter-spacing:39.923280px;}
.ls6_c00354{letter-spacing:40.713840px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00354{word-spacing:-18.000000px;}
.ws1_c00354{word-spacing:-17.784000px;}
.ws3_c00354{word-spacing:-16.667640px;}
.ws4_c00354{word-spacing:-16.470000px;}
.ws2_c00354{word-spacing:-16.404120px;}
.ws31_c00354{word-spacing:-0.461160px;}
.ws13_c00354{word-spacing:-0.197640px;}
.ws1e_c00354{word-spacing:-0.131760px;}
.ws1b_c00354{word-spacing:-0.072000px;}
.ws5_c00354{word-spacing:0.000000px;}
.ws21_c00354{word-spacing:0.065880px;}
.ws16_c00354{word-spacing:0.072000px;}
.ws17_c00354{word-spacing:0.216000px;}
.ws18_c00354{word-spacing:0.360000px;}
.ws20_c00354{word-spacing:0.988200px;}
.ws22_c00354{word-spacing:1.251720px;}
.ws1c_c00354{word-spacing:2.042280px;}
.ws23_c00354{word-spacing:3.096000px;}
.ws32_c00354{word-spacing:3.168000px;}
.ws24_c00354{word-spacing:3.240000px;}
.ws3c_c00354{word-spacing:3.359880px;}
.ws11_c00354{word-spacing:3.491640px;}
.ws37_c00354{word-spacing:3.600000px;}
.ws10_c00354{word-spacing:3.623400px;}
.ws3b_c00354{word-spacing:3.755160px;}
.ws27_c00354{word-spacing:4.216320px;}
.ws38_c00354{word-spacing:4.608000px;}
.ws6_c00354{word-spacing:4.680000px;}
.wsc_c00354{word-spacing:5.256000px;}
.ws26_c00354{word-spacing:5.270400px;}
.wsa_c00354{word-spacing:5.328000px;}
.wsb_c00354{word-spacing:5.400000px;}
.ws2d_c00354{word-spacing:5.616000px;}
.ws2e_c00354{word-spacing:5.688000px;}
.ws2c_c00354{word-spacing:5.760000px;}
.wse_c00354{word-spacing:6.719760px;}
.ws7_c00354{word-spacing:6.768000px;}
.ws8_c00354{word-spacing:7.056000px;}
.ws28_c00354{word-spacing:7.115040px;}
.ws9_c00354{word-spacing:7.128000px;}
.ws1d_c00354{word-spacing:7.444440px;}
.ws39_c00354{word-spacing:7.707960px;}
.ws2a_c00354{word-spacing:7.848000px;}
.ws14_c00354{word-spacing:8.103240px;}
.wsf_c00354{word-spacing:8.498520px;}
.ws12_c00354{word-spacing:9.223200px;}
.ws2f_c00354{word-spacing:14.688000px;}
.ws1a_c00354{word-spacing:15.840000px;}
.ws25_c00354{word-spacing:16.128000px;}
.ws19_c00354{word-spacing:16.200000px;}
.ws15_c00354{word-spacing:16.470000px;}
.ws35_c00354{word-spacing:17.194680px;}
.ws36_c00354{word-spacing:17.458200px;}
.ws34_c00354{word-spacing:17.524080px;}
.ws2b_c00354{word-spacing:18.360000px;}
.ws30_c00354{word-spacing:19.698120px;}
.ws3a_c00354{word-spacing:20.027520px;}
.wsd_c00354{word-spacing:20.880000px;}
.ws33_c00354{word-spacing:21.015720px;}
.ws1f_c00354{word-spacing:23.980320px;}
.ws29_c00354{word-spacing:26.928000px;}
._1_c00354{margin-left:-1.029600px;}
._0_c00354{width:1.008000px;}
._2_c00354{width:22.378464px;}
._3_c00354{width:122.400000px;}
.fc2_c00354{color:transparent;}
.fc1_c00354{color:rgb(0,0,0);}
.fc0_c00354{color:rgb(35,31,32);}
.fs1_c00354{font-size:65.880000px;}
.fs0_c00354{font-size:72.000000px;}
.y0_c00354{bottom:0.000000px;}
.y1_c00354{bottom:61.748550px;}
.y1f_c00354{bottom:124.338360px;}
.y3b_c00354{bottom:147.644670px;}
.y1e_c00354{bottom:152.864400px;}
.y3a_c00354{bottom:176.088360px;}
.y39_c00354{bottom:204.614400px;}
.y1d_c00354{bottom:213.794250px;}
.y1c_c00354{bottom:244.844250px;}
.y38_c00354{bottom:265.454400px;}
.y1b_c00354{bottom:275.804250px;}
.y37_c00354{bottom:296.504400px;}
.y1a_c00354{bottom:306.854250px;}
.y36_c00354{bottom:327.554400px;}
.y19_c00354{bottom:367.593960px;}
.y35_c00354{bottom:388.293180px;}
.y18_c00354{bottom:396.037650px;}
.y34_c00354{bottom:416.736870px;}
.y17_c00354{bottom:424.481340px;}
.y33_c00354{bottom:445.180560px;}
.y16_c00354{bottom:452.925030px;}
.y32_c00354{bottom:473.624250px;}
.y15_c00354{bottom:512.497020px;}
.y31_c00354{bottom:534.554250px;}
.y14_c00354{bottom:540.940710px;}
.y30_c00354{bottom:565.604250px;}
.y13_c00354{bottom:569.384400px;}
.y2f_c00354{bottom:626.260980px;}
.y12_c00354{bottom:630.314400px;}
.y2e_c00354{bottom:654.787020px;}
.y11_c00354{bottom:661.364400px;}
.y2d_c00354{bottom:683.230710px;}
.y10_c00354{bottom:692.414400px;}
.y2c_c00354{bottom:711.674400px;}
.yf_c00354{bottom:753.059910px;}
.y2b_c00354{bottom:772.604400px;}
.ye_c00354{bottom:781.503600px;}
.y2a_c00354{bottom:803.654400px;}
.yd_c00354{bottom:809.947290px;}
.y29_c00354{bottom:834.704400px;}
.yc_c00354{bottom:838.473330px;}
.y28_c00354{bottom:865.754400px;}
.yb_c00354{bottom:866.917020px;}
.ya_c00354{bottom:895.360710px;}
.y9_c00354{bottom:923.804400px;}
.y27_c00354{bottom:927.854400px;}
.y26_c00354{bottom:958.904400px;}
.y8_c00354{bottom:984.734400px;}
.y25_c00354{bottom:989.954400px;}
.y7_c00354{bottom:1015.784400px;}
.y6_c00354{bottom:1046.834400px;}
.y24_c00354{bottom:1051.874400px;}
.y5_c00354{bottom:1077.884400px;}
.y4_c00354{bottom:1108.934400px;}
.y23_c00354{bottom:1112.710560px;}
.y21_c00354{bottom:1139.984400px;}
.y3_c00354{bottom:1139.984550px;}
.y22_c00354{bottom:1141.154250px;}
.y20_c00354{bottom:1193.174400px;}
.y2_c00354{bottom:1193.174550px;}
.h2_c00354{height:50.400000px;}
.h5_c00354{height:71.413920px;}
.h3_c00354{height:76.824000px;}
.h4_c00354{height:78.048000px;}
.h0_c00354{height:1262.835000px;}
.h1_c00354{height:1263.000000px;}
.w2_c00354{width:0.000000px;}
.w3_c00354{width:0.066000px;}
.w0_c00354{width:892.914000px;}
.w1_c00354{width:893.250000px;}
.x1_c00354{left:-838.913400px;}
.x2_c00354{left:-765.293400px;}
.x4_c00354{left:-743.963400px;}
.x3_c00354{left:-733.433400px;}
.x0_c00354{left:0.000000px;}
.x8_c00354{left:127.620000px;}
.x7_c00354{left:148.950000px;}
.x9_c00354{left:159.570000px;}
.x6_c00354{left:679.950000px;}
.x5_c00354{left:804.366150px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.lsf_c00354{letter-spacing:-0.192000pt;}
.ls11_c00354{letter-spacing:-0.064000pt;}
.ls10_c00354{letter-spacing:-0.058560pt;}
.lse_c00354{letter-spacing:0.000000pt;}
.ls8_c00354{letter-spacing:0.058560pt;}
.ls0_c00354{letter-spacing:0.064000pt;}
.ls1_c00354{letter-spacing:0.128000pt;}
.ls2_c00354{letter-spacing:0.175680pt;}
.ls9_c00354{letter-spacing:15.336864pt;}
.lsd_c00354{letter-spacing:17.696832pt;}
.lsb_c00354{letter-spacing:17.743680pt;}
.lsa_c00354{letter-spacing:17.860800pt;}
.ls4_c00354{letter-spacing:21.374400pt;}
.ls3_c00354{letter-spacing:23.072640pt;}
.ls5_c00354{letter-spacing:30.400000pt;}
.lsc_c00354{letter-spacing:31.464288pt;}
.ls7_c00354{letter-spacing:35.487360pt;}
.ls6_c00354{letter-spacing:36.190080pt;}
.ws0_c00354{word-spacing:-16.000000pt;}
.ws1_c00354{word-spacing:-15.808000pt;}
.ws3_c00354{word-spacing:-14.815680pt;}
.ws4_c00354{word-spacing:-14.640000pt;}
.ws2_c00354{word-spacing:-14.581440pt;}
.ws31_c00354{word-spacing:-0.409920pt;}
.ws13_c00354{word-spacing:-0.175680pt;}
.ws1e_c00354{word-spacing:-0.117120pt;}
.ws1b_c00354{word-spacing:-0.064000pt;}
.ws5_c00354{word-spacing:0.000000pt;}
.ws21_c00354{word-spacing:0.058560pt;}
.ws16_c00354{word-spacing:0.064000pt;}
.ws17_c00354{word-spacing:0.192000pt;}
.ws18_c00354{word-spacing:0.320000pt;}
.ws20_c00354{word-spacing:0.878400pt;}
.ws22_c00354{word-spacing:1.112640pt;}
.ws1c_c00354{word-spacing:1.815360pt;}
.ws23_c00354{word-spacing:2.752000pt;}
.ws32_c00354{word-spacing:2.816000pt;}
.ws24_c00354{word-spacing:2.880000pt;}
.ws3c_c00354{word-spacing:2.986560pt;}
.ws11_c00354{word-spacing:3.103680pt;}
.ws37_c00354{word-spacing:3.200000pt;}
.ws10_c00354{word-spacing:3.220800pt;}
.ws3b_c00354{word-spacing:3.337920pt;}
.ws27_c00354{word-spacing:3.747840pt;}
.ws38_c00354{word-spacing:4.096000pt;}
.ws6_c00354{word-spacing:4.160000pt;}
.wsc_c00354{word-spacing:4.672000pt;}
.ws26_c00354{word-spacing:4.684800pt;}
.wsa_c00354{word-spacing:4.736000pt;}
.wsb_c00354{word-spacing:4.800000pt;}
.ws2d_c00354{word-spacing:4.992000pt;}
.ws2e_c00354{word-spacing:5.056000pt;}
.ws2c_c00354{word-spacing:5.120000pt;}
.wse_c00354{word-spacing:5.973120pt;}
.ws7_c00354{word-spacing:6.016000pt;}
.ws8_c00354{word-spacing:6.272000pt;}
.ws28_c00354{word-spacing:6.324480pt;}
.ws9_c00354{word-spacing:6.336000pt;}
.ws1d_c00354{word-spacing:6.617280pt;}
.ws39_c00354{word-spacing:6.851520pt;}
.ws2a_c00354{word-spacing:6.976000pt;}
.ws14_c00354{word-spacing:7.202880pt;}
.wsf_c00354{word-spacing:7.554240pt;}
.ws12_c00354{word-spacing:8.198400pt;}
.ws2f_c00354{word-spacing:13.056000pt;}
.ws1a_c00354{word-spacing:14.080000pt;}
.ws25_c00354{word-spacing:14.336000pt;}
.ws19_c00354{word-spacing:14.400000pt;}
.ws15_c00354{word-spacing:14.640000pt;}
.ws35_c00354{word-spacing:15.284160pt;}
.ws36_c00354{word-spacing:15.518400pt;}
.ws34_c00354{word-spacing:15.576960pt;}
.ws2b_c00354{word-spacing:16.320000pt;}
.ws30_c00354{word-spacing:17.509440pt;}
.ws3a_c00354{word-spacing:17.802240pt;}
.wsd_c00354{word-spacing:18.560000pt;}
.ws33_c00354{word-spacing:18.680640pt;}
.ws1f_c00354{word-spacing:21.315840pt;}
.ws29_c00354{word-spacing:23.936000pt;}
._1_c00354{margin-left:-0.915200pt;}
._0_c00354{width:0.896000pt;}
._2_c00354{width:19.891968pt;}
._3_c00354{width:108.800000pt;}
.fs1_c00354{font-size:58.560000pt;}
.fs0_c00354{font-size:64.000000pt;}
.y0_c00354{bottom:0.000000pt;}
.y1_c00354{bottom:54.887600pt;}
.y1f_c00354{bottom:110.522987pt;}
.y3b_c00354{bottom:131.239707pt;}
.y1e_c00354{bottom:135.879467pt;}
.y3a_c00354{bottom:156.522987pt;}
.y39_c00354{bottom:181.879467pt;}
.y1d_c00354{bottom:190.039333pt;}
.y1c_c00354{bottom:217.639333pt;}
.y38_c00354{bottom:235.959467pt;}
.y1b_c00354{bottom:245.159333pt;}
.y37_c00354{bottom:263.559467pt;}
.y1a_c00354{bottom:272.759333pt;}
.y36_c00354{bottom:291.159467pt;}
.y19_c00354{bottom:326.750187pt;}
.y35_c00354{bottom:345.149493pt;}
.y18_c00354{bottom:352.033467pt;}
.y34_c00354{bottom:370.432773pt;}
.y17_c00354{bottom:377.316747pt;}
.y33_c00354{bottom:395.716053pt;}
.y16_c00354{bottom:402.600027pt;}
.y32_c00354{bottom:420.999333pt;}
.y15_c00354{bottom:455.552907pt;}
.y31_c00354{bottom:475.159333pt;}
.y14_c00354{bottom:480.836187pt;}
.y30_c00354{bottom:502.759333pt;}
.y13_c00354{bottom:506.119467pt;}
.y2f_c00354{bottom:556.676427pt;}
.y12_c00354{bottom:560.279467pt;}
.y2e_c00354{bottom:582.032907pt;}
.y11_c00354{bottom:587.879467pt;}
.y2d_c00354{bottom:607.316187pt;}
.y10_c00354{bottom:615.479467pt;}
.y2c_c00354{bottom:632.599467pt;}
.yf_c00354{bottom:669.386587pt;}
.y2b_c00354{bottom:686.759467pt;}
.ye_c00354{bottom:694.669867pt;}
.y2a_c00354{bottom:714.359467pt;}
.yd_c00354{bottom:719.953147pt;}
.y29_c00354{bottom:741.959467pt;}
.yc_c00354{bottom:745.309627pt;}
.y28_c00354{bottom:769.559467pt;}
.yb_c00354{bottom:770.592907pt;}
.ya_c00354{bottom:795.876187pt;}
.y9_c00354{bottom:821.159467pt;}
.y27_c00354{bottom:824.759467pt;}
.y26_c00354{bottom:852.359467pt;}
.y8_c00354{bottom:875.319467pt;}
.y25_c00354{bottom:879.959467pt;}
.y7_c00354{bottom:902.919467pt;}
.y6_c00354{bottom:930.519467pt;}
.y24_c00354{bottom:934.999467pt;}
.y5_c00354{bottom:958.119467pt;}
.y4_c00354{bottom:985.719467pt;}
.y23_c00354{bottom:989.076053pt;}
.y21_c00354{bottom:1013.319467pt;}
.y3_c00354{bottom:1013.319600pt;}
.y22_c00354{bottom:1014.359333pt;}
.y20_c00354{bottom:1060.599467pt;}
.y2_c00354{bottom:1060.599600pt;}
.h2_c00354{height:44.800000pt;}
.h5_c00354{height:63.479040pt;}
.h3_c00354{height:68.288000pt;}
.h4_c00354{height:69.376000pt;}
.h0_c00354{height:1122.520000pt;}
.h1_c00354{height:1122.666667pt;}
.w2_c00354{width:0.000000pt;}
.w3_c00354{width:0.058667pt;}
.w0_c00354{width:793.701333pt;}
.w1_c00354{width:794.000000pt;}
.x1_c00354{left:-745.700800pt;}
.x2_c00354{left:-680.260800pt;}
.x4_c00354{left:-661.300800pt;}
.x3_c00354{left:-651.940800pt;}
.x0_c00354{left:0.000000pt;}
.x8_c00354{left:113.440000pt;}
.x7_c00354{left:132.400000pt;}
.x9_c00354{left:141.840000pt;}
.x6_c00354{left:604.400000pt;}
.x5_c00354{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00355;src:url('chunks/assets/font_1fe49d9e0a922863c76231e6.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00355;src:url('chunks/assets/font_ac6ef2bdfaa23cdde36fc063.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00355{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls9_c00355{letter-spacing:-0.065880px;}
.ls8_c00355{letter-spacing:0.000000px;}
.ls1_c00355{letter-spacing:0.065880px;}
.ls0_c00355{letter-spacing:0.072000px;}
.ls3_c00355{letter-spacing:0.197640px;}
.ls6_c00355{letter-spacing:18.848268px;}
.ls7_c00355{letter-spacing:18.973440px;}
.ls5_c00355{letter-spacing:21.240000px;}
.ls2_c00355{letter-spacing:23.453280px;}
.ls4_c00355{letter-spacing:31.358880px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00355{word-spacing:-18.000000px;}
.ws1_c00355{word-spacing:-16.470000px;}
.ws16_c00355{word-spacing:-0.461160px;}
.ws4_c00355{word-spacing:-0.131760px;}
.ws11_c00355{word-spacing:-0.072000px;}
.ws2_c00355{word-spacing:0.000000px;}
.ws1f_c00355{word-spacing:0.131760px;}
.ws21_c00355{word-spacing:0.592920px;}
.ws20_c00355{word-spacing:0.856440px;}
.ws23_c00355{word-spacing:1.712880px;}
.ws10_c00355{word-spacing:1.728000px;}
.ws22_c00355{word-spacing:1.844640px;}
.ws1c_c00355{word-spacing:2.569320px;}
.ws1d_c00355{word-spacing:2.701080px;}
.ws13_c00355{word-spacing:2.766960px;}
.ws14_c00355{word-spacing:3.030480px;}
.ws1a_c00355{word-spacing:3.096000px;}
.ws19_c00355{word-spacing:3.168000px;}
.ws18_c00355{word-spacing:3.240000px;}
.ws1e_c00355{word-spacing:3.425760px;}
.wsc_c00355{word-spacing:4.809240px;}
.ws12_c00355{word-spacing:5.995080px;}
.ws17_c00355{word-spacing:6.408000px;}
.ws9_c00355{word-spacing:6.719760px;}
.ws8_c00355{word-spacing:6.851520px;}
.ws1b_c00355{word-spacing:7.488000px;}
.ws15_c00355{word-spacing:7.707960px;}
.ws3_c00355{word-spacing:8.432640px;}
.ws6_c00355{word-spacing:8.496000px;}
.wsf_c00355{word-spacing:8.640000px;}
.ws5_c00355{word-spacing:12.168000px;}
.wsa_c00355{word-spacing:14.625360px;}
.wsb_c00355{word-spacing:14.888880px;}
.wsd_c00355{word-spacing:15.745320px;}
.wse_c00355{word-spacing:16.008840px;}
.ws7_c00355{word-spacing:18.648000px;}
._1_c00355{margin-left:-1.067256px;}
._0_c00355{width:1.054080px;}
._2_c00355{width:16.654464px;}
.fc1_c00355{color:rgb(0,0,0);}
.fc0_c00355{color:rgb(35,31,32);}
.fs1_c00355{font-size:65.880000px;}
.fs0_c00355{font-size:72.000000px;}
.y0_c00355{bottom:0.000000px;}
.y1_c00355{bottom:61.748550px;}
.y1e_c00355{bottom:124.331340px;}
.y1d_c00355{bottom:152.857380px;}
.y1c_c00355{bottom:212.347020px;}
.y1b_c00355{bottom:240.790710px;}
.y1a_c00355{bottom:269.234400px;}
.y19_c00355{bottom:330.164250px;}
.y18_c00355{bottom:361.214250px;}
.y17_c00355{bottom:392.264250px;}
.y16_c00355{bottom:423.314250px;}
.y15_c00355{bottom:454.364250px;}
.y14_c00355{bottom:515.020980px;}
.y13_c00355{bottom:543.464670px;}
.y12_c00355{bottom:571.990710px;}
.y11_c00355{bottom:600.434400px;}
.y10_c00355{bottom:661.364400px;}
.yf_c00355{bottom:692.414400px;}
.ye_c00355{bottom:723.464400px;}
.yd_c00355{bottom:784.117140px;}
.yc_c00355{bottom:812.560830px;}
.yb_c00355{bottom:841.004520px;}
.ya_c00355{bottom:869.530560px;}
.y9_c00355{bottom:897.974250px;}
.y8_c00355{bottom:958.904400px;}
.y7_c00355{bottom:989.954400px;}
.y6_c00355{bottom:1021.004400px;}
.y5_c00355{bottom:1052.054400px;}
.y4_c00355{bottom:1112.710560px;}
.y3_c00355{bottom:1141.154250px;}
.y2_c00355{bottom:1193.174400px;}
.h2_c00355{height:50.400000px;}
.h4_c00355{height:71.413920px;}
.h3_c00355{height:76.824000px;}
.h0_c00355{height:1262.835000px;}
.h1_c00355{height:1263.000000px;}
.w0_c00355{width:892.914000px;}
.w1_c00355{width:893.250000px;}
.x0_c00355{left:0.000000px;}
.x1_c00355{left:54.000000px;}
.x2_c00355{left:127.620000px;}
.x3_c00355{left:148.950000px;}
.x4_c00355{left:159.570000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls9_c00355{letter-spacing:-0.058560pt;}
.ls8_c00355{letter-spacing:0.000000pt;}
.ls1_c00355{letter-spacing:0.058560pt;}
.ls0_c00355{letter-spacing:0.064000pt;}
.ls3_c00355{letter-spacing:0.175680pt;}
.ls6_c00355{letter-spacing:16.754016pt;}
.ls7_c00355{letter-spacing:16.865280pt;}
.ls5_c00355{letter-spacing:18.880000pt;}
.ls2_c00355{letter-spacing:20.847360pt;}
.ls4_c00355{letter-spacing:27.874560pt;}
.ws0_c00355{word-spacing:-16.000000pt;}
.ws1_c00355{word-spacing:-14.640000pt;}
.ws16_c00355{word-spacing:-0.409920pt;}
.ws4_c00355{word-spacing:-0.117120pt;}
.ws11_c00355{word-spacing:-0.064000pt;}
.ws2_c00355{word-spacing:0.000000pt;}
.ws1f_c00355{word-spacing:0.117120pt;}
.ws21_c00355{word-spacing:0.527040pt;}
.ws20_c00355{word-spacing:0.761280pt;}
.ws23_c00355{word-spacing:1.522560pt;}
.ws10_c00355{word-spacing:1.536000pt;}
.ws22_c00355{word-spacing:1.639680pt;}
.ws1c_c00355{word-spacing:2.283840pt;}
.ws1d_c00355{word-spacing:2.400960pt;}
.ws13_c00355{word-spacing:2.459520pt;}
.ws14_c00355{word-spacing:2.693760pt;}
.ws1a_c00355{word-spacing:2.752000pt;}
.ws19_c00355{word-spacing:2.816000pt;}
.ws18_c00355{word-spacing:2.880000pt;}
.ws1e_c00355{word-spacing:3.045120pt;}
.wsc_c00355{word-spacing:4.274880pt;}
.ws12_c00355{word-spacing:5.328960pt;}
.ws17_c00355{word-spacing:5.696000pt;}
.ws9_c00355{word-spacing:5.973120pt;}
.ws8_c00355{word-spacing:6.090240pt;}
.ws1b_c00355{word-spacing:6.656000pt;}
.ws15_c00355{word-spacing:6.851520pt;}
.ws3_c00355{word-spacing:7.495680pt;}
.ws6_c00355{word-spacing:7.552000pt;}
.wsf_c00355{word-spacing:7.680000pt;}
.ws5_c00355{word-spacing:10.816000pt;}
.wsa_c00355{word-spacing:13.000320pt;}
.wsb_c00355{word-spacing:13.234560pt;}
.wsd_c00355{word-spacing:13.995840pt;}
.wse_c00355{word-spacing:14.230080pt;}
.ws7_c00355{word-spacing:16.576000pt;}
._1_c00355{margin-left:-0.948672pt;}
._0_c00355{width:0.936960pt;}
._2_c00355{width:14.803968pt;}
.fs1_c00355{font-size:58.560000pt;}
.fs0_c00355{font-size:64.000000pt;}
.y0_c00355{bottom:0.000000pt;}
.y1_c00355{bottom:54.887600pt;}
.y1e_c00355{bottom:110.516747pt;}
.y1d_c00355{bottom:135.873227pt;}
.y1c_c00355{bottom:188.752907pt;}
.y1b_c00355{bottom:214.036187pt;}
.y1a_c00355{bottom:239.319467pt;}
.y19_c00355{bottom:293.479333pt;}
.y18_c00355{bottom:321.079333pt;}
.y17_c00355{bottom:348.679333pt;}
.y16_c00355{bottom:376.279333pt;}
.y15_c00355{bottom:403.879333pt;}
.y14_c00355{bottom:457.796427pt;}
.y13_c00355{bottom:483.079707pt;}
.y12_c00355{bottom:508.436187pt;}
.y11_c00355{bottom:533.719467pt;}
.y10_c00355{bottom:587.879467pt;}
.yf_c00355{bottom:615.479467pt;}
.ye_c00355{bottom:643.079467pt;}
.yd_c00355{bottom:696.993013pt;}
.yc_c00355{bottom:722.276293pt;}
.yb_c00355{bottom:747.559573pt;}
.ya_c00355{bottom:772.916053pt;}
.y9_c00355{bottom:798.199333pt;}
.y8_c00355{bottom:852.359467pt;}
.y7_c00355{bottom:879.959467pt;}
.y6_c00355{bottom:907.559467pt;}
.y5_c00355{bottom:935.159467pt;}
.y4_c00355{bottom:989.076053pt;}
.y3_c00355{bottom:1014.359333pt;}
.y2_c00355{bottom:1060.599467pt;}
.h2_c00355{height:44.800000pt;}
.h4_c00355{height:63.479040pt;}
.h3_c00355{height:68.288000pt;}
.h0_c00355{height:1122.520000pt;}
.h1_c00355{height:1122.666667pt;}
.w0_c00355{width:793.701333pt;}
.w1_c00355{width:794.000000pt;}
.x0_c00355{left:0.000000pt;}
.x1_c00355{left:48.000000pt;}
.x2_c00355{left:113.440000pt;}
.x3_c00355{left:132.400000pt;}
.x4_c00355{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00356;src:url('chunks/assets/font_0f4f08580d86e9f371189f19.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00356;src:url('chunks/assets/font_4cfce3b16c6e3e48c43be752.woff2')format("woff");}.ff3_c00356{font-family:ff3_c00356;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00356;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00356{font-family:ff4_c00356;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00356;src:url('chunks/assets/font_d22d5506f0116b39fc08b80a.woff2')format("woff");}.ff5_c00356{font-family:ff5_c00356;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00356;src:url('chunks/assets/font_be8ea32843a8a2e3f5407bdc.woff2')format("woff");}.ff6_c00356{font-family:ff6_c00356;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00356{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.ls10_c00356{letter-spacing:-0.197640px;}
.lsf_c00356{letter-spacing:-0.065880px;}
.lse_c00356{letter-spacing:0.000000px;}
.ls1_c00356{letter-spacing:0.065880px;}
.ls0_c00356{letter-spacing:0.072000px;}
.lsd_c00356{letter-spacing:0.144000px;}
.ls3_c00356{letter-spacing:0.197640px;}
.ls8_c00356{letter-spacing:18.841680px;}
.ls6_c00356{letter-spacing:18.848268px;}
.ls7_c00356{letter-spacing:18.973440px;}
.lsc_c00356{letter-spacing:19.171080px;}
.lsa_c00356{letter-spacing:20.739024px;}
.ls5_c00356{letter-spacing:21.240000px;}
.lsb_c00356{letter-spacing:22.680000px;}
.ls2_c00356{letter-spacing:23.453280px;}
.ls9_c00356{letter-spacing:23.611392px;}
.ls4_c00356{letter-spacing:31.358880px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00356{word-spacing:-18.000000px;}
.ws3_c00356{word-spacing:-16.667640px;}
.ws1_c00356{word-spacing:-16.470000px;}
.ws18_c00356{word-spacing:-0.461160px;}
.ws3d_c00356{word-spacing:-0.144000px;}
.ws6_c00356{word-spacing:-0.131760px;}
.ws13_c00356{word-spacing:-0.072000px;}
.ws4_c00356{word-spacing:0.000000px;}
.ws21_c00356{word-spacing:0.131760px;}
.ws2f_c00356{word-spacing:0.527040px;}
.ws23_c00356{word-spacing:0.592920px;}
.ws22_c00356{word-spacing:0.856440px;}
.ws39_c00356{word-spacing:1.317600px;}
.ws25_c00356{word-spacing:1.712880px;}
.ws12_c00356{word-spacing:1.728000px;}
.ws24_c00356{word-spacing:1.844640px;}
.ws3e_c00356{word-spacing:2.042280px;}
.ws1e_c00356{word-spacing:2.569320px;}
.ws1f_c00356{word-spacing:2.701080px;}
.ws15_c00356{word-spacing:2.766960px;}
.ws36_c00356{word-spacing:2.898720px;}
.ws16_c00356{word-spacing:3.030480px;}
.ws1c_c00356{word-spacing:3.096000px;}
.ws1b_c00356{word-spacing:3.168000px;}
.ws1a_c00356{word-spacing:3.240000px;}
.ws20_c00356{word-spacing:3.425760px;}
.ws34_c00356{word-spacing:3.528000px;}
.ws28_c00356{word-spacing:4.216320px;}
.ws27_c00356{word-spacing:4.479840px;}
.ws2a_c00356{word-spacing:4.680000px;}
.wse_c00356{word-spacing:4.809240px;}
.ws3b_c00356{word-spacing:5.472000px;}
.ws38_c00356{word-spacing:5.665680px;}
.ws37_c00356{word-spacing:5.929200px;}
.ws14_c00356{word-spacing:5.995080px;}
.ws3c_c00356{word-spacing:6.048000px;}
.ws3a_c00356{word-spacing:6.120000px;}
.ws19_c00356{word-spacing:6.408000px;}
.wsb_c00356{word-spacing:6.719760px;}
.wsa_c00356{word-spacing:6.851520px;}
.ws2c_c00356{word-spacing:6.983280px;}
.ws26_c00356{word-spacing:7.444440px;}
.ws1d_c00356{word-spacing:7.488000px;}
.ws17_c00356{word-spacing:7.707960px;}
.ws30_c00356{word-spacing:7.839720px;}
.ws32_c00356{word-spacing:8.103240px;}
.ws31_c00356{word-spacing:8.235000px;}
.ws5_c00356{word-spacing:8.432640px;}
.ws8_c00356{word-spacing:8.496000px;}
.ws11_c00356{word-spacing:8.640000px;}
.ws2_c00356{word-spacing:8.841096px;}
.ws2e_c00356{word-spacing:9.223200px;}
.ws2b_c00356{word-spacing:9.288000px;}
.ws2d_c00356{word-spacing:9.486720px;}
.ws33_c00356{word-spacing:9.618480px;}
.ws35_c00356{word-spacing:11.520000px;}
.ws7_c00356{word-spacing:12.168000px;}
.wsc_c00356{word-spacing:14.625360px;}
.wsd_c00356{word-spacing:14.888880px;}
.wsf_c00356{word-spacing:15.745320px;}
.ws10_c00356{word-spacing:16.008840px;}
.ws9_c00356{word-spacing:18.648000px;}
.ws29_c00356{word-spacing:30.888000px;}
._1_c00356{margin-left:-1.067256px;}
._0_c00356{width:1.054080px;}
._2_c00356{width:16.654464px;}
._3_c00356{width:23.110704px;}
.fc2_c00356{color:transparent;}
.fc1_c00356{color:rgb(0,0,0);}
.fc0_c00356{color:rgb(35,31,32);}
.fs1_c00356{font-size:65.880000px;}
.fs0_c00356{font-size:72.000000px;}
.y0_c00356{bottom:0.000000px;}
.y1_c00356{bottom:61.748550px;}
.y1e_c00356{bottom:124.331340px;}
.y1d_c00356{bottom:152.857380px;}
.y38_c00356{bottom:189.040710px;}
.y1c_c00356{bottom:212.347020px;}
.y37_c00356{bottom:217.484400px;}
.y1b_c00356{bottom:240.790710px;}
.y1a_c00356{bottom:269.234400px;}
.y36_c00356{bottom:278.414400px;}
.y35_c00356{bottom:309.464400px;}
.y19_c00356{bottom:330.164250px;}
.y34_c00356{bottom:340.514400px;}
.y18_c00356{bottom:361.214250px;}
.y17_c00356{bottom:392.264250px;}
.y33_c00356{bottom:401.167140px;}
.y16_c00356{bottom:423.314250px;}
.y32_c00356{bottom:429.693180px;}
.y15_c00356{bottom:454.364250px;}
.y31_c00356{bottom:458.136870px;}
.y30_c00356{bottom:486.580560px;}
.y14_c00356{bottom:515.020980px;}
.y2f_c00356{bottom:515.024250px;}
.y13_c00356{bottom:543.464670px;}
.y12_c00356{bottom:571.990710px;}
.y2e_c00356{bottom:575.954400px;}
.y11_c00356{bottom:600.434400px;}
.y2d_c00356{bottom:607.004400px;}
.y2c_c00356{bottom:638.054400px;}
.y10_c00356{bottom:661.364400px;}
.yf_c00356{bottom:692.414400px;}
.y2b_c00356{bottom:698.703600px;}
.ye_c00356{bottom:723.464400px;}
.y2a_c00356{bottom:727.229640px;}
.y29_c00356{bottom:755.673330px;}
.y28_c00356{bottom:784.117020px;}
.yd_c00356{bottom:784.117140px;}
.y27_c00356{bottom:812.560710px;}
.yc_c00356{bottom:812.560830px;}
.y26_c00356{bottom:841.004400px;}
.yb_c00356{bottom:841.004520px;}
.ya_c00356{bottom:869.530560px;}
.y9_c00356{bottom:897.974250px;}
.y25_c00356{bottom:901.934250px;}
.y24_c00356{bottom:932.984250px;}
.y8_c00356{bottom:958.904400px;}
.y23_c00356{bottom:964.034250px;}
.y7_c00356{bottom:989.954400px;}
.y22_c00356{bottom:995.084250px;}
.y6_c00356{bottom:1021.004400px;}
.y5_c00356{bottom:1052.054400px;}
.y21_c00356{bottom:1055.740830px;}
.y20_c00356{bottom:1084.266870px;}
.y4_c00356{bottom:1112.710560px;}
.y3_c00356{bottom:1141.154250px;}
.y1f_c00356{bottom:1193.174400px;}
.y2_c00356{bottom:1193.174550px;}
.h2_c00356{height:50.400000px;}
.h4_c00356{height:71.413920px;}
.h3_c00356{height:76.824000px;}
.h0_c00356{height:1262.835000px;}
.h1_c00356{height:1263.000000px;}
.w2_c00356{width:0.000000px;}
.w3_c00356{width:0.066000px;}
.w0_c00356{width:892.914000px;}
.w1_c00356{width:893.250000px;}
.x1_c00356{left:-838.913400px;}
.x2_c00356{left:-765.293400px;}
.x3_c00356{left:-743.963400px;}
.x4_c00356{left:-733.343400px;}
.x0_c00356{left:0.000000px;}
.x9_c00356{left:127.620000px;}
.x7_c00356{left:148.950000px;}
.x8_c00356{left:159.570000px;}
.x6_c00356{left:679.950000px;}
.x5_c00356{left:804.366150px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls10_c00356{letter-spacing:-0.175680pt;}
.lsf_c00356{letter-spacing:-0.058560pt;}
.lse_c00356{letter-spacing:0.000000pt;}
.ls1_c00356{letter-spacing:0.058560pt;}
.ls0_c00356{letter-spacing:0.064000pt;}
.lsd_c00356{letter-spacing:0.128000pt;}
.ls3_c00356{letter-spacing:0.175680pt;}
.ls8_c00356{letter-spacing:16.748160pt;}
.ls6_c00356{letter-spacing:16.754016pt;}
.ls7_c00356{letter-spacing:16.865280pt;}
.lsc_c00356{letter-spacing:17.040960pt;}
.lsa_c00356{letter-spacing:18.434688pt;}
.ls5_c00356{letter-spacing:18.880000pt;}
.lsb_c00356{letter-spacing:20.160000pt;}
.ls2_c00356{letter-spacing:20.847360pt;}
.ls9_c00356{letter-spacing:20.987904pt;}
.ls4_c00356{letter-spacing:27.874560pt;}
.ws0_c00356{word-spacing:-16.000000pt;}
.ws3_c00356{word-spacing:-14.815680pt;}
.ws1_c00356{word-spacing:-14.640000pt;}
.ws18_c00356{word-spacing:-0.409920pt;}
.ws3d_c00356{word-spacing:-0.128000pt;}
.ws6_c00356{word-spacing:-0.117120pt;}
.ws13_c00356{word-spacing:-0.064000pt;}
.ws4_c00356{word-spacing:0.000000pt;}
.ws21_c00356{word-spacing:0.117120pt;}
.ws2f_c00356{word-spacing:0.468480pt;}
.ws23_c00356{word-spacing:0.527040pt;}
.ws22_c00356{word-spacing:0.761280pt;}
.ws39_c00356{word-spacing:1.171200pt;}
.ws25_c00356{word-spacing:1.522560pt;}
.ws12_c00356{word-spacing:1.536000pt;}
.ws24_c00356{word-spacing:1.639680pt;}
.ws3e_c00356{word-spacing:1.815360pt;}
.ws1e_c00356{word-spacing:2.283840pt;}
.ws1f_c00356{word-spacing:2.400960pt;}
.ws15_c00356{word-spacing:2.459520pt;}
.ws36_c00356{word-spacing:2.576640pt;}
.ws16_c00356{word-spacing:2.693760pt;}
.ws1c_c00356{word-spacing:2.752000pt;}
.ws1b_c00356{word-spacing:2.816000pt;}
.ws1a_c00356{word-spacing:2.880000pt;}
.ws20_c00356{word-spacing:3.045120pt;}
.ws34_c00356{word-spacing:3.136000pt;}
.ws28_c00356{word-spacing:3.747840pt;}
.ws27_c00356{word-spacing:3.982080pt;}
.ws2a_c00356{word-spacing:4.160000pt;}
.wse_c00356{word-spacing:4.274880pt;}
.ws3b_c00356{word-spacing:4.864000pt;}
.ws38_c00356{word-spacing:5.036160pt;}
.ws37_c00356{word-spacing:5.270400pt;}
.ws14_c00356{word-spacing:5.328960pt;}
.ws3c_c00356{word-spacing:5.376000pt;}
.ws3a_c00356{word-spacing:5.440000pt;}
.ws19_c00356{word-spacing:5.696000pt;}
.wsb_c00356{word-spacing:5.973120pt;}
.wsa_c00356{word-spacing:6.090240pt;}
.ws2c_c00356{word-spacing:6.207360pt;}
.ws26_c00356{word-spacing:6.617280pt;}
.ws1d_c00356{word-spacing:6.656000pt;}
.ws17_c00356{word-spacing:6.851520pt;}
.ws30_c00356{word-spacing:6.968640pt;}
.ws32_c00356{word-spacing:7.202880pt;}
.ws31_c00356{word-spacing:7.320000pt;}
.ws5_c00356{word-spacing:7.495680pt;}
.ws8_c00356{word-spacing:7.552000pt;}
.ws11_c00356{word-spacing:7.680000pt;}
.ws2_c00356{word-spacing:7.858752pt;}
.ws2e_c00356{word-spacing:8.198400pt;}
.ws2b_c00356{word-spacing:8.256000pt;}
.ws2d_c00356{word-spacing:8.432640pt;}
.ws33_c00356{word-spacing:8.549760pt;}
.ws35_c00356{word-spacing:10.240000pt;}
.ws7_c00356{word-spacing:10.816000pt;}
.wsc_c00356{word-spacing:13.000320pt;}
.wsd_c00356{word-spacing:13.234560pt;}
.wsf_c00356{word-spacing:13.995840pt;}
.ws10_c00356{word-spacing:14.230080pt;}
.ws9_c00356{word-spacing:16.576000pt;}
.ws29_c00356{word-spacing:27.456000pt;}
._1_c00356{margin-left:-0.948672pt;}
._0_c00356{width:0.936960pt;}
._2_c00356{width:14.803968pt;}
._3_c00356{width:20.542848pt;}
.fs1_c00356{font-size:58.560000pt;}
.fs0_c00356{font-size:64.000000pt;}
.y0_c00356{bottom:0.000000pt;}
.y1_c00356{bottom:54.887600pt;}
.y1e_c00356{bottom:110.516747pt;}
.y1d_c00356{bottom:135.873227pt;}
.y38_c00356{bottom:168.036187pt;}
.y1c_c00356{bottom:188.752907pt;}
.y37_c00356{bottom:193.319467pt;}
.y1b_c00356{bottom:214.036187pt;}
.y1a_c00356{bottom:239.319467pt;}
.y36_c00356{bottom:247.479467pt;}
.y35_c00356{bottom:275.079467pt;}
.y19_c00356{bottom:293.479333pt;}
.y34_c00356{bottom:302.679467pt;}
.y18_c00356{bottom:321.079333pt;}
.y17_c00356{bottom:348.679333pt;}
.y33_c00356{bottom:356.593013pt;}
.y16_c00356{bottom:376.279333pt;}
.y32_c00356{bottom:381.949493pt;}
.y15_c00356{bottom:403.879333pt;}
.y31_c00356{bottom:407.232773pt;}
.y30_c00356{bottom:432.516053pt;}
.y14_c00356{bottom:457.796427pt;}
.y2f_c00356{bottom:457.799333pt;}
.y13_c00356{bottom:483.079707pt;}
.y12_c00356{bottom:508.436187pt;}
.y2e_c00356{bottom:511.959467pt;}
.y11_c00356{bottom:533.719467pt;}
.y2d_c00356{bottom:539.559467pt;}
.y2c_c00356{bottom:567.159467pt;}
.y10_c00356{bottom:587.879467pt;}
.yf_c00356{bottom:615.479467pt;}
.y2b_c00356{bottom:621.069867pt;}
.ye_c00356{bottom:643.079467pt;}
.y2a_c00356{bottom:646.426347pt;}
.y29_c00356{bottom:671.709627pt;}
.y28_c00356{bottom:696.992907pt;}
.yd_c00356{bottom:696.993013pt;}
.y27_c00356{bottom:722.276187pt;}
.yc_c00356{bottom:722.276293pt;}
.y26_c00356{bottom:747.559467pt;}
.yb_c00356{bottom:747.559573pt;}
.ya_c00356{bottom:772.916053pt;}
.y9_c00356{bottom:798.199333pt;}
.y25_c00356{bottom:801.719333pt;}
.y24_c00356{bottom:829.319333pt;}
.y8_c00356{bottom:852.359467pt;}
.y23_c00356{bottom:856.919333pt;}
.y7_c00356{bottom:879.959467pt;}
.y22_c00356{bottom:884.519333pt;}
.y6_c00356{bottom:907.559467pt;}
.y5_c00356{bottom:935.159467pt;}
.y21_c00356{bottom:938.436293pt;}
.y20_c00356{bottom:963.792773pt;}
.y4_c00356{bottom:989.076053pt;}
.y3_c00356{bottom:1014.359333pt;}
.y1f_c00356{bottom:1060.599467pt;}
.y2_c00356{bottom:1060.599600pt;}
.h2_c00356{height:44.800000pt;}
.h4_c00356{height:63.479040pt;}
.h3_c00356{height:68.288000pt;}
.h0_c00356{height:1122.520000pt;}
.h1_c00356{height:1122.666667pt;}
.w2_c00356{width:0.000000pt;}
.w3_c00356{width:0.058667pt;}
.w0_c00356{width:793.701333pt;}
.w1_c00356{width:794.000000pt;}
.x1_c00356{left:-745.700800pt;}
.x2_c00356{left:-680.260800pt;}
.x3_c00356{left:-661.300800pt;}
.x4_c00356{left:-651.860800pt;}
.x0_c00356{left:0.000000pt;}
.x9_c00356{left:113.440000pt;}
.x7_c00356{left:132.400000pt;}
.x8_c00356{left:141.840000pt;}
.x6_c00356{left:604.400000pt;}
.x5_c00356{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00357;src:url('chunks/assets/font_1854de65351782860ed4809a.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_42681b2fef9e64a18640926e.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00357{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.lsa_c00357{letter-spacing:-0.072000px;}
.ls9_c00357{letter-spacing:-0.065880px;}
.ls8_c00357{letter-spacing:0.000000px;}
.ls5_c00357{letter-spacing:0.065880px;}
.ls4_c00357{letter-spacing:0.072000px;}
.ls3_c00357{letter-spacing:0.144000px;}
.ls1_c00357{letter-spacing:0.197640px;}
.ls6_c00357{letter-spacing:20.520000px;}
.ls2_c00357{letter-spacing:20.903724px;}
.ls7_c00357{letter-spacing:27.144000px;}
.ls0_c00357{letter-spacing:44.897220px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00357{word-spacing:-18.072000px;}
.ws0_c00357{word-spacing:-18.000000px;}
.wsb_c00357{word-spacing:-0.144000px;}
.ws12_c00357{word-spacing:-0.072000px;}
.ws4_c00357{word-spacing:-0.065880px;}
.ws3_c00357{word-spacing:0.000000px;}
.ws7_c00357{word-spacing:0.131760px;}
.ws1c_c00357{word-spacing:0.288000px;}
.ws22_c00357{word-spacing:0.648000px;}
.ws2_c00357{word-spacing:0.720000px;}
.ws19_c00357{word-spacing:1.080000px;}
.ws21_c00357{word-spacing:1.224000px;}
.ws13_c00357{word-spacing:2.042280px;}
.ws14_c00357{word-spacing:2.305800px;}
.ws10_c00357{word-spacing:2.808000px;}
.wse_c00357{word-spacing:3.096000px;}
.ws17_c00357{word-spacing:3.162240px;}
.wsf_c00357{word-spacing:3.168000px;}
.wsc_c00357{word-spacing:3.240000px;}
.ws18_c00357{word-spacing:3.425760px;}
.wsd_c00357{word-spacing:3.600000px;}
.ws8_c00357{word-spacing:4.545720px;}
.ws9_c00357{word-spacing:4.809240px;}
.ws23_c00357{word-spacing:5.270400px;}
.ws24_c00357{word-spacing:5.533920px;}
.ws1d_c00357{word-spacing:6.408000px;}
.ws1e_c00357{word-spacing:6.480000px;}
.ws25_c00357{word-spacing:8.498520px;}
.ws1f_c00357{word-spacing:8.928000px;}
.ws20_c00357{word-spacing:9.000000px;}
.ws15_c00357{word-spacing:9.223200px;}
.ws16_c00357{word-spacing:9.882000px;}
.wsa_c00357{word-spacing:13.176000px;}
.ws1b_c00357{word-spacing:14.328000px;}
.ws1a_c00357{word-spacing:14.400000px;}
.ws26_c00357{word-spacing:17.208000px;}
.ws11_c00357{word-spacing:20.880000px;}
.ws5_c00357{word-spacing:28.657800px;}
.ws6_c00357{word-spacing:28.921320px;}
._1_c00357{margin-left:-1.199016px;}
._2_c00357{width:1.034316px;}
._3_c00357{width:3.143016px;}
._4_c00357{width:16.944336px;}
._0_c00357{width:28.855440px;}
.fc1_c00357{color:rgb(0,0,0);}
.fc0_c00357{color:rgb(35,31,32);}
.fs1_c00357{font-size:65.880000px;}
.fs0_c00357{font-size:72.000000px;}
.y0_c00357{bottom:0.000000px;}
.y1_c00357{bottom:61.748550px;}
.y1e_c00357{bottom:115.424400px;}
.y1d_c00357{bottom:146.474400px;}
.y1c_c00357{bottom:208.484400px;}
.y1b_c00357{bottom:238.180710px;}
.y1a_c00357{bottom:266.624400px;}
.y19_c00357{bottom:327.554400px;}
.y18_c00357{bottom:358.604400px;}
.y17_c00357{bottom:389.654400px;}
.y16_c00357{bottom:420.704400px;}
.y15_c00357{bottom:451.754400px;}
.y14_c00357{bottom:482.804400px;}
.y13_c00357{bottom:513.854400px;}
.y12_c00357{bottom:544.904400px;}
.y11_c00357{bottom:605.560980px;}
.y10_c00357{bottom:634.087020px;}
.yf_c00357{bottom:662.530710px;}
.ye_c00357{bottom:690.974400px;}
.yd_c00357{bottom:751.904400px;}
.yc_c00357{bottom:782.954400px;}
.yb_c00357{bottom:814.004400px;}
.ya_c00357{bottom:845.054400px;}
.y9_c00357{bottom:876.104400px;}
.y8_c00357{bottom:936.761550px;}
.y7_c00357{bottom:965.205240px;}
.y6_c00357{bottom:1024.777230px;}
.y5_c00357{bottom:1053.220920px;}
.y4_c00357{bottom:1112.710560px;}
.y3_c00357{bottom:1141.154250px;}
.y2_c00357{bottom:1193.174400px;}
.h2_c00357{height:50.400000px;}
.h4_c00357{height:71.413920px;}
.h3_c00357{height:76.824000px;}
.h5_c00357{height:78.048000px;}
.h0_c00357{height:1262.835000px;}
.h1_c00357{height:1263.000000px;}
.w0_c00357{width:892.914000px;}
.w1_c00357{width:893.250000px;}
.x0_c00357{left:0.000000px;}
.x1_c00357{left:54.000000px;}
.x2_c00357{left:127.620000px;}
.x3_c00357{left:148.950000px;}
.x4_c00357{left:159.570000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.lsa_c00357{letter-spacing:-0.064000pt;}
.ls9_c00357{letter-spacing:-0.058560pt;}
.ls8_c00357{letter-spacing:0.000000pt;}
.ls5_c00357{letter-spacing:0.058560pt;}
.ls4_c00357{letter-spacing:0.064000pt;}
.ls3_c00357{letter-spacing:0.128000pt;}
.ls1_c00357{letter-spacing:0.175680pt;}
.ls6_c00357{letter-spacing:18.240000pt;}
.ls2_c00357{letter-spacing:18.581088pt;}
.ls7_c00357{letter-spacing:24.128000pt;}
.ls0_c00357{letter-spacing:39.908640pt;}
.ws1_c00357{word-spacing:-16.064000pt;}
.ws0_c00357{word-spacing:-16.000000pt;}
.wsb_c00357{word-spacing:-0.128000pt;}
.ws12_c00357{word-spacing:-0.064000pt;}
.ws4_c00357{word-spacing:-0.058560pt;}
.ws3_c00357{word-spacing:0.000000pt;}
.ws7_c00357{word-spacing:0.117120pt;}
.ws1c_c00357{word-spacing:0.256000pt;}
.ws22_c00357{word-spacing:0.576000pt;}
.ws2_c00357{word-spacing:0.640000pt;}
.ws19_c00357{word-spacing:0.960000pt;}
.ws21_c00357{word-spacing:1.088000pt;}
.ws13_c00357{word-spacing:1.815360pt;}
.ws14_c00357{word-spacing:2.049600pt;}
.ws10_c00357{word-spacing:2.496000pt;}
.wse_c00357{word-spacing:2.752000pt;}
.ws17_c00357{word-spacing:2.810880pt;}
.wsf_c00357{word-spacing:2.816000pt;}
.wsc_c00357{word-spacing:2.880000pt;}
.ws18_c00357{word-spacing:3.045120pt;}
.wsd_c00357{word-spacing:3.200000pt;}
.ws8_c00357{word-spacing:4.040640pt;}
.ws9_c00357{word-spacing:4.274880pt;}
.ws23_c00357{word-spacing:4.684800pt;}
.ws24_c00357{word-spacing:4.919040pt;}
.ws1d_c00357{word-spacing:5.696000pt;}
.ws1e_c00357{word-spacing:5.760000pt;}
.ws25_c00357{word-spacing:7.554240pt;}
.ws1f_c00357{word-spacing:7.936000pt;}
.ws20_c00357{word-spacing:8.000000pt;}
.ws15_c00357{word-spacing:8.198400pt;}
.ws16_c00357{word-spacing:8.784000pt;}
.wsa_c00357{word-spacing:11.712000pt;}
.ws1b_c00357{word-spacing:12.736000pt;}
.ws1a_c00357{word-spacing:12.800000pt;}
.ws26_c00357{word-spacing:15.296000pt;}
.ws11_c00357{word-spacing:18.560000pt;}
.ws5_c00357{word-spacing:25.473600pt;}
.ws6_c00357{word-spacing:25.707840pt;}
._1_c00357{margin-left:-1.065792pt;}
._2_c00357{width:0.919392pt;}
._3_c00357{width:2.793792pt;}
._4_c00357{width:15.061632pt;}
._0_c00357{width:25.649280pt;}
.fs1_c00357{font-size:58.560000pt;}
.fs0_c00357{font-size:64.000000pt;}
.y0_c00357{bottom:0.000000pt;}
.y1_c00357{bottom:54.887600pt;}
.y1e_c00357{bottom:102.599467pt;}
.y1d_c00357{bottom:130.199467pt;}
.y1c_c00357{bottom:185.319467pt;}
.y1b_c00357{bottom:211.716187pt;}
.y1a_c00357{bottom:236.999467pt;}
.y19_c00357{bottom:291.159467pt;}
.y18_c00357{bottom:318.759467pt;}
.y17_c00357{bottom:346.359467pt;}
.y16_c00357{bottom:373.959467pt;}
.y15_c00357{bottom:401.559467pt;}
.y14_c00357{bottom:429.159467pt;}
.y13_c00357{bottom:456.759467pt;}
.y12_c00357{bottom:484.359467pt;}
.y11_c00357{bottom:538.276427pt;}
.y10_c00357{bottom:563.632907pt;}
.yf_c00357{bottom:588.916187pt;}
.ye_c00357{bottom:614.199467pt;}
.yd_c00357{bottom:668.359467pt;}
.yc_c00357{bottom:695.959467pt;}
.yb_c00357{bottom:723.559467pt;}
.ya_c00357{bottom:751.159467pt;}
.y9_c00357{bottom:778.759467pt;}
.y8_c00357{bottom:832.676933pt;}
.y7_c00357{bottom:857.960213pt;}
.y6_c00357{bottom:910.913093pt;}
.y5_c00357{bottom:936.196373pt;}
.y4_c00357{bottom:989.076053pt;}
.y3_c00357{bottom:1014.359333pt;}
.y2_c00357{bottom:1060.599467pt;}
.h2_c00357{height:44.800000pt;}
.h4_c00357{height:63.479040pt;}
.h3_c00357{height:68.288000pt;}
.h5_c00357{height:69.376000pt;}
.h0_c00357{height:1122.520000pt;}
.h1_c00357{height:1122.666667pt;}
.w0_c00357{width:793.701333pt;}
.w1_c00357{width:794.000000pt;}
.x0_c00357{left:0.000000pt;}
.x1_c00357{left:48.000000pt;}
.x2_c00357{left:113.440000pt;}
.x3_c00357{left:132.400000pt;}
.x4_c00357{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00358;src:url('chunks/assets/font_9d26aa4a150c23bb66ba46cb.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_047d9f2bfef50971a6ef144f.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00358;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00358{font-family:ff4_c00358;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00358;src:url('chunks/assets/font_18cb7ea1e8cace6b218eabc6.woff2')format("woff");}.ff5_c00358{font-family:ff5_c00358;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00358;src:url('chunks/assets/font_201c60a3287590f2fb61b4fa.woff2')format("woff");}.ff6_c00358{font-family:ff6_c00358;line-height:1.592000;font-style: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;}
.lsb_c00358{letter-spacing:-0.072000px;}
.lsa_c00358{letter-spacing:-0.065880px;}
.ls9_c00358{letter-spacing:0.000000px;}
.ls5_c00358{letter-spacing:0.065880px;}
.ls4_c00358{letter-spacing:0.072000px;}
.ls3_c00358{letter-spacing:0.144000px;}
.ls1_c00358{letter-spacing:0.197640px;}
.ls8_c00358{letter-spacing:17.603136px;}
.ls6_c00358{letter-spacing:20.520000px;}
.ls2_c00358{letter-spacing:20.897136px;}
.ls7_c00358{letter-spacing:27.144000px;}
.ls0_c00358{letter-spacing:44.897220px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00358{word-spacing:-18.072000px;}
.ws0_c00358{word-spacing:-18.000000px;}
.wsb_c00358{word-spacing:-0.144000px;}
.ws31_c00358{word-spacing:-0.131760px;}
.ws12_c00358{word-spacing:-0.072000px;}
.ws4_c00358{word-spacing:-0.065880px;}
.ws3_c00358{word-spacing:0.000000px;}
.ws7_c00358{word-spacing:0.131760px;}
.ws1c_c00358{word-spacing:0.288000px;}
.ws22_c00358{word-spacing:0.648000px;}
.ws2_c00358{word-spacing:0.720000px;}
.ws19_c00358{word-spacing:1.080000px;}
.ws21_c00358{word-spacing:1.224000px;}
.ws2f_c00358{word-spacing:1.317600px;}
.ws13_c00358{word-spacing:2.042280px;}
.ws14_c00358{word-spacing:2.305800px;}
.ws2c_c00358{word-spacing:2.766960px;}
.ws10_c00358{word-spacing:2.808000px;}
.ws2d_c00358{word-spacing:3.030480px;}
.wse_c00358{word-spacing:3.096000px;}
.ws17_c00358{word-spacing:3.162240px;}
.wsf_c00358{word-spacing:3.168000px;}
.wsc_c00358{word-spacing:3.240000px;}
.ws18_c00358{word-spacing:3.425760px;}
.ws2e_c00358{word-spacing:3.528000px;}
.wsd_c00358{word-spacing:3.600000px;}
.ws8_c00358{word-spacing:4.545720px;}
.ws9_c00358{word-spacing:4.809240px;}
.ws23_c00358{word-spacing:5.270400px;}
.ws2a_c00358{word-spacing:5.328000px;}
.ws24_c00358{word-spacing:5.533920px;}
.ws27_c00358{word-spacing:6.126840px;}
.ws28_c00358{word-spacing:6.258600px;}
.ws1d_c00358{word-spacing:6.408000px;}
.ws1e_c00358{word-spacing:6.480000px;}
.ws25_c00358{word-spacing:8.498520px;}
.ws1f_c00358{word-spacing:8.928000px;}
.ws20_c00358{word-spacing:9.000000px;}
.ws15_c00358{word-spacing:9.223200px;}
.ws16_c00358{word-spacing:9.882000px;}
.ws29_c00358{word-spacing:11.397240px;}
.wsa_c00358{word-spacing:13.176000px;}
.ws30_c00358{word-spacing:13.900680px;}
.ws1b_c00358{word-spacing:14.328000px;}
.ws1a_c00358{word-spacing:14.400000px;}
.ws26_c00358{word-spacing:17.208000px;}
.ws2b_c00358{word-spacing:19.368000px;}
.ws11_c00358{word-spacing:20.880000px;}
.ws5_c00358{word-spacing:28.657800px;}
.ws6_c00358{word-spacing:28.921320px;}
._1_c00358{margin-left:-1.192428px;}
._2_c00358{width:1.001376px;}
._3_c00358{width:3.136428px;}
._4_c00358{width:16.904808px;}
._5_c00358{width:18.406872px;}
._0_c00358{width:28.855440px;}
.fc2_c00358{color:transparent;}
.fc1_c00358{color:rgb(0,0,0);}
.fc0_c00358{color:rgb(35,31,32);}
.fs1_c00358{font-size:65.880000px;}
.fs0_c00358{font-size:72.000000px;}
.y0_c00358{bottom:0.000000px;}
.y1_c00358{bottom:61.748550px;}
.y1e_c00358{bottom:115.424400px;}
.y1d_c00358{bottom:146.474400px;}
.y1c_c00358{bottom:208.484400px;}
.y1b_c00358{bottom:238.180710px;}
.y1a_c00358{bottom:266.624400px;}
.y19_c00358{bottom:327.554400px;}
.y18_c00358{bottom:358.604400px;}
.y17_c00358{bottom:389.654400px;}
.y16_c00358{bottom:420.704400px;}
.y15_c00358{bottom:451.754400px;}
.y14_c00358{bottom:482.804400px;}
.y13_c00358{bottom:513.854400px;}
.y12_c00358{bottom:544.904400px;}
.y2d_c00358{bottom:571.986870px;}
.y2c_c00358{bottom:600.430560px;}
.y11_c00358{bottom:605.560980px;}
.y2b_c00358{bottom:628.874250px;}
.y10_c00358{bottom:634.087020px;}
.yf_c00358{bottom:662.530710px;}
.y2a_c00358{bottom:689.804400px;}
.ye_c00358{bottom:690.974400px;}
.y29_c00358{bottom:720.854400px;}
.yd_c00358{bottom:751.904400px;}
.yc_c00358{bottom:782.954400px;}
.y28_c00358{bottom:812.564670px;}
.yb_c00358{bottom:814.004400px;}
.y27_c00358{bottom:841.008360px;}
.ya_c00358{bottom:845.054400px;}
.y26_c00358{bottom:869.534400px;}
.y9_c00358{bottom:876.104400px;}
.y25_c00358{bottom:930.464250px;}
.y8_c00358{bottom:936.761550px;}
.y24_c00358{bottom:961.514250px;}
.y7_c00358{bottom:965.205240px;}
.y23_c00358{bottom:992.564250px;}
.y6_c00358{bottom:1024.777230px;}
.y22_c00358{bottom:1053.217020px;}
.y5_c00358{bottom:1053.220920px;}
.y21_c00358{bottom:1081.660710px;}
.y20_c00358{bottom:1110.104400px;}
.y4_c00358{bottom:1112.710560px;}
.y3_c00358{bottom:1141.154250px;}
.y1f_c00358{bottom:1193.174400px;}
.y2_c00358{bottom:1193.174550px;}
.h2_c00358{height:50.400000px;}
.h4_c00358{height:71.413920px;}
.h3_c00358{height:76.824000px;}
.h5_c00358{height:78.048000px;}
.h0_c00358{height:1262.835000px;}
.h1_c00358{height:1263.000000px;}
.w2_c00358{width:0.000000px;}
.w3_c00358{width:0.066000px;}
.w0_c00358{width:892.914000px;}
.w1_c00358{width:893.250000px;}
.x1_c00358{left:-838.913400px;}
.x2_c00358{left:-765.293400px;}
.x3_c00358{left:-743.963400px;}
.x4_c00358{left:-733.343400px;}
.x0_c00358{left:0.000000px;}
.x9_c00358{left:127.620000px;}
.x7_c00358{left:148.950000px;}
.x8_c00358{left:159.570000px;}
.x6_c00358{left:679.950000px;}
.x5_c00358{left:804.366150px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.lsb_c00358{letter-spacing:-0.064000pt;}
.lsa_c00358{letter-spacing:-0.058560pt;}
.ls9_c00358{letter-spacing:0.000000pt;}
.ls5_c00358{letter-spacing:0.058560pt;}
.ls4_c00358{letter-spacing:0.064000pt;}
.ls3_c00358{letter-spacing:0.128000pt;}
.ls1_c00358{letter-spacing:0.175680pt;}
.ls8_c00358{letter-spacing:15.647232pt;}
.ls6_c00358{letter-spacing:18.240000pt;}
.ls2_c00358{letter-spacing:18.575232pt;}
.ls7_c00358{letter-spacing:24.128000pt;}
.ls0_c00358{letter-spacing:39.908640pt;}
.ws1_c00358{word-spacing:-16.064000pt;}
.ws0_c00358{word-spacing:-16.000000pt;}
.wsb_c00358{word-spacing:-0.128000pt;}
.ws31_c00358{word-spacing:-0.117120pt;}
.ws12_c00358{word-spacing:-0.064000pt;}
.ws4_c00358{word-spacing:-0.058560pt;}
.ws3_c00358{word-spacing:0.000000pt;}
.ws7_c00358{word-spacing:0.117120pt;}
.ws1c_c00358{word-spacing:0.256000pt;}
.ws22_c00358{word-spacing:0.576000pt;}
.ws2_c00358{word-spacing:0.640000pt;}
.ws19_c00358{word-spacing:0.960000pt;}
.ws21_c00358{word-spacing:1.088000pt;}
.ws2f_c00358{word-spacing:1.171200pt;}
.ws13_c00358{word-spacing:1.815360pt;}
.ws14_c00358{word-spacing:2.049600pt;}
.ws2c_c00358{word-spacing:2.459520pt;}
.ws10_c00358{word-spacing:2.496000pt;}
.ws2d_c00358{word-spacing:2.693760pt;}
.wse_c00358{word-spacing:2.752000pt;}
.ws17_c00358{word-spacing:2.810880pt;}
.wsf_c00358{word-spacing:2.816000pt;}
.wsc_c00358{word-spacing:2.880000pt;}
.ws18_c00358{word-spacing:3.045120pt;}
.ws2e_c00358{word-spacing:3.136000pt;}
.wsd_c00358{word-spacing:3.200000pt;}
.ws8_c00358{word-spacing:4.040640pt;}
.ws9_c00358{word-spacing:4.274880pt;}
.ws23_c00358{word-spacing:4.684800pt;}
.ws2a_c00358{word-spacing:4.736000pt;}
.ws24_c00358{word-spacing:4.919040pt;}
.ws27_c00358{word-spacing:5.446080pt;}
.ws28_c00358{word-spacing:5.563200pt;}
.ws1d_c00358{word-spacing:5.696000pt;}
.ws1e_c00358{word-spacing:5.760000pt;}
.ws25_c00358{word-spacing:7.554240pt;}
.ws1f_c00358{word-spacing:7.936000pt;}
.ws20_c00358{word-spacing:8.000000pt;}
.ws15_c00358{word-spacing:8.198400pt;}
.ws16_c00358{word-spacing:8.784000pt;}
.ws29_c00358{word-spacing:10.130880pt;}
.wsa_c00358{word-spacing:11.712000pt;}
.ws30_c00358{word-spacing:12.356160pt;}
.ws1b_c00358{word-spacing:12.736000pt;}
.ws1a_c00358{word-spacing:12.800000pt;}
.ws26_c00358{word-spacing:15.296000pt;}
.ws2b_c00358{word-spacing:17.216000pt;}
.ws11_c00358{word-spacing:18.560000pt;}
.ws5_c00358{word-spacing:25.473600pt;}
.ws6_c00358{word-spacing:25.707840pt;}
._1_c00358{margin-left:-1.059936pt;}
._2_c00358{width:0.890112pt;}
._3_c00358{width:2.787936pt;}
._4_c00358{width:15.026496pt;}
._5_c00358{width:16.361664pt;}
._0_c00358{width:25.649280pt;}
.fs1_c00358{font-size:58.560000pt;}
.fs0_c00358{font-size:64.000000pt;}
.y0_c00358{bottom:0.000000pt;}
.y1_c00358{bottom:54.887600pt;}
.y1e_c00358{bottom:102.599467pt;}
.y1d_c00358{bottom:130.199467pt;}
.y1c_c00358{bottom:185.319467pt;}
.y1b_c00358{bottom:211.716187pt;}
.y1a_c00358{bottom:236.999467pt;}
.y19_c00358{bottom:291.159467pt;}
.y18_c00358{bottom:318.759467pt;}
.y17_c00358{bottom:346.359467pt;}
.y16_c00358{bottom:373.959467pt;}
.y15_c00358{bottom:401.559467pt;}
.y14_c00358{bottom:429.159467pt;}
.y13_c00358{bottom:456.759467pt;}
.y12_c00358{bottom:484.359467pt;}
.y2d_c00358{bottom:508.432773pt;}
.y2c_c00358{bottom:533.716053pt;}
.y11_c00358{bottom:538.276427pt;}
.y2b_c00358{bottom:558.999333pt;}
.y10_c00358{bottom:563.632907pt;}
.yf_c00358{bottom:588.916187pt;}
.y2a_c00358{bottom:613.159467pt;}
.ye_c00358{bottom:614.199467pt;}
.y29_c00358{bottom:640.759467pt;}
.yd_c00358{bottom:668.359467pt;}
.yc_c00358{bottom:695.959467pt;}
.y28_c00358{bottom:722.279707pt;}
.yb_c00358{bottom:723.559467pt;}
.y27_c00358{bottom:747.562987pt;}
.ya_c00358{bottom:751.159467pt;}
.y26_c00358{bottom:772.919467pt;}
.y9_c00358{bottom:778.759467pt;}
.y25_c00358{bottom:827.079333pt;}
.y8_c00358{bottom:832.676933pt;}
.y24_c00358{bottom:854.679333pt;}
.y7_c00358{bottom:857.960213pt;}
.y23_c00358{bottom:882.279333pt;}
.y6_c00358{bottom:910.913093pt;}
.y22_c00358{bottom:936.192907pt;}
.y5_c00358{bottom:936.196373pt;}
.y21_c00358{bottom:961.476187pt;}
.y20_c00358{bottom:986.759467pt;}
.y4_c00358{bottom:989.076053pt;}
.y3_c00358{bottom:1014.359333pt;}
.y1f_c00358{bottom:1060.599467pt;}
.y2_c00358{bottom:1060.599600pt;}
.h2_c00358{height:44.800000pt;}
.h4_c00358{height:63.479040pt;}
.h3_c00358{height:68.288000pt;}
.h5_c00358{height:69.376000pt;}
.h0_c00358{height:1122.520000pt;}
.h1_c00358{height:1122.666667pt;}
.w2_c00358{width:0.000000pt;}
.w3_c00358{width:0.058667pt;}
.w0_c00358{width:793.701333pt;}
.w1_c00358{width:794.000000pt;}
.x1_c00358{left:-745.700800pt;}
.x2_c00358{left:-680.260800pt;}
.x3_c00358{left:-661.300800pt;}
.x4_c00358{left:-651.860800pt;}
.x0_c00358{left:0.000000pt;}
.x9_c00358{left:113.440000pt;}
.x7_c00358{left:132.400000pt;}
.x8_c00358{left:141.840000pt;}
.x6_c00358{left:604.400000pt;}
.x5_c00358{left:714.992133pt;}
}





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

.ir_c00359:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00359{font-family:sans-serif;visibility:hidden;}
.sc__c00359{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
}
.y0_c00359{bottom:0.000000px;}
.h0_c00359{height:1262.835000px;}
.h1_c00359{height:1263.000000px;}
.w0_c00359{width:892.914000px;}
.w1_c00359{width:893.250000px;}
.x0_c00359{left:0.000000px;}
@media print{
.y0_c00359{bottom:0.000000pt;}
.h0_c00359{height:1122.520000pt;}
.h1_c00359{height:1122.666667pt;}
.w0_c00359{width:793.701333pt;}
.w1_c00359{width:794.000000pt;}
.x0_c00359{left:0.000000pt;}
}





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

.ir_c00360:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00360{font-family:sans-serif;visibility:hidden;}
.sc__c00360{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
}
.y0_c00360{bottom:0.000000px;}
.h0_c00360{height:1262.835000px;}
.h1_c00360{height:1263.000000px;}
.w0_c00360{width:892.914000px;}
.w1_c00360{width:893.250000px;}
.x0_c00360{left:0.000000px;}
@media print{
.y0_c00360{bottom:0.000000pt;}
.h0_c00360{height:1122.520000pt;}
.h1_c00360{height:1122.666667pt;}
.w0_c00360{width:793.701333pt;}
.w1_c00360{width:794.000000pt;}
.x0_c00360{left:0.000000pt;}
}





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

.ir_c00361:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00361{font-family:sans-serif;visibility:hidden;}
.sc__c00361{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
}
.y0_c00361{bottom:0.000000px;}
.h0_c00361{height:1262.835000px;}
.h1_c00361{height:1263.000000px;}
.w0_c00361{width:892.914000px;}
.w1_c00361{width:893.250000px;}
.x0_c00361{left:0.000000px;}
@media print{
.y0_c00361{bottom:0.000000pt;}
.h0_c00361{height:1122.520000pt;}
.h1_c00361{height:1122.666667pt;}
.w0_c00361{width:793.701333pt;}
.w1_c00361{width:794.000000pt;}
.x0_c00361{left:0.000000pt;}
}





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

.ir_c00362:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00362;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00362;src:url('chunks/assets/font_8aab7df4b5ab55501e94c592.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00362;src:url('chunks/assets/font_db623ee871e85340e5c8036a.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00362;src:url('chunks/assets/font_16ec3d8d213abcdf66e0e6a0.woff2')format("woff");}.ff4_c00362{font-family:ff4_c00362;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00362;src:url('chunks/assets/font_2d6f5eee983ed370735c5989.woff2')format("woff");}.ff5_c00362{font-family:ff5_c00362;line-height:1.592000;font-style: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;}
.ls6_c00362{letter-spacing:-0.072000px;}
.ls4_c00362{letter-spacing:0.000000px;}
.ls0_c00362{letter-spacing:0.072000px;}
.ls5_c00362{letter-spacing:0.144000px;}
.ls3_c00362{letter-spacing:25.358400px;}
.ls1_c00362{letter-spacing:30.744000px;}
.ls2_c00362{letter-spacing:33.120000px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00362{word-spacing:-18.072000px;}
.ws4_c00362{word-spacing:-18.000000px;}
.wsa_c00362{word-spacing:-0.131760px;}
.wsd_c00362{word-spacing:-0.072000px;}
.ws9_c00362{word-spacing:0.000000px;}
.ws13_c00362{word-spacing:0.072000px;}
.ws0_c00362{word-spacing:0.432000px;}
.ws10_c00362{word-spacing:0.648000px;}
.ws15_c00362{word-spacing:1.008000px;}
.ws21_c00362{word-spacing:2.088000px;}
.ws7_c00362{word-spacing:2.448000px;}
.ws1d_c00362{word-spacing:2.808000px;}
.ws6_c00362{word-spacing:2.880000px;}
.wsc_c00362{word-spacing:4.248000px;}
.ws3_c00362{word-spacing:4.392000px;}
.ws1b_c00362{word-spacing:4.608000px;}
.ws1a_c00362{word-spacing:4.680000px;}
.ws1e_c00362{word-spacing:5.328000px;}
.ws23_c00362{word-spacing:6.768000px;}
.ws8_c00362{word-spacing:6.840000px;}
.ws17_c00362{word-spacing:7.128000px;}
.ws16_c00362{word-spacing:7.200000px;}
.ws22_c00362{word-spacing:7.920000px;}
.ws24_c00362{word-spacing:8.208000px;}
.ws14_c00362{word-spacing:9.360000px;}
.ws12_c00362{word-spacing:10.008000px;}
.ws1f_c00362{word-spacing:11.088000px;}
.ws20_c00362{word-spacing:11.160000px;}
.wsb_c00362{word-spacing:12.168000px;}
.wse_c00362{word-spacing:12.528000px;}
.wsf_c00362{word-spacing:12.600000px;}
.ws1c_c00362{word-spacing:12.960000px;}
.ws5_c00362{word-spacing:13.032000px;}
.ws11_c00362{word-spacing:15.336000px;}
.ws2_c00362{word-spacing:15.480000px;}
.ws19_c00362{word-spacing:23.688000px;}
.ws18_c00362{word-spacing:23.760000px;}
._1_c00362{margin-left:-1.152000px;}
._4_c00362{width:1.065600px;}
._5_c00362{width:7.272000px;}
._3_c00362{width:10.512000px;}
._2_c00362{width:27.072000px;}
._0_c00362{width:54.000000px;}
.fc1_c00362{color:rgb(0,0,0);}
.fc0_c00362{color:rgb(35,31,32);}
.fs1_c00362{font-size:65.880000px;}
.fs0_c00362{font-size:72.000000px;}
.y0_c00362{bottom:0.000000px;}
.y1_c00362{bottom:61.748550px;}
.y1f_c00362{bottom:146.474400px;}
.y1e_c00362{bottom:177.524400px;}
.y1d_c00362{bottom:208.574400px;}
.y1c_c00362{bottom:239.624400px;}
.y1b_c00362{bottom:270.674400px;}
.y1a_c00362{bottom:301.724400px;}
.y19_c00362{bottom:332.774400px;}
.y18_c00362{bottom:363.824400px;}
.y17_c00362{bottom:425.924400px;}
.y16_c00362{bottom:456.974400px;}
.y15_c00362{bottom:488.024400px;}
.y14_c00362{bottom:519.074400px;}
.y13_c00362{bottom:550.124400px;}
.y12_c00362{bottom:581.174400px;}
.y11_c00362{bottom:612.224400px;}
.y10_c00362{bottom:643.274400px;}
.yf_c00362{bottom:705.374400px;}
.ye_c00362{bottom:736.424400px;}
.yd_c00362{bottom:767.474400px;}
.yc_c00362{bottom:798.434400px;}
.yb_c00362{bottom:829.484400px;}
.ya_c00362{bottom:860.534400px;}
.y9_c00362{bottom:891.584400px;}
.y8_c00362{bottom:922.634400px;}
.y7_c00362{bottom:953.684400px;}
.y6_c00362{bottom:1015.784400px;}
.y5_c00362{bottom:1046.834400px;}
.y4_c00362{bottom:1077.884400px;}
.y3_c00362{bottom:1139.804400px;}
.y2_c00362{bottom:1194.074400px;}
.h2_c00362{height:50.400000px;}
.h3_c00362{height:54.331699px;}
.h4_c00362{height:76.824000px;}
.h5_c00362{height:78.048000px;}
.h0_c00362{height:1262.835000px;}
.h1_c00362{height:1263.000000px;}
.w0_c00362{width:892.914000px;}
.w1_c00362{width:893.250000px;}
.x0_c00362{left:0.000000px;}
.x3_c00362{left:127.620000px;}
.x4_c00362{left:159.570000px;}
.x2_c00362{left:688.230000px;}
.x1_c00362{left:804.366150px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls6_c00362{letter-spacing:-0.064000pt;}
.ls4_c00362{letter-spacing:0.000000pt;}
.ls0_c00362{letter-spacing:0.064000pt;}
.ls5_c00362{letter-spacing:0.128000pt;}
.ls3_c00362{letter-spacing:22.540800pt;}
.ls1_c00362{letter-spacing:27.328000pt;}
.ls2_c00362{letter-spacing:29.440000pt;}
.ws1_c00362{word-spacing:-16.064000pt;}
.ws4_c00362{word-spacing:-16.000000pt;}
.wsa_c00362{word-spacing:-0.117120pt;}
.wsd_c00362{word-spacing:-0.064000pt;}
.ws9_c00362{word-spacing:0.000000pt;}
.ws13_c00362{word-spacing:0.064000pt;}
.ws0_c00362{word-spacing:0.384000pt;}
.ws10_c00362{word-spacing:0.576000pt;}
.ws15_c00362{word-spacing:0.896000pt;}
.ws21_c00362{word-spacing:1.856000pt;}
.ws7_c00362{word-spacing:2.176000pt;}
.ws1d_c00362{word-spacing:2.496000pt;}
.ws6_c00362{word-spacing:2.560000pt;}
.wsc_c00362{word-spacing:3.776000pt;}
.ws3_c00362{word-spacing:3.904000pt;}
.ws1b_c00362{word-spacing:4.096000pt;}
.ws1a_c00362{word-spacing:4.160000pt;}
.ws1e_c00362{word-spacing:4.736000pt;}
.ws23_c00362{word-spacing:6.016000pt;}
.ws8_c00362{word-spacing:6.080000pt;}
.ws17_c00362{word-spacing:6.336000pt;}
.ws16_c00362{word-spacing:6.400000pt;}
.ws22_c00362{word-spacing:7.040000pt;}
.ws24_c00362{word-spacing:7.296000pt;}
.ws14_c00362{word-spacing:8.320000pt;}
.ws12_c00362{word-spacing:8.896000pt;}
.ws1f_c00362{word-spacing:9.856000pt;}
.ws20_c00362{word-spacing:9.920000pt;}
.wsb_c00362{word-spacing:10.816000pt;}
.wse_c00362{word-spacing:11.136000pt;}
.wsf_c00362{word-spacing:11.200000pt;}
.ws1c_c00362{word-spacing:11.520000pt;}
.ws5_c00362{word-spacing:11.584000pt;}
.ws11_c00362{word-spacing:13.632000pt;}
.ws2_c00362{word-spacing:13.760000pt;}
.ws19_c00362{word-spacing:21.056000pt;}
.ws18_c00362{word-spacing:21.120000pt;}
._1_c00362{margin-left:-1.024000pt;}
._4_c00362{width:0.947200pt;}
._5_c00362{width:6.464000pt;}
._3_c00362{width:9.344000pt;}
._2_c00362{width:24.064000pt;}
._0_c00362{width:48.000000pt;}
.fs1_c00362{font-size:58.560000pt;}
.fs0_c00362{font-size:64.000000pt;}
.y0_c00362{bottom:0.000000pt;}
.y1_c00362{bottom:54.887600pt;}
.y1f_c00362{bottom:130.199467pt;}
.y1e_c00362{bottom:157.799467pt;}
.y1d_c00362{bottom:185.399467pt;}
.y1c_c00362{bottom:212.999467pt;}
.y1b_c00362{bottom:240.599467pt;}
.y1a_c00362{bottom:268.199467pt;}
.y19_c00362{bottom:295.799467pt;}
.y18_c00362{bottom:323.399467pt;}
.y17_c00362{bottom:378.599467pt;}
.y16_c00362{bottom:406.199467pt;}
.y15_c00362{bottom:433.799467pt;}
.y14_c00362{bottom:461.399467pt;}
.y13_c00362{bottom:488.999467pt;}
.y12_c00362{bottom:516.599467pt;}
.y11_c00362{bottom:544.199467pt;}
.y10_c00362{bottom:571.799467pt;}
.yf_c00362{bottom:626.999467pt;}
.ye_c00362{bottom:654.599467pt;}
.yd_c00362{bottom:682.199467pt;}
.yc_c00362{bottom:709.719467pt;}
.yb_c00362{bottom:737.319467pt;}
.ya_c00362{bottom:764.919467pt;}
.y9_c00362{bottom:792.519467pt;}
.y8_c00362{bottom:820.119467pt;}
.y7_c00362{bottom:847.719467pt;}
.y6_c00362{bottom:902.919467pt;}
.y5_c00362{bottom:930.519467pt;}
.y4_c00362{bottom:958.119467pt;}
.y3_c00362{bottom:1013.159467pt;}
.y2_c00362{bottom:1061.399467pt;}
.h2_c00362{height:44.800000pt;}
.h3_c00362{height:48.294844pt;}
.h4_c00362{height:68.288000pt;}
.h5_c00362{height:69.376000pt;}
.h0_c00362{height:1122.520000pt;}
.h1_c00362{height:1122.666667pt;}
.w0_c00362{width:793.701333pt;}
.w1_c00362{width:794.000000pt;}
.x0_c00362{left:0.000000pt;}
.x3_c00362{left:113.440000pt;}
.x4_c00362{left:141.840000pt;}
.x2_c00362{left:611.760000pt;}
.x1_c00362{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00363;src:url('chunks/assets/font_ed2391c34fc6da4dbe7d1ff0.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00363;src:url('chunks/assets/font_d1c9b8b3f8c821a422fb9cd9.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00363;src:url('chunks/assets/font_9c842731f81a3227649d6cdb.woff2')format("woff");}.ff4_c00363{font-family:ff4_c00363;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00363{letter-spacing:-0.360000px;}
.ls5_c00363{letter-spacing:-0.288000px;}
.ls4_c00363{letter-spacing:0.000000px;}
.ls0_c00363{letter-spacing:0.072000px;}
.ls1_c00363{letter-spacing:0.144000px;}
.ls3_c00363{letter-spacing:17.733600px;}
.ls2_c00363{letter-spacing:24.120000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00363{word-spacing:-18.072000px;}
.ws7_c00363{word-spacing:-17.712000px;}
.ws21_c00363{word-spacing:-0.144000px;}
.wsc_c00363{word-spacing:-0.072000px;}
.ws9_c00363{word-spacing:0.000000px;}
.ws1e_c00363{word-spacing:0.288000px;}
.ws10_c00363{word-spacing:0.360000px;}
.ws16_c00363{word-spacing:1.728000px;}
.ws15_c00363{word-spacing:1.800000px;}
.ws5_c00363{word-spacing:2.376000px;}
.ws6_c00363{word-spacing:2.448000px;}
.ws8_c00363{word-spacing:2.520000px;}
.ws12_c00363{word-spacing:2.808000px;}
.ws11_c00363{word-spacing:2.880000px;}
.ws0_c00363{word-spacing:3.168000px;}
.wse_c00363{word-spacing:4.968000px;}
.ws1_c00363{word-spacing:5.112000px;}
.ws2_c00363{word-spacing:5.760000px;}
.ws13_c00363{word-spacing:5.976000px;}
.ws14_c00363{word-spacing:6.048000px;}
.wsf_c00363{word-spacing:6.120000px;}
.ws1a_c00363{word-spacing:6.696000px;}
.ws1f_c00363{word-spacing:7.560000px;}
.ws20_c00363{word-spacing:7.920000px;}
.wsb_c00363{word-spacing:9.216000px;}
.ws1d_c00363{word-spacing:9.288000px;}
.wsa_c00363{word-spacing:9.360000px;}
.ws1b_c00363{word-spacing:10.368000px;}
.wsd_c00363{word-spacing:13.680000px;}
.ws3_c00363{word-spacing:13.752000px;}
.ws19_c00363{word-spacing:14.688000px;}
.ws17_c00363{word-spacing:17.928000px;}
.ws18_c00363{word-spacing:18.000000px;}
.ws1c_c00363{word-spacing:19.440000px;}
._0_c00363{margin-left:-1.224000px;}
._2_c00363{width:1.008000px;}
._3_c00363{width:2.160000px;}
._1_c00363{width:5.832000px;}
._4_c00363{width:8.136000px;}
._5_c00363{width:13.176000px;}
.fc1_c00363{color:rgb(0,0,0);}
.fc0_c00363{color:rgb(35,31,32);}
.fs1_c00363{font-size:65.880000px;}
.fs0_c00363{font-size:72.000000px;}
.y0_c00363{bottom:0.000000px;}
.y1_c00363{bottom:61.748550px;}
.y1c_c00363{bottom:301.724400px;}
.y1b_c00363{bottom:332.684400px;}
.y1a_c00363{bottom:363.824400px;}
.y19_c00363{bottom:394.874400px;}
.y18_c00363{bottom:425.924400px;}
.y17_c00363{bottom:456.974400px;}
.y16_c00363{bottom:488.024400px;}
.y15_c00363{bottom:519.074400px;}
.y14_c00363{bottom:550.124400px;}
.y13_c00363{bottom:581.174400px;}
.y12_c00363{bottom:643.274400px;}
.y11_c00363{bottom:674.324400px;}
.y10_c00363{bottom:705.374400px;}
.yf_c00363{bottom:736.424400px;}
.ye_c00363{bottom:767.474400px;}
.yd_c00363{bottom:798.434400px;}
.yc_c00363{bottom:829.484400px;}
.yb_c00363{bottom:860.534400px;}
.ya_c00363{bottom:891.584400px;}
.y9_c00363{bottom:922.634400px;}
.y8_c00363{bottom:984.734400px;}
.y7_c00363{bottom:1015.784400px;}
.y6_c00363{bottom:1046.834400px;}
.y5_c00363{bottom:1077.884400px;}
.y4_c00363{bottom:1108.934400px;}
.y3_c00363{bottom:1139.984400px;}
.y2_c00363{bottom:1194.074400px;}
.h2_c00363{height:50.400000px;}
.h3_c00363{height:54.331699px;}
.h4_c00363{height:76.824000px;}
.h5_c00363{height:78.048000px;}
.h0_c00363{height:1262.835000px;}
.h1_c00363{height:1263.000000px;}
.w0_c00363{width:892.914000px;}
.w1_c00363{width:893.250000px;}
.x0_c00363{left:0.000000px;}
.x1_c00363{left:54.000000px;}
.x2_c00363{left:127.620000px;}
.x3_c00363{left:159.570000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls6_c00363{letter-spacing:-0.320000pt;}
.ls5_c00363{letter-spacing:-0.256000pt;}
.ls4_c00363{letter-spacing:0.000000pt;}
.ls0_c00363{letter-spacing:0.064000pt;}
.ls1_c00363{letter-spacing:0.128000pt;}
.ls3_c00363{letter-spacing:15.763200pt;}
.ls2_c00363{letter-spacing:21.440000pt;}
.ws4_c00363{word-spacing:-16.064000pt;}
.ws7_c00363{word-spacing:-15.744000pt;}
.ws21_c00363{word-spacing:-0.128000pt;}
.wsc_c00363{word-spacing:-0.064000pt;}
.ws9_c00363{word-spacing:0.000000pt;}
.ws1e_c00363{word-spacing:0.256000pt;}
.ws10_c00363{word-spacing:0.320000pt;}
.ws16_c00363{word-spacing:1.536000pt;}
.ws15_c00363{word-spacing:1.600000pt;}
.ws5_c00363{word-spacing:2.112000pt;}
.ws6_c00363{word-spacing:2.176000pt;}
.ws8_c00363{word-spacing:2.240000pt;}
.ws12_c00363{word-spacing:2.496000pt;}
.ws11_c00363{word-spacing:2.560000pt;}
.ws0_c00363{word-spacing:2.816000pt;}
.wse_c00363{word-spacing:4.416000pt;}
.ws1_c00363{word-spacing:4.544000pt;}
.ws2_c00363{word-spacing:5.120000pt;}
.ws13_c00363{word-spacing:5.312000pt;}
.ws14_c00363{word-spacing:5.376000pt;}
.wsf_c00363{word-spacing:5.440000pt;}
.ws1a_c00363{word-spacing:5.952000pt;}
.ws1f_c00363{word-spacing:6.720000pt;}
.ws20_c00363{word-spacing:7.040000pt;}
.wsb_c00363{word-spacing:8.192000pt;}
.ws1d_c00363{word-spacing:8.256000pt;}
.wsa_c00363{word-spacing:8.320000pt;}
.ws1b_c00363{word-spacing:9.216000pt;}
.wsd_c00363{word-spacing:12.160000pt;}
.ws3_c00363{word-spacing:12.224000pt;}
.ws19_c00363{word-spacing:13.056000pt;}
.ws17_c00363{word-spacing:15.936000pt;}
.ws18_c00363{word-spacing:16.000000pt;}
.ws1c_c00363{word-spacing:17.280000pt;}
._0_c00363{margin-left:-1.088000pt;}
._2_c00363{width:0.896000pt;}
._3_c00363{width:1.920000pt;}
._1_c00363{width:5.184000pt;}
._4_c00363{width:7.232000pt;}
._5_c00363{width:11.712000pt;}
.fs1_c00363{font-size:58.560000pt;}
.fs0_c00363{font-size:64.000000pt;}
.y0_c00363{bottom:0.000000pt;}
.y1_c00363{bottom:54.887600pt;}
.y1c_c00363{bottom:268.199467pt;}
.y1b_c00363{bottom:295.719467pt;}
.y1a_c00363{bottom:323.399467pt;}
.y19_c00363{bottom:350.999467pt;}
.y18_c00363{bottom:378.599467pt;}
.y17_c00363{bottom:406.199467pt;}
.y16_c00363{bottom:433.799467pt;}
.y15_c00363{bottom:461.399467pt;}
.y14_c00363{bottom:488.999467pt;}
.y13_c00363{bottom:516.599467pt;}
.y12_c00363{bottom:571.799467pt;}
.y11_c00363{bottom:599.399467pt;}
.y10_c00363{bottom:626.999467pt;}
.yf_c00363{bottom:654.599467pt;}
.ye_c00363{bottom:682.199467pt;}
.yd_c00363{bottom:709.719467pt;}
.yc_c00363{bottom:737.319467pt;}
.yb_c00363{bottom:764.919467pt;}
.ya_c00363{bottom:792.519467pt;}
.y9_c00363{bottom:820.119467pt;}
.y8_c00363{bottom:875.319467pt;}
.y7_c00363{bottom:902.919467pt;}
.y6_c00363{bottom:930.519467pt;}
.y5_c00363{bottom:958.119467pt;}
.y4_c00363{bottom:985.719467pt;}
.y3_c00363{bottom:1013.319467pt;}
.y2_c00363{bottom:1061.399467pt;}
.h2_c00363{height:44.800000pt;}
.h3_c00363{height:48.294844pt;}
.h4_c00363{height:68.288000pt;}
.h5_c00363{height:69.376000pt;}
.h0_c00363{height:1122.520000pt;}
.h1_c00363{height:1122.666667pt;}
.w0_c00363{width:793.701333pt;}
.w1_c00363{width:794.000000pt;}
.x0_c00363{left:0.000000pt;}
.x1_c00363{left:48.000000pt;}
.x2_c00363{left:113.440000pt;}
.x3_c00363{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00364;src:url('chunks/assets/font_8cf8205e2a7e083202f9e03e.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00364;src:url('chunks/assets/font_6df96a0ddb0eb7a9cbc100b4.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00364;src:url('chunks/assets/font_b957d1a71a99c1d59a8b5dc6.woff2')format("woff");}.ff4_c00364{font-family:ff4_c00364;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00364;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00364{font-family:ff5_c00364;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00364;src:url('chunks/assets/font_d015cc62fd203f348b3b8e8b.woff2')format("woff");}.ff6_c00364{font-family:ff6_c00364;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00364;src:url('chunks/assets/font_8fd289bfa71b5ea215929d55.woff2')format("woff");}.ff7_c00364{font-family:ff7_c00364;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00364;src:url('chunks/assets/font_c2b10a96981570272942818b.woff2')format("woff");}.ff8_c00364{font-family:ff8_c00364;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00364;src:url('chunks/assets/font_d3ce327a7e6cb8d301580596.woff2')format("woff");}.ff9_c00364{font-family:ff9_c00364;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00364{letter-spacing:-0.360000px;}
.ls7_c00364{letter-spacing:-0.288000px;}
.ls6_c00364{letter-spacing:0.000000px;}
.ls0_c00364{letter-spacing:0.072000px;}
.ls1_c00364{letter-spacing:0.144000px;}
.ls3_c00364{letter-spacing:17.733600px;}
.ls4_c00364{letter-spacing:17.740800px;}
.ls2_c00364{letter-spacing:24.120000px;}
.ls5_c00364{letter-spacing:24.912000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00364{word-spacing:-18.072000px;}
.wsb_c00364{word-spacing:-18.000000px;}
.ws7_c00364{word-spacing:-17.712000px;}
.ws24_c00364{word-spacing:-0.144000px;}
.ws25_c00364{word-spacing:-0.131760px;}
.wsf_c00364{word-spacing:-0.072000px;}
.wsc_c00364{word-spacing:0.000000px;}
.ws21_c00364{word-spacing:0.288000px;}
.ws13_c00364{word-spacing:0.360000px;}
.ws37_c00364{word-spacing:1.368000px;}
.ws27_c00364{word-spacing:1.656000px;}
.ws19_c00364{word-spacing:1.728000px;}
.ws18_c00364{word-spacing:1.800000px;}
.ws28_c00364{word-spacing:2.016000px;}
.ws29_c00364{word-spacing:2.160000px;}
.ws5_c00364{word-spacing:2.376000px;}
.ws6_c00364{word-spacing:2.448000px;}
.ws8_c00364{word-spacing:2.520000px;}
.ws15_c00364{word-spacing:2.808000px;}
.ws14_c00364{word-spacing:2.880000px;}
.ws0_c00364{word-spacing:3.168000px;}
.ws30_c00364{word-spacing:3.600000px;}
.ws32_c00364{word-spacing:3.888000px;}
.ws33_c00364{word-spacing:3.960000px;}
.ws11_c00364{word-spacing:4.968000px;}
.ws1_c00364{word-spacing:5.112000px;}
.ws2_c00364{word-spacing:5.760000px;}
.ws16_c00364{word-spacing:5.976000px;}
.ws17_c00364{word-spacing:6.048000px;}
.ws12_c00364{word-spacing:6.120000px;}
.ws1d_c00364{word-spacing:6.696000px;}
.ws3c_c00364{word-spacing:6.768000px;}
.ws31_c00364{word-spacing:6.840000px;}
.wsa_c00364{word-spacing:6.912000px;}
.ws22_c00364{word-spacing:7.560000px;}
.ws3a_c00364{word-spacing:7.848000px;}
.ws23_c00364{word-spacing:7.920000px;}
.wse_c00364{word-spacing:9.216000px;}
.ws20_c00364{word-spacing:9.288000px;}
.wsd_c00364{word-spacing:9.360000px;}
.ws1e_c00364{word-spacing:10.368000px;}
.ws39_c00364{word-spacing:11.808000px;}
.ws26_c00364{word-spacing:13.248000px;}
.ws38_c00364{word-spacing:13.320000px;}
.ws36_c00364{word-spacing:13.608000px;}
.ws10_c00364{word-spacing:13.680000px;}
.ws3_c00364{word-spacing:13.752000px;}
.ws1c_c00364{word-spacing:14.688000px;}
.ws3b_c00364{word-spacing:16.488000px;}
.ws1a_c00364{word-spacing:17.928000px;}
.ws1b_c00364{word-spacing:18.000000px;}
.ws2a_c00364{word-spacing:19.080000px;}
.ws1f_c00364{word-spacing:19.440000px;}
.ws2d_c00364{word-spacing:21.888000px;}
.ws2c_c00364{word-spacing:21.960000px;}
.ws2f_c00364{word-spacing:22.320000px;}
.ws2e_c00364{word-spacing:22.608000px;}
.ws2b_c00364{word-spacing:22.968000px;}
.ws34_c00364{word-spacing:27.648000px;}
.ws35_c00364{word-spacing:27.720000px;}
.ws9_c00364{word-spacing:36.000000px;}
._0_c00364{margin-left:-1.224000px;}
._2_c00364{width:1.008000px;}
._3_c00364{width:2.160000px;}
._1_c00364{width:5.832000px;}
._4_c00364{width:8.136000px;}
._5_c00364{width:13.176000px;}
.fc2_c00364{color:transparent;}
.fc1_c00364{color:rgb(0,0,0);}
.fc0_c00364{color:rgb(35,31,32);}
.fs1_c00364{font-size:65.880000px;}
.fs0_c00364{font-size:72.000000px;}
.y0_c00364{bottom:0.000000px;}
.y1_c00364{bottom:61.748550px;}
.y26_c00364{bottom:115.424400px;}
.y25_c00364{bottom:146.474400px;}
.y24_c00364{bottom:177.524400px;}
.y23_c00364{bottom:208.574400px;}
.y22_c00364{bottom:239.624400px;}
.y21_c00364{bottom:270.674400px;}
.y1c_c00364{bottom:301.724400px;}
.y1b_c00364{bottom:332.684400px;}
.y20_c00364{bottom:332.774400px;}
.y1a_c00364{bottom:363.824400px;}
.y19_c00364{bottom:394.874400px;}
.y18_c00364{bottom:425.924400px;}
.y17_c00364{bottom:456.974400px;}
.y16_c00364{bottom:488.024400px;}
.y15_c00364{bottom:519.074400px;}
.y14_c00364{bottom:550.124400px;}
.y13_c00364{bottom:581.174400px;}
.y1f_c00364{bottom:612.224400px;}
.y12_c00364{bottom:643.274400px;}
.y11_c00364{bottom:674.324400px;}
.y10_c00364{bottom:705.374400px;}
.yf_c00364{bottom:736.424400px;}
.ye_c00364{bottom:767.474400px;}
.yd_c00364{bottom:798.434400px;}
.yc_c00364{bottom:829.484400px;}
.yb_c00364{bottom:860.534400px;}
.ya_c00364{bottom:891.584400px;}
.y9_c00364{bottom:922.634400px;}
.y1e_c00364{bottom:953.684400px;}
.y8_c00364{bottom:984.734400px;}
.y7_c00364{bottom:1015.784400px;}
.y6_c00364{bottom:1046.834400px;}
.y5_c00364{bottom:1077.884400px;}
.y4_c00364{bottom:1108.934400px;}
.y1d_c00364{bottom:1139.804400px;}
.y3_c00364{bottom:1139.984400px;}
.y2_c00364{bottom:1194.074400px;}
.h2_c00364{height:50.400000px;}
.h3_c00364{height:54.331699px;}
.h4_c00364{height:76.824000px;}
.h5_c00364{height:78.048000px;}
.h0_c00364{height:1262.835000px;}
.h1_c00364{height:1263.000000px;}
.w2_c00364{width:0.000000px;}
.w3_c00364{width:0.066000px;}
.w0_c00364{width:892.914000px;}
.w1_c00364{width:893.250000px;}
.x1_c00364{left:-838.913400px;}
.x2_c00364{left:-765.293400px;}
.x3_c00364{left:-733.343400px;}
.x0_c00364{left:0.000000px;}
.x6_c00364{left:127.620000px;}
.x7_c00364{left:159.570000px;}
.x5_c00364{left:688.230000px;}
.x4_c00364{left:804.366150px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls8_c00364{letter-spacing:-0.320000pt;}
.ls7_c00364{letter-spacing:-0.256000pt;}
.ls6_c00364{letter-spacing:0.000000pt;}
.ls0_c00364{letter-spacing:0.064000pt;}
.ls1_c00364{letter-spacing:0.128000pt;}
.ls3_c00364{letter-spacing:15.763200pt;}
.ls4_c00364{letter-spacing:15.769600pt;}
.ls2_c00364{letter-spacing:21.440000pt;}
.ls5_c00364{letter-spacing:22.144000pt;}
.ws4_c00364{word-spacing:-16.064000pt;}
.wsb_c00364{word-spacing:-16.000000pt;}
.ws7_c00364{word-spacing:-15.744000pt;}
.ws24_c00364{word-spacing:-0.128000pt;}
.ws25_c00364{word-spacing:-0.117120pt;}
.wsf_c00364{word-spacing:-0.064000pt;}
.wsc_c00364{word-spacing:0.000000pt;}
.ws21_c00364{word-spacing:0.256000pt;}
.ws13_c00364{word-spacing:0.320000pt;}
.ws37_c00364{word-spacing:1.216000pt;}
.ws27_c00364{word-spacing:1.472000pt;}
.ws19_c00364{word-spacing:1.536000pt;}
.ws18_c00364{word-spacing:1.600000pt;}
.ws28_c00364{word-spacing:1.792000pt;}
.ws29_c00364{word-spacing:1.920000pt;}
.ws5_c00364{word-spacing:2.112000pt;}
.ws6_c00364{word-spacing:2.176000pt;}
.ws8_c00364{word-spacing:2.240000pt;}
.ws15_c00364{word-spacing:2.496000pt;}
.ws14_c00364{word-spacing:2.560000pt;}
.ws0_c00364{word-spacing:2.816000pt;}
.ws30_c00364{word-spacing:3.200000pt;}
.ws32_c00364{word-spacing:3.456000pt;}
.ws33_c00364{word-spacing:3.520000pt;}
.ws11_c00364{word-spacing:4.416000pt;}
.ws1_c00364{word-spacing:4.544000pt;}
.ws2_c00364{word-spacing:5.120000pt;}
.ws16_c00364{word-spacing:5.312000pt;}
.ws17_c00364{word-spacing:5.376000pt;}
.ws12_c00364{word-spacing:5.440000pt;}
.ws1d_c00364{word-spacing:5.952000pt;}
.ws3c_c00364{word-spacing:6.016000pt;}
.ws31_c00364{word-spacing:6.080000pt;}
.wsa_c00364{word-spacing:6.144000pt;}
.ws22_c00364{word-spacing:6.720000pt;}
.ws3a_c00364{word-spacing:6.976000pt;}
.ws23_c00364{word-spacing:7.040000pt;}
.wse_c00364{word-spacing:8.192000pt;}
.ws20_c00364{word-spacing:8.256000pt;}
.wsd_c00364{word-spacing:8.320000pt;}
.ws1e_c00364{word-spacing:9.216000pt;}
.ws39_c00364{word-spacing:10.496000pt;}
.ws26_c00364{word-spacing:11.776000pt;}
.ws38_c00364{word-spacing:11.840000pt;}
.ws36_c00364{word-spacing:12.096000pt;}
.ws10_c00364{word-spacing:12.160000pt;}
.ws3_c00364{word-spacing:12.224000pt;}
.ws1c_c00364{word-spacing:13.056000pt;}
.ws3b_c00364{word-spacing:14.656000pt;}
.ws1a_c00364{word-spacing:15.936000pt;}
.ws1b_c00364{word-spacing:16.000000pt;}
.ws2a_c00364{word-spacing:16.960000pt;}
.ws1f_c00364{word-spacing:17.280000pt;}
.ws2d_c00364{word-spacing:19.456000pt;}
.ws2c_c00364{word-spacing:19.520000pt;}
.ws2f_c00364{word-spacing:19.840000pt;}
.ws2e_c00364{word-spacing:20.096000pt;}
.ws2b_c00364{word-spacing:20.416000pt;}
.ws34_c00364{word-spacing:24.576000pt;}
.ws35_c00364{word-spacing:24.640000pt;}
.ws9_c00364{word-spacing:32.000000pt;}
._0_c00364{margin-left:-1.088000pt;}
._2_c00364{width:0.896000pt;}
._3_c00364{width:1.920000pt;}
._1_c00364{width:5.184000pt;}
._4_c00364{width:7.232000pt;}
._5_c00364{width:11.712000pt;}
.fs1_c00364{font-size:58.560000pt;}
.fs0_c00364{font-size:64.000000pt;}
.y0_c00364{bottom:0.000000pt;}
.y1_c00364{bottom:54.887600pt;}
.y26_c00364{bottom:102.599467pt;}
.y25_c00364{bottom:130.199467pt;}
.y24_c00364{bottom:157.799467pt;}
.y23_c00364{bottom:185.399467pt;}
.y22_c00364{bottom:212.999467pt;}
.y21_c00364{bottom:240.599467pt;}
.y1c_c00364{bottom:268.199467pt;}
.y1b_c00364{bottom:295.719467pt;}
.y20_c00364{bottom:295.799467pt;}
.y1a_c00364{bottom:323.399467pt;}
.y19_c00364{bottom:350.999467pt;}
.y18_c00364{bottom:378.599467pt;}
.y17_c00364{bottom:406.199467pt;}
.y16_c00364{bottom:433.799467pt;}
.y15_c00364{bottom:461.399467pt;}
.y14_c00364{bottom:488.999467pt;}
.y13_c00364{bottom:516.599467pt;}
.y1f_c00364{bottom:544.199467pt;}
.y12_c00364{bottom:571.799467pt;}
.y11_c00364{bottom:599.399467pt;}
.y10_c00364{bottom:626.999467pt;}
.yf_c00364{bottom:654.599467pt;}
.ye_c00364{bottom:682.199467pt;}
.yd_c00364{bottom:709.719467pt;}
.yc_c00364{bottom:737.319467pt;}
.yb_c00364{bottom:764.919467pt;}
.ya_c00364{bottom:792.519467pt;}
.y9_c00364{bottom:820.119467pt;}
.y1e_c00364{bottom:847.719467pt;}
.y8_c00364{bottom:875.319467pt;}
.y7_c00364{bottom:902.919467pt;}
.y6_c00364{bottom:930.519467pt;}
.y5_c00364{bottom:958.119467pt;}
.y4_c00364{bottom:985.719467pt;}
.y1d_c00364{bottom:1013.159467pt;}
.y3_c00364{bottom:1013.319467pt;}
.y2_c00364{bottom:1061.399467pt;}
.h2_c00364{height:44.800000pt;}
.h3_c00364{height:48.294844pt;}
.h4_c00364{height:68.288000pt;}
.h5_c00364{height:69.376000pt;}
.h0_c00364{height:1122.520000pt;}
.h1_c00364{height:1122.666667pt;}
.w2_c00364{width:0.000000pt;}
.w3_c00364{width:0.058667pt;}
.w0_c00364{width:793.701333pt;}
.w1_c00364{width:794.000000pt;}
.x1_c00364{left:-745.700800pt;}
.x2_c00364{left:-680.260800pt;}
.x3_c00364{left:-651.860800pt;}
.x0_c00364{left:0.000000pt;}
.x6_c00364{left:113.440000pt;}
.x7_c00364{left:141.840000pt;}
.x5_c00364{left:611.760000pt;}
.x4_c00364{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00365;src:url('chunks/assets/font_cd2ee2001d2818cc30e04a3e.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00365;src:url('chunks/assets/font_1111469cda4d0f8a4d180f46.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00365;src:url('chunks/assets/font_177a6090d976440dee818ee1.woff2')format("woff");}.ff4_c00365{font-family:ff4_c00365;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00365{letter-spacing:0.000000px;}
.ls0_c00365{letter-spacing:0.072000px;}
.ls1_c00365{letter-spacing:19.080000px;}
.ls2_c00365{letter-spacing:29.160000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00365{word-spacing:-18.072000px;}
.ws2_c00365{word-spacing:-18.000000px;}
.ws4_c00365{word-spacing:0.000000px;}
.wsa_c00365{word-spacing:0.648000px;}
.ws3_c00365{word-spacing:0.720000px;}
.ws0_c00365{word-spacing:1.080000px;}
.ws6_c00365{word-spacing:1.440000px;}
.wsb_c00365{word-spacing:3.888000px;}
.ws5_c00365{word-spacing:6.768000px;}
.wsc_c00365{word-spacing:10.368000px;}
.ws9_c00365{word-spacing:11.448000px;}
.ws8_c00365{word-spacing:11.520000px;}
.ws7_c00365{word-spacing:27.720000px;}
._0_c00365{margin-left:-1.080000px;}
._1_c00365{width:1.008000px;}
._2_c00365{width:40.608000px;}
.fc1_c00365{color:rgb(0,0,0);}
.fc0_c00365{color:rgb(35,31,32);}
.fs1_c00365{font-size:65.880000px;}
.fs0_c00365{font-size:72.000000px;}
.y0_c00365{bottom:0.000000px;}
.y1_c00365{bottom:61.748550px;}
.yb_c00365{bottom:891.584400px;}
.ya_c00365{bottom:922.634400px;}
.y9_c00365{bottom:953.684400px;}
.y8_c00365{bottom:984.734400px;}
.y7_c00365{bottom:1015.784400px;}
.y6_c00365{bottom:1046.834400px;}
.y5_c00365{bottom:1077.884400px;}
.y4_c00365{bottom:1108.934400px;}
.y3_c00365{bottom:1139.984400px;}
.y2_c00365{bottom:1194.074400px;}
.h2_c00365{height:50.400000px;}
.h3_c00365{height:54.331699px;}
.h4_c00365{height:76.824000px;}
.h5_c00365{height:78.048000px;}
.h0_c00365{height:1262.835000px;}
.h1_c00365{height:1263.000000px;}
.w0_c00365{width:892.914000px;}
.w1_c00365{width:893.250000px;}
.x0_c00365{left:0.000000px;}
.x1_c00365{left:54.000000px;}
.x2_c00365{left:127.620000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls3_c00365{letter-spacing:0.000000pt;}
.ls0_c00365{letter-spacing:0.064000pt;}
.ls1_c00365{letter-spacing:16.960000pt;}
.ls2_c00365{letter-spacing:25.920000pt;}
.ws1_c00365{word-spacing:-16.064000pt;}
.ws2_c00365{word-spacing:-16.000000pt;}
.ws4_c00365{word-spacing:0.000000pt;}
.wsa_c00365{word-spacing:0.576000pt;}
.ws3_c00365{word-spacing:0.640000pt;}
.ws0_c00365{word-spacing:0.960000pt;}
.ws6_c00365{word-spacing:1.280000pt;}
.wsb_c00365{word-spacing:3.456000pt;}
.ws5_c00365{word-spacing:6.016000pt;}
.wsc_c00365{word-spacing:9.216000pt;}
.ws9_c00365{word-spacing:10.176000pt;}
.ws8_c00365{word-spacing:10.240000pt;}
.ws7_c00365{word-spacing:24.640000pt;}
._0_c00365{margin-left:-0.960000pt;}
._1_c00365{width:0.896000pt;}
._2_c00365{width:36.096000pt;}
.fs1_c00365{font-size:58.560000pt;}
.fs0_c00365{font-size:64.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y1_c00365{bottom:54.887600pt;}
.yb_c00365{bottom:792.519467pt;}
.ya_c00365{bottom:820.119467pt;}
.y9_c00365{bottom:847.719467pt;}
.y8_c00365{bottom:875.319467pt;}
.y7_c00365{bottom:902.919467pt;}
.y6_c00365{bottom:930.519467pt;}
.y5_c00365{bottom:958.119467pt;}
.y4_c00365{bottom:985.719467pt;}
.y3_c00365{bottom:1013.319467pt;}
.y2_c00365{bottom:1061.399467pt;}
.h2_c00365{height:44.800000pt;}
.h3_c00365{height:48.294844pt;}
.h4_c00365{height:68.288000pt;}
.h5_c00365{height:69.376000pt;}
.h0_c00365{height:1122.520000pt;}
.h1_c00365{height:1122.666667pt;}
.w0_c00365{width:793.701333pt;}
.w1_c00365{width:794.000000pt;}
.x0_c00365{left:0.000000pt;}
.x1_c00365{left:48.000000pt;}
.x2_c00365{left:113.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00366;src:url('chunks/assets/font_80a2412724fb289a8b40a11b.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00366;src:url('chunks/assets/font_07621d4df33aa40ecd01199b.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00366;src:url('chunks/assets/font_1b990622b2a2a44d199636f9.woff2')format("woff");}.ff4_c00366{font-family:ff4_c00366;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00366;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00366{font-family:ff5_c00366;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00366;src:url('chunks/assets/font_380baeac8b3b81f46ffc346c.woff2')format("woff");}.ff6_c00366{font-family:ff6_c00366;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00366;src:url('chunks/assets/font_85f3a87a31e0722e8ef34d1b.woff2')format("woff");}.ff7_c00366{font-family:ff7_c00366;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00366;src:url('chunks/assets/font_60e961e722946b9828fb7c80.woff2')format("woff");}.ff8_c00366{font-family:ff8_c00366;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00366;src:url('chunks/assets/font_c869ae45c4955c47e2fd7bfe.woff2')format("woff");}.ff9_c00366{font-family:ff9_c00366;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00366{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls5_c00366{letter-spacing:-0.288000px;}
.ls4_c00366{letter-spacing:0.000000px;}
.ls0_c00366{letter-spacing:0.072000px;}
.ls3_c00366{letter-spacing:0.144000px;}
.ls1_c00366{letter-spacing:19.080000px;}
.ls2_c00366{letter-spacing:29.160000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00366{word-spacing:-18.144000px;}
.ws1_c00366{word-spacing:-18.072000px;}
.ws2_c00366{word-spacing:-18.000000px;}
.ws12_c00366{word-spacing:-0.131760px;}
.ws13_c00366{word-spacing:-0.072000px;}
.ws9_c00366{word-spacing:0.000000px;}
.wsf_c00366{word-spacing:0.648000px;}
.ws3_c00366{word-spacing:0.720000px;}
.ws0_c00366{word-spacing:1.080000px;}
.wsb_c00366{word-spacing:1.440000px;}
.ws1e_c00366{word-spacing:1.728000px;}
.ws2c_c00366{word-spacing:1.800000px;}
.ws14_c00366{word-spacing:2.016000px;}
.ws15_c00366{word-spacing:2.088000px;}
.ws24_c00366{word-spacing:2.376000px;}
.ws23_c00366{word-spacing:2.448000px;}
.ws22_c00366{word-spacing:2.520000px;}
.ws2b_c00366{word-spacing:3.168000px;}
.ws8_c00366{word-spacing:3.240000px;}
.ws2f_c00366{word-spacing:3.528000px;}
.ws2e_c00366{word-spacing:3.816000px;}
.ws10_c00366{word-spacing:3.888000px;}
.ws18_c00366{word-spacing:4.680000px;}
.ws19_c00366{word-spacing:5.688000px;}
.ws1a_c00366{word-spacing:6.120000px;}
.wsa_c00366{word-spacing:6.768000px;}
.ws25_c00366{word-spacing:8.136000px;}
.ws26_c00366{word-spacing:8.208000px;}
.ws16_c00366{word-spacing:10.008000px;}
.ws11_c00366{word-spacing:10.368000px;}
.wse_c00366{word-spacing:11.448000px;}
.wsd_c00366{word-spacing:11.520000px;}
.ws17_c00366{word-spacing:11.808000px;}
.ws1d_c00366{word-spacing:16.128000px;}
.ws2d_c00366{word-spacing:19.080000px;}
.ws2a_c00366{word-spacing:19.368000px;}
.ws20_c00366{word-spacing:20.808000px;}
.ws1f_c00366{word-spacing:20.880000px;}
.ws27_c00366{word-spacing:21.528000px;}
.ws5_c00366{word-spacing:21.672000px;}
.ws1c_c00366{word-spacing:21.888000px;}
.ws1b_c00366{word-spacing:21.960000px;}
.ws21_c00366{word-spacing:22.608000px;}
.ws29_c00366{word-spacing:25.776000px;}
.ws28_c00366{word-spacing:25.920000px;}
.ws7_c00366{word-spacing:26.496000px;}
.wsc_c00366{word-spacing:27.720000px;}
.ws30_c00366{word-spacing:31.248000px;}
.ws4_c00366{word-spacing:36.000000px;}
._0_c00366{margin-left:-1.080000px;}
._1_c00366{width:1.008000px;}
._3_c00366{width:16.603200px;}
._5_c00366{width:19.411200px;}
._7_c00366{width:20.664000px;}
._4_c00366{width:27.072000px;}
._6_c00366{width:37.180800px;}
._2_c00366{width:40.608000px;}
.fc2_c00366{color:transparent;}
.fc1_c00366{color:rgb(0,0,0);}
.fc0_c00366{color:rgb(35,31,32);}
.fs1_c00366{font-size:65.880000px;}
.fs0_c00366{font-size:72.000000px;}
.y0_c00366{bottom:0.000000px;}
.y1_c00366{bottom:61.748550px;}
.y22_c00366{bottom:146.474400px;}
.y21_c00366{bottom:177.524400px;}
.y20_c00366{bottom:208.574400px;}
.y1f_c00366{bottom:239.624400px;}
.y1e_c00366{bottom:270.674400px;}
.y1d_c00366{bottom:301.724400px;}
.y1c_c00366{bottom:332.774400px;}
.y1b_c00366{bottom:363.824400px;}
.y1a_c00366{bottom:394.874400px;}
.y19_c00366{bottom:425.924400px;}
.y18_c00366{bottom:488.024400px;}
.y17_c00366{bottom:519.074400px;}
.y16_c00366{bottom:550.124400px;}
.y15_c00366{bottom:581.174400px;}
.y14_c00366{bottom:612.224400px;}
.y13_c00366{bottom:674.324400px;}
.y12_c00366{bottom:705.374400px;}
.y11_c00366{bottom:736.424400px;}
.y10_c00366{bottom:767.474400px;}
.yf_c00366{bottom:798.434400px;}
.ye_c00366{bottom:829.484400px;}
.yd_c00366{bottom:860.534400px;}
.yb_c00366{bottom:891.584400px;}
.ya_c00366{bottom:922.634400px;}
.y9_c00366{bottom:953.684400px;}
.y8_c00366{bottom:984.734400px;}
.y7_c00366{bottom:1015.784400px;}
.y6_c00366{bottom:1046.834400px;}
.y5_c00366{bottom:1077.884400px;}
.y4_c00366{bottom:1108.934400px;}
.yc_c00366{bottom:1139.804400px;}
.y3_c00366{bottom:1139.984400px;}
.y2_c00366{bottom:1194.074400px;}
.h2_c00366{height:50.400000px;}
.h3_c00366{height:54.331699px;}
.h4_c00366{height:76.824000px;}
.h5_c00366{height:78.048000px;}
.h0_c00366{height:1262.835000px;}
.h1_c00366{height:1263.000000px;}
.w2_c00366{width:0.000000px;}
.w3_c00366{width:0.066000px;}
.w0_c00366{width:892.914000px;}
.w1_c00366{width:893.250000px;}
.x1_c00366{left:-838.913400px;}
.x2_c00366{left:-765.293400px;}
.x0_c00366{left:0.000000px;}
.x5_c00366{left:127.620000px;}
.x6_c00366{left:159.480000px;}
.x4_c00366{left:688.230000px;}
.x3_c00366{left:804.366150px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls5_c00366{letter-spacing:-0.256000pt;}
.ls4_c00366{letter-spacing:0.000000pt;}
.ls0_c00366{letter-spacing:0.064000pt;}
.ls3_c00366{letter-spacing:0.128000pt;}
.ls1_c00366{letter-spacing:16.960000pt;}
.ls2_c00366{letter-spacing:25.920000pt;}
.ws6_c00366{word-spacing:-16.128000pt;}
.ws1_c00366{word-spacing:-16.064000pt;}
.ws2_c00366{word-spacing:-16.000000pt;}
.ws12_c00366{word-spacing:-0.117120pt;}
.ws13_c00366{word-spacing:-0.064000pt;}
.ws9_c00366{word-spacing:0.000000pt;}
.wsf_c00366{word-spacing:0.576000pt;}
.ws3_c00366{word-spacing:0.640000pt;}
.ws0_c00366{word-spacing:0.960000pt;}
.wsb_c00366{word-spacing:1.280000pt;}
.ws1e_c00366{word-spacing:1.536000pt;}
.ws2c_c00366{word-spacing:1.600000pt;}
.ws14_c00366{word-spacing:1.792000pt;}
.ws15_c00366{word-spacing:1.856000pt;}
.ws24_c00366{word-spacing:2.112000pt;}
.ws23_c00366{word-spacing:2.176000pt;}
.ws22_c00366{word-spacing:2.240000pt;}
.ws2b_c00366{word-spacing:2.816000pt;}
.ws8_c00366{word-spacing:2.880000pt;}
.ws2f_c00366{word-spacing:3.136000pt;}
.ws2e_c00366{word-spacing:3.392000pt;}
.ws10_c00366{word-spacing:3.456000pt;}
.ws18_c00366{word-spacing:4.160000pt;}
.ws19_c00366{word-spacing:5.056000pt;}
.ws1a_c00366{word-spacing:5.440000pt;}
.wsa_c00366{word-spacing:6.016000pt;}
.ws25_c00366{word-spacing:7.232000pt;}
.ws26_c00366{word-spacing:7.296000pt;}
.ws16_c00366{word-spacing:8.896000pt;}
.ws11_c00366{word-spacing:9.216000pt;}
.wse_c00366{word-spacing:10.176000pt;}
.wsd_c00366{word-spacing:10.240000pt;}
.ws17_c00366{word-spacing:10.496000pt;}
.ws1d_c00366{word-spacing:14.336000pt;}
.ws2d_c00366{word-spacing:16.960000pt;}
.ws2a_c00366{word-spacing:17.216000pt;}
.ws20_c00366{word-spacing:18.496000pt;}
.ws1f_c00366{word-spacing:18.560000pt;}
.ws27_c00366{word-spacing:19.136000pt;}
.ws5_c00366{word-spacing:19.264000pt;}
.ws1c_c00366{word-spacing:19.456000pt;}
.ws1b_c00366{word-spacing:19.520000pt;}
.ws21_c00366{word-spacing:20.096000pt;}
.ws29_c00366{word-spacing:22.912000pt;}
.ws28_c00366{word-spacing:23.040000pt;}
.ws7_c00366{word-spacing:23.552000pt;}
.wsc_c00366{word-spacing:24.640000pt;}
.ws30_c00366{word-spacing:27.776000pt;}
.ws4_c00366{word-spacing:32.000000pt;}
._0_c00366{margin-left:-0.960000pt;}
._1_c00366{width:0.896000pt;}
._3_c00366{width:14.758400pt;}
._5_c00366{width:17.254400pt;}
._7_c00366{width:18.368000pt;}
._4_c00366{width:24.064000pt;}
._6_c00366{width:33.049600pt;}
._2_c00366{width:36.096000pt;}
.fs1_c00366{font-size:58.560000pt;}
.fs0_c00366{font-size:64.000000pt;}
.y0_c00366{bottom:0.000000pt;}
.y1_c00366{bottom:54.887600pt;}
.y22_c00366{bottom:130.199467pt;}
.y21_c00366{bottom:157.799467pt;}
.y20_c00366{bottom:185.399467pt;}
.y1f_c00366{bottom:212.999467pt;}
.y1e_c00366{bottom:240.599467pt;}
.y1d_c00366{bottom:268.199467pt;}
.y1c_c00366{bottom:295.799467pt;}
.y1b_c00366{bottom:323.399467pt;}
.y1a_c00366{bottom:350.999467pt;}
.y19_c00366{bottom:378.599467pt;}
.y18_c00366{bottom:433.799467pt;}
.y17_c00366{bottom:461.399467pt;}
.y16_c00366{bottom:488.999467pt;}
.y15_c00366{bottom:516.599467pt;}
.y14_c00366{bottom:544.199467pt;}
.y13_c00366{bottom:599.399467pt;}
.y12_c00366{bottom:626.999467pt;}
.y11_c00366{bottom:654.599467pt;}
.y10_c00366{bottom:682.199467pt;}
.yf_c00366{bottom:709.719467pt;}
.ye_c00366{bottom:737.319467pt;}
.yd_c00366{bottom:764.919467pt;}
.yb_c00366{bottom:792.519467pt;}
.ya_c00366{bottom:820.119467pt;}
.y9_c00366{bottom:847.719467pt;}
.y8_c00366{bottom:875.319467pt;}
.y7_c00366{bottom:902.919467pt;}
.y6_c00366{bottom:930.519467pt;}
.y5_c00366{bottom:958.119467pt;}
.y4_c00366{bottom:985.719467pt;}
.yc_c00366{bottom:1013.159467pt;}
.y3_c00366{bottom:1013.319467pt;}
.y2_c00366{bottom:1061.399467pt;}
.h2_c00366{height:44.800000pt;}
.h3_c00366{height:48.294844pt;}
.h4_c00366{height:68.288000pt;}
.h5_c00366{height:69.376000pt;}
.h0_c00366{height:1122.520000pt;}
.h1_c00366{height:1122.666667pt;}
.w2_c00366{width:0.000000pt;}
.w3_c00366{width:0.058667pt;}
.w0_c00366{width:793.701333pt;}
.w1_c00366{width:794.000000pt;}
.x1_c00366{left:-745.700800pt;}
.x2_c00366{left:-680.260800pt;}
.x0_c00366{left:0.000000pt;}
.x5_c00366{left:113.440000pt;}
.x6_c00366{left:141.760000pt;}
.x4_c00366{left:611.760000pt;}
.x3_c00366{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00367;src:url('chunks/assets/font_04f6e87bd9315f0fb5c2fec1.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00367;src:url('chunks/assets/font_b1dbd60bf5ce9b9292443d13.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00367;src:url('chunks/assets/font_84deb358548d1ada7779bbc5.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00367;src:url('chunks/assets/font_39dae9a939e88632a129e0f0.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00367{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls3_c00367{letter-spacing:-0.216000px;}
.ls5_c00367{letter-spacing:-0.144000px;}
.ls4_c00367{letter-spacing:-0.065880px;}
.ls2_c00367{letter-spacing:0.000000px;}
.ls0_c00367{letter-spacing:0.072000px;}
.ls1_c00367{letter-spacing:0.144000px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00367{word-spacing:-18.144000px;}
.ws3_c00367{word-spacing:-18.072000px;}
.ws1_c00367{word-spacing:-14.823000px;}
.wsf_c00367{word-spacing:-0.072000px;}
.ws6_c00367{word-spacing:0.000000px;}
.ws10_c00367{word-spacing:0.144000px;}
.ws8_c00367{word-spacing:0.288000px;}
.ws1e_c00367{word-spacing:0.648000px;}
.ws11_c00367{word-spacing:1.368000px;}
.ws12_c00367{word-spacing:1.440000px;}
.ws1b_c00367{word-spacing:1.656000px;}
.ws1d_c00367{word-spacing:1.728000px;}
.ws1a_c00367{word-spacing:1.800000px;}
.ws2c_c00367{word-spacing:3.168000px;}
.ws2b_c00367{word-spacing:3.240000px;}
.ws20_c00367{word-spacing:3.744000px;}
.ws21_c00367{word-spacing:3.888000px;}
.ws4_c00367{word-spacing:4.039200px;}
.ws28_c00367{word-spacing:4.320000px;}
.ws18_c00367{word-spacing:4.608000px;}
.ws19_c00367{word-spacing:4.680000px;}
.ws15_c00367{word-spacing:5.400000px;}
.wsd_c00367{word-spacing:5.472000px;}
.wsc_c00367{word-spacing:5.760000px;}
.ws29_c00367{word-spacing:6.120000px;}
.ws16_c00367{word-spacing:6.768000px;}
.ws9_c00367{word-spacing:7.200000px;}
.wsa_c00367{word-spacing:7.416000px;}
.ws1c_c00367{word-spacing:8.280000px;}
.ws2a_c00367{word-spacing:10.368000px;}
.ws27_c00367{word-spacing:11.520000px;}
.wse_c00367{word-spacing:11.736000px;}
.ws14_c00367{word-spacing:11.808000px;}
.ws0_c00367{word-spacing:11.880000px;}
.ws1f_c00367{word-spacing:13.176000px;}
.ws7_c00367{word-spacing:15.048000px;}
.wsb_c00367{word-spacing:16.920000px;}
.ws24_c00367{word-spacing:17.280000px;}
.ws13_c00367{word-spacing:23.328000px;}
.ws25_c00367{word-spacing:25.200000px;}
.ws17_c00367{word-spacing:26.928000px;}
.ws26_c00367{word-spacing:27.648000px;}
.ws22_c00367{word-spacing:27.936000px;}
.ws23_c00367{word-spacing:28.080000px;}
.ws2_c00367{word-spacing:36.000000px;}
._0_c00367{margin-left:-1.029600px;}
._1_c00367{width:1.353600px;}
.fc2_c00367{color:transparent;}
.fc1_c00367{color:rgb(0,0,0);}
.fc0_c00367{color:rgb(35,31,32);}
.fs1_c00367{font-size:65.880000px;}
.fs0_c00367{font-size:72.000000px;}
.y0_c00367{bottom:0.000000px;}
.yb_c00367{bottom:1.395000px;}
.y1_c00367{bottom:61.748550px;}
.y2a_c00367{bottom:115.469250px;}
.y29_c00367{bottom:146.519250px;}
.y28_c00367{bottom:177.569250px;}
.y27_c00367{bottom:208.619250px;}
.y26_c00367{bottom:239.669250px;}
.y25_c00367{bottom:301.769250px;}
.y24_c00367{bottom:332.819250px;}
.y23_c00367{bottom:363.869250px;}
.y22_c00367{bottom:394.919250px;}
.y21_c00367{bottom:425.969250px;}
.y20_c00367{bottom:457.019250px;}
.y1f_c00367{bottom:488.069250px;}
.y1e_c00367{bottom:519.119250px;}
.y1d_c00367{bottom:581.219250px;}
.y1c_c00367{bottom:612.269250px;}
.y1b_c00367{bottom:643.319250px;}
.y1a_c00367{bottom:674.369250px;}
.y19_c00367{bottom:705.419250px;}
.y18_c00367{bottom:736.469250px;}
.y17_c00367{bottom:767.519250px;}
.y16_c00367{bottom:798.479250px;}
.y15_c00367{bottom:829.529250px;}
.y14_c00367{bottom:860.579250px;}
.ya_c00367{bottom:922.634400px;}
.y13_c00367{bottom:922.679250px;}
.y9_c00367{bottom:953.684400px;}
.y12_c00367{bottom:953.729250px;}
.y8_c00367{bottom:984.734400px;}
.y11_c00367{bottom:984.779250px;}
.y7_c00367{bottom:1015.784400px;}
.y10_c00367{bottom:1015.829250px;}
.y6_c00367{bottom:1046.834400px;}
.yf_c00367{bottom:1046.879250px;}
.y5_c00367{bottom:1077.884400px;}
.ye_c00367{bottom:1077.929250px;}
.y4_c00367{bottom:1108.934400px;}
.yd_c00367{bottom:1139.849250px;}
.y3_c00367{bottom:1139.984400px;}
.y2_c00367{bottom:1194.074400px;}
.yc_c00367{bottom:1194.119400px;}
.h2_c00367{height:50.400000px;}
.h3_c00367{height:54.331699px;}
.h4_c00367{height:76.824000px;}
.h5_c00367{height:78.048000px;}
.h6_c00367{height:1261.440000px;}
.h0_c00367{height:1262.835000px;}
.h1_c00367{height:1263.000000px;}
.w2_c00367{width:0.847500px;}
.w0_c00367{width:892.914000px;}
.w1_c00367{width:893.250000px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:54.000000px;}
.x2_c00367{left:127.620000px;}
.x3_c00367{left:159.570000px;}
.x5_c00367{left:688.230000px;}
.x4_c00367{left:892.065000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls3_c00367{letter-spacing:-0.192000pt;}
.ls5_c00367{letter-spacing:-0.128000pt;}
.ls4_c00367{letter-spacing:-0.058560pt;}
.ls2_c00367{letter-spacing:0.000000pt;}
.ls0_c00367{letter-spacing:0.064000pt;}
.ls1_c00367{letter-spacing:0.128000pt;}
.ws5_c00367{word-spacing:-16.128000pt;}
.ws3_c00367{word-spacing:-16.064000pt;}
.ws1_c00367{word-spacing:-13.176000pt;}
.wsf_c00367{word-spacing:-0.064000pt;}
.ws6_c00367{word-spacing:0.000000pt;}
.ws10_c00367{word-spacing:0.128000pt;}
.ws8_c00367{word-spacing:0.256000pt;}
.ws1e_c00367{word-spacing:0.576000pt;}
.ws11_c00367{word-spacing:1.216000pt;}
.ws12_c00367{word-spacing:1.280000pt;}
.ws1b_c00367{word-spacing:1.472000pt;}
.ws1d_c00367{word-spacing:1.536000pt;}
.ws1a_c00367{word-spacing:1.600000pt;}
.ws2c_c00367{word-spacing:2.816000pt;}
.ws2b_c00367{word-spacing:2.880000pt;}
.ws20_c00367{word-spacing:3.328000pt;}
.ws21_c00367{word-spacing:3.456000pt;}
.ws4_c00367{word-spacing:3.590400pt;}
.ws28_c00367{word-spacing:3.840000pt;}
.ws18_c00367{word-spacing:4.096000pt;}
.ws19_c00367{word-spacing:4.160000pt;}
.ws15_c00367{word-spacing:4.800000pt;}
.wsd_c00367{word-spacing:4.864000pt;}
.wsc_c00367{word-spacing:5.120000pt;}
.ws29_c00367{word-spacing:5.440000pt;}
.ws16_c00367{word-spacing:6.016000pt;}
.ws9_c00367{word-spacing:6.400000pt;}
.wsa_c00367{word-spacing:6.592000pt;}
.ws1c_c00367{word-spacing:7.360000pt;}
.ws2a_c00367{word-spacing:9.216000pt;}
.ws27_c00367{word-spacing:10.240000pt;}
.wse_c00367{word-spacing:10.432000pt;}
.ws14_c00367{word-spacing:10.496000pt;}
.ws0_c00367{word-spacing:10.560000pt;}
.ws1f_c00367{word-spacing:11.712000pt;}
.ws7_c00367{word-spacing:13.376000pt;}
.wsb_c00367{word-spacing:15.040000pt;}
.ws24_c00367{word-spacing:15.360000pt;}
.ws13_c00367{word-spacing:20.736000pt;}
.ws25_c00367{word-spacing:22.400000pt;}
.ws17_c00367{word-spacing:23.936000pt;}
.ws26_c00367{word-spacing:24.576000pt;}
.ws22_c00367{word-spacing:24.832000pt;}
.ws23_c00367{word-spacing:24.960000pt;}
.ws2_c00367{word-spacing:32.000000pt;}
._0_c00367{margin-left:-0.915200pt;}
._1_c00367{width:1.203200pt;}
.fs1_c00367{font-size:58.560000pt;}
.fs0_c00367{font-size:64.000000pt;}
.y0_c00367{bottom:0.000000pt;}
.yb_c00367{bottom:1.240000pt;}
.y1_c00367{bottom:54.887600pt;}
.y2a_c00367{bottom:102.639333pt;}
.y29_c00367{bottom:130.239333pt;}
.y28_c00367{bottom:157.839333pt;}
.y27_c00367{bottom:185.439333pt;}
.y26_c00367{bottom:213.039333pt;}
.y25_c00367{bottom:268.239333pt;}
.y24_c00367{bottom:295.839333pt;}
.y23_c00367{bottom:323.439333pt;}
.y22_c00367{bottom:351.039333pt;}
.y21_c00367{bottom:378.639333pt;}
.y20_c00367{bottom:406.239333pt;}
.y1f_c00367{bottom:433.839333pt;}
.y1e_c00367{bottom:461.439333pt;}
.y1d_c00367{bottom:516.639333pt;}
.y1c_c00367{bottom:544.239333pt;}
.y1b_c00367{bottom:571.839333pt;}
.y1a_c00367{bottom:599.439333pt;}
.y19_c00367{bottom:627.039333pt;}
.y18_c00367{bottom:654.639333pt;}
.y17_c00367{bottom:682.239333pt;}
.y16_c00367{bottom:709.759333pt;}
.y15_c00367{bottom:737.359333pt;}
.y14_c00367{bottom:764.959333pt;}
.ya_c00367{bottom:820.119467pt;}
.y13_c00367{bottom:820.159333pt;}
.y9_c00367{bottom:847.719467pt;}
.y12_c00367{bottom:847.759333pt;}
.y8_c00367{bottom:875.319467pt;}
.y11_c00367{bottom:875.359333pt;}
.y7_c00367{bottom:902.919467pt;}
.y10_c00367{bottom:902.959333pt;}
.y6_c00367{bottom:930.519467pt;}
.yf_c00367{bottom:930.559333pt;}
.y5_c00367{bottom:958.119467pt;}
.ye_c00367{bottom:958.159333pt;}
.y4_c00367{bottom:985.719467pt;}
.yd_c00367{bottom:1013.199333pt;}
.y3_c00367{bottom:1013.319467pt;}
.y2_c00367{bottom:1061.399467pt;}
.yc_c00367{bottom:1061.439467pt;}
.h2_c00367{height:44.800000pt;}
.h3_c00367{height:48.294844pt;}
.h4_c00367{height:68.288000pt;}
.h5_c00367{height:69.376000pt;}
.h6_c00367{height:1121.280000pt;}
.h0_c00367{height:1122.520000pt;}
.h1_c00367{height:1122.666667pt;}
.w2_c00367{width:0.753333pt;}
.w0_c00367{width:793.701333pt;}
.w1_c00367{width:794.000000pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:48.000000pt;}
.x2_c00367{left:113.440000pt;}
.x3_c00367{left:141.840000pt;}
.x5_c00367{left:611.760000pt;}
.x4_c00367{left:792.946667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00368;src:url('chunks/assets/font_71f2b66d637dea64d38c88de.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_33eef62198c771028d3a839d.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00368;src:url('chunks/assets/font_d316f5fd1e22e1375b984abb.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00368;src:url('chunks/assets/font_da65c92d2c162fb7099af446.woff2')format("woff");}.ff5_c00368{font-family:ff5_c00368;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00368;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00368{font-family:ff6_c00368;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00368;src:url('chunks/assets/font_eeabad8bc403470e9b8f04ee.woff2')format("woff");}.ff7_c00368{font-family:ff7_c00368;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00368;src:url('chunks/assets/font_f7caecd154028491a3dab707.woff2')format("woff");}.ff8_c00368{font-family:ff8_c00368;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00368;src:url('chunks/assets/font_8af5328ca9d26b9feaf5d8be.woff2')format("woff");}.ff9_c00368{font-family:ff9_c00368;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00368;src:url('chunks/assets/font_da65c92d2c162fb7099af446.woff2')format("woff");}.ffa_c00368{font-family:ffa_c00368;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls3_c00368{letter-spacing:-0.216000px;}
.ls5_c00368{letter-spacing:-0.144000px;}
.ls4_c00368{letter-spacing:-0.065880px;}
.ls2_c00368{letter-spacing:0.000000px;}
.ls0_c00368{letter-spacing:0.072000px;}
.ls1_c00368{letter-spacing:0.144000px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00368{word-spacing:-18.144000px;}
.ws3_c00368{word-spacing:-18.072000px;}
.ws1_c00368{word-spacing:-14.823000px;}
.wsf_c00368{word-spacing:-0.072000px;}
.ws6_c00368{word-spacing:0.000000px;}
.ws10_c00368{word-spacing:0.144000px;}
.ws8_c00368{word-spacing:0.288000px;}
.ws1e_c00368{word-spacing:0.648000px;}
.ws11_c00368{word-spacing:1.368000px;}
.ws12_c00368{word-spacing:1.440000px;}
.ws1b_c00368{word-spacing:1.656000px;}
.ws1d_c00368{word-spacing:1.728000px;}
.ws1a_c00368{word-spacing:1.800000px;}
.ws2c_c00368{word-spacing:3.168000px;}
.ws2b_c00368{word-spacing:3.240000px;}
.ws20_c00368{word-spacing:3.744000px;}
.ws21_c00368{word-spacing:3.888000px;}
.ws4_c00368{word-spacing:4.039200px;}
.ws28_c00368{word-spacing:4.320000px;}
.ws18_c00368{word-spacing:4.608000px;}
.ws19_c00368{word-spacing:4.680000px;}
.ws15_c00368{word-spacing:5.400000px;}
.wsd_c00368{word-spacing:5.472000px;}
.wsc_c00368{word-spacing:5.760000px;}
.ws29_c00368{word-spacing:6.120000px;}
.ws16_c00368{word-spacing:6.768000px;}
.ws9_c00368{word-spacing:7.200000px;}
.wsa_c00368{word-spacing:7.416000px;}
.ws1c_c00368{word-spacing:8.280000px;}
.ws2a_c00368{word-spacing:10.368000px;}
.ws27_c00368{word-spacing:11.520000px;}
.wse_c00368{word-spacing:11.736000px;}
.ws14_c00368{word-spacing:11.808000px;}
.ws0_c00368{word-spacing:11.880000px;}
.ws1f_c00368{word-spacing:13.176000px;}
.ws7_c00368{word-spacing:15.048000px;}
.wsb_c00368{word-spacing:16.920000px;}
.ws24_c00368{word-spacing:17.280000px;}
.ws13_c00368{word-spacing:23.328000px;}
.ws25_c00368{word-spacing:25.200000px;}
.ws17_c00368{word-spacing:26.928000px;}
.ws26_c00368{word-spacing:27.648000px;}
.ws22_c00368{word-spacing:27.936000px;}
.ws23_c00368{word-spacing:28.080000px;}
.ws2_c00368{word-spacing:36.000000px;}
._0_c00368{margin-left:-1.029600px;}
._1_c00368{width:1.353600px;}
.fc2_c00368{color:transparent;}
.fc1_c00368{color:rgb(0,0,0);}
.fc0_c00368{color:rgb(35,31,32);}
.fs1_c00368{font-size:65.880000px;}
.fs0_c00368{font-size:72.000000px;}
.y0_c00368{bottom:0.000000px;}
.yb_c00368{bottom:1.395000px;}
.y1_c00368{bottom:61.748550px;}
.y2a_c00368{bottom:115.469250px;}
.y49_c00368{bottom:116.864250px;}
.y29_c00368{bottom:146.519250px;}
.y48_c00368{bottom:147.914250px;}
.y28_c00368{bottom:177.569250px;}
.y47_c00368{bottom:178.964250px;}
.y27_c00368{bottom:208.619250px;}
.y46_c00368{bottom:210.014250px;}
.y26_c00368{bottom:239.669250px;}
.y45_c00368{bottom:241.064250px;}
.y25_c00368{bottom:301.769250px;}
.y44_c00368{bottom:303.164250px;}
.y24_c00368{bottom:332.819250px;}
.y43_c00368{bottom:334.214250px;}
.y23_c00368{bottom:363.869250px;}
.y42_c00368{bottom:365.264250px;}
.y22_c00368{bottom:394.919250px;}
.y41_c00368{bottom:396.314250px;}
.y21_c00368{bottom:425.969250px;}
.y40_c00368{bottom:427.364250px;}
.y20_c00368{bottom:457.019250px;}
.y3f_c00368{bottom:458.414250px;}
.y1f_c00368{bottom:488.069250px;}
.y3e_c00368{bottom:489.464250px;}
.y1e_c00368{bottom:519.119250px;}
.y3d_c00368{bottom:520.514250px;}
.y1d_c00368{bottom:581.219250px;}
.y3c_c00368{bottom:582.614250px;}
.y1c_c00368{bottom:612.269250px;}
.y3b_c00368{bottom:613.664250px;}
.y1b_c00368{bottom:643.319250px;}
.y3a_c00368{bottom:644.714250px;}
.y1a_c00368{bottom:674.369250px;}
.y39_c00368{bottom:675.764250px;}
.y19_c00368{bottom:705.419250px;}
.y38_c00368{bottom:706.814250px;}
.y18_c00368{bottom:736.469250px;}
.y37_c00368{bottom:737.864250px;}
.y17_c00368{bottom:767.519250px;}
.y36_c00368{bottom:768.914250px;}
.y16_c00368{bottom:798.479250px;}
.y35_c00368{bottom:799.874250px;}
.y15_c00368{bottom:829.529250px;}
.y34_c00368{bottom:830.924250px;}
.y14_c00368{bottom:860.579250px;}
.y33_c00368{bottom:861.974250px;}
.ya_c00368{bottom:922.634400px;}
.y13_c00368{bottom:922.679250px;}
.y32_c00368{bottom:924.074250px;}
.y9_c00368{bottom:953.684400px;}
.y12_c00368{bottom:953.729250px;}
.y31_c00368{bottom:955.124250px;}
.y8_c00368{bottom:984.734400px;}
.y11_c00368{bottom:984.779250px;}
.y30_c00368{bottom:986.174250px;}
.y7_c00368{bottom:1015.784400px;}
.y10_c00368{bottom:1015.829250px;}
.y2f_c00368{bottom:1017.224250px;}
.y6_c00368{bottom:1046.834400px;}
.yf_c00368{bottom:1046.879250px;}
.y2e_c00368{bottom:1048.274250px;}
.y5_c00368{bottom:1077.884400px;}
.ye_c00368{bottom:1077.929250px;}
.y2d_c00368{bottom:1079.324250px;}
.y4_c00368{bottom:1108.934400px;}
.yd_c00368{bottom:1139.849250px;}
.y3_c00368{bottom:1139.984400px;}
.y2c_c00368{bottom:1141.244250px;}
.y2_c00368{bottom:1194.074400px;}
.yc_c00368{bottom:1194.119400px;}
.y2b_c00368{bottom:1195.514400px;}
.h2_c00368{height:50.400000px;}
.h3_c00368{height:54.331699px;}
.h4_c00368{height:76.824000px;}
.h5_c00368{height:78.048000px;}
.h6_c00368{height:1261.440000px;}
.h0_c00368{height:1262.835000px;}
.h1_c00368{height:1263.000000px;}
.w3_c00368{width:-0.001500px;}
.w2_c00368{width:0.000000px;}
.w4_c00368{width:0.066000px;}
.w0_c00368{width:892.914000px;}
.w1_c00368{width:893.250000px;}
.x1_c00368{left:-838.913400px;}
.x2_c00368{left:-765.293400px;}
.x3_c00368{left:-733.343400px;}
.x0_c00368{left:0.000000px;}
.x5_c00368{left:126.771750px;}
.x6_c00368{left:158.721750px;}
.x4_c00368{left:687.381600px;}
.x7_c00368{left:804.366150px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls3_c00368{letter-spacing:-0.192000pt;}
.ls5_c00368{letter-spacing:-0.128000pt;}
.ls4_c00368{letter-spacing:-0.058560pt;}
.ls2_c00368{letter-spacing:0.000000pt;}
.ls0_c00368{letter-spacing:0.064000pt;}
.ls1_c00368{letter-spacing:0.128000pt;}
.ws5_c00368{word-spacing:-16.128000pt;}
.ws3_c00368{word-spacing:-16.064000pt;}
.ws1_c00368{word-spacing:-13.176000pt;}
.wsf_c00368{word-spacing:-0.064000pt;}
.ws6_c00368{word-spacing:0.000000pt;}
.ws10_c00368{word-spacing:0.128000pt;}
.ws8_c00368{word-spacing:0.256000pt;}
.ws1e_c00368{word-spacing:0.576000pt;}
.ws11_c00368{word-spacing:1.216000pt;}
.ws12_c00368{word-spacing:1.280000pt;}
.ws1b_c00368{word-spacing:1.472000pt;}
.ws1d_c00368{word-spacing:1.536000pt;}
.ws1a_c00368{word-spacing:1.600000pt;}
.ws2c_c00368{word-spacing:2.816000pt;}
.ws2b_c00368{word-spacing:2.880000pt;}
.ws20_c00368{word-spacing:3.328000pt;}
.ws21_c00368{word-spacing:3.456000pt;}
.ws4_c00368{word-spacing:3.590400pt;}
.ws28_c00368{word-spacing:3.840000pt;}
.ws18_c00368{word-spacing:4.096000pt;}
.ws19_c00368{word-spacing:4.160000pt;}
.ws15_c00368{word-spacing:4.800000pt;}
.wsd_c00368{word-spacing:4.864000pt;}
.wsc_c00368{word-spacing:5.120000pt;}
.ws29_c00368{word-spacing:5.440000pt;}
.ws16_c00368{word-spacing:6.016000pt;}
.ws9_c00368{word-spacing:6.400000pt;}
.wsa_c00368{word-spacing:6.592000pt;}
.ws1c_c00368{word-spacing:7.360000pt;}
.ws2a_c00368{word-spacing:9.216000pt;}
.ws27_c00368{word-spacing:10.240000pt;}
.wse_c00368{word-spacing:10.432000pt;}
.ws14_c00368{word-spacing:10.496000pt;}
.ws0_c00368{word-spacing:10.560000pt;}
.ws1f_c00368{word-spacing:11.712000pt;}
.ws7_c00368{word-spacing:13.376000pt;}
.wsb_c00368{word-spacing:15.040000pt;}
.ws24_c00368{word-spacing:15.360000pt;}
.ws13_c00368{word-spacing:20.736000pt;}
.ws25_c00368{word-spacing:22.400000pt;}
.ws17_c00368{word-spacing:23.936000pt;}
.ws26_c00368{word-spacing:24.576000pt;}
.ws22_c00368{word-spacing:24.832000pt;}
.ws23_c00368{word-spacing:24.960000pt;}
.ws2_c00368{word-spacing:32.000000pt;}
._0_c00368{margin-left:-0.915200pt;}
._1_c00368{width:1.203200pt;}
.fs1_c00368{font-size:58.560000pt;}
.fs0_c00368{font-size:64.000000pt;}
.y0_c00368{bottom:0.000000pt;}
.yb_c00368{bottom:1.240000pt;}
.y1_c00368{bottom:54.887600pt;}
.y2a_c00368{bottom:102.639333pt;}
.y49_c00368{bottom:103.879333pt;}
.y29_c00368{bottom:130.239333pt;}
.y48_c00368{bottom:131.479333pt;}
.y28_c00368{bottom:157.839333pt;}
.y47_c00368{bottom:159.079333pt;}
.y27_c00368{bottom:185.439333pt;}
.y46_c00368{bottom:186.679333pt;}
.y26_c00368{bottom:213.039333pt;}
.y45_c00368{bottom:214.279333pt;}
.y25_c00368{bottom:268.239333pt;}
.y44_c00368{bottom:269.479333pt;}
.y24_c00368{bottom:295.839333pt;}
.y43_c00368{bottom:297.079333pt;}
.y23_c00368{bottom:323.439333pt;}
.y42_c00368{bottom:324.679333pt;}
.y22_c00368{bottom:351.039333pt;}
.y41_c00368{bottom:352.279333pt;}
.y21_c00368{bottom:378.639333pt;}
.y40_c00368{bottom:379.879333pt;}
.y20_c00368{bottom:406.239333pt;}
.y3f_c00368{bottom:407.479333pt;}
.y1f_c00368{bottom:433.839333pt;}
.y3e_c00368{bottom:435.079333pt;}
.y1e_c00368{bottom:461.439333pt;}
.y3d_c00368{bottom:462.679333pt;}
.y1d_c00368{bottom:516.639333pt;}
.y3c_c00368{bottom:517.879333pt;}
.y1c_c00368{bottom:544.239333pt;}
.y3b_c00368{bottom:545.479333pt;}
.y1b_c00368{bottom:571.839333pt;}
.y3a_c00368{bottom:573.079333pt;}
.y1a_c00368{bottom:599.439333pt;}
.y39_c00368{bottom:600.679333pt;}
.y19_c00368{bottom:627.039333pt;}
.y38_c00368{bottom:628.279333pt;}
.y18_c00368{bottom:654.639333pt;}
.y37_c00368{bottom:655.879333pt;}
.y17_c00368{bottom:682.239333pt;}
.y36_c00368{bottom:683.479333pt;}
.y16_c00368{bottom:709.759333pt;}
.y35_c00368{bottom:710.999333pt;}
.y15_c00368{bottom:737.359333pt;}
.y34_c00368{bottom:738.599333pt;}
.y14_c00368{bottom:764.959333pt;}
.y33_c00368{bottom:766.199333pt;}
.ya_c00368{bottom:820.119467pt;}
.y13_c00368{bottom:820.159333pt;}
.y32_c00368{bottom:821.399333pt;}
.y9_c00368{bottom:847.719467pt;}
.y12_c00368{bottom:847.759333pt;}
.y31_c00368{bottom:848.999333pt;}
.y8_c00368{bottom:875.319467pt;}
.y11_c00368{bottom:875.359333pt;}
.y30_c00368{bottom:876.599333pt;}
.y7_c00368{bottom:902.919467pt;}
.y10_c00368{bottom:902.959333pt;}
.y2f_c00368{bottom:904.199333pt;}
.y6_c00368{bottom:930.519467pt;}
.yf_c00368{bottom:930.559333pt;}
.y2e_c00368{bottom:931.799333pt;}
.y5_c00368{bottom:958.119467pt;}
.ye_c00368{bottom:958.159333pt;}
.y2d_c00368{bottom:959.399333pt;}
.y4_c00368{bottom:985.719467pt;}
.yd_c00368{bottom:1013.199333pt;}
.y3_c00368{bottom:1013.319467pt;}
.y2c_c00368{bottom:1014.439333pt;}
.y2_c00368{bottom:1061.399467pt;}
.yc_c00368{bottom:1061.439467pt;}
.y2b_c00368{bottom:1062.679467pt;}
.h2_c00368{height:44.800000pt;}
.h3_c00368{height:48.294844pt;}
.h4_c00368{height:68.288000pt;}
.h5_c00368{height:69.376000pt;}
.h6_c00368{height:1121.280000pt;}
.h0_c00368{height:1122.520000pt;}
.h1_c00368{height:1122.666667pt;}
.w3_c00368{width:-0.001333pt;}
.w2_c00368{width:0.000000pt;}
.w4_c00368{width:0.058667pt;}
.w0_c00368{width:793.701333pt;}
.w1_c00368{width:794.000000pt;}
.x1_c00368{left:-745.700800pt;}
.x2_c00368{left:-680.260800pt;}
.x3_c00368{left:-651.860800pt;}
.x0_c00368{left:0.000000pt;}
.x5_c00368{left:112.686000pt;}
.x6_c00368{left:141.086000pt;}
.x4_c00368{left:611.005867pt;}
.x7_c00368{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00369;src:url('chunks/assets/font_37fcaf722c0e564d398be49f.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_9cbebe821466b7f45c455ee7.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00369;src:url('chunks/assets/font_c8c2faec7f02bb3b39705e22.woff2')format("woff");}.ff4_c00369{font-family:ff4_c00369;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00369{letter-spacing:-0.576000px;}
.ls5_c00369{letter-spacing:-0.360000px;}
.ls6_c00369{letter-spacing:-0.065880px;}
.ls3_c00369{letter-spacing:0.000000px;}
.ls0_c00369{letter-spacing:0.072000px;}
.ls1_c00369{letter-spacing:0.144000px;}
.ls2_c00369{letter-spacing:28.512000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00369{word-spacing:-18.072000px;}
.ws2_c00369{word-spacing:-18.000000px;}
.ws0_c00369{word-spacing:-17.424000px;}
.ws1_c00369{word-spacing:-14.823000px;}
.ws12_c00369{word-spacing:-0.072000px;}
.ws7_c00369{word-spacing:0.000000px;}
.wsb_c00369{word-spacing:0.720000px;}
.ws38_c00369{word-spacing:1.008000px;}
.wsd_c00369{word-spacing:1.080000px;}
.ws17_c00369{word-spacing:2.088000px;}
.ws16_c00369{word-spacing:2.160000px;}
.ws13_c00369{word-spacing:2.520000px;}
.ws29_c00369{word-spacing:2.880000px;}
.wsa_c00369{word-spacing:3.168000px;}
.ws18_c00369{word-spacing:3.240000px;}
.ws39_c00369{word-spacing:3.960000px;}
.ws30_c00369{word-spacing:4.608000px;}
.ws3b_c00369{word-spacing:4.680000px;}
.ws35_c00369{word-spacing:4.968000px;}
.ws1b_c00369{word-spacing:5.040000px;}
.ws24_c00369{word-spacing:5.256000px;}
.ws1a_c00369{word-spacing:5.688000px;}
.ws1f_c00369{word-spacing:5.760000px;}
.wse_c00369{word-spacing:6.048000px;}
.ws4_c00369{word-spacing:6.120000px;}
.ws3f_c00369{word-spacing:6.336000px;}
.ws1d_c00369{word-spacing:6.408000px;}
.ws41_c00369{word-spacing:6.480000px;}
.ws1c_c00369{word-spacing:6.768000px;}
.ws21_c00369{word-spacing:7.128000px;}
.ws11_c00369{word-spacing:7.200000px;}
.ws22_c00369{word-spacing:7.416000px;}
.ws25_c00369{word-spacing:7.560000px;}
.ws20_c00369{word-spacing:7.848000px;}
.ws36_c00369{word-spacing:8.568000px;}
.ws2b_c00369{word-spacing:8.856000px;}
.ws2c_c00369{word-spacing:9.000000px;}
.ws23_c00369{word-spacing:9.288000px;}
.ws2f_c00369{word-spacing:9.360000px;}
.ws8_c00369{word-spacing:9.576000px;}
.ws9_c00369{word-spacing:9.648000px;}
.ws15_c00369{word-spacing:10.008000px;}
.ws3e_c00369{word-spacing:10.368000px;}
.ws40_c00369{word-spacing:10.440000px;}
.ws19_c00369{word-spacing:10.800000px;}
.ws26_c00369{word-spacing:12.168000px;}
.ws2a_c00369{word-spacing:12.240000px;}
.ws33_c00369{word-spacing:12.528000px;}
.ws31_c00369{word-spacing:12.888000px;}
.ws32_c00369{word-spacing:13.248000px;}
.ws3_c00369{word-spacing:13.492800px;}
.ws3a_c00369{word-spacing:14.040000px;}
.ws3c_c00369{word-spacing:14.400000px;}
.ws1e_c00369{word-spacing:14.688000px;}
.ws37_c00369{word-spacing:14.760000px;}
.ws10_c00369{word-spacing:15.048000px;}
.wsf_c00369{word-spacing:15.480000px;}
.ws28_c00369{word-spacing:17.640000px;}
.ws14_c00369{word-spacing:21.600000px;}
.ws3d_c00369{word-spacing:24.768000px;}
.ws6_c00369{word-spacing:24.847200px;}
.ws2d_c00369{word-spacing:26.928000px;}
.ws2e_c00369{word-spacing:27.000000px;}
.ws27_c00369{word-spacing:27.648000px;}
.wsc_c00369{word-spacing:29.520000px;}
.ws34_c00369{word-spacing:31.320000px;}
._0_c00369{margin-left:-1.008000px;}
._1_c00369{width:1.022400px;}
._3_c00369{width:9.432000px;}
._2_c00369{width:11.016000px;}
._4_c00369{width:43.704000px;}
.fc2_c00369{color:transparent;}
.fc1_c00369{color:rgb(0,0,0);}
.fc0_c00369{color:rgb(35,31,32);}
.fs1_c00369{font-size:65.880000px;}
.fs0_c00369{font-size:72.000000px;}
.y0_c00369{bottom:0.000000px;}
.y1_c00369{bottom:61.748550px;}
.y21_c00369{bottom:115.446900px;}
.y20_c00369{bottom:146.496900px;}
.y1f_c00369{bottom:177.546900px;}
.y1e_c00369{bottom:208.596900px;}
.y1d_c00369{bottom:239.646900px;}
.y1c_c00369{bottom:301.746900px;}
.y1b_c00369{bottom:332.796900px;}
.y1a_c00369{bottom:363.846900px;}
.y19_c00369{bottom:394.896900px;}
.y18_c00369{bottom:425.946900px;}
.y17_c00369{bottom:456.996900px;}
.y16_c00369{bottom:488.046900px;}
.y15_c00369{bottom:519.096900px;}
.y14_c00369{bottom:550.146900px;}
.y22_c00369{bottom:581.196900px;}
.y13_c00369{bottom:612.246900px;}
.y12_c00369{bottom:643.296900px;}
.y11_c00369{bottom:674.346900px;}
.y10_c00369{bottom:705.396900px;}
.yf_c00369{bottom:736.446900px;}
.ye_c00369{bottom:767.496900px;}
.yd_c00369{bottom:798.456900px;}
.yc_c00369{bottom:829.506900px;}
.yb_c00369{bottom:891.606900px;}
.ya_c00369{bottom:922.656900px;}
.y9_c00369{bottom:953.706900px;}
.y8_c00369{bottom:984.756900px;}
.y7_c00369{bottom:1015.806900px;}
.y6_c00369{bottom:1046.856900px;}
.y5_c00369{bottom:1077.906900px;}
.y4_c00369{bottom:1108.956900px;}
.y3_c00369{bottom:1140.006900px;}
.y2_c00369{bottom:1194.096900px;}
.h2_c00369{height:50.400000px;}
.h3_c00369{height:54.331699px;}
.h4_c00369{height:76.824000px;}
.h5_c00369{height:78.048000px;}
.h0_c00369{height:1262.835000px;}
.h1_c00369{height:1263.000000px;}
.w2_c00369{width:0.033000px;}
.w0_c00369{width:892.914000px;}
.w1_c00369{width:893.250000px;}
.x0_c00369{left:0.000000px;}
.x1_c00369{left:54.000000px;}
.x2_c00369{left:127.586700px;}
.x3_c00369{left:159.536700px;}
.x5_c00369{left:688.228800px;}
.x4_c00369{left:892.881000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls4_c00369{letter-spacing:-0.512000pt;}
.ls5_c00369{letter-spacing:-0.320000pt;}
.ls6_c00369{letter-spacing:-0.058560pt;}
.ls3_c00369{letter-spacing:0.000000pt;}
.ls0_c00369{letter-spacing:0.064000pt;}
.ls1_c00369{letter-spacing:0.128000pt;}
.ls2_c00369{letter-spacing:25.344000pt;}
.ws5_c00369{word-spacing:-16.064000pt;}
.ws2_c00369{word-spacing:-16.000000pt;}
.ws0_c00369{word-spacing:-15.488000pt;}
.ws1_c00369{word-spacing:-13.176000pt;}
.ws12_c00369{word-spacing:-0.064000pt;}
.ws7_c00369{word-spacing:0.000000pt;}
.wsb_c00369{word-spacing:0.640000pt;}
.ws38_c00369{word-spacing:0.896000pt;}
.wsd_c00369{word-spacing:0.960000pt;}
.ws17_c00369{word-spacing:1.856000pt;}
.ws16_c00369{word-spacing:1.920000pt;}
.ws13_c00369{word-spacing:2.240000pt;}
.ws29_c00369{word-spacing:2.560000pt;}
.wsa_c00369{word-spacing:2.816000pt;}
.ws18_c00369{word-spacing:2.880000pt;}
.ws39_c00369{word-spacing:3.520000pt;}
.ws30_c00369{word-spacing:4.096000pt;}
.ws3b_c00369{word-spacing:4.160000pt;}
.ws35_c00369{word-spacing:4.416000pt;}
.ws1b_c00369{word-spacing:4.480000pt;}
.ws24_c00369{word-spacing:4.672000pt;}
.ws1a_c00369{word-spacing:5.056000pt;}
.ws1f_c00369{word-spacing:5.120000pt;}
.wse_c00369{word-spacing:5.376000pt;}
.ws4_c00369{word-spacing:5.440000pt;}
.ws3f_c00369{word-spacing:5.632000pt;}
.ws1d_c00369{word-spacing:5.696000pt;}
.ws41_c00369{word-spacing:5.760000pt;}
.ws1c_c00369{word-spacing:6.016000pt;}
.ws21_c00369{word-spacing:6.336000pt;}
.ws11_c00369{word-spacing:6.400000pt;}
.ws22_c00369{word-spacing:6.592000pt;}
.ws25_c00369{word-spacing:6.720000pt;}
.ws20_c00369{word-spacing:6.976000pt;}
.ws36_c00369{word-spacing:7.616000pt;}
.ws2b_c00369{word-spacing:7.872000pt;}
.ws2c_c00369{word-spacing:8.000000pt;}
.ws23_c00369{word-spacing:8.256000pt;}
.ws2f_c00369{word-spacing:8.320000pt;}
.ws8_c00369{word-spacing:8.512000pt;}
.ws9_c00369{word-spacing:8.576000pt;}
.ws15_c00369{word-spacing:8.896000pt;}
.ws3e_c00369{word-spacing:9.216000pt;}
.ws40_c00369{word-spacing:9.280000pt;}
.ws19_c00369{word-spacing:9.600000pt;}
.ws26_c00369{word-spacing:10.816000pt;}
.ws2a_c00369{word-spacing:10.880000pt;}
.ws33_c00369{word-spacing:11.136000pt;}
.ws31_c00369{word-spacing:11.456000pt;}
.ws32_c00369{word-spacing:11.776000pt;}
.ws3_c00369{word-spacing:11.993600pt;}
.ws3a_c00369{word-spacing:12.480000pt;}
.ws3c_c00369{word-spacing:12.800000pt;}
.ws1e_c00369{word-spacing:13.056000pt;}
.ws37_c00369{word-spacing:13.120000pt;}
.ws10_c00369{word-spacing:13.376000pt;}
.wsf_c00369{word-spacing:13.760000pt;}
.ws28_c00369{word-spacing:15.680000pt;}
.ws14_c00369{word-spacing:19.200000pt;}
.ws3d_c00369{word-spacing:22.016000pt;}
.ws6_c00369{word-spacing:22.086400pt;}
.ws2d_c00369{word-spacing:23.936000pt;}
.ws2e_c00369{word-spacing:24.000000pt;}
.ws27_c00369{word-spacing:24.576000pt;}
.wsc_c00369{word-spacing:26.240000pt;}
.ws34_c00369{word-spacing:27.840000pt;}
._0_c00369{margin-left:-0.896000pt;}
._1_c00369{width:0.908800pt;}
._3_c00369{width:8.384000pt;}
._2_c00369{width:9.792000pt;}
._4_c00369{width:38.848000pt;}
.fs1_c00369{font-size:58.560000pt;}
.fs0_c00369{font-size:64.000000pt;}
.y0_c00369{bottom:0.000000pt;}
.y1_c00369{bottom:54.887600pt;}
.y21_c00369{bottom:102.619467pt;}
.y20_c00369{bottom:130.219467pt;}
.y1f_c00369{bottom:157.819467pt;}
.y1e_c00369{bottom:185.419467pt;}
.y1d_c00369{bottom:213.019467pt;}
.y1c_c00369{bottom:268.219467pt;}
.y1b_c00369{bottom:295.819467pt;}
.y1a_c00369{bottom:323.419467pt;}
.y19_c00369{bottom:351.019467pt;}
.y18_c00369{bottom:378.619467pt;}
.y17_c00369{bottom:406.219467pt;}
.y16_c00369{bottom:433.819467pt;}
.y15_c00369{bottom:461.419467pt;}
.y14_c00369{bottom:489.019467pt;}
.y22_c00369{bottom:516.619467pt;}
.y13_c00369{bottom:544.219467pt;}
.y12_c00369{bottom:571.819467pt;}
.y11_c00369{bottom:599.419467pt;}
.y10_c00369{bottom:627.019467pt;}
.yf_c00369{bottom:654.619467pt;}
.ye_c00369{bottom:682.219467pt;}
.yd_c00369{bottom:709.739467pt;}
.yc_c00369{bottom:737.339467pt;}
.yb_c00369{bottom:792.539467pt;}
.ya_c00369{bottom:820.139467pt;}
.y9_c00369{bottom:847.739467pt;}
.y8_c00369{bottom:875.339467pt;}
.y7_c00369{bottom:902.939467pt;}
.y6_c00369{bottom:930.539467pt;}
.y5_c00369{bottom:958.139467pt;}
.y4_c00369{bottom:985.739467pt;}
.y3_c00369{bottom:1013.339467pt;}
.y2_c00369{bottom:1061.419467pt;}
.h2_c00369{height:44.800000pt;}
.h3_c00369{height:48.294844pt;}
.h4_c00369{height:68.288000pt;}
.h5_c00369{height:69.376000pt;}
.h0_c00369{height:1122.520000pt;}
.h1_c00369{height:1122.666667pt;}
.w2_c00369{width:0.029333pt;}
.w0_c00369{width:793.701333pt;}
.w1_c00369{width:794.000000pt;}
.x0_c00369{left:0.000000pt;}
.x1_c00369{left:48.000000pt;}
.x2_c00369{left:113.410400pt;}
.x3_c00369{left:141.810400pt;}
.x5_c00369{left:611.758933pt;}
.x4_c00369{left:793.672000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00370;src:url('chunks/assets/font_ed166f0075f9e22ba5d55d45.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00370;src:url('chunks/assets/font_ff6799b7b244356d6e66aacb.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.575000;font-style:normal;font-weight:normal;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_77869667be842fb35fce21e9.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00370;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00370{font-family:ff5_c00370;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00370;src:url('chunks/assets/font_ed166f0075f9e22ba5d55d45.woff2')format("woff");}.ff6_c00370{font-family:ff6_c00370;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00370;src:url('chunks/assets/font_ff6799b7b244356d6e66aacb.woff2')format("woff");}.ff7_c00370{font-family:ff7_c00370;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00370;src:url('chunks/assets/font_77869667be842fb35fce21e9.woff2')format("woff");}.ff8_c00370{font-family:ff8_c00370;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00370{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls4_c00370{letter-spacing:-0.576000px;}
.ls5_c00370{letter-spacing:-0.360000px;}
.ls6_c00370{letter-spacing:-0.065880px;}
.ls3_c00370{letter-spacing:0.000000px;}
.ls0_c00370{letter-spacing:0.072000px;}
.ls1_c00370{letter-spacing:0.144000px;}
.ls2_c00370{letter-spacing:28.512000px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00370{word-spacing:-18.072000px;}
.ws2_c00370{word-spacing:-18.000000px;}
.ws0_c00370{word-spacing:-17.424000px;}
.ws1_c00370{word-spacing:-14.823000px;}
.ws13_c00370{word-spacing:-0.072000px;}
.ws8_c00370{word-spacing:0.000000px;}
.wsc_c00370{word-spacing:0.720000px;}
.ws39_c00370{word-spacing:1.008000px;}
.wse_c00370{word-spacing:1.080000px;}
.ws18_c00370{word-spacing:2.088000px;}
.ws17_c00370{word-spacing:2.160000px;}
.ws14_c00370{word-spacing:2.520000px;}
.ws2a_c00370{word-spacing:2.880000px;}
.wsb_c00370{word-spacing:3.168000px;}
.ws19_c00370{word-spacing:3.240000px;}
.ws3a_c00370{word-spacing:3.960000px;}
.ws31_c00370{word-spacing:4.608000px;}
.ws3c_c00370{word-spacing:4.680000px;}
.ws36_c00370{word-spacing:4.968000px;}
.ws1c_c00370{word-spacing:5.040000px;}
.ws25_c00370{word-spacing:5.256000px;}
.ws1b_c00370{word-spacing:5.688000px;}
.ws20_c00370{word-spacing:5.760000px;}
.wsf_c00370{word-spacing:6.048000px;}
.ws4_c00370{word-spacing:6.120000px;}
.ws40_c00370{word-spacing:6.336000px;}
.ws1e_c00370{word-spacing:6.408000px;}
.ws42_c00370{word-spacing:6.480000px;}
.ws1d_c00370{word-spacing:6.768000px;}
.ws22_c00370{word-spacing:7.128000px;}
.ws12_c00370{word-spacing:7.200000px;}
.ws23_c00370{word-spacing:7.416000px;}
.ws26_c00370{word-spacing:7.560000px;}
.ws21_c00370{word-spacing:7.848000px;}
.ws37_c00370{word-spacing:8.568000px;}
.ws2c_c00370{word-spacing:8.856000px;}
.ws2d_c00370{word-spacing:9.000000px;}
.ws24_c00370{word-spacing:9.288000px;}
.ws30_c00370{word-spacing:9.360000px;}
.ws9_c00370{word-spacing:9.576000px;}
.wsa_c00370{word-spacing:9.648000px;}
.ws16_c00370{word-spacing:10.008000px;}
.ws3f_c00370{word-spacing:10.368000px;}
.ws41_c00370{word-spacing:10.440000px;}
.ws1a_c00370{word-spacing:10.800000px;}
.ws27_c00370{word-spacing:12.168000px;}
.ws2b_c00370{word-spacing:12.240000px;}
.ws34_c00370{word-spacing:12.528000px;}
.ws32_c00370{word-spacing:12.888000px;}
.ws33_c00370{word-spacing:13.248000px;}
.ws3_c00370{word-spacing:13.492800px;}
.ws7_c00370{word-spacing:13.507200px;}
.ws3b_c00370{word-spacing:14.040000px;}
.ws3d_c00370{word-spacing:14.400000px;}
.ws1f_c00370{word-spacing:14.688000px;}
.ws38_c00370{word-spacing:14.760000px;}
.ws11_c00370{word-spacing:15.048000px;}
.ws10_c00370{word-spacing:15.480000px;}
.ws29_c00370{word-spacing:17.640000px;}
.ws15_c00370{word-spacing:21.600000px;}
.ws3e_c00370{word-spacing:24.768000px;}
.ws6_c00370{word-spacing:24.847200px;}
.ws2e_c00370{word-spacing:26.928000px;}
.ws2f_c00370{word-spacing:27.000000px;}
.ws28_c00370{word-spacing:27.648000px;}
.wsd_c00370{word-spacing:29.520000px;}
.ws35_c00370{word-spacing:31.320000px;}
._0_c00370{margin-left:-1.008000px;}
._1_c00370{width:1.022400px;}
._3_c00370{width:9.432000px;}
._2_c00370{width:11.016000px;}
._4_c00370{width:43.704000px;}
.fc2_c00370{color:transparent;}
.fc1_c00370{color:rgb(0,0,0);}
.fc0_c00370{color:rgb(35,31,32);}
.fs1_c00370{font-size:65.880000px;}
.fs0_c00370{font-size:72.000000px;}
.y0_c00370{bottom:0.000000px;}
.y1_c00370{bottom:61.748550px;}
.y21_c00370{bottom:115.446900px;}
.y20_c00370{bottom:146.496900px;}
.y1f_c00370{bottom:177.546900px;}
.y1e_c00370{bottom:208.596900px;}
.y1d_c00370{bottom:239.646900px;}
.y1c_c00370{bottom:301.746900px;}
.y1b_c00370{bottom:332.796900px;}
.y1a_c00370{bottom:363.846900px;}
.y19_c00370{bottom:394.896900px;}
.y18_c00370{bottom:425.946900px;}
.y17_c00370{bottom:456.996900px;}
.y16_c00370{bottom:488.046900px;}
.y15_c00370{bottom:519.096900px;}
.y14_c00370{bottom:550.146900px;}
.y22_c00370{bottom:581.196900px;}
.y13_c00370{bottom:612.246900px;}
.y12_c00370{bottom:643.296900px;}
.y11_c00370{bottom:674.346900px;}
.y10_c00370{bottom:705.396900px;}
.yf_c00370{bottom:736.446900px;}
.ye_c00370{bottom:767.496900px;}
.yd_c00370{bottom:798.456900px;}
.yc_c00370{bottom:829.506900px;}
.yb_c00370{bottom:891.606900px;}
.ya_c00370{bottom:922.656900px;}
.y9_c00370{bottom:953.706900px;}
.y8_c00370{bottom:984.756900px;}
.y7_c00370{bottom:1015.806900px;}
.y6_c00370{bottom:1046.856900px;}
.y5_c00370{bottom:1077.906900px;}
.y4_c00370{bottom:1108.956900px;}
.y3_c00370{bottom:1140.006900px;}
.y2_c00370{bottom:1194.096900px;}
.h2_c00370{height:50.400000px;}
.h3_c00370{height:54.331699px;}
.h4_c00370{height:76.824000px;}
.h5_c00370{height:78.048000px;}
.h0_c00370{height:1262.835000px;}
.h1_c00370{height:1263.000000px;}
.w2_c00370{width:0.000000px;}
.w3_c00370{width:0.034500px;}
.w0_c00370{width:892.914000px;}
.w1_c00370{width:893.250000px;}
.x1_c00370{left:-838.913400px;}
.x2_c00370{left:-765.326700px;}
.x3_c00370{left:-733.376700px;}
.x0_c00370{left:0.000000px;}
.x5_c00370{left:127.586550px;}
.x6_c00370{left:159.536550px;}
.x4_c00370{left:688.196400px;}
.x7_c00370{left:804.366150px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls4_c00370{letter-spacing:-0.512000pt;}
.ls5_c00370{letter-spacing:-0.320000pt;}
.ls6_c00370{letter-spacing:-0.058560pt;}
.ls3_c00370{letter-spacing:0.000000pt;}
.ls0_c00370{letter-spacing:0.064000pt;}
.ls1_c00370{letter-spacing:0.128000pt;}
.ls2_c00370{letter-spacing:25.344000pt;}
.ws5_c00370{word-spacing:-16.064000pt;}
.ws2_c00370{word-spacing:-16.000000pt;}
.ws0_c00370{word-spacing:-15.488000pt;}
.ws1_c00370{word-spacing:-13.176000pt;}
.ws13_c00370{word-spacing:-0.064000pt;}
.ws8_c00370{word-spacing:0.000000pt;}
.wsc_c00370{word-spacing:0.640000pt;}
.ws39_c00370{word-spacing:0.896000pt;}
.wse_c00370{word-spacing:0.960000pt;}
.ws18_c00370{word-spacing:1.856000pt;}
.ws17_c00370{word-spacing:1.920000pt;}
.ws14_c00370{word-spacing:2.240000pt;}
.ws2a_c00370{word-spacing:2.560000pt;}
.wsb_c00370{word-spacing:2.816000pt;}
.ws19_c00370{word-spacing:2.880000pt;}
.ws3a_c00370{word-spacing:3.520000pt;}
.ws31_c00370{word-spacing:4.096000pt;}
.ws3c_c00370{word-spacing:4.160000pt;}
.ws36_c00370{word-spacing:4.416000pt;}
.ws1c_c00370{word-spacing:4.480000pt;}
.ws25_c00370{word-spacing:4.672000pt;}
.ws1b_c00370{word-spacing:5.056000pt;}
.ws20_c00370{word-spacing:5.120000pt;}
.wsf_c00370{word-spacing:5.376000pt;}
.ws4_c00370{word-spacing:5.440000pt;}
.ws40_c00370{word-spacing:5.632000pt;}
.ws1e_c00370{word-spacing:5.696000pt;}
.ws42_c00370{word-spacing:5.760000pt;}
.ws1d_c00370{word-spacing:6.016000pt;}
.ws22_c00370{word-spacing:6.336000pt;}
.ws12_c00370{word-spacing:6.400000pt;}
.ws23_c00370{word-spacing:6.592000pt;}
.ws26_c00370{word-spacing:6.720000pt;}
.ws21_c00370{word-spacing:6.976000pt;}
.ws37_c00370{word-spacing:7.616000pt;}
.ws2c_c00370{word-spacing:7.872000pt;}
.ws2d_c00370{word-spacing:8.000000pt;}
.ws24_c00370{word-spacing:8.256000pt;}
.ws30_c00370{word-spacing:8.320000pt;}
.ws9_c00370{word-spacing:8.512000pt;}
.wsa_c00370{word-spacing:8.576000pt;}
.ws16_c00370{word-spacing:8.896000pt;}
.ws3f_c00370{word-spacing:9.216000pt;}
.ws41_c00370{word-spacing:9.280000pt;}
.ws1a_c00370{word-spacing:9.600000pt;}
.ws27_c00370{word-spacing:10.816000pt;}
.ws2b_c00370{word-spacing:10.880000pt;}
.ws34_c00370{word-spacing:11.136000pt;}
.ws32_c00370{word-spacing:11.456000pt;}
.ws33_c00370{word-spacing:11.776000pt;}
.ws3_c00370{word-spacing:11.993600pt;}
.ws7_c00370{word-spacing:12.006400pt;}
.ws3b_c00370{word-spacing:12.480000pt;}
.ws3d_c00370{word-spacing:12.800000pt;}
.ws1f_c00370{word-spacing:13.056000pt;}
.ws38_c00370{word-spacing:13.120000pt;}
.ws11_c00370{word-spacing:13.376000pt;}
.ws10_c00370{word-spacing:13.760000pt;}
.ws29_c00370{word-spacing:15.680000pt;}
.ws15_c00370{word-spacing:19.200000pt;}
.ws3e_c00370{word-spacing:22.016000pt;}
.ws6_c00370{word-spacing:22.086400pt;}
.ws2e_c00370{word-spacing:23.936000pt;}
.ws2f_c00370{word-spacing:24.000000pt;}
.ws28_c00370{word-spacing:24.576000pt;}
.wsd_c00370{word-spacing:26.240000pt;}
.ws35_c00370{word-spacing:27.840000pt;}
._0_c00370{margin-left:-0.896000pt;}
._1_c00370{width:0.908800pt;}
._3_c00370{width:8.384000pt;}
._2_c00370{width:9.792000pt;}
._4_c00370{width:38.848000pt;}
.fs1_c00370{font-size:58.560000pt;}
.fs0_c00370{font-size:64.000000pt;}
.y0_c00370{bottom:0.000000pt;}
.y1_c00370{bottom:54.887600pt;}
.y21_c00370{bottom:102.619467pt;}
.y20_c00370{bottom:130.219467pt;}
.y1f_c00370{bottom:157.819467pt;}
.y1e_c00370{bottom:185.419467pt;}
.y1d_c00370{bottom:213.019467pt;}
.y1c_c00370{bottom:268.219467pt;}
.y1b_c00370{bottom:295.819467pt;}
.y1a_c00370{bottom:323.419467pt;}
.y19_c00370{bottom:351.019467pt;}
.y18_c00370{bottom:378.619467pt;}
.y17_c00370{bottom:406.219467pt;}
.y16_c00370{bottom:433.819467pt;}
.y15_c00370{bottom:461.419467pt;}
.y14_c00370{bottom:489.019467pt;}
.y22_c00370{bottom:516.619467pt;}
.y13_c00370{bottom:544.219467pt;}
.y12_c00370{bottom:571.819467pt;}
.y11_c00370{bottom:599.419467pt;}
.y10_c00370{bottom:627.019467pt;}
.yf_c00370{bottom:654.619467pt;}
.ye_c00370{bottom:682.219467pt;}
.yd_c00370{bottom:709.739467pt;}
.yc_c00370{bottom:737.339467pt;}
.yb_c00370{bottom:792.539467pt;}
.ya_c00370{bottom:820.139467pt;}
.y9_c00370{bottom:847.739467pt;}
.y8_c00370{bottom:875.339467pt;}
.y7_c00370{bottom:902.939467pt;}
.y6_c00370{bottom:930.539467pt;}
.y5_c00370{bottom:958.139467pt;}
.y4_c00370{bottom:985.739467pt;}
.y3_c00370{bottom:1013.339467pt;}
.y2_c00370{bottom:1061.419467pt;}
.h2_c00370{height:44.800000pt;}
.h3_c00370{height:48.294844pt;}
.h4_c00370{height:68.288000pt;}
.h5_c00370{height:69.376000pt;}
.h0_c00370{height:1122.520000pt;}
.h1_c00370{height:1122.666667pt;}
.w2_c00370{width:0.000000pt;}
.w3_c00370{width:0.030667pt;}
.w0_c00370{width:793.701333pt;}
.w1_c00370{width:794.000000pt;}
.x1_c00370{left:-745.700800pt;}
.x2_c00370{left:-680.290400pt;}
.x3_c00370{left:-651.890400pt;}
.x0_c00370{left:0.000000pt;}
.x5_c00370{left:113.410267pt;}
.x6_c00370{left:141.810267pt;}
.x4_c00370{left:611.730133pt;}
.x7_c00370{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00371;src:url('chunks/assets/font_307e700b2f21359f4b79c25f.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00371;src:url('chunks/assets/font_5bab97c63c06359f5d284282.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00371{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.ls7_c00371{letter-spacing:-0.288000px;}
.ls8_c00371{letter-spacing:-0.216000px;}
.ls6_c00371{letter-spacing:-0.065880px;}
.ls5_c00371{letter-spacing:0.000000px;}
.ls0_c00371{letter-spacing:0.072000px;}
.ls4_c00371{letter-spacing:0.144000px;}
.ls1_c00371{letter-spacing:24.840000px;}
.ls2_c00371{letter-spacing:47.160000px;}
.ls3_c00371{letter-spacing:47.534400px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00371{word-spacing:-18.072000px;}
.ws3_c00371{word-spacing:-18.000000px;}
.ws4_c00371{word-spacing:-17.784000px;}
.ws2_c00371{word-spacing:-14.823000px;}
.ws1_c00371{word-spacing:-0.360000px;}
.ws1f_c00371{word-spacing:-0.144000px;}
.wsb_c00371{word-spacing:-0.072000px;}
.ws5_c00371{word-spacing:0.000000px;}
.ws32_c00371{word-spacing:0.288000px;}
.wse_c00371{word-spacing:0.720000px;}
.ws36_c00371{word-spacing:0.792000px;}
.ws25_c00371{word-spacing:1.008000px;}
.ws35_c00371{word-spacing:1.080000px;}
.ws31_c00371{word-spacing:1.368000px;}
.ws13_c00371{word-spacing:2.808000px;}
.wsc_c00371{word-spacing:3.168000px;}
.wsd_c00371{word-spacing:3.600000px;}
.ws2f_c00371{word-spacing:3.888000px;}
.ws18_c00371{word-spacing:5.040000px;}
.ws7_c00371{word-spacing:5.400000px;}
.ws23_c00371{word-spacing:5.616000px;}
.ws24_c00371{word-spacing:5.760000px;}
.ws1a_c00371{word-spacing:6.120000px;}
.ws3d_c00371{word-spacing:6.408000px;}
.ws3c_c00371{word-spacing:6.480000px;}
.ws8_c00371{word-spacing:6.840000px;}
.ws15_c00371{word-spacing:7.488000px;}
.ws21_c00371{word-spacing:7.560000px;}
.ws2d_c00371{word-spacing:8.208000px;}
.ws1c_c00371{word-spacing:8.568000px;}
.ws40_c00371{word-spacing:8.640000px;}
.ws22_c00371{word-spacing:8.928000px;}
.ws2a_c00371{word-spacing:9.000000px;}
.ws26_c00371{word-spacing:9.216000px;}
.ws27_c00371{word-spacing:9.288000px;}
.ws37_c00371{word-spacing:9.360000px;}
.ws20_c00371{word-spacing:9.648000px;}
.ws17_c00371{word-spacing:10.008000px;}
.ws16_c00371{word-spacing:10.080000px;}
.ws1b_c00371{word-spacing:10.800000px;}
.ws2e_c00371{word-spacing:11.520000px;}
.ws11_c00371{word-spacing:11.736000px;}
.ws12_c00371{word-spacing:11.808000px;}
.wsf_c00371{word-spacing:11.880000px;}
.ws19_c00371{word-spacing:12.888000px;}
.ws3e_c00371{word-spacing:13.680000px;}
.ws38_c00371{word-spacing:15.120000px;}
.ws28_c00371{word-spacing:15.408000px;}
.ws2c_c00371{word-spacing:15.480000px;}
.ws3a_c00371{word-spacing:16.848000px;}
.ws3f_c00371{word-spacing:16.920000px;}
.ws39_c00371{word-spacing:17.280000px;}
.ws29_c00371{word-spacing:18.360000px;}
.ws34_c00371{word-spacing:19.800000px;}
.ws10_c00371{word-spacing:20.088000px;}
.ws6_c00371{word-spacing:20.160000px;}
.ws14_c00371{word-spacing:20.448000px;}
.ws30_c00371{word-spacing:21.888000px;}
.ws2b_c00371{word-spacing:23.400000px;}
.ws3b_c00371{word-spacing:25.920000px;}
.ws1d_c00371{word-spacing:26.928000px;}
.ws1e_c00371{word-spacing:27.000000px;}
.wsa_c00371{word-spacing:29.448000px;}
.ws33_c00371{word-spacing:29.520000px;}
.ws41_c00371{word-spacing:31.680000px;}
.ws9_c00371{word-spacing:36.360000px;}
._0_c00371{margin-left:-1.224000px;}
._1_c00371{width:1.022400px;}
._2_c00371{width:6.912000px;}
._3_c00371{width:11.016000px;}
.fc2_c00371{color:transparent;}
.fc1_c00371{color:rgb(0,0,0);}
.fc0_c00371{color:rgb(35,31,32);}
.fs1_c00371{font-size:65.880000px;}
.fs0_c00371{font-size:72.000000px;}
.y0_c00371{bottom:0.000000px;}
.y1_c00371{bottom:61.748550px;}
.y23_c00371{bottom:115.446900px;}
.y20_c00371{bottom:146.496900px;}
.y1f_c00371{bottom:177.546900px;}
.y1e_c00371{bottom:208.596900px;}
.y1d_c00371{bottom:239.646900px;}
.y1c_c00371{bottom:270.696900px;}
.y1b_c00371{bottom:301.746900px;}
.y1a_c00371{bottom:332.796900px;}
.y19_c00371{bottom:394.896900px;}
.y18_c00371{bottom:425.946900px;}
.y17_c00371{bottom:456.996900px;}
.y16_c00371{bottom:488.046900px;}
.y15_c00371{bottom:519.096900px;}
.y14_c00371{bottom:550.146900px;}
.y13_c00371{bottom:581.196900px;}
.y12_c00371{bottom:612.246900px;}
.y11_c00371{bottom:643.296900px;}
.y10_c00371{bottom:674.346900px;}
.yf_c00371{bottom:705.396900px;}
.y22_c00371{bottom:736.446900px;}
.ye_c00371{bottom:767.496900px;}
.yd_c00371{bottom:798.456900px;}
.yc_c00371{bottom:829.506900px;}
.yb_c00371{bottom:860.556900px;}
.ya_c00371{bottom:891.606900px;}
.y9_c00371{bottom:922.656900px;}
.y8_c00371{bottom:953.706900px;}
.y7_c00371{bottom:984.756900px;}
.y21_c00371{bottom:1015.806900px;}
.y6_c00371{bottom:1046.856900px;}
.y5_c00371{bottom:1077.906900px;}
.y4_c00371{bottom:1108.956900px;}
.y3_c00371{bottom:1140.006900px;}
.y2_c00371{bottom:1194.096900px;}
.h2_c00371{height:50.400000px;}
.h3_c00371{height:54.331699px;}
.h4_c00371{height:76.824000px;}
.h0_c00371{height:1262.835000px;}
.h1_c00371{height:1263.000000px;}
.w2_c00371{width:0.033000px;}
.w0_c00371{width:892.914000px;}
.w1_c00371{width:893.250000px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:54.000000px;}
.x2_c00371{left:127.586700px;}
.x3_c00371{left:159.536700px;}
.x5_c00371{left:688.228800px;}
.x4_c00371{left:892.881000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls7_c00371{letter-spacing:-0.256000pt;}
.ls8_c00371{letter-spacing:-0.192000pt;}
.ls6_c00371{letter-spacing:-0.058560pt;}
.ls5_c00371{letter-spacing:0.000000pt;}
.ls0_c00371{letter-spacing:0.064000pt;}
.ls4_c00371{letter-spacing:0.128000pt;}
.ls1_c00371{letter-spacing:22.080000pt;}
.ls2_c00371{letter-spacing:41.920000pt;}
.ls3_c00371{letter-spacing:42.252800pt;}
.ws0_c00371{word-spacing:-16.064000pt;}
.ws3_c00371{word-spacing:-16.000000pt;}
.ws4_c00371{word-spacing:-15.808000pt;}
.ws2_c00371{word-spacing:-13.176000pt;}
.ws1_c00371{word-spacing:-0.320000pt;}
.ws1f_c00371{word-spacing:-0.128000pt;}
.wsb_c00371{word-spacing:-0.064000pt;}
.ws5_c00371{word-spacing:0.000000pt;}
.ws32_c00371{word-spacing:0.256000pt;}
.wse_c00371{word-spacing:0.640000pt;}
.ws36_c00371{word-spacing:0.704000pt;}
.ws25_c00371{word-spacing:0.896000pt;}
.ws35_c00371{word-spacing:0.960000pt;}
.ws31_c00371{word-spacing:1.216000pt;}
.ws13_c00371{word-spacing:2.496000pt;}
.wsc_c00371{word-spacing:2.816000pt;}
.wsd_c00371{word-spacing:3.200000pt;}
.ws2f_c00371{word-spacing:3.456000pt;}
.ws18_c00371{word-spacing:4.480000pt;}
.ws7_c00371{word-spacing:4.800000pt;}
.ws23_c00371{word-spacing:4.992000pt;}
.ws24_c00371{word-spacing:5.120000pt;}
.ws1a_c00371{word-spacing:5.440000pt;}
.ws3d_c00371{word-spacing:5.696000pt;}
.ws3c_c00371{word-spacing:5.760000pt;}
.ws8_c00371{word-spacing:6.080000pt;}
.ws15_c00371{word-spacing:6.656000pt;}
.ws21_c00371{word-spacing:6.720000pt;}
.ws2d_c00371{word-spacing:7.296000pt;}
.ws1c_c00371{word-spacing:7.616000pt;}
.ws40_c00371{word-spacing:7.680000pt;}
.ws22_c00371{word-spacing:7.936000pt;}
.ws2a_c00371{word-spacing:8.000000pt;}
.ws26_c00371{word-spacing:8.192000pt;}
.ws27_c00371{word-spacing:8.256000pt;}
.ws37_c00371{word-spacing:8.320000pt;}
.ws20_c00371{word-spacing:8.576000pt;}
.ws17_c00371{word-spacing:8.896000pt;}
.ws16_c00371{word-spacing:8.960000pt;}
.ws1b_c00371{word-spacing:9.600000pt;}
.ws2e_c00371{word-spacing:10.240000pt;}
.ws11_c00371{word-spacing:10.432000pt;}
.ws12_c00371{word-spacing:10.496000pt;}
.wsf_c00371{word-spacing:10.560000pt;}
.ws19_c00371{word-spacing:11.456000pt;}
.ws3e_c00371{word-spacing:12.160000pt;}
.ws38_c00371{word-spacing:13.440000pt;}
.ws28_c00371{word-spacing:13.696000pt;}
.ws2c_c00371{word-spacing:13.760000pt;}
.ws3a_c00371{word-spacing:14.976000pt;}
.ws3f_c00371{word-spacing:15.040000pt;}
.ws39_c00371{word-spacing:15.360000pt;}
.ws29_c00371{word-spacing:16.320000pt;}
.ws34_c00371{word-spacing:17.600000pt;}
.ws10_c00371{word-spacing:17.856000pt;}
.ws6_c00371{word-spacing:17.920000pt;}
.ws14_c00371{word-spacing:18.176000pt;}
.ws30_c00371{word-spacing:19.456000pt;}
.ws2b_c00371{word-spacing:20.800000pt;}
.ws3b_c00371{word-spacing:23.040000pt;}
.ws1d_c00371{word-spacing:23.936000pt;}
.ws1e_c00371{word-spacing:24.000000pt;}
.wsa_c00371{word-spacing:26.176000pt;}
.ws33_c00371{word-spacing:26.240000pt;}
.ws41_c00371{word-spacing:28.160000pt;}
.ws9_c00371{word-spacing:32.320000pt;}
._0_c00371{margin-left:-1.088000pt;}
._1_c00371{width:0.908800pt;}
._2_c00371{width:6.144000pt;}
._3_c00371{width:9.792000pt;}
.fs1_c00371{font-size:58.560000pt;}
.fs0_c00371{font-size:64.000000pt;}
.y0_c00371{bottom:0.000000pt;}
.y1_c00371{bottom:54.887600pt;}
.y23_c00371{bottom:102.619467pt;}
.y20_c00371{bottom:130.219467pt;}
.y1f_c00371{bottom:157.819467pt;}
.y1e_c00371{bottom:185.419467pt;}
.y1d_c00371{bottom:213.019467pt;}
.y1c_c00371{bottom:240.619467pt;}
.y1b_c00371{bottom:268.219467pt;}
.y1a_c00371{bottom:295.819467pt;}
.y19_c00371{bottom:351.019467pt;}
.y18_c00371{bottom:378.619467pt;}
.y17_c00371{bottom:406.219467pt;}
.y16_c00371{bottom:433.819467pt;}
.y15_c00371{bottom:461.419467pt;}
.y14_c00371{bottom:489.019467pt;}
.y13_c00371{bottom:516.619467pt;}
.y12_c00371{bottom:544.219467pt;}
.y11_c00371{bottom:571.819467pt;}
.y10_c00371{bottom:599.419467pt;}
.yf_c00371{bottom:627.019467pt;}
.y22_c00371{bottom:654.619467pt;}
.ye_c00371{bottom:682.219467pt;}
.yd_c00371{bottom:709.739467pt;}
.yc_c00371{bottom:737.339467pt;}
.yb_c00371{bottom:764.939467pt;}
.ya_c00371{bottom:792.539467pt;}
.y9_c00371{bottom:820.139467pt;}
.y8_c00371{bottom:847.739467pt;}
.y7_c00371{bottom:875.339467pt;}
.y21_c00371{bottom:902.939467pt;}
.y6_c00371{bottom:930.539467pt;}
.y5_c00371{bottom:958.139467pt;}
.y4_c00371{bottom:985.739467pt;}
.y3_c00371{bottom:1013.339467pt;}
.y2_c00371{bottom:1061.419467pt;}
.h2_c00371{height:44.800000pt;}
.h3_c00371{height:48.294844pt;}
.h4_c00371{height:68.288000pt;}
.h0_c00371{height:1122.520000pt;}
.h1_c00371{height:1122.666667pt;}
.w2_c00371{width:0.029333pt;}
.w0_c00371{width:793.701333pt;}
.w1_c00371{width:794.000000pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:48.000000pt;}
.x2_c00371{left:113.410400pt;}
.x3_c00371{left:141.810400pt;}
.x5_c00371{left:611.758933pt;}
.x4_c00371{left:793.672000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00372;src:url('chunks/assets/font_57ad1a41f9488e65b9b295aa.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_79ce1969bd013b1de361fbba.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00372;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00372{font-family:ff4_c00372;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00372;src:url('chunks/assets/font_57ad1a41f9488e65b9b295aa.woff2')format("woff");}.ff5_c00372{font-family:ff5_c00372;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00372;src:url('chunks/assets/font_8ea1a8f10073f903f32abbf7.woff2')format("woff");}.ff6_c00372{font-family:ff6_c00372;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00372{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.ls7_c00372{letter-spacing:-0.288000px;}
.ls8_c00372{letter-spacing:-0.216000px;}
.ls6_c00372{letter-spacing:-0.065880px;}
.ls5_c00372{letter-spacing:0.000000px;}
.ls0_c00372{letter-spacing:0.072000px;}
.ls4_c00372{letter-spacing:0.144000px;}
.ls1_c00372{letter-spacing:24.840000px;}
.ls2_c00372{letter-spacing:47.160000px;}
.ls3_c00372{letter-spacing:47.534400px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00372{word-spacing:-18.072000px;}
.ws3_c00372{word-spacing:-18.000000px;}
.ws4_c00372{word-spacing:-17.784000px;}
.ws2_c00372{word-spacing:-14.823000px;}
.ws1_c00372{word-spacing:-0.360000px;}
.ws1f_c00372{word-spacing:-0.144000px;}
.wsb_c00372{word-spacing:-0.072000px;}
.ws5_c00372{word-spacing:0.000000px;}
.ws32_c00372{word-spacing:0.288000px;}
.wse_c00372{word-spacing:0.720000px;}
.ws36_c00372{word-spacing:0.792000px;}
.ws25_c00372{word-spacing:1.008000px;}
.ws35_c00372{word-spacing:1.080000px;}
.ws31_c00372{word-spacing:1.368000px;}
.ws13_c00372{word-spacing:2.808000px;}
.wsc_c00372{word-spacing:3.168000px;}
.wsd_c00372{word-spacing:3.600000px;}
.ws2f_c00372{word-spacing:3.888000px;}
.ws18_c00372{word-spacing:5.040000px;}
.ws7_c00372{word-spacing:5.400000px;}
.ws23_c00372{word-spacing:5.616000px;}
.ws24_c00372{word-spacing:5.760000px;}
.ws1a_c00372{word-spacing:6.120000px;}
.ws3d_c00372{word-spacing:6.408000px;}
.ws3c_c00372{word-spacing:6.480000px;}
.ws8_c00372{word-spacing:6.840000px;}
.ws15_c00372{word-spacing:7.488000px;}
.ws21_c00372{word-spacing:7.560000px;}
.ws2d_c00372{word-spacing:8.208000px;}
.ws1c_c00372{word-spacing:8.568000px;}
.ws40_c00372{word-spacing:8.640000px;}
.ws22_c00372{word-spacing:8.928000px;}
.ws2a_c00372{word-spacing:9.000000px;}
.ws26_c00372{word-spacing:9.216000px;}
.ws27_c00372{word-spacing:9.288000px;}
.ws37_c00372{word-spacing:9.360000px;}
.ws20_c00372{word-spacing:9.648000px;}
.ws17_c00372{word-spacing:10.008000px;}
.ws16_c00372{word-spacing:10.080000px;}
.ws1b_c00372{word-spacing:10.800000px;}
.ws2e_c00372{word-spacing:11.520000px;}
.ws11_c00372{word-spacing:11.736000px;}
.ws12_c00372{word-spacing:11.808000px;}
.wsf_c00372{word-spacing:11.880000px;}
.ws19_c00372{word-spacing:12.888000px;}
.ws3e_c00372{word-spacing:13.680000px;}
.ws38_c00372{word-spacing:15.120000px;}
.ws28_c00372{word-spacing:15.408000px;}
.ws2c_c00372{word-spacing:15.480000px;}
.ws3a_c00372{word-spacing:16.848000px;}
.ws3f_c00372{word-spacing:16.920000px;}
.ws39_c00372{word-spacing:17.280000px;}
.ws29_c00372{word-spacing:18.360000px;}
.ws34_c00372{word-spacing:19.800000px;}
.ws10_c00372{word-spacing:20.088000px;}
.ws6_c00372{word-spacing:20.160000px;}
.ws14_c00372{word-spacing:20.448000px;}
.ws30_c00372{word-spacing:21.888000px;}
.ws2b_c00372{word-spacing:23.400000px;}
.ws3b_c00372{word-spacing:25.920000px;}
.ws1d_c00372{word-spacing:26.928000px;}
.ws1e_c00372{word-spacing:27.000000px;}
.wsa_c00372{word-spacing:29.448000px;}
.ws33_c00372{word-spacing:29.520000px;}
.ws41_c00372{word-spacing:31.680000px;}
.ws9_c00372{word-spacing:36.360000px;}
._0_c00372{margin-left:-1.224000px;}
._1_c00372{width:1.022400px;}
._2_c00372{width:6.912000px;}
._3_c00372{width:11.016000px;}
.fc2_c00372{color:transparent;}
.fc1_c00372{color:rgb(0,0,0);}
.fc0_c00372{color:rgb(35,31,32);}
.fs1_c00372{font-size:65.880000px;}
.fs0_c00372{font-size:72.000000px;}
.y0_c00372{bottom:0.000000px;}
.y1_c00372{bottom:61.748550px;}
.y23_c00372{bottom:115.446900px;}
.y20_c00372{bottom:146.496900px;}
.y1f_c00372{bottom:177.546900px;}
.y1e_c00372{bottom:208.596900px;}
.y1d_c00372{bottom:239.646900px;}
.y1c_c00372{bottom:270.696900px;}
.y1b_c00372{bottom:301.746900px;}
.y1a_c00372{bottom:332.796900px;}
.y19_c00372{bottom:394.896900px;}
.y18_c00372{bottom:425.946900px;}
.y17_c00372{bottom:456.996900px;}
.y16_c00372{bottom:488.046900px;}
.y15_c00372{bottom:519.096900px;}
.y14_c00372{bottom:550.146900px;}
.y13_c00372{bottom:581.196900px;}
.y12_c00372{bottom:612.246900px;}
.y11_c00372{bottom:643.296900px;}
.y10_c00372{bottom:674.346900px;}
.yf_c00372{bottom:705.396900px;}
.y22_c00372{bottom:736.446900px;}
.ye_c00372{bottom:767.496900px;}
.yd_c00372{bottom:798.456900px;}
.yc_c00372{bottom:829.506900px;}
.yb_c00372{bottom:860.556900px;}
.ya_c00372{bottom:891.606900px;}
.y9_c00372{bottom:922.656900px;}
.y8_c00372{bottom:953.706900px;}
.y7_c00372{bottom:984.756900px;}
.y21_c00372{bottom:1015.806900px;}
.y6_c00372{bottom:1046.856900px;}
.y5_c00372{bottom:1077.906900px;}
.y4_c00372{bottom:1108.956900px;}
.y3_c00372{bottom:1140.006900px;}
.y2_c00372{bottom:1194.096900px;}
.h2_c00372{height:50.400000px;}
.h3_c00372{height:54.331699px;}
.h4_c00372{height:76.824000px;}
.h0_c00372{height:1262.835000px;}
.h1_c00372{height:1263.000000px;}
.w2_c00372{width:0.000000px;}
.w3_c00372{width:0.034500px;}
.w0_c00372{width:892.914000px;}
.w1_c00372{width:893.250000px;}
.x1_c00372{left:-838.913400px;}
.x2_c00372{left:-765.326700px;}
.x3_c00372{left:-733.376700px;}
.x0_c00372{left:0.000000px;}
.x6_c00372{left:127.586550px;}
.x5_c00372{left:159.536550px;}
.x4_c00372{left:688.196400px;}
.x7_c00372{left:804.366150px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls7_c00372{letter-spacing:-0.256000pt;}
.ls8_c00372{letter-spacing:-0.192000pt;}
.ls6_c00372{letter-spacing:-0.058560pt;}
.ls5_c00372{letter-spacing:0.000000pt;}
.ls0_c00372{letter-spacing:0.064000pt;}
.ls4_c00372{letter-spacing:0.128000pt;}
.ls1_c00372{letter-spacing:22.080000pt;}
.ls2_c00372{letter-spacing:41.920000pt;}
.ls3_c00372{letter-spacing:42.252800pt;}
.ws0_c00372{word-spacing:-16.064000pt;}
.ws3_c00372{word-spacing:-16.000000pt;}
.ws4_c00372{word-spacing:-15.808000pt;}
.ws2_c00372{word-spacing:-13.176000pt;}
.ws1_c00372{word-spacing:-0.320000pt;}
.ws1f_c00372{word-spacing:-0.128000pt;}
.wsb_c00372{word-spacing:-0.064000pt;}
.ws5_c00372{word-spacing:0.000000pt;}
.ws32_c00372{word-spacing:0.256000pt;}
.wse_c00372{word-spacing:0.640000pt;}
.ws36_c00372{word-spacing:0.704000pt;}
.ws25_c00372{word-spacing:0.896000pt;}
.ws35_c00372{word-spacing:0.960000pt;}
.ws31_c00372{word-spacing:1.216000pt;}
.ws13_c00372{word-spacing:2.496000pt;}
.wsc_c00372{word-spacing:2.816000pt;}
.wsd_c00372{word-spacing:3.200000pt;}
.ws2f_c00372{word-spacing:3.456000pt;}
.ws18_c00372{word-spacing:4.480000pt;}
.ws7_c00372{word-spacing:4.800000pt;}
.ws23_c00372{word-spacing:4.992000pt;}
.ws24_c00372{word-spacing:5.120000pt;}
.ws1a_c00372{word-spacing:5.440000pt;}
.ws3d_c00372{word-spacing:5.696000pt;}
.ws3c_c00372{word-spacing:5.760000pt;}
.ws8_c00372{word-spacing:6.080000pt;}
.ws15_c00372{word-spacing:6.656000pt;}
.ws21_c00372{word-spacing:6.720000pt;}
.ws2d_c00372{word-spacing:7.296000pt;}
.ws1c_c00372{word-spacing:7.616000pt;}
.ws40_c00372{word-spacing:7.680000pt;}
.ws22_c00372{word-spacing:7.936000pt;}
.ws2a_c00372{word-spacing:8.000000pt;}
.ws26_c00372{word-spacing:8.192000pt;}
.ws27_c00372{word-spacing:8.256000pt;}
.ws37_c00372{word-spacing:8.320000pt;}
.ws20_c00372{word-spacing:8.576000pt;}
.ws17_c00372{word-spacing:8.896000pt;}
.ws16_c00372{word-spacing:8.960000pt;}
.ws1b_c00372{word-spacing:9.600000pt;}
.ws2e_c00372{word-spacing:10.240000pt;}
.ws11_c00372{word-spacing:10.432000pt;}
.ws12_c00372{word-spacing:10.496000pt;}
.wsf_c00372{word-spacing:10.560000pt;}
.ws19_c00372{word-spacing:11.456000pt;}
.ws3e_c00372{word-spacing:12.160000pt;}
.ws38_c00372{word-spacing:13.440000pt;}
.ws28_c00372{word-spacing:13.696000pt;}
.ws2c_c00372{word-spacing:13.760000pt;}
.ws3a_c00372{word-spacing:14.976000pt;}
.ws3f_c00372{word-spacing:15.040000pt;}
.ws39_c00372{word-spacing:15.360000pt;}
.ws29_c00372{word-spacing:16.320000pt;}
.ws34_c00372{word-spacing:17.600000pt;}
.ws10_c00372{word-spacing:17.856000pt;}
.ws6_c00372{word-spacing:17.920000pt;}
.ws14_c00372{word-spacing:18.176000pt;}
.ws30_c00372{word-spacing:19.456000pt;}
.ws2b_c00372{word-spacing:20.800000pt;}
.ws3b_c00372{word-spacing:23.040000pt;}
.ws1d_c00372{word-spacing:23.936000pt;}
.ws1e_c00372{word-spacing:24.000000pt;}
.wsa_c00372{word-spacing:26.176000pt;}
.ws33_c00372{word-spacing:26.240000pt;}
.ws41_c00372{word-spacing:28.160000pt;}
.ws9_c00372{word-spacing:32.320000pt;}
._0_c00372{margin-left:-1.088000pt;}
._1_c00372{width:0.908800pt;}
._2_c00372{width:6.144000pt;}
._3_c00372{width:9.792000pt;}
.fs1_c00372{font-size:58.560000pt;}
.fs0_c00372{font-size:64.000000pt;}
.y0_c00372{bottom:0.000000pt;}
.y1_c00372{bottom:54.887600pt;}
.y23_c00372{bottom:102.619467pt;}
.y20_c00372{bottom:130.219467pt;}
.y1f_c00372{bottom:157.819467pt;}
.y1e_c00372{bottom:185.419467pt;}
.y1d_c00372{bottom:213.019467pt;}
.y1c_c00372{bottom:240.619467pt;}
.y1b_c00372{bottom:268.219467pt;}
.y1a_c00372{bottom:295.819467pt;}
.y19_c00372{bottom:351.019467pt;}
.y18_c00372{bottom:378.619467pt;}
.y17_c00372{bottom:406.219467pt;}
.y16_c00372{bottom:433.819467pt;}
.y15_c00372{bottom:461.419467pt;}
.y14_c00372{bottom:489.019467pt;}
.y13_c00372{bottom:516.619467pt;}
.y12_c00372{bottom:544.219467pt;}
.y11_c00372{bottom:571.819467pt;}
.y10_c00372{bottom:599.419467pt;}
.yf_c00372{bottom:627.019467pt;}
.y22_c00372{bottom:654.619467pt;}
.ye_c00372{bottom:682.219467pt;}
.yd_c00372{bottom:709.739467pt;}
.yc_c00372{bottom:737.339467pt;}
.yb_c00372{bottom:764.939467pt;}
.ya_c00372{bottom:792.539467pt;}
.y9_c00372{bottom:820.139467pt;}
.y8_c00372{bottom:847.739467pt;}
.y7_c00372{bottom:875.339467pt;}
.y21_c00372{bottom:902.939467pt;}
.y6_c00372{bottom:930.539467pt;}
.y5_c00372{bottom:958.139467pt;}
.y4_c00372{bottom:985.739467pt;}
.y3_c00372{bottom:1013.339467pt;}
.y2_c00372{bottom:1061.419467pt;}
.h2_c00372{height:44.800000pt;}
.h3_c00372{height:48.294844pt;}
.h4_c00372{height:68.288000pt;}
.h0_c00372{height:1122.520000pt;}
.h1_c00372{height:1122.666667pt;}
.w2_c00372{width:0.000000pt;}
.w3_c00372{width:0.030667pt;}
.w0_c00372{width:793.701333pt;}
.w1_c00372{width:794.000000pt;}
.x1_c00372{left:-745.700800pt;}
.x2_c00372{left:-680.290400pt;}
.x3_c00372{left:-651.890400pt;}
.x0_c00372{left:0.000000pt;}
.x6_c00372{left:113.410267pt;}
.x5_c00372{left:141.810267pt;}
.x4_c00372{left:611.730133pt;}
.x7_c00372{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00373;src:url('chunks/assets/font_bf64d5772c9e65f23ef208d1.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_f0c7b0c979a6ffd2b3ef1364.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00373;src:url('chunks/assets/font_95e819e19cea210f1fee2642.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls5_c00373{letter-spacing:-0.360000px;}
.ls7_c00373{letter-spacing:-0.072000px;}
.ls6_c00373{letter-spacing:-0.065880px;}
.ls4_c00373{letter-spacing:0.000000px;}
.ls0_c00373{letter-spacing:0.072000px;}
.ls3_c00373{letter-spacing:0.360000px;}
.ls1_c00373{letter-spacing:23.472000px;}
.ls2_c00373{letter-spacing:33.840000px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00373{word-spacing:-18.072000px;}
.ws0_c00373{word-spacing:-18.000000px;}
.ws3_c00373{word-spacing:-14.823000px;}
.ws20_c00373{word-spacing:-0.360000px;}
.ws4_c00373{word-spacing:-0.144000px;}
.wse_c00373{word-spacing:-0.072000px;}
.ws7_c00373{word-spacing:0.000000px;}
.ws39_c00373{word-spacing:0.072000px;}
.ws33_c00373{word-spacing:0.288000px;}
.ws8_c00373{word-spacing:0.360000px;}
.ws16_c00373{word-spacing:0.720000px;}
.wsf_c00373{word-spacing:1.080000px;}
.ws1c_c00373{word-spacing:1.368000px;}
.ws1d_c00373{word-spacing:1.728000px;}
.ws3a_c00373{word-spacing:2.160000px;}
.ws14_c00373{word-spacing:2.520000px;}
.ws37_c00373{word-spacing:3.168000px;}
.ws2a_c00373{word-spacing:3.600000px;}
.ws1b_c00373{word-spacing:4.320000px;}
.ws28_c00373{word-spacing:4.608000px;}
.ws27_c00373{word-spacing:4.680000px;}
.ws25_c00373{word-spacing:5.040000px;}
.ws17_c00373{word-spacing:5.328000px;}
.ws18_c00373{word-spacing:5.400000px;}
.ws2_c00373{word-spacing:5.760000px;}
.ws38_c00373{word-spacing:6.120000px;}
.ws13_c00373{word-spacing:6.408000px;}
.ws5_c00373{word-spacing:6.710400px;}
.ws29_c00373{word-spacing:6.768000px;}
.ws2d_c00373{word-spacing:6.840000px;}
.ws12_c00373{word-spacing:7.056000px;}
.wsd_c00373{word-spacing:7.128000px;}
.wsc_c00373{word-spacing:7.200000px;}
.ws21_c00373{word-spacing:7.488000px;}
.ws22_c00373{word-spacing:7.560000px;}
.ws2b_c00373{word-spacing:7.848000px;}
.ws2c_c00373{word-spacing:7.920000px;}
.ws11_c00373{word-spacing:8.208000px;}
.ws10_c00373{word-spacing:8.280000px;}
.wsb_c00373{word-spacing:8.640000px;}
.ws31_c00373{word-spacing:8.928000px;}
.ws32_c00373{word-spacing:9.000000px;}
.ws23_c00373{word-spacing:11.088000px;}
.ws24_c00373{word-spacing:11.160000px;}
.ws2e_c00373{word-spacing:12.600000px;}
.ws2f_c00373{word-spacing:12.960000px;}
.wsa_c00373{word-spacing:13.608000px;}
.ws36_c00373{word-spacing:13.680000px;}
.ws34_c00373{word-spacing:14.688000px;}
.ws1e_c00373{word-spacing:15.048000px;}
.ws1a_c00373{word-spacing:15.408000px;}
.ws19_c00373{word-spacing:15.768000px;}
.ws26_c00373{word-spacing:16.200000px;}
.ws30_c00373{word-spacing:16.848000px;}
.ws15_c00373{word-spacing:18.648000px;}
.ws9_c00373{word-spacing:19.080000px;}
.ws3b_c00373{word-spacing:20.160000px;}
.ws6_c00373{word-spacing:28.310400px;}
.ws35_c00373{word-spacing:28.440000px;}
.ws1f_c00373{word-spacing:31.968000px;}
._0_c00373{margin-left:-1.080000px;}
._3_c00373{width:1.065600px;}
._7_c00373{width:2.160000px;}
._6_c00373{width:5.688000px;}
._4_c00373{width:8.208000px;}
._5_c00373{width:18.792000px;}
._1_c00373{width:24.552000px;}
._2_c00373{width:46.296000px;}
.fc2_c00373{color:transparent;}
.fc1_c00373{color:rgb(0,0,0);}
.fc0_c00373{color:rgb(35,31,32);}
.fs1_c00373{font-size:65.880000px;}
.fs0_c00373{font-size:72.000000px;}
.y0_c00373{bottom:0.000000px;}
.y1_c00373{bottom:61.748550px;}
.y21_c00373{bottom:115.446900px;}
.y20_c00373{bottom:146.496900px;}
.y1f_c00373{bottom:208.596900px;}
.y1e_c00373{bottom:239.646900px;}
.y1d_c00373{bottom:270.696900px;}
.y1c_c00373{bottom:301.746900px;}
.y1b_c00373{bottom:332.796900px;}
.y1a_c00373{bottom:363.846900px;}
.y19_c00373{bottom:394.896900px;}
.y18_c00373{bottom:425.946900px;}
.y17_c00373{bottom:456.996900px;}
.y16_c00373{bottom:488.046900px;}
.y15_c00373{bottom:519.096900px;}
.y14_c00373{bottom:550.146900px;}
.y23_c00373{bottom:581.196900px;}
.y13_c00373{bottom:612.246900px;}
.y12_c00373{bottom:643.296900px;}
.y11_c00373{bottom:674.346900px;}
.y10_c00373{bottom:705.396900px;}
.yf_c00373{bottom:736.446900px;}
.ye_c00373{bottom:767.496900px;}
.yd_c00373{bottom:798.456900px;}
.yc_c00373{bottom:829.506900px;}
.yb_c00373{bottom:860.556900px;}
.ya_c00373{bottom:891.606900px;}
.y9_c00373{bottom:922.656900px;}
.y22_c00373{bottom:953.706900px;}
.y8_c00373{bottom:984.756900px;}
.y7_c00373{bottom:1015.806900px;}
.y6_c00373{bottom:1046.856900px;}
.y5_c00373{bottom:1077.906900px;}
.y4_c00373{bottom:1108.956900px;}
.y3_c00373{bottom:1140.006900px;}
.y2_c00373{bottom:1194.096900px;}
.h2_c00373{height:50.400000px;}
.h3_c00373{height:54.331699px;}
.h4_c00373{height:76.824000px;}
.h5_c00373{height:78.048000px;}
.h0_c00373{height:1262.835000px;}
.h1_c00373{height:1263.000000px;}
.w2_c00373{width:0.033000px;}
.w0_c00373{width:892.914000px;}
.w1_c00373{width:893.250000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:54.000000px;}
.x2_c00373{left:127.586700px;}
.x3_c00373{left:159.536700px;}
.x5_c00373{left:688.228800px;}
.x4_c00373{left:892.881000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls5_c00373{letter-spacing:-0.320000pt;}
.ls7_c00373{letter-spacing:-0.064000pt;}
.ls6_c00373{letter-spacing:-0.058560pt;}
.ls4_c00373{letter-spacing:0.000000pt;}
.ls0_c00373{letter-spacing:0.064000pt;}
.ls3_c00373{letter-spacing:0.320000pt;}
.ls1_c00373{letter-spacing:20.864000pt;}
.ls2_c00373{letter-spacing:30.080000pt;}
.ws1_c00373{word-spacing:-16.064000pt;}
.ws0_c00373{word-spacing:-16.000000pt;}
.ws3_c00373{word-spacing:-13.176000pt;}
.ws20_c00373{word-spacing:-0.320000pt;}
.ws4_c00373{word-spacing:-0.128000pt;}
.wse_c00373{word-spacing:-0.064000pt;}
.ws7_c00373{word-spacing:0.000000pt;}
.ws39_c00373{word-spacing:0.064000pt;}
.ws33_c00373{word-spacing:0.256000pt;}
.ws8_c00373{word-spacing:0.320000pt;}
.ws16_c00373{word-spacing:0.640000pt;}
.wsf_c00373{word-spacing:0.960000pt;}
.ws1c_c00373{word-spacing:1.216000pt;}
.ws1d_c00373{word-spacing:1.536000pt;}
.ws3a_c00373{word-spacing:1.920000pt;}
.ws14_c00373{word-spacing:2.240000pt;}
.ws37_c00373{word-spacing:2.816000pt;}
.ws2a_c00373{word-spacing:3.200000pt;}
.ws1b_c00373{word-spacing:3.840000pt;}
.ws28_c00373{word-spacing:4.096000pt;}
.ws27_c00373{word-spacing:4.160000pt;}
.ws25_c00373{word-spacing:4.480000pt;}
.ws17_c00373{word-spacing:4.736000pt;}
.ws18_c00373{word-spacing:4.800000pt;}
.ws2_c00373{word-spacing:5.120000pt;}
.ws38_c00373{word-spacing:5.440000pt;}
.ws13_c00373{word-spacing:5.696000pt;}
.ws5_c00373{word-spacing:5.964800pt;}
.ws29_c00373{word-spacing:6.016000pt;}
.ws2d_c00373{word-spacing:6.080000pt;}
.ws12_c00373{word-spacing:6.272000pt;}
.wsd_c00373{word-spacing:6.336000pt;}
.wsc_c00373{word-spacing:6.400000pt;}
.ws21_c00373{word-spacing:6.656000pt;}
.ws22_c00373{word-spacing:6.720000pt;}
.ws2b_c00373{word-spacing:6.976000pt;}
.ws2c_c00373{word-spacing:7.040000pt;}
.ws11_c00373{word-spacing:7.296000pt;}
.ws10_c00373{word-spacing:7.360000pt;}
.wsb_c00373{word-spacing:7.680000pt;}
.ws31_c00373{word-spacing:7.936000pt;}
.ws32_c00373{word-spacing:8.000000pt;}
.ws23_c00373{word-spacing:9.856000pt;}
.ws24_c00373{word-spacing:9.920000pt;}
.ws2e_c00373{word-spacing:11.200000pt;}
.ws2f_c00373{word-spacing:11.520000pt;}
.wsa_c00373{word-spacing:12.096000pt;}
.ws36_c00373{word-spacing:12.160000pt;}
.ws34_c00373{word-spacing:13.056000pt;}
.ws1e_c00373{word-spacing:13.376000pt;}
.ws1a_c00373{word-spacing:13.696000pt;}
.ws19_c00373{word-spacing:14.016000pt;}
.ws26_c00373{word-spacing:14.400000pt;}
.ws30_c00373{word-spacing:14.976000pt;}
.ws15_c00373{word-spacing:16.576000pt;}
.ws9_c00373{word-spacing:16.960000pt;}
.ws3b_c00373{word-spacing:17.920000pt;}
.ws6_c00373{word-spacing:25.164800pt;}
.ws35_c00373{word-spacing:25.280000pt;}
.ws1f_c00373{word-spacing:28.416000pt;}
._0_c00373{margin-left:-0.960000pt;}
._3_c00373{width:0.947200pt;}
._7_c00373{width:1.920000pt;}
._6_c00373{width:5.056000pt;}
._4_c00373{width:7.296000pt;}
._5_c00373{width:16.704000pt;}
._1_c00373{width:21.824000pt;}
._2_c00373{width:41.152000pt;}
.fs1_c00373{font-size:58.560000pt;}
.fs0_c00373{font-size:64.000000pt;}
.y0_c00373{bottom:0.000000pt;}
.y1_c00373{bottom:54.887600pt;}
.y21_c00373{bottom:102.619467pt;}
.y20_c00373{bottom:130.219467pt;}
.y1f_c00373{bottom:185.419467pt;}
.y1e_c00373{bottom:213.019467pt;}
.y1d_c00373{bottom:240.619467pt;}
.y1c_c00373{bottom:268.219467pt;}
.y1b_c00373{bottom:295.819467pt;}
.y1a_c00373{bottom:323.419467pt;}
.y19_c00373{bottom:351.019467pt;}
.y18_c00373{bottom:378.619467pt;}
.y17_c00373{bottom:406.219467pt;}
.y16_c00373{bottom:433.819467pt;}
.y15_c00373{bottom:461.419467pt;}
.y14_c00373{bottom:489.019467pt;}
.y23_c00373{bottom:516.619467pt;}
.y13_c00373{bottom:544.219467pt;}
.y12_c00373{bottom:571.819467pt;}
.y11_c00373{bottom:599.419467pt;}
.y10_c00373{bottom:627.019467pt;}
.yf_c00373{bottom:654.619467pt;}
.ye_c00373{bottom:682.219467pt;}
.yd_c00373{bottom:709.739467pt;}
.yc_c00373{bottom:737.339467pt;}
.yb_c00373{bottom:764.939467pt;}
.ya_c00373{bottom:792.539467pt;}
.y9_c00373{bottom:820.139467pt;}
.y22_c00373{bottom:847.739467pt;}
.y8_c00373{bottom:875.339467pt;}
.y7_c00373{bottom:902.939467pt;}
.y6_c00373{bottom:930.539467pt;}
.y5_c00373{bottom:958.139467pt;}
.y4_c00373{bottom:985.739467pt;}
.y3_c00373{bottom:1013.339467pt;}
.y2_c00373{bottom:1061.419467pt;}
.h2_c00373{height:44.800000pt;}
.h3_c00373{height:48.294844pt;}
.h4_c00373{height:68.288000pt;}
.h5_c00373{height:69.376000pt;}
.h0_c00373{height:1122.520000pt;}
.h1_c00373{height:1122.666667pt;}
.w2_c00373{width:0.029333pt;}
.w0_c00373{width:793.701333pt;}
.w1_c00373{width:794.000000pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:48.000000pt;}
.x2_c00373{left:113.410400pt;}
.x3_c00373{left:141.810400pt;}
.x5_c00373{left:611.758933pt;}
.x4_c00373{left:793.672000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00374;src:url('chunks/assets/font_dd9d1a239409f8ea17fd40b4.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00374;src:url('chunks/assets/font_18f7bcd5e88f03f884e30fed.woff2')format("woff");}.ff3_c00374{font-family:ff3_c00374;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00374;src:url('chunks/assets/font_9ff5560394b276a6d03c0b00.woff2')format("woff");}.ff4_c00374{font-family:ff4_c00374;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00374;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00374{font-family:ff5_c00374;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00374;src:url('chunks/assets/font_dd9d1a239409f8ea17fd40b4.woff2')format("woff");}.ff6_c00374{font-family:ff6_c00374;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00374;src:url('chunks/assets/font_18f7bcd5e88f03f884e30fed.woff2')format("woff");}.ff7_c00374{font-family:ff7_c00374;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00374;src:url('chunks/assets/font_e3b9f89b12773e85882083c6.woff2')format("woff");}.ff8_c00374{font-family:ff8_c00374;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00374{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls5_c00374{letter-spacing:-0.360000px;}
.ls7_c00374{letter-spacing:-0.072000px;}
.ls6_c00374{letter-spacing:-0.065880px;}
.ls4_c00374{letter-spacing:0.000000px;}
.ls0_c00374{letter-spacing:0.072000px;}
.ls3_c00374{letter-spacing:0.360000px;}
.ls1_c00374{letter-spacing:23.472000px;}
.ls2_c00374{letter-spacing:33.840000px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00374{word-spacing:-18.072000px;}
.ws0_c00374{word-spacing:-18.000000px;}
.ws3_c00374{word-spacing:-14.823000px;}
.ws21_c00374{word-spacing:-0.360000px;}
.ws4_c00374{word-spacing:-0.144000px;}
.wsf_c00374{word-spacing:-0.072000px;}
.ws8_c00374{word-spacing:0.000000px;}
.ws3a_c00374{word-spacing:0.072000px;}
.ws34_c00374{word-spacing:0.288000px;}
.ws9_c00374{word-spacing:0.360000px;}
.ws17_c00374{word-spacing:0.720000px;}
.ws10_c00374{word-spacing:1.080000px;}
.ws1d_c00374{word-spacing:1.368000px;}
.ws1e_c00374{word-spacing:1.728000px;}
.ws3b_c00374{word-spacing:2.160000px;}
.ws15_c00374{word-spacing:2.520000px;}
.ws38_c00374{word-spacing:3.168000px;}
.ws2b_c00374{word-spacing:3.600000px;}
.ws1c_c00374{word-spacing:4.320000px;}
.ws29_c00374{word-spacing:4.608000px;}
.ws28_c00374{word-spacing:4.680000px;}
.ws26_c00374{word-spacing:5.040000px;}
.ws18_c00374{word-spacing:5.328000px;}
.ws19_c00374{word-spacing:5.400000px;}
.ws2_c00374{word-spacing:5.760000px;}
.ws39_c00374{word-spacing:6.120000px;}
.ws14_c00374{word-spacing:6.408000px;}
.ws7_c00374{word-spacing:6.703200px;}
.ws5_c00374{word-spacing:6.710400px;}
.ws2a_c00374{word-spacing:6.768000px;}
.ws2e_c00374{word-spacing:6.840000px;}
.ws13_c00374{word-spacing:7.056000px;}
.wse_c00374{word-spacing:7.128000px;}
.wsd_c00374{word-spacing:7.200000px;}
.ws22_c00374{word-spacing:7.488000px;}
.ws23_c00374{word-spacing:7.560000px;}
.ws2c_c00374{word-spacing:7.848000px;}
.ws2d_c00374{word-spacing:7.920000px;}
.ws12_c00374{word-spacing:8.208000px;}
.ws11_c00374{word-spacing:8.280000px;}
.wsc_c00374{word-spacing:8.640000px;}
.ws32_c00374{word-spacing:8.928000px;}
.ws33_c00374{word-spacing:9.000000px;}
.ws24_c00374{word-spacing:11.088000px;}
.ws25_c00374{word-spacing:11.160000px;}
.ws2f_c00374{word-spacing:12.600000px;}
.ws30_c00374{word-spacing:12.960000px;}
.wsb_c00374{word-spacing:13.608000px;}
.ws37_c00374{word-spacing:13.680000px;}
.ws35_c00374{word-spacing:14.688000px;}
.ws1f_c00374{word-spacing:15.048000px;}
.ws1b_c00374{word-spacing:15.408000px;}
.ws1a_c00374{word-spacing:15.768000px;}
.ws27_c00374{word-spacing:16.200000px;}
.ws31_c00374{word-spacing:16.848000px;}
.ws16_c00374{word-spacing:18.648000px;}
.wsa_c00374{word-spacing:19.080000px;}
.ws3c_c00374{word-spacing:20.160000px;}
.ws6_c00374{word-spacing:28.310400px;}
.ws36_c00374{word-spacing:28.440000px;}
.ws20_c00374{word-spacing:31.968000px;}
._0_c00374{margin-left:-1.080000px;}
._3_c00374{width:1.065600px;}
._7_c00374{width:2.160000px;}
._6_c00374{width:5.688000px;}
._4_c00374{width:8.208000px;}
._5_c00374{width:18.792000px;}
._1_c00374{width:24.552000px;}
._2_c00374{width:46.296000px;}
.fc2_c00374{color:transparent;}
.fc1_c00374{color:rgb(0,0,0);}
.fc0_c00374{color:rgb(35,31,32);}
.fs1_c00374{font-size:65.880000px;}
.fs0_c00374{font-size:72.000000px;}
.y0_c00374{bottom:0.000000px;}
.y1_c00374{bottom:61.748550px;}
.y21_c00374{bottom:115.446900px;}
.y20_c00374{bottom:146.496900px;}
.y1f_c00374{bottom:208.596900px;}
.y1e_c00374{bottom:239.646900px;}
.y1d_c00374{bottom:270.696900px;}
.y1c_c00374{bottom:301.746900px;}
.y1b_c00374{bottom:332.796900px;}
.y1a_c00374{bottom:363.846900px;}
.y19_c00374{bottom:394.896900px;}
.y18_c00374{bottom:425.946900px;}
.y17_c00374{bottom:456.996900px;}
.y16_c00374{bottom:488.046900px;}
.y15_c00374{bottom:519.096900px;}
.y14_c00374{bottom:550.146900px;}
.y23_c00374{bottom:581.196900px;}
.y13_c00374{bottom:612.246900px;}
.y12_c00374{bottom:643.296900px;}
.y11_c00374{bottom:674.346900px;}
.y10_c00374{bottom:705.396900px;}
.yf_c00374{bottom:736.446900px;}
.ye_c00374{bottom:767.496900px;}
.yd_c00374{bottom:798.456900px;}
.yc_c00374{bottom:829.506900px;}
.yb_c00374{bottom:860.556900px;}
.ya_c00374{bottom:891.606900px;}
.y9_c00374{bottom:922.656900px;}
.y22_c00374{bottom:953.706900px;}
.y8_c00374{bottom:984.756900px;}
.y7_c00374{bottom:1015.806900px;}
.y6_c00374{bottom:1046.856900px;}
.y5_c00374{bottom:1077.906900px;}
.y4_c00374{bottom:1108.956900px;}
.y3_c00374{bottom:1140.006900px;}
.y2_c00374{bottom:1194.096900px;}
.h2_c00374{height:50.400000px;}
.h3_c00374{height:54.331699px;}
.h4_c00374{height:76.824000px;}
.h5_c00374{height:78.048000px;}
.h0_c00374{height:1262.835000px;}
.h1_c00374{height:1263.000000px;}
.w2_c00374{width:0.000000px;}
.w3_c00374{width:0.034500px;}
.w0_c00374{width:892.914000px;}
.w1_c00374{width:893.250000px;}
.x1_c00374{left:-838.913400px;}
.x2_c00374{left:-765.326700px;}
.x3_c00374{left:-733.376700px;}
.x0_c00374{left:0.000000px;}
.x5_c00374{left:127.586550px;}
.x6_c00374{left:159.446550px;}
.x4_c00374{left:688.196400px;}
.x7_c00374{left:804.366150px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls5_c00374{letter-spacing:-0.320000pt;}
.ls7_c00374{letter-spacing:-0.064000pt;}
.ls6_c00374{letter-spacing:-0.058560pt;}
.ls4_c00374{letter-spacing:0.000000pt;}
.ls0_c00374{letter-spacing:0.064000pt;}
.ls3_c00374{letter-spacing:0.320000pt;}
.ls1_c00374{letter-spacing:20.864000pt;}
.ls2_c00374{letter-spacing:30.080000pt;}
.ws1_c00374{word-spacing:-16.064000pt;}
.ws0_c00374{word-spacing:-16.000000pt;}
.ws3_c00374{word-spacing:-13.176000pt;}
.ws21_c00374{word-spacing:-0.320000pt;}
.ws4_c00374{word-spacing:-0.128000pt;}
.wsf_c00374{word-spacing:-0.064000pt;}
.ws8_c00374{word-spacing:0.000000pt;}
.ws3a_c00374{word-spacing:0.064000pt;}
.ws34_c00374{word-spacing:0.256000pt;}
.ws9_c00374{word-spacing:0.320000pt;}
.ws17_c00374{word-spacing:0.640000pt;}
.ws10_c00374{word-spacing:0.960000pt;}
.ws1d_c00374{word-spacing:1.216000pt;}
.ws1e_c00374{word-spacing:1.536000pt;}
.ws3b_c00374{word-spacing:1.920000pt;}
.ws15_c00374{word-spacing:2.240000pt;}
.ws38_c00374{word-spacing:2.816000pt;}
.ws2b_c00374{word-spacing:3.200000pt;}
.ws1c_c00374{word-spacing:3.840000pt;}
.ws29_c00374{word-spacing:4.096000pt;}
.ws28_c00374{word-spacing:4.160000pt;}
.ws26_c00374{word-spacing:4.480000pt;}
.ws18_c00374{word-spacing:4.736000pt;}
.ws19_c00374{word-spacing:4.800000pt;}
.ws2_c00374{word-spacing:5.120000pt;}
.ws39_c00374{word-spacing:5.440000pt;}
.ws14_c00374{word-spacing:5.696000pt;}
.ws7_c00374{word-spacing:5.958400pt;}
.ws5_c00374{word-spacing:5.964800pt;}
.ws2a_c00374{word-spacing:6.016000pt;}
.ws2e_c00374{word-spacing:6.080000pt;}
.ws13_c00374{word-spacing:6.272000pt;}
.wse_c00374{word-spacing:6.336000pt;}
.wsd_c00374{word-spacing:6.400000pt;}
.ws22_c00374{word-spacing:6.656000pt;}
.ws23_c00374{word-spacing:6.720000pt;}
.ws2c_c00374{word-spacing:6.976000pt;}
.ws2d_c00374{word-spacing:7.040000pt;}
.ws12_c00374{word-spacing:7.296000pt;}
.ws11_c00374{word-spacing:7.360000pt;}
.wsc_c00374{word-spacing:7.680000pt;}
.ws32_c00374{word-spacing:7.936000pt;}
.ws33_c00374{word-spacing:8.000000pt;}
.ws24_c00374{word-spacing:9.856000pt;}
.ws25_c00374{word-spacing:9.920000pt;}
.ws2f_c00374{word-spacing:11.200000pt;}
.ws30_c00374{word-spacing:11.520000pt;}
.wsb_c00374{word-spacing:12.096000pt;}
.ws37_c00374{word-spacing:12.160000pt;}
.ws35_c00374{word-spacing:13.056000pt;}
.ws1f_c00374{word-spacing:13.376000pt;}
.ws1b_c00374{word-spacing:13.696000pt;}
.ws1a_c00374{word-spacing:14.016000pt;}
.ws27_c00374{word-spacing:14.400000pt;}
.ws31_c00374{word-spacing:14.976000pt;}
.ws16_c00374{word-spacing:16.576000pt;}
.wsa_c00374{word-spacing:16.960000pt;}
.ws3c_c00374{word-spacing:17.920000pt;}
.ws6_c00374{word-spacing:25.164800pt;}
.ws36_c00374{word-spacing:25.280000pt;}
.ws20_c00374{word-spacing:28.416000pt;}
._0_c00374{margin-left:-0.960000pt;}
._3_c00374{width:0.947200pt;}
._7_c00374{width:1.920000pt;}
._6_c00374{width:5.056000pt;}
._4_c00374{width:7.296000pt;}
._5_c00374{width:16.704000pt;}
._1_c00374{width:21.824000pt;}
._2_c00374{width:41.152000pt;}
.fs1_c00374{font-size:58.560000pt;}
.fs0_c00374{font-size:64.000000pt;}
.y0_c00374{bottom:0.000000pt;}
.y1_c00374{bottom:54.887600pt;}
.y21_c00374{bottom:102.619467pt;}
.y20_c00374{bottom:130.219467pt;}
.y1f_c00374{bottom:185.419467pt;}
.y1e_c00374{bottom:213.019467pt;}
.y1d_c00374{bottom:240.619467pt;}
.y1c_c00374{bottom:268.219467pt;}
.y1b_c00374{bottom:295.819467pt;}
.y1a_c00374{bottom:323.419467pt;}
.y19_c00374{bottom:351.019467pt;}
.y18_c00374{bottom:378.619467pt;}
.y17_c00374{bottom:406.219467pt;}
.y16_c00374{bottom:433.819467pt;}
.y15_c00374{bottom:461.419467pt;}
.y14_c00374{bottom:489.019467pt;}
.y23_c00374{bottom:516.619467pt;}
.y13_c00374{bottom:544.219467pt;}
.y12_c00374{bottom:571.819467pt;}
.y11_c00374{bottom:599.419467pt;}
.y10_c00374{bottom:627.019467pt;}
.yf_c00374{bottom:654.619467pt;}
.ye_c00374{bottom:682.219467pt;}
.yd_c00374{bottom:709.739467pt;}
.yc_c00374{bottom:737.339467pt;}
.yb_c00374{bottom:764.939467pt;}
.ya_c00374{bottom:792.539467pt;}
.y9_c00374{bottom:820.139467pt;}
.y22_c00374{bottom:847.739467pt;}
.y8_c00374{bottom:875.339467pt;}
.y7_c00374{bottom:902.939467pt;}
.y6_c00374{bottom:930.539467pt;}
.y5_c00374{bottom:958.139467pt;}
.y4_c00374{bottom:985.739467pt;}
.y3_c00374{bottom:1013.339467pt;}
.y2_c00374{bottom:1061.419467pt;}
.h2_c00374{height:44.800000pt;}
.h3_c00374{height:48.294844pt;}
.h4_c00374{height:68.288000pt;}
.h5_c00374{height:69.376000pt;}
.h0_c00374{height:1122.520000pt;}
.h1_c00374{height:1122.666667pt;}
.w2_c00374{width:0.000000pt;}
.w3_c00374{width:0.030667pt;}
.w0_c00374{width:793.701333pt;}
.w1_c00374{width:794.000000pt;}
.x1_c00374{left:-745.700800pt;}
.x2_c00374{left:-680.290400pt;}
.x3_c00374{left:-651.890400pt;}
.x0_c00374{left:0.000000pt;}
.x5_c00374{left:113.410267pt;}
.x6_c00374{left:141.730267pt;}
.x4_c00374{left:611.730133pt;}
.x7_c00374{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00375{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
}
.y0_c00375{bottom:0.000000px;}
.h0_c00375{height:1262.835000px;}
.h1_c00375{height:1263.000000px;}
.w0_c00375{width:892.914000px;}
.w1_c00375{width:893.250000px;}
.x0_c00375{left:0.000000px;}
@media print{
.y0_c00375{bottom:0.000000pt;}
.h0_c00375{height:1122.520000pt;}
.h1_c00375{height:1122.666667pt;}
.w0_c00375{width:793.701333pt;}
.w1_c00375{width:794.000000pt;}
.x0_c00375{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_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;}
.sc__c00376{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
}
.y0_c00376{bottom:0.000000px;}
.h0_c00376{height:1262.835000px;}
.h1_c00376{height:1263.000000px;}
.w0_c00376{width:892.914000px;}
.w1_c00376{width:893.250000px;}
.x0_c00376{left:0.000000px;}
@media print{
.y0_c00376{bottom:0.000000pt;}
.h0_c00376{height:1122.520000pt;}
.h1_c00376{height:1122.666667pt;}
.w0_c00376{width:793.701333pt;}
.w1_c00376{width:794.000000pt;}
.x0_c00376{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_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;}
.sc__c00377{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
}
.y0_c00377{bottom:0.000000px;}
.h0_c00377{height:1262.835000px;}
.h1_c00377{height:1263.000000px;}
.w0_c00377{width:892.914000px;}
.w1_c00377{width:893.250000px;}
.x0_c00377{left:0.000000px;}
@media print{
.y0_c00377{bottom:0.000000pt;}
.h0_c00377{height:1122.520000pt;}
.h1_c00377{height:1122.666667pt;}
.w0_c00377{width:793.701333pt;}
.w1_c00377{width:794.000000pt;}
.x0_c00377{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_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00378;src:url('chunks/assets/font_7d68e81f5da9facf59573956.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00378;src:url('chunks/assets/font_6b62f8810252f08c9ccba5ad.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00378;src:url('chunks/assets/font_1ed932ca7b1cfbe59c9b7fb0.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00378;src:url('chunks/assets/font_07bccb4773cc5f7f2cc0aa59.woff2')format("woff");}.ff5_c00378{font-family:ff5_c00378;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00378;src:url('chunks/assets/font_a63b338f2dc2118d008a551e.woff2')format("woff");}.ff6_c00378{font-family:ff6_c00378;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls7_c00378{letter-spacing:-0.288000px;}
.ls6_c00378{letter-spacing:-0.072000px;}
.ls5_c00378{letter-spacing:0.000000px;}
.ls0_c00378{letter-spacing:0.072000px;}
.ls3_c00378{letter-spacing:0.144000px;}
.ls4_c00378{letter-spacing:20.613600px;}
.ls2_c00378{letter-spacing:21.312000px;}
.ls1_c00378{letter-spacing:21.672000px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00378{word-spacing:-18.144000px;}
.ws8_c00378{word-spacing:-18.072000px;}
.ws4_c00378{word-spacing:-18.000000px;}
.ws1f_c00378{word-spacing:-0.432000px;}
.ws16_c00378{word-spacing:-0.144000px;}
.ws9_c00378{word-spacing:-0.131760px;}
.ws5_c00378{word-spacing:-0.072000px;}
.ws1_c00378{word-spacing:0.000000px;}
.ws3_c00378{word-spacing:0.216000px;}
.ws18_c00378{word-spacing:0.288000px;}
.wsd_c00378{word-spacing:0.360000px;}
.wsf_c00378{word-spacing:0.648000px;}
.ws15_c00378{word-spacing:1.728000px;}
.ws14_c00378{word-spacing:2.160000px;}
.ws1d_c00378{word-spacing:2.304000px;}
.ws1c_c00378{word-spacing:2.448000px;}
.ws7_c00378{word-spacing:2.664000px;}
.ws22_c00378{word-spacing:2.736000px;}
.ws19_c00378{word-spacing:2.808000px;}
.ws24_c00378{word-spacing:3.168000px;}
.ws23_c00378{word-spacing:3.240000px;}
.wsa_c00378{word-spacing:3.528000px;}
.ws2_c00378{word-spacing:3.600000px;}
.ws27_c00378{word-spacing:4.248000px;}
.ws26_c00378{word-spacing:4.320000px;}
.wse_c00378{word-spacing:5.328000px;}
.wsb_c00378{word-spacing:5.688000px;}
.ws1b_c00378{word-spacing:6.840000px;}
.ws1a_c00378{word-spacing:8.280000px;}
.ws25_c00378{word-spacing:9.288000px;}
.ws17_c00378{word-spacing:10.440000px;}
.ws20_c00378{word-spacing:11.160000px;}
.ws12_c00378{word-spacing:11.448000px;}
.ws11_c00378{word-spacing:12.024000px;}
.ws10_c00378{word-spacing:12.168000px;}
.ws13_c00378{word-spacing:14.688000px;}
.wsc_c00378{word-spacing:15.120000px;}
.ws1e_c00378{word-spacing:18.360000px;}
.ws21_c00378{word-spacing:20.448000px;}
.ws0_c00378{word-spacing:53.928000px;}
._1_c00378{margin-left:-1.166400px;}
._0_c00378{width:1.080000px;}
.fc1_c00378{color:rgb(0,0,0);}
.fc0_c00378{color:rgb(35,31,32);}
.fs1_c00378{font-size:65.880000px;}
.fs0_c00378{font-size:72.000000px;}
.y0_c00378{bottom:0.000000px;}
.y1_c00378{bottom:61.748550px;}
.y20_c00378{bottom:115.424400px;}
.y1f_c00378{bottom:146.474400px;}
.y1e_c00378{bottom:177.524400px;}
.y1d_c00378{bottom:208.574400px;}
.y1c_c00378{bottom:239.624400px;}
.y1b_c00378{bottom:270.674400px;}
.y1a_c00378{bottom:301.724400px;}
.y19_c00378{bottom:332.774400px;}
.y18_c00378{bottom:363.824400px;}
.y17_c00378{bottom:394.874400px;}
.y16_c00378{bottom:425.924400px;}
.y15_c00378{bottom:456.974400px;}
.y14_c00378{bottom:519.074400px;}
.y13_c00378{bottom:550.124400px;}
.y12_c00378{bottom:581.174400px;}
.y11_c00378{bottom:612.224400px;}
.y10_c00378{bottom:643.274400px;}
.yf_c00378{bottom:674.324400px;}
.ye_c00378{bottom:705.374400px;}
.yd_c00378{bottom:736.424400px;}
.yc_c00378{bottom:767.474400px;}
.yb_c00378{bottom:798.434400px;}
.ya_c00378{bottom:829.484400px;}
.y9_c00378{bottom:860.534400px;}
.y8_c00378{bottom:922.454400px;}
.y7_c00378{bottom:953.504400px;}
.y6_c00378{bottom:1015.784400px;}
.y5_c00378{bottom:1046.834400px;}
.y4_c00378{bottom:1077.884400px;}
.y3_c00378{bottom:1139.804400px;}
.y2_c00378{bottom:1194.074400px;}
.h2_c00378{height:50.400000px;}
.h3_c00378{height:54.331699px;}
.h4_c00378{height:76.824000px;}
.h5_c00378{height:78.048000px;}
.h0_c00378{height:1262.835000px;}
.h1_c00378{height:1263.000000px;}
.w0_c00378{width:892.914000px;}
.w1_c00378{width:893.250000px;}
.x0_c00378{left:0.000000px;}
.x3_c00378{left:127.620000px;}
.x5_c00378{left:154.620000px;}
.x4_c00378{left:159.570000px;}
.x6_c00378{left:187.020000px;}
.x2_c00378{left:684.090000px;}
.x1_c00378{left:804.366150px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls7_c00378{letter-spacing:-0.256000pt;}
.ls6_c00378{letter-spacing:-0.064000pt;}
.ls5_c00378{letter-spacing:0.000000pt;}
.ls0_c00378{letter-spacing:0.064000pt;}
.ls3_c00378{letter-spacing:0.128000pt;}
.ls4_c00378{letter-spacing:18.323200pt;}
.ls2_c00378{letter-spacing:18.944000pt;}
.ls1_c00378{letter-spacing:19.264000pt;}
.ws6_c00378{word-spacing:-16.128000pt;}
.ws8_c00378{word-spacing:-16.064000pt;}
.ws4_c00378{word-spacing:-16.000000pt;}
.ws1f_c00378{word-spacing:-0.384000pt;}
.ws16_c00378{word-spacing:-0.128000pt;}
.ws9_c00378{word-spacing:-0.117120pt;}
.ws5_c00378{word-spacing:-0.064000pt;}
.ws1_c00378{word-spacing:0.000000pt;}
.ws3_c00378{word-spacing:0.192000pt;}
.ws18_c00378{word-spacing:0.256000pt;}
.wsd_c00378{word-spacing:0.320000pt;}
.wsf_c00378{word-spacing:0.576000pt;}
.ws15_c00378{word-spacing:1.536000pt;}
.ws14_c00378{word-spacing:1.920000pt;}
.ws1d_c00378{word-spacing:2.048000pt;}
.ws1c_c00378{word-spacing:2.176000pt;}
.ws7_c00378{word-spacing:2.368000pt;}
.ws22_c00378{word-spacing:2.432000pt;}
.ws19_c00378{word-spacing:2.496000pt;}
.ws24_c00378{word-spacing:2.816000pt;}
.ws23_c00378{word-spacing:2.880000pt;}
.wsa_c00378{word-spacing:3.136000pt;}
.ws2_c00378{word-spacing:3.200000pt;}
.ws27_c00378{word-spacing:3.776000pt;}
.ws26_c00378{word-spacing:3.840000pt;}
.wse_c00378{word-spacing:4.736000pt;}
.wsb_c00378{word-spacing:5.056000pt;}
.ws1b_c00378{word-spacing:6.080000pt;}
.ws1a_c00378{word-spacing:7.360000pt;}
.ws25_c00378{word-spacing:8.256000pt;}
.ws17_c00378{word-spacing:9.280000pt;}
.ws20_c00378{word-spacing:9.920000pt;}
.ws12_c00378{word-spacing:10.176000pt;}
.ws11_c00378{word-spacing:10.688000pt;}
.ws10_c00378{word-spacing:10.816000pt;}
.ws13_c00378{word-spacing:13.056000pt;}
.wsc_c00378{word-spacing:13.440000pt;}
.ws1e_c00378{word-spacing:16.320000pt;}
.ws21_c00378{word-spacing:18.176000pt;}
.ws0_c00378{word-spacing:47.936000pt;}
._1_c00378{margin-left:-1.036800pt;}
._0_c00378{width:0.960000pt;}
.fs1_c00378{font-size:58.560000pt;}
.fs0_c00378{font-size:64.000000pt;}
.y0_c00378{bottom:0.000000pt;}
.y1_c00378{bottom:54.887600pt;}
.y20_c00378{bottom:102.599467pt;}
.y1f_c00378{bottom:130.199467pt;}
.y1e_c00378{bottom:157.799467pt;}
.y1d_c00378{bottom:185.399467pt;}
.y1c_c00378{bottom:212.999467pt;}
.y1b_c00378{bottom:240.599467pt;}
.y1a_c00378{bottom:268.199467pt;}
.y19_c00378{bottom:295.799467pt;}
.y18_c00378{bottom:323.399467pt;}
.y17_c00378{bottom:350.999467pt;}
.y16_c00378{bottom:378.599467pt;}
.y15_c00378{bottom:406.199467pt;}
.y14_c00378{bottom:461.399467pt;}
.y13_c00378{bottom:488.999467pt;}
.y12_c00378{bottom:516.599467pt;}
.y11_c00378{bottom:544.199467pt;}
.y10_c00378{bottom:571.799467pt;}
.yf_c00378{bottom:599.399467pt;}
.ye_c00378{bottom:626.999467pt;}
.yd_c00378{bottom:654.599467pt;}
.yc_c00378{bottom:682.199467pt;}
.yb_c00378{bottom:709.719467pt;}
.ya_c00378{bottom:737.319467pt;}
.y9_c00378{bottom:764.919467pt;}
.y8_c00378{bottom:819.959467pt;}
.y7_c00378{bottom:847.559467pt;}
.y6_c00378{bottom:902.919467pt;}
.y5_c00378{bottom:930.519467pt;}
.y4_c00378{bottom:958.119467pt;}
.y3_c00378{bottom:1013.159467pt;}
.y2_c00378{bottom:1061.399467pt;}
.h2_c00378{height:44.800000pt;}
.h3_c00378{height:48.294844pt;}
.h4_c00378{height:68.288000pt;}
.h5_c00378{height:69.376000pt;}
.h0_c00378{height:1122.520000pt;}
.h1_c00378{height:1122.666667pt;}
.w0_c00378{width:793.701333pt;}
.w1_c00378{width:794.000000pt;}
.x0_c00378{left:0.000000pt;}
.x3_c00378{left:113.440000pt;}
.x5_c00378{left:137.440000pt;}
.x4_c00378{left:141.840000pt;}
.x6_c00378{left:166.240000pt;}
.x2_c00378{left:608.080000pt;}
.x1_c00378{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00379;src:url('chunks/assets/font_254fabc9256b7b4a5eb481a4.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00379;src:url('chunks/assets/font_f5c6af72476ac0ac380676a1.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00379;src:url('chunks/assets/font_f1312525f75f52b63177a76a.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00379;src:url('chunks/assets/font_703831d26e54d6fffa7b48b5.woff2')format("woff");}.ff5_c00379{font-family:ff5_c00379;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls4_c00379{letter-spacing:-0.360000px;}
.ls5_c00379{letter-spacing:-0.288000px;}
.ls3_c00379{letter-spacing:0.000000px;}
.ls0_c00379{letter-spacing:0.072000px;}
.ls1_c00379{letter-spacing:0.144000px;}
.ls2_c00379{letter-spacing:44.280000px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00379{word-spacing:-18.072000px;}
.ws2_c00379{word-spacing:-18.000000px;}
.ws5_c00379{word-spacing:-0.144000px;}
.ws17_c00379{word-spacing:-0.072000px;}
.ws3_c00379{word-spacing:0.000000px;}
.ws11_c00379{word-spacing:0.288000px;}
.wsb_c00379{word-spacing:0.360000px;}
.wse_c00379{word-spacing:0.648000px;}
.ws1a_c00379{word-spacing:0.720000px;}
.ws7_c00379{word-spacing:2.808000px;}
.ws8_c00379{word-spacing:2.880000px;}
.wsd_c00379{word-spacing:3.096000px;}
.wsc_c00379{word-spacing:3.240000px;}
.ws1_c00379{word-spacing:3.600000px;}
.ws4_c00379{word-spacing:3.816000px;}
.ws25_c00379{word-spacing:3.888000px;}
.ws6_c00379{word-spacing:3.960000px;}
.ws15_c00379{word-spacing:6.048000px;}
.ws16_c00379{word-spacing:6.120000px;}
.ws1b_c00379{word-spacing:7.920000px;}
.ws22_c00379{word-spacing:8.568000px;}
.ws21_c00379{word-spacing:8.640000px;}
.ws23_c00379{word-spacing:8.928000px;}
.ws19_c00379{word-spacing:9.360000px;}
.ws18_c00379{word-spacing:9.720000px;}
.ws14_c00379{word-spacing:11.808000px;}
.ws13_c00379{word-spacing:11.880000px;}
.ws1f_c00379{word-spacing:12.888000px;}
.ws24_c00379{word-spacing:15.768000px;}
.ws12_c00379{word-spacing:16.128000px;}
.ws20_c00379{word-spacing:20.808000px;}
.ws9_c00379{word-spacing:21.528000px;}
.ws1d_c00379{word-spacing:22.032000px;}
.ws1e_c00379{word-spacing:22.248000px;}
.wsf_c00379{word-spacing:26.208000px;}
.ws10_c00379{word-spacing:26.280000px;}
.wsa_c00379{word-spacing:29.160000px;}
.ws1c_c00379{word-spacing:33.768000px;}
._0_c00379{margin-left:-1.152000px;}
._1_c00379{width:1.072800px;}
._3_c00379{width:9.432000px;}
._2_c00379{width:12.240000px;}
._4_c00379{width:26.496000px;}
.fc1_c00379{color:rgb(0,0,0);}
.fc0_c00379{color:rgb(35,31,32);}
.fs1_c00379{font-size:65.880000px;}
.fs0_c00379{font-size:72.000000px;}
.y0_c00379{bottom:0.000000px;}
.y1_c00379{bottom:61.748550px;}
.y1e_c00379{bottom:177.524400px;}
.y1d_c00379{bottom:208.574400px;}
.y1c_c00379{bottom:239.624400px;}
.y1b_c00379{bottom:270.674400px;}
.y1a_c00379{bottom:301.724400px;}
.y19_c00379{bottom:332.774400px;}
.y18_c00379{bottom:363.824400px;}
.y17_c00379{bottom:425.744400px;}
.y16_c00379{bottom:488.024400px;}
.y15_c00379{bottom:519.074400px;}
.y14_c00379{bottom:550.124400px;}
.y13_c00379{bottom:581.174400px;}
.y12_c00379{bottom:612.224400px;}
.y11_c00379{bottom:643.274400px;}
.y10_c00379{bottom:674.324400px;}
.yf_c00379{bottom:705.374400px;}
.ye_c00379{bottom:767.474400px;}
.yd_c00379{bottom:798.434400px;}
.yc_c00379{bottom:829.484400px;}
.yb_c00379{bottom:860.534400px;}
.ya_c00379{bottom:891.584400px;}
.y9_c00379{bottom:922.634400px;}
.y8_c00379{bottom:953.684400px;}
.y7_c00379{bottom:984.734400px;}
.y6_c00379{bottom:1015.784400px;}
.y5_c00379{bottom:1046.834400px;}
.y4_c00379{bottom:1077.884400px;}
.y3_c00379{bottom:1108.934400px;}
.y2_c00379{bottom:1194.074400px;}
.h2_c00379{height:50.400000px;}
.h3_c00379{height:54.331699px;}
.h4_c00379{height:76.824000px;}
.h5_c00379{height:78.048000px;}
.h0_c00379{height:1262.835000px;}
.h1_c00379{height:1263.000000px;}
.w0_c00379{width:892.914000px;}
.w1_c00379{width:893.250000px;}
.x0_c00379{left:0.000000px;}
.x1_c00379{left:54.000000px;}
.x2_c00379{left:127.620000px;}
.x4_c00379{left:154.620000px;}
.x3_c00379{left:159.570000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls4_c00379{letter-spacing:-0.320000pt;}
.ls5_c00379{letter-spacing:-0.256000pt;}
.ls3_c00379{letter-spacing:0.000000pt;}
.ls0_c00379{letter-spacing:0.064000pt;}
.ls1_c00379{letter-spacing:0.128000pt;}
.ls2_c00379{letter-spacing:39.360000pt;}
.ws0_c00379{word-spacing:-16.064000pt;}
.ws2_c00379{word-spacing:-16.000000pt;}
.ws5_c00379{word-spacing:-0.128000pt;}
.ws17_c00379{word-spacing:-0.064000pt;}
.ws3_c00379{word-spacing:0.000000pt;}
.ws11_c00379{word-spacing:0.256000pt;}
.wsb_c00379{word-spacing:0.320000pt;}
.wse_c00379{word-spacing:0.576000pt;}
.ws1a_c00379{word-spacing:0.640000pt;}
.ws7_c00379{word-spacing:2.496000pt;}
.ws8_c00379{word-spacing:2.560000pt;}
.wsd_c00379{word-spacing:2.752000pt;}
.wsc_c00379{word-spacing:2.880000pt;}
.ws1_c00379{word-spacing:3.200000pt;}
.ws4_c00379{word-spacing:3.392000pt;}
.ws25_c00379{word-spacing:3.456000pt;}
.ws6_c00379{word-spacing:3.520000pt;}
.ws15_c00379{word-spacing:5.376000pt;}
.ws16_c00379{word-spacing:5.440000pt;}
.ws1b_c00379{word-spacing:7.040000pt;}
.ws22_c00379{word-spacing:7.616000pt;}
.ws21_c00379{word-spacing:7.680000pt;}
.ws23_c00379{word-spacing:7.936000pt;}
.ws19_c00379{word-spacing:8.320000pt;}
.ws18_c00379{word-spacing:8.640000pt;}
.ws14_c00379{word-spacing:10.496000pt;}
.ws13_c00379{word-spacing:10.560000pt;}
.ws1f_c00379{word-spacing:11.456000pt;}
.ws24_c00379{word-spacing:14.016000pt;}
.ws12_c00379{word-spacing:14.336000pt;}
.ws20_c00379{word-spacing:18.496000pt;}
.ws9_c00379{word-spacing:19.136000pt;}
.ws1d_c00379{word-spacing:19.584000pt;}
.ws1e_c00379{word-spacing:19.776000pt;}
.wsf_c00379{word-spacing:23.296000pt;}
.ws10_c00379{word-spacing:23.360000pt;}
.wsa_c00379{word-spacing:25.920000pt;}
.ws1c_c00379{word-spacing:30.016000pt;}
._0_c00379{margin-left:-1.024000pt;}
._1_c00379{width:0.953600pt;}
._3_c00379{width:8.384000pt;}
._2_c00379{width:10.880000pt;}
._4_c00379{width:23.552000pt;}
.fs1_c00379{font-size:58.560000pt;}
.fs0_c00379{font-size:64.000000pt;}
.y0_c00379{bottom:0.000000pt;}
.y1_c00379{bottom:54.887600pt;}
.y1e_c00379{bottom:157.799467pt;}
.y1d_c00379{bottom:185.399467pt;}
.y1c_c00379{bottom:212.999467pt;}
.y1b_c00379{bottom:240.599467pt;}
.y1a_c00379{bottom:268.199467pt;}
.y19_c00379{bottom:295.799467pt;}
.y18_c00379{bottom:323.399467pt;}
.y17_c00379{bottom:378.439467pt;}
.y16_c00379{bottom:433.799467pt;}
.y15_c00379{bottom:461.399467pt;}
.y14_c00379{bottom:488.999467pt;}
.y13_c00379{bottom:516.599467pt;}
.y12_c00379{bottom:544.199467pt;}
.y11_c00379{bottom:571.799467pt;}
.y10_c00379{bottom:599.399467pt;}
.yf_c00379{bottom:626.999467pt;}
.ye_c00379{bottom:682.199467pt;}
.yd_c00379{bottom:709.719467pt;}
.yc_c00379{bottom:737.319467pt;}
.yb_c00379{bottom:764.919467pt;}
.ya_c00379{bottom:792.519467pt;}
.y9_c00379{bottom:820.119467pt;}
.y8_c00379{bottom:847.719467pt;}
.y7_c00379{bottom:875.319467pt;}
.y6_c00379{bottom:902.919467pt;}
.y5_c00379{bottom:930.519467pt;}
.y4_c00379{bottom:958.119467pt;}
.y3_c00379{bottom:985.719467pt;}
.y2_c00379{bottom:1061.399467pt;}
.h2_c00379{height:44.800000pt;}
.h3_c00379{height:48.294844pt;}
.h4_c00379{height:68.288000pt;}
.h5_c00379{height:69.376000pt;}
.h0_c00379{height:1122.520000pt;}
.h1_c00379{height:1122.666667pt;}
.w0_c00379{width:793.701333pt;}
.w1_c00379{width:794.000000pt;}
.x0_c00379{left:0.000000pt;}
.x1_c00379{left:48.000000pt;}
.x2_c00379{left:113.440000pt;}
.x4_c00379{left:137.440000pt;}
.x3_c00379{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00380;src:url('chunks/assets/font_4044076bdda535dbbc5884b7.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00380;src:url('chunks/assets/font_65cc528343119c736dd6fde1.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00380;src:url('chunks/assets/font_22f79edc46e294e818b184f4.woff2')format("woff");}.ff4_c00380{font-family:ff4_c00380;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00380;src:url('chunks/assets/font_4fbbb445d8ca60bd2fd138b2.woff2')format("woff");}.ff5_c00380{font-family:ff5_c00380;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00380;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00380{font-family:ff6_c00380;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00380;src:url('chunks/assets/font_18a8cd5472f1a89ec3d74af5.woff2')format("woff");}.ff7_c00380{font-family:ff7_c00380;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00380;src:url('chunks/assets/font_bc1a1e9b644f0039b5923f34.woff2')format("woff");}.ff8_c00380{font-family:ff8_c00380;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00380;src:url('chunks/assets/font_22f79edc46e294e818b184f4.woff2')format("woff");}.ff9_c00380{font-family:ff9_c00380;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00380;src:url('chunks/assets/font_2d6fb594f1229668b056f6a9.woff2')format("woff");}.ffa_c00380{font-family:ffa_c00380;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00380{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls6_c00380{letter-spacing:-0.360000px;}
.ls7_c00380{letter-spacing:-0.288000px;}
.ls8_c00380{letter-spacing:-0.072000px;}
.ls5_c00380{letter-spacing:0.000000px;}
.ls0_c00380{letter-spacing:0.072000px;}
.ls1_c00380{letter-spacing:0.144000px;}
.ls3_c00380{letter-spacing:27.468000px;}
.ls4_c00380{letter-spacing:30.960000px;}
.ls2_c00380{letter-spacing:44.280000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00380{word-spacing:-18.072000px;}
.ws2_c00380{word-spacing:-18.000000px;}
.ws5_c00380{word-spacing:-17.712000px;}
.ws7_c00380{word-spacing:-0.208800px;}
.wsa_c00380{word-spacing:-0.144000px;}
.ws2b_c00380{word-spacing:-0.131760px;}
.ws1c_c00380{word-spacing:-0.072000px;}
.ws8_c00380{word-spacing:0.000000px;}
.ws16_c00380{word-spacing:0.288000px;}
.ws10_c00380{word-spacing:0.360000px;}
.ws13_c00380{word-spacing:0.648000px;}
.ws1f_c00380{word-spacing:0.720000px;}
.ws39_c00380{word-spacing:1.728000px;}
.ws3_c00380{word-spacing:1.872000px;}
.ws2e_c00380{word-spacing:2.088000px;}
.wsc_c00380{word-spacing:2.808000px;}
.wsd_c00380{word-spacing:2.880000px;}
.ws12_c00380{word-spacing:3.096000px;}
.ws11_c00380{word-spacing:3.240000px;}
.ws1_c00380{word-spacing:3.600000px;}
.ws9_c00380{word-spacing:3.816000px;}
.ws2a_c00380{word-spacing:3.888000px;}
.wsb_c00380{word-spacing:3.960000px;}
.ws1a_c00380{word-spacing:6.048000px;}
.ws1b_c00380{word-spacing:6.120000px;}
.ws31_c00380{word-spacing:6.408000px;}
.ws20_c00380{word-spacing:7.920000px;}
.ws2f_c00380{word-spacing:8.208000px;}
.ws4_c00380{word-spacing:8.424000px;}
.ws27_c00380{word-spacing:8.568000px;}
.ws26_c00380{word-spacing:8.640000px;}
.ws28_c00380{word-spacing:8.928000px;}
.ws33_c00380{word-spacing:9.000000px;}
.ws1e_c00380{word-spacing:9.360000px;}
.ws30_c00380{word-spacing:9.648000px;}
.ws1d_c00380{word-spacing:9.720000px;}
.ws2d_c00380{word-spacing:10.728000px;}
.ws2c_c00380{word-spacing:11.088000px;}
.ws36_c00380{word-spacing:11.160000px;}
.ws35_c00380{word-spacing:11.448000px;}
.ws19_c00380{word-spacing:11.808000px;}
.ws18_c00380{word-spacing:11.880000px;}
.ws24_c00380{word-spacing:12.888000px;}
.ws34_c00380{word-spacing:15.048000px;}
.ws29_c00380{word-spacing:15.768000px;}
.ws38_c00380{word-spacing:15.840000px;}
.ws17_c00380{word-spacing:16.128000px;}
.ws37_c00380{word-spacing:17.208000px;}
.ws6_c00380{word-spacing:17.215200px;}
.ws25_c00380{word-spacing:20.808000px;}
.wse_c00380{word-spacing:21.528000px;}
.ws22_c00380{word-spacing:22.032000px;}
.ws23_c00380{word-spacing:22.248000px;}
.ws32_c00380{word-spacing:24.120000px;}
.ws14_c00380{word-spacing:26.208000px;}
.ws15_c00380{word-spacing:26.280000px;}
.wsf_c00380{word-spacing:29.160000px;}
.ws21_c00380{word-spacing:33.768000px;}
._0_c00380{margin-left:-1.152000px;}
._1_c00380{width:1.072800px;}
._3_c00380{width:9.432000px;}
._2_c00380{width:12.240000px;}
._4_c00380{width:26.496000px;}
.fc2_c00380{color:transparent;}
.fc1_c00380{color:rgb(0,0,0);}
.fc0_c00380{color:rgb(35,31,32);}
.fs1_c00380{font-size:65.880000px;}
.fs0_c00380{font-size:72.000000px;}
.y0_c00380{bottom:0.000000px;}
.y1_c00380{bottom:61.748550px;}
.y26_c00380{bottom:115.424400px;}
.y25_c00380{bottom:146.474400px;}
.y1e_c00380{bottom:177.524400px;}
.y1d_c00380{bottom:208.574400px;}
.y1c_c00380{bottom:239.624400px;}
.y1b_c00380{bottom:270.674400px;}
.y1a_c00380{bottom:301.724400px;}
.y19_c00380{bottom:332.774400px;}
.y18_c00380{bottom:363.824400px;}
.y24_c00380{bottom:394.874400px;}
.y17_c00380{bottom:425.744400px;}
.y23_c00380{bottom:425.924400px;}
.y22_c00380{bottom:487.844400px;}
.y16_c00380{bottom:488.024400px;}
.y21_c00380{bottom:518.894400px;}
.y15_c00380{bottom:519.074400px;}
.y14_c00380{bottom:550.124400px;}
.y13_c00380{bottom:581.174400px;}
.y12_c00380{bottom:612.224400px;}
.y11_c00380{bottom:643.274400px;}
.y10_c00380{bottom:674.324400px;}
.yf_c00380{bottom:705.374400px;}
.y20_c00380{bottom:736.424400px;}
.ye_c00380{bottom:767.474400px;}
.yd_c00380{bottom:798.434400px;}
.yc_c00380{bottom:829.484400px;}
.yb_c00380{bottom:860.534400px;}
.ya_c00380{bottom:891.584400px;}
.y9_c00380{bottom:922.634400px;}
.y8_c00380{bottom:953.684400px;}
.y7_c00380{bottom:984.734400px;}
.y6_c00380{bottom:1015.784400px;}
.y5_c00380{bottom:1046.834400px;}
.y4_c00380{bottom:1077.884400px;}
.y3_c00380{bottom:1108.934400px;}
.y1f_c00380{bottom:1139.984400px;}
.y2_c00380{bottom:1194.074400px;}
.h2_c00380{height:50.400000px;}
.h3_c00380{height:54.331699px;}
.h4_c00380{height:76.824000px;}
.h5_c00380{height:78.048000px;}
.h0_c00380{height:1262.835000px;}
.h1_c00380{height:1263.000000px;}
.w2_c00380{width:0.000000px;}
.w3_c00380{width:0.066000px;}
.w0_c00380{width:892.914000px;}
.w1_c00380{width:893.250000px;}
.x1_c00380{left:-838.913400px;}
.x2_c00380{left:-765.293400px;}
.x4_c00380{left:-738.293400px;}
.x3_c00380{left:-733.343400px;}
.x0_c00380{left:0.000000px;}
.x8_c00380{left:127.620000px;}
.x9_c00380{left:154.620000px;}
.x7_c00380{left:159.480000px;}
.xa_c00380{left:187.020000px;}
.x6_c00380{left:684.090000px;}
.x5_c00380{left:804.366150px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls6_c00380{letter-spacing:-0.320000pt;}
.ls7_c00380{letter-spacing:-0.256000pt;}
.ls8_c00380{letter-spacing:-0.064000pt;}
.ls5_c00380{letter-spacing:0.000000pt;}
.ls0_c00380{letter-spacing:0.064000pt;}
.ls1_c00380{letter-spacing:0.128000pt;}
.ls3_c00380{letter-spacing:24.416000pt;}
.ls4_c00380{letter-spacing:27.520000pt;}
.ls2_c00380{letter-spacing:39.360000pt;}
.ws0_c00380{word-spacing:-16.064000pt;}
.ws2_c00380{word-spacing:-16.000000pt;}
.ws5_c00380{word-spacing:-15.744000pt;}
.ws7_c00380{word-spacing:-0.185600pt;}
.wsa_c00380{word-spacing:-0.128000pt;}
.ws2b_c00380{word-spacing:-0.117120pt;}
.ws1c_c00380{word-spacing:-0.064000pt;}
.ws8_c00380{word-spacing:0.000000pt;}
.ws16_c00380{word-spacing:0.256000pt;}
.ws10_c00380{word-spacing:0.320000pt;}
.ws13_c00380{word-spacing:0.576000pt;}
.ws1f_c00380{word-spacing:0.640000pt;}
.ws39_c00380{word-spacing:1.536000pt;}
.ws3_c00380{word-spacing:1.664000pt;}
.ws2e_c00380{word-spacing:1.856000pt;}
.wsc_c00380{word-spacing:2.496000pt;}
.wsd_c00380{word-spacing:2.560000pt;}
.ws12_c00380{word-spacing:2.752000pt;}
.ws11_c00380{word-spacing:2.880000pt;}
.ws1_c00380{word-spacing:3.200000pt;}
.ws9_c00380{word-spacing:3.392000pt;}
.ws2a_c00380{word-spacing:3.456000pt;}
.wsb_c00380{word-spacing:3.520000pt;}
.ws1a_c00380{word-spacing:5.376000pt;}
.ws1b_c00380{word-spacing:5.440000pt;}
.ws31_c00380{word-spacing:5.696000pt;}
.ws20_c00380{word-spacing:7.040000pt;}
.ws2f_c00380{word-spacing:7.296000pt;}
.ws4_c00380{word-spacing:7.488000pt;}
.ws27_c00380{word-spacing:7.616000pt;}
.ws26_c00380{word-spacing:7.680000pt;}
.ws28_c00380{word-spacing:7.936000pt;}
.ws33_c00380{word-spacing:8.000000pt;}
.ws1e_c00380{word-spacing:8.320000pt;}
.ws30_c00380{word-spacing:8.576000pt;}
.ws1d_c00380{word-spacing:8.640000pt;}
.ws2d_c00380{word-spacing:9.536000pt;}
.ws2c_c00380{word-spacing:9.856000pt;}
.ws36_c00380{word-spacing:9.920000pt;}
.ws35_c00380{word-spacing:10.176000pt;}
.ws19_c00380{word-spacing:10.496000pt;}
.ws18_c00380{word-spacing:10.560000pt;}
.ws24_c00380{word-spacing:11.456000pt;}
.ws34_c00380{word-spacing:13.376000pt;}
.ws29_c00380{word-spacing:14.016000pt;}
.ws38_c00380{word-spacing:14.080000pt;}
.ws17_c00380{word-spacing:14.336000pt;}
.ws37_c00380{word-spacing:15.296000pt;}
.ws6_c00380{word-spacing:15.302400pt;}
.ws25_c00380{word-spacing:18.496000pt;}
.wse_c00380{word-spacing:19.136000pt;}
.ws22_c00380{word-spacing:19.584000pt;}
.ws23_c00380{word-spacing:19.776000pt;}
.ws32_c00380{word-spacing:21.440000pt;}
.ws14_c00380{word-spacing:23.296000pt;}
.ws15_c00380{word-spacing:23.360000pt;}
.wsf_c00380{word-spacing:25.920000pt;}
.ws21_c00380{word-spacing:30.016000pt;}
._0_c00380{margin-left:-1.024000pt;}
._1_c00380{width:0.953600pt;}
._3_c00380{width:8.384000pt;}
._2_c00380{width:10.880000pt;}
._4_c00380{width:23.552000pt;}
.fs1_c00380{font-size:58.560000pt;}
.fs0_c00380{font-size:64.000000pt;}
.y0_c00380{bottom:0.000000pt;}
.y1_c00380{bottom:54.887600pt;}
.y26_c00380{bottom:102.599467pt;}
.y25_c00380{bottom:130.199467pt;}
.y1e_c00380{bottom:157.799467pt;}
.y1d_c00380{bottom:185.399467pt;}
.y1c_c00380{bottom:212.999467pt;}
.y1b_c00380{bottom:240.599467pt;}
.y1a_c00380{bottom:268.199467pt;}
.y19_c00380{bottom:295.799467pt;}
.y18_c00380{bottom:323.399467pt;}
.y24_c00380{bottom:350.999467pt;}
.y17_c00380{bottom:378.439467pt;}
.y23_c00380{bottom:378.599467pt;}
.y22_c00380{bottom:433.639467pt;}
.y16_c00380{bottom:433.799467pt;}
.y21_c00380{bottom:461.239467pt;}
.y15_c00380{bottom:461.399467pt;}
.y14_c00380{bottom:488.999467pt;}
.y13_c00380{bottom:516.599467pt;}
.y12_c00380{bottom:544.199467pt;}
.y11_c00380{bottom:571.799467pt;}
.y10_c00380{bottom:599.399467pt;}
.yf_c00380{bottom:626.999467pt;}
.y20_c00380{bottom:654.599467pt;}
.ye_c00380{bottom:682.199467pt;}
.yd_c00380{bottom:709.719467pt;}
.yc_c00380{bottom:737.319467pt;}
.yb_c00380{bottom:764.919467pt;}
.ya_c00380{bottom:792.519467pt;}
.y9_c00380{bottom:820.119467pt;}
.y8_c00380{bottom:847.719467pt;}
.y7_c00380{bottom:875.319467pt;}
.y6_c00380{bottom:902.919467pt;}
.y5_c00380{bottom:930.519467pt;}
.y4_c00380{bottom:958.119467pt;}
.y3_c00380{bottom:985.719467pt;}
.y1f_c00380{bottom:1013.319467pt;}
.y2_c00380{bottom:1061.399467pt;}
.h2_c00380{height:44.800000pt;}
.h3_c00380{height:48.294844pt;}
.h4_c00380{height:68.288000pt;}
.h5_c00380{height:69.376000pt;}
.h0_c00380{height:1122.520000pt;}
.h1_c00380{height:1122.666667pt;}
.w2_c00380{width:0.000000pt;}
.w3_c00380{width:0.058667pt;}
.w0_c00380{width:793.701333pt;}
.w1_c00380{width:794.000000pt;}
.x1_c00380{left:-745.700800pt;}
.x2_c00380{left:-680.260800pt;}
.x4_c00380{left:-656.260800pt;}
.x3_c00380{left:-651.860800pt;}
.x0_c00380{left:0.000000pt;}
.x8_c00380{left:113.440000pt;}
.x9_c00380{left:137.440000pt;}
.x7_c00380{left:141.760000pt;}
.xa_c00380{left:166.240000pt;}
.x6_c00380{left:608.080000pt;}
.x5_c00380{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00381;src:url('chunks/assets/font_87266d7d21d1074fdf418344.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00381;src:url('chunks/assets/font_ef78ffb9b02f80101b1fd6fd.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls8_c00381{letter-spacing:-0.576000px;}
.ls9_c00381{letter-spacing:-0.360000px;}
.ls7_c00381{letter-spacing:-0.288000px;}
.ls6_c00381{letter-spacing:-0.216000px;}
.lsa_c00381{letter-spacing:-0.072000px;}
.ls5_c00381{letter-spacing:0.000000px;}
.ls0_c00381{letter-spacing:0.072000px;}
.ls1_c00381{letter-spacing:0.144000px;}
.ls4_c00381{letter-spacing:20.520000px;}
.ls2_c00381{letter-spacing:25.214400px;}
.ls3_c00381{letter-spacing:29.160000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00381{word-spacing:-18.144000px;}
.ws1_c00381{word-spacing:-18.072000px;}
.ws0_c00381{word-spacing:-18.000000px;}
.ws6_c00381{word-spacing:-17.784000px;}
.wsf_c00381{word-spacing:-0.072000px;}
.ws9_c00381{word-spacing:0.000000px;}
.ws1c_c00381{word-spacing:0.288000px;}
.ws22_c00381{word-spacing:1.728000px;}
.ws1a_c00381{word-spacing:2.088000px;}
.ws1b_c00381{word-spacing:2.160000px;}
.ws2c_c00381{word-spacing:2.448000px;}
.ws2b_c00381{word-spacing:2.520000px;}
.ws16_c00381{word-spacing:2.664000px;}
.ws18_c00381{word-spacing:2.736000px;}
.ws17_c00381{word-spacing:2.880000px;}
.wsd_c00381{word-spacing:3.096000px;}
.wsc_c00381{word-spacing:3.168000px;}
.wsb_c00381{word-spacing:3.240000px;}
.wse_c00381{word-spacing:3.672000px;}
.ws15_c00381{word-spacing:4.896000px;}
.ws14_c00381{word-spacing:4.968000px;}
.ws23_c00381{word-spacing:5.256000px;}
.ws26_c00381{word-spacing:7.128000px;}
.ws27_c00381{word-spacing:7.200000px;}
.ws2f_c00381{word-spacing:7.416000px;}
.ws2e_c00381{word-spacing:7.560000px;}
.ws2d_c00381{word-spacing:7.848000px;}
.ws11_c00381{word-spacing:10.440000px;}
.ws2a_c00381{word-spacing:11.016000px;}
.ws28_c00381{word-spacing:11.088000px;}
.ws4_c00381{word-spacing:11.232000px;}
.ws29_c00381{word-spacing:11.736000px;}
.ws3_c00381{word-spacing:11.808000px;}
.ws1f_c00381{word-spacing:12.168000px;}
.ws1e_c00381{word-spacing:12.528000px;}
.ws1d_c00381{word-spacing:12.600000px;}
.ws13_c00381{word-spacing:15.048000px;}
.ws12_c00381{word-spacing:15.480000px;}
.ws25_c00381{word-spacing:15.768000px;}
.ws24_c00381{word-spacing:15.840000px;}
.wsa_c00381{word-spacing:16.128000px;}
.ws2_c00381{word-spacing:17.784000px;}
.ws30_c00381{word-spacing:18.000000px;}
.ws8_c00381{word-spacing:18.072000px;}
.ws7_c00381{word-spacing:18.144000px;}
.ws19_c00381{word-spacing:18.648000px;}
.ws10_c00381{word-spacing:22.968000px;}
.ws20_c00381{word-spacing:24.048000px;}
.ws21_c00381{word-spacing:24.408000px;}
._0_c00381{margin-left:-1.008000px;}
._7_c00381{width:1.051200px;}
._2_c00381{width:2.448000px;}
._4_c00381{width:5.472000px;}
._6_c00381{width:15.912000px;}
._1_c00381{width:22.104000px;}
._5_c00381{width:33.912000px;}
._3_c00381{width:36.864000px;}
.fc1_c00381{color:rgb(0,0,0);}
.fc0_c00381{color:rgb(35,31,32);}
.fs1_c00381{font-size:65.880000px;}
.fs0_c00381{font-size:72.000000px;}
.y0_c00381{bottom:0.000000px;}
.y1_c00381{bottom:61.748550px;}
.y1f_c00381{bottom:177.524400px;}
.y1e_c00381{bottom:208.574400px;}
.y1d_c00381{bottom:239.624400px;}
.y1c_c00381{bottom:270.674400px;}
.y1b_c00381{bottom:332.774400px;}
.y1a_c00381{bottom:363.824400px;}
.y19_c00381{bottom:394.874400px;}
.y18_c00381{bottom:425.924400px;}
.y17_c00381{bottom:456.974400px;}
.y16_c00381{bottom:488.024400px;}
.y15_c00381{bottom:519.074400px;}
.y14_c00381{bottom:550.124400px;}
.y13_c00381{bottom:581.174400px;}
.y12_c00381{bottom:612.224400px;}
.y11_c00381{bottom:643.274400px;}
.y10_c00381{bottom:705.374400px;}
.yf_c00381{bottom:736.424400px;}
.ye_c00381{bottom:767.474400px;}
.yd_c00381{bottom:798.434400px;}
.yc_c00381{bottom:829.484400px;}
.yb_c00381{bottom:860.534400px;}
.ya_c00381{bottom:891.584400px;}
.y9_c00381{bottom:922.634400px;}
.y8_c00381{bottom:984.734400px;}
.y7_c00381{bottom:1015.784400px;}
.y6_c00381{bottom:1046.834400px;}
.y5_c00381{bottom:1077.884400px;}
.y4_c00381{bottom:1108.934400px;}
.y3_c00381{bottom:1139.984400px;}
.y2_c00381{bottom:1194.074400px;}
.h2_c00381{height:50.400000px;}
.h3_c00381{height:54.331699px;}
.h4_c00381{height:76.824000px;}
.h0_c00381{height:1262.835000px;}
.h1_c00381{height:1263.000000px;}
.w0_c00381{width:892.914000px;}
.w1_c00381{width:893.250000px;}
.x0_c00381{left:0.000000px;}
.x1_c00381{left:54.000000px;}
.x2_c00381{left:127.620000px;}
.x3_c00381{left:159.480000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls8_c00381{letter-spacing:-0.512000pt;}
.ls9_c00381{letter-spacing:-0.320000pt;}
.ls7_c00381{letter-spacing:-0.256000pt;}
.ls6_c00381{letter-spacing:-0.192000pt;}
.lsa_c00381{letter-spacing:-0.064000pt;}
.ls5_c00381{letter-spacing:0.000000pt;}
.ls0_c00381{letter-spacing:0.064000pt;}
.ls1_c00381{letter-spacing:0.128000pt;}
.ls4_c00381{letter-spacing:18.240000pt;}
.ls2_c00381{letter-spacing:22.412800pt;}
.ls3_c00381{letter-spacing:25.920000pt;}
.ws5_c00381{word-spacing:-16.128000pt;}
.ws1_c00381{word-spacing:-16.064000pt;}
.ws0_c00381{word-spacing:-16.000000pt;}
.ws6_c00381{word-spacing:-15.808000pt;}
.wsf_c00381{word-spacing:-0.064000pt;}
.ws9_c00381{word-spacing:0.000000pt;}
.ws1c_c00381{word-spacing:0.256000pt;}
.ws22_c00381{word-spacing:1.536000pt;}
.ws1a_c00381{word-spacing:1.856000pt;}
.ws1b_c00381{word-spacing:1.920000pt;}
.ws2c_c00381{word-spacing:2.176000pt;}
.ws2b_c00381{word-spacing:2.240000pt;}
.ws16_c00381{word-spacing:2.368000pt;}
.ws18_c00381{word-spacing:2.432000pt;}
.ws17_c00381{word-spacing:2.560000pt;}
.wsd_c00381{word-spacing:2.752000pt;}
.wsc_c00381{word-spacing:2.816000pt;}
.wsb_c00381{word-spacing:2.880000pt;}
.wse_c00381{word-spacing:3.264000pt;}
.ws15_c00381{word-spacing:4.352000pt;}
.ws14_c00381{word-spacing:4.416000pt;}
.ws23_c00381{word-spacing:4.672000pt;}
.ws26_c00381{word-spacing:6.336000pt;}
.ws27_c00381{word-spacing:6.400000pt;}
.ws2f_c00381{word-spacing:6.592000pt;}
.ws2e_c00381{word-spacing:6.720000pt;}
.ws2d_c00381{word-spacing:6.976000pt;}
.ws11_c00381{word-spacing:9.280000pt;}
.ws2a_c00381{word-spacing:9.792000pt;}
.ws28_c00381{word-spacing:9.856000pt;}
.ws4_c00381{word-spacing:9.984000pt;}
.ws29_c00381{word-spacing:10.432000pt;}
.ws3_c00381{word-spacing:10.496000pt;}
.ws1f_c00381{word-spacing:10.816000pt;}
.ws1e_c00381{word-spacing:11.136000pt;}
.ws1d_c00381{word-spacing:11.200000pt;}
.ws13_c00381{word-spacing:13.376000pt;}
.ws12_c00381{word-spacing:13.760000pt;}
.ws25_c00381{word-spacing:14.016000pt;}
.ws24_c00381{word-spacing:14.080000pt;}
.wsa_c00381{word-spacing:14.336000pt;}
.ws2_c00381{word-spacing:15.808000pt;}
.ws30_c00381{word-spacing:16.000000pt;}
.ws8_c00381{word-spacing:16.064000pt;}
.ws7_c00381{word-spacing:16.128000pt;}
.ws19_c00381{word-spacing:16.576000pt;}
.ws10_c00381{word-spacing:20.416000pt;}
.ws20_c00381{word-spacing:21.376000pt;}
.ws21_c00381{word-spacing:21.696000pt;}
._0_c00381{margin-left:-0.896000pt;}
._7_c00381{width:0.934400pt;}
._2_c00381{width:2.176000pt;}
._4_c00381{width:4.864000pt;}
._6_c00381{width:14.144000pt;}
._1_c00381{width:19.648000pt;}
._5_c00381{width:30.144000pt;}
._3_c00381{width:32.768000pt;}
.fs1_c00381{font-size:58.560000pt;}
.fs0_c00381{font-size:64.000000pt;}
.y0_c00381{bottom:0.000000pt;}
.y1_c00381{bottom:54.887600pt;}
.y1f_c00381{bottom:157.799467pt;}
.y1e_c00381{bottom:185.399467pt;}
.y1d_c00381{bottom:212.999467pt;}
.y1c_c00381{bottom:240.599467pt;}
.y1b_c00381{bottom:295.799467pt;}
.y1a_c00381{bottom:323.399467pt;}
.y19_c00381{bottom:350.999467pt;}
.y18_c00381{bottom:378.599467pt;}
.y17_c00381{bottom:406.199467pt;}
.y16_c00381{bottom:433.799467pt;}
.y15_c00381{bottom:461.399467pt;}
.y14_c00381{bottom:488.999467pt;}
.y13_c00381{bottom:516.599467pt;}
.y12_c00381{bottom:544.199467pt;}
.y11_c00381{bottom:571.799467pt;}
.y10_c00381{bottom:626.999467pt;}
.yf_c00381{bottom:654.599467pt;}
.ye_c00381{bottom:682.199467pt;}
.yd_c00381{bottom:709.719467pt;}
.yc_c00381{bottom:737.319467pt;}
.yb_c00381{bottom:764.919467pt;}
.ya_c00381{bottom:792.519467pt;}
.y9_c00381{bottom:820.119467pt;}
.y8_c00381{bottom:875.319467pt;}
.y7_c00381{bottom:902.919467pt;}
.y6_c00381{bottom:930.519467pt;}
.y5_c00381{bottom:958.119467pt;}
.y4_c00381{bottom:985.719467pt;}
.y3_c00381{bottom:1013.319467pt;}
.y2_c00381{bottom:1061.399467pt;}
.h2_c00381{height:44.800000pt;}
.h3_c00381{height:48.294844pt;}
.h4_c00381{height:68.288000pt;}
.h0_c00381{height:1122.520000pt;}
.h1_c00381{height:1122.666667pt;}
.w0_c00381{width:793.701333pt;}
.w1_c00381{width:794.000000pt;}
.x0_c00381{left:0.000000pt;}
.x1_c00381{left:48.000000pt;}
.x2_c00381{left:113.440000pt;}
.x3_c00381{left:141.760000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00382;src:url('chunks/assets/font_0ab0afb8db5d139aef8a7da1.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00382;src:url('chunks/assets/font_4c73d130ee2525b0a6858e6f.woff2')format("woff");}.ff3_c00382{font-family:ff3_c00382;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00382;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00382;src:url('chunks/assets/font_c98d3ba293ef8dd49097bca1.woff2')format("woff");}.ff5_c00382{font-family:ff5_c00382;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00382;src:url('chunks/assets/font_ccd8e767bed8e29e83be1833.woff2')format("woff");}.ff6_c00382{font-family:ff6_c00382;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls8_c00382{letter-spacing:-0.576000px;}
.ls9_c00382{letter-spacing:-0.360000px;}
.ls7_c00382{letter-spacing:-0.288000px;}
.ls6_c00382{letter-spacing:-0.216000px;}
.lsa_c00382{letter-spacing:-0.072000px;}
.ls5_c00382{letter-spacing:0.000000px;}
.ls0_c00382{letter-spacing:0.072000px;}
.ls1_c00382{letter-spacing:0.144000px;}
.ls4_c00382{letter-spacing:20.520000px;}
.ls2_c00382{letter-spacing:25.214400px;}
.ls3_c00382{letter-spacing:29.160000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00382{word-spacing:-18.144000px;}
.ws1_c00382{word-spacing:-18.072000px;}
.ws0_c00382{word-spacing:-18.000000px;}
.ws6_c00382{word-spacing:-17.784000px;}
.ws37_c00382{word-spacing:-0.576000px;}
.ws31_c00382{word-spacing:-0.131760px;}
.wsf_c00382{word-spacing:-0.072000px;}
.ws9_c00382{word-spacing:0.000000px;}
.ws1c_c00382{word-spacing:0.288000px;}
.ws36_c00382{word-spacing:0.648000px;}
.ws22_c00382{word-spacing:1.728000px;}
.ws1a_c00382{word-spacing:2.088000px;}
.ws1b_c00382{word-spacing:2.160000px;}
.ws2c_c00382{word-spacing:2.448000px;}
.ws2b_c00382{word-spacing:2.520000px;}
.ws16_c00382{word-spacing:2.664000px;}
.ws18_c00382{word-spacing:2.736000px;}
.ws38_c00382{word-spacing:2.808000px;}
.ws17_c00382{word-spacing:2.880000px;}
.wsd_c00382{word-spacing:3.096000px;}
.wsc_c00382{word-spacing:3.168000px;}
.wsb_c00382{word-spacing:3.240000px;}
.ws34_c00382{word-spacing:3.528000px;}
.ws33_c00382{word-spacing:3.600000px;}
.wse_c00382{word-spacing:3.672000px;}
.ws3a_c00382{word-spacing:4.248000px;}
.ws39_c00382{word-spacing:4.320000px;}
.ws40_c00382{word-spacing:4.608000px;}
.ws15_c00382{word-spacing:4.896000px;}
.ws14_c00382{word-spacing:4.968000px;}
.ws23_c00382{word-spacing:5.256000px;}
.ws3e_c00382{word-spacing:5.328000px;}
.ws35_c00382{word-spacing:6.048000px;}
.ws3f_c00382{word-spacing:6.120000px;}
.ws26_c00382{word-spacing:7.128000px;}
.ws27_c00382{word-spacing:7.200000px;}
.ws2f_c00382{word-spacing:7.416000px;}
.ws2e_c00382{word-spacing:7.560000px;}
.ws2d_c00382{word-spacing:7.848000px;}
.ws3c_c00382{word-spacing:9.360000px;}
.ws3d_c00382{word-spacing:10.368000px;}
.ws11_c00382{word-spacing:10.440000px;}
.ws2a_c00382{word-spacing:11.016000px;}
.ws28_c00382{word-spacing:11.088000px;}
.ws4_c00382{word-spacing:11.232000px;}
.ws29_c00382{word-spacing:11.736000px;}
.ws3_c00382{word-spacing:11.808000px;}
.ws42_c00382{word-spacing:11.880000px;}
.ws1f_c00382{word-spacing:12.168000px;}
.ws1e_c00382{word-spacing:12.528000px;}
.ws1d_c00382{word-spacing:12.600000px;}
.ws3b_c00382{word-spacing:12.888000px;}
.ws32_c00382{word-spacing:13.968000px;}
.ws13_c00382{word-spacing:15.048000px;}
.ws12_c00382{word-spacing:15.480000px;}
.ws25_c00382{word-spacing:15.768000px;}
.ws24_c00382{word-spacing:15.840000px;}
.wsa_c00382{word-spacing:16.128000px;}
.ws2_c00382{word-spacing:17.784000px;}
.ws30_c00382{word-spacing:18.000000px;}
.ws8_c00382{word-spacing:18.072000px;}
.ws7_c00382{word-spacing:18.144000px;}
.ws19_c00382{word-spacing:18.648000px;}
.ws41_c00382{word-spacing:22.248000px;}
.ws10_c00382{word-spacing:22.968000px;}
.ws20_c00382{word-spacing:24.048000px;}
.ws21_c00382{word-spacing:24.408000px;}
._0_c00382{margin-left:-1.008000px;}
._7_c00382{width:1.051200px;}
._2_c00382{width:2.448000px;}
._4_c00382{width:5.472000px;}
._6_c00382{width:15.912000px;}
._1_c00382{width:22.104000px;}
._5_c00382{width:33.912000px;}
._3_c00382{width:36.864000px;}
.fc2_c00382{color:transparent;}
.fc1_c00382{color:rgb(0,0,0);}
.fc0_c00382{color:rgb(35,31,32);}
.fs1_c00382{font-size:65.880000px;}
.fs0_c00382{font-size:72.000000px;}
.y0_c00382{bottom:0.000000px;}
.y1_c00382{bottom:61.748550px;}
.y1f_c00382{bottom:177.524400px;}
.y1e_c00382{bottom:208.574400px;}
.y1d_c00382{bottom:239.624400px;}
.y1c_c00382{bottom:270.674400px;}
.y1b_c00382{bottom:332.774400px;}
.y1a_c00382{bottom:363.824400px;}
.y19_c00382{bottom:394.874400px;}
.y18_c00382{bottom:425.924400px;}
.y17_c00382{bottom:456.974400px;}
.y16_c00382{bottom:488.024400px;}
.y15_c00382{bottom:519.074400px;}
.y14_c00382{bottom:550.124400px;}
.y13_c00382{bottom:581.174400px;}
.y12_c00382{bottom:612.224400px;}
.y11_c00382{bottom:643.274400px;}
.y21_c00382{bottom:674.324400px;}
.y10_c00382{bottom:705.374400px;}
.yf_c00382{bottom:736.424400px;}
.ye_c00382{bottom:767.474400px;}
.yd_c00382{bottom:798.434400px;}
.yc_c00382{bottom:829.484400px;}
.yb_c00382{bottom:860.534400px;}
.ya_c00382{bottom:891.584400px;}
.y9_c00382{bottom:922.634400px;}
.y20_c00382{bottom:953.684400px;}
.y8_c00382{bottom:984.734400px;}
.y7_c00382{bottom:1015.784400px;}
.y6_c00382{bottom:1046.834400px;}
.y5_c00382{bottom:1077.884400px;}
.y4_c00382{bottom:1108.934400px;}
.y3_c00382{bottom:1139.984400px;}
.y2_c00382{bottom:1194.074400px;}
.h2_c00382{height:50.400000px;}
.h3_c00382{height:54.331699px;}
.h4_c00382{height:76.824000px;}
.h0_c00382{height:1262.835000px;}
.h1_c00382{height:1263.000000px;}
.w2_c00382{width:0.000000px;}
.w3_c00382{width:0.066000px;}
.w0_c00382{width:892.914000px;}
.w1_c00382{width:893.250000px;}
.x1_c00382{left:-838.913400px;}
.x2_c00382{left:-765.293400px;}
.x3_c00382{left:-733.433400px;}
.x0_c00382{left:0.000000px;}
.x7_c00382{left:127.620000px;}
.x6_c00382{left:159.480000px;}
.x5_c00382{left:684.090000px;}
.x4_c00382{left:804.366150px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls8_c00382{letter-spacing:-0.512000pt;}
.ls9_c00382{letter-spacing:-0.320000pt;}
.ls7_c00382{letter-spacing:-0.256000pt;}
.ls6_c00382{letter-spacing:-0.192000pt;}
.lsa_c00382{letter-spacing:-0.064000pt;}
.ls5_c00382{letter-spacing:0.000000pt;}
.ls0_c00382{letter-spacing:0.064000pt;}
.ls1_c00382{letter-spacing:0.128000pt;}
.ls4_c00382{letter-spacing:18.240000pt;}
.ls2_c00382{letter-spacing:22.412800pt;}
.ls3_c00382{letter-spacing:25.920000pt;}
.ws5_c00382{word-spacing:-16.128000pt;}
.ws1_c00382{word-spacing:-16.064000pt;}
.ws0_c00382{word-spacing:-16.000000pt;}
.ws6_c00382{word-spacing:-15.808000pt;}
.ws37_c00382{word-spacing:-0.512000pt;}
.ws31_c00382{word-spacing:-0.117120pt;}
.wsf_c00382{word-spacing:-0.064000pt;}
.ws9_c00382{word-spacing:0.000000pt;}
.ws1c_c00382{word-spacing:0.256000pt;}
.ws36_c00382{word-spacing:0.576000pt;}
.ws22_c00382{word-spacing:1.536000pt;}
.ws1a_c00382{word-spacing:1.856000pt;}
.ws1b_c00382{word-spacing:1.920000pt;}
.ws2c_c00382{word-spacing:2.176000pt;}
.ws2b_c00382{word-spacing:2.240000pt;}
.ws16_c00382{word-spacing:2.368000pt;}
.ws18_c00382{word-spacing:2.432000pt;}
.ws38_c00382{word-spacing:2.496000pt;}
.ws17_c00382{word-spacing:2.560000pt;}
.wsd_c00382{word-spacing:2.752000pt;}
.wsc_c00382{word-spacing:2.816000pt;}
.wsb_c00382{word-spacing:2.880000pt;}
.ws34_c00382{word-spacing:3.136000pt;}
.ws33_c00382{word-spacing:3.200000pt;}
.wse_c00382{word-spacing:3.264000pt;}
.ws3a_c00382{word-spacing:3.776000pt;}
.ws39_c00382{word-spacing:3.840000pt;}
.ws40_c00382{word-spacing:4.096000pt;}
.ws15_c00382{word-spacing:4.352000pt;}
.ws14_c00382{word-spacing:4.416000pt;}
.ws23_c00382{word-spacing:4.672000pt;}
.ws3e_c00382{word-spacing:4.736000pt;}
.ws35_c00382{word-spacing:5.376000pt;}
.ws3f_c00382{word-spacing:5.440000pt;}
.ws26_c00382{word-spacing:6.336000pt;}
.ws27_c00382{word-spacing:6.400000pt;}
.ws2f_c00382{word-spacing:6.592000pt;}
.ws2e_c00382{word-spacing:6.720000pt;}
.ws2d_c00382{word-spacing:6.976000pt;}
.ws3c_c00382{word-spacing:8.320000pt;}
.ws3d_c00382{word-spacing:9.216000pt;}
.ws11_c00382{word-spacing:9.280000pt;}
.ws2a_c00382{word-spacing:9.792000pt;}
.ws28_c00382{word-spacing:9.856000pt;}
.ws4_c00382{word-spacing:9.984000pt;}
.ws29_c00382{word-spacing:10.432000pt;}
.ws3_c00382{word-spacing:10.496000pt;}
.ws42_c00382{word-spacing:10.560000pt;}
.ws1f_c00382{word-spacing:10.816000pt;}
.ws1e_c00382{word-spacing:11.136000pt;}
.ws1d_c00382{word-spacing:11.200000pt;}
.ws3b_c00382{word-spacing:11.456000pt;}
.ws32_c00382{word-spacing:12.416000pt;}
.ws13_c00382{word-spacing:13.376000pt;}
.ws12_c00382{word-spacing:13.760000pt;}
.ws25_c00382{word-spacing:14.016000pt;}
.ws24_c00382{word-spacing:14.080000pt;}
.wsa_c00382{word-spacing:14.336000pt;}
.ws2_c00382{word-spacing:15.808000pt;}
.ws30_c00382{word-spacing:16.000000pt;}
.ws8_c00382{word-spacing:16.064000pt;}
.ws7_c00382{word-spacing:16.128000pt;}
.ws19_c00382{word-spacing:16.576000pt;}
.ws41_c00382{word-spacing:19.776000pt;}
.ws10_c00382{word-spacing:20.416000pt;}
.ws20_c00382{word-spacing:21.376000pt;}
.ws21_c00382{word-spacing:21.696000pt;}
._0_c00382{margin-left:-0.896000pt;}
._7_c00382{width:0.934400pt;}
._2_c00382{width:2.176000pt;}
._4_c00382{width:4.864000pt;}
._6_c00382{width:14.144000pt;}
._1_c00382{width:19.648000pt;}
._5_c00382{width:30.144000pt;}
._3_c00382{width:32.768000pt;}
.fs1_c00382{font-size:58.560000pt;}
.fs0_c00382{font-size:64.000000pt;}
.y0_c00382{bottom:0.000000pt;}
.y1_c00382{bottom:54.887600pt;}
.y1f_c00382{bottom:157.799467pt;}
.y1e_c00382{bottom:185.399467pt;}
.y1d_c00382{bottom:212.999467pt;}
.y1c_c00382{bottom:240.599467pt;}
.y1b_c00382{bottom:295.799467pt;}
.y1a_c00382{bottom:323.399467pt;}
.y19_c00382{bottom:350.999467pt;}
.y18_c00382{bottom:378.599467pt;}
.y17_c00382{bottom:406.199467pt;}
.y16_c00382{bottom:433.799467pt;}
.y15_c00382{bottom:461.399467pt;}
.y14_c00382{bottom:488.999467pt;}
.y13_c00382{bottom:516.599467pt;}
.y12_c00382{bottom:544.199467pt;}
.y11_c00382{bottom:571.799467pt;}
.y21_c00382{bottom:599.399467pt;}
.y10_c00382{bottom:626.999467pt;}
.yf_c00382{bottom:654.599467pt;}
.ye_c00382{bottom:682.199467pt;}
.yd_c00382{bottom:709.719467pt;}
.yc_c00382{bottom:737.319467pt;}
.yb_c00382{bottom:764.919467pt;}
.ya_c00382{bottom:792.519467pt;}
.y9_c00382{bottom:820.119467pt;}
.y20_c00382{bottom:847.719467pt;}
.y8_c00382{bottom:875.319467pt;}
.y7_c00382{bottom:902.919467pt;}
.y6_c00382{bottom:930.519467pt;}
.y5_c00382{bottom:958.119467pt;}
.y4_c00382{bottom:985.719467pt;}
.y3_c00382{bottom:1013.319467pt;}
.y2_c00382{bottom:1061.399467pt;}
.h2_c00382{height:44.800000pt;}
.h3_c00382{height:48.294844pt;}
.h4_c00382{height:68.288000pt;}
.h0_c00382{height:1122.520000pt;}
.h1_c00382{height:1122.666667pt;}
.w2_c00382{width:0.000000pt;}
.w3_c00382{width:0.058667pt;}
.w0_c00382{width:793.701333pt;}
.w1_c00382{width:794.000000pt;}
.x1_c00382{left:-745.700800pt;}
.x2_c00382{left:-680.260800pt;}
.x3_c00382{left:-651.940800pt;}
.x0_c00382{left:0.000000pt;}
.x7_c00382{left:113.440000pt;}
.x6_c00382{left:141.760000pt;}
.x5_c00382{left:608.080000pt;}
.x4_c00382{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00383;src:url('chunks/assets/font_84b64e5f76896d82ec4dc60f.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00383;src:url('chunks/assets/font_18186fad9ec1d3ffd037c873.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00383;src:url('chunks/assets/font_a95737ab346330b8de5c655a.woff2')format("woff");}.ff4_c00383{font-family:ff4_c00383;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00383;src:url('chunks/assets/font_154f7bef329394d876cf76ab.woff2')format("woff");}.ff5_c00383{font-family:ff5_c00383;line-height:1.592000;font-style: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;}
.ls4_c00383{letter-spacing:-0.360000px;}
.ls3_c00383{letter-spacing:0.000000px;}
.ls0_c00383{letter-spacing:0.072000px;}
.ls1_c00383{letter-spacing:0.144000px;}
.ls2_c00383{letter-spacing:18.864000px;}
.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;}
}
.ws1_c00383{word-spacing:-18.000000px;}
.ws4_c00383{word-spacing:-0.072000px;}
.ws2_c00383{word-spacing:0.000000px;}
.ws12_c00383{word-spacing:0.360000px;}
.ws1f_c00383{word-spacing:0.576000px;}
.ws1d_c00383{word-spacing:0.720000px;}
.ws1e_c00383{word-spacing:0.936000px;}
.ws24_c00383{word-spacing:1.080000px;}
.ws21_c00383{word-spacing:1.728000px;}
.ws22_c00383{word-spacing:1.800000px;}
.ws1b_c00383{word-spacing:2.088000px;}
.ws1c_c00383{word-spacing:2.160000px;}
.wsb_c00383{word-spacing:2.448000px;}
.ws5_c00383{word-spacing:2.808000px;}
.ws13_c00383{word-spacing:3.168000px;}
.ws10_c00383{word-spacing:3.528000px;}
.ws0_c00383{word-spacing:3.600000px;}
.ws16_c00383{word-spacing:4.896000px;}
.ws14_c00383{word-spacing:4.968000px;}
.ws15_c00383{word-spacing:5.040000px;}
.ws11_c00383{word-spacing:5.256000px;}
.ws8_c00383{word-spacing:6.768000px;}
.ws9_c00383{word-spacing:7.128000px;}
.wsa_c00383{word-spacing:7.200000px;}
.ws20_c00383{word-spacing:9.288000px;}
.ws23_c00383{word-spacing:9.360000px;}
.wsd_c00383{word-spacing:11.808000px;}
.wsc_c00383{word-spacing:11.880000px;}
.ws18_c00383{word-spacing:12.960000px;}
.ws19_c00383{word-spacing:13.968000px;}
.ws3_c00383{word-spacing:17.928000px;}
.wse_c00383{word-spacing:18.288000px;}
.wsf_c00383{word-spacing:18.360000px;}
.ws1a_c00383{word-spacing:21.528000px;}
.ws7_c00383{word-spacing:25.128000px;}
.ws6_c00383{word-spacing:25.200000px;}
.ws17_c00383{word-spacing:27.000000px;}
._0_c00383{margin-left:-1.015200px;}
._1_c00383{width:1.152000px;}
.fc1_c00383{color:rgb(0,0,0);}
.fc0_c00383{color:rgb(35,31,32);}
.fs1_c00383{font-size:65.880000px;}
.fs0_c00383{font-size:72.000000px;}
.y0_c00383{bottom:0.000000px;}
.y1_c00383{bottom:61.748550px;}
.y1e_c00383{bottom:177.524400px;}
.y1d_c00383{bottom:208.574400px;}
.y1c_c00383{bottom:239.624400px;}
.y1b_c00383{bottom:270.674400px;}
.y1a_c00383{bottom:301.724400px;}
.y19_c00383{bottom:332.774400px;}
.y18_c00383{bottom:363.824400px;}
.y17_c00383{bottom:425.924400px;}
.y16_c00383{bottom:456.974400px;}
.y15_c00383{bottom:488.024400px;}
.y14_c00383{bottom:519.074400px;}
.y13_c00383{bottom:550.124400px;}
.y12_c00383{bottom:612.224400px;}
.y11_c00383{bottom:643.274400px;}
.y10_c00383{bottom:674.324400px;}
.yf_c00383{bottom:705.374400px;}
.ye_c00383{bottom:736.424400px;}
.yd_c00383{bottom:767.474400px;}
.yc_c00383{bottom:829.484400px;}
.yb_c00383{bottom:860.534400px;}
.ya_c00383{bottom:891.584400px;}
.y9_c00383{bottom:922.634400px;}
.y8_c00383{bottom:953.684400px;}
.y7_c00383{bottom:984.734400px;}
.y6_c00383{bottom:1015.784400px;}
.y5_c00383{bottom:1046.834400px;}
.y4_c00383{bottom:1108.754400px;}
.y3_c00383{bottom:1139.804400px;}
.y2_c00383{bottom:1194.074400px;}
.h2_c00383{height:50.400000px;}
.h3_c00383{height:54.331699px;}
.h5_c00383{height:76.824000px;}
.h4_c00383{height:78.048000px;}
.h0_c00383{height:1262.835000px;}
.h1_c00383{height:1263.000000px;}
.w0_c00383{width:892.914000px;}
.w1_c00383{width:893.250000px;}
.x0_c00383{left:0.000000px;}
.x1_c00383{left:54.000000px;}
.x2_c00383{left:127.620000px;}
.x3_c00383{left:154.620000px;}
.x5_c00383{left:159.570000px;}
.x4_c00383{left:187.020000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls4_c00383{letter-spacing:-0.320000pt;}
.ls3_c00383{letter-spacing:0.000000pt;}
.ls0_c00383{letter-spacing:0.064000pt;}
.ls1_c00383{letter-spacing:0.128000pt;}
.ls2_c00383{letter-spacing:16.768000pt;}
.ws1_c00383{word-spacing:-16.000000pt;}
.ws4_c00383{word-spacing:-0.064000pt;}
.ws2_c00383{word-spacing:0.000000pt;}
.ws12_c00383{word-spacing:0.320000pt;}
.ws1f_c00383{word-spacing:0.512000pt;}
.ws1d_c00383{word-spacing:0.640000pt;}
.ws1e_c00383{word-spacing:0.832000pt;}
.ws24_c00383{word-spacing:0.960000pt;}
.ws21_c00383{word-spacing:1.536000pt;}
.ws22_c00383{word-spacing:1.600000pt;}
.ws1b_c00383{word-spacing:1.856000pt;}
.ws1c_c00383{word-spacing:1.920000pt;}
.wsb_c00383{word-spacing:2.176000pt;}
.ws5_c00383{word-spacing:2.496000pt;}
.ws13_c00383{word-spacing:2.816000pt;}
.ws10_c00383{word-spacing:3.136000pt;}
.ws0_c00383{word-spacing:3.200000pt;}
.ws16_c00383{word-spacing:4.352000pt;}
.ws14_c00383{word-spacing:4.416000pt;}
.ws15_c00383{word-spacing:4.480000pt;}
.ws11_c00383{word-spacing:4.672000pt;}
.ws8_c00383{word-spacing:6.016000pt;}
.ws9_c00383{word-spacing:6.336000pt;}
.wsa_c00383{word-spacing:6.400000pt;}
.ws20_c00383{word-spacing:8.256000pt;}
.ws23_c00383{word-spacing:8.320000pt;}
.wsd_c00383{word-spacing:10.496000pt;}
.wsc_c00383{word-spacing:10.560000pt;}
.ws18_c00383{word-spacing:11.520000pt;}
.ws19_c00383{word-spacing:12.416000pt;}
.ws3_c00383{word-spacing:15.936000pt;}
.wse_c00383{word-spacing:16.256000pt;}
.wsf_c00383{word-spacing:16.320000pt;}
.ws1a_c00383{word-spacing:19.136000pt;}
.ws7_c00383{word-spacing:22.336000pt;}
.ws6_c00383{word-spacing:22.400000pt;}
.ws17_c00383{word-spacing:24.000000pt;}
._0_c00383{margin-left:-0.902400pt;}
._1_c00383{width:1.024000pt;}
.fs1_c00383{font-size:58.560000pt;}
.fs0_c00383{font-size:64.000000pt;}
.y0_c00383{bottom:0.000000pt;}
.y1_c00383{bottom:54.887600pt;}
.y1e_c00383{bottom:157.799467pt;}
.y1d_c00383{bottom:185.399467pt;}
.y1c_c00383{bottom:212.999467pt;}
.y1b_c00383{bottom:240.599467pt;}
.y1a_c00383{bottom:268.199467pt;}
.y19_c00383{bottom:295.799467pt;}
.y18_c00383{bottom:323.399467pt;}
.y17_c00383{bottom:378.599467pt;}
.y16_c00383{bottom:406.199467pt;}
.y15_c00383{bottom:433.799467pt;}
.y14_c00383{bottom:461.399467pt;}
.y13_c00383{bottom:488.999467pt;}
.y12_c00383{bottom:544.199467pt;}
.y11_c00383{bottom:571.799467pt;}
.y10_c00383{bottom:599.399467pt;}
.yf_c00383{bottom:626.999467pt;}
.ye_c00383{bottom:654.599467pt;}
.yd_c00383{bottom:682.199467pt;}
.yc_c00383{bottom:737.319467pt;}
.yb_c00383{bottom:764.919467pt;}
.ya_c00383{bottom:792.519467pt;}
.y9_c00383{bottom:820.119467pt;}
.y8_c00383{bottom:847.719467pt;}
.y7_c00383{bottom:875.319467pt;}
.y6_c00383{bottom:902.919467pt;}
.y5_c00383{bottom:930.519467pt;}
.y4_c00383{bottom:985.559467pt;}
.y3_c00383{bottom:1013.159467pt;}
.y2_c00383{bottom:1061.399467pt;}
.h2_c00383{height:44.800000pt;}
.h3_c00383{height:48.294844pt;}
.h5_c00383{height:68.288000pt;}
.h4_c00383{height:69.376000pt;}
.h0_c00383{height:1122.520000pt;}
.h1_c00383{height:1122.666667pt;}
.w0_c00383{width:793.701333pt;}
.w1_c00383{width:794.000000pt;}
.x0_c00383{left:0.000000pt;}
.x1_c00383{left:48.000000pt;}
.x2_c00383{left:113.440000pt;}
.x3_c00383{left:137.440000pt;}
.x5_c00383{left:141.840000pt;}
.x4_c00383{left:166.240000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00384;src:url('chunks/assets/font_28852ddc6cbf335b08f96642.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00384;src:url('chunks/assets/font_95026b80282be5319bce77b8.woff2')format("woff");}.ff3_c00384{font-family:ff3_c00384;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00384;src:url('chunks/assets/font_646558d47c659f53c5c3d724.woff2')format("woff");}.ff4_c00384{font-family:ff4_c00384;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00384;src:url('chunks/assets/font_b7c6f4403cc4bf4be72a3529.woff2')format("woff");}.ff5_c00384{font-family:ff5_c00384;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00384;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6_c00384{font-family:ff6_c00384;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00384;src:url('chunks/assets/font_2ffc6189481958b3a6df9b83.woff2')format("woff");}.ff7_c00384{font-family:ff7_c00384;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00384;src:url('chunks/assets/font_b9e8448b2b99a837cdbd2da6.woff2')format("woff");}.ff8_c00384{font-family:ff8_c00384;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00384;src:url('chunks/assets/font_390e78f334bb88c6e1c74b61.woff2')format("woff");}.ff9_c00384{font-family:ff9_c00384;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00384;src:url('chunks/assets/font_e487b76658de52aa71341fc8.woff2')format("woff");}.ffa_c00384{font-family:ffa_c00384;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00384;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ffb_c00384{font-family:ffb_c00384;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00384{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls5_c00384{letter-spacing:-0.360000px;}
.ls6_c00384{letter-spacing:-0.288000px;}
.ls4_c00384{letter-spacing:0.000000px;}
.ls0_c00384{letter-spacing:0.072000px;}
.ls1_c00384{letter-spacing:0.144000px;}
.ls2_c00384{letter-spacing:18.864000px;}
.ls3_c00384{letter-spacing:68.472000px;}
.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;}
}
.ws2_c00384{word-spacing:-18.072000px;}
.ws1_c00384{word-spacing:-18.000000px;}
.ws27_c00384{word-spacing:-0.131760px;}
.ws6_c00384{word-spacing:-0.072000px;}
.ws4_c00384{word-spacing:0.000000px;}
.ws3b_c00384{word-spacing:0.288000px;}
.ws14_c00384{word-spacing:0.360000px;}
.ws21_c00384{word-spacing:0.576000px;}
.ws1f_c00384{word-spacing:0.720000px;}
.ws20_c00384{word-spacing:0.936000px;}
.ws26_c00384{word-spacing:1.080000px;}
.ws23_c00384{word-spacing:1.728000px;}
.ws24_c00384{word-spacing:1.800000px;}
.ws1d_c00384{word-spacing:2.088000px;}
.ws1e_c00384{word-spacing:2.160000px;}
.wsd_c00384{word-spacing:2.448000px;}
.ws7_c00384{word-spacing:2.808000px;}
.ws30_c00384{word-spacing:2.880000px;}
.ws15_c00384{word-spacing:3.168000px;}
.ws12_c00384{word-spacing:3.528000px;}
.ws0_c00384{word-spacing:3.600000px;}
.ws18_c00384{word-spacing:4.896000px;}
.ws16_c00384{word-spacing:4.968000px;}
.ws17_c00384{word-spacing:5.040000px;}
.ws13_c00384{word-spacing:5.256000px;}
.ws38_c00384{word-spacing:5.688000px;}
.ws39_c00384{word-spacing:5.760000px;}
.ws34_c00384{word-spacing:6.048000px;}
.ws33_c00384{word-spacing:6.120000px;}
.ws28_c00384{word-spacing:6.408000px;}
.wsa_c00384{word-spacing:6.768000px;}
.wsb_c00384{word-spacing:7.128000px;}
.wsc_c00384{word-spacing:7.200000px;}
.ws36_c00384{word-spacing:7.488000px;}
.ws37_c00384{word-spacing:7.560000px;}
.ws35_c00384{word-spacing:8.280000px;}
.ws22_c00384{word-spacing:9.288000px;}
.ws25_c00384{word-spacing:9.360000px;}
.ws32_c00384{word-spacing:10.296000px;}
.ws31_c00384{word-spacing:10.368000px;}
.wsf_c00384{word-spacing:11.808000px;}
.wse_c00384{word-spacing:11.880000px;}
.ws29_c00384{word-spacing:12.528000px;}
.ws1a_c00384{word-spacing:12.960000px;}
.ws2a_c00384{word-spacing:13.608000px;}
.ws1b_c00384{word-spacing:13.968000px;}
.ws2f_c00384{word-spacing:16.848000px;}
.ws2e_c00384{word-spacing:16.920000px;}
.ws5_c00384{word-spacing:17.928000px;}
.ws10_c00384{word-spacing:18.288000px;}
.ws11_c00384{word-spacing:18.360000px;}
.ws2d_c00384{word-spacing:20.808000px;}
.ws1c_c00384{word-spacing:21.528000px;}
.ws3a_c00384{word-spacing:24.408000px;}
.ws9_c00384{word-spacing:25.128000px;}
.ws8_c00384{word-spacing:25.200000px;}
.ws19_c00384{word-spacing:27.000000px;}
.ws3_c00384{word-spacing:36.000000px;}
.ws2b_c00384{word-spacing:37.080000px;}
.ws2c_c00384{word-spacing:41.040000px;}
._0_c00384{margin-left:-1.015200px;}
._1_c00384{width:1.152000px;}
._3_c00384{width:23.198400px;}
._4_c00384{width:41.428800px;}
._2_c00384{width:57.888000px;}
.fc2_c00384{color:transparent;}
.fc1_c00384{color:rgb(0,0,0);}
.fc0_c00384{color:rgb(35,31,32);}
.fs1_c00384{font-size:65.880000px;}
.fs0_c00384{font-size:72.000000px;}
.y0_c00384{bottom:0.000000px;}
.y1_c00384{bottom:61.748550px;}
.y3a_c00384{bottom:139.994400px;}
.y39_c00384{bottom:171.044400px;}
.y1e_c00384{bottom:177.524400px;}
.y38_c00384{bottom:202.094400px;}
.y1d_c00384{bottom:208.574400px;}
.y1c_c00384{bottom:239.624400px;}
.y37_c00384{bottom:265.544400px;}
.y1b_c00384{bottom:270.674400px;}
.y36_c00384{bottom:296.594400px;}
.y1a_c00384{bottom:301.724400px;}
.y35_c00384{bottom:327.644400px;}
.y19_c00384{bottom:332.774400px;}
.y34_c00384{bottom:358.604400px;}
.y18_c00384{bottom:363.824400px;}
.y33_c00384{bottom:389.654400px;}
.y17_c00384{bottom:425.924400px;}
.y32_c00384{bottom:453.104400px;}
.y16_c00384{bottom:456.974400px;}
.y31_c00384{bottom:484.064400px;}
.y15_c00384{bottom:488.024400px;}
.y14_c00384{bottom:519.074400px;}
.y30_c00384{bottom:547.514400px;}
.y13_c00384{bottom:550.124400px;}
.y2f_c00384{bottom:578.564400px;}
.y2e_c00384{bottom:609.614400px;}
.y12_c00384{bottom:612.224400px;}
.y2d_c00384{bottom:640.574400px;}
.y11_c00384{bottom:643.274400px;}
.y10_c00384{bottom:674.324400px;}
.y2c_c00384{bottom:704.024400px;}
.yf_c00384{bottom:705.374400px;}
.y2b_c00384{bottom:735.074400px;}
.ye_c00384{bottom:736.424400px;}
.y2a_c00384{bottom:766.124400px;}
.yd_c00384{bottom:767.474400px;}
.y29_c00384{bottom:797.174400px;}
.y28_c00384{bottom:828.224400px;}
.yc_c00384{bottom:829.484400px;}
.y27_c00384{bottom:859.274400px;}
.yb_c00384{bottom:860.534400px;}
.y26_c00384{bottom:890.324400px;}
.ya_c00384{bottom:891.584400px;}
.y25_c00384{bottom:921.374400px;}
.y9_c00384{bottom:922.634400px;}
.y24_c00384{bottom:952.424400px;}
.y8_c00384{bottom:953.684400px;}
.y23_c00384{bottom:983.474400px;}
.y7_c00384{bottom:984.734400px;}
.y22_c00384{bottom:1014.524400px;}
.y6_c00384{bottom:1015.784400px;}
.y21_c00384{bottom:1045.484400px;}
.y5_c00384{bottom:1046.834400px;}
.y4_c00384{bottom:1108.754400px;}
.y20_c00384{bottom:1108.934400px;}
.y3_c00384{bottom:1139.804400px;}
.y1f_c00384{bottom:1139.984400px;}
.y2_c00384{bottom:1194.074400px;}
.h2_c00384{height:50.400000px;}
.h3_c00384{height:54.331699px;}
.h5_c00384{height:76.824000px;}
.h4_c00384{height:78.048000px;}
.h0_c00384{height:1262.835000px;}
.h1_c00384{height:1263.000000px;}
.w2_c00384{width:0.000000px;}
.w3_c00384{width:0.066000px;}
.w0_c00384{width:892.914000px;}
.w1_c00384{width:893.250000px;}
.x1_c00384{left:-838.913400px;}
.x2_c00384{left:-765.293400px;}
.x3_c00384{left:-738.293400px;}
.x5_c00384{left:-733.343400px;}
.x4_c00384{left:-705.893400px;}
.x0_c00384{left:0.000000px;}
.x9_c00384{left:127.620000px;}
.xa_c00384{left:143.190000px;}
.x8_c00384{left:159.570000px;}
.xb_c00384{left:170.190000px;}
.xc_c00384{left:175.050000px;}
.xd_c00384{left:202.050000px;}
.x7_c00384{left:684.090000px;}
.x6_c00384{left:804.366150px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls5_c00384{letter-spacing:-0.320000pt;}
.ls6_c00384{letter-spacing:-0.256000pt;}
.ls4_c00384{letter-spacing:0.000000pt;}
.ls0_c00384{letter-spacing:0.064000pt;}
.ls1_c00384{letter-spacing:0.128000pt;}
.ls2_c00384{letter-spacing:16.768000pt;}
.ls3_c00384{letter-spacing:60.864000pt;}
.ws2_c00384{word-spacing:-16.064000pt;}
.ws1_c00384{word-spacing:-16.000000pt;}
.ws27_c00384{word-spacing:-0.117120pt;}
.ws6_c00384{word-spacing:-0.064000pt;}
.ws4_c00384{word-spacing:0.000000pt;}
.ws3b_c00384{word-spacing:0.256000pt;}
.ws14_c00384{word-spacing:0.320000pt;}
.ws21_c00384{word-spacing:0.512000pt;}
.ws1f_c00384{word-spacing:0.640000pt;}
.ws20_c00384{word-spacing:0.832000pt;}
.ws26_c00384{word-spacing:0.960000pt;}
.ws23_c00384{word-spacing:1.536000pt;}
.ws24_c00384{word-spacing:1.600000pt;}
.ws1d_c00384{word-spacing:1.856000pt;}
.ws1e_c00384{word-spacing:1.920000pt;}
.wsd_c00384{word-spacing:2.176000pt;}
.ws7_c00384{word-spacing:2.496000pt;}
.ws30_c00384{word-spacing:2.560000pt;}
.ws15_c00384{word-spacing:2.816000pt;}
.ws12_c00384{word-spacing:3.136000pt;}
.ws0_c00384{word-spacing:3.200000pt;}
.ws18_c00384{word-spacing:4.352000pt;}
.ws16_c00384{word-spacing:4.416000pt;}
.ws17_c00384{word-spacing:4.480000pt;}
.ws13_c00384{word-spacing:4.672000pt;}
.ws38_c00384{word-spacing:5.056000pt;}
.ws39_c00384{word-spacing:5.120000pt;}
.ws34_c00384{word-spacing:5.376000pt;}
.ws33_c00384{word-spacing:5.440000pt;}
.ws28_c00384{word-spacing:5.696000pt;}
.wsa_c00384{word-spacing:6.016000pt;}
.wsb_c00384{word-spacing:6.336000pt;}
.wsc_c00384{word-spacing:6.400000pt;}
.ws36_c00384{word-spacing:6.656000pt;}
.ws37_c00384{word-spacing:6.720000pt;}
.ws35_c00384{word-spacing:7.360000pt;}
.ws22_c00384{word-spacing:8.256000pt;}
.ws25_c00384{word-spacing:8.320000pt;}
.ws32_c00384{word-spacing:9.152000pt;}
.ws31_c00384{word-spacing:9.216000pt;}
.wsf_c00384{word-spacing:10.496000pt;}
.wse_c00384{word-spacing:10.560000pt;}
.ws29_c00384{word-spacing:11.136000pt;}
.ws1a_c00384{word-spacing:11.520000pt;}
.ws2a_c00384{word-spacing:12.096000pt;}
.ws1b_c00384{word-spacing:12.416000pt;}
.ws2f_c00384{word-spacing:14.976000pt;}
.ws2e_c00384{word-spacing:15.040000pt;}
.ws5_c00384{word-spacing:15.936000pt;}
.ws10_c00384{word-spacing:16.256000pt;}
.ws11_c00384{word-spacing:16.320000pt;}
.ws2d_c00384{word-spacing:18.496000pt;}
.ws1c_c00384{word-spacing:19.136000pt;}
.ws3a_c00384{word-spacing:21.696000pt;}
.ws9_c00384{word-spacing:22.336000pt;}
.ws8_c00384{word-spacing:22.400000pt;}
.ws19_c00384{word-spacing:24.000000pt;}
.ws3_c00384{word-spacing:32.000000pt;}
.ws2b_c00384{word-spacing:32.960000pt;}
.ws2c_c00384{word-spacing:36.480000pt;}
._0_c00384{margin-left:-0.902400pt;}
._1_c00384{width:1.024000pt;}
._3_c00384{width:20.620800pt;}
._4_c00384{width:36.825600pt;}
._2_c00384{width:51.456000pt;}
.fs1_c00384{font-size:58.560000pt;}
.fs0_c00384{font-size:64.000000pt;}
.y0_c00384{bottom:0.000000pt;}
.y1_c00384{bottom:54.887600pt;}
.y3a_c00384{bottom:124.439467pt;}
.y39_c00384{bottom:152.039467pt;}
.y1e_c00384{bottom:157.799467pt;}
.y38_c00384{bottom:179.639467pt;}
.y1d_c00384{bottom:185.399467pt;}
.y1c_c00384{bottom:212.999467pt;}
.y37_c00384{bottom:236.039467pt;}
.y1b_c00384{bottom:240.599467pt;}
.y36_c00384{bottom:263.639467pt;}
.y1a_c00384{bottom:268.199467pt;}
.y35_c00384{bottom:291.239467pt;}
.y19_c00384{bottom:295.799467pt;}
.y34_c00384{bottom:318.759467pt;}
.y18_c00384{bottom:323.399467pt;}
.y33_c00384{bottom:346.359467pt;}
.y17_c00384{bottom:378.599467pt;}
.y32_c00384{bottom:402.759467pt;}
.y16_c00384{bottom:406.199467pt;}
.y31_c00384{bottom:430.279467pt;}
.y15_c00384{bottom:433.799467pt;}
.y14_c00384{bottom:461.399467pt;}
.y30_c00384{bottom:486.679467pt;}
.y13_c00384{bottom:488.999467pt;}
.y2f_c00384{bottom:514.279467pt;}
.y2e_c00384{bottom:541.879467pt;}
.y12_c00384{bottom:544.199467pt;}
.y2d_c00384{bottom:569.399467pt;}
.y11_c00384{bottom:571.799467pt;}
.y10_c00384{bottom:599.399467pt;}
.y2c_c00384{bottom:625.799467pt;}
.yf_c00384{bottom:626.999467pt;}
.y2b_c00384{bottom:653.399467pt;}
.ye_c00384{bottom:654.599467pt;}
.y2a_c00384{bottom:680.999467pt;}
.yd_c00384{bottom:682.199467pt;}
.y29_c00384{bottom:708.599467pt;}
.y28_c00384{bottom:736.199467pt;}
.yc_c00384{bottom:737.319467pt;}
.y27_c00384{bottom:763.799467pt;}
.yb_c00384{bottom:764.919467pt;}
.y26_c00384{bottom:791.399467pt;}
.ya_c00384{bottom:792.519467pt;}
.y25_c00384{bottom:818.999467pt;}
.y9_c00384{bottom:820.119467pt;}
.y24_c00384{bottom:846.599467pt;}
.y8_c00384{bottom:847.719467pt;}
.y23_c00384{bottom:874.199467pt;}
.y7_c00384{bottom:875.319467pt;}
.y22_c00384{bottom:901.799467pt;}
.y6_c00384{bottom:902.919467pt;}
.y21_c00384{bottom:929.319467pt;}
.y5_c00384{bottom:930.519467pt;}
.y4_c00384{bottom:985.559467pt;}
.y20_c00384{bottom:985.719467pt;}
.y3_c00384{bottom:1013.159467pt;}
.y1f_c00384{bottom:1013.319467pt;}
.y2_c00384{bottom:1061.399467pt;}
.h2_c00384{height:44.800000pt;}
.h3_c00384{height:48.294844pt;}
.h5_c00384{height:68.288000pt;}
.h4_c00384{height:69.376000pt;}
.h0_c00384{height:1122.520000pt;}
.h1_c00384{height:1122.666667pt;}
.w2_c00384{width:0.000000pt;}
.w3_c00384{width:0.058667pt;}
.w0_c00384{width:793.701333pt;}
.w1_c00384{width:794.000000pt;}
.x1_c00384{left:-745.700800pt;}
.x2_c00384{left:-680.260800pt;}
.x3_c00384{left:-656.260800pt;}
.x5_c00384{left:-651.860800pt;}
.x4_c00384{left:-627.460800pt;}
.x0_c00384{left:0.000000pt;}
.x9_c00384{left:113.440000pt;}
.xa_c00384{left:127.280000pt;}
.x8_c00384{left:141.840000pt;}
.xb_c00384{left:151.280000pt;}
.xc_c00384{left:155.600000pt;}
.xd_c00384{left:179.600000pt;}
.x7_c00384{left:608.080000pt;}
.x6_c00384{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00385;src:url('chunks/assets/font_77773a1b1dc8a1befef7ad24.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00385;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00385;src:url('chunks/assets/font_c207bd68a5325271ccb63f41.woff2')format("woff");}.ff4_c00385{font-family:ff4_c00385;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00385;src:url('chunks/assets/font_0883fe6a083094958043e1a6.woff2')format("woff");}.ff5_c00385{font-family:ff5_c00385;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00385;src:url('chunks/assets/font_27363fa06bb5f101d2143774.woff2')format("woff");}.ff6_c00385{font-family:ff6_c00385;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00385{letter-spacing:-0.576000px;}
.ls5_c00385{letter-spacing:-0.360000px;}
.ls6_c00385{letter-spacing:-0.072000px;}
.ls4_c00385{letter-spacing:0.000000px;}
.ls1_c00385{letter-spacing:0.072000px;}
.ls3_c00385{letter-spacing:0.144000px;}
.ls2_c00385{letter-spacing:48.240000px;}
.ls0_c00385{letter-spacing:68.472000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00385{word-spacing:-18.072000px;}
.ws4_c00385{word-spacing:-18.000000px;}
.ws9_c00385{word-spacing:-0.072000px;}
.ws5_c00385{word-spacing:0.000000px;}
.wsb_c00385{word-spacing:0.288000px;}
.ws8_c00385{word-spacing:0.360000px;}
.ws1d_c00385{word-spacing:0.576000px;}
.ws10_c00385{word-spacing:0.648000px;}
.wsc_c00385{word-spacing:0.720000px;}
.ws7_c00385{word-spacing:2.448000px;}
.ws1a_c00385{word-spacing:2.736000px;}
.ws19_c00385{word-spacing:2.808000px;}
.ws15_c00385{word-spacing:3.168000px;}
.ws16_c00385{word-spacing:3.240000px;}
.ws1e_c00385{word-spacing:3.528000px;}
.ws3_c00385{word-spacing:3.888000px;}
.wsa_c00385{word-spacing:5.688000px;}
.ws20_c00385{word-spacing:7.056000px;}
.ws21_c00385{word-spacing:7.200000px;}
.ws1f_c00385{word-spacing:7.848000px;}
.ws12_c00385{word-spacing:10.080000px;}
.ws6_c00385{word-spacing:15.768000px;}
.ws1c_c00385{word-spacing:16.488000px;}
.ws1b_c00385{word-spacing:16.560000px;}
.ws23_c00385{word-spacing:18.648000px;}
.ws22_c00385{word-spacing:18.720000px;}
.ws14_c00385{word-spacing:21.528000px;}
.ws13_c00385{word-spacing:21.888000px;}
.ws18_c00385{word-spacing:26.568000px;}
.ws17_c00385{word-spacing:26.640000px;}
.wsf_c00385{word-spacing:30.168000px;}
.wse_c00385{word-spacing:30.528000px;}
.wsd_c00385{word-spacing:30.600000px;}
.ws11_c00385{word-spacing:32.328000px;}
.ws2_c00385{word-spacing:50.112000px;}
.ws0_c00385{word-spacing:53.928000px;}
._0_c00385{margin-left:-1.094400px;}
._1_c00385{width:1.008000px;}
._2_c00385{width:15.912000px;}
.fc1_c00385{color:rgb(0,0,0);}
.fc0_c00385{color:rgb(35,31,32);}
.fs1_c00385{font-size:65.880000px;}
.fs0_c00385{font-size:72.000000px;}
.y0_c00385{bottom:0.000000px;}
.y1_c00385{bottom:61.748550px;}
.y1c_c00385{bottom:204.704250px;}
.y1b_c00385{bottom:235.754250px;}
.y1a_c00385{bottom:266.804250px;}
.y19_c00385{bottom:297.854250px;}
.y18_c00385{bottom:328.814250px;}
.y17_c00385{bottom:392.264250px;}
.y16_c00385{bottom:423.314250px;}
.y15_c00385{bottom:454.364250px;}
.y14_c00385{bottom:485.414250px;}
.y13_c00385{bottom:516.374250px;}
.y12_c00385{bottom:579.824250px;}
.y11_c00385{bottom:610.874250px;}
.y10_c00385{bottom:641.924250px;}
.yf_c00385{bottom:672.974250px;}
.ye_c00385{bottom:704.024250px;}
.yd_c00385{bottom:766.124250px;}
.yc_c00385{bottom:797.174250px;}
.yb_c00385{bottom:828.224250px;}
.ya_c00385{bottom:859.274250px;}
.y9_c00385{bottom:890.324250px;}
.y8_c00385{bottom:921.374250px;}
.y7_c00385{bottom:952.424250px;}
.y6_c00385{bottom:983.474250px;}
.y5_c00385{bottom:1045.574250px;}
.y4_c00385{bottom:1076.624250px;}
.y3_c00385{bottom:1107.584250px;}
.y2_c00385{bottom:1194.074400px;}
.h2_c00385{height:50.400000px;}
.h3_c00385{height:54.331699px;}
.h4_c00385{height:76.824000px;}
.h5_c00385{height:78.048000px;}
.h0_c00385{height:1262.835000px;}
.h1_c00385{height:1263.000000px;}
.w0_c00385{width:892.914000px;}
.w1_c00385{width:893.250000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:54.000000px;}
.x2_c00385{left:127.620000px;}
.x3_c00385{left:143.190000px;}
.x4_c00385{left:170.190000px;}
.x5_c00385{left:197.190000px;}
.x6_c00385{left:224.190000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls7_c00385{letter-spacing:-0.512000pt;}
.ls5_c00385{letter-spacing:-0.320000pt;}
.ls6_c00385{letter-spacing:-0.064000pt;}
.ls4_c00385{letter-spacing:0.000000pt;}
.ls1_c00385{letter-spacing:0.064000pt;}
.ls3_c00385{letter-spacing:0.128000pt;}
.ls2_c00385{letter-spacing:42.880000pt;}
.ls0_c00385{letter-spacing:60.864000pt;}
.ws1_c00385{word-spacing:-16.064000pt;}
.ws4_c00385{word-spacing:-16.000000pt;}
.ws9_c00385{word-spacing:-0.064000pt;}
.ws5_c00385{word-spacing:0.000000pt;}
.wsb_c00385{word-spacing:0.256000pt;}
.ws8_c00385{word-spacing:0.320000pt;}
.ws1d_c00385{word-spacing:0.512000pt;}
.ws10_c00385{word-spacing:0.576000pt;}
.wsc_c00385{word-spacing:0.640000pt;}
.ws7_c00385{word-spacing:2.176000pt;}
.ws1a_c00385{word-spacing:2.432000pt;}
.ws19_c00385{word-spacing:2.496000pt;}
.ws15_c00385{word-spacing:2.816000pt;}
.ws16_c00385{word-spacing:2.880000pt;}
.ws1e_c00385{word-spacing:3.136000pt;}
.ws3_c00385{word-spacing:3.456000pt;}
.wsa_c00385{word-spacing:5.056000pt;}
.ws20_c00385{word-spacing:6.272000pt;}
.ws21_c00385{word-spacing:6.400000pt;}
.ws1f_c00385{word-spacing:6.976000pt;}
.ws12_c00385{word-spacing:8.960000pt;}
.ws6_c00385{word-spacing:14.016000pt;}
.ws1c_c00385{word-spacing:14.656000pt;}
.ws1b_c00385{word-spacing:14.720000pt;}
.ws23_c00385{word-spacing:16.576000pt;}
.ws22_c00385{word-spacing:16.640000pt;}
.ws14_c00385{word-spacing:19.136000pt;}
.ws13_c00385{word-spacing:19.456000pt;}
.ws18_c00385{word-spacing:23.616000pt;}
.ws17_c00385{word-spacing:23.680000pt;}
.wsf_c00385{word-spacing:26.816000pt;}
.wse_c00385{word-spacing:27.136000pt;}
.wsd_c00385{word-spacing:27.200000pt;}
.ws11_c00385{word-spacing:28.736000pt;}
.ws2_c00385{word-spacing:44.544000pt;}
.ws0_c00385{word-spacing:47.936000pt;}
._0_c00385{margin-left:-0.972800pt;}
._1_c00385{width:0.896000pt;}
._2_c00385{width:14.144000pt;}
.fs1_c00385{font-size:58.560000pt;}
.fs0_c00385{font-size:64.000000pt;}
.y0_c00385{bottom:0.000000pt;}
.y1_c00385{bottom:54.887600pt;}
.y1c_c00385{bottom:181.959333pt;}
.y1b_c00385{bottom:209.559333pt;}
.y1a_c00385{bottom:237.159333pt;}
.y19_c00385{bottom:264.759333pt;}
.y18_c00385{bottom:292.279333pt;}
.y17_c00385{bottom:348.679333pt;}
.y16_c00385{bottom:376.279333pt;}
.y15_c00385{bottom:403.879333pt;}
.y14_c00385{bottom:431.479333pt;}
.y13_c00385{bottom:458.999333pt;}
.y12_c00385{bottom:515.399333pt;}
.y11_c00385{bottom:542.999333pt;}
.y10_c00385{bottom:570.599333pt;}
.yf_c00385{bottom:598.199333pt;}
.ye_c00385{bottom:625.799333pt;}
.yd_c00385{bottom:680.999333pt;}
.yc_c00385{bottom:708.599333pt;}
.yb_c00385{bottom:736.199333pt;}
.ya_c00385{bottom:763.799333pt;}
.y9_c00385{bottom:791.399333pt;}
.y8_c00385{bottom:818.999333pt;}
.y7_c00385{bottom:846.599333pt;}
.y6_c00385{bottom:874.199333pt;}
.y5_c00385{bottom:929.399333pt;}
.y4_c00385{bottom:956.999333pt;}
.y3_c00385{bottom:984.519333pt;}
.y2_c00385{bottom:1061.399467pt;}
.h2_c00385{height:44.800000pt;}
.h3_c00385{height:48.294844pt;}
.h4_c00385{height:68.288000pt;}
.h5_c00385{height:69.376000pt;}
.h0_c00385{height:1122.520000pt;}
.h1_c00385{height:1122.666667pt;}
.w0_c00385{width:793.701333pt;}
.w1_c00385{width:794.000000pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:48.000000pt;}
.x2_c00385{left:113.440000pt;}
.x3_c00385{left:127.280000pt;}
.x4_c00385{left:151.280000pt;}
.x5_c00385{left:175.280000pt;}
.x6_c00385{left:199.280000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00386;src:url('chunks/assets/font_8a9c69a792eae83217baa5bf.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff3_c00386{font-family:ff3_c00386;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00386;src:url('chunks/assets/font_088d4548619fca63be7c30f2.woff2')format("woff");}.ff4_c00386{font-family:ff4_c00386;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00386;src:url('chunks/assets/font_f038d32ee7287b8170c12c36.woff2')format("woff");}.ff5_c00386{font-family:ff5_c00386;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00386;src:url('chunks/assets/font_7fefbeadad828b21849450a5.woff2')format("woff");}.ff6_c00386{font-family:ff6_c00386;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00386;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff7_c00386{font-family:ff7_c00386;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00386;src:url('chunks/assets/font_82499951bb39644ea39e0dff.woff2')format("woff");}.ff8_c00386{font-family:ff8_c00386;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00386;src:url('chunks/assets/font_e4fdef0c72e276339aebcd9d.woff2')format("woff");}.ff9_c00386{font-family:ff9_c00386;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00386;src:url('chunks/assets/font_70d8455f806e394f84790d28.woff2')format("woff");}.ffa_c00386{font-family:ffa_c00386;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00386;src:url('chunks/assets/font_c1557036c1f926e2c5f68c5b.woff2')format("woff");}.ffb_c00386{font-family:ffb_c00386;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00386;src:url('chunks/assets/font_640a3241abc06ba637c707f4.woff2')format("woff");}.ffc_c00386{font-family:ffc_c00386;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00386{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls7_c00386{letter-spacing:-0.576000px;}
.ls5_c00386{letter-spacing:-0.360000px;}
.ls6_c00386{letter-spacing:-0.072000px;}
.ls4_c00386{letter-spacing:0.000000px;}
.ls1_c00386{letter-spacing:0.072000px;}
.ls3_c00386{letter-spacing:0.144000px;}
.ls2_c00386{letter-spacing:48.240000px;}
.ls0_c00386{letter-spacing:68.472000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00386{word-spacing:-18.072000px;}
.ws4_c00386{word-spacing:-18.000000px;}
.ws27_c00386{word-spacing:-0.131760px;}
.wsc_c00386{word-spacing:-0.072000px;}
.ws8_c00386{word-spacing:0.000000px;}
.wse_c00386{word-spacing:0.288000px;}
.wsb_c00386{word-spacing:0.360000px;}
.ws20_c00386{word-spacing:0.576000px;}
.ws13_c00386{word-spacing:0.648000px;}
.wsf_c00386{word-spacing:0.720000px;}
.ws6_c00386{word-spacing:1.360800px;}
.ws33_c00386{word-spacing:1.440000px;}
.ws43_c00386{word-spacing:1.584000px;}
.ws42_c00386{word-spacing:1.728000px;}
.ws41_c00386{word-spacing:1.800000px;}
.ws3d_c00386{word-spacing:2.160000px;}
.wsa_c00386{word-spacing:2.448000px;}
.ws1d_c00386{word-spacing:2.736000px;}
.ws1c_c00386{word-spacing:2.808000px;}
.ws29_c00386{word-spacing:2.880000px;}
.ws18_c00386{word-spacing:3.168000px;}
.ws19_c00386{word-spacing:3.240000px;}
.ws21_c00386{word-spacing:3.528000px;}
.ws3_c00386{word-spacing:3.888000px;}
.ws30_c00386{word-spacing:4.248000px;}
.ws31_c00386{word-spacing:4.320000px;}
.ws2e_c00386{word-spacing:4.464000px;}
.ws2d_c00386{word-spacing:4.608000px;}
.ws2f_c00386{word-spacing:4.680000px;}
.wsd_c00386{word-spacing:5.688000px;}
.ws28_c00386{word-spacing:5.760000px;}
.ws34_c00386{word-spacing:6.768000px;}
.ws3f_c00386{word-spacing:6.840000px;}
.ws23_c00386{word-spacing:7.056000px;}
.ws24_c00386{word-spacing:7.200000px;}
.ws22_c00386{word-spacing:7.848000px;}
.ws7_c00386{word-spacing:8.136000px;}
.ws46_c00386{word-spacing:8.208000px;}
.ws45_c00386{word-spacing:8.280000px;}
.ws2c_c00386{word-spacing:8.568000px;}
.ws5_c00386{word-spacing:8.575200px;}
.ws44_c00386{word-spacing:8.640000px;}
.ws15_c00386{word-spacing:10.080000px;}
.ws39_c00386{word-spacing:11.376000px;}
.ws37_c00386{word-spacing:11.448000px;}
.ws38_c00386{word-spacing:11.520000px;}
.ws40_c00386{word-spacing:11.880000px;}
.ws36_c00386{word-spacing:12.960000px;}
.ws32_c00386{word-spacing:14.328000px;}
.ws35_c00386{word-spacing:14.400000px;}
.ws9_c00386{word-spacing:15.768000px;}
.ws1f_c00386{word-spacing:16.488000px;}
.ws1e_c00386{word-spacing:16.560000px;}
.ws2b_c00386{word-spacing:18.288000px;}
.ws3a_c00386{word-spacing:18.360000px;}
.ws26_c00386{word-spacing:18.648000px;}
.ws25_c00386{word-spacing:18.720000px;}
.ws2a_c00386{word-spacing:19.008000px;}
.ws3e_c00386{word-spacing:19.728000px;}
.ws3c_c00386{word-spacing:20.808000px;}
.ws17_c00386{word-spacing:21.528000px;}
.ws16_c00386{word-spacing:21.888000px;}
.ws1b_c00386{word-spacing:26.568000px;}
.ws1a_c00386{word-spacing:26.640000px;}
.ws12_c00386{word-spacing:30.168000px;}
.ws11_c00386{word-spacing:30.528000px;}
.ws10_c00386{word-spacing:30.600000px;}
.ws14_c00386{word-spacing:32.328000px;}
.ws3b_c00386{word-spacing:40.968000px;}
.ws2_c00386{word-spacing:50.112000px;}
.ws0_c00386{word-spacing:53.928000px;}
._0_c00386{margin-left:-1.094400px;}
._1_c00386{width:1.008000px;}
._5_c00386{width:4.032000px;}
._4_c00386{width:14.472000px;}
._2_c00386{width:15.912000px;}
._3_c00386{width:25.286400px;}
.fc2_c00386{color:transparent;}
.fc1_c00386{color:rgb(0,0,0);}
.fc0_c00386{color:rgb(35,31,32);}
.fs1_c00386{font-size:65.880000px;}
.fs0_c00386{font-size:72.000000px;}
.y0_c00386{bottom:0.000000px;}
.y1_c00386{bottom:61.748550px;}
.y35_c00386{bottom:111.554250px;}
.y34_c00386{bottom:142.604250px;}
.y33_c00386{bottom:173.654250px;}
.y1c_c00386{bottom:204.704250px;}
.y1b_c00386{bottom:235.754250px;}
.y1a_c00386{bottom:266.804250px;}
.y19_c00386{bottom:297.854250px;}
.y18_c00386{bottom:328.814250px;}
.y32_c00386{bottom:328.904250px;}
.y31_c00386{bottom:359.954250px;}
.y30_c00386{bottom:391.004250px;}
.y17_c00386{bottom:392.264250px;}
.y2f_c00386{bottom:422.054250px;}
.y16_c00386{bottom:423.314250px;}
.y15_c00386{bottom:454.364250px;}
.y2e_c00386{bottom:484.154250px;}
.y14_c00386{bottom:485.414250px;}
.y2d_c00386{bottom:515.204250px;}
.y13_c00386{bottom:516.374250px;}
.y2c_c00386{bottom:546.254250px;}
.y2b_c00386{bottom:577.304250px;}
.y12_c00386{bottom:579.824250px;}
.y2a_c00386{bottom:608.354250px;}
.y11_c00386{bottom:610.874250px;}
.y10_c00386{bottom:641.924250px;}
.y29_c00386{bottom:670.454250px;}
.yf_c00386{bottom:672.974250px;}
.y28_c00386{bottom:701.504250px;}
.ye_c00386{bottom:704.024250px;}
.y27_c00386{bottom:732.464250px;}
.y26_c00386{bottom:763.514250px;}
.yd_c00386{bottom:766.124250px;}
.y25_c00386{bottom:794.564250px;}
.yc_c00386{bottom:797.174250px;}
.y24_c00386{bottom:825.614250px;}
.yb_c00386{bottom:828.224250px;}
.y23_c00386{bottom:856.664250px;}
.ya_c00386{bottom:859.274250px;}
.y9_c00386{bottom:890.324250px;}
.y22_c00386{bottom:920.114250px;}
.y8_c00386{bottom:921.374250px;}
.y21_c00386{bottom:951.164250px;}
.y7_c00386{bottom:952.424250px;}
.y20_c00386{bottom:982.214250px;}
.y6_c00386{bottom:983.474250px;}
.y1f_c00386{bottom:1013.174250px;}
.y5_c00386{bottom:1045.574250px;}
.y4_c00386{bottom:1076.624250px;}
.y3_c00386{bottom:1107.584250px;}
.y1e_c00386{bottom:1107.674250px;}
.y1d_c00386{bottom:1138.634250px;}
.y2_c00386{bottom:1194.074400px;}
.h2_c00386{height:50.400000px;}
.h3_c00386{height:54.331699px;}
.h4_c00386{height:76.824000px;}
.h5_c00386{height:78.048000px;}
.h0_c00386{height:1262.835000px;}
.h1_c00386{height:1263.000000px;}
.w2_c00386{width:0.000000px;}
.w3_c00386{width:0.066000px;}
.w0_c00386{width:892.914000px;}
.w1_c00386{width:893.250000px;}
.x1_c00386{left:-838.913400px;}
.x2_c00386{left:-765.293400px;}
.x3_c00386{left:-749.723400px;}
.x4_c00386{left:-722.723400px;}
.x5_c00386{left:-695.723400px;}
.x6_c00386{left:-668.723400px;}
.x0_c00386{left:0.000000px;}
.xc_c00386{left:127.620000px;}
.x9_c00386{left:143.190000px;}
.xb_c00386{left:159.570000px;}
.xa_c00386{left:170.190000px;}
.x8_c00386{left:684.090000px;}
.x7_c00386{left:804.366150px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls7_c00386{letter-spacing:-0.512000pt;}
.ls5_c00386{letter-spacing:-0.320000pt;}
.ls6_c00386{letter-spacing:-0.064000pt;}
.ls4_c00386{letter-spacing:0.000000pt;}
.ls1_c00386{letter-spacing:0.064000pt;}
.ls3_c00386{letter-spacing:0.128000pt;}
.ls2_c00386{letter-spacing:42.880000pt;}
.ls0_c00386{letter-spacing:60.864000pt;}
.ws1_c00386{word-spacing:-16.064000pt;}
.ws4_c00386{word-spacing:-16.000000pt;}
.ws27_c00386{word-spacing:-0.117120pt;}
.wsc_c00386{word-spacing:-0.064000pt;}
.ws8_c00386{word-spacing:0.000000pt;}
.wse_c00386{word-spacing:0.256000pt;}
.wsb_c00386{word-spacing:0.320000pt;}
.ws20_c00386{word-spacing:0.512000pt;}
.ws13_c00386{word-spacing:0.576000pt;}
.wsf_c00386{word-spacing:0.640000pt;}
.ws6_c00386{word-spacing:1.209600pt;}
.ws33_c00386{word-spacing:1.280000pt;}
.ws43_c00386{word-spacing:1.408000pt;}
.ws42_c00386{word-spacing:1.536000pt;}
.ws41_c00386{word-spacing:1.600000pt;}
.ws3d_c00386{word-spacing:1.920000pt;}
.wsa_c00386{word-spacing:2.176000pt;}
.ws1d_c00386{word-spacing:2.432000pt;}
.ws1c_c00386{word-spacing:2.496000pt;}
.ws29_c00386{word-spacing:2.560000pt;}
.ws18_c00386{word-spacing:2.816000pt;}
.ws19_c00386{word-spacing:2.880000pt;}
.ws21_c00386{word-spacing:3.136000pt;}
.ws3_c00386{word-spacing:3.456000pt;}
.ws30_c00386{word-spacing:3.776000pt;}
.ws31_c00386{word-spacing:3.840000pt;}
.ws2e_c00386{word-spacing:3.968000pt;}
.ws2d_c00386{word-spacing:4.096000pt;}
.ws2f_c00386{word-spacing:4.160000pt;}
.wsd_c00386{word-spacing:5.056000pt;}
.ws28_c00386{word-spacing:5.120000pt;}
.ws34_c00386{word-spacing:6.016000pt;}
.ws3f_c00386{word-spacing:6.080000pt;}
.ws23_c00386{word-spacing:6.272000pt;}
.ws24_c00386{word-spacing:6.400000pt;}
.ws22_c00386{word-spacing:6.976000pt;}
.ws7_c00386{word-spacing:7.232000pt;}
.ws46_c00386{word-spacing:7.296000pt;}
.ws45_c00386{word-spacing:7.360000pt;}
.ws2c_c00386{word-spacing:7.616000pt;}
.ws5_c00386{word-spacing:7.622400pt;}
.ws44_c00386{word-spacing:7.680000pt;}
.ws15_c00386{word-spacing:8.960000pt;}
.ws39_c00386{word-spacing:10.112000pt;}
.ws37_c00386{word-spacing:10.176000pt;}
.ws38_c00386{word-spacing:10.240000pt;}
.ws40_c00386{word-spacing:10.560000pt;}
.ws36_c00386{word-spacing:11.520000pt;}
.ws32_c00386{word-spacing:12.736000pt;}
.ws35_c00386{word-spacing:12.800000pt;}
.ws9_c00386{word-spacing:14.016000pt;}
.ws1f_c00386{word-spacing:14.656000pt;}
.ws1e_c00386{word-spacing:14.720000pt;}
.ws2b_c00386{word-spacing:16.256000pt;}
.ws3a_c00386{word-spacing:16.320000pt;}
.ws26_c00386{word-spacing:16.576000pt;}
.ws25_c00386{word-spacing:16.640000pt;}
.ws2a_c00386{word-spacing:16.896000pt;}
.ws3e_c00386{word-spacing:17.536000pt;}
.ws3c_c00386{word-spacing:18.496000pt;}
.ws17_c00386{word-spacing:19.136000pt;}
.ws16_c00386{word-spacing:19.456000pt;}
.ws1b_c00386{word-spacing:23.616000pt;}
.ws1a_c00386{word-spacing:23.680000pt;}
.ws12_c00386{word-spacing:26.816000pt;}
.ws11_c00386{word-spacing:27.136000pt;}
.ws10_c00386{word-spacing:27.200000pt;}
.ws14_c00386{word-spacing:28.736000pt;}
.ws3b_c00386{word-spacing:36.416000pt;}
.ws2_c00386{word-spacing:44.544000pt;}
.ws0_c00386{word-spacing:47.936000pt;}
._0_c00386{margin-left:-0.972800pt;}
._1_c00386{width:0.896000pt;}
._5_c00386{width:3.584000pt;}
._4_c00386{width:12.864000pt;}
._2_c00386{width:14.144000pt;}
._3_c00386{width:22.476800pt;}
.fs1_c00386{font-size:58.560000pt;}
.fs0_c00386{font-size:64.000000pt;}
.y0_c00386{bottom:0.000000pt;}
.y1_c00386{bottom:54.887600pt;}
.y35_c00386{bottom:99.159333pt;}
.y34_c00386{bottom:126.759333pt;}
.y33_c00386{bottom:154.359333pt;}
.y1c_c00386{bottom:181.959333pt;}
.y1b_c00386{bottom:209.559333pt;}
.y1a_c00386{bottom:237.159333pt;}
.y19_c00386{bottom:264.759333pt;}
.y18_c00386{bottom:292.279333pt;}
.y32_c00386{bottom:292.359333pt;}
.y31_c00386{bottom:319.959333pt;}
.y30_c00386{bottom:347.559333pt;}
.y17_c00386{bottom:348.679333pt;}
.y2f_c00386{bottom:375.159333pt;}
.y16_c00386{bottom:376.279333pt;}
.y15_c00386{bottom:403.879333pt;}
.y2e_c00386{bottom:430.359333pt;}
.y14_c00386{bottom:431.479333pt;}
.y2d_c00386{bottom:457.959333pt;}
.y13_c00386{bottom:458.999333pt;}
.y2c_c00386{bottom:485.559333pt;}
.y2b_c00386{bottom:513.159333pt;}
.y12_c00386{bottom:515.399333pt;}
.y2a_c00386{bottom:540.759333pt;}
.y11_c00386{bottom:542.999333pt;}
.y10_c00386{bottom:570.599333pt;}
.y29_c00386{bottom:595.959333pt;}
.yf_c00386{bottom:598.199333pt;}
.y28_c00386{bottom:623.559333pt;}
.ye_c00386{bottom:625.799333pt;}
.y27_c00386{bottom:651.079333pt;}
.y26_c00386{bottom:678.679333pt;}
.yd_c00386{bottom:680.999333pt;}
.y25_c00386{bottom:706.279333pt;}
.yc_c00386{bottom:708.599333pt;}
.y24_c00386{bottom:733.879333pt;}
.yb_c00386{bottom:736.199333pt;}
.y23_c00386{bottom:761.479333pt;}
.ya_c00386{bottom:763.799333pt;}
.y9_c00386{bottom:791.399333pt;}
.y22_c00386{bottom:817.879333pt;}
.y8_c00386{bottom:818.999333pt;}
.y21_c00386{bottom:845.479333pt;}
.y7_c00386{bottom:846.599333pt;}
.y20_c00386{bottom:873.079333pt;}
.y6_c00386{bottom:874.199333pt;}
.y1f_c00386{bottom:900.599333pt;}
.y5_c00386{bottom:929.399333pt;}
.y4_c00386{bottom:956.999333pt;}
.y3_c00386{bottom:984.519333pt;}
.y1e_c00386{bottom:984.599333pt;}
.y1d_c00386{bottom:1012.119333pt;}
.y2_c00386{bottom:1061.399467pt;}
.h2_c00386{height:44.800000pt;}
.h3_c00386{height:48.294844pt;}
.h4_c00386{height:68.288000pt;}
.h5_c00386{height:69.376000pt;}
.h0_c00386{height:1122.520000pt;}
.h1_c00386{height:1122.666667pt;}
.w2_c00386{width:0.000000pt;}
.w3_c00386{width:0.058667pt;}
.w0_c00386{width:793.701333pt;}
.w1_c00386{width:794.000000pt;}
.x1_c00386{left:-745.700800pt;}
.x2_c00386{left:-680.260800pt;}
.x3_c00386{left:-666.420800pt;}
.x4_c00386{left:-642.420800pt;}
.x5_c00386{left:-618.420800pt;}
.x6_c00386{left:-594.420800pt;}
.x0_c00386{left:0.000000pt;}
.xc_c00386{left:113.440000pt;}
.x9_c00386{left:127.280000pt;}
.xb_c00386{left:141.840000pt;}
.xa_c00386{left:151.280000pt;}
.x8_c00386{left:608.080000pt;}
.x7_c00386{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00387;src:url('chunks/assets/font_d1fdcd1cf11dd370fe423c7f.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00387;src:url('chunks/assets/font_d6ab7b779b88a39be980414c.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00387;src:url('chunks/assets/font_fcfece534db45d5fe7319c83.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls2_c00387{letter-spacing:-0.216000px;}
.ls1_c00387{letter-spacing:0.000000px;}
.ls0_c00387{letter-spacing:0.072000px;}
.ls3_c00387{letter-spacing:0.144000px;}
.sc__c00387{text-shadow:none;}
.sc0_c00387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00387{-webkit-text-stroke:0px transparent;}
.sc0_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00387{word-spacing:-18.000000px;}
.ws4_c00387{word-spacing:-0.216000px;}
.ws13_c00387{word-spacing:-0.072000px;}
.ws7_c00387{word-spacing:0.000000px;}
.ws1a_c00387{word-spacing:0.288000px;}
.ws1c_c00387{word-spacing:0.360000px;}
.ws1b_c00387{word-spacing:0.720000px;}
.wse_c00387{word-spacing:1.440000px;}
.ws24_c00387{word-spacing:2.088000px;}
.ws23_c00387{word-spacing:2.160000px;}
.ws22_c00387{word-spacing:2.808000px;}
.ws21_c00387{word-spacing:2.880000px;}
.ws28_c00387{word-spacing:3.168000px;}
.ws26_c00387{word-spacing:3.600000px;}
.wsf_c00387{word-spacing:4.248000px;}
.wsa_c00387{word-spacing:4.320000px;}
.ws6_c00387{word-spacing:4.536000px;}
.ws1_c00387{word-spacing:4.608000px;}
.ws20_c00387{word-spacing:4.896000px;}
.ws1d_c00387{word-spacing:4.968000px;}
.ws1f_c00387{word-spacing:5.040000px;}
.ws1e_c00387{word-spacing:5.256000px;}
.ws27_c00387{word-spacing:7.488000px;}
.ws12_c00387{word-spacing:7.560000px;}
.ws14_c00387{word-spacing:8.568000px;}
.ws15_c00387{word-spacing:8.928000px;}
.ws0_c00387{word-spacing:12.240000px;}
.ws9_c00387{word-spacing:12.528000px;}
.ws17_c00387{word-spacing:14.328000px;}
.ws18_c00387{word-spacing:17.136000px;}
.ws19_c00387{word-spacing:17.208000px;}
.ws16_c00387{word-spacing:17.928000px;}
.wsb_c00387{word-spacing:21.240000px;}
.ws5_c00387{word-spacing:21.384000px;}
.ws25_c00387{word-spacing:21.528000px;}
.ws10_c00387{word-spacing:29.448000px;}
.ws11_c00387{word-spacing:29.520000px;}
.ws8_c00387{word-spacing:33.480000px;}
.ws29_c00387{word-spacing:35.568000px;}
.ws3_c00387{word-spacing:36.000000px;}
.wsc_c00387{word-spacing:39.528000px;}
.wsd_c00387{word-spacing:39.960000px;}
._0_c00387{margin-left:-1.015200px;}
._1_c00387{width:7.632000px;}
._2_c00387{width:20.145600px;}
.fc1_c00387{color:rgb(0,0,0);}
.fc0_c00387{color:rgb(35,31,32);}
.fs1_c00387{font-size:65.880000px;}
.fs0_c00387{font-size:72.000000px;}
.y0_c00387{bottom:0.000000px;}
.y1_c00387{bottom:61.748550px;}
.y20_c00387{bottom:115.424400px;}
.y1f_c00387{bottom:146.474400px;}
.y1e_c00387{bottom:177.524400px;}
.y1d_c00387{bottom:208.574400px;}
.y1c_c00387{bottom:239.624400px;}
.y1b_c00387{bottom:270.674400px;}
.y1a_c00387{bottom:301.724400px;}
.y19_c00387{bottom:363.644400px;}
.y18_c00387{bottom:456.974400px;}
.y17_c00387{bottom:488.024400px;}
.y16_c00387{bottom:519.074400px;}
.y15_c00387{bottom:550.124400px;}
.y14_c00387{bottom:581.174400px;}
.y13_c00387{bottom:612.224400px;}
.y12_c00387{bottom:643.274400px;}
.y11_c00387{bottom:674.324400px;}
.y10_c00387{bottom:705.374400px;}
.yf_c00387{bottom:736.424400px;}
.ye_c00387{bottom:767.474400px;}
.yd_c00387{bottom:829.484400px;}
.yc_c00387{bottom:860.534400px;}
.yb_c00387{bottom:891.584400px;}
.ya_c00387{bottom:922.634400px;}
.y9_c00387{bottom:953.684400px;}
.y8_c00387{bottom:984.734400px;}
.y7_c00387{bottom:1015.784400px;}
.y6_c00387{bottom:1046.834400px;}
.y5_c00387{bottom:1077.884400px;}
.y4_c00387{bottom:1108.934400px;}
.y3_c00387{bottom:1139.984400px;}
.y2_c00387{bottom:1194.074400px;}
.h2_c00387{height:50.400000px;}
.h3_c00387{height:54.331699px;}
.h4_c00387{height:76.824000px;}
.h0_c00387{height:1262.835000px;}
.h1_c00387{height:1263.000000px;}
.w0_c00387{width:892.914000px;}
.w1_c00387{width:893.250000px;}
.x0_c00387{left:0.000000px;}
.x1_c00387{left:54.000000px;}
.x2_c00387{left:127.620000px;}
.x4_c00387{left:154.620000px;}
.x3_c00387{left:159.570000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls2_c00387{letter-spacing:-0.192000pt;}
.ls1_c00387{letter-spacing:0.000000pt;}
.ls0_c00387{letter-spacing:0.064000pt;}
.ls3_c00387{letter-spacing:0.128000pt;}
.ws2_c00387{word-spacing:-16.000000pt;}
.ws4_c00387{word-spacing:-0.192000pt;}
.ws13_c00387{word-spacing:-0.064000pt;}
.ws7_c00387{word-spacing:0.000000pt;}
.ws1a_c00387{word-spacing:0.256000pt;}
.ws1c_c00387{word-spacing:0.320000pt;}
.ws1b_c00387{word-spacing:0.640000pt;}
.wse_c00387{word-spacing:1.280000pt;}
.ws24_c00387{word-spacing:1.856000pt;}
.ws23_c00387{word-spacing:1.920000pt;}
.ws22_c00387{word-spacing:2.496000pt;}
.ws21_c00387{word-spacing:2.560000pt;}
.ws28_c00387{word-spacing:2.816000pt;}
.ws26_c00387{word-spacing:3.200000pt;}
.wsf_c00387{word-spacing:3.776000pt;}
.wsa_c00387{word-spacing:3.840000pt;}
.ws6_c00387{word-spacing:4.032000pt;}
.ws1_c00387{word-spacing:4.096000pt;}
.ws20_c00387{word-spacing:4.352000pt;}
.ws1d_c00387{word-spacing:4.416000pt;}
.ws1f_c00387{word-spacing:4.480000pt;}
.ws1e_c00387{word-spacing:4.672000pt;}
.ws27_c00387{word-spacing:6.656000pt;}
.ws12_c00387{word-spacing:6.720000pt;}
.ws14_c00387{word-spacing:7.616000pt;}
.ws15_c00387{word-spacing:7.936000pt;}
.ws0_c00387{word-spacing:10.880000pt;}
.ws9_c00387{word-spacing:11.136000pt;}
.ws17_c00387{word-spacing:12.736000pt;}
.ws18_c00387{word-spacing:15.232000pt;}
.ws19_c00387{word-spacing:15.296000pt;}
.ws16_c00387{word-spacing:15.936000pt;}
.wsb_c00387{word-spacing:18.880000pt;}
.ws5_c00387{word-spacing:19.008000pt;}
.ws25_c00387{word-spacing:19.136000pt;}
.ws10_c00387{word-spacing:26.176000pt;}
.ws11_c00387{word-spacing:26.240000pt;}
.ws8_c00387{word-spacing:29.760000pt;}
.ws29_c00387{word-spacing:31.616000pt;}
.ws3_c00387{word-spacing:32.000000pt;}
.wsc_c00387{word-spacing:35.136000pt;}
.wsd_c00387{word-spacing:35.520000pt;}
._0_c00387{margin-left:-0.902400pt;}
._1_c00387{width:6.784000pt;}
._2_c00387{width:17.907200pt;}
.fs1_c00387{font-size:58.560000pt;}
.fs0_c00387{font-size:64.000000pt;}
.y0_c00387{bottom:0.000000pt;}
.y1_c00387{bottom:54.887600pt;}
.y20_c00387{bottom:102.599467pt;}
.y1f_c00387{bottom:130.199467pt;}
.y1e_c00387{bottom:157.799467pt;}
.y1d_c00387{bottom:185.399467pt;}
.y1c_c00387{bottom:212.999467pt;}
.y1b_c00387{bottom:240.599467pt;}
.y1a_c00387{bottom:268.199467pt;}
.y19_c00387{bottom:323.239467pt;}
.y18_c00387{bottom:406.199467pt;}
.y17_c00387{bottom:433.799467pt;}
.y16_c00387{bottom:461.399467pt;}
.y15_c00387{bottom:488.999467pt;}
.y14_c00387{bottom:516.599467pt;}
.y13_c00387{bottom:544.199467pt;}
.y12_c00387{bottom:571.799467pt;}
.y11_c00387{bottom:599.399467pt;}
.y10_c00387{bottom:626.999467pt;}
.yf_c00387{bottom:654.599467pt;}
.ye_c00387{bottom:682.199467pt;}
.yd_c00387{bottom:737.319467pt;}
.yc_c00387{bottom:764.919467pt;}
.yb_c00387{bottom:792.519467pt;}
.ya_c00387{bottom:820.119467pt;}
.y9_c00387{bottom:847.719467pt;}
.y8_c00387{bottom:875.319467pt;}
.y7_c00387{bottom:902.919467pt;}
.y6_c00387{bottom:930.519467pt;}
.y5_c00387{bottom:958.119467pt;}
.y4_c00387{bottom:985.719467pt;}
.y3_c00387{bottom:1013.319467pt;}
.y2_c00387{bottom:1061.399467pt;}
.h2_c00387{height:44.800000pt;}
.h3_c00387{height:48.294844pt;}
.h4_c00387{height:68.288000pt;}
.h0_c00387{height:1122.520000pt;}
.h1_c00387{height:1122.666667pt;}
.w0_c00387{width:793.701333pt;}
.w1_c00387{width:794.000000pt;}
.x0_c00387{left:0.000000pt;}
.x1_c00387{left:48.000000pt;}
.x2_c00387{left:113.440000pt;}
.x4_c00387{left:137.440000pt;}
.x3_c00387{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00388;src:url('chunks/assets/font_410464308264e6803303036e.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00388;src:url('chunks/assets/font_309267630436dce60d45be55.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00388;src:url('chunks/assets/font_a6e43314e230fe8d4f548c31.woff2')format("woff");}.ff4_c00388{font-family:ff4_c00388;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00388;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00388{font-family:ff5_c00388;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00388;src:url('chunks/assets/font_61382193c210c6c8033ef819.woff2')format("woff");}.ff6_c00388{font-family:ff6_c00388;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00388;src:url('chunks/assets/font_0ab9097c6cf6cbd5f41d5ab7.woff2')format("woff");}.ff7_c00388{font-family:ff7_c00388;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00388;src:url('chunks/assets/font_c95c7668e4cc164006cf168d.woff2')format("woff");}.ff8_c00388{font-family:ff8_c00388;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.ls4_c00388{letter-spacing:-0.288000px;}
.ls2_c00388{letter-spacing:-0.216000px;}
.ls1_c00388{letter-spacing:0.000000px;}
.ls0_c00388{letter-spacing:0.072000px;}
.ls3_c00388{letter-spacing:0.144000px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00388{word-spacing:-18.072000px;}
.ws2_c00388{word-spacing:-18.000000px;}
.ws9_c00388{word-spacing:-17.712000px;}
.ws3c_c00388{word-spacing:-0.360000px;}
.ws4_c00388{word-spacing:-0.216000px;}
.ws2c_c00388{word-spacing:-0.131760px;}
.ws16_c00388{word-spacing:-0.072000px;}
.wsa_c00388{word-spacing:0.000000px;}
.ws1d_c00388{word-spacing:0.288000px;}
.ws1f_c00388{word-spacing:0.360000px;}
.ws1e_c00388{word-spacing:0.720000px;}
.ws2d_c00388{word-spacing:1.008000px;}
.ws3d_c00388{word-spacing:1.080000px;}
.ws11_c00388{word-spacing:1.440000px;}
.ws26_c00388{word-spacing:2.088000px;}
.ws25_c00388{word-spacing:2.160000px;}
.ws24_c00388{word-spacing:2.808000px;}
.ws23_c00388{word-spacing:2.880000px;}
.ws2a_c00388{word-spacing:3.168000px;}
.ws3e_c00388{word-spacing:3.240000px;}
.ws3f_c00388{word-spacing:3.528000px;}
.ws28_c00388{word-spacing:3.600000px;}
.ws12_c00388{word-spacing:4.248000px;}
.wsd_c00388{word-spacing:4.320000px;}
.ws40_c00388{word-spacing:4.536000px;}
.ws6_c00388{word-spacing:4.543200px;}
.ws1_c00388{word-spacing:4.608000px;}
.ws2e_c00388{word-spacing:4.680000px;}
.ws22_c00388{word-spacing:4.896000px;}
.ws20_c00388{word-spacing:4.968000px;}
.ws21_c00388{word-spacing:5.040000px;}
.ws8_c00388{word-spacing:5.256000px;}
.ws35_c00388{word-spacing:6.768000px;}
.ws39_c00388{word-spacing:6.840000px;}
.ws37_c00388{word-spacing:7.128000px;}
.ws29_c00388{word-spacing:7.488000px;}
.ws15_c00388{word-spacing:7.560000px;}
.ws17_c00388{word-spacing:8.568000px;}
.ws18_c00388{word-spacing:8.928000px;}
.ws2f_c00388{word-spacing:9.648000px;}
.ws33_c00388{word-spacing:10.080000px;}
.ws38_c00388{word-spacing:10.728000px;}
.ws0_c00388{word-spacing:12.240000px;}
.wsc_c00388{word-spacing:12.528000px;}
.ws36_c00388{word-spacing:12.888000px;}
.ws3a_c00388{word-spacing:12.960000px;}
.ws30_c00388{word-spacing:13.968000px;}
.ws1a_c00388{word-spacing:14.328000px;}
.ws42_c00388{word-spacing:15.768000px;}
.ws41_c00388{word-spacing:15.840000px;}
.ws1b_c00388{word-spacing:17.136000px;}
.ws1c_c00388{word-spacing:17.208000px;}
.ws19_c00388{word-spacing:17.928000px;}
.ws34_c00388{word-spacing:20.448000px;}
.wse_c00388{word-spacing:21.240000px;}
.ws5_c00388{word-spacing:21.384000px;}
.ws27_c00388{word-spacing:21.528000px;}
.ws31_c00388{word-spacing:22.248000px;}
.ws32_c00388{word-spacing:22.320000px;}
.ws3b_c00388{word-spacing:24.480000px;}
.ws13_c00388{word-spacing:29.448000px;}
.ws14_c00388{word-spacing:29.520000px;}
.wsb_c00388{word-spacing:33.480000px;}
.ws2b_c00388{word-spacing:35.568000px;}
.ws3_c00388{word-spacing:36.000000px;}
.wsf_c00388{word-spacing:39.528000px;}
.ws10_c00388{word-spacing:39.960000px;}
._0_c00388{margin-left:-1.015200px;}
._4_c00388{width:1.008000px;}
._1_c00388{width:7.632000px;}
._3_c00388{width:12.816000px;}
._2_c00388{width:20.145600px;}
.fc2_c00388{color:transparent;}
.fc1_c00388{color:rgb(0,0,0);}
.fc0_c00388{color:rgb(35,31,32);}
.fs1_c00388{font-size:65.880000px;}
.fs0_c00388{font-size:72.000000px;}
.y0_c00388{bottom:0.000000px;}
.y1_c00388{bottom:61.748550px;}
.y20_c00388{bottom:115.424400px;}
.y1f_c00388{bottom:146.474400px;}
.y1e_c00388{bottom:177.524400px;}
.y1d_c00388{bottom:208.574400px;}
.y1c_c00388{bottom:239.624400px;}
.y1b_c00388{bottom:270.674400px;}
.y1a_c00388{bottom:301.724400px;}
.y24_c00388{bottom:332.774400px;}
.y19_c00388{bottom:363.644400px;}
.y23_c00388{bottom:363.824400px;}
.y22_c00388{bottom:394.874400px;}
.y18_c00388{bottom:456.974400px;}
.y17_c00388{bottom:488.024400px;}
.y16_c00388{bottom:519.074400px;}
.y15_c00388{bottom:550.124400px;}
.y14_c00388{bottom:581.174400px;}
.y13_c00388{bottom:612.224400px;}
.y12_c00388{bottom:643.274400px;}
.y11_c00388{bottom:674.324400px;}
.y10_c00388{bottom:705.374400px;}
.yf_c00388{bottom:736.424400px;}
.ye_c00388{bottom:767.474400px;}
.y21_c00388{bottom:798.434400px;}
.yd_c00388{bottom:829.484400px;}
.yc_c00388{bottom:860.534400px;}
.yb_c00388{bottom:891.584400px;}
.ya_c00388{bottom:922.634400px;}
.y9_c00388{bottom:953.684400px;}
.y8_c00388{bottom:984.734400px;}
.y7_c00388{bottom:1015.784400px;}
.y6_c00388{bottom:1046.834400px;}
.y5_c00388{bottom:1077.884400px;}
.y4_c00388{bottom:1108.934400px;}
.y3_c00388{bottom:1139.984400px;}
.y2_c00388{bottom:1194.074400px;}
.h2_c00388{height:50.400000px;}
.h3_c00388{height:54.331699px;}
.h4_c00388{height:76.824000px;}
.h0_c00388{height:1262.835000px;}
.h1_c00388{height:1263.000000px;}
.w2_c00388{width:0.000000px;}
.w3_c00388{width:0.066000px;}
.w0_c00388{width:892.914000px;}
.w1_c00388{width:893.250000px;}
.x1_c00388{left:-838.913400px;}
.x2_c00388{left:-765.293400px;}
.x4_c00388{left:-738.293400px;}
.x3_c00388{left:-733.343400px;}
.x0_c00388{left:0.000000px;}
.x7_c00388{left:127.620000px;}
.x8_c00388{left:154.620000px;}
.x6_c00388{left:684.090000px;}
.x5_c00388{left:804.366150px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls4_c00388{letter-spacing:-0.256000pt;}
.ls2_c00388{letter-spacing:-0.192000pt;}
.ls1_c00388{letter-spacing:0.000000pt;}
.ls0_c00388{letter-spacing:0.064000pt;}
.ls3_c00388{letter-spacing:0.128000pt;}
.ws7_c00388{word-spacing:-16.064000pt;}
.ws2_c00388{word-spacing:-16.000000pt;}
.ws9_c00388{word-spacing:-15.744000pt;}
.ws3c_c00388{word-spacing:-0.320000pt;}
.ws4_c00388{word-spacing:-0.192000pt;}
.ws2c_c00388{word-spacing:-0.117120pt;}
.ws16_c00388{word-spacing:-0.064000pt;}
.wsa_c00388{word-spacing:0.000000pt;}
.ws1d_c00388{word-spacing:0.256000pt;}
.ws1f_c00388{word-spacing:0.320000pt;}
.ws1e_c00388{word-spacing:0.640000pt;}
.ws2d_c00388{word-spacing:0.896000pt;}
.ws3d_c00388{word-spacing:0.960000pt;}
.ws11_c00388{word-spacing:1.280000pt;}
.ws26_c00388{word-spacing:1.856000pt;}
.ws25_c00388{word-spacing:1.920000pt;}
.ws24_c00388{word-spacing:2.496000pt;}
.ws23_c00388{word-spacing:2.560000pt;}
.ws2a_c00388{word-spacing:2.816000pt;}
.ws3e_c00388{word-spacing:2.880000pt;}
.ws3f_c00388{word-spacing:3.136000pt;}
.ws28_c00388{word-spacing:3.200000pt;}
.ws12_c00388{word-spacing:3.776000pt;}
.wsd_c00388{word-spacing:3.840000pt;}
.ws40_c00388{word-spacing:4.032000pt;}
.ws6_c00388{word-spacing:4.038400pt;}
.ws1_c00388{word-spacing:4.096000pt;}
.ws2e_c00388{word-spacing:4.160000pt;}
.ws22_c00388{word-spacing:4.352000pt;}
.ws20_c00388{word-spacing:4.416000pt;}
.ws21_c00388{word-spacing:4.480000pt;}
.ws8_c00388{word-spacing:4.672000pt;}
.ws35_c00388{word-spacing:6.016000pt;}
.ws39_c00388{word-spacing:6.080000pt;}
.ws37_c00388{word-spacing:6.336000pt;}
.ws29_c00388{word-spacing:6.656000pt;}
.ws15_c00388{word-spacing:6.720000pt;}
.ws17_c00388{word-spacing:7.616000pt;}
.ws18_c00388{word-spacing:7.936000pt;}
.ws2f_c00388{word-spacing:8.576000pt;}
.ws33_c00388{word-spacing:8.960000pt;}
.ws38_c00388{word-spacing:9.536000pt;}
.ws0_c00388{word-spacing:10.880000pt;}
.wsc_c00388{word-spacing:11.136000pt;}
.ws36_c00388{word-spacing:11.456000pt;}
.ws3a_c00388{word-spacing:11.520000pt;}
.ws30_c00388{word-spacing:12.416000pt;}
.ws1a_c00388{word-spacing:12.736000pt;}
.ws42_c00388{word-spacing:14.016000pt;}
.ws41_c00388{word-spacing:14.080000pt;}
.ws1b_c00388{word-spacing:15.232000pt;}
.ws1c_c00388{word-spacing:15.296000pt;}
.ws19_c00388{word-spacing:15.936000pt;}
.ws34_c00388{word-spacing:18.176000pt;}
.wse_c00388{word-spacing:18.880000pt;}
.ws5_c00388{word-spacing:19.008000pt;}
.ws27_c00388{word-spacing:19.136000pt;}
.ws31_c00388{word-spacing:19.776000pt;}
.ws32_c00388{word-spacing:19.840000pt;}
.ws3b_c00388{word-spacing:21.760000pt;}
.ws13_c00388{word-spacing:26.176000pt;}
.ws14_c00388{word-spacing:26.240000pt;}
.wsb_c00388{word-spacing:29.760000pt;}
.ws2b_c00388{word-spacing:31.616000pt;}
.ws3_c00388{word-spacing:32.000000pt;}
.wsf_c00388{word-spacing:35.136000pt;}
.ws10_c00388{word-spacing:35.520000pt;}
._0_c00388{margin-left:-0.902400pt;}
._4_c00388{width:0.896000pt;}
._1_c00388{width:6.784000pt;}
._3_c00388{width:11.392000pt;}
._2_c00388{width:17.907200pt;}
.fs1_c00388{font-size:58.560000pt;}
.fs0_c00388{font-size:64.000000pt;}
.y0_c00388{bottom:0.000000pt;}
.y1_c00388{bottom:54.887600pt;}
.y20_c00388{bottom:102.599467pt;}
.y1f_c00388{bottom:130.199467pt;}
.y1e_c00388{bottom:157.799467pt;}
.y1d_c00388{bottom:185.399467pt;}
.y1c_c00388{bottom:212.999467pt;}
.y1b_c00388{bottom:240.599467pt;}
.y1a_c00388{bottom:268.199467pt;}
.y24_c00388{bottom:295.799467pt;}
.y19_c00388{bottom:323.239467pt;}
.y23_c00388{bottom:323.399467pt;}
.y22_c00388{bottom:350.999467pt;}
.y18_c00388{bottom:406.199467pt;}
.y17_c00388{bottom:433.799467pt;}
.y16_c00388{bottom:461.399467pt;}
.y15_c00388{bottom:488.999467pt;}
.y14_c00388{bottom:516.599467pt;}
.y13_c00388{bottom:544.199467pt;}
.y12_c00388{bottom:571.799467pt;}
.y11_c00388{bottom:599.399467pt;}
.y10_c00388{bottom:626.999467pt;}
.yf_c00388{bottom:654.599467pt;}
.ye_c00388{bottom:682.199467pt;}
.y21_c00388{bottom:709.719467pt;}
.yd_c00388{bottom:737.319467pt;}
.yc_c00388{bottom:764.919467pt;}
.yb_c00388{bottom:792.519467pt;}
.ya_c00388{bottom:820.119467pt;}
.y9_c00388{bottom:847.719467pt;}
.y8_c00388{bottom:875.319467pt;}
.y7_c00388{bottom:902.919467pt;}
.y6_c00388{bottom:930.519467pt;}
.y5_c00388{bottom:958.119467pt;}
.y4_c00388{bottom:985.719467pt;}
.y3_c00388{bottom:1013.319467pt;}
.y2_c00388{bottom:1061.399467pt;}
.h2_c00388{height:44.800000pt;}
.h3_c00388{height:48.294844pt;}
.h4_c00388{height:68.288000pt;}
.h0_c00388{height:1122.520000pt;}
.h1_c00388{height:1122.666667pt;}
.w2_c00388{width:0.000000pt;}
.w3_c00388{width:0.058667pt;}
.w0_c00388{width:793.701333pt;}
.w1_c00388{width:794.000000pt;}
.x1_c00388{left:-745.700800pt;}
.x2_c00388{left:-680.260800pt;}
.x4_c00388{left:-656.260800pt;}
.x3_c00388{left:-651.860800pt;}
.x0_c00388{left:0.000000pt;}
.x7_c00388{left:113.440000pt;}
.x8_c00388{left:137.440000pt;}
.x6_c00388{left:608.080000pt;}
.x5_c00388{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00389;src:url('chunks/assets/font_1258dcb28ac04c55e5c19bf5.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00389;src:url('chunks/assets/font_a89f8731424d7e2848f5ae80.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00389;src:url('chunks/assets/font_c5e72cf32783be885e3bdbc8.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00389{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls1_c00389{letter-spacing:0.000000px;}
.ls0_c00389{letter-spacing:0.072000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00389{word-spacing:-18.072000px;}
.ws5_c00389{word-spacing:-0.072000px;}
.ws4_c00389{word-spacing:0.000000px;}
.ws1c_c00389{word-spacing:0.648000px;}
.ws1d_c00389{word-spacing:0.720000px;}
.ws10_c00389{word-spacing:1.008000px;}
.ws12_c00389{word-spacing:1.368000px;}
.wsf_c00389{word-spacing:1.440000px;}
.ws1b_c00389{word-spacing:2.088000px;}
.wsd_c00389{word-spacing:3.528000px;}
.wsc_c00389{word-spacing:3.600000px;}
.ws3_c00389{word-spacing:4.176000px;}
.ws16_c00389{word-spacing:4.320000px;}
.ws13_c00389{word-spacing:5.760000px;}
.ws14_c00389{word-spacing:6.408000px;}
.ws19_c00389{word-spacing:7.488000px;}
.ws1a_c00389{word-spacing:7.560000px;}
.ws8_c00389{word-spacing:8.640000px;}
.ws18_c00389{word-spacing:9.720000px;}
.ws6_c00389{word-spacing:11.088000px;}
.ws15_c00389{word-spacing:11.448000px;}
.wsb_c00389{word-spacing:12.168000px;}
.ws1_c00389{word-spacing:12.312000px;}
.ws11_c00389{word-spacing:14.256000px;}
.ws17_c00389{word-spacing:14.328000px;}
.ws7_c00389{word-spacing:16.488000px;}
.wsa_c00389{word-spacing:17.280000px;}
.ws9_c00389{word-spacing:17.568000px;}
.wse_c00389{word-spacing:17.928000px;}
.ws0_c00389{word-spacing:36.000000px;}
._0_c00389{margin-left:-1.238400px;}
._1_c00389{width:1.800000px;}
.fc1_c00389{color:rgb(0,0,0);}
.fc0_c00389{color:rgb(35,31,32);}
.fs1_c00389{font-size:65.880000px;}
.fs0_c00389{font-size:72.000000px;}
.y0_c00389{bottom:0.000000px;}
.y1_c00389{bottom:61.748550px;}
.y1e_c00389{bottom:146.474400px;}
.y1d_c00389{bottom:177.524400px;}
.y1c_c00389{bottom:208.574400px;}
.y1b_c00389{bottom:270.674400px;}
.y1a_c00389{bottom:301.724400px;}
.y19_c00389{bottom:332.774400px;}
.y18_c00389{bottom:363.824400px;}
.y17_c00389{bottom:394.874400px;}
.y16_c00389{bottom:425.924400px;}
.y15_c00389{bottom:456.974400px;}
.y14_c00389{bottom:488.024400px;}
.y13_c00389{bottom:519.074400px;}
.y12_c00389{bottom:581.174400px;}
.y11_c00389{bottom:612.224400px;}
.y10_c00389{bottom:643.274400px;}
.yf_c00389{bottom:674.324400px;}
.ye_c00389{bottom:705.374400px;}
.yd_c00389{bottom:736.424400px;}
.yc_c00389{bottom:798.434400px;}
.yb_c00389{bottom:829.484400px;}
.ya_c00389{bottom:860.534400px;}
.y9_c00389{bottom:891.584400px;}
.y8_c00389{bottom:953.684400px;}
.y7_c00389{bottom:984.734400px;}
.y6_c00389{bottom:1015.784400px;}
.y5_c00389{bottom:1046.834400px;}
.y4_c00389{bottom:1077.884400px;}
.y3_c00389{bottom:1139.804400px;}
.y2_c00389{bottom:1194.074400px;}
.h2_c00389{height:50.400000px;}
.h3_c00389{height:54.331699px;}
.h4_c00389{height:76.824000px;}
.h0_c00389{height:1262.835000px;}
.h1_c00389{height:1263.000000px;}
.w0_c00389{width:892.914000px;}
.w1_c00389{width:893.250000px;}
.x0_c00389{left:0.000000px;}
.x1_c00389{left:54.000000px;}
.x2_c00389{left:127.620000px;}
.x3_c00389{left:154.620000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls1_c00389{letter-spacing:0.000000pt;}
.ls0_c00389{letter-spacing:0.064000pt;}
.ws2_c00389{word-spacing:-16.064000pt;}
.ws5_c00389{word-spacing:-0.064000pt;}
.ws4_c00389{word-spacing:0.000000pt;}
.ws1c_c00389{word-spacing:0.576000pt;}
.ws1d_c00389{word-spacing:0.640000pt;}
.ws10_c00389{word-spacing:0.896000pt;}
.ws12_c00389{word-spacing:1.216000pt;}
.wsf_c00389{word-spacing:1.280000pt;}
.ws1b_c00389{word-spacing:1.856000pt;}
.wsd_c00389{word-spacing:3.136000pt;}
.wsc_c00389{word-spacing:3.200000pt;}
.ws3_c00389{word-spacing:3.712000pt;}
.ws16_c00389{word-spacing:3.840000pt;}
.ws13_c00389{word-spacing:5.120000pt;}
.ws14_c00389{word-spacing:5.696000pt;}
.ws19_c00389{word-spacing:6.656000pt;}
.ws1a_c00389{word-spacing:6.720000pt;}
.ws8_c00389{word-spacing:7.680000pt;}
.ws18_c00389{word-spacing:8.640000pt;}
.ws6_c00389{word-spacing:9.856000pt;}
.ws15_c00389{word-spacing:10.176000pt;}
.wsb_c00389{word-spacing:10.816000pt;}
.ws1_c00389{word-spacing:10.944000pt;}
.ws11_c00389{word-spacing:12.672000pt;}
.ws17_c00389{word-spacing:12.736000pt;}
.ws7_c00389{word-spacing:14.656000pt;}
.wsa_c00389{word-spacing:15.360000pt;}
.ws9_c00389{word-spacing:15.616000pt;}
.wse_c00389{word-spacing:15.936000pt;}
.ws0_c00389{word-spacing:32.000000pt;}
._0_c00389{margin-left:-1.100800pt;}
._1_c00389{width:1.600000pt;}
.fs1_c00389{font-size:58.560000pt;}
.fs0_c00389{font-size:64.000000pt;}
.y0_c00389{bottom:0.000000pt;}
.y1_c00389{bottom:54.887600pt;}
.y1e_c00389{bottom:130.199467pt;}
.y1d_c00389{bottom:157.799467pt;}
.y1c_c00389{bottom:185.399467pt;}
.y1b_c00389{bottom:240.599467pt;}
.y1a_c00389{bottom:268.199467pt;}
.y19_c00389{bottom:295.799467pt;}
.y18_c00389{bottom:323.399467pt;}
.y17_c00389{bottom:350.999467pt;}
.y16_c00389{bottom:378.599467pt;}
.y15_c00389{bottom:406.199467pt;}
.y14_c00389{bottom:433.799467pt;}
.y13_c00389{bottom:461.399467pt;}
.y12_c00389{bottom:516.599467pt;}
.y11_c00389{bottom:544.199467pt;}
.y10_c00389{bottom:571.799467pt;}
.yf_c00389{bottom:599.399467pt;}
.ye_c00389{bottom:626.999467pt;}
.yd_c00389{bottom:654.599467pt;}
.yc_c00389{bottom:709.719467pt;}
.yb_c00389{bottom:737.319467pt;}
.ya_c00389{bottom:764.919467pt;}
.y9_c00389{bottom:792.519467pt;}
.y8_c00389{bottom:847.719467pt;}
.y7_c00389{bottom:875.319467pt;}
.y6_c00389{bottom:902.919467pt;}
.y5_c00389{bottom:930.519467pt;}
.y4_c00389{bottom:958.119467pt;}
.y3_c00389{bottom:1013.159467pt;}
.y2_c00389{bottom:1061.399467pt;}
.h2_c00389{height:44.800000pt;}
.h3_c00389{height:48.294844pt;}
.h4_c00389{height:68.288000pt;}
.h0_c00389{height:1122.520000pt;}
.h1_c00389{height:1122.666667pt;}
.w0_c00389{width:793.701333pt;}
.w1_c00389{width:794.000000pt;}
.x0_c00389{left:0.000000pt;}
.x1_c00389{left:48.000000pt;}
.x2_c00389{left:113.440000pt;}
.x3_c00389{left:137.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00390;src:url('chunks/assets/font_b5a08cfad64bf154456c8563.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_f65451fa4bd2c09724cd478f.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_81b101d154129a04bb0a7573.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00390;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00390{font-family:ff5_c00390;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00390;src:url('chunks/assets/font_5999c63ec80b0ea1a3534c32.woff2')format("woff");}.ff6_c00390{font-family:ff6_c00390;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00390;src:url('chunks/assets/font_f65451fa4bd2c09724cd478f.woff2')format("woff");}.ff7_c00390{font-family:ff7_c00390;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00390;src:url('chunks/assets/font_61d2e71183147c6ced72eb0c.woff2')format("woff");}.ff8_c00390{font-family:ff8_c00390;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00390{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls2_c00390{letter-spacing:-0.216000px;}
.ls1_c00390{letter-spacing:0.000000px;}
.ls0_c00390{letter-spacing:0.072000px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00390{word-spacing:-18.072000px;}
.ws1f_c00390{word-spacing:-0.131760px;}
.ws6_c00390{word-spacing:-0.072000px;}
.ws5_c00390{word-spacing:0.000000px;}
.ws4_c00390{word-spacing:0.216000px;}
.ws2c_c00390{word-spacing:0.360000px;}
.ws1d_c00390{word-spacing:0.648000px;}
.ws1e_c00390{word-spacing:0.720000px;}
.ws11_c00390{word-spacing:1.008000px;}
.ws13_c00390{word-spacing:1.368000px;}
.ws10_c00390{word-spacing:1.440000px;}
.ws21_c00390{word-spacing:2.016000px;}
.ws1c_c00390{word-spacing:2.088000px;}
.ws2b_c00390{word-spacing:2.160000px;}
.ws29_c00390{word-spacing:2.448000px;}
.wse_c00390{word-spacing:3.528000px;}
.wsd_c00390{word-spacing:3.600000px;}
.ws26_c00390{word-spacing:3.888000px;}
.ws25_c00390{word-spacing:3.960000px;}
.ws3_c00390{word-spacing:4.176000px;}
.ws17_c00390{word-spacing:4.320000px;}
.ws27_c00390{word-spacing:5.688000px;}
.ws14_c00390{word-spacing:5.760000px;}
.ws15_c00390{word-spacing:6.408000px;}
.ws22_c00390{word-spacing:7.128000px;}
.ws23_c00390{word-spacing:7.200000px;}
.ws1a_c00390{word-spacing:7.488000px;}
.ws1b_c00390{word-spacing:7.560000px;}
.ws9_c00390{word-spacing:8.640000px;}
.ws24_c00390{word-spacing:8.928000px;}
.ws19_c00390{word-spacing:9.720000px;}
.ws2d_c00390{word-spacing:10.008000px;}
.ws2e_c00390{word-spacing:10.080000px;}
.ws2a_c00390{word-spacing:10.368000px;}
.ws7_c00390{word-spacing:11.088000px;}
.ws16_c00390{word-spacing:11.448000px;}
.wsc_c00390{word-spacing:12.168000px;}
.ws1_c00390{word-spacing:12.312000px;}
.ws2f_c00390{word-spacing:13.608000px;}
.ws30_c00390{word-spacing:13.680000px;}
.ws12_c00390{word-spacing:14.256000px;}
.ws18_c00390{word-spacing:14.328000px;}
.ws28_c00390{word-spacing:15.840000px;}
.ws8_c00390{word-spacing:16.488000px;}
.wsb_c00390{word-spacing:17.280000px;}
.wsa_c00390{word-spacing:17.568000px;}
.wsf_c00390{word-spacing:17.928000px;}
.ws20_c00390{word-spacing:19.008000px;}
.ws0_c00390{word-spacing:36.000000px;}
._0_c00390{margin-left:-1.238400px;}
._1_c00390{width:1.800000px;}
.fc2_c00390{color:transparent;}
.fc1_c00390{color:rgb(0,0,0);}
.fc0_c00390{color:rgb(35,31,32);}
.fs1_c00390{font-size:65.880000px;}
.fs0_c00390{font-size:72.000000px;}
.y0_c00390{bottom:0.000000px;}
.y1_c00390{bottom:61.748550px;}
.y1e_c00390{bottom:146.474400px;}
.y1d_c00390{bottom:177.524400px;}
.y1c_c00390{bottom:208.574400px;}
.y1b_c00390{bottom:270.674400px;}
.y1a_c00390{bottom:301.724400px;}
.y19_c00390{bottom:332.774400px;}
.y18_c00390{bottom:363.824400px;}
.y17_c00390{bottom:394.874400px;}
.y16_c00390{bottom:425.924400px;}
.y15_c00390{bottom:456.974400px;}
.y14_c00390{bottom:488.024400px;}
.y13_c00390{bottom:519.074400px;}
.y23_c00390{bottom:550.124400px;}
.y12_c00390{bottom:581.174400px;}
.y11_c00390{bottom:612.224400px;}
.y10_c00390{bottom:643.274400px;}
.yf_c00390{bottom:674.324400px;}
.ye_c00390{bottom:705.374400px;}
.yd_c00390{bottom:736.424400px;}
.y22_c00390{bottom:767.474400px;}
.yc_c00390{bottom:798.434400px;}
.yb_c00390{bottom:829.484400px;}
.ya_c00390{bottom:860.534400px;}
.y9_c00390{bottom:891.584400px;}
.y21_c00390{bottom:922.634400px;}
.y8_c00390{bottom:953.684400px;}
.y7_c00390{bottom:984.734400px;}
.y6_c00390{bottom:1015.784400px;}
.y5_c00390{bottom:1046.834400px;}
.y4_c00390{bottom:1077.884400px;}
.y20_c00390{bottom:1108.934400px;}
.y3_c00390{bottom:1139.804400px;}
.y1f_c00390{bottom:1139.984400px;}
.y2_c00390{bottom:1194.074400px;}
.h2_c00390{height:50.400000px;}
.h3_c00390{height:54.331699px;}
.h4_c00390{height:76.824000px;}
.h0_c00390{height:1262.835000px;}
.h1_c00390{height:1263.000000px;}
.w2_c00390{width:0.000000px;}
.w3_c00390{width:0.066000px;}
.w0_c00390{width:892.914000px;}
.w1_c00390{width:893.250000px;}
.x1_c00390{left:-838.913400px;}
.x2_c00390{left:-765.293400px;}
.x3_c00390{left:-738.293400px;}
.x0_c00390{left:0.000000px;}
.x6_c00390{left:127.620000px;}
.x7_c00390{left:154.620000px;}
.x5_c00390{left:684.090000px;}
.x4_c00390{left:804.366150px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls2_c00390{letter-spacing:-0.192000pt;}
.ls1_c00390{letter-spacing:0.000000pt;}
.ls0_c00390{letter-spacing:0.064000pt;}
.ws2_c00390{word-spacing:-16.064000pt;}
.ws1f_c00390{word-spacing:-0.117120pt;}
.ws6_c00390{word-spacing:-0.064000pt;}
.ws5_c00390{word-spacing:0.000000pt;}
.ws4_c00390{word-spacing:0.192000pt;}
.ws2c_c00390{word-spacing:0.320000pt;}
.ws1d_c00390{word-spacing:0.576000pt;}
.ws1e_c00390{word-spacing:0.640000pt;}
.ws11_c00390{word-spacing:0.896000pt;}
.ws13_c00390{word-spacing:1.216000pt;}
.ws10_c00390{word-spacing:1.280000pt;}
.ws21_c00390{word-spacing:1.792000pt;}
.ws1c_c00390{word-spacing:1.856000pt;}
.ws2b_c00390{word-spacing:1.920000pt;}
.ws29_c00390{word-spacing:2.176000pt;}
.wse_c00390{word-spacing:3.136000pt;}
.wsd_c00390{word-spacing:3.200000pt;}
.ws26_c00390{word-spacing:3.456000pt;}
.ws25_c00390{word-spacing:3.520000pt;}
.ws3_c00390{word-spacing:3.712000pt;}
.ws17_c00390{word-spacing:3.840000pt;}
.ws27_c00390{word-spacing:5.056000pt;}
.ws14_c00390{word-spacing:5.120000pt;}
.ws15_c00390{word-spacing:5.696000pt;}
.ws22_c00390{word-spacing:6.336000pt;}
.ws23_c00390{word-spacing:6.400000pt;}
.ws1a_c00390{word-spacing:6.656000pt;}
.ws1b_c00390{word-spacing:6.720000pt;}
.ws9_c00390{word-spacing:7.680000pt;}
.ws24_c00390{word-spacing:7.936000pt;}
.ws19_c00390{word-spacing:8.640000pt;}
.ws2d_c00390{word-spacing:8.896000pt;}
.ws2e_c00390{word-spacing:8.960000pt;}
.ws2a_c00390{word-spacing:9.216000pt;}
.ws7_c00390{word-spacing:9.856000pt;}
.ws16_c00390{word-spacing:10.176000pt;}
.wsc_c00390{word-spacing:10.816000pt;}
.ws1_c00390{word-spacing:10.944000pt;}
.ws2f_c00390{word-spacing:12.096000pt;}
.ws30_c00390{word-spacing:12.160000pt;}
.ws12_c00390{word-spacing:12.672000pt;}
.ws18_c00390{word-spacing:12.736000pt;}
.ws28_c00390{word-spacing:14.080000pt;}
.ws8_c00390{word-spacing:14.656000pt;}
.wsb_c00390{word-spacing:15.360000pt;}
.wsa_c00390{word-spacing:15.616000pt;}
.wsf_c00390{word-spacing:15.936000pt;}
.ws20_c00390{word-spacing:16.896000pt;}
.ws0_c00390{word-spacing:32.000000pt;}
._0_c00390{margin-left:-1.100800pt;}
._1_c00390{width:1.600000pt;}
.fs1_c00390{font-size:58.560000pt;}
.fs0_c00390{font-size:64.000000pt;}
.y0_c00390{bottom:0.000000pt;}
.y1_c00390{bottom:54.887600pt;}
.y1e_c00390{bottom:130.199467pt;}
.y1d_c00390{bottom:157.799467pt;}
.y1c_c00390{bottom:185.399467pt;}
.y1b_c00390{bottom:240.599467pt;}
.y1a_c00390{bottom:268.199467pt;}
.y19_c00390{bottom:295.799467pt;}
.y18_c00390{bottom:323.399467pt;}
.y17_c00390{bottom:350.999467pt;}
.y16_c00390{bottom:378.599467pt;}
.y15_c00390{bottom:406.199467pt;}
.y14_c00390{bottom:433.799467pt;}
.y13_c00390{bottom:461.399467pt;}
.y23_c00390{bottom:488.999467pt;}
.y12_c00390{bottom:516.599467pt;}
.y11_c00390{bottom:544.199467pt;}
.y10_c00390{bottom:571.799467pt;}
.yf_c00390{bottom:599.399467pt;}
.ye_c00390{bottom:626.999467pt;}
.yd_c00390{bottom:654.599467pt;}
.y22_c00390{bottom:682.199467pt;}
.yc_c00390{bottom:709.719467pt;}
.yb_c00390{bottom:737.319467pt;}
.ya_c00390{bottom:764.919467pt;}
.y9_c00390{bottom:792.519467pt;}
.y21_c00390{bottom:820.119467pt;}
.y8_c00390{bottom:847.719467pt;}
.y7_c00390{bottom:875.319467pt;}
.y6_c00390{bottom:902.919467pt;}
.y5_c00390{bottom:930.519467pt;}
.y4_c00390{bottom:958.119467pt;}
.y20_c00390{bottom:985.719467pt;}
.y3_c00390{bottom:1013.159467pt;}
.y1f_c00390{bottom:1013.319467pt;}
.y2_c00390{bottom:1061.399467pt;}
.h2_c00390{height:44.800000pt;}
.h3_c00390{height:48.294844pt;}
.h4_c00390{height:68.288000pt;}
.h0_c00390{height:1122.520000pt;}
.h1_c00390{height:1122.666667pt;}
.w2_c00390{width:0.000000pt;}
.w3_c00390{width:0.058667pt;}
.w0_c00390{width:793.701333pt;}
.w1_c00390{width:794.000000pt;}
.x1_c00390{left:-745.700800pt;}
.x2_c00390{left:-680.260800pt;}
.x3_c00390{left:-656.260800pt;}
.x0_c00390{left:0.000000pt;}
.x6_c00390{left:113.440000pt;}
.x7_c00390{left:137.440000pt;}
.x5_c00390{left:608.080000pt;}
.x4_c00390{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00391{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
}
.y0_c00391{bottom:0.000000px;}
.h0_c00391{height:1262.835000px;}
.h1_c00391{height:1263.000000px;}
.w0_c00391{width:892.914000px;}
.w1_c00391{width:893.250000px;}
.x0_c00391{left:0.000000px;}
@media print{
.y0_c00391{bottom:0.000000pt;}
.h0_c00391{height:1122.520000pt;}
.h1_c00391{height:1122.666667pt;}
.w0_c00391{width:793.701333pt;}
.w1_c00391{width:794.000000pt;}
.x0_c00391{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_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;}
.sc__c00392{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
}
.y0_c00392{bottom:0.000000px;}
.h0_c00392{height:1262.835000px;}
.h1_c00392{height:1263.000000px;}
.w0_c00392{width:892.914000px;}
.w1_c00392{width:893.250000px;}
.x0_c00392{left:0.000000px;}
@media print{
.y0_c00392{bottom:0.000000pt;}
.h0_c00392{height:1122.520000pt;}
.h1_c00392{height:1122.666667pt;}
.w0_c00392{width:793.701333pt;}
.w1_c00392{width:794.000000pt;}
.x0_c00392{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_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;}
.sc__c00393{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
}
.y0_c00393{bottom:0.000000px;}
.h0_c00393{height:1262.835000px;}
.h1_c00393{height:1263.000000px;}
.w0_c00393{width:892.914000px;}
.w1_c00393{width:893.250000px;}
.x0_c00393{left:0.000000px;}
@media print{
.y0_c00393{bottom:0.000000pt;}
.h0_c00393{height:1122.520000pt;}
.h1_c00393{height:1122.666667pt;}
.w0_c00393{width:793.701333pt;}
.w1_c00393{width:794.000000pt;}
.x0_c00393{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_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00394;src:url('chunks/assets/font_226241f1bf56f7367cdc73f7.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00394;src:url('chunks/assets/font_a8df67a93303370a4f787ab0.woff2')format("woff");}.ff3_c00394{font-family:ff3_c00394;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00394;src:url('chunks/assets/font_bd7735b8dd2c66e7a41643e2.woff2')format("woff");}.ff4_c00394{font-family:ff4_c00394;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00394;src:url('chunks/assets/font_32de99ecda85b5b12760091c.woff2')format("woff");}.ff5_c00394{font-family:ff5_c00394;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00394{letter-spacing:-0.576000px;}
.ls7_c00394{letter-spacing:-0.360000px;}
.ls6_c00394{letter-spacing:-0.144000px;}
.ls5_c00394{letter-spacing:0.000000px;}
.ls0_c00394{letter-spacing:0.072000px;}
.ls2_c00394{letter-spacing:0.144000px;}
.ls1_c00394{letter-spacing:17.640000px;}
.ls3_c00394{letter-spacing:18.000000px;}
.ls4_c00394{letter-spacing:23.400000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00394{word-spacing:-18.144000px;}
.ws2_c00394{word-spacing:-18.072000px;}
.ws0_c00394{word-spacing:-18.000000px;}
.ws5_c00394{word-spacing:-17.856000px;}
.ws4_c00394{word-spacing:-17.640000px;}
.ws6_c00394{word-spacing:-17.424000px;}
.ws1f_c00394{word-spacing:-0.432000px;}
.ws1e_c00394{word-spacing:-0.360000px;}
.ws8_c00394{word-spacing:-0.131760px;}
.ws15_c00394{word-spacing:-0.072000px;}
.ws7_c00394{word-spacing:0.000000px;}
.ws9_c00394{word-spacing:0.144000px;}
.wsd_c00394{word-spacing:0.720000px;}
.ws1c_c00394{word-spacing:4.320000px;}
.ws17_c00394{word-spacing:4.896000px;}
.ws18_c00394{word-spacing:4.968000px;}
.ws1a_c00394{word-spacing:5.256000px;}
.ws19_c00394{word-spacing:5.400000px;}
.ws11_c00394{word-spacing:8.280000px;}
.ws1_c00394{word-spacing:8.496000px;}
.wsf_c00394{word-spacing:10.368000px;}
.wse_c00394{word-spacing:10.440000px;}
.ws12_c00394{word-spacing:13.248000px;}
.ws16_c00394{word-spacing:13.680000px;}
.wsb_c00394{word-spacing:13.968000px;}
.wsa_c00394{word-spacing:14.040000px;}
.ws1b_c00394{word-spacing:15.480000px;}
.ws10_c00394{word-spacing:16.560000px;}
.wsc_c00394{word-spacing:27.288000px;}
.ws1d_c00394{word-spacing:27.360000px;}
.ws14_c00394{word-spacing:40.608000px;}
.ws13_c00394{word-spacing:40.680000px;}
._1_c00394{margin-left:-1.094400px;}
._0_c00394{width:1.119960px;}
.fc1_c00394{color:rgb(0,0,0);}
.fc0_c00394{color:rgb(35,31,32);}
.fs1_c00394{font-size:65.880000px;}
.fs0_c00394{font-size:72.000000px;}
.y0_c00394{bottom:0.000000px;}
.y1_c00394{bottom:61.748550px;}
.y1b_c00394{bottom:187.874400px;}
.y1a_c00394{bottom:229.274400px;}
.y19_c00394{bottom:270.674400px;}
.y18_c00394{bottom:312.074400px;}
.y17_c00394{bottom:353.474400px;}
.y16_c00394{bottom:394.874400px;}
.y15_c00394{bottom:436.274400px;}
.y14_c00394{bottom:477.674400px;}
.y13_c00394{bottom:519.074400px;}
.y12_c00394{bottom:560.474400px;}
.y11_c00394{bottom:601.874400px;}
.y10_c00394{bottom:643.274400px;}
.yf_c00394{bottom:684.674400px;}
.ye_c00394{bottom:726.074400px;}
.yd_c00394{bottom:767.474400px;}
.yc_c00394{bottom:808.784400px;}
.yb_c00394{bottom:850.184400px;}
.ya_c00394{bottom:891.584400px;}
.y9_c00394{bottom:932.984400px;}
.y8_c00394{bottom:974.384400px;}
.y7_c00394{bottom:1015.784400px;}
.y6_c00394{bottom:1057.184400px;}
.y5_c00394{bottom:1098.584400px;}
.y4_c00394{bottom:1139.804400px;}
.y3_c00394{bottom:1173.915120px;}
.y2_c00394{bottom:1194.074400px;}
.h2_c00394{height:50.400000px;}
.h3_c00394{height:54.331699px;}
.h4_c00394{height:76.824000px;}
.h5_c00394{height:78.048000px;}
.h0_c00394{height:1262.835000px;}
.h1_c00394{height:1263.000000px;}
.w0_c00394{width:892.914000px;}
.w1_c00394{width:893.250000px;}
.x0_c00394{left:0.000000px;}
.x2_c00394{left:127.620000px;}
.x3_c00394{left:180.810000px;}
.x1_c00394{left:804.366150px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls8_c00394{letter-spacing:-0.512000pt;}
.ls7_c00394{letter-spacing:-0.320000pt;}
.ls6_c00394{letter-spacing:-0.128000pt;}
.ls5_c00394{letter-spacing:0.000000pt;}
.ls0_c00394{letter-spacing:0.064000pt;}
.ls2_c00394{letter-spacing:0.128000pt;}
.ls1_c00394{letter-spacing:15.680000pt;}
.ls3_c00394{letter-spacing:16.000000pt;}
.ls4_c00394{letter-spacing:20.800000pt;}
.ws3_c00394{word-spacing:-16.128000pt;}
.ws2_c00394{word-spacing:-16.064000pt;}
.ws0_c00394{word-spacing:-16.000000pt;}
.ws5_c00394{word-spacing:-15.872000pt;}
.ws4_c00394{word-spacing:-15.680000pt;}
.ws6_c00394{word-spacing:-15.488000pt;}
.ws1f_c00394{word-spacing:-0.384000pt;}
.ws1e_c00394{word-spacing:-0.320000pt;}
.ws8_c00394{word-spacing:-0.117120pt;}
.ws15_c00394{word-spacing:-0.064000pt;}
.ws7_c00394{word-spacing:0.000000pt;}
.ws9_c00394{word-spacing:0.128000pt;}
.wsd_c00394{word-spacing:0.640000pt;}
.ws1c_c00394{word-spacing:3.840000pt;}
.ws17_c00394{word-spacing:4.352000pt;}
.ws18_c00394{word-spacing:4.416000pt;}
.ws1a_c00394{word-spacing:4.672000pt;}
.ws19_c00394{word-spacing:4.800000pt;}
.ws11_c00394{word-spacing:7.360000pt;}
.ws1_c00394{word-spacing:7.552000pt;}
.wsf_c00394{word-spacing:9.216000pt;}
.wse_c00394{word-spacing:9.280000pt;}
.ws12_c00394{word-spacing:11.776000pt;}
.ws16_c00394{word-spacing:12.160000pt;}
.wsb_c00394{word-spacing:12.416000pt;}
.wsa_c00394{word-spacing:12.480000pt;}
.ws1b_c00394{word-spacing:13.760000pt;}
.ws10_c00394{word-spacing:14.720000pt;}
.wsc_c00394{word-spacing:24.256000pt;}
.ws1d_c00394{word-spacing:24.320000pt;}
.ws14_c00394{word-spacing:36.096000pt;}
.ws13_c00394{word-spacing:36.160000pt;}
._1_c00394{margin-left:-0.972800pt;}
._0_c00394{width:0.995520pt;}
.fs1_c00394{font-size:58.560000pt;}
.fs0_c00394{font-size:64.000000pt;}
.y0_c00394{bottom:0.000000pt;}
.y1_c00394{bottom:54.887600pt;}
.y1b_c00394{bottom:166.999467pt;}
.y1a_c00394{bottom:203.799467pt;}
.y19_c00394{bottom:240.599467pt;}
.y18_c00394{bottom:277.399467pt;}
.y17_c00394{bottom:314.199467pt;}
.y16_c00394{bottom:350.999467pt;}
.y15_c00394{bottom:387.799467pt;}
.y14_c00394{bottom:424.599467pt;}
.y13_c00394{bottom:461.399467pt;}
.y12_c00394{bottom:498.199467pt;}
.y11_c00394{bottom:534.999467pt;}
.y10_c00394{bottom:571.799467pt;}
.yf_c00394{bottom:608.599467pt;}
.ye_c00394{bottom:645.399467pt;}
.yd_c00394{bottom:682.199467pt;}
.yc_c00394{bottom:718.919467pt;}
.yb_c00394{bottom:755.719467pt;}
.ya_c00394{bottom:792.519467pt;}
.y9_c00394{bottom:829.319467pt;}
.y8_c00394{bottom:866.119467pt;}
.y7_c00394{bottom:902.919467pt;}
.y6_c00394{bottom:939.719467pt;}
.y5_c00394{bottom:976.519467pt;}
.y4_c00394{bottom:1013.159467pt;}
.y3_c00394{bottom:1043.480107pt;}
.y2_c00394{bottom:1061.399467pt;}
.h2_c00394{height:44.800000pt;}
.h3_c00394{height:48.294844pt;}
.h4_c00394{height:68.288000pt;}
.h5_c00394{height:69.376000pt;}
.h0_c00394{height:1122.520000pt;}
.h1_c00394{height:1122.666667pt;}
.w0_c00394{width:793.701333pt;}
.w1_c00394{width:794.000000pt;}
.x0_c00394{left:0.000000pt;}
.x2_c00394{left:113.440000pt;}
.x3_c00394{left:160.720000pt;}
.x1_c00394{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00395;src:url('chunks/assets/font_78064cc6a72b8d8de250b5ff.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00395;src:url('chunks/assets/font_287423fe161558b114f3fa87.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00395;src:url('chunks/assets/font_859d1dd12a41df7ae8c70d4e.woff2')format("woff");}.ff4_c00395{font-family:ff4_c00395;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00395{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.ls8_c00395{letter-spacing:-0.576000px;}
.ls7_c00395{letter-spacing:-0.360000px;}
.ls9_c00395{letter-spacing:-0.144000px;}
.ls6_c00395{letter-spacing:-0.072000px;}
.ls5_c00395{letter-spacing:0.000000px;}
.ls0_c00395{letter-spacing:0.072000px;}
.ls2_c00395{letter-spacing:0.144000px;}
.ls4_c00395{letter-spacing:18.720000px;}
.ls1_c00395{letter-spacing:20.880000px;}
.ls3_c00395{letter-spacing:36.000000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00395{word-spacing:-18.144000px;}
.ws4_c00395{word-spacing:-18.072000px;}
.ws3_c00395{word-spacing:-18.000000px;}
.ws1_c00395{word-spacing:-17.928000px;}
.ws6_c00395{word-spacing:-17.856000px;}
.ws2_c00395{word-spacing:-17.640000px;}
.ws5_c00395{word-spacing:-17.424000px;}
.ws17_c00395{word-spacing:-0.360000px;}
.ws9_c00395{word-spacing:-0.131760px;}
.ws8_c00395{word-spacing:0.000000px;}
.ws16_c00395{word-spacing:0.288000px;}
.wse_c00395{word-spacing:0.360000px;}
.ws1c_c00395{word-spacing:0.432000px;}
.ws7_c00395{word-spacing:0.720000px;}
.wsa_c00395{word-spacing:1.080000px;}
.ws18_c00395{word-spacing:1.800000px;}
.wsf_c00395{word-spacing:2.880000px;}
.wsd_c00395{word-spacing:3.240000px;}
.ws11_c00395{word-spacing:3.960000px;}
.ws1b_c00395{word-spacing:4.032000px;}
.ws15_c00395{word-spacing:4.464000px;}
.ws14_c00395{word-spacing:4.680000px;}
.ws12_c00395{word-spacing:14.040000px;}
.ws13_c00395{word-spacing:16.920000px;}
.wsb_c00395{word-spacing:25.848000px;}
.wsc_c00395{word-spacing:25.920000px;}
.ws1a_c00395{word-spacing:26.208000px;}
.ws19_c00395{word-spacing:26.280000px;}
.ws10_c00395{word-spacing:40.248000px;}
._1_c00395{margin-left:-1.008000px;}
._0_c00395{width:1.054080px;}
.fc1_c00395{color:rgb(0,0,0);}
.fc0_c00395{color:rgb(35,31,32);}
.fs1_c00395{font-size:65.880000px;}
.fs0_c00395{font-size:72.000000px;}
.y0_c00395{bottom:0.000000px;}
.y1_c00395{bottom:61.748550px;}
.y1a_c00395{bottom:187.874400px;}
.y19_c00395{bottom:229.274400px;}
.y18_c00395{bottom:270.674400px;}
.y17_c00395{bottom:312.074400px;}
.y16_c00395{bottom:353.474400px;}
.y15_c00395{bottom:394.874400px;}
.y14_c00395{bottom:436.274400px;}
.y13_c00395{bottom:477.674400px;}
.y12_c00395{bottom:519.074400px;}
.y11_c00395{bottom:560.474400px;}
.y10_c00395{bottom:601.874400px;}
.yf_c00395{bottom:643.274400px;}
.ye_c00395{bottom:684.674400px;}
.yd_c00395{bottom:726.074400px;}
.yc_c00395{bottom:767.474400px;}
.yb_c00395{bottom:808.784400px;}
.ya_c00395{bottom:850.184400px;}
.y9_c00395{bottom:891.584400px;}
.y8_c00395{bottom:932.984400px;}
.y7_c00395{bottom:974.384400px;}
.y6_c00395{bottom:1015.784400px;}
.y5_c00395{bottom:1057.184400px;}
.y4_c00395{bottom:1098.584400px;}
.y3_c00395{bottom:1139.984400px;}
.y2_c00395{bottom:1194.074400px;}
.h2_c00395{height:50.400000px;}
.h3_c00395{height:54.331699px;}
.h4_c00395{height:76.824000px;}
.h5_c00395{height:78.048000px;}
.h0_c00395{height:1262.835000px;}
.h1_c00395{height:1263.000000px;}
.w0_c00395{width:892.914000px;}
.w1_c00395{width:893.250000px;}
.x0_c00395{left:0.000000px;}
.x1_c00395{left:54.000000px;}
.x2_c00395{left:127.620000px;}
.x3_c00395{left:180.810000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls8_c00395{letter-spacing:-0.512000pt;}
.ls7_c00395{letter-spacing:-0.320000pt;}
.ls9_c00395{letter-spacing:-0.128000pt;}
.ls6_c00395{letter-spacing:-0.064000pt;}
.ls5_c00395{letter-spacing:0.000000pt;}
.ls0_c00395{letter-spacing:0.064000pt;}
.ls2_c00395{letter-spacing:0.128000pt;}
.ls4_c00395{letter-spacing:16.640000pt;}
.ls1_c00395{letter-spacing:18.560000pt;}
.ls3_c00395{letter-spacing:32.000000pt;}
.ws0_c00395{word-spacing:-16.128000pt;}
.ws4_c00395{word-spacing:-16.064000pt;}
.ws3_c00395{word-spacing:-16.000000pt;}
.ws1_c00395{word-spacing:-15.936000pt;}
.ws6_c00395{word-spacing:-15.872000pt;}
.ws2_c00395{word-spacing:-15.680000pt;}
.ws5_c00395{word-spacing:-15.488000pt;}
.ws17_c00395{word-spacing:-0.320000pt;}
.ws9_c00395{word-spacing:-0.117120pt;}
.ws8_c00395{word-spacing:0.000000pt;}
.ws16_c00395{word-spacing:0.256000pt;}
.wse_c00395{word-spacing:0.320000pt;}
.ws1c_c00395{word-spacing:0.384000pt;}
.ws7_c00395{word-spacing:0.640000pt;}
.wsa_c00395{word-spacing:0.960000pt;}
.ws18_c00395{word-spacing:1.600000pt;}
.wsf_c00395{word-spacing:2.560000pt;}
.wsd_c00395{word-spacing:2.880000pt;}
.ws11_c00395{word-spacing:3.520000pt;}
.ws1b_c00395{word-spacing:3.584000pt;}
.ws15_c00395{word-spacing:3.968000pt;}
.ws14_c00395{word-spacing:4.160000pt;}
.ws12_c00395{word-spacing:12.480000pt;}
.ws13_c00395{word-spacing:15.040000pt;}
.wsb_c00395{word-spacing:22.976000pt;}
.wsc_c00395{word-spacing:23.040000pt;}
.ws1a_c00395{word-spacing:23.296000pt;}
.ws19_c00395{word-spacing:23.360000pt;}
.ws10_c00395{word-spacing:35.776000pt;}
._1_c00395{margin-left:-0.896000pt;}
._0_c00395{width:0.936960pt;}
.fs1_c00395{font-size:58.560000pt;}
.fs0_c00395{font-size:64.000000pt;}
.y0_c00395{bottom:0.000000pt;}
.y1_c00395{bottom:54.887600pt;}
.y1a_c00395{bottom:166.999467pt;}
.y19_c00395{bottom:203.799467pt;}
.y18_c00395{bottom:240.599467pt;}
.y17_c00395{bottom:277.399467pt;}
.y16_c00395{bottom:314.199467pt;}
.y15_c00395{bottom:350.999467pt;}
.y14_c00395{bottom:387.799467pt;}
.y13_c00395{bottom:424.599467pt;}
.y12_c00395{bottom:461.399467pt;}
.y11_c00395{bottom:498.199467pt;}
.y10_c00395{bottom:534.999467pt;}
.yf_c00395{bottom:571.799467pt;}
.ye_c00395{bottom:608.599467pt;}
.yd_c00395{bottom:645.399467pt;}
.yc_c00395{bottom:682.199467pt;}
.yb_c00395{bottom:718.919467pt;}
.ya_c00395{bottom:755.719467pt;}
.y9_c00395{bottom:792.519467pt;}
.y8_c00395{bottom:829.319467pt;}
.y7_c00395{bottom:866.119467pt;}
.y6_c00395{bottom:902.919467pt;}
.y5_c00395{bottom:939.719467pt;}
.y4_c00395{bottom:976.519467pt;}
.y3_c00395{bottom:1013.319467pt;}
.y2_c00395{bottom:1061.399467pt;}
.h2_c00395{height:44.800000pt;}
.h3_c00395{height:48.294844pt;}
.h4_c00395{height:68.288000pt;}
.h5_c00395{height:69.376000pt;}
.h0_c00395{height:1122.520000pt;}
.h1_c00395{height:1122.666667pt;}
.w0_c00395{width:793.701333pt;}
.w1_c00395{width:794.000000pt;}
.x0_c00395{left:0.000000pt;}
.x1_c00395{left:48.000000pt;}
.x2_c00395{left:113.440000pt;}
.x3_c00395{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00396;src:url('chunks/assets/font_d72aef9172a4a64ef501a6e9.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_8d7585301fff3fd41f21cfbb.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.575000;font-style:normal;font-weight:normal;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_54d826a0e56de7037510bcbe.woff2')format("woff");}.ff4_c00396{font-family:ff4_c00396;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00396;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00396{font-family:ff5_c00396;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00396;src:url('chunks/assets/font_dffe0052f8ff03549f4ac9df.woff2')format("woff");}.ff6_c00396{font-family:ff6_c00396;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00396;src:url('chunks/assets/font_b9fd7ffda59afd772b62d5ee.woff2')format("woff");}.ff7_c00396{font-family:ff7_c00396;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00396;src:url('chunks/assets/font_b0934a0c548fd1e46efda4c2.woff2')format("woff");}.ff8_c00396{font-family:ff8_c00396;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00396{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.lsa_c00396{letter-spacing:-0.576000px;}
.ls9_c00396{letter-spacing:-0.360000px;}
.lsc_c00396{letter-spacing:-0.288000px;}
.lsb_c00396{letter-spacing:-0.144000px;}
.ls8_c00396{letter-spacing:-0.072000px;}
.ls7_c00396{letter-spacing:0.000000px;}
.ls0_c00396{letter-spacing:0.072000px;}
.ls2_c00396{letter-spacing:0.144000px;}
.ls6_c00396{letter-spacing:18.000000px;}
.ls4_c00396{letter-spacing:18.720000px;}
.ls5_c00396{letter-spacing:18.727200px;}
.ls1_c00396{letter-spacing:20.880000px;}
.ls3_c00396{letter-spacing:36.000000px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00396{word-spacing:-18.144000px;}
.ws4_c00396{word-spacing:-18.072000px;}
.ws3_c00396{word-spacing:-18.000000px;}
.ws1_c00396{word-spacing:-17.928000px;}
.ws6_c00396{word-spacing:-17.856000px;}
.ws9_c00396{word-spacing:-17.712000px;}
.ws2_c00396{word-spacing:-17.640000px;}
.ws5_c00396{word-spacing:-17.424000px;}
.ws23_c00396{word-spacing:-0.504000px;}
.ws8_c00396{word-spacing:-0.360000px;}
.wsb_c00396{word-spacing:-0.131760px;}
.ws27_c00396{word-spacing:-0.072000px;}
.wsa_c00396{word-spacing:0.000000px;}
.ws18_c00396{word-spacing:0.288000px;}
.ws10_c00396{word-spacing:0.360000px;}
.ws1d_c00396{word-spacing:0.432000px;}
.ws1e_c00396{word-spacing:0.648000px;}
.ws7_c00396{word-spacing:0.720000px;}
.wsc_c00396{word-spacing:1.080000px;}
.ws1f_c00396{word-spacing:1.224000px;}
.ws19_c00396{word-spacing:1.800000px;}
.ws11_c00396{word-spacing:2.880000px;}
.wsf_c00396{word-spacing:3.240000px;}
.ws30_c00396{word-spacing:3.816000px;}
.ws13_c00396{word-spacing:3.960000px;}
.ws1c_c00396{word-spacing:4.032000px;}
.ws2f_c00396{word-spacing:4.248000px;}
.ws2e_c00396{word-spacing:4.320000px;}
.ws17_c00396{word-spacing:4.464000px;}
.ws16_c00396{word-spacing:4.680000px;}
.ws21_c00396{word-spacing:6.840000px;}
.ws20_c00396{word-spacing:7.200000px;}
.ws2d_c00396{word-spacing:8.136000px;}
.ws2c_c00396{word-spacing:8.280000px;}
.ws25_c00396{word-spacing:8.640000px;}
.ws26_c00396{word-spacing:8.712000px;}
.ws2b_c00396{word-spacing:9.720000px;}
.ws2a_c00396{word-spacing:10.080000px;}
.ws29_c00396{word-spacing:11.808000px;}
.ws28_c00396{word-spacing:11.880000px;}
.ws24_c00396{word-spacing:13.680000px;}
.ws14_c00396{word-spacing:14.040000px;}
.ws15_c00396{word-spacing:16.920000px;}
.wsd_c00396{word-spacing:25.848000px;}
.wse_c00396{word-spacing:25.920000px;}
.ws1b_c00396{word-spacing:26.208000px;}
.ws1a_c00396{word-spacing:26.280000px;}
.ws22_c00396{word-spacing:37.080000px;}
.ws12_c00396{word-spacing:40.248000px;}
._1_c00396{margin-left:-1.008000px;}
._0_c00396{width:1.054080px;}
._3_c00396{width:4.325760px;}
._2_c00396{width:9.725760px;}
.fc2_c00396{color:transparent;}
.fc1_c00396{color:rgb(0,0,0);}
.fc0_c00396{color:rgb(35,31,32);}
.fs1_c00396{font-size:65.880000px;}
.fs0_c00396{font-size:72.000000px;}
.y0_c00396{bottom:0.000000px;}
.y1_c00396{bottom:61.748550px;}
.y1a_c00396{bottom:187.874400px;}
.y19_c00396{bottom:229.274400px;}
.y18_c00396{bottom:270.674400px;}
.y17_c00396{bottom:312.074400px;}
.y16_c00396{bottom:353.474400px;}
.y15_c00396{bottom:394.874400px;}
.y14_c00396{bottom:436.274400px;}
.y13_c00396{bottom:477.674400px;}
.y12_c00396{bottom:519.074400px;}
.y11_c00396{bottom:560.474400px;}
.y10_c00396{bottom:601.874400px;}
.yf_c00396{bottom:643.274400px;}
.ye_c00396{bottom:684.674400px;}
.yd_c00396{bottom:726.074400px;}
.yc_c00396{bottom:767.474400px;}
.yb_c00396{bottom:808.784400px;}
.ya_c00396{bottom:850.184400px;}
.y9_c00396{bottom:891.584400px;}
.y8_c00396{bottom:932.984400px;}
.y7_c00396{bottom:974.384400px;}
.y6_c00396{bottom:1015.784400px;}
.y5_c00396{bottom:1057.184400px;}
.y4_c00396{bottom:1098.584400px;}
.y3_c00396{bottom:1139.984400px;}
.y1b_c00396{bottom:1173.915120px;}
.y2_c00396{bottom:1194.074400px;}
.h2_c00396{height:50.400000px;}
.h3_c00396{height:54.331699px;}
.h4_c00396{height:76.824000px;}
.h5_c00396{height:78.048000px;}
.h0_c00396{height:1262.835000px;}
.h1_c00396{height:1263.000000px;}
.w2_c00396{width:0.000000px;}
.w3_c00396{width:0.066000px;}
.w0_c00396{width:892.914000px;}
.w1_c00396{width:893.250000px;}
.x1_c00396{left:-838.913400px;}
.x2_c00396{left:-765.293400px;}
.x3_c00396{left:-712.103400px;}
.x0_c00396{left:0.000000px;}
.x5_c00396{left:127.620000px;}
.x6_c00396{left:180.810000px;}
.x4_c00396{left:804.366150px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.lsa_c00396{letter-spacing:-0.512000pt;}
.ls9_c00396{letter-spacing:-0.320000pt;}
.lsc_c00396{letter-spacing:-0.256000pt;}
.lsb_c00396{letter-spacing:-0.128000pt;}
.ls8_c00396{letter-spacing:-0.064000pt;}
.ls7_c00396{letter-spacing:0.000000pt;}
.ls0_c00396{letter-spacing:0.064000pt;}
.ls2_c00396{letter-spacing:0.128000pt;}
.ls6_c00396{letter-spacing:16.000000pt;}
.ls4_c00396{letter-spacing:16.640000pt;}
.ls5_c00396{letter-spacing:16.646400pt;}
.ls1_c00396{letter-spacing:18.560000pt;}
.ls3_c00396{letter-spacing:32.000000pt;}
.ws0_c00396{word-spacing:-16.128000pt;}
.ws4_c00396{word-spacing:-16.064000pt;}
.ws3_c00396{word-spacing:-16.000000pt;}
.ws1_c00396{word-spacing:-15.936000pt;}
.ws6_c00396{word-spacing:-15.872000pt;}
.ws9_c00396{word-spacing:-15.744000pt;}
.ws2_c00396{word-spacing:-15.680000pt;}
.ws5_c00396{word-spacing:-15.488000pt;}
.ws23_c00396{word-spacing:-0.448000pt;}
.ws8_c00396{word-spacing:-0.320000pt;}
.wsb_c00396{word-spacing:-0.117120pt;}
.ws27_c00396{word-spacing:-0.064000pt;}
.wsa_c00396{word-spacing:0.000000pt;}
.ws18_c00396{word-spacing:0.256000pt;}
.ws10_c00396{word-spacing:0.320000pt;}
.ws1d_c00396{word-spacing:0.384000pt;}
.ws1e_c00396{word-spacing:0.576000pt;}
.ws7_c00396{word-spacing:0.640000pt;}
.wsc_c00396{word-spacing:0.960000pt;}
.ws1f_c00396{word-spacing:1.088000pt;}
.ws19_c00396{word-spacing:1.600000pt;}
.ws11_c00396{word-spacing:2.560000pt;}
.wsf_c00396{word-spacing:2.880000pt;}
.ws30_c00396{word-spacing:3.392000pt;}
.ws13_c00396{word-spacing:3.520000pt;}
.ws1c_c00396{word-spacing:3.584000pt;}
.ws2f_c00396{word-spacing:3.776000pt;}
.ws2e_c00396{word-spacing:3.840000pt;}
.ws17_c00396{word-spacing:3.968000pt;}
.ws16_c00396{word-spacing:4.160000pt;}
.ws21_c00396{word-spacing:6.080000pt;}
.ws20_c00396{word-spacing:6.400000pt;}
.ws2d_c00396{word-spacing:7.232000pt;}
.ws2c_c00396{word-spacing:7.360000pt;}
.ws25_c00396{word-spacing:7.680000pt;}
.ws26_c00396{word-spacing:7.744000pt;}
.ws2b_c00396{word-spacing:8.640000pt;}
.ws2a_c00396{word-spacing:8.960000pt;}
.ws29_c00396{word-spacing:10.496000pt;}
.ws28_c00396{word-spacing:10.560000pt;}
.ws24_c00396{word-spacing:12.160000pt;}
.ws14_c00396{word-spacing:12.480000pt;}
.ws15_c00396{word-spacing:15.040000pt;}
.wsd_c00396{word-spacing:22.976000pt;}
.wse_c00396{word-spacing:23.040000pt;}
.ws1b_c00396{word-spacing:23.296000pt;}
.ws1a_c00396{word-spacing:23.360000pt;}
.ws22_c00396{word-spacing:32.960000pt;}
.ws12_c00396{word-spacing:35.776000pt;}
._1_c00396{margin-left:-0.896000pt;}
._0_c00396{width:0.936960pt;}
._3_c00396{width:3.845120pt;}
._2_c00396{width:8.645120pt;}
.fs1_c00396{font-size:58.560000pt;}
.fs0_c00396{font-size:64.000000pt;}
.y0_c00396{bottom:0.000000pt;}
.y1_c00396{bottom:54.887600pt;}
.y1a_c00396{bottom:166.999467pt;}
.y19_c00396{bottom:203.799467pt;}
.y18_c00396{bottom:240.599467pt;}
.y17_c00396{bottom:277.399467pt;}
.y16_c00396{bottom:314.199467pt;}
.y15_c00396{bottom:350.999467pt;}
.y14_c00396{bottom:387.799467pt;}
.y13_c00396{bottom:424.599467pt;}
.y12_c00396{bottom:461.399467pt;}
.y11_c00396{bottom:498.199467pt;}
.y10_c00396{bottom:534.999467pt;}
.yf_c00396{bottom:571.799467pt;}
.ye_c00396{bottom:608.599467pt;}
.yd_c00396{bottom:645.399467pt;}
.yc_c00396{bottom:682.199467pt;}
.yb_c00396{bottom:718.919467pt;}
.ya_c00396{bottom:755.719467pt;}
.y9_c00396{bottom:792.519467pt;}
.y8_c00396{bottom:829.319467pt;}
.y7_c00396{bottom:866.119467pt;}
.y6_c00396{bottom:902.919467pt;}
.y5_c00396{bottom:939.719467pt;}
.y4_c00396{bottom:976.519467pt;}
.y3_c00396{bottom:1013.319467pt;}
.y1b_c00396{bottom:1043.480107pt;}
.y2_c00396{bottom:1061.399467pt;}
.h2_c00396{height:44.800000pt;}
.h3_c00396{height:48.294844pt;}
.h4_c00396{height:68.288000pt;}
.h5_c00396{height:69.376000pt;}
.h0_c00396{height:1122.520000pt;}
.h1_c00396{height:1122.666667pt;}
.w2_c00396{width:0.000000pt;}
.w3_c00396{width:0.058667pt;}
.w0_c00396{width:793.701333pt;}
.w1_c00396{width:794.000000pt;}
.x1_c00396{left:-745.700800pt;}
.x2_c00396{left:-680.260800pt;}
.x3_c00396{left:-632.980800pt;}
.x0_c00396{left:0.000000pt;}
.x5_c00396{left:113.440000pt;}
.x6_c00396{left:160.720000pt;}
.x4_c00396{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00397;src:url('chunks/assets/font_cd8cffe0a862fd3ff2636f49.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00397;src:url('chunks/assets/font_65990b237d0ed895d59c5cde.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00397;src:url('chunks/assets/font_dad2578a741689160ac6f6ef.woff2')format("woff");}.ff4_c00397{font-family:ff4_c00397;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00397{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls7_c00397{letter-spacing:-0.360000px;}
.ls6_c00397{letter-spacing:-0.144000px;}
.ls8_c00397{letter-spacing:-0.072000px;}
.ls5_c00397{letter-spacing:0.000000px;}
.ls1_c00397{letter-spacing:0.072000px;}
.ls0_c00397{letter-spacing:0.144000px;}
.ls4_c00397{letter-spacing:17.640000px;}
.ls2_c00397{letter-spacing:18.000000px;}
.ls3_c00397{letter-spacing:20.160000px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00397{word-spacing:-18.144000px;}
.ws4_c00397{word-spacing:-18.072000px;}
.ws3_c00397{word-spacing:-18.000000px;}
.ws1_c00397{word-spacing:-17.856000px;}
.wsc_c00397{word-spacing:-0.360000px;}
.ws9_c00397{word-spacing:-0.144000px;}
.ws6_c00397{word-spacing:-0.131760px;}
.ws1c_c00397{word-spacing:-0.072000px;}
.ws5_c00397{word-spacing:0.000000px;}
.ws1e_c00397{word-spacing:0.072000px;}
.ws7_c00397{word-spacing:0.720000px;}
.ws15_c00397{word-spacing:2.160000px;}
.ws1d_c00397{word-spacing:3.960000px;}
.ws8_c00397{word-spacing:4.248000px;}
.ws2_c00397{word-spacing:4.320000px;}
.ws1b_c00397{word-spacing:4.680000px;}
.ws18_c00397{word-spacing:5.040000px;}
.ws16_c00397{word-spacing:6.480000px;}
.ws13_c00397{word-spacing:7.056000px;}
.ws14_c00397{word-spacing:7.200000px;}
.ws1a_c00397{word-spacing:10.440000px;}
.ws19_c00397{word-spacing:10.800000px;}
.ws1f_c00397{word-spacing:11.160000px;}
.ws17_c00397{word-spacing:14.040000px;}
.ws12_c00397{word-spacing:14.688000px;}
.ws11_c00397{word-spacing:14.760000px;}
.wsb_c00397{word-spacing:24.048000px;}
.wsa_c00397{word-spacing:24.120000px;}
.wsf_c00397{word-spacing:28.728000px;}
.wse_c00397{word-spacing:29.088000px;}
.wsd_c00397{word-spacing:29.160000px;}
.ws10_c00397{word-spacing:32.400000px;}
._1_c00397{margin-left:-1.224000px;}
._0_c00397{width:1.054080px;}
._2_c00397{width:3.960000px;}
.fc1_c00397{color:rgb(0,0,0);}
.fc0_c00397{color:rgb(35,31,32);}
.fs1_c00397{font-size:65.880000px;}
.fs0_c00397{font-size:72.000000px;}
.y0_c00397{bottom:0.000000px;}
.y1_c00397{bottom:61.748550px;}
.y1b_c00397{bottom:146.474400px;}
.y1a_c00397{bottom:187.874400px;}
.y19_c00397{bottom:229.274400px;}
.y18_c00397{bottom:270.674400px;}
.y17_c00397{bottom:312.074400px;}
.y16_c00397{bottom:353.474400px;}
.y15_c00397{bottom:394.874400px;}
.y14_c00397{bottom:436.274400px;}
.y13_c00397{bottom:477.674400px;}
.y12_c00397{bottom:519.074400px;}
.y11_c00397{bottom:560.384400px;}
.y10_c00397{bottom:601.874400px;}
.yf_c00397{bottom:643.274400px;}
.ye_c00397{bottom:684.674400px;}
.yd_c00397{bottom:726.074400px;}
.yc_c00397{bottom:767.474400px;}
.yb_c00397{bottom:808.784400px;}
.ya_c00397{bottom:850.184400px;}
.y9_c00397{bottom:891.584400px;}
.y8_c00397{bottom:932.984400px;}
.y7_c00397{bottom:974.384400px;}
.y6_c00397{bottom:1015.784400px;}
.y5_c00397{bottom:1057.184400px;}
.y4_c00397{bottom:1098.584400px;}
.y3_c00397{bottom:1139.984400px;}
.y2_c00397{bottom:1194.074400px;}
.h2_c00397{height:50.400000px;}
.h3_c00397{height:54.331699px;}
.h4_c00397{height:76.824000px;}
.h5_c00397{height:78.048000px;}
.h0_c00397{height:1262.835000px;}
.h1_c00397{height:1263.000000px;}
.w0_c00397{width:892.914000px;}
.w1_c00397{width:893.250000px;}
.x0_c00397{left:0.000000px;}
.x1_c00397{left:54.000000px;}
.x2_c00397{left:127.620000px;}
.x3_c00397{left:180.810000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls7_c00397{letter-spacing:-0.320000pt;}
.ls6_c00397{letter-spacing:-0.128000pt;}
.ls8_c00397{letter-spacing:-0.064000pt;}
.ls5_c00397{letter-spacing:0.000000pt;}
.ls1_c00397{letter-spacing:0.064000pt;}
.ls0_c00397{letter-spacing:0.128000pt;}
.ls4_c00397{letter-spacing:15.680000pt;}
.ls2_c00397{letter-spacing:16.000000pt;}
.ls3_c00397{letter-spacing:17.920000pt;}
.ws0_c00397{word-spacing:-16.128000pt;}
.ws4_c00397{word-spacing:-16.064000pt;}
.ws3_c00397{word-spacing:-16.000000pt;}
.ws1_c00397{word-spacing:-15.872000pt;}
.wsc_c00397{word-spacing:-0.320000pt;}
.ws9_c00397{word-spacing:-0.128000pt;}
.ws6_c00397{word-spacing:-0.117120pt;}
.ws1c_c00397{word-spacing:-0.064000pt;}
.ws5_c00397{word-spacing:0.000000pt;}
.ws1e_c00397{word-spacing:0.064000pt;}
.ws7_c00397{word-spacing:0.640000pt;}
.ws15_c00397{word-spacing:1.920000pt;}
.ws1d_c00397{word-spacing:3.520000pt;}
.ws8_c00397{word-spacing:3.776000pt;}
.ws2_c00397{word-spacing:3.840000pt;}
.ws1b_c00397{word-spacing:4.160000pt;}
.ws18_c00397{word-spacing:4.480000pt;}
.ws16_c00397{word-spacing:5.760000pt;}
.ws13_c00397{word-spacing:6.272000pt;}
.ws14_c00397{word-spacing:6.400000pt;}
.ws1a_c00397{word-spacing:9.280000pt;}
.ws19_c00397{word-spacing:9.600000pt;}
.ws1f_c00397{word-spacing:9.920000pt;}
.ws17_c00397{word-spacing:12.480000pt;}
.ws12_c00397{word-spacing:13.056000pt;}
.ws11_c00397{word-spacing:13.120000pt;}
.wsb_c00397{word-spacing:21.376000pt;}
.wsa_c00397{word-spacing:21.440000pt;}
.wsf_c00397{word-spacing:25.536000pt;}
.wse_c00397{word-spacing:25.856000pt;}
.wsd_c00397{word-spacing:25.920000pt;}
.ws10_c00397{word-spacing:28.800000pt;}
._1_c00397{margin-left:-1.088000pt;}
._0_c00397{width:0.936960pt;}
._2_c00397{width:3.520000pt;}
.fs1_c00397{font-size:58.560000pt;}
.fs0_c00397{font-size:64.000000pt;}
.y0_c00397{bottom:0.000000pt;}
.y1_c00397{bottom:54.887600pt;}
.y1b_c00397{bottom:130.199467pt;}
.y1a_c00397{bottom:166.999467pt;}
.y19_c00397{bottom:203.799467pt;}
.y18_c00397{bottom:240.599467pt;}
.y17_c00397{bottom:277.399467pt;}
.y16_c00397{bottom:314.199467pt;}
.y15_c00397{bottom:350.999467pt;}
.y14_c00397{bottom:387.799467pt;}
.y13_c00397{bottom:424.599467pt;}
.y12_c00397{bottom:461.399467pt;}
.y11_c00397{bottom:498.119467pt;}
.y10_c00397{bottom:534.999467pt;}
.yf_c00397{bottom:571.799467pt;}
.ye_c00397{bottom:608.599467pt;}
.yd_c00397{bottom:645.399467pt;}
.yc_c00397{bottom:682.199467pt;}
.yb_c00397{bottom:718.919467pt;}
.ya_c00397{bottom:755.719467pt;}
.y9_c00397{bottom:792.519467pt;}
.y8_c00397{bottom:829.319467pt;}
.y7_c00397{bottom:866.119467pt;}
.y6_c00397{bottom:902.919467pt;}
.y5_c00397{bottom:939.719467pt;}
.y4_c00397{bottom:976.519467pt;}
.y3_c00397{bottom:1013.319467pt;}
.y2_c00397{bottom:1061.399467pt;}
.h2_c00397{height:44.800000pt;}
.h3_c00397{height:48.294844pt;}
.h4_c00397{height:68.288000pt;}
.h5_c00397{height:69.376000pt;}
.h0_c00397{height:1122.520000pt;}
.h1_c00397{height:1122.666667pt;}
.w0_c00397{width:793.701333pt;}
.w1_c00397{width:794.000000pt;}
.x0_c00397{left:0.000000pt;}
.x1_c00397{left:48.000000pt;}
.x2_c00397{left:113.440000pt;}
.x3_c00397{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00398;src:url('chunks/assets/font_fa32434fa6e09dd76144258e.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_42bbd109028328193465e5c9.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_b212500917b6a641e160fe8e.woff2')format("woff");}.ff4_c00398{font-family:ff4_c00398;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00398;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00398{font-family:ff5_c00398;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00398;src:url('chunks/assets/font_110949b1534dc24f47b89525.woff2')format("woff");}.ff6_c00398{font-family:ff6_c00398;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00398;src:url('chunks/assets/font_a4744f46c556e4f57d394ad3.woff2')format("woff");}.ff7_c00398{font-family:ff7_c00398;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00398;src:url('chunks/assets/font_fad6b8b894572379e96e461c.woff2')format("woff");}.ff8_c00398{font-family:ff8_c00398;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00398{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.lsc_c00398{letter-spacing:-0.648000px;}
.ls9_c00398{letter-spacing:-0.360000px;}
.lsb_c00398{letter-spacing:-0.216000px;}
.ls8_c00398{letter-spacing:-0.144000px;}
.lsa_c00398{letter-spacing:-0.072000px;}
.ls7_c00398{letter-spacing:0.000000px;}
.ls1_c00398{letter-spacing:0.072000px;}
.ls0_c00398{letter-spacing:0.144000px;}
.ls4_c00398{letter-spacing:17.640000px;}
.ls2_c00398{letter-spacing:18.000000px;}
.ls6_c00398{letter-spacing:18.360000px;}
.ls5_c00398{letter-spacing:19.440000px;}
.ls3_c00398{letter-spacing:20.160000px;}
.sc__c00398{text-shadow:none;}
.sc0_c00398{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00398{-webkit-text-stroke:0px transparent;}
.sc0_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00398{word-spacing:-18.144000px;}
.ws4_c00398{word-spacing:-18.072000px;}
.ws3_c00398{word-spacing:-18.000000px;}
.ws1_c00398{word-spacing:-17.856000px;}
.ws8_c00398{word-spacing:-17.784000px;}
.ws11_c00398{word-spacing:-0.360000px;}
.wse_c00398{word-spacing:-0.144000px;}
.wsb_c00398{word-spacing:-0.131760px;}
.ws21_c00398{word-spacing:-0.072000px;}
.wsa_c00398{word-spacing:0.000000px;}
.ws23_c00398{word-spacing:0.072000px;}
.ws2e_c00398{word-spacing:0.360000px;}
.wsc_c00398{word-spacing:0.720000px;}
.ws5_c00398{word-spacing:1.080000px;}
.ws9_c00398{word-spacing:1.296000px;}
.ws27_c00398{word-spacing:1.368000px;}
.ws29_c00398{word-spacing:1.440000px;}
.ws33_c00398{word-spacing:2.088000px;}
.ws1a_c00398{word-spacing:2.160000px;}
.ws2d_c00398{word-spacing:2.520000px;}
.ws28_c00398{word-spacing:2.808000px;}
.ws25_c00398{word-spacing:2.880000px;}
.ws26_c00398{word-spacing:3.240000px;}
.ws22_c00398{word-spacing:3.960000px;}
.wsd_c00398{word-spacing:4.248000px;}
.ws2_c00398{word-spacing:4.320000px;}
.ws20_c00398{word-spacing:4.680000px;}
.ws1d_c00398{word-spacing:5.040000px;}
.ws1b_c00398{word-spacing:6.480000px;}
.ws18_c00398{word-spacing:7.056000px;}
.ws19_c00398{word-spacing:7.200000px;}
.ws7_c00398{word-spacing:8.424000px;}
.ws6_c00398{word-spacing:8.712000px;}
.ws31_c00398{word-spacing:8.856000px;}
.ws1f_c00398{word-spacing:10.440000px;}
.ws1e_c00398{word-spacing:10.800000px;}
.ws24_c00398{word-spacing:11.160000px;}
.ws2c_c00398{word-spacing:12.096000px;}
.ws2a_c00398{word-spacing:12.168000px;}
.ws2b_c00398{word-spacing:12.240000px;}
.ws30_c00398{word-spacing:12.960000px;}
.ws2f_c00398{word-spacing:13.320000px;}
.ws1c_c00398{word-spacing:14.040000px;}
.ws17_c00398{word-spacing:14.688000px;}
.ws16_c00398{word-spacing:14.760000px;}
.ws10_c00398{word-spacing:24.048000px;}
.wsf_c00398{word-spacing:24.120000px;}
.ws14_c00398{word-spacing:28.728000px;}
.ws13_c00398{word-spacing:29.088000px;}
.ws12_c00398{word-spacing:29.160000px;}
.ws15_c00398{word-spacing:32.400000px;}
.ws32_c00398{word-spacing:34.920000px;}
._1_c00398{margin-left:-1.224000px;}
._0_c00398{width:1.054080px;}
._2_c00398{width:3.960000px;}
.fc2_c00398{color:transparent;}
.fc1_c00398{color:rgb(0,0,0);}
.fc0_c00398{color:rgb(35,31,32);}
.fs1_c00398{font-size:65.880000px;}
.fs0_c00398{font-size:72.000000px;}
.y0_c00398{bottom:0.000000px;}
.y1_c00398{bottom:61.748550px;}
.y1b_c00398{bottom:146.474400px;}
.y1a_c00398{bottom:187.874400px;}
.y19_c00398{bottom:229.274400px;}
.y18_c00398{bottom:270.674400px;}
.y17_c00398{bottom:312.074400px;}
.y16_c00398{bottom:353.474400px;}
.y15_c00398{bottom:394.874400px;}
.y14_c00398{bottom:436.274400px;}
.y13_c00398{bottom:477.674400px;}
.y12_c00398{bottom:519.074400px;}
.y11_c00398{bottom:560.384400px;}
.y1d_c00398{bottom:560.474400px;}
.y10_c00398{bottom:601.874400px;}
.yf_c00398{bottom:643.274400px;}
.ye_c00398{bottom:684.674400px;}
.yd_c00398{bottom:726.074400px;}
.yc_c00398{bottom:767.474400px;}
.yb_c00398{bottom:808.784400px;}
.ya_c00398{bottom:850.184400px;}
.y9_c00398{bottom:891.584400px;}
.y8_c00398{bottom:932.984400px;}
.y7_c00398{bottom:974.384400px;}
.y6_c00398{bottom:1015.784400px;}
.y5_c00398{bottom:1057.184400px;}
.y4_c00398{bottom:1098.584400px;}
.y3_c00398{bottom:1139.984400px;}
.y1c_c00398{bottom:1173.915120px;}
.y2_c00398{bottom:1194.074400px;}
.h2_c00398{height:50.400000px;}
.h3_c00398{height:54.331699px;}
.h4_c00398{height:76.824000px;}
.h5_c00398{height:78.048000px;}
.h0_c00398{height:1262.835000px;}
.h1_c00398{height:1263.000000px;}
.w2_c00398{width:0.000000px;}
.w3_c00398{width:0.066000px;}
.w0_c00398{width:892.914000px;}
.w1_c00398{width:893.250000px;}
.x1_c00398{left:-838.913400px;}
.x2_c00398{left:-765.293400px;}
.x3_c00398{left:-712.103400px;}
.x0_c00398{left:0.000000px;}
.x5_c00398{left:127.620000px;}
.x6_c00398{left:180.810000px;}
.x4_c00398{left:804.366150px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.lsc_c00398{letter-spacing:-0.576000pt;}
.ls9_c00398{letter-spacing:-0.320000pt;}
.lsb_c00398{letter-spacing:-0.192000pt;}
.ls8_c00398{letter-spacing:-0.128000pt;}
.lsa_c00398{letter-spacing:-0.064000pt;}
.ls7_c00398{letter-spacing:0.000000pt;}
.ls1_c00398{letter-spacing:0.064000pt;}
.ls0_c00398{letter-spacing:0.128000pt;}
.ls4_c00398{letter-spacing:15.680000pt;}
.ls2_c00398{letter-spacing:16.000000pt;}
.ls6_c00398{letter-spacing:16.320000pt;}
.ls5_c00398{letter-spacing:17.280000pt;}
.ls3_c00398{letter-spacing:17.920000pt;}
.ws0_c00398{word-spacing:-16.128000pt;}
.ws4_c00398{word-spacing:-16.064000pt;}
.ws3_c00398{word-spacing:-16.000000pt;}
.ws1_c00398{word-spacing:-15.872000pt;}
.ws8_c00398{word-spacing:-15.808000pt;}
.ws11_c00398{word-spacing:-0.320000pt;}
.wse_c00398{word-spacing:-0.128000pt;}
.wsb_c00398{word-spacing:-0.117120pt;}
.ws21_c00398{word-spacing:-0.064000pt;}
.wsa_c00398{word-spacing:0.000000pt;}
.ws23_c00398{word-spacing:0.064000pt;}
.ws2e_c00398{word-spacing:0.320000pt;}
.wsc_c00398{word-spacing:0.640000pt;}
.ws5_c00398{word-spacing:0.960000pt;}
.ws9_c00398{word-spacing:1.152000pt;}
.ws27_c00398{word-spacing:1.216000pt;}
.ws29_c00398{word-spacing:1.280000pt;}
.ws33_c00398{word-spacing:1.856000pt;}
.ws1a_c00398{word-spacing:1.920000pt;}
.ws2d_c00398{word-spacing:2.240000pt;}
.ws28_c00398{word-spacing:2.496000pt;}
.ws25_c00398{word-spacing:2.560000pt;}
.ws26_c00398{word-spacing:2.880000pt;}
.ws22_c00398{word-spacing:3.520000pt;}
.wsd_c00398{word-spacing:3.776000pt;}
.ws2_c00398{word-spacing:3.840000pt;}
.ws20_c00398{word-spacing:4.160000pt;}
.ws1d_c00398{word-spacing:4.480000pt;}
.ws1b_c00398{word-spacing:5.760000pt;}
.ws18_c00398{word-spacing:6.272000pt;}
.ws19_c00398{word-spacing:6.400000pt;}
.ws7_c00398{word-spacing:7.488000pt;}
.ws6_c00398{word-spacing:7.744000pt;}
.ws31_c00398{word-spacing:7.872000pt;}
.ws1f_c00398{word-spacing:9.280000pt;}
.ws1e_c00398{word-spacing:9.600000pt;}
.ws24_c00398{word-spacing:9.920000pt;}
.ws2c_c00398{word-spacing:10.752000pt;}
.ws2a_c00398{word-spacing:10.816000pt;}
.ws2b_c00398{word-spacing:10.880000pt;}
.ws30_c00398{word-spacing:11.520000pt;}
.ws2f_c00398{word-spacing:11.840000pt;}
.ws1c_c00398{word-spacing:12.480000pt;}
.ws17_c00398{word-spacing:13.056000pt;}
.ws16_c00398{word-spacing:13.120000pt;}
.ws10_c00398{word-spacing:21.376000pt;}
.wsf_c00398{word-spacing:21.440000pt;}
.ws14_c00398{word-spacing:25.536000pt;}
.ws13_c00398{word-spacing:25.856000pt;}
.ws12_c00398{word-spacing:25.920000pt;}
.ws15_c00398{word-spacing:28.800000pt;}
.ws32_c00398{word-spacing:31.040000pt;}
._1_c00398{margin-left:-1.088000pt;}
._0_c00398{width:0.936960pt;}
._2_c00398{width:3.520000pt;}
.fs1_c00398{font-size:58.560000pt;}
.fs0_c00398{font-size:64.000000pt;}
.y0_c00398{bottom:0.000000pt;}
.y1_c00398{bottom:54.887600pt;}
.y1b_c00398{bottom:130.199467pt;}
.y1a_c00398{bottom:166.999467pt;}
.y19_c00398{bottom:203.799467pt;}
.y18_c00398{bottom:240.599467pt;}
.y17_c00398{bottom:277.399467pt;}
.y16_c00398{bottom:314.199467pt;}
.y15_c00398{bottom:350.999467pt;}
.y14_c00398{bottom:387.799467pt;}
.y13_c00398{bottom:424.599467pt;}
.y12_c00398{bottom:461.399467pt;}
.y11_c00398{bottom:498.119467pt;}
.y1d_c00398{bottom:498.199467pt;}
.y10_c00398{bottom:534.999467pt;}
.yf_c00398{bottom:571.799467pt;}
.ye_c00398{bottom:608.599467pt;}
.yd_c00398{bottom:645.399467pt;}
.yc_c00398{bottom:682.199467pt;}
.yb_c00398{bottom:718.919467pt;}
.ya_c00398{bottom:755.719467pt;}
.y9_c00398{bottom:792.519467pt;}
.y8_c00398{bottom:829.319467pt;}
.y7_c00398{bottom:866.119467pt;}
.y6_c00398{bottom:902.919467pt;}
.y5_c00398{bottom:939.719467pt;}
.y4_c00398{bottom:976.519467pt;}
.y3_c00398{bottom:1013.319467pt;}
.y1c_c00398{bottom:1043.480107pt;}
.y2_c00398{bottom:1061.399467pt;}
.h2_c00398{height:44.800000pt;}
.h3_c00398{height:48.294844pt;}
.h4_c00398{height:68.288000pt;}
.h5_c00398{height:69.376000pt;}
.h0_c00398{height:1122.520000pt;}
.h1_c00398{height:1122.666667pt;}
.w2_c00398{width:0.000000pt;}
.w3_c00398{width:0.058667pt;}
.w0_c00398{width:793.701333pt;}
.w1_c00398{width:794.000000pt;}
.x1_c00398{left:-745.700800pt;}
.x2_c00398{left:-680.260800pt;}
.x3_c00398{left:-632.980800pt;}
.x0_c00398{left:0.000000pt;}
.x5_c00398{left:113.440000pt;}
.x6_c00398{left:160.720000pt;}
.x4_c00398{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00399;src:url('chunks/assets/font_1ab14526a8c115daec253f99.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00399;src:url('chunks/assets/font_3c001546b37eb6504e8c70e4.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00399;src:url('chunks/assets/font_550107ff22c46c1bbca90af0.woff2')format("woff");}.ff4_c00399{font-family:ff4_c00399;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00399{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.ls6_c00399{letter-spacing:-0.360000px;}
.ls5_c00399{letter-spacing:-0.144000px;}
.ls4_c00399{letter-spacing:0.000000px;}
.ls1_c00399{letter-spacing:0.072000px;}
.ls0_c00399{letter-spacing:0.144000px;}
.ls2_c00399{letter-spacing:18.000000px;}
.ls3_c00399{letter-spacing:19.800000px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00399{word-spacing:-18.144000px;}
.ws4_c00399{word-spacing:-18.072000px;}
.ws2_c00399{word-spacing:-18.000000px;}
.ws3_c00399{word-spacing:-17.856000px;}
.ws6_c00399{word-spacing:-17.640000px;}
.ws17_c00399{word-spacing:-0.432000px;}
.ws18_c00399{word-spacing:-0.360000px;}
.ws5_c00399{word-spacing:-0.288000px;}
.ws8_c00399{word-spacing:-0.131760px;}
.ws9_c00399{word-spacing:-0.072000px;}
.ws7_c00399{word-spacing:0.000000px;}
.wsb_c00399{word-spacing:0.144000px;}
.wse_c00399{word-spacing:0.720000px;}
.ws13_c00399{word-spacing:1.440000px;}
.ws1c_c00399{word-spacing:1.656000px;}
.ws1a_c00399{word-spacing:1.728000px;}
.ws1b_c00399{word-spacing:1.800000px;}
.wsf_c00399{word-spacing:2.016000px;}
.ws10_c00399{word-spacing:2.160000px;}
.ws19_c00399{word-spacing:5.400000px;}
.ws16_c00399{word-spacing:6.120000px;}
.ws15_c00399{word-spacing:6.480000px;}
.ws12_c00399{word-spacing:15.120000px;}
.ws14_c00399{word-spacing:18.720000px;}
.ws11_c00399{word-spacing:19.080000px;}
.wsd_c00399{word-spacing:24.840000px;}
.wsc_c00399{word-spacing:31.320000px;}
.wsa_c00399{word-spacing:31.680000px;}
.ws0_c00399{word-spacing:44.424000px;}
._3_c00399{margin-left:-1.008000px;}
._0_c00399{width:1.054080px;}
._2_c00399{width:2.376000px;}
._1_c00399{width:31.320000px;}
.fc1_c00399{color:rgb(0,0,0);}
.fc0_c00399{color:rgb(35,31,32);}
.fs1_c00399{font-size:65.880000px;}
.fs0_c00399{font-size:72.000000px;}
.y0_c00399{bottom:0.000000px;}
.y1_c00399{bottom:61.748550px;}
.y19_c00399{bottom:229.274400px;}
.y18_c00399{bottom:270.674400px;}
.y17_c00399{bottom:312.074400px;}
.y16_c00399{bottom:353.474400px;}
.y15_c00399{bottom:394.874400px;}
.y14_c00399{bottom:436.274400px;}
.y13_c00399{bottom:477.674400px;}
.y12_c00399{bottom:519.074400px;}
.y11_c00399{bottom:560.474400px;}
.y10_c00399{bottom:601.874400px;}
.yf_c00399{bottom:643.274400px;}
.ye_c00399{bottom:684.674400px;}
.yd_c00399{bottom:726.074400px;}
.yc_c00399{bottom:767.474400px;}
.yb_c00399{bottom:808.784400px;}
.ya_c00399{bottom:850.184400px;}
.y9_c00399{bottom:891.584400px;}
.y8_c00399{bottom:932.984400px;}
.y7_c00399{bottom:974.384400px;}
.y6_c00399{bottom:1015.784400px;}
.y5_c00399{bottom:1057.184400px;}
.y4_c00399{bottom:1098.584400px;}
.y3_c00399{bottom:1139.984400px;}
.y2_c00399{bottom:1194.074400px;}
.h2_c00399{height:50.400000px;}
.h3_c00399{height:54.331699px;}
.h4_c00399{height:76.824000px;}
.h5_c00399{height:78.048000px;}
.h0_c00399{height:1262.835000px;}
.h1_c00399{height:1263.000000px;}
.w0_c00399{width:892.914000px;}
.w1_c00399{width:893.250000px;}
.x0_c00399{left:0.000000px;}
.x1_c00399{left:54.000000px;}
.x2_c00399{left:127.620000px;}
.x3_c00399{left:180.810000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls6_c00399{letter-spacing:-0.320000pt;}
.ls5_c00399{letter-spacing:-0.128000pt;}
.ls4_c00399{letter-spacing:0.000000pt;}
.ls1_c00399{letter-spacing:0.064000pt;}
.ls0_c00399{letter-spacing:0.128000pt;}
.ls2_c00399{letter-spacing:16.000000pt;}
.ls3_c00399{letter-spacing:17.600000pt;}
.ws1_c00399{word-spacing:-16.128000pt;}
.ws4_c00399{word-spacing:-16.064000pt;}
.ws2_c00399{word-spacing:-16.000000pt;}
.ws3_c00399{word-spacing:-15.872000pt;}
.ws6_c00399{word-spacing:-15.680000pt;}
.ws17_c00399{word-spacing:-0.384000pt;}
.ws18_c00399{word-spacing:-0.320000pt;}
.ws5_c00399{word-spacing:-0.256000pt;}
.ws8_c00399{word-spacing:-0.117120pt;}
.ws9_c00399{word-spacing:-0.064000pt;}
.ws7_c00399{word-spacing:0.000000pt;}
.wsb_c00399{word-spacing:0.128000pt;}
.wse_c00399{word-spacing:0.640000pt;}
.ws13_c00399{word-spacing:1.280000pt;}
.ws1c_c00399{word-spacing:1.472000pt;}
.ws1a_c00399{word-spacing:1.536000pt;}
.ws1b_c00399{word-spacing:1.600000pt;}
.wsf_c00399{word-spacing:1.792000pt;}
.ws10_c00399{word-spacing:1.920000pt;}
.ws19_c00399{word-spacing:4.800000pt;}
.ws16_c00399{word-spacing:5.440000pt;}
.ws15_c00399{word-spacing:5.760000pt;}
.ws12_c00399{word-spacing:13.440000pt;}
.ws14_c00399{word-spacing:16.640000pt;}
.ws11_c00399{word-spacing:16.960000pt;}
.wsd_c00399{word-spacing:22.080000pt;}
.wsc_c00399{word-spacing:27.840000pt;}
.wsa_c00399{word-spacing:28.160000pt;}
.ws0_c00399{word-spacing:39.488000pt;}
._3_c00399{margin-left:-0.896000pt;}
._0_c00399{width:0.936960pt;}
._2_c00399{width:2.112000pt;}
._1_c00399{width:27.840000pt;}
.fs1_c00399{font-size:58.560000pt;}
.fs0_c00399{font-size:64.000000pt;}
.y0_c00399{bottom:0.000000pt;}
.y1_c00399{bottom:54.887600pt;}
.y19_c00399{bottom:203.799467pt;}
.y18_c00399{bottom:240.599467pt;}
.y17_c00399{bottom:277.399467pt;}
.y16_c00399{bottom:314.199467pt;}
.y15_c00399{bottom:350.999467pt;}
.y14_c00399{bottom:387.799467pt;}
.y13_c00399{bottom:424.599467pt;}
.y12_c00399{bottom:461.399467pt;}
.y11_c00399{bottom:498.199467pt;}
.y10_c00399{bottom:534.999467pt;}
.yf_c00399{bottom:571.799467pt;}
.ye_c00399{bottom:608.599467pt;}
.yd_c00399{bottom:645.399467pt;}
.yc_c00399{bottom:682.199467pt;}
.yb_c00399{bottom:718.919467pt;}
.ya_c00399{bottom:755.719467pt;}
.y9_c00399{bottom:792.519467pt;}
.y8_c00399{bottom:829.319467pt;}
.y7_c00399{bottom:866.119467pt;}
.y6_c00399{bottom:902.919467pt;}
.y5_c00399{bottom:939.719467pt;}
.y4_c00399{bottom:976.519467pt;}
.y3_c00399{bottom:1013.319467pt;}
.y2_c00399{bottom:1061.399467pt;}
.h2_c00399{height:44.800000pt;}
.h3_c00399{height:48.294844pt;}
.h4_c00399{height:68.288000pt;}
.h5_c00399{height:69.376000pt;}
.h0_c00399{height:1122.520000pt;}
.h1_c00399{height:1122.666667pt;}
.w0_c00399{width:793.701333pt;}
.w1_c00399{width:794.000000pt;}
.x0_c00399{left:0.000000pt;}
.x1_c00399{left:48.000000pt;}
.x2_c00399{left:113.440000pt;}
.x3_c00399{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00400;src:url('chunks/assets/font_a1a0c61abd57517863c5deff.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00400;src:url('chunks/assets/font_9f97c2f376caba1521da868c.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00400;src:url('chunks/assets/font_f52d0ad742c41c238d882570.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00400;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00400{font-family:ff5_c00400;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00400;src:url('chunks/assets/font_baaeba385ea3ae7f541b6de8.woff2')format("woff");}.ff6_c00400{font-family:ff6_c00400;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00400;src:url('chunks/assets/font_6f4a5fa16035b7fc502146fc.woff2')format("woff");}.ff7_c00400{font-family:ff7_c00400;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00400;src:url('chunks/assets/font_c8dbcd3186eb70bd2c3c09eb.woff2')format("woff");}.ff8_c00400{font-family:ff8_c00400;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsa_c00400{letter-spacing:-0.360000px;}
.lsc_c00400{letter-spacing:-0.288000px;}
.ls9_c00400{letter-spacing:-0.144000px;}
.lsb_c00400{letter-spacing:-0.072000px;}
.ls8_c00400{letter-spacing:0.000000px;}
.ls1_c00400{letter-spacing:0.072000px;}
.ls0_c00400{letter-spacing:0.144000px;}
.ls2_c00400{letter-spacing:18.000000px;}
.ls3_c00400{letter-spacing:19.800000px;}
.ls7_c00400{letter-spacing:24.127200px;}
.ls4_c00400{letter-spacing:32.400000px;}
.ls5_c00400{letter-spacing:38.520000px;}
.ls6_c00400{letter-spacing:43.560000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00400{word-spacing:-18.144000px;}
.ws4_c00400{word-spacing:-18.072000px;}
.ws2_c00400{word-spacing:-18.000000px;}
.ws7_c00400{word-spacing:-17.928000px;}
.ws3_c00400{word-spacing:-17.856000px;}
.ws6_c00400{word-spacing:-17.640000px;}
.ws18_c00400{word-spacing:-0.432000px;}
.ws19_c00400{word-spacing:-0.360000px;}
.ws5_c00400{word-spacing:-0.288000px;}
.wsa_c00400{word-spacing:-0.131760px;}
.wsb_c00400{word-spacing:-0.072000px;}
.ws9_c00400{word-spacing:0.000000px;}
.wsd_c00400{word-spacing:0.144000px;}
.wsf_c00400{word-spacing:0.720000px;}
.ws14_c00400{word-spacing:1.440000px;}
.ws1d_c00400{word-spacing:1.656000px;}
.ws1b_c00400{word-spacing:1.728000px;}
.ws1c_c00400{word-spacing:1.800000px;}
.ws10_c00400{word-spacing:2.016000px;}
.ws11_c00400{word-spacing:2.160000px;}
.ws2f_c00400{word-spacing:4.536000px;}
.ws2e_c00400{word-spacing:4.680000px;}
.ws1a_c00400{word-spacing:5.400000px;}
.ws17_c00400{word-spacing:6.120000px;}
.ws16_c00400{word-spacing:6.480000px;}
.ws23_c00400{word-spacing:6.696000px;}
.ws22_c00400{word-spacing:7.128000px;}
.ws21_c00400{word-spacing:7.200000px;}
.ws38_c00400{word-spacing:8.136000px;}
.ws37_c00400{word-spacing:8.280000px;}
.ws28_c00400{word-spacing:8.568000px;}
.ws29_c00400{word-spacing:8.640000px;}
.ws2d_c00400{word-spacing:9.720000px;}
.ws2c_c00400{word-spacing:9.864000px;}
.ws2b_c00400{word-spacing:10.080000px;}
.ws2a_c00400{word-spacing:10.440000px;}
.ws27_c00400{word-spacing:13.608000px;}
.ws26_c00400{word-spacing:13.680000px;}
.ws1f_c00400{word-spacing:14.400000px;}
.ws1e_c00400{word-spacing:14.688000px;}
.ws13_c00400{word-spacing:15.120000px;}
.ws35_c00400{word-spacing:18.288000px;}
.ws36_c00400{word-spacing:18.360000px;}
.ws15_c00400{word-spacing:18.720000px;}
.ws12_c00400{word-spacing:19.080000px;}
.ws30_c00400{word-spacing:20.160000px;}
.ws32_c00400{word-spacing:20.376000px;}
.ws31_c00400{word-spacing:20.520000px;}
.ws33_c00400{word-spacing:21.888000px;}
.ws34_c00400{word-spacing:21.960000px;}
.ws25_c00400{word-spacing:23.400000px;}
.ws24_c00400{word-spacing:24.336000px;}
.wse_c00400{word-spacing:24.840000px;}
.ws39_c00400{word-spacing:25.560000px;}
.ws20_c00400{word-spacing:29.880000px;}
.ws8_c00400{word-spacing:31.320000px;}
.wsc_c00400{word-spacing:31.680000px;}
.ws0_c00400{word-spacing:44.424000px;}
._3_c00400{margin-left:-1.008000px;}
._0_c00400{width:1.054080px;}
._2_c00400{width:2.376000px;}
._4_c00400{width:23.904000px;}
._1_c00400{width:31.320000px;}
.fc2_c00400{color:transparent;}
.fc1_c00400{color:rgb(0,0,0);}
.fc0_c00400{color:rgb(35,31,32);}
.fs1_c00400{font-size:65.880000px;}
.fs0_c00400{font-size:72.000000px;}
.y0_c00400{bottom:0.000000px;}
.y1_c00400{bottom:61.748550px;}
.y1c_c00400{bottom:146.474400px;}
.y1b_c00400{bottom:187.874400px;}
.y19_c00400{bottom:229.274400px;}
.y18_c00400{bottom:270.674400px;}
.y17_c00400{bottom:312.074400px;}
.y16_c00400{bottom:353.474400px;}
.y15_c00400{bottom:394.874400px;}
.y14_c00400{bottom:436.274400px;}
.y13_c00400{bottom:477.674400px;}
.y12_c00400{bottom:519.074400px;}
.y11_c00400{bottom:560.474400px;}
.y10_c00400{bottom:601.874400px;}
.yf_c00400{bottom:643.274400px;}
.ye_c00400{bottom:684.674400px;}
.yd_c00400{bottom:726.074400px;}
.yc_c00400{bottom:767.474400px;}
.yb_c00400{bottom:808.784400px;}
.ya_c00400{bottom:850.184400px;}
.y9_c00400{bottom:891.584400px;}
.y8_c00400{bottom:932.984400px;}
.y7_c00400{bottom:974.384400px;}
.y6_c00400{bottom:1015.784400px;}
.y5_c00400{bottom:1057.184400px;}
.y4_c00400{bottom:1098.584400px;}
.y3_c00400{bottom:1139.984400px;}
.y1a_c00400{bottom:1173.915120px;}
.y2_c00400{bottom:1194.074400px;}
.h2_c00400{height:50.400000px;}
.h3_c00400{height:54.331699px;}
.h4_c00400{height:76.824000px;}
.h5_c00400{height:78.048000px;}
.h0_c00400{height:1262.835000px;}
.h1_c00400{height:1263.000000px;}
.w2_c00400{width:0.000000px;}
.w3_c00400{width:0.066000px;}
.w0_c00400{width:892.914000px;}
.w1_c00400{width:893.250000px;}
.x1_c00400{left:-838.913400px;}
.x2_c00400{left:-765.293400px;}
.x3_c00400{left:-712.103400px;}
.x0_c00400{left:0.000000px;}
.x5_c00400{left:127.620000px;}
.x6_c00400{left:180.810000px;}
.x4_c00400{left:804.366150px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.lsa_c00400{letter-spacing:-0.320000pt;}
.lsc_c00400{letter-spacing:-0.256000pt;}
.ls9_c00400{letter-spacing:-0.128000pt;}
.lsb_c00400{letter-spacing:-0.064000pt;}
.ls8_c00400{letter-spacing:0.000000pt;}
.ls1_c00400{letter-spacing:0.064000pt;}
.ls0_c00400{letter-spacing:0.128000pt;}
.ls2_c00400{letter-spacing:16.000000pt;}
.ls3_c00400{letter-spacing:17.600000pt;}
.ls7_c00400{letter-spacing:21.446400pt;}
.ls4_c00400{letter-spacing:28.800000pt;}
.ls5_c00400{letter-spacing:34.240000pt;}
.ls6_c00400{letter-spacing:38.720000pt;}
.ws1_c00400{word-spacing:-16.128000pt;}
.ws4_c00400{word-spacing:-16.064000pt;}
.ws2_c00400{word-spacing:-16.000000pt;}
.ws7_c00400{word-spacing:-15.936000pt;}
.ws3_c00400{word-spacing:-15.872000pt;}
.ws6_c00400{word-spacing:-15.680000pt;}
.ws18_c00400{word-spacing:-0.384000pt;}
.ws19_c00400{word-spacing:-0.320000pt;}
.ws5_c00400{word-spacing:-0.256000pt;}
.wsa_c00400{word-spacing:-0.117120pt;}
.wsb_c00400{word-spacing:-0.064000pt;}
.ws9_c00400{word-spacing:0.000000pt;}
.wsd_c00400{word-spacing:0.128000pt;}
.wsf_c00400{word-spacing:0.640000pt;}
.ws14_c00400{word-spacing:1.280000pt;}
.ws1d_c00400{word-spacing:1.472000pt;}
.ws1b_c00400{word-spacing:1.536000pt;}
.ws1c_c00400{word-spacing:1.600000pt;}
.ws10_c00400{word-spacing:1.792000pt;}
.ws11_c00400{word-spacing:1.920000pt;}
.ws2f_c00400{word-spacing:4.032000pt;}
.ws2e_c00400{word-spacing:4.160000pt;}
.ws1a_c00400{word-spacing:4.800000pt;}
.ws17_c00400{word-spacing:5.440000pt;}
.ws16_c00400{word-spacing:5.760000pt;}
.ws23_c00400{word-spacing:5.952000pt;}
.ws22_c00400{word-spacing:6.336000pt;}
.ws21_c00400{word-spacing:6.400000pt;}
.ws38_c00400{word-spacing:7.232000pt;}
.ws37_c00400{word-spacing:7.360000pt;}
.ws28_c00400{word-spacing:7.616000pt;}
.ws29_c00400{word-spacing:7.680000pt;}
.ws2d_c00400{word-spacing:8.640000pt;}
.ws2c_c00400{word-spacing:8.768000pt;}
.ws2b_c00400{word-spacing:8.960000pt;}
.ws2a_c00400{word-spacing:9.280000pt;}
.ws27_c00400{word-spacing:12.096000pt;}
.ws26_c00400{word-spacing:12.160000pt;}
.ws1f_c00400{word-spacing:12.800000pt;}
.ws1e_c00400{word-spacing:13.056000pt;}
.ws13_c00400{word-spacing:13.440000pt;}
.ws35_c00400{word-spacing:16.256000pt;}
.ws36_c00400{word-spacing:16.320000pt;}
.ws15_c00400{word-spacing:16.640000pt;}
.ws12_c00400{word-spacing:16.960000pt;}
.ws30_c00400{word-spacing:17.920000pt;}
.ws32_c00400{word-spacing:18.112000pt;}
.ws31_c00400{word-spacing:18.240000pt;}
.ws33_c00400{word-spacing:19.456000pt;}
.ws34_c00400{word-spacing:19.520000pt;}
.ws25_c00400{word-spacing:20.800000pt;}
.ws24_c00400{word-spacing:21.632000pt;}
.wse_c00400{word-spacing:22.080000pt;}
.ws39_c00400{word-spacing:22.720000pt;}
.ws20_c00400{word-spacing:26.560000pt;}
.ws8_c00400{word-spacing:27.840000pt;}
.wsc_c00400{word-spacing:28.160000pt;}
.ws0_c00400{word-spacing:39.488000pt;}
._3_c00400{margin-left:-0.896000pt;}
._0_c00400{width:0.936960pt;}
._2_c00400{width:2.112000pt;}
._4_c00400{width:21.248000pt;}
._1_c00400{width:27.840000pt;}
.fs1_c00400{font-size:58.560000pt;}
.fs0_c00400{font-size:64.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y1_c00400{bottom:54.887600pt;}
.y1c_c00400{bottom:130.199467pt;}
.y1b_c00400{bottom:166.999467pt;}
.y19_c00400{bottom:203.799467pt;}
.y18_c00400{bottom:240.599467pt;}
.y17_c00400{bottom:277.399467pt;}
.y16_c00400{bottom:314.199467pt;}
.y15_c00400{bottom:350.999467pt;}
.y14_c00400{bottom:387.799467pt;}
.y13_c00400{bottom:424.599467pt;}
.y12_c00400{bottom:461.399467pt;}
.y11_c00400{bottom:498.199467pt;}
.y10_c00400{bottom:534.999467pt;}
.yf_c00400{bottom:571.799467pt;}
.ye_c00400{bottom:608.599467pt;}
.yd_c00400{bottom:645.399467pt;}
.yc_c00400{bottom:682.199467pt;}
.yb_c00400{bottom:718.919467pt;}
.ya_c00400{bottom:755.719467pt;}
.y9_c00400{bottom:792.519467pt;}
.y8_c00400{bottom:829.319467pt;}
.y7_c00400{bottom:866.119467pt;}
.y6_c00400{bottom:902.919467pt;}
.y5_c00400{bottom:939.719467pt;}
.y4_c00400{bottom:976.519467pt;}
.y3_c00400{bottom:1013.319467pt;}
.y1a_c00400{bottom:1043.480107pt;}
.y2_c00400{bottom:1061.399467pt;}
.h2_c00400{height:44.800000pt;}
.h3_c00400{height:48.294844pt;}
.h4_c00400{height:68.288000pt;}
.h5_c00400{height:69.376000pt;}
.h0_c00400{height:1122.520000pt;}
.h1_c00400{height:1122.666667pt;}
.w2_c00400{width:0.000000pt;}
.w3_c00400{width:0.058667pt;}
.w0_c00400{width:793.701333pt;}
.w1_c00400{width:794.000000pt;}
.x1_c00400{left:-745.700800pt;}
.x2_c00400{left:-680.260800pt;}
.x3_c00400{left:-632.980800pt;}
.x0_c00400{left:0.000000pt;}
.x5_c00400{left:113.440000pt;}
.x6_c00400{left:160.720000pt;}
.x4_c00400{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00401;src:url('chunks/assets/font_d4d88a1b4d1b24c95842597e.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_6ad599c517fa316a8210d32c.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00401;src:url('chunks/assets/font_cb0ba9006e718d6d99ec488e.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00401{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls6_c00401{letter-spacing:-0.360000px;}
.ls7_c00401{letter-spacing:-0.216000px;}
.ls8_c00401{letter-spacing:-0.144000px;}
.ls5_c00401{letter-spacing:0.000000px;}
.ls0_c00401{letter-spacing:0.072000px;}
.ls3_c00401{letter-spacing:0.144000px;}
.ls4_c00401{letter-spacing:18.000000px;}
.ls2_c00401{letter-spacing:28.080000px;}
.ls1_c00401{letter-spacing:28.800000px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00401{word-spacing:-18.144000px;}
.ws1_c00401{word-spacing:-18.072000px;}
.ws0_c00401{word-spacing:-18.000000px;}
.ws7_c00401{word-spacing:-17.856000px;}
.ws6_c00401{word-spacing:-17.640000px;}
.ws10_c00401{word-spacing:-0.144000px;}
.wsa_c00401{word-spacing:-0.131760px;}
.ws13_c00401{word-spacing:-0.072000px;}
.ws2_c00401{word-spacing:0.000000px;}
.ws12_c00401{word-spacing:0.216000px;}
.ws1a_c00401{word-spacing:0.360000px;}
.ws3_c00401{word-spacing:0.432000px;}
.ws20_c00401{word-spacing:2.160000px;}
.ws21_c00401{word-spacing:2.520000px;}
.ws8_c00401{word-spacing:2.592000px;}
.ws23_c00401{word-spacing:3.960000px;}
.ws9_c00401{word-spacing:4.104000px;}
.ws22_c00401{word-spacing:4.248000px;}
.ws4_c00401{word-spacing:4.320000px;}
.ws18_c00401{word-spacing:4.680000px;}
.ws11_c00401{word-spacing:7.200000px;}
.ws1e_c00401{word-spacing:7.920000px;}
.wsf_c00401{word-spacing:10.008000px;}
.wse_c00401{word-spacing:10.080000px;}
.wsd_c00401{word-spacing:10.440000px;}
.wsb_c00401{word-spacing:10.800000px;}
.wsc_c00401{word-spacing:11.160000px;}
.ws1d_c00401{word-spacing:11.880000px;}
.ws1b_c00401{word-spacing:15.840000px;}
.ws17_c00401{word-spacing:27.000000px;}
.ws19_c00401{word-spacing:27.720000px;}
.ws1f_c00401{word-spacing:33.480000px;}
.ws16_c00401{word-spacing:44.928000px;}
.ws15_c00401{word-spacing:45.000000px;}
.ws14_c00401{word-spacing:45.144000px;}
.ws1c_c00401{word-spacing:45.360000px;}
._1_c00401{margin-left:-1.008000px;}
._0_c00401{width:1.054080px;}
._3_c00401{width:25.848000px;}
._2_c00401{width:64.080000px;}
.fc1_c00401{color:rgb(0,0,0);}
.fc0_c00401{color:rgb(35,31,32);}
.fs1_c00401{font-size:65.880000px;}
.fs0_c00401{font-size:72.000000px;}
.y0_c00401{bottom:0.000000px;}
.y1_c00401{bottom:61.748550px;}
.y1b_c00401{bottom:146.474400px;}
.y1a_c00401{bottom:187.874400px;}
.y19_c00401{bottom:229.274400px;}
.y18_c00401{bottom:270.674400px;}
.y17_c00401{bottom:312.074400px;}
.y16_c00401{bottom:353.474400px;}
.y15_c00401{bottom:394.874400px;}
.y14_c00401{bottom:436.274400px;}
.y13_c00401{bottom:477.674400px;}
.y12_c00401{bottom:519.074400px;}
.y11_c00401{bottom:560.474400px;}
.y10_c00401{bottom:601.874400px;}
.yf_c00401{bottom:643.274400px;}
.ye_c00401{bottom:684.674400px;}
.yd_c00401{bottom:726.074400px;}
.yc_c00401{bottom:767.474400px;}
.yb_c00401{bottom:808.784400px;}
.ya_c00401{bottom:850.184400px;}
.y9_c00401{bottom:891.584400px;}
.y8_c00401{bottom:932.984400px;}
.y7_c00401{bottom:974.384400px;}
.y6_c00401{bottom:1015.784400px;}
.y5_c00401{bottom:1057.184400px;}
.y4_c00401{bottom:1098.584400px;}
.y3_c00401{bottom:1139.984400px;}
.y2_c00401{bottom:1194.074400px;}
.h2_c00401{height:50.400000px;}
.h3_c00401{height:54.331699px;}
.h4_c00401{height:76.824000px;}
.h5_c00401{height:78.048000px;}
.h0_c00401{height:1262.835000px;}
.h1_c00401{height:1263.000000px;}
.w0_c00401{width:892.914000px;}
.w1_c00401{width:893.250000px;}
.x0_c00401{left:0.000000px;}
.x1_c00401{left:54.000000px;}
.x2_c00401{left:127.620000px;}
.x3_c00401{left:180.810000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls6_c00401{letter-spacing:-0.320000pt;}
.ls7_c00401{letter-spacing:-0.192000pt;}
.ls8_c00401{letter-spacing:-0.128000pt;}
.ls5_c00401{letter-spacing:0.000000pt;}
.ls0_c00401{letter-spacing:0.064000pt;}
.ls3_c00401{letter-spacing:0.128000pt;}
.ls4_c00401{letter-spacing:16.000000pt;}
.ls2_c00401{letter-spacing:24.960000pt;}
.ls1_c00401{letter-spacing:25.600000pt;}
.ws5_c00401{word-spacing:-16.128000pt;}
.ws1_c00401{word-spacing:-16.064000pt;}
.ws0_c00401{word-spacing:-16.000000pt;}
.ws7_c00401{word-spacing:-15.872000pt;}
.ws6_c00401{word-spacing:-15.680000pt;}
.ws10_c00401{word-spacing:-0.128000pt;}
.wsa_c00401{word-spacing:-0.117120pt;}
.ws13_c00401{word-spacing:-0.064000pt;}
.ws2_c00401{word-spacing:0.000000pt;}
.ws12_c00401{word-spacing:0.192000pt;}
.ws1a_c00401{word-spacing:0.320000pt;}
.ws3_c00401{word-spacing:0.384000pt;}
.ws20_c00401{word-spacing:1.920000pt;}
.ws21_c00401{word-spacing:2.240000pt;}
.ws8_c00401{word-spacing:2.304000pt;}
.ws23_c00401{word-spacing:3.520000pt;}
.ws9_c00401{word-spacing:3.648000pt;}
.ws22_c00401{word-spacing:3.776000pt;}
.ws4_c00401{word-spacing:3.840000pt;}
.ws18_c00401{word-spacing:4.160000pt;}
.ws11_c00401{word-spacing:6.400000pt;}
.ws1e_c00401{word-spacing:7.040000pt;}
.wsf_c00401{word-spacing:8.896000pt;}
.wse_c00401{word-spacing:8.960000pt;}
.wsd_c00401{word-spacing:9.280000pt;}
.wsb_c00401{word-spacing:9.600000pt;}
.wsc_c00401{word-spacing:9.920000pt;}
.ws1d_c00401{word-spacing:10.560000pt;}
.ws1b_c00401{word-spacing:14.080000pt;}
.ws17_c00401{word-spacing:24.000000pt;}
.ws19_c00401{word-spacing:24.640000pt;}
.ws1f_c00401{word-spacing:29.760000pt;}
.ws16_c00401{word-spacing:39.936000pt;}
.ws15_c00401{word-spacing:40.000000pt;}
.ws14_c00401{word-spacing:40.128000pt;}
.ws1c_c00401{word-spacing:40.320000pt;}
._1_c00401{margin-left:-0.896000pt;}
._0_c00401{width:0.936960pt;}
._3_c00401{width:22.976000pt;}
._2_c00401{width:56.960000pt;}
.fs1_c00401{font-size:58.560000pt;}
.fs0_c00401{font-size:64.000000pt;}
.y0_c00401{bottom:0.000000pt;}
.y1_c00401{bottom:54.887600pt;}
.y1b_c00401{bottom:130.199467pt;}
.y1a_c00401{bottom:166.999467pt;}
.y19_c00401{bottom:203.799467pt;}
.y18_c00401{bottom:240.599467pt;}
.y17_c00401{bottom:277.399467pt;}
.y16_c00401{bottom:314.199467pt;}
.y15_c00401{bottom:350.999467pt;}
.y14_c00401{bottom:387.799467pt;}
.y13_c00401{bottom:424.599467pt;}
.y12_c00401{bottom:461.399467pt;}
.y11_c00401{bottom:498.199467pt;}
.y10_c00401{bottom:534.999467pt;}
.yf_c00401{bottom:571.799467pt;}
.ye_c00401{bottom:608.599467pt;}
.yd_c00401{bottom:645.399467pt;}
.yc_c00401{bottom:682.199467pt;}
.yb_c00401{bottom:718.919467pt;}
.ya_c00401{bottom:755.719467pt;}
.y9_c00401{bottom:792.519467pt;}
.y8_c00401{bottom:829.319467pt;}
.y7_c00401{bottom:866.119467pt;}
.y6_c00401{bottom:902.919467pt;}
.y5_c00401{bottom:939.719467pt;}
.y4_c00401{bottom:976.519467pt;}
.y3_c00401{bottom:1013.319467pt;}
.y2_c00401{bottom:1061.399467pt;}
.h2_c00401{height:44.800000pt;}
.h3_c00401{height:48.294844pt;}
.h4_c00401{height:68.288000pt;}
.h5_c00401{height:69.376000pt;}
.h0_c00401{height:1122.520000pt;}
.h1_c00401{height:1122.666667pt;}
.w0_c00401{width:793.701333pt;}
.w1_c00401{width:794.000000pt;}
.x0_c00401{left:0.000000pt;}
.x1_c00401{left:48.000000pt;}
.x2_c00401{left:113.440000pt;}
.x3_c00401{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00402;src:url('chunks/assets/font_0c774a4765b7d764a0a4784f.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00402;src:url('chunks/assets/font_defc66bd92508f2662c09ab1.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00402;src:url('chunks/assets/font_675beea5445d6add91677315.woff2')format("woff");}.ff4_c00402{font-family:ff4_c00402;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00402;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00402{font-family:ff5_c00402;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00402;src:url('chunks/assets/font_83454d09e5e3c5f7c2b11b49.woff2')format("woff");}.ff6_c00402{font-family:ff6_c00402;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00402;src:url('chunks/assets/font_bc61417191dab29590f8f0c8.woff2')format("woff");}.ff7_c00402{font-family:ff7_c00402;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00402;src:url('chunks/assets/font_9ff03ec4a901062bf7537a97.woff2')format("woff");}.ff8_c00402{font-family:ff8_c00402;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00402{letter-spacing:-0.360000px;}
.ls7_c00402{letter-spacing:-0.216000px;}
.ls8_c00402{letter-spacing:-0.144000px;}
.ls5_c00402{letter-spacing:0.000000px;}
.ls0_c00402{letter-spacing:0.072000px;}
.ls3_c00402{letter-spacing:0.144000px;}
.ls4_c00402{letter-spacing:18.000000px;}
.ls2_c00402{letter-spacing:28.080000px;}
.ls1_c00402{letter-spacing:28.800000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00402{word-spacing:-18.144000px;}
.ws1_c00402{word-spacing:-18.072000px;}
.ws0_c00402{word-spacing:-18.000000px;}
.ws7_c00402{word-spacing:-17.856000px;}
.ws6_c00402{word-spacing:-17.640000px;}
.ws12_c00402{word-spacing:-0.144000px;}
.wsc_c00402{word-spacing:-0.131760px;}
.ws15_c00402{word-spacing:-0.072000px;}
.ws2_c00402{word-spacing:0.000000px;}
.ws14_c00402{word-spacing:0.216000px;}
.ws2e_c00402{word-spacing:0.288000px;}
.ws1c_c00402{word-spacing:0.360000px;}
.ws3_c00402{word-spacing:0.432000px;}
.ws28_c00402{word-spacing:0.720000px;}
.ws26_c00402{word-spacing:0.936000px;}
.ws27_c00402{word-spacing:1.008000px;}
.ws22_c00402{word-spacing:2.160000px;}
.ws23_c00402{word-spacing:2.520000px;}
.ws8_c00402{word-spacing:2.592000px;}
.ws32_c00402{word-spacing:2.808000px;}
.ws31_c00402{word-spacing:2.880000px;}
.ws30_c00402{word-spacing:3.528000px;}
.ws25_c00402{word-spacing:3.960000px;}
.ws9_c00402{word-spacing:4.104000px;}
.wsb_c00402{word-spacing:4.176000px;}
.ws24_c00402{word-spacing:4.248000px;}
.ws4_c00402{word-spacing:4.320000px;}
.ws33_c00402{word-spacing:4.608000px;}
.ws1a_c00402{word-spacing:4.680000px;}
.ws13_c00402{word-spacing:7.200000px;}
.wsa_c00402{word-spacing:7.776000px;}
.ws20_c00402{word-spacing:7.920000px;}
.ws11_c00402{word-spacing:10.008000px;}
.ws10_c00402{word-spacing:10.080000px;}
.wsf_c00402{word-spacing:10.440000px;}
.wsd_c00402{word-spacing:10.800000px;}
.wse_c00402{word-spacing:11.160000px;}
.ws1f_c00402{word-spacing:11.880000px;}
.ws2a_c00402{word-spacing:12.240000px;}
.ws29_c00402{word-spacing:12.384000px;}
.ws2c_c00402{word-spacing:12.600000px;}
.ws1d_c00402{word-spacing:15.840000px;}
.ws34_c00402{word-spacing:16.200000px;}
.ws2b_c00402{word-spacing:17.640000px;}
.ws2f_c00402{word-spacing:20.880000px;}
.ws2d_c00402{word-spacing:24.408000px;}
.ws19_c00402{word-spacing:27.000000px;}
.ws1b_c00402{word-spacing:27.720000px;}
.ws21_c00402{word-spacing:33.480000px;}
.ws18_c00402{word-spacing:44.928000px;}
.ws17_c00402{word-spacing:45.000000px;}
.ws16_c00402{word-spacing:45.144000px;}
.ws1e_c00402{word-spacing:45.360000px;}
._1_c00402{margin-left:-1.008000px;}
._0_c00402{width:1.054080px;}
._5_c00402{width:2.736000px;}
._6_c00402{width:16.056000px;}
._4_c00402{width:20.736000px;}
._3_c00402{width:25.848000px;}
._2_c00402{width:64.080000px;}
.fc2_c00402{color:transparent;}
.fc1_c00402{color:rgb(0,0,0);}
.fc0_c00402{color:rgb(35,31,32);}
.fs1_c00402{font-size:65.880000px;}
.fs0_c00402{font-size:72.000000px;}
.y0_c00402{bottom:0.000000px;}
.y1_c00402{bottom:61.748550px;}
.y1b_c00402{bottom:146.474400px;}
.y1a_c00402{bottom:187.874400px;}
.y19_c00402{bottom:229.274400px;}
.y18_c00402{bottom:270.674400px;}
.y17_c00402{bottom:312.074400px;}
.y16_c00402{bottom:353.474400px;}
.y15_c00402{bottom:394.874400px;}
.y14_c00402{bottom:436.274400px;}
.y13_c00402{bottom:477.674400px;}
.y12_c00402{bottom:519.074400px;}
.y11_c00402{bottom:560.474400px;}
.y10_c00402{bottom:601.874400px;}
.yf_c00402{bottom:643.274400px;}
.ye_c00402{bottom:684.674400px;}
.yd_c00402{bottom:726.074400px;}
.yc_c00402{bottom:767.474400px;}
.yb_c00402{bottom:808.784400px;}
.ya_c00402{bottom:850.184400px;}
.y9_c00402{bottom:891.584400px;}
.y8_c00402{bottom:932.984400px;}
.y7_c00402{bottom:974.384400px;}
.y6_c00402{bottom:1015.784400px;}
.y5_c00402{bottom:1057.184400px;}
.y4_c00402{bottom:1098.584400px;}
.y3_c00402{bottom:1139.984400px;}
.y1c_c00402{bottom:1173.915120px;}
.y2_c00402{bottom:1194.074400px;}
.h2_c00402{height:50.400000px;}
.h3_c00402{height:54.331699px;}
.h4_c00402{height:76.824000px;}
.h5_c00402{height:78.048000px;}
.h0_c00402{height:1262.835000px;}
.h1_c00402{height:1263.000000px;}
.w2_c00402{width:0.000000px;}
.w3_c00402{width:0.066000px;}
.w0_c00402{width:892.914000px;}
.w1_c00402{width:893.250000px;}
.x1_c00402{left:-838.913400px;}
.x2_c00402{left:-765.293400px;}
.x3_c00402{left:-712.103400px;}
.x0_c00402{left:0.000000px;}
.x5_c00402{left:127.620000px;}
.x6_c00402{left:180.810000px;}
.x4_c00402{left:804.366150px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls6_c00402{letter-spacing:-0.320000pt;}
.ls7_c00402{letter-spacing:-0.192000pt;}
.ls8_c00402{letter-spacing:-0.128000pt;}
.ls5_c00402{letter-spacing:0.000000pt;}
.ls0_c00402{letter-spacing:0.064000pt;}
.ls3_c00402{letter-spacing:0.128000pt;}
.ls4_c00402{letter-spacing:16.000000pt;}
.ls2_c00402{letter-spacing:24.960000pt;}
.ls1_c00402{letter-spacing:25.600000pt;}
.ws5_c00402{word-spacing:-16.128000pt;}
.ws1_c00402{word-spacing:-16.064000pt;}
.ws0_c00402{word-spacing:-16.000000pt;}
.ws7_c00402{word-spacing:-15.872000pt;}
.ws6_c00402{word-spacing:-15.680000pt;}
.ws12_c00402{word-spacing:-0.128000pt;}
.wsc_c00402{word-spacing:-0.117120pt;}
.ws15_c00402{word-spacing:-0.064000pt;}
.ws2_c00402{word-spacing:0.000000pt;}
.ws14_c00402{word-spacing:0.192000pt;}
.ws2e_c00402{word-spacing:0.256000pt;}
.ws1c_c00402{word-spacing:0.320000pt;}
.ws3_c00402{word-spacing:0.384000pt;}
.ws28_c00402{word-spacing:0.640000pt;}
.ws26_c00402{word-spacing:0.832000pt;}
.ws27_c00402{word-spacing:0.896000pt;}
.ws22_c00402{word-spacing:1.920000pt;}
.ws23_c00402{word-spacing:2.240000pt;}
.ws8_c00402{word-spacing:2.304000pt;}
.ws32_c00402{word-spacing:2.496000pt;}
.ws31_c00402{word-spacing:2.560000pt;}
.ws30_c00402{word-spacing:3.136000pt;}
.ws25_c00402{word-spacing:3.520000pt;}
.ws9_c00402{word-spacing:3.648000pt;}
.wsb_c00402{word-spacing:3.712000pt;}
.ws24_c00402{word-spacing:3.776000pt;}
.ws4_c00402{word-spacing:3.840000pt;}
.ws33_c00402{word-spacing:4.096000pt;}
.ws1a_c00402{word-spacing:4.160000pt;}
.ws13_c00402{word-spacing:6.400000pt;}
.wsa_c00402{word-spacing:6.912000pt;}
.ws20_c00402{word-spacing:7.040000pt;}
.ws11_c00402{word-spacing:8.896000pt;}
.ws10_c00402{word-spacing:8.960000pt;}
.wsf_c00402{word-spacing:9.280000pt;}
.wsd_c00402{word-spacing:9.600000pt;}
.wse_c00402{word-spacing:9.920000pt;}
.ws1f_c00402{word-spacing:10.560000pt;}
.ws2a_c00402{word-spacing:10.880000pt;}
.ws29_c00402{word-spacing:11.008000pt;}
.ws2c_c00402{word-spacing:11.200000pt;}
.ws1d_c00402{word-spacing:14.080000pt;}
.ws34_c00402{word-spacing:14.400000pt;}
.ws2b_c00402{word-spacing:15.680000pt;}
.ws2f_c00402{word-spacing:18.560000pt;}
.ws2d_c00402{word-spacing:21.696000pt;}
.ws19_c00402{word-spacing:24.000000pt;}
.ws1b_c00402{word-spacing:24.640000pt;}
.ws21_c00402{word-spacing:29.760000pt;}
.ws18_c00402{word-spacing:39.936000pt;}
.ws17_c00402{word-spacing:40.000000pt;}
.ws16_c00402{word-spacing:40.128000pt;}
.ws1e_c00402{word-spacing:40.320000pt;}
._1_c00402{margin-left:-0.896000pt;}
._0_c00402{width:0.936960pt;}
._5_c00402{width:2.432000pt;}
._6_c00402{width:14.272000pt;}
._4_c00402{width:18.432000pt;}
._3_c00402{width:22.976000pt;}
._2_c00402{width:56.960000pt;}
.fs1_c00402{font-size:58.560000pt;}
.fs0_c00402{font-size:64.000000pt;}
.y0_c00402{bottom:0.000000pt;}
.y1_c00402{bottom:54.887600pt;}
.y1b_c00402{bottom:130.199467pt;}
.y1a_c00402{bottom:166.999467pt;}
.y19_c00402{bottom:203.799467pt;}
.y18_c00402{bottom:240.599467pt;}
.y17_c00402{bottom:277.399467pt;}
.y16_c00402{bottom:314.199467pt;}
.y15_c00402{bottom:350.999467pt;}
.y14_c00402{bottom:387.799467pt;}
.y13_c00402{bottom:424.599467pt;}
.y12_c00402{bottom:461.399467pt;}
.y11_c00402{bottom:498.199467pt;}
.y10_c00402{bottom:534.999467pt;}
.yf_c00402{bottom:571.799467pt;}
.ye_c00402{bottom:608.599467pt;}
.yd_c00402{bottom:645.399467pt;}
.yc_c00402{bottom:682.199467pt;}
.yb_c00402{bottom:718.919467pt;}
.ya_c00402{bottom:755.719467pt;}
.y9_c00402{bottom:792.519467pt;}
.y8_c00402{bottom:829.319467pt;}
.y7_c00402{bottom:866.119467pt;}
.y6_c00402{bottom:902.919467pt;}
.y5_c00402{bottom:939.719467pt;}
.y4_c00402{bottom:976.519467pt;}
.y3_c00402{bottom:1013.319467pt;}
.y1c_c00402{bottom:1043.480107pt;}
.y2_c00402{bottom:1061.399467pt;}
.h2_c00402{height:44.800000pt;}
.h3_c00402{height:48.294844pt;}
.h4_c00402{height:68.288000pt;}
.h5_c00402{height:69.376000pt;}
.h0_c00402{height:1122.520000pt;}
.h1_c00402{height:1122.666667pt;}
.w2_c00402{width:0.000000pt;}
.w3_c00402{width:0.058667pt;}
.w0_c00402{width:793.701333pt;}
.w1_c00402{width:794.000000pt;}
.x1_c00402{left:-745.700800pt;}
.x2_c00402{left:-680.260800pt;}
.x3_c00402{left:-632.980800pt;}
.x0_c00402{left:0.000000pt;}
.x5_c00402{left:113.440000pt;}
.x6_c00402{left:160.720000pt;}
.x4_c00402{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00403;src:url('chunks/assets/font_ead9b25fa5dd25920b1ad73e.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_fe09396e398e9af59e230d3f.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00403;src:url('chunks/assets/font_c44b33ab82b15f713a0aab3f.woff2')format("woff");}.ff4_c00403{font-family:ff4_c00403;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls5_c00403{letter-spacing:-0.360000px;}
.ls6_c00403{letter-spacing:-0.144000px;}
.ls4_c00403{letter-spacing:0.000000px;}
.ls0_c00403{letter-spacing:0.072000px;}
.ls1_c00403{letter-spacing:0.144000px;}
.ls2_c00403{letter-spacing:18.028800px;}
.ls3_c00403{letter-spacing:54.007200px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00403{word-spacing:-18.144000px;}
.ws1_c00403{word-spacing:-18.072000px;}
.ws0_c00403{word-spacing:-18.000000px;}
.ws6_c00403{word-spacing:-17.856000px;}
.ws3_c00403{word-spacing:-17.640000px;}
.ws7_c00403{word-spacing:-0.360000px;}
.ws8_c00403{word-spacing:-0.131760px;}
.wsb_c00403{word-spacing:-0.072000px;}
.ws4_c00403{word-spacing:0.000000px;}
.wsc_c00403{word-spacing:0.360000px;}
.ws11_c00403{word-spacing:2.448000px;}
.ws12_c00403{word-spacing:2.520000px;}
.ws16_c00403{word-spacing:3.240000px;}
.ws10_c00403{word-spacing:3.528000px;}
.wsf_c00403{word-spacing:3.600000px;}
.ws19_c00403{word-spacing:3.888000px;}
.ws9_c00403{word-spacing:8.208000px;}
.wsa_c00403{word-spacing:8.280000px;}
.ws1a_c00403{word-spacing:8.640000px;}
.ws1b_c00403{word-spacing:9.000000px;}
.wsd_c00403{word-spacing:16.128000px;}
.wse_c00403{word-spacing:16.200000px;}
.ws18_c00403{word-spacing:18.000000px;}
.ws17_c00403{word-spacing:18.288000px;}
.ws14_c00403{word-spacing:35.568000px;}
.ws15_c00403{word-spacing:36.000000px;}
.ws5_c00403{word-spacing:36.072000px;}
.ws13_c00403{word-spacing:37.440000px;}
._1_c00403{margin-left:-1.065600px;}
._0_c00403{width:1.054080px;}
._2_c00403{width:15.537600px;}
.fc1_c00403{color:rgb(0,0,0);}
.fc0_c00403{color:rgb(35,31,32);}
.fs1_c00403{font-size:65.880000px;}
.fs0_c00403{font-size:72.000000px;}
.y0_c00403{bottom:0.000000px;}
.y1_c00403{bottom:61.748550px;}
.y1a_c00403{bottom:187.874400px;}
.y19_c00403{bottom:229.274400px;}
.y18_c00403{bottom:270.674400px;}
.y17_c00403{bottom:312.074400px;}
.y16_c00403{bottom:353.474400px;}
.y15_c00403{bottom:394.874400px;}
.y14_c00403{bottom:436.274400px;}
.y13_c00403{bottom:477.674400px;}
.y12_c00403{bottom:519.074400px;}
.y11_c00403{bottom:560.474400px;}
.y10_c00403{bottom:601.874400px;}
.yf_c00403{bottom:643.274400px;}
.ye_c00403{bottom:684.674400px;}
.yd_c00403{bottom:726.074400px;}
.yc_c00403{bottom:767.474400px;}
.yb_c00403{bottom:808.784400px;}
.ya_c00403{bottom:850.184400px;}
.y9_c00403{bottom:891.584400px;}
.y8_c00403{bottom:932.984400px;}
.y7_c00403{bottom:974.384400px;}
.y6_c00403{bottom:1015.784400px;}
.y5_c00403{bottom:1057.184400px;}
.y4_c00403{bottom:1098.584400px;}
.y3_c00403{bottom:1139.984400px;}
.y2_c00403{bottom:1194.074400px;}
.h2_c00403{height:50.400000px;}
.h3_c00403{height:54.331699px;}
.h4_c00403{height:76.824000px;}
.h5_c00403{height:78.048000px;}
.h0_c00403{height:1262.835000px;}
.h1_c00403{height:1263.000000px;}
.w0_c00403{width:892.914000px;}
.w1_c00403{width:893.250000px;}
.x0_c00403{left:0.000000px;}
.x1_c00403{left:54.000000px;}
.x2_c00403{left:127.620000px;}
.x3_c00403{left:180.810000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls5_c00403{letter-spacing:-0.320000pt;}
.ls6_c00403{letter-spacing:-0.128000pt;}
.ls4_c00403{letter-spacing:0.000000pt;}
.ls0_c00403{letter-spacing:0.064000pt;}
.ls1_c00403{letter-spacing:0.128000pt;}
.ls2_c00403{letter-spacing:16.025600pt;}
.ls3_c00403{letter-spacing:48.006400pt;}
.ws2_c00403{word-spacing:-16.128000pt;}
.ws1_c00403{word-spacing:-16.064000pt;}
.ws0_c00403{word-spacing:-16.000000pt;}
.ws6_c00403{word-spacing:-15.872000pt;}
.ws3_c00403{word-spacing:-15.680000pt;}
.ws7_c00403{word-spacing:-0.320000pt;}
.ws8_c00403{word-spacing:-0.117120pt;}
.wsb_c00403{word-spacing:-0.064000pt;}
.ws4_c00403{word-spacing:0.000000pt;}
.wsc_c00403{word-spacing:0.320000pt;}
.ws11_c00403{word-spacing:2.176000pt;}
.ws12_c00403{word-spacing:2.240000pt;}
.ws16_c00403{word-spacing:2.880000pt;}
.ws10_c00403{word-spacing:3.136000pt;}
.wsf_c00403{word-spacing:3.200000pt;}
.ws19_c00403{word-spacing:3.456000pt;}
.ws9_c00403{word-spacing:7.296000pt;}
.wsa_c00403{word-spacing:7.360000pt;}
.ws1a_c00403{word-spacing:7.680000pt;}
.ws1b_c00403{word-spacing:8.000000pt;}
.wsd_c00403{word-spacing:14.336000pt;}
.wse_c00403{word-spacing:14.400000pt;}
.ws18_c00403{word-spacing:16.000000pt;}
.ws17_c00403{word-spacing:16.256000pt;}
.ws14_c00403{word-spacing:31.616000pt;}
.ws15_c00403{word-spacing:32.000000pt;}
.ws5_c00403{word-spacing:32.064000pt;}
.ws13_c00403{word-spacing:33.280000pt;}
._1_c00403{margin-left:-0.947200pt;}
._0_c00403{width:0.936960pt;}
._2_c00403{width:13.811200pt;}
.fs1_c00403{font-size:58.560000pt;}
.fs0_c00403{font-size:64.000000pt;}
.y0_c00403{bottom:0.000000pt;}
.y1_c00403{bottom:54.887600pt;}
.y1a_c00403{bottom:166.999467pt;}
.y19_c00403{bottom:203.799467pt;}
.y18_c00403{bottom:240.599467pt;}
.y17_c00403{bottom:277.399467pt;}
.y16_c00403{bottom:314.199467pt;}
.y15_c00403{bottom:350.999467pt;}
.y14_c00403{bottom:387.799467pt;}
.y13_c00403{bottom:424.599467pt;}
.y12_c00403{bottom:461.399467pt;}
.y11_c00403{bottom:498.199467pt;}
.y10_c00403{bottom:534.999467pt;}
.yf_c00403{bottom:571.799467pt;}
.ye_c00403{bottom:608.599467pt;}
.yd_c00403{bottom:645.399467pt;}
.yc_c00403{bottom:682.199467pt;}
.yb_c00403{bottom:718.919467pt;}
.ya_c00403{bottom:755.719467pt;}
.y9_c00403{bottom:792.519467pt;}
.y8_c00403{bottom:829.319467pt;}
.y7_c00403{bottom:866.119467pt;}
.y6_c00403{bottom:902.919467pt;}
.y5_c00403{bottom:939.719467pt;}
.y4_c00403{bottom:976.519467pt;}
.y3_c00403{bottom:1013.319467pt;}
.y2_c00403{bottom:1061.399467pt;}
.h2_c00403{height:44.800000pt;}
.h3_c00403{height:48.294844pt;}
.h4_c00403{height:68.288000pt;}
.h5_c00403{height:69.376000pt;}
.h0_c00403{height:1122.520000pt;}
.h1_c00403{height:1122.666667pt;}
.w0_c00403{width:793.701333pt;}
.w1_c00403{width:794.000000pt;}
.x0_c00403{left:0.000000pt;}
.x1_c00403{left:48.000000pt;}
.x2_c00403{left:113.440000pt;}
.x3_c00403{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00404;src:url('chunks/assets/font_d25786fedcd8b0601dc8b40e.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00404;src:url('chunks/assets/font_4cef3157b191b6124ed7a1ac.woff2')format("woff");}.ff3_c00404{font-family:ff3_c00404;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00404;src:url('chunks/assets/font_91af9ec09102bb35fb0d68ff.woff2')format("woff");}.ff4_c00404{font-family:ff4_c00404;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00404;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00404{font-family:ff5_c00404;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00404;src:url('chunks/assets/font_95b32fa291435a4dbc7a5c2f.woff2')format("woff");}.ff6_c00404{font-family:ff6_c00404;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00404;src:url('chunks/assets/font_bcfa217d0965e76cca49bc43.woff2')format("woff");}.ff7_c00404{font-family:ff7_c00404;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00404;src:url('chunks/assets/font_4429f1c18ae4db004746e9bb.woff2')format("woff");}.ff8_c00404{font-family:ff8_c00404;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00404{letter-spacing:-0.576000px;}
.ls6_c00404{letter-spacing:-0.360000px;}
.ls7_c00404{letter-spacing:-0.144000px;}
.ls5_c00404{letter-spacing:0.000000px;}
.ls0_c00404{letter-spacing:0.072000px;}
.ls1_c00404{letter-spacing:0.144000px;}
.ls4_c00404{letter-spacing:18.000000px;}
.ls2_c00404{letter-spacing:18.028800px;}
.ls3_c00404{letter-spacing:54.007200px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00404{word-spacing:-18.144000px;}
.ws1_c00404{word-spacing:-18.072000px;}
.ws0_c00404{word-spacing:-18.000000px;}
.ws6_c00404{word-spacing:-17.856000px;}
.ws3_c00404{word-spacing:-17.640000px;}
.ws8_c00404{word-spacing:-17.424000px;}
.ws21_c00404{word-spacing:-0.504000px;}
.ws7_c00404{word-spacing:-0.360000px;}
.ws2b_c00404{word-spacing:-0.144000px;}
.ws9_c00404{word-spacing:-0.131760px;}
.wsc_c00404{word-spacing:-0.072000px;}
.ws4_c00404{word-spacing:0.000000px;}
.ws34_c00404{word-spacing:0.144000px;}
.wsd_c00404{word-spacing:0.360000px;}
.ws22_c00404{word-spacing:1.728000px;}
.ws1e_c00404{word-spacing:1.800000px;}
.ws12_c00404{word-spacing:2.448000px;}
.ws13_c00404{word-spacing:2.520000px;}
.ws23_c00404{word-spacing:2.808000px;}
.ws24_c00404{word-spacing:2.880000px;}
.ws17_c00404{word-spacing:3.240000px;}
.ws11_c00404{word-spacing:3.528000px;}
.ws10_c00404{word-spacing:3.600000px;}
.ws1a_c00404{word-spacing:3.888000px;}
.ws28_c00404{word-spacing:4.536000px;}
.ws27_c00404{word-spacing:4.608000px;}
.ws26_c00404{word-spacing:5.400000px;}
.ws2e_c00404{word-spacing:6.048000px;}
.ws33_c00404{word-spacing:6.408000px;}
.ws32_c00404{word-spacing:6.480000px;}
.ws2a_c00404{word-spacing:7.200000px;}
.ws29_c00404{word-spacing:7.560000px;}
.ws25_c00404{word-spacing:7.920000px;}
.wsa_c00404{word-spacing:8.208000px;}
.wsb_c00404{word-spacing:8.280000px;}
.ws1b_c00404{word-spacing:8.640000px;}
.ws1c_c00404{word-spacing:9.000000px;}
.ws2c_c00404{word-spacing:9.360000px;}
.ws2d_c00404{word-spacing:9.648000px;}
.ws1f_c00404{word-spacing:11.880000px;}
.ws20_c00404{word-spacing:12.240000px;}
.ws31_c00404{word-spacing:14.040000px;}
.wse_c00404{word-spacing:16.128000px;}
.wsf_c00404{word-spacing:16.200000px;}
.ws19_c00404{word-spacing:18.000000px;}
.ws18_c00404{word-spacing:18.288000px;}
.ws1d_c00404{word-spacing:26.280000px;}
.ws30_c00404{word-spacing:27.648000px;}
.ws2f_c00404{word-spacing:27.720000px;}
.ws15_c00404{word-spacing:35.568000px;}
.ws16_c00404{word-spacing:36.000000px;}
.ws5_c00404{word-spacing:36.072000px;}
.ws14_c00404{word-spacing:37.440000px;}
._1_c00404{margin-left:-1.065600px;}
._0_c00404{width:1.054080px;}
._3_c00404{width:3.744000px;}
._4_c00404{width:9.144000px;}
._2_c00404{width:15.537600px;}
._5_c00404{width:35.856000px;}
.fc2_c00404{color:transparent;}
.fc1_c00404{color:rgb(0,0,0);}
.fc0_c00404{color:rgb(35,31,32);}
.fs1_c00404{font-size:65.880000px;}
.fs0_c00404{font-size:72.000000px;}
.y0_c00404{bottom:0.000000px;}
.y1_c00404{bottom:61.748550px;}
.y1a_c00404{bottom:187.874400px;}
.y19_c00404{bottom:229.274400px;}
.y18_c00404{bottom:270.674400px;}
.y17_c00404{bottom:312.074400px;}
.y16_c00404{bottom:353.474400px;}
.y15_c00404{bottom:394.874400px;}
.y14_c00404{bottom:436.274400px;}
.y13_c00404{bottom:477.674400px;}
.y12_c00404{bottom:519.074400px;}
.y11_c00404{bottom:560.474400px;}
.y10_c00404{bottom:601.874400px;}
.yf_c00404{bottom:643.274400px;}
.ye_c00404{bottom:684.674400px;}
.yd_c00404{bottom:726.074400px;}
.yc_c00404{bottom:767.474400px;}
.yb_c00404{bottom:808.784400px;}
.ya_c00404{bottom:850.184400px;}
.y9_c00404{bottom:891.584400px;}
.y8_c00404{bottom:932.984400px;}
.y7_c00404{bottom:974.384400px;}
.y6_c00404{bottom:1015.784400px;}
.y5_c00404{bottom:1057.184400px;}
.y1c_c00404{bottom:1098.494400px;}
.y4_c00404{bottom:1098.584400px;}
.y3_c00404{bottom:1139.984400px;}
.y1b_c00404{bottom:1173.915120px;}
.y2_c00404{bottom:1194.074400px;}
.h2_c00404{height:50.400000px;}
.h3_c00404{height:54.331699px;}
.h4_c00404{height:76.824000px;}
.h5_c00404{height:78.048000px;}
.h0_c00404{height:1262.835000px;}
.h1_c00404{height:1263.000000px;}
.w2_c00404{width:0.000000px;}
.w3_c00404{width:0.066000px;}
.w0_c00404{width:892.914000px;}
.w1_c00404{width:893.250000px;}
.x1_c00404{left:-838.913400px;}
.x2_c00404{left:-765.293400px;}
.x3_c00404{left:-712.103400px;}
.x0_c00404{left:0.000000px;}
.x5_c00404{left:127.620000px;}
.x6_c00404{left:180.810000px;}
.x4_c00404{left:804.366150px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls8_c00404{letter-spacing:-0.512000pt;}
.ls6_c00404{letter-spacing:-0.320000pt;}
.ls7_c00404{letter-spacing:-0.128000pt;}
.ls5_c00404{letter-spacing:0.000000pt;}
.ls0_c00404{letter-spacing:0.064000pt;}
.ls1_c00404{letter-spacing:0.128000pt;}
.ls4_c00404{letter-spacing:16.000000pt;}
.ls2_c00404{letter-spacing:16.025600pt;}
.ls3_c00404{letter-spacing:48.006400pt;}
.ws2_c00404{word-spacing:-16.128000pt;}
.ws1_c00404{word-spacing:-16.064000pt;}
.ws0_c00404{word-spacing:-16.000000pt;}
.ws6_c00404{word-spacing:-15.872000pt;}
.ws3_c00404{word-spacing:-15.680000pt;}
.ws8_c00404{word-spacing:-15.488000pt;}
.ws21_c00404{word-spacing:-0.448000pt;}
.ws7_c00404{word-spacing:-0.320000pt;}
.ws2b_c00404{word-spacing:-0.128000pt;}
.ws9_c00404{word-spacing:-0.117120pt;}
.wsc_c00404{word-spacing:-0.064000pt;}
.ws4_c00404{word-spacing:0.000000pt;}
.ws34_c00404{word-spacing:0.128000pt;}
.wsd_c00404{word-spacing:0.320000pt;}
.ws22_c00404{word-spacing:1.536000pt;}
.ws1e_c00404{word-spacing:1.600000pt;}
.ws12_c00404{word-spacing:2.176000pt;}
.ws13_c00404{word-spacing:2.240000pt;}
.ws23_c00404{word-spacing:2.496000pt;}
.ws24_c00404{word-spacing:2.560000pt;}
.ws17_c00404{word-spacing:2.880000pt;}
.ws11_c00404{word-spacing:3.136000pt;}
.ws10_c00404{word-spacing:3.200000pt;}
.ws1a_c00404{word-spacing:3.456000pt;}
.ws28_c00404{word-spacing:4.032000pt;}
.ws27_c00404{word-spacing:4.096000pt;}
.ws26_c00404{word-spacing:4.800000pt;}
.ws2e_c00404{word-spacing:5.376000pt;}
.ws33_c00404{word-spacing:5.696000pt;}
.ws32_c00404{word-spacing:5.760000pt;}
.ws2a_c00404{word-spacing:6.400000pt;}
.ws29_c00404{word-spacing:6.720000pt;}
.ws25_c00404{word-spacing:7.040000pt;}
.wsa_c00404{word-spacing:7.296000pt;}
.wsb_c00404{word-spacing:7.360000pt;}
.ws1b_c00404{word-spacing:7.680000pt;}
.ws1c_c00404{word-spacing:8.000000pt;}
.ws2c_c00404{word-spacing:8.320000pt;}
.ws2d_c00404{word-spacing:8.576000pt;}
.ws1f_c00404{word-spacing:10.560000pt;}
.ws20_c00404{word-spacing:10.880000pt;}
.ws31_c00404{word-spacing:12.480000pt;}
.wse_c00404{word-spacing:14.336000pt;}
.wsf_c00404{word-spacing:14.400000pt;}
.ws19_c00404{word-spacing:16.000000pt;}
.ws18_c00404{word-spacing:16.256000pt;}
.ws1d_c00404{word-spacing:23.360000pt;}
.ws30_c00404{word-spacing:24.576000pt;}
.ws2f_c00404{word-spacing:24.640000pt;}
.ws15_c00404{word-spacing:31.616000pt;}
.ws16_c00404{word-spacing:32.000000pt;}
.ws5_c00404{word-spacing:32.064000pt;}
.ws14_c00404{word-spacing:33.280000pt;}
._1_c00404{margin-left:-0.947200pt;}
._0_c00404{width:0.936960pt;}
._3_c00404{width:3.328000pt;}
._4_c00404{width:8.128000pt;}
._2_c00404{width:13.811200pt;}
._5_c00404{width:31.872000pt;}
.fs1_c00404{font-size:58.560000pt;}
.fs0_c00404{font-size:64.000000pt;}
.y0_c00404{bottom:0.000000pt;}
.y1_c00404{bottom:54.887600pt;}
.y1a_c00404{bottom:166.999467pt;}
.y19_c00404{bottom:203.799467pt;}
.y18_c00404{bottom:240.599467pt;}
.y17_c00404{bottom:277.399467pt;}
.y16_c00404{bottom:314.199467pt;}
.y15_c00404{bottom:350.999467pt;}
.y14_c00404{bottom:387.799467pt;}
.y13_c00404{bottom:424.599467pt;}
.y12_c00404{bottom:461.399467pt;}
.y11_c00404{bottom:498.199467pt;}
.y10_c00404{bottom:534.999467pt;}
.yf_c00404{bottom:571.799467pt;}
.ye_c00404{bottom:608.599467pt;}
.yd_c00404{bottom:645.399467pt;}
.yc_c00404{bottom:682.199467pt;}
.yb_c00404{bottom:718.919467pt;}
.ya_c00404{bottom:755.719467pt;}
.y9_c00404{bottom:792.519467pt;}
.y8_c00404{bottom:829.319467pt;}
.y7_c00404{bottom:866.119467pt;}
.y6_c00404{bottom:902.919467pt;}
.y5_c00404{bottom:939.719467pt;}
.y1c_c00404{bottom:976.439467pt;}
.y4_c00404{bottom:976.519467pt;}
.y3_c00404{bottom:1013.319467pt;}
.y1b_c00404{bottom:1043.480107pt;}
.y2_c00404{bottom:1061.399467pt;}
.h2_c00404{height:44.800000pt;}
.h3_c00404{height:48.294844pt;}
.h4_c00404{height:68.288000pt;}
.h5_c00404{height:69.376000pt;}
.h0_c00404{height:1122.520000pt;}
.h1_c00404{height:1122.666667pt;}
.w2_c00404{width:0.000000pt;}
.w3_c00404{width:0.058667pt;}
.w0_c00404{width:793.701333pt;}
.w1_c00404{width:794.000000pt;}
.x1_c00404{left:-745.700800pt;}
.x2_c00404{left:-680.260800pt;}
.x3_c00404{left:-632.980800pt;}
.x0_c00404{left:0.000000pt;}
.x5_c00404{left:113.440000pt;}
.x6_c00404{left:160.720000pt;}
.x4_c00404{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00405;src:url('chunks/assets/font_eec8c679c9d46db9ba82dc11.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00405;src:url('chunks/assets/font_17c6814fc71e412b08be05f8.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00405;src:url('chunks/assets/font_45c49a82081f3407a78376d8.woff2')format("woff");}.ff4_c00405{font-family:ff4_c00405;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00405{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls3_c00405{letter-spacing:-0.144000px;}
.ls1_c00405{letter-spacing:0.000000px;}
.ls0_c00405{letter-spacing:0.072000px;}
.ls2_c00405{letter-spacing:0.144000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00405{word-spacing:-18.144000px;}
.ws1_c00405{word-spacing:-18.072000px;}
.ws0_c00405{word-spacing:-18.000000px;}
.ws3_c00405{word-spacing:-17.856000px;}
.ws5_c00405{word-spacing:-0.131760px;}
.wsa_c00405{word-spacing:-0.072000px;}
.ws4_c00405{word-spacing:0.000000px;}
.ws13_c00405{word-spacing:2.160000px;}
.ws11_c00405{word-spacing:2.520000px;}
.wsf_c00405{word-spacing:5.760000px;}
.ws9_c00405{word-spacing:10.080000px;}
.ws7_c00405{word-spacing:11.448000px;}
.ws6_c00405{word-spacing:11.520000px;}
.ws14_c00405{word-spacing:16.200000px;}
.wse_c00405{word-spacing:18.504000px;}
.wsd_c00405{word-spacing:18.720000px;}
.ws15_c00405{word-spacing:19.800000px;}
.ws12_c00405{word-spacing:20.880000px;}
.wsc_c00405{word-spacing:21.240000px;}
.ws10_c00405{word-spacing:21.960000px;}
.ws8_c00405{word-spacing:30.600000px;}
.wsb_c00405{word-spacing:33.840000px;}
._1_c00405{margin-left:-1.310400px;}
._0_c00405{width:1.054080px;}
._2_c00405{width:10.454400px;}
.fc1_c00405{color:rgb(0,0,0);}
.fc0_c00405{color:rgb(35,31,32);}
.fs1_c00405{font-size:65.880000px;}
.fs0_c00405{font-size:72.000000px;}
.y0_c00405{bottom:0.000000px;}
.y1_c00405{bottom:61.748550px;}
.y18_c00405{bottom:229.274400px;}
.y17_c00405{bottom:270.674400px;}
.y16_c00405{bottom:312.074400px;}
.y15_c00405{bottom:353.474400px;}
.y14_c00405{bottom:394.874400px;}
.y13_c00405{bottom:436.274400px;}
.y12_c00405{bottom:477.674400px;}
.y11_c00405{bottom:519.074400px;}
.y10_c00405{bottom:560.474400px;}
.yf_c00405{bottom:601.874400px;}
.ye_c00405{bottom:643.274400px;}
.yd_c00405{bottom:684.674400px;}
.yc_c00405{bottom:726.074400px;}
.yb_c00405{bottom:767.474400px;}
.ya_c00405{bottom:808.784400px;}
.y9_c00405{bottom:891.584400px;}
.y8_c00405{bottom:932.984400px;}
.y7_c00405{bottom:974.384400px;}
.y6_c00405{bottom:1015.784400px;}
.y5_c00405{bottom:1057.184400px;}
.y4_c00405{bottom:1098.584400px;}
.y3_c00405{bottom:1139.984400px;}
.y2_c00405{bottom:1194.074400px;}
.h2_c00405{height:50.400000px;}
.h3_c00405{height:54.331699px;}
.h4_c00405{height:76.824000px;}
.h5_c00405{height:78.048000px;}
.h0_c00405{height:1262.835000px;}
.h1_c00405{height:1263.000000px;}
.w0_c00405{width:892.914000px;}
.w1_c00405{width:893.250000px;}
.x0_c00405{left:0.000000px;}
.x1_c00405{left:54.000000px;}
.x2_c00405{left:127.620000px;}
.x3_c00405{left:180.810000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls3_c00405{letter-spacing:-0.128000pt;}
.ls1_c00405{letter-spacing:0.000000pt;}
.ls0_c00405{letter-spacing:0.064000pt;}
.ls2_c00405{letter-spacing:0.128000pt;}
.ws2_c00405{word-spacing:-16.128000pt;}
.ws1_c00405{word-spacing:-16.064000pt;}
.ws0_c00405{word-spacing:-16.000000pt;}
.ws3_c00405{word-spacing:-15.872000pt;}
.ws5_c00405{word-spacing:-0.117120pt;}
.wsa_c00405{word-spacing:-0.064000pt;}
.ws4_c00405{word-spacing:0.000000pt;}
.ws13_c00405{word-spacing:1.920000pt;}
.ws11_c00405{word-spacing:2.240000pt;}
.wsf_c00405{word-spacing:5.120000pt;}
.ws9_c00405{word-spacing:8.960000pt;}
.ws7_c00405{word-spacing:10.176000pt;}
.ws6_c00405{word-spacing:10.240000pt;}
.ws14_c00405{word-spacing:14.400000pt;}
.wse_c00405{word-spacing:16.448000pt;}
.wsd_c00405{word-spacing:16.640000pt;}
.ws15_c00405{word-spacing:17.600000pt;}
.ws12_c00405{word-spacing:18.560000pt;}
.wsc_c00405{word-spacing:18.880000pt;}
.ws10_c00405{word-spacing:19.520000pt;}
.ws8_c00405{word-spacing:27.200000pt;}
.wsb_c00405{word-spacing:30.080000pt;}
._1_c00405{margin-left:-1.164800pt;}
._0_c00405{width:0.936960pt;}
._2_c00405{width:9.292800pt;}
.fs1_c00405{font-size:58.560000pt;}
.fs0_c00405{font-size:64.000000pt;}
.y0_c00405{bottom:0.000000pt;}
.y1_c00405{bottom:54.887600pt;}
.y18_c00405{bottom:203.799467pt;}
.y17_c00405{bottom:240.599467pt;}
.y16_c00405{bottom:277.399467pt;}
.y15_c00405{bottom:314.199467pt;}
.y14_c00405{bottom:350.999467pt;}
.y13_c00405{bottom:387.799467pt;}
.y12_c00405{bottom:424.599467pt;}
.y11_c00405{bottom:461.399467pt;}
.y10_c00405{bottom:498.199467pt;}
.yf_c00405{bottom:534.999467pt;}
.ye_c00405{bottom:571.799467pt;}
.yd_c00405{bottom:608.599467pt;}
.yc_c00405{bottom:645.399467pt;}
.yb_c00405{bottom:682.199467pt;}
.ya_c00405{bottom:718.919467pt;}
.y9_c00405{bottom:792.519467pt;}
.y8_c00405{bottom:829.319467pt;}
.y7_c00405{bottom:866.119467pt;}
.y6_c00405{bottom:902.919467pt;}
.y5_c00405{bottom:939.719467pt;}
.y4_c00405{bottom:976.519467pt;}
.y3_c00405{bottom:1013.319467pt;}
.y2_c00405{bottom:1061.399467pt;}
.h2_c00405{height:44.800000pt;}
.h3_c00405{height:48.294844pt;}
.h4_c00405{height:68.288000pt;}
.h5_c00405{height:69.376000pt;}
.h0_c00405{height:1122.520000pt;}
.h1_c00405{height:1122.666667pt;}
.w0_c00405{width:793.701333pt;}
.w1_c00405{width:794.000000pt;}
.x0_c00405{left:0.000000pt;}
.x1_c00405{left:48.000000pt;}
.x2_c00405{left:113.440000pt;}
.x3_c00405{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00406;src:url('chunks/assets/font_5687ba6d5301c4327312bc2c.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00406;src:url('chunks/assets/font_518a31ea8ce89d28fc274c59.woff2')format("woff");}.ff3_c00406{font-family:ff3_c00406;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00406;src:url('chunks/assets/font_03ea9eb026541736c240753a.woff2')format("woff");}.ff4_c00406{font-family:ff4_c00406;line-height:1.592000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00406{font-family:ff5_c00406;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00406;src:url('chunks/assets/font_d320e7f7e6ff316d84a3a767.woff2')format("woff");}.ff6_c00406{font-family:ff6_c00406;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00406;src:url('chunks/assets/font_a62374efd41fb6ccacdb9718.woff2')format("woff");}.ff7_c00406{font-family:ff7_c00406;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00406;src:url('chunks/assets/font_50d1a900da4f83275c477a1c.woff2')format("woff");}.ff8_c00406{font-family:ff8_c00406;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls8_c00406{letter-spacing:-0.360000px;}
.ls7_c00406{letter-spacing:-0.144000px;}
.ls9_c00406{letter-spacing:-0.072000px;}
.ls6_c00406{letter-spacing:0.000000px;}
.ls0_c00406{letter-spacing:0.072000px;}
.ls2_c00406{letter-spacing:0.144000px;}
.ls3_c00406{letter-spacing:17.640000px;}
.ls4_c00406{letter-spacing:18.000000px;}
.ls1_c00406{letter-spacing:29.880000px;}
.ls5_c00406{letter-spacing:42.480000px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00406{word-spacing:-18.144000px;}
.ws1_c00406{word-spacing:-18.072000px;}
.ws0_c00406{word-spacing:-18.000000px;}
.ws3_c00406{word-spacing:-17.856000px;}
.ws22_c00406{word-spacing:-0.576000px;}
.ws6_c00406{word-spacing:-0.131760px;}
.wsb_c00406{word-spacing:-0.072000px;}
.ws4_c00406{word-spacing:0.000000px;}
.ws2a_c00406{word-spacing:0.072000px;}
.ws23_c00406{word-spacing:0.360000px;}
.ws29_c00406{word-spacing:0.720000px;}
.ws20_c00406{word-spacing:1.080000px;}
.ws14_c00406{word-spacing:2.160000px;}
.ws12_c00406{word-spacing:2.520000px;}
.ws1a_c00406{word-spacing:3.600000px;}
.ws1c_c00406{word-spacing:3.888000px;}
.ws1b_c00406{word-spacing:4.104000px;}
.ws18_c00406{word-spacing:5.040000px;}
.ws17_c00406{word-spacing:5.400000px;}
.ws10_c00406{word-spacing:5.760000px;}
.ws2b_c00406{word-spacing:9.720000px;}
.wsa_c00406{word-spacing:10.080000px;}
.ws8_c00406{word-spacing:11.448000px;}
.ws7_c00406{word-spacing:11.520000px;}
.ws19_c00406{word-spacing:12.240000px;}
.ws21_c00406{word-spacing:13.608000px;}
.ws15_c00406{word-spacing:16.200000px;}
.ws1f_c00406{word-spacing:16.560000px;}
.ws5_c00406{word-spacing:18.000000px;}
.ws2c_c00406{word-spacing:18.360000px;}
.wsf_c00406{word-spacing:18.504000px;}
.wse_c00406{word-spacing:18.720000px;}
.ws16_c00406{word-spacing:19.800000px;}
.ws1d_c00406{word-spacing:20.520000px;}
.ws13_c00406{word-spacing:20.880000px;}
.wsd_c00406{word-spacing:21.240000px;}
.ws11_c00406{word-spacing:21.960000px;}
.ws28_c00406{word-spacing:22.608000px;}
.ws27_c00406{word-spacing:22.680000px;}
.ws24_c00406{word-spacing:24.120000px;}
.ws25_c00406{word-spacing:24.408000px;}
.ws26_c00406{word-spacing:24.480000px;}
.ws1e_c00406{word-spacing:30.168000px;}
.ws9_c00406{word-spacing:30.600000px;}
.wsc_c00406{word-spacing:33.840000px;}
._1_c00406{margin-left:-1.310400px;}
._0_c00406{width:1.054080px;}
._2_c00406{width:10.454400px;}
._3_c00406{width:23.558400px;}
._4_c00406{width:31.478400px;}
.fc2_c00406{color:transparent;}
.fc1_c00406{color:rgb(0,0,0);}
.fc0_c00406{color:rgb(35,31,32);}
.fs1_c00406{font-size:65.880000px;}
.fs0_c00406{font-size:72.000000px;}
.y0_c00406{bottom:0.000000px;}
.y1_c00406{bottom:61.748550px;}
.y1b_c00406{bottom:187.874400px;}
.y18_c00406{bottom:229.274400px;}
.y17_c00406{bottom:270.674400px;}
.y16_c00406{bottom:312.074400px;}
.y15_c00406{bottom:353.474400px;}
.y14_c00406{bottom:394.874400px;}
.y13_c00406{bottom:436.274400px;}
.y12_c00406{bottom:477.674400px;}
.y11_c00406{bottom:519.074400px;}
.y10_c00406{bottom:560.474400px;}
.yf_c00406{bottom:601.874400px;}
.ye_c00406{bottom:643.274400px;}
.yd_c00406{bottom:684.674400px;}
.yc_c00406{bottom:726.074400px;}
.yb_c00406{bottom:767.474400px;}
.ya_c00406{bottom:808.784400px;}
.y1a_c00406{bottom:850.184400px;}
.y9_c00406{bottom:891.584400px;}
.y8_c00406{bottom:932.984400px;}
.y7_c00406{bottom:974.384400px;}
.y6_c00406{bottom:1015.784400px;}
.y5_c00406{bottom:1057.184400px;}
.y4_c00406{bottom:1098.584400px;}
.y3_c00406{bottom:1139.984400px;}
.y19_c00406{bottom:1173.915120px;}
.y2_c00406{bottom:1194.074400px;}
.h2_c00406{height:50.400000px;}
.h3_c00406{height:54.331699px;}
.h4_c00406{height:76.824000px;}
.h5_c00406{height:78.048000px;}
.h0_c00406{height:1262.835000px;}
.h1_c00406{height:1263.000000px;}
.w2_c00406{width:0.000000px;}
.w3_c00406{width:0.066000px;}
.w0_c00406{width:892.914000px;}
.w1_c00406{width:893.250000px;}
.x1_c00406{left:-838.913400px;}
.x2_c00406{left:-765.293400px;}
.x3_c00406{left:-712.103400px;}
.x0_c00406{left:0.000000px;}
.x5_c00406{left:127.620000px;}
.x6_c00406{left:180.810000px;}
.x4_c00406{left:804.366150px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls8_c00406{letter-spacing:-0.320000pt;}
.ls7_c00406{letter-spacing:-0.128000pt;}
.ls9_c00406{letter-spacing:-0.064000pt;}
.ls6_c00406{letter-spacing:0.000000pt;}
.ls0_c00406{letter-spacing:0.064000pt;}
.ls2_c00406{letter-spacing:0.128000pt;}
.ls3_c00406{letter-spacing:15.680000pt;}
.ls4_c00406{letter-spacing:16.000000pt;}
.ls1_c00406{letter-spacing:26.560000pt;}
.ls5_c00406{letter-spacing:37.760000pt;}
.ws2_c00406{word-spacing:-16.128000pt;}
.ws1_c00406{word-spacing:-16.064000pt;}
.ws0_c00406{word-spacing:-16.000000pt;}
.ws3_c00406{word-spacing:-15.872000pt;}
.ws22_c00406{word-spacing:-0.512000pt;}
.ws6_c00406{word-spacing:-0.117120pt;}
.wsb_c00406{word-spacing:-0.064000pt;}
.ws4_c00406{word-spacing:0.000000pt;}
.ws2a_c00406{word-spacing:0.064000pt;}
.ws23_c00406{word-spacing:0.320000pt;}
.ws29_c00406{word-spacing:0.640000pt;}
.ws20_c00406{word-spacing:0.960000pt;}
.ws14_c00406{word-spacing:1.920000pt;}
.ws12_c00406{word-spacing:2.240000pt;}
.ws1a_c00406{word-spacing:3.200000pt;}
.ws1c_c00406{word-spacing:3.456000pt;}
.ws1b_c00406{word-spacing:3.648000pt;}
.ws18_c00406{word-spacing:4.480000pt;}
.ws17_c00406{word-spacing:4.800000pt;}
.ws10_c00406{word-spacing:5.120000pt;}
.ws2b_c00406{word-spacing:8.640000pt;}
.wsa_c00406{word-spacing:8.960000pt;}
.ws8_c00406{word-spacing:10.176000pt;}
.ws7_c00406{word-spacing:10.240000pt;}
.ws19_c00406{word-spacing:10.880000pt;}
.ws21_c00406{word-spacing:12.096000pt;}
.ws15_c00406{word-spacing:14.400000pt;}
.ws1f_c00406{word-spacing:14.720000pt;}
.ws5_c00406{word-spacing:16.000000pt;}
.ws2c_c00406{word-spacing:16.320000pt;}
.wsf_c00406{word-spacing:16.448000pt;}
.wse_c00406{word-spacing:16.640000pt;}
.ws16_c00406{word-spacing:17.600000pt;}
.ws1d_c00406{word-spacing:18.240000pt;}
.ws13_c00406{word-spacing:18.560000pt;}
.wsd_c00406{word-spacing:18.880000pt;}
.ws11_c00406{word-spacing:19.520000pt;}
.ws28_c00406{word-spacing:20.096000pt;}
.ws27_c00406{word-spacing:20.160000pt;}
.ws24_c00406{word-spacing:21.440000pt;}
.ws25_c00406{word-spacing:21.696000pt;}
.ws26_c00406{word-spacing:21.760000pt;}
.ws1e_c00406{word-spacing:26.816000pt;}
.ws9_c00406{word-spacing:27.200000pt;}
.wsc_c00406{word-spacing:30.080000pt;}
._1_c00406{margin-left:-1.164800pt;}
._0_c00406{width:0.936960pt;}
._2_c00406{width:9.292800pt;}
._3_c00406{width:20.940800pt;}
._4_c00406{width:27.980800pt;}
.fs1_c00406{font-size:58.560000pt;}
.fs0_c00406{font-size:64.000000pt;}
.y0_c00406{bottom:0.000000pt;}
.y1_c00406{bottom:54.887600pt;}
.y1b_c00406{bottom:166.999467pt;}
.y18_c00406{bottom:203.799467pt;}
.y17_c00406{bottom:240.599467pt;}
.y16_c00406{bottom:277.399467pt;}
.y15_c00406{bottom:314.199467pt;}
.y14_c00406{bottom:350.999467pt;}
.y13_c00406{bottom:387.799467pt;}
.y12_c00406{bottom:424.599467pt;}
.y11_c00406{bottom:461.399467pt;}
.y10_c00406{bottom:498.199467pt;}
.yf_c00406{bottom:534.999467pt;}
.ye_c00406{bottom:571.799467pt;}
.yd_c00406{bottom:608.599467pt;}
.yc_c00406{bottom:645.399467pt;}
.yb_c00406{bottom:682.199467pt;}
.ya_c00406{bottom:718.919467pt;}
.y1a_c00406{bottom:755.719467pt;}
.y9_c00406{bottom:792.519467pt;}
.y8_c00406{bottom:829.319467pt;}
.y7_c00406{bottom:866.119467pt;}
.y6_c00406{bottom:902.919467pt;}
.y5_c00406{bottom:939.719467pt;}
.y4_c00406{bottom:976.519467pt;}
.y3_c00406{bottom:1013.319467pt;}
.y19_c00406{bottom:1043.480107pt;}
.y2_c00406{bottom:1061.399467pt;}
.h2_c00406{height:44.800000pt;}
.h3_c00406{height:48.294844pt;}
.h4_c00406{height:68.288000pt;}
.h5_c00406{height:69.376000pt;}
.h0_c00406{height:1122.520000pt;}
.h1_c00406{height:1122.666667pt;}
.w2_c00406{width:0.000000pt;}
.w3_c00406{width:0.058667pt;}
.w0_c00406{width:793.701333pt;}
.w1_c00406{width:794.000000pt;}
.x1_c00406{left:-745.700800pt;}
.x2_c00406{left:-680.260800pt;}
.x3_c00406{left:-632.980800pt;}
.x0_c00406{left:0.000000pt;}
.x5_c00406{left:113.440000pt;}
.x6_c00406{left:160.720000pt;}
.x4_c00406{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_661d0bcfbbf402812491ca65.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00407;src:url('chunks/assets/font_c7703b0dadb743dd6736b325.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00407;src:url('chunks/assets/font_790e583a662141b0a531c98a.woff2')format("woff");}.ff4_c00407{font-family:ff4_c00407;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00407{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls6_c00407{letter-spacing:-0.576000px;}
.ls5_c00407{letter-spacing:-0.360000px;}
.ls3_c00407{letter-spacing:0.000000px;}
.ls0_c00407{letter-spacing:0.072000px;}
.ls4_c00407{letter-spacing:0.144000px;}
.ls7_c00407{letter-spacing:0.360000px;}
.ls2_c00407{letter-spacing:17.640000px;}
.ls1_c00407{letter-spacing:18.000000px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00407{word-spacing:-18.144000px;}
.ws5_c00407{word-spacing:-18.072000px;}
.ws3_c00407{word-spacing:-18.000000px;}
.ws4_c00407{word-spacing:-17.640000px;}
.ws6_c00407{word-spacing:-17.424000px;}
.ws1_c00407{word-spacing:-0.360000px;}
.ws10_c00407{word-spacing:-0.144000px;}
.ws7_c00407{word-spacing:-0.131760px;}
.wse_c00407{word-spacing:-0.072000px;}
.ws2_c00407{word-spacing:0.000000px;}
.wsf_c00407{word-spacing:0.360000px;}
.ws15_c00407{word-spacing:1.800000px;}
.ws1b_c00407{word-spacing:3.168000px;}
.ws1a_c00407{word-spacing:3.240000px;}
.wsc_c00407{word-spacing:7.200000px;}
.wsb_c00407{word-spacing:8.280000px;}
.ws13_c00407{word-spacing:13.680000px;}
.ws14_c00407{word-spacing:17.568000px;}
.ws17_c00407{word-spacing:17.640000px;}
.ws18_c00407{word-spacing:17.784000px;}
.ws19_c00407{word-spacing:18.000000px;}
.ws16_c00407{word-spacing:18.360000px;}
.ws12_c00407{word-spacing:20.160000px;}
.ws8_c00407{word-spacing:30.600000px;}
.wsa_c00407{word-spacing:30.744000px;}
.ws9_c00407{word-spacing:30.888000px;}
.ws11_c00407{word-spacing:45.000000px;}
.wsd_c00407{word-spacing:74.088000px;}
._1_c00407{margin-left:-1.173600px;}
._0_c00407{width:1.054080px;}
.fc1_c00407{color:rgb(0,0,0);}
.fc0_c00407{color:rgb(35,31,32);}
.fs1_c00407{font-size:65.880000px;}
.fs0_c00407{font-size:72.000000px;}
.y0_c00407{bottom:0.000000px;}
.y1_c00407{bottom:61.748550px;}
.y19_c00407{bottom:187.874400px;}
.y18_c00407{bottom:229.274400px;}
.y17_c00407{bottom:270.674400px;}
.y16_c00407{bottom:312.074400px;}
.y15_c00407{bottom:353.474400px;}
.y14_c00407{bottom:394.874400px;}
.y13_c00407{bottom:436.274400px;}
.y12_c00407{bottom:477.584400px;}
.y11_c00407{bottom:519.074400px;}
.y10_c00407{bottom:560.474400px;}
.yf_c00407{bottom:601.874400px;}
.ye_c00407{bottom:643.274400px;}
.yd_c00407{bottom:684.674400px;}
.yc_c00407{bottom:767.474400px;}
.yb_c00407{bottom:808.784400px;}
.ya_c00407{bottom:850.184400px;}
.y9_c00407{bottom:891.584400px;}
.y8_c00407{bottom:932.984400px;}
.y7_c00407{bottom:974.384400px;}
.y6_c00407{bottom:1015.784400px;}
.y5_c00407{bottom:1057.184400px;}
.y4_c00407{bottom:1098.584400px;}
.y3_c00407{bottom:1139.984400px;}
.y2_c00407{bottom:1194.074400px;}
.h2_c00407{height:50.400000px;}
.h3_c00407{height:54.331699px;}
.h4_c00407{height:76.824000px;}
.h5_c00407{height:78.048000px;}
.h0_c00407{height:1262.835000px;}
.h1_c00407{height:1263.000000px;}
.w0_c00407{width:892.914000px;}
.w1_c00407{width:893.250000px;}
.x0_c00407{left:0.000000px;}
.x1_c00407{left:54.000000px;}
.x2_c00407{left:127.620000px;}
.x3_c00407{left:180.810000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls6_c00407{letter-spacing:-0.512000pt;}
.ls5_c00407{letter-spacing:-0.320000pt;}
.ls3_c00407{letter-spacing:0.000000pt;}
.ls0_c00407{letter-spacing:0.064000pt;}
.ls4_c00407{letter-spacing:0.128000pt;}
.ls7_c00407{letter-spacing:0.320000pt;}
.ls2_c00407{letter-spacing:15.680000pt;}
.ls1_c00407{letter-spacing:16.000000pt;}
.ws0_c00407{word-spacing:-16.128000pt;}
.ws5_c00407{word-spacing:-16.064000pt;}
.ws3_c00407{word-spacing:-16.000000pt;}
.ws4_c00407{word-spacing:-15.680000pt;}
.ws6_c00407{word-spacing:-15.488000pt;}
.ws1_c00407{word-spacing:-0.320000pt;}
.ws10_c00407{word-spacing:-0.128000pt;}
.ws7_c00407{word-spacing:-0.117120pt;}
.wse_c00407{word-spacing:-0.064000pt;}
.ws2_c00407{word-spacing:0.000000pt;}
.wsf_c00407{word-spacing:0.320000pt;}
.ws15_c00407{word-spacing:1.600000pt;}
.ws1b_c00407{word-spacing:2.816000pt;}
.ws1a_c00407{word-spacing:2.880000pt;}
.wsc_c00407{word-spacing:6.400000pt;}
.wsb_c00407{word-spacing:7.360000pt;}
.ws13_c00407{word-spacing:12.160000pt;}
.ws14_c00407{word-spacing:15.616000pt;}
.ws17_c00407{word-spacing:15.680000pt;}
.ws18_c00407{word-spacing:15.808000pt;}
.ws19_c00407{word-spacing:16.000000pt;}
.ws16_c00407{word-spacing:16.320000pt;}
.ws12_c00407{word-spacing:17.920000pt;}
.ws8_c00407{word-spacing:27.200000pt;}
.wsa_c00407{word-spacing:27.328000pt;}
.ws9_c00407{word-spacing:27.456000pt;}
.ws11_c00407{word-spacing:40.000000pt;}
.wsd_c00407{word-spacing:65.856000pt;}
._1_c00407{margin-left:-1.043200pt;}
._0_c00407{width:0.936960pt;}
.fs1_c00407{font-size:58.560000pt;}
.fs0_c00407{font-size:64.000000pt;}
.y0_c00407{bottom:0.000000pt;}
.y1_c00407{bottom:54.887600pt;}
.y19_c00407{bottom:166.999467pt;}
.y18_c00407{bottom:203.799467pt;}
.y17_c00407{bottom:240.599467pt;}
.y16_c00407{bottom:277.399467pt;}
.y15_c00407{bottom:314.199467pt;}
.y14_c00407{bottom:350.999467pt;}
.y13_c00407{bottom:387.799467pt;}
.y12_c00407{bottom:424.519467pt;}
.y11_c00407{bottom:461.399467pt;}
.y10_c00407{bottom:498.199467pt;}
.yf_c00407{bottom:534.999467pt;}
.ye_c00407{bottom:571.799467pt;}
.yd_c00407{bottom:608.599467pt;}
.yc_c00407{bottom:682.199467pt;}
.yb_c00407{bottom:718.919467pt;}
.ya_c00407{bottom:755.719467pt;}
.y9_c00407{bottom:792.519467pt;}
.y8_c00407{bottom:829.319467pt;}
.y7_c00407{bottom:866.119467pt;}
.y6_c00407{bottom:902.919467pt;}
.y5_c00407{bottom:939.719467pt;}
.y4_c00407{bottom:976.519467pt;}
.y3_c00407{bottom:1013.319467pt;}
.y2_c00407{bottom:1061.399467pt;}
.h2_c00407{height:44.800000pt;}
.h3_c00407{height:48.294844pt;}
.h4_c00407{height:68.288000pt;}
.h5_c00407{height:69.376000pt;}
.h0_c00407{height:1122.520000pt;}
.h1_c00407{height:1122.666667pt;}
.w0_c00407{width:793.701333pt;}
.w1_c00407{width:794.000000pt;}
.x0_c00407{left:0.000000pt;}
.x1_c00407{left:48.000000pt;}
.x2_c00407{left:113.440000pt;}
.x3_c00407{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00408;src:url('chunks/assets/font_1facc687ca4f15a800b1d6f0.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_b1d1326614074ad79c03c83c.woff2')format("woff");}.ff3_c00408{font-family:ff3_c00408;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00408;src:url('chunks/assets/font_173756a20f6290981891e627.woff2')format("woff");}.ff4_c00408{font-family:ff4_c00408;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00408;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00408{font-family:ff5_c00408;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00408;src:url('chunks/assets/font_05558bf9af79fdae46143ef7.woff2')format("woff");}.ff6_c00408{font-family:ff6_c00408;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00408;src:url('chunks/assets/font_721b2ea21dca0775ddb84ff1.woff2')format("woff");}.ff7_c00408{font-family:ff7_c00408;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00408;src:url('chunks/assets/font_52e34ed625a3385a29458622.woff2')format("woff");}.ff8_c00408{font-family:ff8_c00408;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00408{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.lsa_c00408{letter-spacing:-0.576000px;}
.ls9_c00408{letter-spacing:-0.360000px;}
.lsc_c00408{letter-spacing:-0.144000px;}
.lsd_c00408{letter-spacing:-0.072000px;}
.ls8_c00408{letter-spacing:0.000000px;}
.ls0_c00408{letter-spacing:0.072000px;}
.ls3_c00408{letter-spacing:0.144000px;}
.lsb_c00408{letter-spacing:0.360000px;}
.ls2_c00408{letter-spacing:17.640000px;}
.ls1_c00408{letter-spacing:18.000000px;}
.ls6_c00408{letter-spacing:26.618400px;}
.ls7_c00408{letter-spacing:26.625600px;}
.ls5_c00408{letter-spacing:29.527200px;}
.ls4_c00408{letter-spacing:38.880000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00408{word-spacing:-18.144000px;}
.ws5_c00408{word-spacing:-18.072000px;}
.ws3_c00408{word-spacing:-18.000000px;}
.ws4_c00408{word-spacing:-17.640000px;}
.ws6_c00408{word-spacing:-17.424000px;}
.ws1_c00408{word-spacing:-0.360000px;}
.ws10_c00408{word-spacing:-0.144000px;}
.ws7_c00408{word-spacing:-0.131760px;}
.wse_c00408{word-spacing:-0.072000px;}
.ws2_c00408{word-spacing:0.000000px;}
.ws22_c00408{word-spacing:0.072000px;}
.wsf_c00408{word-spacing:0.360000px;}
.ws15_c00408{word-spacing:1.800000px;}
.ws1e_c00408{word-spacing:2.088000px;}
.ws1f_c00408{word-spacing:2.304000px;}
.ws1b_c00408{word-spacing:3.168000px;}
.ws1a_c00408{word-spacing:3.240000px;}
.ws27_c00408{word-spacing:5.688000px;}
.ws28_c00408{word-spacing:5.760000px;}
.wsc_c00408{word-spacing:7.200000px;}
.wsb_c00408{word-spacing:8.280000px;}
.ws2d_c00408{word-spacing:8.640000px;}
.ws1d_c00408{word-spacing:9.360000px;}
.ws20_c00408{word-spacing:10.728000px;}
.ws21_c00408{word-spacing:10.800000px;}
.ws2b_c00408{word-spacing:11.448000px;}
.ws2c_c00408{word-spacing:11.520000px;}
.ws13_c00408{word-spacing:13.680000px;}
.ws2e_c00408{word-spacing:15.048000px;}
.ws2f_c00408{word-spacing:15.120000px;}
.ws14_c00408{word-spacing:17.568000px;}
.ws17_c00408{word-spacing:17.640000px;}
.ws18_c00408{word-spacing:17.784000px;}
.ws19_c00408{word-spacing:18.000000px;}
.ws16_c00408{word-spacing:18.360000px;}
.ws30_c00408{word-spacing:19.008000px;}
.ws31_c00408{word-spacing:19.080000px;}
.ws26_c00408{word-spacing:19.656000px;}
.ws24_c00408{word-spacing:19.728000px;}
.ws25_c00408{word-spacing:19.800000px;}
.ws12_c00408{word-spacing:20.160000px;}
.ws29_c00408{word-spacing:20.808000px;}
.ws2a_c00408{word-spacing:20.880000px;}
.ws1c_c00408{word-spacing:22.680000px;}
.ws23_c00408{word-spacing:28.440000px;}
.ws8_c00408{word-spacing:30.600000px;}
.wsa_c00408{word-spacing:30.744000px;}
.ws9_c00408{word-spacing:30.888000px;}
.ws11_c00408{word-spacing:45.000000px;}
.wsd_c00408{word-spacing:74.088000px;}
._1_c00408{margin-left:-1.173600px;}
._0_c00408{width:1.054080px;}
._3_c00408{width:6.048000px;}
._2_c00408{width:26.992800px;}
.fc2_c00408{color:transparent;}
.fc1_c00408{color:rgb(0,0,0);}
.fc0_c00408{color:rgb(35,31,32);}
.fs1_c00408{font-size:65.880000px;}
.fs0_c00408{font-size:72.000000px;}
.y0_c00408{bottom:0.000000px;}
.y1_c00408{bottom:61.748550px;}
.y19_c00408{bottom:187.874400px;}
.y18_c00408{bottom:229.274400px;}
.y17_c00408{bottom:270.674400px;}
.y16_c00408{bottom:312.074400px;}
.y15_c00408{bottom:353.474400px;}
.y14_c00408{bottom:394.874400px;}
.y13_c00408{bottom:436.274400px;}
.y12_c00408{bottom:477.584400px;}
.y1c_c00408{bottom:477.674400px;}
.y11_c00408{bottom:519.074400px;}
.y10_c00408{bottom:560.474400px;}
.yf_c00408{bottom:601.874400px;}
.ye_c00408{bottom:643.274400px;}
.yd_c00408{bottom:684.674400px;}
.y1b_c00408{bottom:726.074400px;}
.yc_c00408{bottom:767.474400px;}
.yb_c00408{bottom:808.784400px;}
.ya_c00408{bottom:850.184400px;}
.y9_c00408{bottom:891.584400px;}
.y8_c00408{bottom:932.984400px;}
.y7_c00408{bottom:974.384400px;}
.y6_c00408{bottom:1015.784400px;}
.y5_c00408{bottom:1057.184400px;}
.y4_c00408{bottom:1098.584400px;}
.y3_c00408{bottom:1139.984400px;}
.y1a_c00408{bottom:1173.915120px;}
.y2_c00408{bottom:1194.074400px;}
.h2_c00408{height:50.400000px;}
.h3_c00408{height:54.331699px;}
.h4_c00408{height:76.824000px;}
.h5_c00408{height:78.048000px;}
.h0_c00408{height:1262.835000px;}
.h1_c00408{height:1263.000000px;}
.w2_c00408{width:0.000000px;}
.w3_c00408{width:0.066000px;}
.w0_c00408{width:892.914000px;}
.w1_c00408{width:893.250000px;}
.x1_c00408{left:-838.913400px;}
.x2_c00408{left:-765.293400px;}
.x3_c00408{left:-712.103400px;}
.x0_c00408{left:0.000000px;}
.x5_c00408{left:127.620000px;}
.x6_c00408{left:180.810000px;}
.x4_c00408{left:804.366150px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.lsa_c00408{letter-spacing:-0.512000pt;}
.ls9_c00408{letter-spacing:-0.320000pt;}
.lsc_c00408{letter-spacing:-0.128000pt;}
.lsd_c00408{letter-spacing:-0.064000pt;}
.ls8_c00408{letter-spacing:0.000000pt;}
.ls0_c00408{letter-spacing:0.064000pt;}
.ls3_c00408{letter-spacing:0.128000pt;}
.lsb_c00408{letter-spacing:0.320000pt;}
.ls2_c00408{letter-spacing:15.680000pt;}
.ls1_c00408{letter-spacing:16.000000pt;}
.ls6_c00408{letter-spacing:23.660800pt;}
.ls7_c00408{letter-spacing:23.667200pt;}
.ls5_c00408{letter-spacing:26.246400pt;}
.ls4_c00408{letter-spacing:34.560000pt;}
.ws0_c00408{word-spacing:-16.128000pt;}
.ws5_c00408{word-spacing:-16.064000pt;}
.ws3_c00408{word-spacing:-16.000000pt;}
.ws4_c00408{word-spacing:-15.680000pt;}
.ws6_c00408{word-spacing:-15.488000pt;}
.ws1_c00408{word-spacing:-0.320000pt;}
.ws10_c00408{word-spacing:-0.128000pt;}
.ws7_c00408{word-spacing:-0.117120pt;}
.wse_c00408{word-spacing:-0.064000pt;}
.ws2_c00408{word-spacing:0.000000pt;}
.ws22_c00408{word-spacing:0.064000pt;}
.wsf_c00408{word-spacing:0.320000pt;}
.ws15_c00408{word-spacing:1.600000pt;}
.ws1e_c00408{word-spacing:1.856000pt;}
.ws1f_c00408{word-spacing:2.048000pt;}
.ws1b_c00408{word-spacing:2.816000pt;}
.ws1a_c00408{word-spacing:2.880000pt;}
.ws27_c00408{word-spacing:5.056000pt;}
.ws28_c00408{word-spacing:5.120000pt;}
.wsc_c00408{word-spacing:6.400000pt;}
.wsb_c00408{word-spacing:7.360000pt;}
.ws2d_c00408{word-spacing:7.680000pt;}
.ws1d_c00408{word-spacing:8.320000pt;}
.ws20_c00408{word-spacing:9.536000pt;}
.ws21_c00408{word-spacing:9.600000pt;}
.ws2b_c00408{word-spacing:10.176000pt;}
.ws2c_c00408{word-spacing:10.240000pt;}
.ws13_c00408{word-spacing:12.160000pt;}
.ws2e_c00408{word-spacing:13.376000pt;}
.ws2f_c00408{word-spacing:13.440000pt;}
.ws14_c00408{word-spacing:15.616000pt;}
.ws17_c00408{word-spacing:15.680000pt;}
.ws18_c00408{word-spacing:15.808000pt;}
.ws19_c00408{word-spacing:16.000000pt;}
.ws16_c00408{word-spacing:16.320000pt;}
.ws30_c00408{word-spacing:16.896000pt;}
.ws31_c00408{word-spacing:16.960000pt;}
.ws26_c00408{word-spacing:17.472000pt;}
.ws24_c00408{word-spacing:17.536000pt;}
.ws25_c00408{word-spacing:17.600000pt;}
.ws12_c00408{word-spacing:17.920000pt;}
.ws29_c00408{word-spacing:18.496000pt;}
.ws2a_c00408{word-spacing:18.560000pt;}
.ws1c_c00408{word-spacing:20.160000pt;}
.ws23_c00408{word-spacing:25.280000pt;}
.ws8_c00408{word-spacing:27.200000pt;}
.wsa_c00408{word-spacing:27.328000pt;}
.ws9_c00408{word-spacing:27.456000pt;}
.ws11_c00408{word-spacing:40.000000pt;}
.wsd_c00408{word-spacing:65.856000pt;}
._1_c00408{margin-left:-1.043200pt;}
._0_c00408{width:0.936960pt;}
._3_c00408{width:5.376000pt;}
._2_c00408{width:23.993600pt;}
.fs1_c00408{font-size:58.560000pt;}
.fs0_c00408{font-size:64.000000pt;}
.y0_c00408{bottom:0.000000pt;}
.y1_c00408{bottom:54.887600pt;}
.y19_c00408{bottom:166.999467pt;}
.y18_c00408{bottom:203.799467pt;}
.y17_c00408{bottom:240.599467pt;}
.y16_c00408{bottom:277.399467pt;}
.y15_c00408{bottom:314.199467pt;}
.y14_c00408{bottom:350.999467pt;}
.y13_c00408{bottom:387.799467pt;}
.y12_c00408{bottom:424.519467pt;}
.y1c_c00408{bottom:424.599467pt;}
.y11_c00408{bottom:461.399467pt;}
.y10_c00408{bottom:498.199467pt;}
.yf_c00408{bottom:534.999467pt;}
.ye_c00408{bottom:571.799467pt;}
.yd_c00408{bottom:608.599467pt;}
.y1b_c00408{bottom:645.399467pt;}
.yc_c00408{bottom:682.199467pt;}
.yb_c00408{bottom:718.919467pt;}
.ya_c00408{bottom:755.719467pt;}
.y9_c00408{bottom:792.519467pt;}
.y8_c00408{bottom:829.319467pt;}
.y7_c00408{bottom:866.119467pt;}
.y6_c00408{bottom:902.919467pt;}
.y5_c00408{bottom:939.719467pt;}
.y4_c00408{bottom:976.519467pt;}
.y3_c00408{bottom:1013.319467pt;}
.y1a_c00408{bottom:1043.480107pt;}
.y2_c00408{bottom:1061.399467pt;}
.h2_c00408{height:44.800000pt;}
.h3_c00408{height:48.294844pt;}
.h4_c00408{height:68.288000pt;}
.h5_c00408{height:69.376000pt;}
.h0_c00408{height:1122.520000pt;}
.h1_c00408{height:1122.666667pt;}
.w2_c00408{width:0.000000pt;}
.w3_c00408{width:0.058667pt;}
.w0_c00408{width:793.701333pt;}
.w1_c00408{width:794.000000pt;}
.x1_c00408{left:-745.700800pt;}
.x2_c00408{left:-680.260800pt;}
.x3_c00408{left:-632.980800pt;}
.x0_c00408{left:0.000000pt;}
.x5_c00408{left:113.440000pt;}
.x6_c00408{left:160.720000pt;}
.x4_c00408{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00409;src:url('chunks/assets/font_44aab3e68de422a1c3c24646.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00409;src:url('chunks/assets/font_073586e6fa8b3c5621c66be9.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00409;src:url('chunks/assets/font_5f0a328e7c8b2cb03fc6daff.woff2')format("woff");}.ff4_c00409{font-family:ff4_c00409;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00409{letter-spacing:-0.576000px;}
.ls6_c00409{letter-spacing:-0.144000px;}
.ls5_c00409{letter-spacing:0.000000px;}
.ls0_c00409{letter-spacing:0.072000px;}
.ls1_c00409{letter-spacing:0.144000px;}
.ls3_c00409{letter-spacing:18.000000px;}
.ls2_c00409{letter-spacing:28.080000px;}
.ls4_c00409{letter-spacing:41.400000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00409{word-spacing:-18.144000px;}
.ws0_c00409{word-spacing:-18.072000px;}
.ws2_c00409{word-spacing:-18.000000px;}
.ws7_c00409{word-spacing:-17.856000px;}
.ws5_c00409{word-spacing:-17.424000px;}
.ws12_c00409{word-spacing:-0.432000px;}
.wsa_c00409{word-spacing:-0.131760px;}
.wsf_c00409{word-spacing:-0.072000px;}
.ws1_c00409{word-spacing:-0.014400px;}
.ws4_c00409{word-spacing:0.000000px;}
.ws20_c00409{word-spacing:0.720000px;}
.ws9_c00409{word-spacing:0.864000px;}
.ws1d_c00409{word-spacing:1.008000px;}
.ws1e_c00409{word-spacing:3.600000px;}
.wsc_c00409{word-spacing:3.672000px;}
.wsb_c00409{word-spacing:3.888000px;}
.ws6_c00409{word-spacing:3.960000px;}
.ws15_c00409{word-spacing:4.320000px;}
.ws1f_c00409{word-spacing:6.840000px;}
.wsd_c00409{word-spacing:10.008000px;}
.wse_c00409{word-spacing:10.080000px;}
.ws18_c00409{word-spacing:11.160000px;}
.ws1c_c00409{word-spacing:13.968000px;}
.ws10_c00409{word-spacing:15.768000px;}
.ws11_c00409{word-spacing:15.840000px;}
.ws8_c00409{word-spacing:15.912000px;}
.ws16_c00409{word-spacing:21.240000px;}
.ws17_c00409{word-spacing:21.600000px;}
.ws1a_c00409{word-spacing:22.680000px;}
.ws19_c00409{word-spacing:23.040000px;}
.ws1b_c00409{word-spacing:23.400000px;}
.ws14_c00409{word-spacing:28.440000px;}
.ws13_c00409{word-spacing:28.584000px;}
._1_c00409{margin-left:-1.015200px;}
._0_c00409{width:1.054080px;}
._3_c00409{width:4.176000px;}
._2_c00409{width:10.015200px;}
._4_c00409{width:22.176000px;}
.fc1_c00409{color:rgb(0,0,0);}
.fc0_c00409{color:rgb(35,31,32);}
.fs1_c00409{font-size:65.880000px;}
.fs0_c00409{font-size:72.000000px;}
.y0_c00409{bottom:0.000000px;}
.y1_c00409{bottom:61.748550px;}
.y1b_c00409{bottom:146.474400px;}
.y1a_c00409{bottom:187.874400px;}
.y19_c00409{bottom:229.274400px;}
.y18_c00409{bottom:270.674400px;}
.y17_c00409{bottom:312.074400px;}
.y16_c00409{bottom:353.474400px;}
.y15_c00409{bottom:394.874400px;}
.y14_c00409{bottom:436.274400px;}
.y13_c00409{bottom:477.674400px;}
.y12_c00409{bottom:519.074400px;}
.y11_c00409{bottom:560.474400px;}
.y10_c00409{bottom:601.874400px;}
.yf_c00409{bottom:643.274400px;}
.ye_c00409{bottom:684.674400px;}
.yd_c00409{bottom:726.074400px;}
.yc_c00409{bottom:767.474400px;}
.yb_c00409{bottom:808.784400px;}
.ya_c00409{bottom:850.184400px;}
.y9_c00409{bottom:891.584400px;}
.y8_c00409{bottom:932.984400px;}
.y7_c00409{bottom:974.384400px;}
.y6_c00409{bottom:1015.784400px;}
.y5_c00409{bottom:1057.184400px;}
.y4_c00409{bottom:1098.584400px;}
.y3_c00409{bottom:1139.984400px;}
.y2_c00409{bottom:1194.074400px;}
.h2_c00409{height:50.400000px;}
.h3_c00409{height:54.331699px;}
.h4_c00409{height:76.824000px;}
.h5_c00409{height:78.048000px;}
.h0_c00409{height:1262.835000px;}
.h1_c00409{height:1263.000000px;}
.w0_c00409{width:892.914000px;}
.w1_c00409{width:893.250000px;}
.x0_c00409{left:0.000000px;}
.x1_c00409{left:54.000000px;}
.x2_c00409{left:127.620000px;}
.x3_c00409{left:180.810000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls7_c00409{letter-spacing:-0.512000pt;}
.ls6_c00409{letter-spacing:-0.128000pt;}
.ls5_c00409{letter-spacing:0.000000pt;}
.ls0_c00409{letter-spacing:0.064000pt;}
.ls1_c00409{letter-spacing:0.128000pt;}
.ls3_c00409{letter-spacing:16.000000pt;}
.ls2_c00409{letter-spacing:24.960000pt;}
.ls4_c00409{letter-spacing:36.800000pt;}
.ws3_c00409{word-spacing:-16.128000pt;}
.ws0_c00409{word-spacing:-16.064000pt;}
.ws2_c00409{word-spacing:-16.000000pt;}
.ws7_c00409{word-spacing:-15.872000pt;}
.ws5_c00409{word-spacing:-15.488000pt;}
.ws12_c00409{word-spacing:-0.384000pt;}
.wsa_c00409{word-spacing:-0.117120pt;}
.wsf_c00409{word-spacing:-0.064000pt;}
.ws1_c00409{word-spacing:-0.012800pt;}
.ws4_c00409{word-spacing:0.000000pt;}
.ws20_c00409{word-spacing:0.640000pt;}
.ws9_c00409{word-spacing:0.768000pt;}
.ws1d_c00409{word-spacing:0.896000pt;}
.ws1e_c00409{word-spacing:3.200000pt;}
.wsc_c00409{word-spacing:3.264000pt;}
.wsb_c00409{word-spacing:3.456000pt;}
.ws6_c00409{word-spacing:3.520000pt;}
.ws15_c00409{word-spacing:3.840000pt;}
.ws1f_c00409{word-spacing:6.080000pt;}
.wsd_c00409{word-spacing:8.896000pt;}
.wse_c00409{word-spacing:8.960000pt;}
.ws18_c00409{word-spacing:9.920000pt;}
.ws1c_c00409{word-spacing:12.416000pt;}
.ws10_c00409{word-spacing:14.016000pt;}
.ws11_c00409{word-spacing:14.080000pt;}
.ws8_c00409{word-spacing:14.144000pt;}
.ws16_c00409{word-spacing:18.880000pt;}
.ws17_c00409{word-spacing:19.200000pt;}
.ws1a_c00409{word-spacing:20.160000pt;}
.ws19_c00409{word-spacing:20.480000pt;}
.ws1b_c00409{word-spacing:20.800000pt;}
.ws14_c00409{word-spacing:25.280000pt;}
.ws13_c00409{word-spacing:25.408000pt;}
._1_c00409{margin-left:-0.902400pt;}
._0_c00409{width:0.936960pt;}
._3_c00409{width:3.712000pt;}
._2_c00409{width:8.902400pt;}
._4_c00409{width:19.712000pt;}
.fs1_c00409{font-size:58.560000pt;}
.fs0_c00409{font-size:64.000000pt;}
.y0_c00409{bottom:0.000000pt;}
.y1_c00409{bottom:54.887600pt;}
.y1b_c00409{bottom:130.199467pt;}
.y1a_c00409{bottom:166.999467pt;}
.y19_c00409{bottom:203.799467pt;}
.y18_c00409{bottom:240.599467pt;}
.y17_c00409{bottom:277.399467pt;}
.y16_c00409{bottom:314.199467pt;}
.y15_c00409{bottom:350.999467pt;}
.y14_c00409{bottom:387.799467pt;}
.y13_c00409{bottom:424.599467pt;}
.y12_c00409{bottom:461.399467pt;}
.y11_c00409{bottom:498.199467pt;}
.y10_c00409{bottom:534.999467pt;}
.yf_c00409{bottom:571.799467pt;}
.ye_c00409{bottom:608.599467pt;}
.yd_c00409{bottom:645.399467pt;}
.yc_c00409{bottom:682.199467pt;}
.yb_c00409{bottom:718.919467pt;}
.ya_c00409{bottom:755.719467pt;}
.y9_c00409{bottom:792.519467pt;}
.y8_c00409{bottom:829.319467pt;}
.y7_c00409{bottom:866.119467pt;}
.y6_c00409{bottom:902.919467pt;}
.y5_c00409{bottom:939.719467pt;}
.y4_c00409{bottom:976.519467pt;}
.y3_c00409{bottom:1013.319467pt;}
.y2_c00409{bottom:1061.399467pt;}
.h2_c00409{height:44.800000pt;}
.h3_c00409{height:48.294844pt;}
.h4_c00409{height:68.288000pt;}
.h5_c00409{height:69.376000pt;}
.h0_c00409{height:1122.520000pt;}
.h1_c00409{height:1122.666667pt;}
.w0_c00409{width:793.701333pt;}
.w1_c00409{width:794.000000pt;}
.x0_c00409{left:0.000000pt;}
.x1_c00409{left:48.000000pt;}
.x2_c00409{left:113.440000pt;}
.x3_c00409{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00410;src:url('chunks/assets/font_c751085884c14dd63f22f8b1.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00410;src:url('chunks/assets/font_0160a166563ac51df1cd5f7d.woff2')format("woff");}.ff3_c00410{font-family:ff3_c00410;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00410;src:url('chunks/assets/font_9ee0d4804f023cfb12371c81.woff2')format("woff");}.ff4_c00410{font-family:ff4_c00410;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00410;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00410{font-family:ff5_c00410;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00410;src:url('chunks/assets/font_bfc574cf5da5ca2220fc810f.woff2')format("woff");}.ff6_c00410{font-family:ff6_c00410;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00410;src:url('chunks/assets/font_42e34aec400a7429321d38ef.woff2')format("woff");}.ff7_c00410{font-family:ff7_c00410;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00410;src:url('chunks/assets/font_25daecd99f20ecc6411a18db.woff2')format("woff");}.ff8_c00410{font-family:ff8_c00410;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00410{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.lsb_c00410{letter-spacing:-0.576000px;}
.lsd_c00410{letter-spacing:-0.360000px;}
.lsa_c00410{letter-spacing:-0.144000px;}
.lsc_c00410{letter-spacing:-0.072000px;}
.ls9_c00410{letter-spacing:0.000000px;}
.ls0_c00410{letter-spacing:0.072000px;}
.ls1_c00410{letter-spacing:0.144000px;}
.ls6_c00410{letter-spacing:17.640000px;}
.ls3_c00410{letter-spacing:18.000000px;}
.ls2_c00410{letter-spacing:28.080000px;}
.ls8_c00410{letter-spacing:33.480000px;}
.ls5_c00410{letter-spacing:35.280000px;}
.ls7_c00410{letter-spacing:39.225600px;}
.ls4_c00410{letter-spacing:41.400000px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00410{word-spacing:-18.144000px;}
.ws0_c00410{word-spacing:-18.072000px;}
.ws2_c00410{word-spacing:-18.000000px;}
.ws7_c00410{word-spacing:-17.856000px;}
.ws5_c00410{word-spacing:-17.424000px;}
.wsb_c00410{word-spacing:-0.648000px;}
.ws16_c00410{word-spacing:-0.432000px;}
.wse_c00410{word-spacing:-0.131760px;}
.ws14_c00410{word-spacing:-0.072000px;}
.ws1_c00410{word-spacing:-0.014400px;}
.wsa_c00410{word-spacing:-0.007200px;}
.ws4_c00410{word-spacing:0.000000px;}
.ws24_c00410{word-spacing:0.720000px;}
.ws9_c00410{word-spacing:0.864000px;}
.ws21_c00410{word-spacing:1.008000px;}
.ws2b_c00410{word-spacing:1.800000px;}
.ws2c_c00410{word-spacing:2.160000px;}
.ws29_c00410{word-spacing:3.240000px;}
.ws22_c00410{word-spacing:3.600000px;}
.ws11_c00410{word-spacing:3.672000px;}
.wsf_c00410{word-spacing:3.888000px;}
.ws6_c00410{word-spacing:3.952800px;}
.ws10_c00410{word-spacing:3.960000px;}
.ws19_c00410{word-spacing:4.320000px;}
.ws23_c00410{word-spacing:6.840000px;}
.ws35_c00410{word-spacing:8.136000px;}
.ws34_c00410{word-spacing:8.280000px;}
.ws28_c00410{word-spacing:9.288000px;}
.ws27_c00410{word-spacing:9.360000px;}
.ws12_c00410{word-spacing:10.008000px;}
.ws13_c00410{word-spacing:10.080000px;}
.ws1c_c00410{word-spacing:11.160000px;}
.ws2a_c00410{word-spacing:11.880000px;}
.ws33_c00410{word-spacing:12.240000px;}
.ws26_c00410{word-spacing:12.960000px;}
.ws30_c00410{word-spacing:13.320000px;}
.ws20_c00410{word-spacing:13.968000px;}
.wsc_c00410{word-spacing:15.120000px;}
.ws36_c00410{word-spacing:15.480000px;}
.wsd_c00410{word-spacing:15.768000px;}
.ws15_c00410{word-spacing:15.840000px;}
.ws8_c00410{word-spacing:15.912000px;}
.ws25_c00410{word-spacing:17.280000px;}
.ws1a_c00410{word-spacing:21.240000px;}
.ws1b_c00410{word-spacing:21.600000px;}
.ws1e_c00410{word-spacing:22.680000px;}
.ws1d_c00410{word-spacing:23.040000px;}
.ws1f_c00410{word-spacing:23.400000px;}
.ws2f_c00410{word-spacing:23.688000px;}
.ws2d_c00410{word-spacing:23.760000px;}
.ws2e_c00410{word-spacing:23.832000px;}
.ws18_c00410{word-spacing:28.440000px;}
.ws17_c00410{word-spacing:28.584000px;}
.ws31_c00410{word-spacing:29.088000px;}
.ws32_c00410{word-spacing:29.160000px;}
.ws37_c00410{word-spacing:30.960000px;}
._1_c00410{margin-left:-1.015200px;}
._0_c00410{width:1.054080px;}
._3_c00410{width:4.176000px;}
._2_c00410{width:10.015200px;}
._5_c00410{width:12.168000px;}
._4_c00410{width:22.176000px;}
.fc2_c00410{color:transparent;}
.fc1_c00410{color:rgb(0,0,0);}
.fc0_c00410{color:rgb(35,31,32);}
.fs1_c00410{font-size:65.880000px;}
.fs0_c00410{font-size:72.000000px;}
.y0_c00410{bottom:0.000000px;}
.y1_c00410{bottom:61.748550px;}
.y1b_c00410{bottom:146.474400px;}
.y1a_c00410{bottom:187.874400px;}
.y19_c00410{bottom:229.274400px;}
.y18_c00410{bottom:270.674400px;}
.y17_c00410{bottom:312.074400px;}
.y16_c00410{bottom:353.474400px;}
.y15_c00410{bottom:394.874400px;}
.y14_c00410{bottom:436.274400px;}
.y13_c00410{bottom:477.674400px;}
.y12_c00410{bottom:519.074400px;}
.y11_c00410{bottom:560.474400px;}
.y10_c00410{bottom:601.874400px;}
.yf_c00410{bottom:643.274400px;}
.ye_c00410{bottom:684.674400px;}
.yd_c00410{bottom:726.074400px;}
.yc_c00410{bottom:767.474400px;}
.yb_c00410{bottom:808.784400px;}
.ya_c00410{bottom:850.184400px;}
.y9_c00410{bottom:891.584400px;}
.y8_c00410{bottom:932.984400px;}
.y7_c00410{bottom:974.384400px;}
.y6_c00410{bottom:1015.784400px;}
.y5_c00410{bottom:1057.184400px;}
.y4_c00410{bottom:1098.584400px;}
.y3_c00410{bottom:1139.984400px;}
.y1c_c00410{bottom:1173.915120px;}
.y2_c00410{bottom:1194.074400px;}
.h2_c00410{height:50.400000px;}
.h3_c00410{height:54.331699px;}
.h4_c00410{height:76.824000px;}
.h5_c00410{height:78.048000px;}
.h0_c00410{height:1262.835000px;}
.h1_c00410{height:1263.000000px;}
.w2_c00410{width:0.000000px;}
.w3_c00410{width:0.066000px;}
.w0_c00410{width:892.914000px;}
.w1_c00410{width:893.250000px;}
.x1_c00410{left:-838.913400px;}
.x2_c00410{left:-765.293400px;}
.x3_c00410{left:-712.103400px;}
.x0_c00410{left:0.000000px;}
.x5_c00410{left:127.620000px;}
.x6_c00410{left:180.810000px;}
.x4_c00410{left:804.366150px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.lsb_c00410{letter-spacing:-0.512000pt;}
.lsd_c00410{letter-spacing:-0.320000pt;}
.lsa_c00410{letter-spacing:-0.128000pt;}
.lsc_c00410{letter-spacing:-0.064000pt;}
.ls9_c00410{letter-spacing:0.000000pt;}
.ls0_c00410{letter-spacing:0.064000pt;}
.ls1_c00410{letter-spacing:0.128000pt;}
.ls6_c00410{letter-spacing:15.680000pt;}
.ls3_c00410{letter-spacing:16.000000pt;}
.ls2_c00410{letter-spacing:24.960000pt;}
.ls8_c00410{letter-spacing:29.760000pt;}
.ls5_c00410{letter-spacing:31.360000pt;}
.ls7_c00410{letter-spacing:34.867200pt;}
.ls4_c00410{letter-spacing:36.800000pt;}
.ws3_c00410{word-spacing:-16.128000pt;}
.ws0_c00410{word-spacing:-16.064000pt;}
.ws2_c00410{word-spacing:-16.000000pt;}
.ws7_c00410{word-spacing:-15.872000pt;}
.ws5_c00410{word-spacing:-15.488000pt;}
.wsb_c00410{word-spacing:-0.576000pt;}
.ws16_c00410{word-spacing:-0.384000pt;}
.wse_c00410{word-spacing:-0.117120pt;}
.ws14_c00410{word-spacing:-0.064000pt;}
.ws1_c00410{word-spacing:-0.012800pt;}
.wsa_c00410{word-spacing:-0.006400pt;}
.ws4_c00410{word-spacing:0.000000pt;}
.ws24_c00410{word-spacing:0.640000pt;}
.ws9_c00410{word-spacing:0.768000pt;}
.ws21_c00410{word-spacing:0.896000pt;}
.ws2b_c00410{word-spacing:1.600000pt;}
.ws2c_c00410{word-spacing:1.920000pt;}
.ws29_c00410{word-spacing:2.880000pt;}
.ws22_c00410{word-spacing:3.200000pt;}
.ws11_c00410{word-spacing:3.264000pt;}
.wsf_c00410{word-spacing:3.456000pt;}
.ws6_c00410{word-spacing:3.513600pt;}
.ws10_c00410{word-spacing:3.520000pt;}
.ws19_c00410{word-spacing:3.840000pt;}
.ws23_c00410{word-spacing:6.080000pt;}
.ws35_c00410{word-spacing:7.232000pt;}
.ws34_c00410{word-spacing:7.360000pt;}
.ws28_c00410{word-spacing:8.256000pt;}
.ws27_c00410{word-spacing:8.320000pt;}
.ws12_c00410{word-spacing:8.896000pt;}
.ws13_c00410{word-spacing:8.960000pt;}
.ws1c_c00410{word-spacing:9.920000pt;}
.ws2a_c00410{word-spacing:10.560000pt;}
.ws33_c00410{word-spacing:10.880000pt;}
.ws26_c00410{word-spacing:11.520000pt;}
.ws30_c00410{word-spacing:11.840000pt;}
.ws20_c00410{word-spacing:12.416000pt;}
.wsc_c00410{word-spacing:13.440000pt;}
.ws36_c00410{word-spacing:13.760000pt;}
.wsd_c00410{word-spacing:14.016000pt;}
.ws15_c00410{word-spacing:14.080000pt;}
.ws8_c00410{word-spacing:14.144000pt;}
.ws25_c00410{word-spacing:15.360000pt;}
.ws1a_c00410{word-spacing:18.880000pt;}
.ws1b_c00410{word-spacing:19.200000pt;}
.ws1e_c00410{word-spacing:20.160000pt;}
.ws1d_c00410{word-spacing:20.480000pt;}
.ws1f_c00410{word-spacing:20.800000pt;}
.ws2f_c00410{word-spacing:21.056000pt;}
.ws2d_c00410{word-spacing:21.120000pt;}
.ws2e_c00410{word-spacing:21.184000pt;}
.ws18_c00410{word-spacing:25.280000pt;}
.ws17_c00410{word-spacing:25.408000pt;}
.ws31_c00410{word-spacing:25.856000pt;}
.ws32_c00410{word-spacing:25.920000pt;}
.ws37_c00410{word-spacing:27.520000pt;}
._1_c00410{margin-left:-0.902400pt;}
._0_c00410{width:0.936960pt;}
._3_c00410{width:3.712000pt;}
._2_c00410{width:8.902400pt;}
._5_c00410{width:10.816000pt;}
._4_c00410{width:19.712000pt;}
.fs1_c00410{font-size:58.560000pt;}
.fs0_c00410{font-size:64.000000pt;}
.y0_c00410{bottom:0.000000pt;}
.y1_c00410{bottom:54.887600pt;}
.y1b_c00410{bottom:130.199467pt;}
.y1a_c00410{bottom:166.999467pt;}
.y19_c00410{bottom:203.799467pt;}
.y18_c00410{bottom:240.599467pt;}
.y17_c00410{bottom:277.399467pt;}
.y16_c00410{bottom:314.199467pt;}
.y15_c00410{bottom:350.999467pt;}
.y14_c00410{bottom:387.799467pt;}
.y13_c00410{bottom:424.599467pt;}
.y12_c00410{bottom:461.399467pt;}
.y11_c00410{bottom:498.199467pt;}
.y10_c00410{bottom:534.999467pt;}
.yf_c00410{bottom:571.799467pt;}
.ye_c00410{bottom:608.599467pt;}
.yd_c00410{bottom:645.399467pt;}
.yc_c00410{bottom:682.199467pt;}
.yb_c00410{bottom:718.919467pt;}
.ya_c00410{bottom:755.719467pt;}
.y9_c00410{bottom:792.519467pt;}
.y8_c00410{bottom:829.319467pt;}
.y7_c00410{bottom:866.119467pt;}
.y6_c00410{bottom:902.919467pt;}
.y5_c00410{bottom:939.719467pt;}
.y4_c00410{bottom:976.519467pt;}
.y3_c00410{bottom:1013.319467pt;}
.y1c_c00410{bottom:1043.480107pt;}
.y2_c00410{bottom:1061.399467pt;}
.h2_c00410{height:44.800000pt;}
.h3_c00410{height:48.294844pt;}
.h4_c00410{height:68.288000pt;}
.h5_c00410{height:69.376000pt;}
.h0_c00410{height:1122.520000pt;}
.h1_c00410{height:1122.666667pt;}
.w2_c00410{width:0.000000pt;}
.w3_c00410{width:0.058667pt;}
.w0_c00410{width:793.701333pt;}
.w1_c00410{width:794.000000pt;}
.x1_c00410{left:-745.700800pt;}
.x2_c00410{left:-680.260800pt;}
.x3_c00410{left:-632.980800pt;}
.x0_c00410{left:0.000000pt;}
.x5_c00410{left:113.440000pt;}
.x6_c00410{left:160.720000pt;}
.x4_c00410{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00411;src:url('chunks/assets/font_8522c2c001df5ceafb384a2c.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00411;src:url('chunks/assets/font_d4fece58ba040a1b4450178b.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00411;src:url('chunks/assets/font_398997486901bc5f43c206ba.woff2')format("woff");}.ff4_c00411{font-family:ff4_c00411;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.ls7_c00411{letter-spacing:-0.144000px;}
.ls6_c00411{letter-spacing:0.000000px;}
.ls2_c00411{letter-spacing:0.072000px;}
.ls4_c00411{letter-spacing:0.144000px;}
.ls5_c00411{letter-spacing:17.640000px;}
.ls1_c00411{letter-spacing:22.680000px;}
.ls0_c00411{letter-spacing:28.440000px;}
.ls3_c00411{letter-spacing:43.200000px;}
.sc__c00411{text-shadow:none;}
.sc0_c00411{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00411{-webkit-text-stroke:0px transparent;}
.sc0_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00411{word-spacing:-18.144000px;}
.ws0_c00411{word-spacing:-18.072000px;}
.ws1_c00411{word-spacing:-18.000000px;}
.ws2_c00411{word-spacing:-17.856000px;}
.ws4_c00411{word-spacing:-0.648000px;}
.ws16_c00411{word-spacing:-0.144000px;}
.ws6_c00411{word-spacing:-0.131760px;}
.ws13_c00411{word-spacing:-0.072000px;}
.ws5_c00411{word-spacing:0.000000px;}
.ws17_c00411{word-spacing:2.880000px;}
.ws14_c00411{word-spacing:3.600000px;}
.wsc_c00411{word-spacing:5.040000px;}
.ws9_c00411{word-spacing:5.472000px;}
.ws8_c00411{word-spacing:5.760000px;}
.ws7_c00411{word-spacing:8.640000px;}
.ws12_c00411{word-spacing:9.000000px;}
.wsa_c00411{word-spacing:10.440000px;}
.ws1a_c00411{word-spacing:11.736000px;}
.ws19_c00411{word-spacing:11.808000px;}
.wsd_c00411{word-spacing:15.048000px;}
.wse_c00411{word-spacing:15.120000px;}
.wsb_c00411{word-spacing:23.040000px;}
.ws11_c00411{word-spacing:25.488000px;}
.wsf_c00411{word-spacing:25.920000px;}
.ws10_c00411{word-spacing:26.208000px;}
.ws18_c00411{word-spacing:32.040000px;}
.ws15_c00411{word-spacing:38.520000px;}
._1_c00411{margin-left:-1.224000px;}
._0_c00411{width:1.054080px;}
.fc1_c00411{color:rgb(0,0,0);}
.fc0_c00411{color:rgb(35,31,32);}
.fs1_c00411{font-size:65.880000px;}
.fs0_c00411{font-size:72.000000px;}
.y0_c00411{bottom:0.000000px;}
.y1_c00411{bottom:61.748550px;}
.y19_c00411{bottom:187.874400px;}
.y18_c00411{bottom:229.274400px;}
.y17_c00411{bottom:270.674400px;}
.y16_c00411{bottom:312.074400px;}
.y15_c00411{bottom:353.474400px;}
.y14_c00411{bottom:394.874400px;}
.y13_c00411{bottom:436.274400px;}
.y12_c00411{bottom:477.674400px;}
.y11_c00411{bottom:519.074400px;}
.y10_c00411{bottom:560.474400px;}
.yf_c00411{bottom:601.874400px;}
.ye_c00411{bottom:643.274400px;}
.yd_c00411{bottom:726.074400px;}
.yc_c00411{bottom:767.474400px;}
.yb_c00411{bottom:808.784400px;}
.ya_c00411{bottom:850.184400px;}
.y9_c00411{bottom:891.584400px;}
.y8_c00411{bottom:932.984400px;}
.y7_c00411{bottom:974.384400px;}
.y6_c00411{bottom:1015.784400px;}
.y5_c00411{bottom:1057.184400px;}
.y4_c00411{bottom:1098.584400px;}
.y3_c00411{bottom:1139.984400px;}
.y2_c00411{bottom:1194.074400px;}
.h2_c00411{height:50.400000px;}
.h3_c00411{height:54.331699px;}
.h5_c00411{height:76.824000px;}
.h4_c00411{height:78.048000px;}
.h0_c00411{height:1262.835000px;}
.h1_c00411{height:1263.000000px;}
.w0_c00411{width:892.914000px;}
.w1_c00411{width:893.250000px;}
.x0_c00411{left:0.000000px;}
.x1_c00411{left:54.000000px;}
.x2_c00411{left:127.620000px;}
.x3_c00411{left:180.810000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls7_c00411{letter-spacing:-0.128000pt;}
.ls6_c00411{letter-spacing:0.000000pt;}
.ls2_c00411{letter-spacing:0.064000pt;}
.ls4_c00411{letter-spacing:0.128000pt;}
.ls5_c00411{letter-spacing:15.680000pt;}
.ls1_c00411{letter-spacing:20.160000pt;}
.ls0_c00411{letter-spacing:25.280000pt;}
.ls3_c00411{letter-spacing:38.400000pt;}
.ws3_c00411{word-spacing:-16.128000pt;}
.ws0_c00411{word-spacing:-16.064000pt;}
.ws1_c00411{word-spacing:-16.000000pt;}
.ws2_c00411{word-spacing:-15.872000pt;}
.ws4_c00411{word-spacing:-0.576000pt;}
.ws16_c00411{word-spacing:-0.128000pt;}
.ws6_c00411{word-spacing:-0.117120pt;}
.ws13_c00411{word-spacing:-0.064000pt;}
.ws5_c00411{word-spacing:0.000000pt;}
.ws17_c00411{word-spacing:2.560000pt;}
.ws14_c00411{word-spacing:3.200000pt;}
.wsc_c00411{word-spacing:4.480000pt;}
.ws9_c00411{word-spacing:4.864000pt;}
.ws8_c00411{word-spacing:5.120000pt;}
.ws7_c00411{word-spacing:7.680000pt;}
.ws12_c00411{word-spacing:8.000000pt;}
.wsa_c00411{word-spacing:9.280000pt;}
.ws1a_c00411{word-spacing:10.432000pt;}
.ws19_c00411{word-spacing:10.496000pt;}
.wsd_c00411{word-spacing:13.376000pt;}
.wse_c00411{word-spacing:13.440000pt;}
.wsb_c00411{word-spacing:20.480000pt;}
.ws11_c00411{word-spacing:22.656000pt;}
.wsf_c00411{word-spacing:23.040000pt;}
.ws10_c00411{word-spacing:23.296000pt;}
.ws18_c00411{word-spacing:28.480000pt;}
.ws15_c00411{word-spacing:34.240000pt;}
._1_c00411{margin-left:-1.088000pt;}
._0_c00411{width:0.936960pt;}
.fs1_c00411{font-size:58.560000pt;}
.fs0_c00411{font-size:64.000000pt;}
.y0_c00411{bottom:0.000000pt;}
.y1_c00411{bottom:54.887600pt;}
.y19_c00411{bottom:166.999467pt;}
.y18_c00411{bottom:203.799467pt;}
.y17_c00411{bottom:240.599467pt;}
.y16_c00411{bottom:277.399467pt;}
.y15_c00411{bottom:314.199467pt;}
.y14_c00411{bottom:350.999467pt;}
.y13_c00411{bottom:387.799467pt;}
.y12_c00411{bottom:424.599467pt;}
.y11_c00411{bottom:461.399467pt;}
.y10_c00411{bottom:498.199467pt;}
.yf_c00411{bottom:534.999467pt;}
.ye_c00411{bottom:571.799467pt;}
.yd_c00411{bottom:645.399467pt;}
.yc_c00411{bottom:682.199467pt;}
.yb_c00411{bottom:718.919467pt;}
.ya_c00411{bottom:755.719467pt;}
.y9_c00411{bottom:792.519467pt;}
.y8_c00411{bottom:829.319467pt;}
.y7_c00411{bottom:866.119467pt;}
.y6_c00411{bottom:902.919467pt;}
.y5_c00411{bottom:939.719467pt;}
.y4_c00411{bottom:976.519467pt;}
.y3_c00411{bottom:1013.319467pt;}
.y2_c00411{bottom:1061.399467pt;}
.h2_c00411{height:44.800000pt;}
.h3_c00411{height:48.294844pt;}
.h5_c00411{height:68.288000pt;}
.h4_c00411{height:69.376000pt;}
.h0_c00411{height:1122.520000pt;}
.h1_c00411{height:1122.666667pt;}
.w0_c00411{width:793.701333pt;}
.w1_c00411{width:794.000000pt;}
.x0_c00411{left:0.000000pt;}
.x1_c00411{left:48.000000pt;}
.x2_c00411{left:113.440000pt;}
.x3_c00411{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00412;src:url('chunks/assets/font_afbcadba8a4416de118b3e56.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00412;src:url('chunks/assets/font_f47cff97396dd620e219da9c.woff2')format("woff");}.ff3_c00412{font-family:ff3_c00412;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00412;src:url('chunks/assets/font_c7194691ac4b653031d4eb43.woff2')format("woff");}.ff4_c00412{font-family:ff4_c00412;line-height:1.592000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00412{font-family:ff5_c00412;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00412;src:url('chunks/assets/font_70fd52a09ac73f0c6b846cfc.woff2')format("woff");}.ff6_c00412{font-family:ff6_c00412;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00412;src:url('chunks/assets/font_efb9d4abe4583b17cfa4f6e9.woff2')format("woff");}.ff7_c00412{font-family:ff7_c00412;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00412;src:url('chunks/assets/font_d80b4cb784a0fcf7ad7c4ef6.woff2')format("woff");}.ff8_c00412{font-family:ff8_c00412;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls10_c00412{letter-spacing:-0.360000px;}
.lsf_c00412{letter-spacing:-0.216000px;}
.lsd_c00412{letter-spacing:-0.144000px;}
.lse_c00412{letter-spacing:-0.072000px;}
.lsc_c00412{letter-spacing:0.000000px;}
.ls2_c00412{letter-spacing:0.072000px;}
.ls4_c00412{letter-spacing:0.144000px;}
.ls5_c00412{letter-spacing:17.640000px;}
.ls7_c00412{letter-spacing:18.000000px;}
.ls1_c00412{letter-spacing:22.680000px;}
.lsb_c00412{letter-spacing:24.840000px;}
.ls6_c00412{letter-spacing:25.200000px;}
.ls9_c00412{letter-spacing:26.640000px;}
.ls0_c00412{letter-spacing:28.440000px;}
.lsa_c00412{letter-spacing:29.534400px;}
.ls8_c00412{letter-spacing:31.320000px;}
.ls3_c00412{letter-spacing:43.200000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00412{word-spacing:-18.144000px;}
.ws0_c00412{word-spacing:-18.072000px;}
.ws1_c00412{word-spacing:-18.000000px;}
.ws5_c00412{word-spacing:-17.928000px;}
.ws2_c00412{word-spacing:-17.856000px;}
.ws6_c00412{word-spacing:-17.784000px;}
.ws8_c00412{word-spacing:-17.640000px;}
.ws4_c00412{word-spacing:-0.648000px;}
.ws30_c00412{word-spacing:-0.504000px;}
.ws22_c00412{word-spacing:-0.360000px;}
.ws1b_c00412{word-spacing:-0.144000px;}
.wsb_c00412{word-spacing:-0.131760px;}
.ws18_c00412{word-spacing:-0.072000px;}
.wsa_c00412{word-spacing:0.000000px;}
.ws32_c00412{word-spacing:0.072000px;}
.ws2f_c00412{word-spacing:0.360000px;}
.ws7_c00412{word-spacing:0.432000px;}
.ws26_c00412{word-spacing:0.720000px;}
.ws25_c00412{word-spacing:0.864000px;}
.ws27_c00412{word-spacing:1.440000px;}
.ws9_c00412{word-spacing:1.584000px;}
.ws33_c00412{word-spacing:1.800000px;}
.ws1c_c00412{word-spacing:2.880000px;}
.ws19_c00412{word-spacing:3.600000px;}
.ws2d_c00412{word-spacing:4.248000px;}
.ws2c_c00412{word-spacing:4.608000px;}
.ws2b_c00412{word-spacing:4.680000px;}
.ws11_c00412{word-spacing:5.040000px;}
.wse_c00412{word-spacing:5.472000px;}
.wsd_c00412{word-spacing:5.760000px;}
.ws20_c00412{word-spacing:6.480000px;}
.ws21_c00412{word-spacing:6.840000px;}
.ws31_c00412{word-spacing:6.984000px;}
.ws24_c00412{word-spacing:7.128000px;}
.ws23_c00412{word-spacing:7.200000px;}
.wsc_c00412{word-spacing:8.640000px;}
.ws2a_c00412{word-spacing:8.784000px;}
.ws17_c00412{word-spacing:9.000000px;}
.wsf_c00412{word-spacing:10.440000px;}
.ws2e_c00412{word-spacing:11.520000px;}
.ws1f_c00412{word-spacing:11.736000px;}
.ws1e_c00412{word-spacing:11.808000px;}
.ws28_c00412{word-spacing:13.248000px;}
.ws29_c00412{word-spacing:13.320000px;}
.ws12_c00412{word-spacing:15.048000px;}
.ws13_c00412{word-spacing:15.120000px;}
.ws10_c00412{word-spacing:23.040000px;}
.ws16_c00412{word-spacing:25.488000px;}
.ws14_c00412{word-spacing:25.920000px;}
.ws15_c00412{word-spacing:26.208000px;}
.ws1d_c00412{word-spacing:32.040000px;}
.ws1a_c00412{word-spacing:38.520000px;}
._1_c00412{margin-left:-1.224000px;}
._0_c00412{width:1.054080px;}
.fc2_c00412{color:transparent;}
.fc1_c00412{color:rgb(0,0,0);}
.fc0_c00412{color:rgb(35,31,32);}
.fs1_c00412{font-size:65.880000px;}
.fs0_c00412{font-size:72.000000px;}
.y0_c00412{bottom:0.000000px;}
.y1_c00412{bottom:61.748550px;}
.y19_c00412{bottom:187.874400px;}
.y18_c00412{bottom:229.274400px;}
.y17_c00412{bottom:270.674400px;}
.y16_c00412{bottom:312.074400px;}
.y15_c00412{bottom:353.474400px;}
.y14_c00412{bottom:394.874400px;}
.y13_c00412{bottom:436.274400px;}
.y12_c00412{bottom:477.674400px;}
.y11_c00412{bottom:519.074400px;}
.y10_c00412{bottom:560.474400px;}
.yf_c00412{bottom:601.874400px;}
.ye_c00412{bottom:643.274400px;}
.y1b_c00412{bottom:684.674400px;}
.yd_c00412{bottom:726.074400px;}
.yc_c00412{bottom:767.474400px;}
.yb_c00412{bottom:808.784400px;}
.ya_c00412{bottom:850.184400px;}
.y9_c00412{bottom:891.584400px;}
.y8_c00412{bottom:932.984400px;}
.y7_c00412{bottom:974.384400px;}
.y6_c00412{bottom:1015.784400px;}
.y5_c00412{bottom:1057.184400px;}
.y4_c00412{bottom:1098.584400px;}
.y3_c00412{bottom:1139.984400px;}
.y1a_c00412{bottom:1173.915120px;}
.y2_c00412{bottom:1194.074400px;}
.h2_c00412{height:50.400000px;}
.h3_c00412{height:54.331699px;}
.h5_c00412{height:76.824000px;}
.h4_c00412{height:78.048000px;}
.h0_c00412{height:1262.835000px;}
.h1_c00412{height:1263.000000px;}
.w2_c00412{width:0.000000px;}
.w3_c00412{width:0.066000px;}
.w0_c00412{width:892.914000px;}
.w1_c00412{width:893.250000px;}
.x1_c00412{left:-838.913400px;}
.x2_c00412{left:-765.293400px;}
.x3_c00412{left:-712.103400px;}
.x0_c00412{left:0.000000px;}
.x5_c00412{left:127.620000px;}
.x6_c00412{left:180.810000px;}
.x4_c00412{left:804.366150px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls10_c00412{letter-spacing:-0.320000pt;}
.lsf_c00412{letter-spacing:-0.192000pt;}
.lsd_c00412{letter-spacing:-0.128000pt;}
.lse_c00412{letter-spacing:-0.064000pt;}
.lsc_c00412{letter-spacing:0.000000pt;}
.ls2_c00412{letter-spacing:0.064000pt;}
.ls4_c00412{letter-spacing:0.128000pt;}
.ls5_c00412{letter-spacing:15.680000pt;}
.ls7_c00412{letter-spacing:16.000000pt;}
.ls1_c00412{letter-spacing:20.160000pt;}
.lsb_c00412{letter-spacing:22.080000pt;}
.ls6_c00412{letter-spacing:22.400000pt;}
.ls9_c00412{letter-spacing:23.680000pt;}
.ls0_c00412{letter-spacing:25.280000pt;}
.lsa_c00412{letter-spacing:26.252800pt;}
.ls8_c00412{letter-spacing:27.840000pt;}
.ls3_c00412{letter-spacing:38.400000pt;}
.ws3_c00412{word-spacing:-16.128000pt;}
.ws0_c00412{word-spacing:-16.064000pt;}
.ws1_c00412{word-spacing:-16.000000pt;}
.ws5_c00412{word-spacing:-15.936000pt;}
.ws2_c00412{word-spacing:-15.872000pt;}
.ws6_c00412{word-spacing:-15.808000pt;}
.ws8_c00412{word-spacing:-15.680000pt;}
.ws4_c00412{word-spacing:-0.576000pt;}
.ws30_c00412{word-spacing:-0.448000pt;}
.ws22_c00412{word-spacing:-0.320000pt;}
.ws1b_c00412{word-spacing:-0.128000pt;}
.wsb_c00412{word-spacing:-0.117120pt;}
.ws18_c00412{word-spacing:-0.064000pt;}
.wsa_c00412{word-spacing:0.000000pt;}
.ws32_c00412{word-spacing:0.064000pt;}
.ws2f_c00412{word-spacing:0.320000pt;}
.ws7_c00412{word-spacing:0.384000pt;}
.ws26_c00412{word-spacing:0.640000pt;}
.ws25_c00412{word-spacing:0.768000pt;}
.ws27_c00412{word-spacing:1.280000pt;}
.ws9_c00412{word-spacing:1.408000pt;}
.ws33_c00412{word-spacing:1.600000pt;}
.ws1c_c00412{word-spacing:2.560000pt;}
.ws19_c00412{word-spacing:3.200000pt;}
.ws2d_c00412{word-spacing:3.776000pt;}
.ws2c_c00412{word-spacing:4.096000pt;}
.ws2b_c00412{word-spacing:4.160000pt;}
.ws11_c00412{word-spacing:4.480000pt;}
.wse_c00412{word-spacing:4.864000pt;}
.wsd_c00412{word-spacing:5.120000pt;}
.ws20_c00412{word-spacing:5.760000pt;}
.ws21_c00412{word-spacing:6.080000pt;}
.ws31_c00412{word-spacing:6.208000pt;}
.ws24_c00412{word-spacing:6.336000pt;}
.ws23_c00412{word-spacing:6.400000pt;}
.wsc_c00412{word-spacing:7.680000pt;}
.ws2a_c00412{word-spacing:7.808000pt;}
.ws17_c00412{word-spacing:8.000000pt;}
.wsf_c00412{word-spacing:9.280000pt;}
.ws2e_c00412{word-spacing:10.240000pt;}
.ws1f_c00412{word-spacing:10.432000pt;}
.ws1e_c00412{word-spacing:10.496000pt;}
.ws28_c00412{word-spacing:11.776000pt;}
.ws29_c00412{word-spacing:11.840000pt;}
.ws12_c00412{word-spacing:13.376000pt;}
.ws13_c00412{word-spacing:13.440000pt;}
.ws10_c00412{word-spacing:20.480000pt;}
.ws16_c00412{word-spacing:22.656000pt;}
.ws14_c00412{word-spacing:23.040000pt;}
.ws15_c00412{word-spacing:23.296000pt;}
.ws1d_c00412{word-spacing:28.480000pt;}
.ws1a_c00412{word-spacing:34.240000pt;}
._1_c00412{margin-left:-1.088000pt;}
._0_c00412{width:0.936960pt;}
.fs1_c00412{font-size:58.560000pt;}
.fs0_c00412{font-size:64.000000pt;}
.y0_c00412{bottom:0.000000pt;}
.y1_c00412{bottom:54.887600pt;}
.y19_c00412{bottom:166.999467pt;}
.y18_c00412{bottom:203.799467pt;}
.y17_c00412{bottom:240.599467pt;}
.y16_c00412{bottom:277.399467pt;}
.y15_c00412{bottom:314.199467pt;}
.y14_c00412{bottom:350.999467pt;}
.y13_c00412{bottom:387.799467pt;}
.y12_c00412{bottom:424.599467pt;}
.y11_c00412{bottom:461.399467pt;}
.y10_c00412{bottom:498.199467pt;}
.yf_c00412{bottom:534.999467pt;}
.ye_c00412{bottom:571.799467pt;}
.y1b_c00412{bottom:608.599467pt;}
.yd_c00412{bottom:645.399467pt;}
.yc_c00412{bottom:682.199467pt;}
.yb_c00412{bottom:718.919467pt;}
.ya_c00412{bottom:755.719467pt;}
.y9_c00412{bottom:792.519467pt;}
.y8_c00412{bottom:829.319467pt;}
.y7_c00412{bottom:866.119467pt;}
.y6_c00412{bottom:902.919467pt;}
.y5_c00412{bottom:939.719467pt;}
.y4_c00412{bottom:976.519467pt;}
.y3_c00412{bottom:1013.319467pt;}
.y1a_c00412{bottom:1043.480107pt;}
.y2_c00412{bottom:1061.399467pt;}
.h2_c00412{height:44.800000pt;}
.h3_c00412{height:48.294844pt;}
.h5_c00412{height:68.288000pt;}
.h4_c00412{height:69.376000pt;}
.h0_c00412{height:1122.520000pt;}
.h1_c00412{height:1122.666667pt;}
.w2_c00412{width:0.000000pt;}
.w3_c00412{width:0.058667pt;}
.w0_c00412{width:793.701333pt;}
.w1_c00412{width:794.000000pt;}
.x1_c00412{left:-745.700800pt;}
.x2_c00412{left:-680.260800pt;}
.x3_c00412{left:-632.980800pt;}
.x0_c00412{left:0.000000pt;}
.x5_c00412{left:113.440000pt;}
.x6_c00412{left:160.720000pt;}
.x4_c00412{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00413;src:url('chunks/assets/font_f38de7ff7a9723afc76a4005.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_786f5a1d63f5a6b3cdfa8436.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00413;src:url('chunks/assets/font_99fa5ac4c55c3a479b934e21.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.lsf_c00413{letter-spacing:-0.648000px;}
.lsb_c00413{letter-spacing:-0.360000px;}
.lsc_c00413{letter-spacing:-0.216000px;}
.lsd_c00413{letter-spacing:-0.144000px;}
.lse_c00413{letter-spacing:-0.072000px;}
.lsa_c00413{letter-spacing:0.000000px;}
.ls1_c00413{letter-spacing:0.072000px;}
.ls4_c00413{letter-spacing:0.144000px;}
.ls9_c00413{letter-spacing:17.640000px;}
.ls5_c00413{letter-spacing:17.985600px;}
.ls2_c00413{letter-spacing:18.000000px;}
.ls6_c00413{letter-spacing:20.160000px;}
.ls3_c00413{letter-spacing:21.600000px;}
.ls8_c00413{letter-spacing:25.920000px;}
.ls7_c00413{letter-spacing:28.440000px;}
.ls0_c00413{letter-spacing:34.560000px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00413{word-spacing:-18.144000px;}
.ws1_c00413{word-spacing:-18.072000px;}
.ws0_c00413{word-spacing:-18.000000px;}
.ws6_c00413{word-spacing:-17.928000px;}
.ws3_c00413{word-spacing:-17.856000px;}
.ws5_c00413{word-spacing:-17.784000px;}
.ws2_c00413{word-spacing:-17.640000px;}
.ws7_c00413{word-spacing:-17.352000px;}
.ws1a_c00413{word-spacing:-0.360000px;}
.ws12_c00413{word-spacing:-0.144000px;}
.ws9_c00413{word-spacing:-0.131760px;}
.ws13_c00413{word-spacing:-0.072000px;}
.ws8_c00413{word-spacing:0.000000px;}
.ws16_c00413{word-spacing:0.144000px;}
.ws18_c00413{word-spacing:2.520000px;}
.wsc_c00413{word-spacing:3.168000px;}
.wsb_c00413{word-spacing:3.240000px;}
.wsf_c00413{word-spacing:3.960000px;}
.wsd_c00413{word-spacing:4.392000px;}
.wse_c00413{word-spacing:4.680000px;}
.ws1f_c00413{word-spacing:5.688000px;}
.ws19_c00413{word-spacing:5.760000px;}
.ws1e_c00413{word-spacing:6.048000px;}
.ws20_c00413{word-spacing:6.120000px;}
.ws10_c00413{word-spacing:6.480000px;}
.ws14_c00413{word-spacing:7.920000px;}
.ws1b_c00413{word-spacing:10.440000px;}
.ws1c_c00413{word-spacing:10.800000px;}
.ws11_c00413{word-spacing:14.040000px;}
.wsa_c00413{word-spacing:16.560000px;}
.ws1d_c00413{word-spacing:20.880000px;}
.ws17_c00413{word-spacing:28.368000px;}
.ws15_c00413{word-spacing:36.360000px;}
._1_c00413{margin-left:-1.065600px;}
._0_c00413{width:1.054080px;}
._2_c00413{width:13.305600px;}
.fc1_c00413{color:rgb(0,0,0);}
.fc0_c00413{color:rgb(35,31,32);}
.fs1_c00413{font-size:65.880000px;}
.fs0_c00413{font-size:72.000000px;}
.y0_c00413{bottom:0.000000px;}
.y1_c00413{bottom:61.748550px;}
.y19_c00413{bottom:229.274400px;}
.y18_c00413{bottom:270.674400px;}
.y17_c00413{bottom:312.074400px;}
.y16_c00413{bottom:353.474400px;}
.y15_c00413{bottom:394.874400px;}
.y14_c00413{bottom:436.274400px;}
.y13_c00413{bottom:477.674400px;}
.y12_c00413{bottom:519.074400px;}
.y11_c00413{bottom:560.474400px;}
.y10_c00413{bottom:601.874400px;}
.yf_c00413{bottom:643.184400px;}
.ye_c00413{bottom:684.674400px;}
.yd_c00413{bottom:726.074400px;}
.yc_c00413{bottom:767.474400px;}
.yb_c00413{bottom:808.784400px;}
.ya_c00413{bottom:850.184400px;}
.y9_c00413{bottom:891.584400px;}
.y8_c00413{bottom:932.984400px;}
.y7_c00413{bottom:974.384400px;}
.y6_c00413{bottom:1015.784400px;}
.y5_c00413{bottom:1057.184400px;}
.y4_c00413{bottom:1098.584400px;}
.y3_c00413{bottom:1139.984400px;}
.y2_c00413{bottom:1194.074400px;}
.h2_c00413{height:50.400000px;}
.h3_c00413{height:54.331699px;}
.h4_c00413{height:76.824000px;}
.h5_c00413{height:78.048000px;}
.h0_c00413{height:1262.835000px;}
.h1_c00413{height:1263.000000px;}
.w0_c00413{width:892.914000px;}
.w1_c00413{width:893.250000px;}
.x0_c00413{left:0.000000px;}
.x1_c00413{left:54.000000px;}
.x2_c00413{left:127.620000px;}
.x3_c00413{left:180.810000px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.lsf_c00413{letter-spacing:-0.576000pt;}
.lsb_c00413{letter-spacing:-0.320000pt;}
.lsc_c00413{letter-spacing:-0.192000pt;}
.lsd_c00413{letter-spacing:-0.128000pt;}
.lse_c00413{letter-spacing:-0.064000pt;}
.lsa_c00413{letter-spacing:0.000000pt;}
.ls1_c00413{letter-spacing:0.064000pt;}
.ls4_c00413{letter-spacing:0.128000pt;}
.ls9_c00413{letter-spacing:15.680000pt;}
.ls5_c00413{letter-spacing:15.987200pt;}
.ls2_c00413{letter-spacing:16.000000pt;}
.ls6_c00413{letter-spacing:17.920000pt;}
.ls3_c00413{letter-spacing:19.200000pt;}
.ls8_c00413{letter-spacing:23.040000pt;}
.ls7_c00413{letter-spacing:25.280000pt;}
.ls0_c00413{letter-spacing:30.720000pt;}
.ws4_c00413{word-spacing:-16.128000pt;}
.ws1_c00413{word-spacing:-16.064000pt;}
.ws0_c00413{word-spacing:-16.000000pt;}
.ws6_c00413{word-spacing:-15.936000pt;}
.ws3_c00413{word-spacing:-15.872000pt;}
.ws5_c00413{word-spacing:-15.808000pt;}
.ws2_c00413{word-spacing:-15.680000pt;}
.ws7_c00413{word-spacing:-15.424000pt;}
.ws1a_c00413{word-spacing:-0.320000pt;}
.ws12_c00413{word-spacing:-0.128000pt;}
.ws9_c00413{word-spacing:-0.117120pt;}
.ws13_c00413{word-spacing:-0.064000pt;}
.ws8_c00413{word-spacing:0.000000pt;}
.ws16_c00413{word-spacing:0.128000pt;}
.ws18_c00413{word-spacing:2.240000pt;}
.wsc_c00413{word-spacing:2.816000pt;}
.wsb_c00413{word-spacing:2.880000pt;}
.wsf_c00413{word-spacing:3.520000pt;}
.wsd_c00413{word-spacing:3.904000pt;}
.wse_c00413{word-spacing:4.160000pt;}
.ws1f_c00413{word-spacing:5.056000pt;}
.ws19_c00413{word-spacing:5.120000pt;}
.ws1e_c00413{word-spacing:5.376000pt;}
.ws20_c00413{word-spacing:5.440000pt;}
.ws10_c00413{word-spacing:5.760000pt;}
.ws14_c00413{word-spacing:7.040000pt;}
.ws1b_c00413{word-spacing:9.280000pt;}
.ws1c_c00413{word-spacing:9.600000pt;}
.ws11_c00413{word-spacing:12.480000pt;}
.wsa_c00413{word-spacing:14.720000pt;}
.ws1d_c00413{word-spacing:18.560000pt;}
.ws17_c00413{word-spacing:25.216000pt;}
.ws15_c00413{word-spacing:32.320000pt;}
._1_c00413{margin-left:-0.947200pt;}
._0_c00413{width:0.936960pt;}
._2_c00413{width:11.827200pt;}
.fs1_c00413{font-size:58.560000pt;}
.fs0_c00413{font-size:64.000000pt;}
.y0_c00413{bottom:0.000000pt;}
.y1_c00413{bottom:54.887600pt;}
.y19_c00413{bottom:203.799467pt;}
.y18_c00413{bottom:240.599467pt;}
.y17_c00413{bottom:277.399467pt;}
.y16_c00413{bottom:314.199467pt;}
.y15_c00413{bottom:350.999467pt;}
.y14_c00413{bottom:387.799467pt;}
.y13_c00413{bottom:424.599467pt;}
.y12_c00413{bottom:461.399467pt;}
.y11_c00413{bottom:498.199467pt;}
.y10_c00413{bottom:534.999467pt;}
.yf_c00413{bottom:571.719467pt;}
.ye_c00413{bottom:608.599467pt;}
.yd_c00413{bottom:645.399467pt;}
.yc_c00413{bottom:682.199467pt;}
.yb_c00413{bottom:718.919467pt;}
.ya_c00413{bottom:755.719467pt;}
.y9_c00413{bottom:792.519467pt;}
.y8_c00413{bottom:829.319467pt;}
.y7_c00413{bottom:866.119467pt;}
.y6_c00413{bottom:902.919467pt;}
.y5_c00413{bottom:939.719467pt;}
.y4_c00413{bottom:976.519467pt;}
.y3_c00413{bottom:1013.319467pt;}
.y2_c00413{bottom:1061.399467pt;}
.h2_c00413{height:44.800000pt;}
.h3_c00413{height:48.294844pt;}
.h4_c00413{height:68.288000pt;}
.h5_c00413{height:69.376000pt;}
.h0_c00413{height:1122.520000pt;}
.h1_c00413{height:1122.666667pt;}
.w0_c00413{width:793.701333pt;}
.w1_c00413{width:794.000000pt;}
.x0_c00413{left:0.000000pt;}
.x1_c00413{left:48.000000pt;}
.x2_c00413{left:113.440000pt;}
.x3_c00413{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00414;src:url('chunks/assets/font_2b73062c33ecbe660baeb72b.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_b38c4dbf6c391f034091a771.woff2')format("woff");}.ff3_c00414{font-family:ff3_c00414;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00414;src:url('chunks/assets/font_7b7baa00587439cbf1f0cf7b.woff2')format("woff");}.ff4_c00414{font-family:ff4_c00414;line-height:1.592000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00414{font-family:ff5_c00414;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00414;src:url('chunks/assets/font_795f0272ffd53151b429dc88.woff2')format("woff");}.ff6_c00414{font-family:ff6_c00414;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00414;src:url('chunks/assets/font_7e19eca242976c4688cb32c0.woff2')format("woff");}.ff7_c00414{font-family:ff7_c00414;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00414;src:url('chunks/assets/font_405a0a9947a896384079f365.woff2')format("woff");}.ff8_c00414{font-family:ff8_c00414;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.ls13_c00414{letter-spacing:-0.648000px;}
.ls14_c00414{letter-spacing:-0.432000px;}
.lsf_c00414{letter-spacing:-0.360000px;}
.ls15_c00414{letter-spacing:-0.288000px;}
.ls10_c00414{letter-spacing:-0.216000px;}
.ls11_c00414{letter-spacing:-0.144000px;}
.ls12_c00414{letter-spacing:-0.072000px;}
.lse_c00414{letter-spacing:0.000000px;}
.ls1_c00414{letter-spacing:0.072000px;}
.ls4_c00414{letter-spacing:0.144000px;}
.ls9_c00414{letter-spacing:17.640000px;}
.ls5_c00414{letter-spacing:17.985600px;}
.ls2_c00414{letter-spacing:18.000000px;}
.ls6_c00414{letter-spacing:20.160000px;}
.ls3_c00414{letter-spacing:21.600000px;}
.lsa_c00414{letter-spacing:22.320000px;}
.lsc_c00414{letter-spacing:24.480000px;}
.ls8_c00414{letter-spacing:25.920000px;}
.lsb_c00414{letter-spacing:28.080000px;}
.ls7_c00414{letter-spacing:28.440000px;}
.lsd_c00414{letter-spacing:29.880000px;}
.ls0_c00414{letter-spacing:34.560000px;}
.sc__c00414{text-shadow:none;}
.sc0_c00414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00414{-webkit-text-stroke:0px transparent;}
.sc0_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00414{word-spacing:-18.144000px;}
.ws1_c00414{word-spacing:-18.072000px;}
.ws0_c00414{word-spacing:-18.000000px;}
.ws6_c00414{word-spacing:-17.928000px;}
.ws3_c00414{word-spacing:-17.856000px;}
.ws5_c00414{word-spacing:-17.784000px;}
.wsb_c00414{word-spacing:-17.712000px;}
.ws2_c00414{word-spacing:-17.640000px;}
.wsa_c00414{word-spacing:-17.568000px;}
.ws7_c00414{word-spacing:-17.352000px;}
.ws1e_c00414{word-spacing:-0.360000px;}
.ws16_c00414{word-spacing:-0.144000px;}
.wsd_c00414{word-spacing:-0.131760px;}
.ws17_c00414{word-spacing:-0.072000px;}
.wsc_c00414{word-spacing:0.000000px;}
.ws1a_c00414{word-spacing:0.144000px;}
.ws28_c00414{word-spacing:0.360000px;}
.ws2d_c00414{word-spacing:1.080000px;}
.ws2e_c00414{word-spacing:1.440000px;}
.ws32_c00414{word-spacing:2.160000px;}
.ws1c_c00414{word-spacing:2.520000px;}
.ws10_c00414{word-spacing:3.168000px;}
.wsf_c00414{word-spacing:3.240000px;}
.ws13_c00414{word-spacing:3.960000px;}
.ws26_c00414{word-spacing:4.248000px;}
.ws27_c00414{word-spacing:4.320000px;}
.ws11_c00414{word-spacing:4.392000px;}
.ws12_c00414{word-spacing:4.680000px;}
.ws23_c00414{word-spacing:5.688000px;}
.ws1d_c00414{word-spacing:5.760000px;}
.ws22_c00414{word-spacing:6.048000px;}
.ws24_c00414{word-spacing:6.120000px;}
.ws2c_c00414{word-spacing:6.408000px;}
.ws14_c00414{word-spacing:6.480000px;}
.ws2a_c00414{word-spacing:7.416000px;}
.ws2b_c00414{word-spacing:7.848000px;}
.ws18_c00414{word-spacing:7.920000px;}
.ws30_c00414{word-spacing:10.080000px;}
.ws1f_c00414{word-spacing:10.440000px;}
.ws20_c00414{word-spacing:10.800000px;}
.ws9_c00414{word-spacing:11.520000px;}
.ws34_c00414{word-spacing:11.880000px;}
.ws15_c00414{word-spacing:14.040000px;}
.wse_c00414{word-spacing:16.560000px;}
.ws21_c00414{word-spacing:20.880000px;}
.ws33_c00414{word-spacing:23.688000px;}
.ws8_c00414{word-spacing:24.472800px;}
.ws25_c00414{word-spacing:24.480000px;}
.ws31_c00414{word-spacing:25.488000px;}
.ws29_c00414{word-spacing:28.008000px;}
.ws1b_c00414{word-spacing:28.368000px;}
.ws19_c00414{word-spacing:36.360000px;}
.ws2f_c00414{word-spacing:38.520000px;}
._1_c00414{margin-left:-1.065600px;}
._0_c00414{width:1.054080px;}
._3_c00414{width:6.480000px;}
._4_c00414{width:10.224000px;}
._2_c00414{width:13.305600px;}
.fc2_c00414{color:transparent;}
.fc1_c00414{color:rgb(0,0,0);}
.fc0_c00414{color:rgb(35,31,32);}
.fs1_c00414{font-size:65.880000px;}
.fs0_c00414{font-size:72.000000px;}
.y0_c00414{bottom:0.000000px;}
.y1_c00414{bottom:61.748550px;}
.y1c_c00414{bottom:187.874400px;}
.y19_c00414{bottom:229.274400px;}
.y18_c00414{bottom:270.674400px;}
.y17_c00414{bottom:312.074400px;}
.y16_c00414{bottom:353.474400px;}
.y15_c00414{bottom:394.874400px;}
.y14_c00414{bottom:436.274400px;}
.y13_c00414{bottom:477.674400px;}
.y12_c00414{bottom:519.074400px;}
.y11_c00414{bottom:560.474400px;}
.y10_c00414{bottom:601.874400px;}
.yf_c00414{bottom:643.184400px;}
.y1b_c00414{bottom:643.274400px;}
.ye_c00414{bottom:684.674400px;}
.yd_c00414{bottom:726.074400px;}
.yc_c00414{bottom:767.474400px;}
.yb_c00414{bottom:808.784400px;}
.ya_c00414{bottom:850.184400px;}
.y9_c00414{bottom:891.584400px;}
.y8_c00414{bottom:932.984400px;}
.y7_c00414{bottom:974.384400px;}
.y6_c00414{bottom:1015.784400px;}
.y5_c00414{bottom:1057.184400px;}
.y4_c00414{bottom:1098.584400px;}
.y3_c00414{bottom:1139.984400px;}
.y1a_c00414{bottom:1173.915120px;}
.y2_c00414{bottom:1194.074400px;}
.h2_c00414{height:50.400000px;}
.h3_c00414{height:54.331699px;}
.h4_c00414{height:76.824000px;}
.h5_c00414{height:78.048000px;}
.h0_c00414{height:1262.835000px;}
.h1_c00414{height:1263.000000px;}
.w2_c00414{width:0.000000px;}
.w3_c00414{width:0.066000px;}
.w0_c00414{width:892.914000px;}
.w1_c00414{width:893.250000px;}
.x1_c00414{left:-838.913400px;}
.x2_c00414{left:-765.293400px;}
.x3_c00414{left:-712.103400px;}
.x0_c00414{left:0.000000px;}
.x5_c00414{left:127.620000px;}
.x6_c00414{left:180.810000px;}
.x4_c00414{left:804.366150px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls13_c00414{letter-spacing:-0.576000pt;}
.ls14_c00414{letter-spacing:-0.384000pt;}
.lsf_c00414{letter-spacing:-0.320000pt;}
.ls15_c00414{letter-spacing:-0.256000pt;}
.ls10_c00414{letter-spacing:-0.192000pt;}
.ls11_c00414{letter-spacing:-0.128000pt;}
.ls12_c00414{letter-spacing:-0.064000pt;}
.lse_c00414{letter-spacing:0.000000pt;}
.ls1_c00414{letter-spacing:0.064000pt;}
.ls4_c00414{letter-spacing:0.128000pt;}
.ls9_c00414{letter-spacing:15.680000pt;}
.ls5_c00414{letter-spacing:15.987200pt;}
.ls2_c00414{letter-spacing:16.000000pt;}
.ls6_c00414{letter-spacing:17.920000pt;}
.ls3_c00414{letter-spacing:19.200000pt;}
.lsa_c00414{letter-spacing:19.840000pt;}
.lsc_c00414{letter-spacing:21.760000pt;}
.ls8_c00414{letter-spacing:23.040000pt;}
.lsb_c00414{letter-spacing:24.960000pt;}
.ls7_c00414{letter-spacing:25.280000pt;}
.lsd_c00414{letter-spacing:26.560000pt;}
.ls0_c00414{letter-spacing:30.720000pt;}
.ws4_c00414{word-spacing:-16.128000pt;}
.ws1_c00414{word-spacing:-16.064000pt;}
.ws0_c00414{word-spacing:-16.000000pt;}
.ws6_c00414{word-spacing:-15.936000pt;}
.ws3_c00414{word-spacing:-15.872000pt;}
.ws5_c00414{word-spacing:-15.808000pt;}
.wsb_c00414{word-spacing:-15.744000pt;}
.ws2_c00414{word-spacing:-15.680000pt;}
.wsa_c00414{word-spacing:-15.616000pt;}
.ws7_c00414{word-spacing:-15.424000pt;}
.ws1e_c00414{word-spacing:-0.320000pt;}
.ws16_c00414{word-spacing:-0.128000pt;}
.wsd_c00414{word-spacing:-0.117120pt;}
.ws17_c00414{word-spacing:-0.064000pt;}
.wsc_c00414{word-spacing:0.000000pt;}
.ws1a_c00414{word-spacing:0.128000pt;}
.ws28_c00414{word-spacing:0.320000pt;}
.ws2d_c00414{word-spacing:0.960000pt;}
.ws2e_c00414{word-spacing:1.280000pt;}
.ws32_c00414{word-spacing:1.920000pt;}
.ws1c_c00414{word-spacing:2.240000pt;}
.ws10_c00414{word-spacing:2.816000pt;}
.wsf_c00414{word-spacing:2.880000pt;}
.ws13_c00414{word-spacing:3.520000pt;}
.ws26_c00414{word-spacing:3.776000pt;}
.ws27_c00414{word-spacing:3.840000pt;}
.ws11_c00414{word-spacing:3.904000pt;}
.ws12_c00414{word-spacing:4.160000pt;}
.ws23_c00414{word-spacing:5.056000pt;}
.ws1d_c00414{word-spacing:5.120000pt;}
.ws22_c00414{word-spacing:5.376000pt;}
.ws24_c00414{word-spacing:5.440000pt;}
.ws2c_c00414{word-spacing:5.696000pt;}
.ws14_c00414{word-spacing:5.760000pt;}
.ws2a_c00414{word-spacing:6.592000pt;}
.ws2b_c00414{word-spacing:6.976000pt;}
.ws18_c00414{word-spacing:7.040000pt;}
.ws30_c00414{word-spacing:8.960000pt;}
.ws1f_c00414{word-spacing:9.280000pt;}
.ws20_c00414{word-spacing:9.600000pt;}
.ws9_c00414{word-spacing:10.240000pt;}
.ws34_c00414{word-spacing:10.560000pt;}
.ws15_c00414{word-spacing:12.480000pt;}
.wse_c00414{word-spacing:14.720000pt;}
.ws21_c00414{word-spacing:18.560000pt;}
.ws33_c00414{word-spacing:21.056000pt;}
.ws8_c00414{word-spacing:21.753600pt;}
.ws25_c00414{word-spacing:21.760000pt;}
.ws31_c00414{word-spacing:22.656000pt;}
.ws29_c00414{word-spacing:24.896000pt;}
.ws1b_c00414{word-spacing:25.216000pt;}
.ws19_c00414{word-spacing:32.320000pt;}
.ws2f_c00414{word-spacing:34.240000pt;}
._1_c00414{margin-left:-0.947200pt;}
._0_c00414{width:0.936960pt;}
._3_c00414{width:5.760000pt;}
._4_c00414{width:9.088000pt;}
._2_c00414{width:11.827200pt;}
.fs1_c00414{font-size:58.560000pt;}
.fs0_c00414{font-size:64.000000pt;}
.y0_c00414{bottom:0.000000pt;}
.y1_c00414{bottom:54.887600pt;}
.y1c_c00414{bottom:166.999467pt;}
.y19_c00414{bottom:203.799467pt;}
.y18_c00414{bottom:240.599467pt;}
.y17_c00414{bottom:277.399467pt;}
.y16_c00414{bottom:314.199467pt;}
.y15_c00414{bottom:350.999467pt;}
.y14_c00414{bottom:387.799467pt;}
.y13_c00414{bottom:424.599467pt;}
.y12_c00414{bottom:461.399467pt;}
.y11_c00414{bottom:498.199467pt;}
.y10_c00414{bottom:534.999467pt;}
.yf_c00414{bottom:571.719467pt;}
.y1b_c00414{bottom:571.799467pt;}
.ye_c00414{bottom:608.599467pt;}
.yd_c00414{bottom:645.399467pt;}
.yc_c00414{bottom:682.199467pt;}
.yb_c00414{bottom:718.919467pt;}
.ya_c00414{bottom:755.719467pt;}
.y9_c00414{bottom:792.519467pt;}
.y8_c00414{bottom:829.319467pt;}
.y7_c00414{bottom:866.119467pt;}
.y6_c00414{bottom:902.919467pt;}
.y5_c00414{bottom:939.719467pt;}
.y4_c00414{bottom:976.519467pt;}
.y3_c00414{bottom:1013.319467pt;}
.y1a_c00414{bottom:1043.480107pt;}
.y2_c00414{bottom:1061.399467pt;}
.h2_c00414{height:44.800000pt;}
.h3_c00414{height:48.294844pt;}
.h4_c00414{height:68.288000pt;}
.h5_c00414{height:69.376000pt;}
.h0_c00414{height:1122.520000pt;}
.h1_c00414{height:1122.666667pt;}
.w2_c00414{width:0.000000pt;}
.w3_c00414{width:0.058667pt;}
.w0_c00414{width:793.701333pt;}
.w1_c00414{width:794.000000pt;}
.x1_c00414{left:-745.700800pt;}
.x2_c00414{left:-680.260800pt;}
.x3_c00414{left:-632.980800pt;}
.x0_c00414{left:0.000000pt;}
.x5_c00414{left:113.440000pt;}
.x6_c00414{left:160.720000pt;}
.x4_c00414{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00415;src:url('chunks/assets/font_6f39a4a37c1018fd3d743305.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_e8a24b6bed6903e3db3e05e7.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00415;src:url('chunks/assets/font_ea864f57b1aef2c73095dcd3.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c00415{letter-spacing:-0.360000px;}
.ls8_c00415{letter-spacing:-0.216000px;}
.lsa_c00415{letter-spacing:-0.144000px;}
.ls7_c00415{letter-spacing:0.000000px;}
.ls0_c00415{letter-spacing:0.072000px;}
.ls4_c00415{letter-spacing:0.144000px;}
.ls5_c00415{letter-spacing:17.640000px;}
.ls2_c00415{letter-spacing:19.800000px;}
.ls6_c00415{letter-spacing:22.312800px;}
.ls1_c00415{letter-spacing:23.040000px;}
.ls3_c00415{letter-spacing:51.120000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00415{word-spacing:-18.072000px;}
.ws0_c00415{word-spacing:-18.000000px;}
.ws5_c00415{word-spacing:-17.856000px;}
.ws1_c00415{word-spacing:-17.784000px;}
.ws3_c00415{word-spacing:-17.640000px;}
.wsf_c00415{word-spacing:-0.504000px;}
.wsd_c00415{word-spacing:-0.360000px;}
.ws8_c00415{word-spacing:-0.288000px;}
.ws18_c00415{word-spacing:-0.144000px;}
.ws9_c00415{word-spacing:-0.131760px;}
.wsc_c00415{word-spacing:-0.072000px;}
.ws4_c00415{word-spacing:0.000000px;}
.ws20_c00415{word-spacing:0.288000px;}
.ws13_c00415{word-spacing:0.360000px;}
.ws1f_c00415{word-spacing:0.720000px;}
.ws7_c00415{word-spacing:1.080000px;}
.ws10_c00415{word-spacing:1.800000px;}
.ws22_c00415{word-spacing:2.520000px;}
.ws21_c00415{word-spacing:2.736000px;}
.ws1b_c00415{word-spacing:2.880000px;}
.wsa_c00415{word-spacing:3.528000px;}
.wsb_c00415{word-spacing:3.600000px;}
.ws1c_c00415{word-spacing:4.320000px;}
.ws1d_c00415{word-spacing:4.680000px;}
.wse_c00415{word-spacing:5.040000px;}
.ws16_c00415{word-spacing:9.000000px;}
.ws17_c00415{word-spacing:9.360000px;}
.ws11_c00415{word-spacing:10.368000px;}
.ws15_c00415{word-spacing:16.488000px;}
.ws14_c00415{word-spacing:16.560000px;}
.ws1e_c00415{word-spacing:20.448000px;}
.ws19_c00415{word-spacing:29.160000px;}
.ws1a_c00415{word-spacing:29.448000px;}
.ws6_c00415{word-spacing:29.520000px;}
.ws12_c00415{word-spacing:33.120000px;}
._1_c00415{margin-left:-1.022400px;}
._0_c00415{width:1.054080px;}
._2_c00415{width:19.872000px;}
.fc1_c00415{color:rgb(0,0,0);}
.fc0_c00415{color:rgb(35,31,32);}
.fs1_c00415{font-size:65.880000px;}
.fs0_c00415{font-size:72.000000px;}
.y0_c00415{bottom:0.000000px;}
.y1_c00415{bottom:61.748550px;}
.y19_c00415{bottom:229.274400px;}
.y18_c00415{bottom:270.674400px;}
.y17_c00415{bottom:312.074400px;}
.y16_c00415{bottom:353.474400px;}
.y15_c00415{bottom:394.874400px;}
.y14_c00415{bottom:436.274400px;}
.y13_c00415{bottom:477.674400px;}
.y12_c00415{bottom:519.074400px;}
.y11_c00415{bottom:560.474400px;}
.y10_c00415{bottom:601.874400px;}
.yf_c00415{bottom:643.274400px;}
.ye_c00415{bottom:684.674400px;}
.yd_c00415{bottom:726.074400px;}
.yc_c00415{bottom:767.474400px;}
.yb_c00415{bottom:808.784400px;}
.ya_c00415{bottom:850.184400px;}
.y9_c00415{bottom:891.584400px;}
.y8_c00415{bottom:932.984400px;}
.y7_c00415{bottom:974.384400px;}
.y6_c00415{bottom:1015.784400px;}
.y5_c00415{bottom:1057.184400px;}
.y4_c00415{bottom:1098.584400px;}
.y3_c00415{bottom:1139.984400px;}
.y2_c00415{bottom:1194.074400px;}
.h2_c00415{height:50.400000px;}
.h3_c00415{height:54.331699px;}
.h4_c00415{height:76.824000px;}
.h5_c00415{height:78.048000px;}
.h0_c00415{height:1262.835000px;}
.h1_c00415{height:1263.000000px;}
.w0_c00415{width:892.914000px;}
.w1_c00415{width:893.250000px;}
.x0_c00415{left:0.000000px;}
.x1_c00415{left:54.000000px;}
.x2_c00415{left:127.620000px;}
.x3_c00415{left:180.810000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls9_c00415{letter-spacing:-0.320000pt;}
.ls8_c00415{letter-spacing:-0.192000pt;}
.lsa_c00415{letter-spacing:-0.128000pt;}
.ls7_c00415{letter-spacing:0.000000pt;}
.ls0_c00415{letter-spacing:0.064000pt;}
.ls4_c00415{letter-spacing:0.128000pt;}
.ls5_c00415{letter-spacing:15.680000pt;}
.ls2_c00415{letter-spacing:17.600000pt;}
.ls6_c00415{letter-spacing:19.833600pt;}
.ls1_c00415{letter-spacing:20.480000pt;}
.ls3_c00415{letter-spacing:45.440000pt;}
.ws2_c00415{word-spacing:-16.064000pt;}
.ws0_c00415{word-spacing:-16.000000pt;}
.ws5_c00415{word-spacing:-15.872000pt;}
.ws1_c00415{word-spacing:-15.808000pt;}
.ws3_c00415{word-spacing:-15.680000pt;}
.wsf_c00415{word-spacing:-0.448000pt;}
.wsd_c00415{word-spacing:-0.320000pt;}
.ws8_c00415{word-spacing:-0.256000pt;}
.ws18_c00415{word-spacing:-0.128000pt;}
.ws9_c00415{word-spacing:-0.117120pt;}
.wsc_c00415{word-spacing:-0.064000pt;}
.ws4_c00415{word-spacing:0.000000pt;}
.ws20_c00415{word-spacing:0.256000pt;}
.ws13_c00415{word-spacing:0.320000pt;}
.ws1f_c00415{word-spacing:0.640000pt;}
.ws7_c00415{word-spacing:0.960000pt;}
.ws10_c00415{word-spacing:1.600000pt;}
.ws22_c00415{word-spacing:2.240000pt;}
.ws21_c00415{word-spacing:2.432000pt;}
.ws1b_c00415{word-spacing:2.560000pt;}
.wsa_c00415{word-spacing:3.136000pt;}
.wsb_c00415{word-spacing:3.200000pt;}
.ws1c_c00415{word-spacing:3.840000pt;}
.ws1d_c00415{word-spacing:4.160000pt;}
.wse_c00415{word-spacing:4.480000pt;}
.ws16_c00415{word-spacing:8.000000pt;}
.ws17_c00415{word-spacing:8.320000pt;}
.ws11_c00415{word-spacing:9.216000pt;}
.ws15_c00415{word-spacing:14.656000pt;}
.ws14_c00415{word-spacing:14.720000pt;}
.ws1e_c00415{word-spacing:18.176000pt;}
.ws19_c00415{word-spacing:25.920000pt;}
.ws1a_c00415{word-spacing:26.176000pt;}
.ws6_c00415{word-spacing:26.240000pt;}
.ws12_c00415{word-spacing:29.440000pt;}
._1_c00415{margin-left:-0.908800pt;}
._0_c00415{width:0.936960pt;}
._2_c00415{width:17.664000pt;}
.fs1_c00415{font-size:58.560000pt;}
.fs0_c00415{font-size:64.000000pt;}
.y0_c00415{bottom:0.000000pt;}
.y1_c00415{bottom:54.887600pt;}
.y19_c00415{bottom:203.799467pt;}
.y18_c00415{bottom:240.599467pt;}
.y17_c00415{bottom:277.399467pt;}
.y16_c00415{bottom:314.199467pt;}
.y15_c00415{bottom:350.999467pt;}
.y14_c00415{bottom:387.799467pt;}
.y13_c00415{bottom:424.599467pt;}
.y12_c00415{bottom:461.399467pt;}
.y11_c00415{bottom:498.199467pt;}
.y10_c00415{bottom:534.999467pt;}
.yf_c00415{bottom:571.799467pt;}
.ye_c00415{bottom:608.599467pt;}
.yd_c00415{bottom:645.399467pt;}
.yc_c00415{bottom:682.199467pt;}
.yb_c00415{bottom:718.919467pt;}
.ya_c00415{bottom:755.719467pt;}
.y9_c00415{bottom:792.519467pt;}
.y8_c00415{bottom:829.319467pt;}
.y7_c00415{bottom:866.119467pt;}
.y6_c00415{bottom:902.919467pt;}
.y5_c00415{bottom:939.719467pt;}
.y4_c00415{bottom:976.519467pt;}
.y3_c00415{bottom:1013.319467pt;}
.y2_c00415{bottom:1061.399467pt;}
.h2_c00415{height:44.800000pt;}
.h3_c00415{height:48.294844pt;}
.h4_c00415{height:68.288000pt;}
.h5_c00415{height:69.376000pt;}
.h0_c00415{height:1122.520000pt;}
.h1_c00415{height:1122.666667pt;}
.w0_c00415{width:793.701333pt;}
.w1_c00415{width:794.000000pt;}
.x0_c00415{left:0.000000pt;}
.x1_c00415{left:48.000000pt;}
.x2_c00415{left:113.440000pt;}
.x3_c00415{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00416;src:url('chunks/assets/font_5c83cb6c800e4b68cd2d0424.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_1abe6a3c52e95e0e4e7098b0.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00416;src:url('chunks/assets/font_61a5c454cea2d4e68ef83306.woff2')format("woff");}.ff4_c00416{font-family:ff4_c00416;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00416;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00416{font-family:ff5_c00416;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00416;src:url('chunks/assets/font_313730d79d6bac0ba4eaa82b.woff2')format("woff");}.ff6_c00416{font-family:ff6_c00416;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00416;src:url('chunks/assets/font_8f87b222c53cf16ea9c8ee14.woff2')format("woff");}.ff7_c00416{font-family:ff7_c00416;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00416;src:url('chunks/assets/font_72c4fe8d70040d8071a3d067.woff2')format("woff");}.ff8_c00416{font-family:ff8_c00416;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00416{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.lsc_c00416{letter-spacing:-0.360000px;}
.lsb_c00416{letter-spacing:-0.216000px;}
.lsd_c00416{letter-spacing:-0.144000px;}
.lse_c00416{letter-spacing:-0.072000px;}
.lsa_c00416{letter-spacing:0.000000px;}
.ls0_c00416{letter-spacing:0.072000px;}
.ls4_c00416{letter-spacing:0.144000px;}
.ls5_c00416{letter-spacing:17.640000px;}
.ls9_c00416{letter-spacing:17.985600px;}
.ls2_c00416{letter-spacing:19.800000px;}
.ls7_c00416{letter-spacing:22.305600px;}
.ls6_c00416{letter-spacing:22.312800px;}
.ls1_c00416{letter-spacing:23.040000px;}
.ls8_c00416{letter-spacing:31.694400px;}
.ls3_c00416{letter-spacing:51.120000px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00416{word-spacing:-18.072000px;}
.ws0_c00416{word-spacing:-18.000000px;}
.ws9_c00416{word-spacing:-17.928000px;}
.ws5_c00416{word-spacing:-17.856000px;}
.ws1_c00416{word-spacing:-17.784000px;}
.ws3_c00416{word-spacing:-17.640000px;}
.ws10_c00416{word-spacing:-0.504000px;}
.wse_c00416{word-spacing:-0.360000px;}
.ws8_c00416{word-spacing:-0.288000px;}
.ws19_c00416{word-spacing:-0.144000px;}
.wsa_c00416{word-spacing:-0.131760px;}
.wsd_c00416{word-spacing:-0.072000px;}
.ws4_c00416{word-spacing:0.000000px;}
.ws2a_c00416{word-spacing:0.072000px;}
.ws21_c00416{word-spacing:0.288000px;}
.ws14_c00416{word-spacing:0.360000px;}
.ws20_c00416{word-spacing:0.720000px;}
.ws7_c00416{word-spacing:1.080000px;}
.ws2f_c00416{word-spacing:1.368000px;}
.ws2e_c00416{word-spacing:1.440000px;}
.ws11_c00416{word-spacing:1.800000px;}
.ws23_c00416{word-spacing:2.520000px;}
.ws22_c00416{word-spacing:2.736000px;}
.ws1c_c00416{word-spacing:2.880000px;}
.wsb_c00416{word-spacing:3.528000px;}
.wsc_c00416{word-spacing:3.600000px;}
.ws1d_c00416{word-spacing:4.320000px;}
.ws1e_c00416{word-spacing:4.680000px;}
.wsf_c00416{word-spacing:5.040000px;}
.ws28_c00416{word-spacing:5.616000px;}
.ws27_c00416{word-spacing:5.760000px;}
.ws2c_c00416{word-spacing:8.928000px;}
.ws17_c00416{word-spacing:9.000000px;}
.ws18_c00416{word-spacing:9.360000px;}
.ws12_c00416{word-spacing:10.368000px;}
.ws30_c00416{word-spacing:12.240000px;}
.ws26_c00416{word-spacing:12.456000px;}
.ws25_c00416{word-spacing:12.600000px;}
.ws24_c00416{word-spacing:13.680000px;}
.ws2b_c00416{word-spacing:15.480000px;}
.ws16_c00416{word-spacing:16.488000px;}
.ws15_c00416{word-spacing:16.560000px;}
.ws2d_c00416{word-spacing:20.160000px;}
.ws1f_c00416{word-spacing:20.448000px;}
.ws29_c00416{word-spacing:23.760000px;}
.ws1a_c00416{word-spacing:29.160000px;}
.ws1b_c00416{word-spacing:29.448000px;}
.ws6_c00416{word-spacing:29.520000px;}
.ws32_c00416{word-spacing:32.688000px;}
.ws33_c00416{word-spacing:32.760000px;}
.ws31_c00416{word-spacing:33.048000px;}
.ws13_c00416{word-spacing:33.120000px;}
.ws35_c00416{word-spacing:42.264000px;}
.ws34_c00416{word-spacing:42.408000px;}
._1_c00416{margin-left:-1.022400px;}
._0_c00416{width:1.054080px;}
._2_c00416{width:19.872000px;}
.fc2_c00416{color:transparent;}
.fc1_c00416{color:rgb(0,0,0);}
.fc0_c00416{color:rgb(35,31,32);}
.fs1_c00416{font-size:65.880000px;}
.fs0_c00416{font-size:72.000000px;}
.y0_c00416{bottom:0.000000px;}
.y1_c00416{bottom:61.748550px;}
.y1b_c00416{bottom:187.874400px;}
.y19_c00416{bottom:229.274400px;}
.y18_c00416{bottom:270.674400px;}
.y17_c00416{bottom:312.074400px;}
.y16_c00416{bottom:353.474400px;}
.y15_c00416{bottom:394.874400px;}
.y14_c00416{bottom:436.274400px;}
.y13_c00416{bottom:477.674400px;}
.y12_c00416{bottom:519.074400px;}
.y11_c00416{bottom:560.474400px;}
.y10_c00416{bottom:601.874400px;}
.yf_c00416{bottom:643.274400px;}
.ye_c00416{bottom:684.674400px;}
.yd_c00416{bottom:726.074400px;}
.yc_c00416{bottom:767.474400px;}
.yb_c00416{bottom:808.784400px;}
.ya_c00416{bottom:850.184400px;}
.y9_c00416{bottom:891.584400px;}
.y8_c00416{bottom:932.984400px;}
.y7_c00416{bottom:974.384400px;}
.y6_c00416{bottom:1015.784400px;}
.y5_c00416{bottom:1057.184400px;}
.y4_c00416{bottom:1098.584400px;}
.y3_c00416{bottom:1139.984400px;}
.y1a_c00416{bottom:1173.915120px;}
.y2_c00416{bottom:1194.074400px;}
.h2_c00416{height:50.400000px;}
.h3_c00416{height:54.331699px;}
.h4_c00416{height:76.824000px;}
.h5_c00416{height:78.048000px;}
.h0_c00416{height:1262.835000px;}
.h1_c00416{height:1263.000000px;}
.w2_c00416{width:0.000000px;}
.w3_c00416{width:0.066000px;}
.w0_c00416{width:892.914000px;}
.w1_c00416{width:893.250000px;}
.x1_c00416{left:-838.913400px;}
.x2_c00416{left:-765.293400px;}
.x3_c00416{left:-712.103400px;}
.x0_c00416{left:0.000000px;}
.x5_c00416{left:127.620000px;}
.x6_c00416{left:180.810000px;}
.x4_c00416{left:804.366150px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.lsc_c00416{letter-spacing:-0.320000pt;}
.lsb_c00416{letter-spacing:-0.192000pt;}
.lsd_c00416{letter-spacing:-0.128000pt;}
.lse_c00416{letter-spacing:-0.064000pt;}
.lsa_c00416{letter-spacing:0.000000pt;}
.ls0_c00416{letter-spacing:0.064000pt;}
.ls4_c00416{letter-spacing:0.128000pt;}
.ls5_c00416{letter-spacing:15.680000pt;}
.ls9_c00416{letter-spacing:15.987200pt;}
.ls2_c00416{letter-spacing:17.600000pt;}
.ls7_c00416{letter-spacing:19.827200pt;}
.ls6_c00416{letter-spacing:19.833600pt;}
.ls1_c00416{letter-spacing:20.480000pt;}
.ls8_c00416{letter-spacing:28.172800pt;}
.ls3_c00416{letter-spacing:45.440000pt;}
.ws2_c00416{word-spacing:-16.064000pt;}
.ws0_c00416{word-spacing:-16.000000pt;}
.ws9_c00416{word-spacing:-15.936000pt;}
.ws5_c00416{word-spacing:-15.872000pt;}
.ws1_c00416{word-spacing:-15.808000pt;}
.ws3_c00416{word-spacing:-15.680000pt;}
.ws10_c00416{word-spacing:-0.448000pt;}
.wse_c00416{word-spacing:-0.320000pt;}
.ws8_c00416{word-spacing:-0.256000pt;}
.ws19_c00416{word-spacing:-0.128000pt;}
.wsa_c00416{word-spacing:-0.117120pt;}
.wsd_c00416{word-spacing:-0.064000pt;}
.ws4_c00416{word-spacing:0.000000pt;}
.ws2a_c00416{word-spacing:0.064000pt;}
.ws21_c00416{word-spacing:0.256000pt;}
.ws14_c00416{word-spacing:0.320000pt;}
.ws20_c00416{word-spacing:0.640000pt;}
.ws7_c00416{word-spacing:0.960000pt;}
.ws2f_c00416{word-spacing:1.216000pt;}
.ws2e_c00416{word-spacing:1.280000pt;}
.ws11_c00416{word-spacing:1.600000pt;}
.ws23_c00416{word-spacing:2.240000pt;}
.ws22_c00416{word-spacing:2.432000pt;}
.ws1c_c00416{word-spacing:2.560000pt;}
.wsb_c00416{word-spacing:3.136000pt;}
.wsc_c00416{word-spacing:3.200000pt;}
.ws1d_c00416{word-spacing:3.840000pt;}
.ws1e_c00416{word-spacing:4.160000pt;}
.wsf_c00416{word-spacing:4.480000pt;}
.ws28_c00416{word-spacing:4.992000pt;}
.ws27_c00416{word-spacing:5.120000pt;}
.ws2c_c00416{word-spacing:7.936000pt;}
.ws17_c00416{word-spacing:8.000000pt;}
.ws18_c00416{word-spacing:8.320000pt;}
.ws12_c00416{word-spacing:9.216000pt;}
.ws30_c00416{word-spacing:10.880000pt;}
.ws26_c00416{word-spacing:11.072000pt;}
.ws25_c00416{word-spacing:11.200000pt;}
.ws24_c00416{word-spacing:12.160000pt;}
.ws2b_c00416{word-spacing:13.760000pt;}
.ws16_c00416{word-spacing:14.656000pt;}
.ws15_c00416{word-spacing:14.720000pt;}
.ws2d_c00416{word-spacing:17.920000pt;}
.ws1f_c00416{word-spacing:18.176000pt;}
.ws29_c00416{word-spacing:21.120000pt;}
.ws1a_c00416{word-spacing:25.920000pt;}
.ws1b_c00416{word-spacing:26.176000pt;}
.ws6_c00416{word-spacing:26.240000pt;}
.ws32_c00416{word-spacing:29.056000pt;}
.ws33_c00416{word-spacing:29.120000pt;}
.ws31_c00416{word-spacing:29.376000pt;}
.ws13_c00416{word-spacing:29.440000pt;}
.ws35_c00416{word-spacing:37.568000pt;}
.ws34_c00416{word-spacing:37.696000pt;}
._1_c00416{margin-left:-0.908800pt;}
._0_c00416{width:0.936960pt;}
._2_c00416{width:17.664000pt;}
.fs1_c00416{font-size:58.560000pt;}
.fs0_c00416{font-size:64.000000pt;}
.y0_c00416{bottom:0.000000pt;}
.y1_c00416{bottom:54.887600pt;}
.y1b_c00416{bottom:166.999467pt;}
.y19_c00416{bottom:203.799467pt;}
.y18_c00416{bottom:240.599467pt;}
.y17_c00416{bottom:277.399467pt;}
.y16_c00416{bottom:314.199467pt;}
.y15_c00416{bottom:350.999467pt;}
.y14_c00416{bottom:387.799467pt;}
.y13_c00416{bottom:424.599467pt;}
.y12_c00416{bottom:461.399467pt;}
.y11_c00416{bottom:498.199467pt;}
.y10_c00416{bottom:534.999467pt;}
.yf_c00416{bottom:571.799467pt;}
.ye_c00416{bottom:608.599467pt;}
.yd_c00416{bottom:645.399467pt;}
.yc_c00416{bottom:682.199467pt;}
.yb_c00416{bottom:718.919467pt;}
.ya_c00416{bottom:755.719467pt;}
.y9_c00416{bottom:792.519467pt;}
.y8_c00416{bottom:829.319467pt;}
.y7_c00416{bottom:866.119467pt;}
.y6_c00416{bottom:902.919467pt;}
.y5_c00416{bottom:939.719467pt;}
.y4_c00416{bottom:976.519467pt;}
.y3_c00416{bottom:1013.319467pt;}
.y1a_c00416{bottom:1043.480107pt;}
.y2_c00416{bottom:1061.399467pt;}
.h2_c00416{height:44.800000pt;}
.h3_c00416{height:48.294844pt;}
.h4_c00416{height:68.288000pt;}
.h5_c00416{height:69.376000pt;}
.h0_c00416{height:1122.520000pt;}
.h1_c00416{height:1122.666667pt;}
.w2_c00416{width:0.000000pt;}
.w3_c00416{width:0.058667pt;}
.w0_c00416{width:793.701333pt;}
.w1_c00416{width:794.000000pt;}
.x1_c00416{left:-745.700800pt;}
.x2_c00416{left:-680.260800pt;}
.x3_c00416{left:-632.980800pt;}
.x0_c00416{left:0.000000pt;}
.x5_c00416{left:113.440000pt;}
.x6_c00416{left:160.720000pt;}
.x4_c00416{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00417;src:url('chunks/assets/font_3d86785bf6d5ce911956951a.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00417;src:url('chunks/assets/font_daf6aa92f7c3366745de6920.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00417;src:url('chunks/assets/font_188ad2f3c6cced23083d7630.woff2')format("woff");}.ff4_c00417{font-family:ff4_c00417;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls7_c00417{letter-spacing:-0.216000px;}
.ls6_c00417{letter-spacing:-0.144000px;}
.ls5_c00417{letter-spacing:0.000000px;}
.ls0_c00417{letter-spacing:0.072000px;}
.ls1_c00417{letter-spacing:0.144000px;}
.ls3_c00417{letter-spacing:17.640000px;}
.ls4_c00417{letter-spacing:18.000000px;}
.ls2_c00417{letter-spacing:26.640000px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00417{word-spacing:-18.144000px;}
.ws0_c00417{word-spacing:-18.072000px;}
.ws1_c00417{word-spacing:-18.000000px;}
.ws2_c00417{word-spacing:-17.856000px;}
.ws15_c00417{word-spacing:-0.648000px;}
.wsa_c00417{word-spacing:-0.144000px;}
.ws7_c00417{word-spacing:-0.131760px;}
.ws18_c00417{word-spacing:-0.072000px;}
.ws6_c00417{word-spacing:0.000000px;}
.wse_c00417{word-spacing:0.144000px;}
.ws5_c00417{word-spacing:0.432000px;}
.wsb_c00417{word-spacing:2.160000px;}
.ws13_c00417{word-spacing:7.200000px;}
.ws12_c00417{word-spacing:7.272000px;}
.ws3_c00417{word-spacing:7.560000px;}
.ws20_c00417{word-spacing:8.136000px;}
.ws1f_c00417{word-spacing:8.640000px;}
.ws14_c00417{word-spacing:9.000000px;}
.ws9_c00417{word-spacing:10.080000px;}
.ws1b_c00417{word-spacing:11.088000px;}
.ws1a_c00417{word-spacing:11.160000px;}
.wsd_c00417{word-spacing:11.376000px;}
.wsc_c00417{word-spacing:11.448000px;}
.ws19_c00417{word-spacing:11.520000px;}
.ws8_c00417{word-spacing:12.960000px;}
.ws11_c00417{word-spacing:13.176000px;}
.ws21_c00417{word-spacing:16.560000px;}
.ws1d_c00417{word-spacing:17.136000px;}
.ws1c_c00417{word-spacing:17.280000px;}
.ws16_c00417{word-spacing:19.440000px;}
.wsf_c00417{word-spacing:24.552000px;}
.ws10_c00417{word-spacing:24.840000px;}
.ws17_c00417{word-spacing:28.440000px;}
.ws1e_c00417{word-spacing:40.320000px;}
._1_c00417{margin-left:-1.296000px;}
._0_c00417{width:1.054080px;}
._3_c00417{width:11.592000px;}
._2_c00417{width:28.944000px;}
._4_c00417{width:40.608000px;}
.fc1_c00417{color:rgb(0,0,0);}
.fc0_c00417{color:rgb(35,31,32);}
.fs1_c00417{font-size:65.880000px;}
.fs0_c00417{font-size:72.000000px;}
.y0_c00417{bottom:0.000000px;}
.y1_c00417{bottom:61.748550px;}
.y1b_c00417{bottom:146.474400px;}
.y1a_c00417{bottom:187.874400px;}
.y19_c00417{bottom:229.274400px;}
.y18_c00417{bottom:270.674400px;}
.y17_c00417{bottom:312.074400px;}
.y16_c00417{bottom:353.474400px;}
.y15_c00417{bottom:394.874400px;}
.y14_c00417{bottom:436.274400px;}
.y13_c00417{bottom:477.674400px;}
.y12_c00417{bottom:519.074400px;}
.y11_c00417{bottom:560.474400px;}
.y10_c00417{bottom:601.874400px;}
.yf_c00417{bottom:643.274400px;}
.ye_c00417{bottom:684.674400px;}
.yd_c00417{bottom:726.074400px;}
.yc_c00417{bottom:767.474400px;}
.yb_c00417{bottom:808.784400px;}
.ya_c00417{bottom:850.184400px;}
.y9_c00417{bottom:891.584400px;}
.y8_c00417{bottom:932.984400px;}
.y7_c00417{bottom:974.384400px;}
.y6_c00417{bottom:1015.784400px;}
.y5_c00417{bottom:1057.184400px;}
.y4_c00417{bottom:1098.584400px;}
.y3_c00417{bottom:1139.984400px;}
.y2_c00417{bottom:1194.074400px;}
.h2_c00417{height:50.400000px;}
.h3_c00417{height:54.331699px;}
.h4_c00417{height:76.824000px;}
.h5_c00417{height:78.048000px;}
.h0_c00417{height:1262.835000px;}
.h1_c00417{height:1263.000000px;}
.w0_c00417{width:892.914000px;}
.w1_c00417{width:893.250000px;}
.x0_c00417{left:0.000000px;}
.x1_c00417{left:54.000000px;}
.x2_c00417{left:127.620000px;}
.x3_c00417{left:180.810000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls7_c00417{letter-spacing:-0.192000pt;}
.ls6_c00417{letter-spacing:-0.128000pt;}
.ls5_c00417{letter-spacing:0.000000pt;}
.ls0_c00417{letter-spacing:0.064000pt;}
.ls1_c00417{letter-spacing:0.128000pt;}
.ls3_c00417{letter-spacing:15.680000pt;}
.ls4_c00417{letter-spacing:16.000000pt;}
.ls2_c00417{letter-spacing:23.680000pt;}
.ws4_c00417{word-spacing:-16.128000pt;}
.ws0_c00417{word-spacing:-16.064000pt;}
.ws1_c00417{word-spacing:-16.000000pt;}
.ws2_c00417{word-spacing:-15.872000pt;}
.ws15_c00417{word-spacing:-0.576000pt;}
.wsa_c00417{word-spacing:-0.128000pt;}
.ws7_c00417{word-spacing:-0.117120pt;}
.ws18_c00417{word-spacing:-0.064000pt;}
.ws6_c00417{word-spacing:0.000000pt;}
.wse_c00417{word-spacing:0.128000pt;}
.ws5_c00417{word-spacing:0.384000pt;}
.wsb_c00417{word-spacing:1.920000pt;}
.ws13_c00417{word-spacing:6.400000pt;}
.ws12_c00417{word-spacing:6.464000pt;}
.ws3_c00417{word-spacing:6.720000pt;}
.ws20_c00417{word-spacing:7.232000pt;}
.ws1f_c00417{word-spacing:7.680000pt;}
.ws14_c00417{word-spacing:8.000000pt;}
.ws9_c00417{word-spacing:8.960000pt;}
.ws1b_c00417{word-spacing:9.856000pt;}
.ws1a_c00417{word-spacing:9.920000pt;}
.wsd_c00417{word-spacing:10.112000pt;}
.wsc_c00417{word-spacing:10.176000pt;}
.ws19_c00417{word-spacing:10.240000pt;}
.ws8_c00417{word-spacing:11.520000pt;}
.ws11_c00417{word-spacing:11.712000pt;}
.ws21_c00417{word-spacing:14.720000pt;}
.ws1d_c00417{word-spacing:15.232000pt;}
.ws1c_c00417{word-spacing:15.360000pt;}
.ws16_c00417{word-spacing:17.280000pt;}
.wsf_c00417{word-spacing:21.824000pt;}
.ws10_c00417{word-spacing:22.080000pt;}
.ws17_c00417{word-spacing:25.280000pt;}
.ws1e_c00417{word-spacing:35.840000pt;}
._1_c00417{margin-left:-1.152000pt;}
._0_c00417{width:0.936960pt;}
._3_c00417{width:10.304000pt;}
._2_c00417{width:25.728000pt;}
._4_c00417{width:36.096000pt;}
.fs1_c00417{font-size:58.560000pt;}
.fs0_c00417{font-size:64.000000pt;}
.y0_c00417{bottom:0.000000pt;}
.y1_c00417{bottom:54.887600pt;}
.y1b_c00417{bottom:130.199467pt;}
.y1a_c00417{bottom:166.999467pt;}
.y19_c00417{bottom:203.799467pt;}
.y18_c00417{bottom:240.599467pt;}
.y17_c00417{bottom:277.399467pt;}
.y16_c00417{bottom:314.199467pt;}
.y15_c00417{bottom:350.999467pt;}
.y14_c00417{bottom:387.799467pt;}
.y13_c00417{bottom:424.599467pt;}
.y12_c00417{bottom:461.399467pt;}
.y11_c00417{bottom:498.199467pt;}
.y10_c00417{bottom:534.999467pt;}
.yf_c00417{bottom:571.799467pt;}
.ye_c00417{bottom:608.599467pt;}
.yd_c00417{bottom:645.399467pt;}
.yc_c00417{bottom:682.199467pt;}
.yb_c00417{bottom:718.919467pt;}
.ya_c00417{bottom:755.719467pt;}
.y9_c00417{bottom:792.519467pt;}
.y8_c00417{bottom:829.319467pt;}
.y7_c00417{bottom:866.119467pt;}
.y6_c00417{bottom:902.919467pt;}
.y5_c00417{bottom:939.719467pt;}
.y4_c00417{bottom:976.519467pt;}
.y3_c00417{bottom:1013.319467pt;}
.y2_c00417{bottom:1061.399467pt;}
.h2_c00417{height:44.800000pt;}
.h3_c00417{height:48.294844pt;}
.h4_c00417{height:68.288000pt;}
.h5_c00417{height:69.376000pt;}
.h0_c00417{height:1122.520000pt;}
.h1_c00417{height:1122.666667pt;}
.w0_c00417{width:793.701333pt;}
.w1_c00417{width:794.000000pt;}
.x0_c00417{left:0.000000pt;}
.x1_c00417{left:48.000000pt;}
.x2_c00417{left:113.440000pt;}
.x3_c00417{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00418;src:url('chunks/assets/font_3553c7aae9f4cc600edf639b.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00418;src:url('chunks/assets/font_1a55d2ea2be04cba3c134631.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00418;src:url('chunks/assets/font_eee5a5bf1a55ac10fec10185.woff2')format("woff");}.ff4_c00418{font-family:ff4_c00418;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00418;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00418{font-family:ff5_c00418;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00418;src:url('chunks/assets/font_c3cb5d6a77455b602618deb0.woff2')format("woff");}.ff6_c00418{font-family:ff6_c00418;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00418;src:url('chunks/assets/font_14d98bd53cb4068ee9fed6fa.woff2')format("woff");}.ff7_c00418{font-family:ff7_c00418;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00418;src:url('chunks/assets/font_979084d3095199183dbc4366.woff2')format("woff");}.ff8_c00418{font-family:ff8_c00418;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.lsd_c00418{letter-spacing:-0.576000px;}
.lsc_c00418{letter-spacing:-0.360000px;}
.lsb_c00418{letter-spacing:-0.216000px;}
.lsa_c00418{letter-spacing:-0.144000px;}
.ls9_c00418{letter-spacing:0.000000px;}
.ls0_c00418{letter-spacing:0.072000px;}
.ls1_c00418{letter-spacing:0.144000px;}
.ls3_c00418{letter-spacing:17.640000px;}
.ls4_c00418{letter-spacing:18.000000px;}
.ls8_c00418{letter-spacing:24.120000px;}
.ls2_c00418{letter-spacing:26.640000px;}
.ls6_c00418{letter-spacing:34.200000px;}
.ls5_c00418{letter-spacing:35.294400px;}
.ls7_c00418{letter-spacing:45.720000px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00418{word-spacing:-18.144000px;}
.ws0_c00418{word-spacing:-18.072000px;}
.ws1_c00418{word-spacing:-18.000000px;}
.ws2_c00418{word-spacing:-17.856000px;}
.ws9_c00418{word-spacing:-17.784000px;}
.wsb_c00418{word-spacing:-17.640000px;}
.ws8_c00418{word-spacing:-17.424000px;}
.ws1a_c00418{word-spacing:-0.648000px;}
.ws30_c00418{word-spacing:-0.576000px;}
.ws7_c00418{word-spacing:-0.360000px;}
.wsf_c00418{word-spacing:-0.144000px;}
.wsc_c00418{word-spacing:-0.131760px;}
.ws1d_c00418{word-spacing:-0.072000px;}
.ws6_c00418{word-spacing:0.000000px;}
.ws13_c00418{word-spacing:0.144000px;}
.ws2e_c00418{word-spacing:0.360000px;}
.ws5_c00418{word-spacing:0.432000px;}
.ws31_c00418{word-spacing:1.440000px;}
.ws10_c00418{word-spacing:2.160000px;}
.ws32_c00418{word-spacing:4.320000px;}
.ws38_c00418{word-spacing:6.048000px;}
.ws37_c00418{word-spacing:6.120000px;}
.ws36_c00418{word-spacing:6.552000px;}
.ws2b_c00418{word-spacing:7.128000px;}
.ws18_c00418{word-spacing:7.200000px;}
.ws17_c00418{word-spacing:7.272000px;}
.ws2a_c00418{word-spacing:7.488000px;}
.ws3_c00418{word-spacing:7.560000px;}
.ws29_c00418{word-spacing:7.920000px;}
.ws25_c00418{word-spacing:8.136000px;}
.ws24_c00418{word-spacing:8.640000px;}
.ws19_c00418{word-spacing:9.000000px;}
.wse_c00418{word-spacing:10.080000px;}
.ws20_c00418{word-spacing:11.088000px;}
.ws1f_c00418{word-spacing:11.160000px;}
.ws12_c00418{word-spacing:11.376000px;}
.ws11_c00418{word-spacing:11.448000px;}
.ws1e_c00418{word-spacing:11.520000px;}
.wsd_c00418{word-spacing:12.960000px;}
.ws16_c00418{word-spacing:13.176000px;}
.ws2c_c00418{word-spacing:14.040000px;}
.ws2d_c00418{word-spacing:16.200000px;}
.ws26_c00418{word-spacing:16.560000px;}
.ws22_c00418{word-spacing:17.136000px;}
.ws28_c00418{word-spacing:17.208000px;}
.ws21_c00418{word-spacing:17.280000px;}
.ws27_c00418{word-spacing:17.640000px;}
.ws1b_c00418{word-spacing:19.440000px;}
.ws34_c00418{word-spacing:21.096000px;}
.ws35_c00418{word-spacing:21.168000px;}
.ws14_c00418{word-spacing:24.552000px;}
.ws15_c00418{word-spacing:24.840000px;}
.ws3c_c00418{word-spacing:26.496000px;}
.ws3b_c00418{word-spacing:26.640000px;}
.ws33_c00418{word-spacing:27.360000px;}
.wsa_c00418{word-spacing:27.648000px;}
.ws1c_c00418{word-spacing:28.440000px;}
.ws39_c00418{word-spacing:39.168000px;}
.ws3a_c00418{word-spacing:39.240000px;}
.ws23_c00418{word-spacing:40.320000px;}
.ws2f_c00418{word-spacing:41.400000px;}
._1_c00418{margin-left:-1.296000px;}
._0_c00418{width:1.054080px;}
._5_c00418{width:4.680000px;}
._3_c00418{width:11.592000px;}
._6_c00418{width:16.992000px;}
._2_c00418{width:28.944000px;}
._4_c00418{width:40.608000px;}
.fc2_c00418{color:transparent;}
.fc1_c00418{color:rgb(0,0,0);}
.fc0_c00418{color:rgb(35,31,32);}
.fs1_c00418{font-size:65.880000px;}
.fs0_c00418{font-size:72.000000px;}
.y0_c00418{bottom:0.000000px;}
.y1_c00418{bottom:61.748550px;}
.y1b_c00418{bottom:146.474400px;}
.y1a_c00418{bottom:187.874400px;}
.y19_c00418{bottom:229.274400px;}
.y18_c00418{bottom:270.674400px;}
.y17_c00418{bottom:312.074400px;}
.y16_c00418{bottom:353.474400px;}
.y15_c00418{bottom:394.874400px;}
.y14_c00418{bottom:436.274400px;}
.y13_c00418{bottom:477.674400px;}
.y12_c00418{bottom:519.074400px;}
.y11_c00418{bottom:560.474400px;}
.y10_c00418{bottom:601.874400px;}
.yf_c00418{bottom:643.274400px;}
.ye_c00418{bottom:684.674400px;}
.yd_c00418{bottom:726.074400px;}
.yc_c00418{bottom:767.474400px;}
.yb_c00418{bottom:808.784400px;}
.ya_c00418{bottom:850.184400px;}
.y9_c00418{bottom:891.584400px;}
.y8_c00418{bottom:932.984400px;}
.y7_c00418{bottom:974.384400px;}
.y6_c00418{bottom:1015.784400px;}
.y5_c00418{bottom:1057.184400px;}
.y4_c00418{bottom:1098.584400px;}
.y3_c00418{bottom:1139.984400px;}
.y1c_c00418{bottom:1173.915120px;}
.y2_c00418{bottom:1194.074400px;}
.h2_c00418{height:50.400000px;}
.h3_c00418{height:54.331699px;}
.h4_c00418{height:76.824000px;}
.h5_c00418{height:78.048000px;}
.h0_c00418{height:1262.835000px;}
.h1_c00418{height:1263.000000px;}
.w2_c00418{width:0.000000px;}
.w3_c00418{width:0.066000px;}
.w0_c00418{width:892.914000px;}
.w1_c00418{width:893.250000px;}
.x1_c00418{left:-838.913400px;}
.x2_c00418{left:-765.293400px;}
.x3_c00418{left:-712.103400px;}
.x0_c00418{left:0.000000px;}
.x5_c00418{left:127.620000px;}
.x6_c00418{left:180.810000px;}
.x4_c00418{left:804.366150px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.lsd_c00418{letter-spacing:-0.512000pt;}
.lsc_c00418{letter-spacing:-0.320000pt;}
.lsb_c00418{letter-spacing:-0.192000pt;}
.lsa_c00418{letter-spacing:-0.128000pt;}
.ls9_c00418{letter-spacing:0.000000pt;}
.ls0_c00418{letter-spacing:0.064000pt;}
.ls1_c00418{letter-spacing:0.128000pt;}
.ls3_c00418{letter-spacing:15.680000pt;}
.ls4_c00418{letter-spacing:16.000000pt;}
.ls8_c00418{letter-spacing:21.440000pt;}
.ls2_c00418{letter-spacing:23.680000pt;}
.ls6_c00418{letter-spacing:30.400000pt;}
.ls5_c00418{letter-spacing:31.372800pt;}
.ls7_c00418{letter-spacing:40.640000pt;}
.ws4_c00418{word-spacing:-16.128000pt;}
.ws0_c00418{word-spacing:-16.064000pt;}
.ws1_c00418{word-spacing:-16.000000pt;}
.ws2_c00418{word-spacing:-15.872000pt;}
.ws9_c00418{word-spacing:-15.808000pt;}
.wsb_c00418{word-spacing:-15.680000pt;}
.ws8_c00418{word-spacing:-15.488000pt;}
.ws1a_c00418{word-spacing:-0.576000pt;}
.ws30_c00418{word-spacing:-0.512000pt;}
.ws7_c00418{word-spacing:-0.320000pt;}
.wsf_c00418{word-spacing:-0.128000pt;}
.wsc_c00418{word-spacing:-0.117120pt;}
.ws1d_c00418{word-spacing:-0.064000pt;}
.ws6_c00418{word-spacing:0.000000pt;}
.ws13_c00418{word-spacing:0.128000pt;}
.ws2e_c00418{word-spacing:0.320000pt;}
.ws5_c00418{word-spacing:0.384000pt;}
.ws31_c00418{word-spacing:1.280000pt;}
.ws10_c00418{word-spacing:1.920000pt;}
.ws32_c00418{word-spacing:3.840000pt;}
.ws38_c00418{word-spacing:5.376000pt;}
.ws37_c00418{word-spacing:5.440000pt;}
.ws36_c00418{word-spacing:5.824000pt;}
.ws2b_c00418{word-spacing:6.336000pt;}
.ws18_c00418{word-spacing:6.400000pt;}
.ws17_c00418{word-spacing:6.464000pt;}
.ws2a_c00418{word-spacing:6.656000pt;}
.ws3_c00418{word-spacing:6.720000pt;}
.ws29_c00418{word-spacing:7.040000pt;}
.ws25_c00418{word-spacing:7.232000pt;}
.ws24_c00418{word-spacing:7.680000pt;}
.ws19_c00418{word-spacing:8.000000pt;}
.wse_c00418{word-spacing:8.960000pt;}
.ws20_c00418{word-spacing:9.856000pt;}
.ws1f_c00418{word-spacing:9.920000pt;}
.ws12_c00418{word-spacing:10.112000pt;}
.ws11_c00418{word-spacing:10.176000pt;}
.ws1e_c00418{word-spacing:10.240000pt;}
.wsd_c00418{word-spacing:11.520000pt;}
.ws16_c00418{word-spacing:11.712000pt;}
.ws2c_c00418{word-spacing:12.480000pt;}
.ws2d_c00418{word-spacing:14.400000pt;}
.ws26_c00418{word-spacing:14.720000pt;}
.ws22_c00418{word-spacing:15.232000pt;}
.ws28_c00418{word-spacing:15.296000pt;}
.ws21_c00418{word-spacing:15.360000pt;}
.ws27_c00418{word-spacing:15.680000pt;}
.ws1b_c00418{word-spacing:17.280000pt;}
.ws34_c00418{word-spacing:18.752000pt;}
.ws35_c00418{word-spacing:18.816000pt;}
.ws14_c00418{word-spacing:21.824000pt;}
.ws15_c00418{word-spacing:22.080000pt;}
.ws3c_c00418{word-spacing:23.552000pt;}
.ws3b_c00418{word-spacing:23.680000pt;}
.ws33_c00418{word-spacing:24.320000pt;}
.wsa_c00418{word-spacing:24.576000pt;}
.ws1c_c00418{word-spacing:25.280000pt;}
.ws39_c00418{word-spacing:34.816000pt;}
.ws3a_c00418{word-spacing:34.880000pt;}
.ws23_c00418{word-spacing:35.840000pt;}
.ws2f_c00418{word-spacing:36.800000pt;}
._1_c00418{margin-left:-1.152000pt;}
._0_c00418{width:0.936960pt;}
._5_c00418{width:4.160000pt;}
._3_c00418{width:10.304000pt;}
._6_c00418{width:15.104000pt;}
._2_c00418{width:25.728000pt;}
._4_c00418{width:36.096000pt;}
.fs1_c00418{font-size:58.560000pt;}
.fs0_c00418{font-size:64.000000pt;}
.y0_c00418{bottom:0.000000pt;}
.y1_c00418{bottom:54.887600pt;}
.y1b_c00418{bottom:130.199467pt;}
.y1a_c00418{bottom:166.999467pt;}
.y19_c00418{bottom:203.799467pt;}
.y18_c00418{bottom:240.599467pt;}
.y17_c00418{bottom:277.399467pt;}
.y16_c00418{bottom:314.199467pt;}
.y15_c00418{bottom:350.999467pt;}
.y14_c00418{bottom:387.799467pt;}
.y13_c00418{bottom:424.599467pt;}
.y12_c00418{bottom:461.399467pt;}
.y11_c00418{bottom:498.199467pt;}
.y10_c00418{bottom:534.999467pt;}
.yf_c00418{bottom:571.799467pt;}
.ye_c00418{bottom:608.599467pt;}
.yd_c00418{bottom:645.399467pt;}
.yc_c00418{bottom:682.199467pt;}
.yb_c00418{bottom:718.919467pt;}
.ya_c00418{bottom:755.719467pt;}
.y9_c00418{bottom:792.519467pt;}
.y8_c00418{bottom:829.319467pt;}
.y7_c00418{bottom:866.119467pt;}
.y6_c00418{bottom:902.919467pt;}
.y5_c00418{bottom:939.719467pt;}
.y4_c00418{bottom:976.519467pt;}
.y3_c00418{bottom:1013.319467pt;}
.y1c_c00418{bottom:1043.480107pt;}
.y2_c00418{bottom:1061.399467pt;}
.h2_c00418{height:44.800000pt;}
.h3_c00418{height:48.294844pt;}
.h4_c00418{height:68.288000pt;}
.h5_c00418{height:69.376000pt;}
.h0_c00418{height:1122.520000pt;}
.h1_c00418{height:1122.666667pt;}
.w2_c00418{width:0.000000pt;}
.w3_c00418{width:0.058667pt;}
.w0_c00418{width:793.701333pt;}
.w1_c00418{width:794.000000pt;}
.x1_c00418{left:-745.700800pt;}
.x2_c00418{left:-680.260800pt;}
.x3_c00418{left:-632.980800pt;}
.x0_c00418{left:0.000000pt;}
.x5_c00418{left:113.440000pt;}
.x6_c00418{left:160.720000pt;}
.x4_c00418{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00419;src:url('chunks/assets/font_f06effe88505811bca33854c.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_1f47c3e47f6564ca4075aeb7.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00419;src:url('chunks/assets/font_bd8a98c0cb179a50484860af.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.lsc_c00419{letter-spacing:-0.576000px;}
.lsa_c00419{letter-spacing:-0.360000px;}
.ls9_c00419{letter-spacing:-0.216000px;}
.lsb_c00419{letter-spacing:-0.144000px;}
.lsd_c00419{letter-spacing:-0.072000px;}
.ls8_c00419{letter-spacing:0.000000px;}
.ls1_c00419{letter-spacing:0.072000px;}
.ls4_c00419{letter-spacing:0.144000px;}
.ls0_c00419{letter-spacing:18.000000px;}
.ls3_c00419{letter-spacing:18.360000px;}
.ls2_c00419{letter-spacing:29.520000px;}
.ls6_c00419{letter-spacing:37.800000px;}
.ls5_c00419{letter-spacing:42.480000px;}
.ls7_c00419{letter-spacing:56.304000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00419{word-spacing:-18.144000px;}
.ws1_c00419{word-spacing:-18.072000px;}
.ws0_c00419{word-spacing:-18.000000px;}
.ws2_c00419{word-spacing:-17.856000px;}
.ws6_c00419{word-spacing:-17.424000px;}
.ws4_c00419{word-spacing:-0.360000px;}
.ws15_c00419{word-spacing:-0.144000px;}
.ws8_c00419{word-spacing:-0.131760px;}
.wsf_c00419{word-spacing:-0.072000px;}
.ws7_c00419{word-spacing:0.000000px;}
.ws1b_c00419{word-spacing:0.144000px;}
.ws14_c00419{word-spacing:0.360000px;}
.ws13_c00419{word-spacing:1.080000px;}
.ws22_c00419{word-spacing:2.160000px;}
.ws9_c00419{word-spacing:3.240000px;}
.ws1a_c00419{word-spacing:7.200000px;}
.ws11_c00419{word-spacing:7.560000px;}
.ws10_c00419{word-spacing:7.848000px;}
.ws3_c00419{word-spacing:7.920000px;}
.ws19_c00419{word-spacing:9.288000px;}
.wsc_c00419{word-spacing:11.520000px;}
.wsd_c00419{word-spacing:11.880000px;}
.wsb_c00419{word-spacing:11.952000px;}
.ws1f_c00419{word-spacing:19.800000px;}
.ws1e_c00419{word-spacing:19.944000px;}
.ws1d_c00419{word-spacing:20.088000px;}
.ws12_c00419{word-spacing:20.160000px;}
.ws1c_c00419{word-spacing:20.232000px;}
.ws18_c00419{word-spacing:24.120000px;}
.ws17_c00419{word-spacing:24.480000px;}
.ws20_c00419{word-spacing:25.128000px;}
.ws24_c00419{word-spacing:25.776000px;}
.ws23_c00419{word-spacing:26.280000px;}
.wsa_c00419{word-spacing:27.360000px;}
.wse_c00419{word-spacing:28.728000px;}
.ws16_c00419{word-spacing:34.920000px;}
.ws21_c00419{word-spacing:38.160000px;}
._1_c00419{margin-left:-1.080000px;}
._0_c00419{width:1.054080px;}
._2_c00419{width:16.992000px;}
._3_c00419{width:20.088000px;}
.fc1_c00419{color:rgb(0,0,0);}
.fc0_c00419{color:rgb(35,31,32);}
.fs1_c00419{font-size:65.880000px;}
.fs0_c00419{font-size:72.000000px;}
.y0_c00419{bottom:0.000000px;}
.y1_c00419{bottom:61.748550px;}
.y1b_c00419{bottom:146.474400px;}
.y1a_c00419{bottom:187.874400px;}
.y19_c00419{bottom:229.274400px;}
.y18_c00419{bottom:270.674400px;}
.y17_c00419{bottom:312.074400px;}
.y16_c00419{bottom:353.474400px;}
.y15_c00419{bottom:394.874400px;}
.y14_c00419{bottom:436.274400px;}
.y13_c00419{bottom:477.674400px;}
.y12_c00419{bottom:519.074400px;}
.y11_c00419{bottom:560.474400px;}
.y10_c00419{bottom:601.874400px;}
.yf_c00419{bottom:643.274400px;}
.ye_c00419{bottom:684.674400px;}
.yd_c00419{bottom:726.074400px;}
.yc_c00419{bottom:767.474400px;}
.yb_c00419{bottom:808.784400px;}
.ya_c00419{bottom:850.184400px;}
.y9_c00419{bottom:891.584400px;}
.y8_c00419{bottom:932.984400px;}
.y7_c00419{bottom:974.384400px;}
.y6_c00419{bottom:1015.784400px;}
.y5_c00419{bottom:1057.184400px;}
.y4_c00419{bottom:1098.584400px;}
.y3_c00419{bottom:1139.984400px;}
.y2_c00419{bottom:1194.074400px;}
.h2_c00419{height:50.400000px;}
.h3_c00419{height:54.331699px;}
.h4_c00419{height:76.824000px;}
.h5_c00419{height:78.048000px;}
.h0_c00419{height:1262.835000px;}
.h1_c00419{height:1263.000000px;}
.w0_c00419{width:892.914000px;}
.w1_c00419{width:893.250000px;}
.x0_c00419{left:0.000000px;}
.x1_c00419{left:54.000000px;}
.x2_c00419{left:127.620000px;}
.x3_c00419{left:180.810000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.lsc_c00419{letter-spacing:-0.512000pt;}
.lsa_c00419{letter-spacing:-0.320000pt;}
.ls9_c00419{letter-spacing:-0.192000pt;}
.lsb_c00419{letter-spacing:-0.128000pt;}
.lsd_c00419{letter-spacing:-0.064000pt;}
.ls8_c00419{letter-spacing:0.000000pt;}
.ls1_c00419{letter-spacing:0.064000pt;}
.ls4_c00419{letter-spacing:0.128000pt;}
.ls0_c00419{letter-spacing:16.000000pt;}
.ls3_c00419{letter-spacing:16.320000pt;}
.ls2_c00419{letter-spacing:26.240000pt;}
.ls6_c00419{letter-spacing:33.600000pt;}
.ls5_c00419{letter-spacing:37.760000pt;}
.ls7_c00419{letter-spacing:50.048000pt;}
.ws5_c00419{word-spacing:-16.128000pt;}
.ws1_c00419{word-spacing:-16.064000pt;}
.ws0_c00419{word-spacing:-16.000000pt;}
.ws2_c00419{word-spacing:-15.872000pt;}
.ws6_c00419{word-spacing:-15.488000pt;}
.ws4_c00419{word-spacing:-0.320000pt;}
.ws15_c00419{word-spacing:-0.128000pt;}
.ws8_c00419{word-spacing:-0.117120pt;}
.wsf_c00419{word-spacing:-0.064000pt;}
.ws7_c00419{word-spacing:0.000000pt;}
.ws1b_c00419{word-spacing:0.128000pt;}
.ws14_c00419{word-spacing:0.320000pt;}
.ws13_c00419{word-spacing:0.960000pt;}
.ws22_c00419{word-spacing:1.920000pt;}
.ws9_c00419{word-spacing:2.880000pt;}
.ws1a_c00419{word-spacing:6.400000pt;}
.ws11_c00419{word-spacing:6.720000pt;}
.ws10_c00419{word-spacing:6.976000pt;}
.ws3_c00419{word-spacing:7.040000pt;}
.ws19_c00419{word-spacing:8.256000pt;}
.wsc_c00419{word-spacing:10.240000pt;}
.wsd_c00419{word-spacing:10.560000pt;}
.wsb_c00419{word-spacing:10.624000pt;}
.ws1f_c00419{word-spacing:17.600000pt;}
.ws1e_c00419{word-spacing:17.728000pt;}
.ws1d_c00419{word-spacing:17.856000pt;}
.ws12_c00419{word-spacing:17.920000pt;}
.ws1c_c00419{word-spacing:17.984000pt;}
.ws18_c00419{word-spacing:21.440000pt;}
.ws17_c00419{word-spacing:21.760000pt;}
.ws20_c00419{word-spacing:22.336000pt;}
.ws24_c00419{word-spacing:22.912000pt;}
.ws23_c00419{word-spacing:23.360000pt;}
.wsa_c00419{word-spacing:24.320000pt;}
.wse_c00419{word-spacing:25.536000pt;}
.ws16_c00419{word-spacing:31.040000pt;}
.ws21_c00419{word-spacing:33.920000pt;}
._1_c00419{margin-left:-0.960000pt;}
._0_c00419{width:0.936960pt;}
._2_c00419{width:15.104000pt;}
._3_c00419{width:17.856000pt;}
.fs1_c00419{font-size:58.560000pt;}
.fs0_c00419{font-size:64.000000pt;}
.y0_c00419{bottom:0.000000pt;}
.y1_c00419{bottom:54.887600pt;}
.y1b_c00419{bottom:130.199467pt;}
.y1a_c00419{bottom:166.999467pt;}
.y19_c00419{bottom:203.799467pt;}
.y18_c00419{bottom:240.599467pt;}
.y17_c00419{bottom:277.399467pt;}
.y16_c00419{bottom:314.199467pt;}
.y15_c00419{bottom:350.999467pt;}
.y14_c00419{bottom:387.799467pt;}
.y13_c00419{bottom:424.599467pt;}
.y12_c00419{bottom:461.399467pt;}
.y11_c00419{bottom:498.199467pt;}
.y10_c00419{bottom:534.999467pt;}
.yf_c00419{bottom:571.799467pt;}
.ye_c00419{bottom:608.599467pt;}
.yd_c00419{bottom:645.399467pt;}
.yc_c00419{bottom:682.199467pt;}
.yb_c00419{bottom:718.919467pt;}
.ya_c00419{bottom:755.719467pt;}
.y9_c00419{bottom:792.519467pt;}
.y8_c00419{bottom:829.319467pt;}
.y7_c00419{bottom:866.119467pt;}
.y6_c00419{bottom:902.919467pt;}
.y5_c00419{bottom:939.719467pt;}
.y4_c00419{bottom:976.519467pt;}
.y3_c00419{bottom:1013.319467pt;}
.y2_c00419{bottom:1061.399467pt;}
.h2_c00419{height:44.800000pt;}
.h3_c00419{height:48.294844pt;}
.h4_c00419{height:68.288000pt;}
.h5_c00419{height:69.376000pt;}
.h0_c00419{height:1122.520000pt;}
.h1_c00419{height:1122.666667pt;}
.w0_c00419{width:793.701333pt;}
.w1_c00419{width:794.000000pt;}
.x0_c00419{left:0.000000pt;}
.x1_c00419{left:48.000000pt;}
.x2_c00419{left:113.440000pt;}
.x3_c00419{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00420;src:url('chunks/assets/font_41cf931a33b5b5fe81c41654.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00420;src:url('chunks/assets/font_5c64928f0a9508d969cfe0d0.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00420;src:url('chunks/assets/font_032c2b097b8b4ea31d21a821.woff2')format("woff");}.ff4_c00420{font-family:ff4_c00420;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00420;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00420{font-family:ff5_c00420;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00420;src:url('chunks/assets/font_bdfaf14761d9d0186f42e913.woff2')format("woff");}.ff6_c00420{font-family:ff6_c00420;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00420;src:url('chunks/assets/font_d2f2b55dc81b64e9445b3df3.woff2')format("woff");}.ff7_c00420{font-family:ff7_c00420;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00420;src:url('chunks/assets/font_0b575f50e63125406250cf32.woff2')format("woff");}.ff8_c00420{font-family:ff8_c00420;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls11_c00420{letter-spacing:-0.576000px;}
.lsf_c00420{letter-spacing:-0.360000px;}
.ls13_c00420{letter-spacing:-0.288000px;}
.lse_c00420{letter-spacing:-0.216000px;}
.ls10_c00420{letter-spacing:-0.144000px;}
.ls12_c00420{letter-spacing:-0.072000px;}
.lsd_c00420{letter-spacing:0.000000px;}
.ls1_c00420{letter-spacing:0.072000px;}
.ls4_c00420{letter-spacing:0.144000px;}
.ls0_c00420{letter-spacing:18.000000px;}
.ls3_c00420{letter-spacing:18.360000px;}
.ls9_c00420{letter-spacing:27.000000px;}
.ls2_c00420{letter-spacing:29.520000px;}
.ls8_c00420{letter-spacing:31.320000px;}
.lsc_c00420{letter-spacing:32.040000px;}
.lsb_c00420{letter-spacing:32.400000px;}
.ls6_c00420{letter-spacing:37.800000px;}
.ls5_c00420{letter-spacing:42.480000px;}
.lsa_c00420{letter-spacing:56.160000px;}
.ls7_c00420{letter-spacing:56.304000px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00420{word-spacing:-18.144000px;}
.ws1_c00420{word-spacing:-18.072000px;}
.ws0_c00420{word-spacing:-18.000000px;}
.ws2_c00420{word-spacing:-17.856000px;}
.ws6_c00420{word-spacing:-17.424000px;}
.ws4_c00420{word-spacing:-0.360000px;}
.ws16_c00420{word-spacing:-0.144000px;}
.ws9_c00420{word-spacing:-0.131760px;}
.ws10_c00420{word-spacing:-0.072000px;}
.ws8_c00420{word-spacing:0.000000px;}
.ws2a_c00420{word-spacing:0.072000px;}
.ws1c_c00420{word-spacing:0.144000px;}
.ws2f_c00420{word-spacing:0.288000px;}
.ws15_c00420{word-spacing:0.360000px;}
.ws37_c00420{word-spacing:0.720000px;}
.ws14_c00420{word-spacing:1.080000px;}
.ws23_c00420{word-spacing:2.160000px;}
.wsa_c00420{word-spacing:3.240000px;}
.ws26_c00420{word-spacing:4.320000px;}
.ws38_c00420{word-spacing:4.536000px;}
.ws39_c00420{word-spacing:4.680000px;}
.ws7_c00420{word-spacing:6.840000px;}
.ws3a_c00420{word-spacing:7.128000px;}
.ws1b_c00420{word-spacing:7.200000px;}
.ws29_c00420{word-spacing:7.488000px;}
.ws12_c00420{word-spacing:7.560000px;}
.ws11_c00420{word-spacing:7.848000px;}
.ws3_c00420{word-spacing:7.920000px;}
.ws2b_c00420{word-spacing:8.280000px;}
.ws31_c00420{word-spacing:8.928000px;}
.ws30_c00420{word-spacing:9.000000px;}
.ws1a_c00420{word-spacing:9.288000px;}
.ws34_c00420{word-spacing:10.080000px;}
.wsd_c00420{word-spacing:11.520000px;}
.wse_c00420{word-spacing:11.880000px;}
.wsc_c00420{word-spacing:11.952000px;}
.ws27_c00420{word-spacing:13.320000px;}
.ws28_c00420{word-spacing:13.680000px;}
.ws36_c00420{word-spacing:14.256000px;}
.ws35_c00420{word-spacing:14.400000px;}
.ws20_c00420{word-spacing:19.800000px;}
.ws1f_c00420{word-spacing:19.944000px;}
.ws1e_c00420{word-spacing:20.088000px;}
.ws13_c00420{word-spacing:20.160000px;}
.ws1d_c00420{word-spacing:20.232000px;}
.ws19_c00420{word-spacing:24.120000px;}
.ws18_c00420{word-spacing:24.480000px;}
.ws21_c00420{word-spacing:25.128000px;}
.ws3b_c00420{word-spacing:25.200000px;}
.ws25_c00420{word-spacing:25.776000px;}
.ws24_c00420{word-spacing:26.280000px;}
.wsb_c00420{word-spacing:27.360000px;}
.wsf_c00420{word-spacing:28.728000px;}
.ws33_c00420{word-spacing:28.872000px;}
.ws32_c00420{word-spacing:29.088000px;}
.ws17_c00420{word-spacing:34.920000px;}
.ws2e_c00420{word-spacing:36.720000px;}
.ws22_c00420{word-spacing:38.160000px;}
.ws2c_c00420{word-spacing:39.816000px;}
.ws2d_c00420{word-spacing:39.960000px;}
._1_c00420{margin-left:-1.080000px;}
._0_c00420{width:1.054080px;}
._2_c00420{width:16.992000px;}
._3_c00420{width:20.088000px;}
.fc2_c00420{color:transparent;}
.fc1_c00420{color:rgb(0,0,0);}
.fc0_c00420{color:rgb(35,31,32);}
.fs1_c00420{font-size:65.880000px;}
.fs0_c00420{font-size:72.000000px;}
.y0_c00420{bottom:0.000000px;}
.y1_c00420{bottom:61.748550px;}
.y1b_c00420{bottom:146.474400px;}
.y1a_c00420{bottom:187.874400px;}
.y19_c00420{bottom:229.274400px;}
.y18_c00420{bottom:270.674400px;}
.y17_c00420{bottom:312.074400px;}
.y16_c00420{bottom:353.474400px;}
.y15_c00420{bottom:394.874400px;}
.y14_c00420{bottom:436.274400px;}
.y13_c00420{bottom:477.674400px;}
.y12_c00420{bottom:519.074400px;}
.y11_c00420{bottom:560.474400px;}
.y10_c00420{bottom:601.874400px;}
.yf_c00420{bottom:643.274400px;}
.ye_c00420{bottom:684.674400px;}
.yd_c00420{bottom:726.074400px;}
.yc_c00420{bottom:767.474400px;}
.yb_c00420{bottom:808.784400px;}
.ya_c00420{bottom:850.184400px;}
.y9_c00420{bottom:891.584400px;}
.y8_c00420{bottom:932.984400px;}
.y7_c00420{bottom:974.384400px;}
.y6_c00420{bottom:1015.784400px;}
.y5_c00420{bottom:1057.184400px;}
.y4_c00420{bottom:1098.584400px;}
.y3_c00420{bottom:1139.984400px;}
.y1c_c00420{bottom:1173.915120px;}
.y2_c00420{bottom:1194.074400px;}
.h2_c00420{height:50.400000px;}
.h3_c00420{height:54.331699px;}
.h4_c00420{height:76.824000px;}
.h5_c00420{height:78.048000px;}
.h0_c00420{height:1262.835000px;}
.h1_c00420{height:1263.000000px;}
.w2_c00420{width:0.000000px;}
.w3_c00420{width:0.066000px;}
.w0_c00420{width:892.914000px;}
.w1_c00420{width:893.250000px;}
.x1_c00420{left:-838.913400px;}
.x2_c00420{left:-765.293400px;}
.x3_c00420{left:-712.103400px;}
.x0_c00420{left:0.000000px;}
.x5_c00420{left:127.620000px;}
.x6_c00420{left:180.810000px;}
.x4_c00420{left:804.366150px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls11_c00420{letter-spacing:-0.512000pt;}
.lsf_c00420{letter-spacing:-0.320000pt;}
.ls13_c00420{letter-spacing:-0.256000pt;}
.lse_c00420{letter-spacing:-0.192000pt;}
.ls10_c00420{letter-spacing:-0.128000pt;}
.ls12_c00420{letter-spacing:-0.064000pt;}
.lsd_c00420{letter-spacing:0.000000pt;}
.ls1_c00420{letter-spacing:0.064000pt;}
.ls4_c00420{letter-spacing:0.128000pt;}
.ls0_c00420{letter-spacing:16.000000pt;}
.ls3_c00420{letter-spacing:16.320000pt;}
.ls9_c00420{letter-spacing:24.000000pt;}
.ls2_c00420{letter-spacing:26.240000pt;}
.ls8_c00420{letter-spacing:27.840000pt;}
.lsc_c00420{letter-spacing:28.480000pt;}
.lsb_c00420{letter-spacing:28.800000pt;}
.ls6_c00420{letter-spacing:33.600000pt;}
.ls5_c00420{letter-spacing:37.760000pt;}
.lsa_c00420{letter-spacing:49.920000pt;}
.ls7_c00420{letter-spacing:50.048000pt;}
.ws5_c00420{word-spacing:-16.128000pt;}
.ws1_c00420{word-spacing:-16.064000pt;}
.ws0_c00420{word-spacing:-16.000000pt;}
.ws2_c00420{word-spacing:-15.872000pt;}
.ws6_c00420{word-spacing:-15.488000pt;}
.ws4_c00420{word-spacing:-0.320000pt;}
.ws16_c00420{word-spacing:-0.128000pt;}
.ws9_c00420{word-spacing:-0.117120pt;}
.ws10_c00420{word-spacing:-0.064000pt;}
.ws8_c00420{word-spacing:0.000000pt;}
.ws2a_c00420{word-spacing:0.064000pt;}
.ws1c_c00420{word-spacing:0.128000pt;}
.ws2f_c00420{word-spacing:0.256000pt;}
.ws15_c00420{word-spacing:0.320000pt;}
.ws37_c00420{word-spacing:0.640000pt;}
.ws14_c00420{word-spacing:0.960000pt;}
.ws23_c00420{word-spacing:1.920000pt;}
.wsa_c00420{word-spacing:2.880000pt;}
.ws26_c00420{word-spacing:3.840000pt;}
.ws38_c00420{word-spacing:4.032000pt;}
.ws39_c00420{word-spacing:4.160000pt;}
.ws7_c00420{word-spacing:6.080000pt;}
.ws3a_c00420{word-spacing:6.336000pt;}
.ws1b_c00420{word-spacing:6.400000pt;}
.ws29_c00420{word-spacing:6.656000pt;}
.ws12_c00420{word-spacing:6.720000pt;}
.ws11_c00420{word-spacing:6.976000pt;}
.ws3_c00420{word-spacing:7.040000pt;}
.ws2b_c00420{word-spacing:7.360000pt;}
.ws31_c00420{word-spacing:7.936000pt;}
.ws30_c00420{word-spacing:8.000000pt;}
.ws1a_c00420{word-spacing:8.256000pt;}
.ws34_c00420{word-spacing:8.960000pt;}
.wsd_c00420{word-spacing:10.240000pt;}
.wse_c00420{word-spacing:10.560000pt;}
.wsc_c00420{word-spacing:10.624000pt;}
.ws27_c00420{word-spacing:11.840000pt;}
.ws28_c00420{word-spacing:12.160000pt;}
.ws36_c00420{word-spacing:12.672000pt;}
.ws35_c00420{word-spacing:12.800000pt;}
.ws20_c00420{word-spacing:17.600000pt;}
.ws1f_c00420{word-spacing:17.728000pt;}
.ws1e_c00420{word-spacing:17.856000pt;}
.ws13_c00420{word-spacing:17.920000pt;}
.ws1d_c00420{word-spacing:17.984000pt;}
.ws19_c00420{word-spacing:21.440000pt;}
.ws18_c00420{word-spacing:21.760000pt;}
.ws21_c00420{word-spacing:22.336000pt;}
.ws3b_c00420{word-spacing:22.400000pt;}
.ws25_c00420{word-spacing:22.912000pt;}
.ws24_c00420{word-spacing:23.360000pt;}
.wsb_c00420{word-spacing:24.320000pt;}
.wsf_c00420{word-spacing:25.536000pt;}
.ws33_c00420{word-spacing:25.664000pt;}
.ws32_c00420{word-spacing:25.856000pt;}
.ws17_c00420{word-spacing:31.040000pt;}
.ws2e_c00420{word-spacing:32.640000pt;}
.ws22_c00420{word-spacing:33.920000pt;}
.ws2c_c00420{word-spacing:35.392000pt;}
.ws2d_c00420{word-spacing:35.520000pt;}
._1_c00420{margin-left:-0.960000pt;}
._0_c00420{width:0.936960pt;}
._2_c00420{width:15.104000pt;}
._3_c00420{width:17.856000pt;}
.fs1_c00420{font-size:58.560000pt;}
.fs0_c00420{font-size:64.000000pt;}
.y0_c00420{bottom:0.000000pt;}
.y1_c00420{bottom:54.887600pt;}
.y1b_c00420{bottom:130.199467pt;}
.y1a_c00420{bottom:166.999467pt;}
.y19_c00420{bottom:203.799467pt;}
.y18_c00420{bottom:240.599467pt;}
.y17_c00420{bottom:277.399467pt;}
.y16_c00420{bottom:314.199467pt;}
.y15_c00420{bottom:350.999467pt;}
.y14_c00420{bottom:387.799467pt;}
.y13_c00420{bottom:424.599467pt;}
.y12_c00420{bottom:461.399467pt;}
.y11_c00420{bottom:498.199467pt;}
.y10_c00420{bottom:534.999467pt;}
.yf_c00420{bottom:571.799467pt;}
.ye_c00420{bottom:608.599467pt;}
.yd_c00420{bottom:645.399467pt;}
.yc_c00420{bottom:682.199467pt;}
.yb_c00420{bottom:718.919467pt;}
.ya_c00420{bottom:755.719467pt;}
.y9_c00420{bottom:792.519467pt;}
.y8_c00420{bottom:829.319467pt;}
.y7_c00420{bottom:866.119467pt;}
.y6_c00420{bottom:902.919467pt;}
.y5_c00420{bottom:939.719467pt;}
.y4_c00420{bottom:976.519467pt;}
.y3_c00420{bottom:1013.319467pt;}
.y1c_c00420{bottom:1043.480107pt;}
.y2_c00420{bottom:1061.399467pt;}
.h2_c00420{height:44.800000pt;}
.h3_c00420{height:48.294844pt;}
.h4_c00420{height:68.288000pt;}
.h5_c00420{height:69.376000pt;}
.h0_c00420{height:1122.520000pt;}
.h1_c00420{height:1122.666667pt;}
.w2_c00420{width:0.000000pt;}
.w3_c00420{width:0.058667pt;}
.w0_c00420{width:793.701333pt;}
.w1_c00420{width:794.000000pt;}
.x1_c00420{left:-745.700800pt;}
.x2_c00420{left:-680.260800pt;}
.x3_c00420{left:-632.980800pt;}
.x0_c00420{left:0.000000pt;}
.x5_c00420{left:113.440000pt;}
.x6_c00420{left:160.720000pt;}
.x4_c00420{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00421;src:url('chunks/assets/font_374e6ec4d703b3957d62bdb9.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00421;src:url('chunks/assets/font_8b92e665b732fc42590e6841.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00421;src:url('chunks/assets/font_bb5528b1f3e19e892de13f7e.woff2')format("woff");}.ff4_c00421{font-family:ff4_c00421;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00421{letter-spacing:-0.576000px;}
.ls9_c00421{letter-spacing:-0.288000px;}
.ls8_c00421{letter-spacing:-0.072000px;}
.ls6_c00421{letter-spacing:0.000000px;}
.ls0_c00421{letter-spacing:0.072000px;}
.ls2_c00421{letter-spacing:0.144000px;}
.ls3_c00421{letter-spacing:19.440000px;}
.ls1_c00421{letter-spacing:33.840000px;}
.ls5_c00421{letter-spacing:50.400000px;}
.ls4_c00421{letter-spacing:54.360000px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00421{word-spacing:-18.144000px;}
.ws0_c00421{word-spacing:-18.072000px;}
.ws2_c00421{word-spacing:-18.000000px;}
.ws7_c00421{word-spacing:-17.928000px;}
.ws6_c00421{word-spacing:-17.424000px;}
.ws1f_c00421{word-spacing:-0.504000px;}
.ws9_c00421{word-spacing:-0.360000px;}
.ws19_c00421{word-spacing:-0.144000px;}
.wsa_c00421{word-spacing:-0.131760px;}
.ws20_c00421{word-spacing:-0.072000px;}
.ws5_c00421{word-spacing:0.000000px;}
.ws1d_c00421{word-spacing:0.360000px;}
.ws17_c00421{word-spacing:0.576000px;}
.ws16_c00421{word-spacing:0.720000px;}
.ws1_c00421{word-spacing:1.152000px;}
.ws1e_c00421{word-spacing:1.368000px;}
.ws11_c00421{word-spacing:1.440000px;}
.ws1a_c00421{word-spacing:4.320000px;}
.ws1c_c00421{word-spacing:4.680000px;}
.ws10_c00421{word-spacing:7.560000px;}
.wse_c00421{word-spacing:9.000000px;}
.wsf_c00421{word-spacing:9.360000px;}
.ws3_c00421{word-spacing:9.720000px;}
.wsc_c00421{word-spacing:16.128000px;}
.wsd_c00421{word-spacing:16.200000px;}
.wsb_c00421{word-spacing:22.680000px;}
.ws12_c00421{word-spacing:29.448000px;}
.ws13_c00421{word-spacing:29.520000px;}
.ws1b_c00421{word-spacing:32.400000px;}
.ws8_c00421{word-spacing:32.976000px;}
.ws15_c00421{word-spacing:36.000000px;}
.ws14_c00421{word-spacing:36.360000px;}
.ws18_c00421{word-spacing:44.640000px;}
._1_c00421{margin-left:-1.296000px;}
._0_c00421{width:1.054080px;}
._2_c00421{width:7.344000px;}
.fc1_c00421{color:rgb(0,0,0);}
.fc0_c00421{color:rgb(35,31,32);}
.fs1_c00421{font-size:65.880000px;}
.fs0_c00421{font-size:72.000000px;}
.y0_c00421{bottom:0.000000px;}
.y1_c00421{bottom:61.748550px;}
.y1a_c00421{bottom:187.874400px;}
.y19_c00421{bottom:229.274400px;}
.y18_c00421{bottom:270.674400px;}
.y17_c00421{bottom:312.074400px;}
.y16_c00421{bottom:353.474400px;}
.y15_c00421{bottom:394.874400px;}
.y14_c00421{bottom:436.274400px;}
.y13_c00421{bottom:477.674400px;}
.y12_c00421{bottom:519.074400px;}
.y11_c00421{bottom:560.474400px;}
.y10_c00421{bottom:601.874400px;}
.yf_c00421{bottom:643.274400px;}
.ye_c00421{bottom:684.674400px;}
.yd_c00421{bottom:726.074400px;}
.yc_c00421{bottom:767.474400px;}
.yb_c00421{bottom:808.784400px;}
.ya_c00421{bottom:850.184400px;}
.y9_c00421{bottom:891.584400px;}
.y8_c00421{bottom:932.984400px;}
.y7_c00421{bottom:974.384400px;}
.y6_c00421{bottom:1015.784400px;}
.y5_c00421{bottom:1057.184400px;}
.y4_c00421{bottom:1098.584400px;}
.y3_c00421{bottom:1139.984400px;}
.y2_c00421{bottom:1194.074400px;}
.h2_c00421{height:50.400000px;}
.h3_c00421{height:54.331699px;}
.h5_c00421{height:76.824000px;}
.h4_c00421{height:78.048000px;}
.h0_c00421{height:1262.835000px;}
.h1_c00421{height:1263.000000px;}
.w0_c00421{width:892.914000px;}
.w1_c00421{width:893.250000px;}
.x0_c00421{left:0.000000px;}
.x1_c00421{left:54.000000px;}
.x2_c00421{left:127.620000px;}
.x3_c00421{left:180.810000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls7_c00421{letter-spacing:-0.512000pt;}
.ls9_c00421{letter-spacing:-0.256000pt;}
.ls8_c00421{letter-spacing:-0.064000pt;}
.ls6_c00421{letter-spacing:0.000000pt;}
.ls0_c00421{letter-spacing:0.064000pt;}
.ls2_c00421{letter-spacing:0.128000pt;}
.ls3_c00421{letter-spacing:17.280000pt;}
.ls1_c00421{letter-spacing:30.080000pt;}
.ls5_c00421{letter-spacing:44.800000pt;}
.ls4_c00421{letter-spacing:48.320000pt;}
.ws4_c00421{word-spacing:-16.128000pt;}
.ws0_c00421{word-spacing:-16.064000pt;}
.ws2_c00421{word-spacing:-16.000000pt;}
.ws7_c00421{word-spacing:-15.936000pt;}
.ws6_c00421{word-spacing:-15.488000pt;}
.ws1f_c00421{word-spacing:-0.448000pt;}
.ws9_c00421{word-spacing:-0.320000pt;}
.ws19_c00421{word-spacing:-0.128000pt;}
.wsa_c00421{word-spacing:-0.117120pt;}
.ws20_c00421{word-spacing:-0.064000pt;}
.ws5_c00421{word-spacing:0.000000pt;}
.ws1d_c00421{word-spacing:0.320000pt;}
.ws17_c00421{word-spacing:0.512000pt;}
.ws16_c00421{word-spacing:0.640000pt;}
.ws1_c00421{word-spacing:1.024000pt;}
.ws1e_c00421{word-spacing:1.216000pt;}
.ws11_c00421{word-spacing:1.280000pt;}
.ws1a_c00421{word-spacing:3.840000pt;}
.ws1c_c00421{word-spacing:4.160000pt;}
.ws10_c00421{word-spacing:6.720000pt;}
.wse_c00421{word-spacing:8.000000pt;}
.wsf_c00421{word-spacing:8.320000pt;}
.ws3_c00421{word-spacing:8.640000pt;}
.wsc_c00421{word-spacing:14.336000pt;}
.wsd_c00421{word-spacing:14.400000pt;}
.wsb_c00421{word-spacing:20.160000pt;}
.ws12_c00421{word-spacing:26.176000pt;}
.ws13_c00421{word-spacing:26.240000pt;}
.ws1b_c00421{word-spacing:28.800000pt;}
.ws8_c00421{word-spacing:29.312000pt;}
.ws15_c00421{word-spacing:32.000000pt;}
.ws14_c00421{word-spacing:32.320000pt;}
.ws18_c00421{word-spacing:39.680000pt;}
._1_c00421{margin-left:-1.152000pt;}
._0_c00421{width:0.936960pt;}
._2_c00421{width:6.528000pt;}
.fs1_c00421{font-size:58.560000pt;}
.fs0_c00421{font-size:64.000000pt;}
.y0_c00421{bottom:0.000000pt;}
.y1_c00421{bottom:54.887600pt;}
.y1a_c00421{bottom:166.999467pt;}
.y19_c00421{bottom:203.799467pt;}
.y18_c00421{bottom:240.599467pt;}
.y17_c00421{bottom:277.399467pt;}
.y16_c00421{bottom:314.199467pt;}
.y15_c00421{bottom:350.999467pt;}
.y14_c00421{bottom:387.799467pt;}
.y13_c00421{bottom:424.599467pt;}
.y12_c00421{bottom:461.399467pt;}
.y11_c00421{bottom:498.199467pt;}
.y10_c00421{bottom:534.999467pt;}
.yf_c00421{bottom:571.799467pt;}
.ye_c00421{bottom:608.599467pt;}
.yd_c00421{bottom:645.399467pt;}
.yc_c00421{bottom:682.199467pt;}
.yb_c00421{bottom:718.919467pt;}
.ya_c00421{bottom:755.719467pt;}
.y9_c00421{bottom:792.519467pt;}
.y8_c00421{bottom:829.319467pt;}
.y7_c00421{bottom:866.119467pt;}
.y6_c00421{bottom:902.919467pt;}
.y5_c00421{bottom:939.719467pt;}
.y4_c00421{bottom:976.519467pt;}
.y3_c00421{bottom:1013.319467pt;}
.y2_c00421{bottom:1061.399467pt;}
.h2_c00421{height:44.800000pt;}
.h3_c00421{height:48.294844pt;}
.h5_c00421{height:68.288000pt;}
.h4_c00421{height:69.376000pt;}
.h0_c00421{height:1122.520000pt;}
.h1_c00421{height:1122.666667pt;}
.w0_c00421{width:793.701333pt;}
.w1_c00421{width:794.000000pt;}
.x0_c00421{left:0.000000pt;}
.x1_c00421{left:48.000000pt;}
.x2_c00421{left:113.440000pt;}
.x3_c00421{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00422;src:url('chunks/assets/font_405389a1eb7f5ebac3d0437c.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_f62d631b1a6bb98cfad45531.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00422;src:url('chunks/assets/font_b96c203d2f21f7b6a200b997.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00422;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00422{font-family:ff5_c00422;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00422;src:url('chunks/assets/font_404752f225fee4bf7cecf894.woff2')format("woff");}.ff6_c00422{font-family:ff6_c00422;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00422;src:url('chunks/assets/font_c148d249535a1c0ce2d65000.woff2')format("woff");}.ff7_c00422{font-family:ff7_c00422;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00422;src:url('chunks/assets/font_5cc2fd6bcaa5a8d677e33e4e.woff2')format("woff");}.ff8_c00422{font-family:ff8_c00422;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls7_c00422{letter-spacing:-0.576000px;}
.ls9_c00422{letter-spacing:-0.288000px;}
.ls8_c00422{letter-spacing:-0.072000px;}
.ls6_c00422{letter-spacing:0.000000px;}
.ls0_c00422{letter-spacing:0.072000px;}
.ls2_c00422{letter-spacing:0.144000px;}
.ls3_c00422{letter-spacing:19.440000px;}
.ls1_c00422{letter-spacing:33.840000px;}
.ls5_c00422{letter-spacing:50.400000px;}
.ls4_c00422{letter-spacing:54.360000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00422{word-spacing:-18.144000px;}
.ws0_c00422{word-spacing:-18.072000px;}
.ws2_c00422{word-spacing:-18.000000px;}
.ws7_c00422{word-spacing:-17.928000px;}
.ws6_c00422{word-spacing:-17.424000px;}
.ws2c_c00422{word-spacing:-0.576000px;}
.ws1f_c00422{word-spacing:-0.504000px;}
.ws9_c00422{word-spacing:-0.360000px;}
.ws19_c00422{word-spacing:-0.144000px;}
.wsa_c00422{word-spacing:-0.131760px;}
.ws20_c00422{word-spacing:-0.072000px;}
.ws5_c00422{word-spacing:0.000000px;}
.ws1d_c00422{word-spacing:0.360000px;}
.ws17_c00422{word-spacing:0.576000px;}
.ws16_c00422{word-spacing:0.720000px;}
.ws1_c00422{word-spacing:1.152000px;}
.ws1e_c00422{word-spacing:1.368000px;}
.ws11_c00422{word-spacing:1.440000px;}
.ws25_c00422{word-spacing:2.160000px;}
.ws1a_c00422{word-spacing:4.320000px;}
.ws1c_c00422{word-spacing:4.680000px;}
.ws21_c00422{word-spacing:5.400000px;}
.ws23_c00422{word-spacing:6.048000px;}
.ws24_c00422{word-spacing:6.120000px;}
.ws10_c00422{word-spacing:7.560000px;}
.ws29_c00422{word-spacing:8.928000px;}
.wse_c00422{word-spacing:9.000000px;}
.wsf_c00422{word-spacing:9.360000px;}
.ws3_c00422{word-spacing:9.720000px;}
.ws2d_c00422{word-spacing:11.808000px;}
.ws2e_c00422{word-spacing:11.880000px;}
.ws2f_c00422{word-spacing:12.240000px;}
.ws28_c00422{word-spacing:14.040000px;}
.ws2a_c00422{word-spacing:14.400000px;}
.wsc_c00422{word-spacing:16.128000px;}
.wsd_c00422{word-spacing:16.200000px;}
.ws27_c00422{word-spacing:19.008000px;}
.ws2b_c00422{word-spacing:21.240000px;}
.ws26_c00422{word-spacing:21.960000px;}
.wsb_c00422{word-spacing:22.680000px;}
.ws12_c00422{word-spacing:29.448000px;}
.ws13_c00422{word-spacing:29.520000px;}
.ws1b_c00422{word-spacing:32.400000px;}
.ws8_c00422{word-spacing:32.976000px;}
.ws22_c00422{word-spacing:33.120000px;}
.ws15_c00422{word-spacing:36.000000px;}
.ws14_c00422{word-spacing:36.360000px;}
.ws18_c00422{word-spacing:44.640000px;}
._1_c00422{margin-left:-1.296000px;}
._0_c00422{width:1.054080px;}
._2_c00422{width:7.344000px;}
._3_c00422{width:8.568000px;}
._4_c00422{width:12.024000px;}
.fc2_c00422{color:transparent;}
.fc1_c00422{color:rgb(0,0,0);}
.fc0_c00422{color:rgb(35,31,32);}
.fs1_c00422{font-size:65.880000px;}
.fs0_c00422{font-size:72.000000px;}
.y0_c00422{bottom:0.000000px;}
.y1_c00422{bottom:61.748550px;}
.y1a_c00422{bottom:187.874400px;}
.y19_c00422{bottom:229.274400px;}
.y18_c00422{bottom:270.674400px;}
.y17_c00422{bottom:312.074400px;}
.y16_c00422{bottom:353.474400px;}
.y15_c00422{bottom:394.874400px;}
.y14_c00422{bottom:436.274400px;}
.y13_c00422{bottom:477.674400px;}
.y12_c00422{bottom:519.074400px;}
.y11_c00422{bottom:560.474400px;}
.y10_c00422{bottom:601.874400px;}
.yf_c00422{bottom:643.274400px;}
.ye_c00422{bottom:684.674400px;}
.yd_c00422{bottom:726.074400px;}
.yc_c00422{bottom:767.474400px;}
.yb_c00422{bottom:808.784400px;}
.ya_c00422{bottom:850.184400px;}
.y9_c00422{bottom:891.584400px;}
.y8_c00422{bottom:932.984400px;}
.y7_c00422{bottom:974.384400px;}
.y6_c00422{bottom:1015.784400px;}
.y5_c00422{bottom:1057.184400px;}
.y4_c00422{bottom:1098.584400px;}
.y3_c00422{bottom:1139.984400px;}
.y1b_c00422{bottom:1173.915120px;}
.y2_c00422{bottom:1194.074400px;}
.h2_c00422{height:50.400000px;}
.h3_c00422{height:54.331699px;}
.h5_c00422{height:76.824000px;}
.h4_c00422{height:78.048000px;}
.h0_c00422{height:1262.835000px;}
.h1_c00422{height:1263.000000px;}
.w2_c00422{width:0.000000px;}
.w3_c00422{width:0.066000px;}
.w0_c00422{width:892.914000px;}
.w1_c00422{width:893.250000px;}
.x1_c00422{left:-838.913400px;}
.x2_c00422{left:-765.293400px;}
.x3_c00422{left:-712.103400px;}
.x0_c00422{left:0.000000px;}
.x5_c00422{left:127.620000px;}
.x6_c00422{left:180.810000px;}
.x4_c00422{left:804.366150px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls7_c00422{letter-spacing:-0.512000pt;}
.ls9_c00422{letter-spacing:-0.256000pt;}
.ls8_c00422{letter-spacing:-0.064000pt;}
.ls6_c00422{letter-spacing:0.000000pt;}
.ls0_c00422{letter-spacing:0.064000pt;}
.ls2_c00422{letter-spacing:0.128000pt;}
.ls3_c00422{letter-spacing:17.280000pt;}
.ls1_c00422{letter-spacing:30.080000pt;}
.ls5_c00422{letter-spacing:44.800000pt;}
.ls4_c00422{letter-spacing:48.320000pt;}
.ws4_c00422{word-spacing:-16.128000pt;}
.ws0_c00422{word-spacing:-16.064000pt;}
.ws2_c00422{word-spacing:-16.000000pt;}
.ws7_c00422{word-spacing:-15.936000pt;}
.ws6_c00422{word-spacing:-15.488000pt;}
.ws2c_c00422{word-spacing:-0.512000pt;}
.ws1f_c00422{word-spacing:-0.448000pt;}
.ws9_c00422{word-spacing:-0.320000pt;}
.ws19_c00422{word-spacing:-0.128000pt;}
.wsa_c00422{word-spacing:-0.117120pt;}
.ws20_c00422{word-spacing:-0.064000pt;}
.ws5_c00422{word-spacing:0.000000pt;}
.ws1d_c00422{word-spacing:0.320000pt;}
.ws17_c00422{word-spacing:0.512000pt;}
.ws16_c00422{word-spacing:0.640000pt;}
.ws1_c00422{word-spacing:1.024000pt;}
.ws1e_c00422{word-spacing:1.216000pt;}
.ws11_c00422{word-spacing:1.280000pt;}
.ws25_c00422{word-spacing:1.920000pt;}
.ws1a_c00422{word-spacing:3.840000pt;}
.ws1c_c00422{word-spacing:4.160000pt;}
.ws21_c00422{word-spacing:4.800000pt;}
.ws23_c00422{word-spacing:5.376000pt;}
.ws24_c00422{word-spacing:5.440000pt;}
.ws10_c00422{word-spacing:6.720000pt;}
.ws29_c00422{word-spacing:7.936000pt;}
.wse_c00422{word-spacing:8.000000pt;}
.wsf_c00422{word-spacing:8.320000pt;}
.ws3_c00422{word-spacing:8.640000pt;}
.ws2d_c00422{word-spacing:10.496000pt;}
.ws2e_c00422{word-spacing:10.560000pt;}
.ws2f_c00422{word-spacing:10.880000pt;}
.ws28_c00422{word-spacing:12.480000pt;}
.ws2a_c00422{word-spacing:12.800000pt;}
.wsc_c00422{word-spacing:14.336000pt;}
.wsd_c00422{word-spacing:14.400000pt;}
.ws27_c00422{word-spacing:16.896000pt;}
.ws2b_c00422{word-spacing:18.880000pt;}
.ws26_c00422{word-spacing:19.520000pt;}
.wsb_c00422{word-spacing:20.160000pt;}
.ws12_c00422{word-spacing:26.176000pt;}
.ws13_c00422{word-spacing:26.240000pt;}
.ws1b_c00422{word-spacing:28.800000pt;}
.ws8_c00422{word-spacing:29.312000pt;}
.ws22_c00422{word-spacing:29.440000pt;}
.ws15_c00422{word-spacing:32.000000pt;}
.ws14_c00422{word-spacing:32.320000pt;}
.ws18_c00422{word-spacing:39.680000pt;}
._1_c00422{margin-left:-1.152000pt;}
._0_c00422{width:0.936960pt;}
._2_c00422{width:6.528000pt;}
._3_c00422{width:7.616000pt;}
._4_c00422{width:10.688000pt;}
.fs1_c00422{font-size:58.560000pt;}
.fs0_c00422{font-size:64.000000pt;}
.y0_c00422{bottom:0.000000pt;}
.y1_c00422{bottom:54.887600pt;}
.y1a_c00422{bottom:166.999467pt;}
.y19_c00422{bottom:203.799467pt;}
.y18_c00422{bottom:240.599467pt;}
.y17_c00422{bottom:277.399467pt;}
.y16_c00422{bottom:314.199467pt;}
.y15_c00422{bottom:350.999467pt;}
.y14_c00422{bottom:387.799467pt;}
.y13_c00422{bottom:424.599467pt;}
.y12_c00422{bottom:461.399467pt;}
.y11_c00422{bottom:498.199467pt;}
.y10_c00422{bottom:534.999467pt;}
.yf_c00422{bottom:571.799467pt;}
.ye_c00422{bottom:608.599467pt;}
.yd_c00422{bottom:645.399467pt;}
.yc_c00422{bottom:682.199467pt;}
.yb_c00422{bottom:718.919467pt;}
.ya_c00422{bottom:755.719467pt;}
.y9_c00422{bottom:792.519467pt;}
.y8_c00422{bottom:829.319467pt;}
.y7_c00422{bottom:866.119467pt;}
.y6_c00422{bottom:902.919467pt;}
.y5_c00422{bottom:939.719467pt;}
.y4_c00422{bottom:976.519467pt;}
.y3_c00422{bottom:1013.319467pt;}
.y1b_c00422{bottom:1043.480107pt;}
.y2_c00422{bottom:1061.399467pt;}
.h2_c00422{height:44.800000pt;}
.h3_c00422{height:48.294844pt;}
.h5_c00422{height:68.288000pt;}
.h4_c00422{height:69.376000pt;}
.h0_c00422{height:1122.520000pt;}
.h1_c00422{height:1122.666667pt;}
.w2_c00422{width:0.000000pt;}
.w3_c00422{width:0.058667pt;}
.w0_c00422{width:793.701333pt;}
.w1_c00422{width:794.000000pt;}
.x1_c00422{left:-745.700800pt;}
.x2_c00422{left:-680.260800pt;}
.x3_c00422{left:-632.980800pt;}
.x0_c00422{left:0.000000pt;}
.x5_c00422{left:113.440000pt;}
.x6_c00422{left:160.720000pt;}
.x4_c00422{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00423;src:url('chunks/assets/font_1a254fc695c5531849e58328.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00423;src:url('chunks/assets/font_0f4f32987646d73ebdaf4f00.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00423;src:url('chunks/assets/font_6dc690f6f1828ae4726d6f3e.woff2')format("woff");}.ff4_c00423{font-family:ff4_c00423;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00423{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls7_c00423{letter-spacing:-0.576000px;}
.ls9_c00423{letter-spacing:-0.360000px;}
.lsa_c00423{letter-spacing:-0.288000px;}
.ls8_c00423{letter-spacing:-0.072000px;}
.ls6_c00423{letter-spacing:0.000000px;}
.ls0_c00423{letter-spacing:0.072000px;}
.ls2_c00423{letter-spacing:0.144000px;}
.ls3_c00423{letter-spacing:17.640000px;}
.ls4_c00423{letter-spacing:18.000000px;}
.ls1_c00423{letter-spacing:39.254400px;}
.ls5_c00423{letter-spacing:55.080000px;}
.sc__c00423{text-shadow:none;}
.sc0_c00423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00423{-webkit-text-stroke:0px transparent;}
.sc0_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00423{word-spacing:-18.144000px;}
.ws0_c00423{word-spacing:-18.072000px;}
.ws7_c00423{word-spacing:-18.000000px;}
.ws3_c00423{word-spacing:-17.928000px;}
.wsa_c00423{word-spacing:-17.640000px;}
.ws1_c00423{word-spacing:-17.424000px;}
.ws5_c00423{word-spacing:-0.360000px;}
.ws8_c00423{word-spacing:-0.288000px;}
.wsb_c00423{word-spacing:-0.131760px;}
.wsd_c00423{word-spacing:-0.072000px;}
.ws9_c00423{word-spacing:0.000000px;}
.ws16_c00423{word-spacing:0.288000px;}
.ws11_c00423{word-spacing:0.360000px;}
.ws10_c00423{word-spacing:0.720000px;}
.ws14_c00423{word-spacing:2.160000px;}
.wse_c00423{word-spacing:2.520000px;}
.ws4_c00423{word-spacing:2.880000px;}
.wsc_c00423{word-spacing:4.248000px;}
.ws1b_c00423{word-spacing:8.280000px;}
.ws1c_c00423{word-spacing:8.568000px;}
.ws18_c00423{word-spacing:8.640000px;}
.ws1e_c00423{word-spacing:12.888000px;}
.ws1d_c00423{word-spacing:12.960000px;}
.ws17_c00423{word-spacing:14.400000px;}
.ws2_c00423{word-spacing:14.760000px;}
.ws1a_c00423{word-spacing:15.120000px;}
.ws19_c00423{word-spacing:15.480000px;}
.ws12_c00423{word-spacing:21.240000px;}
.ws13_c00423{word-spacing:21.960000px;}
.ws15_c00423{word-spacing:25.920000px;}
.wsf_c00423{word-spacing:28.008000px;}
.ws1f_c00423{word-spacing:37.008000px;}
.ws20_c00423{word-spacing:37.080000px;}
._1_c00423{margin-left:-1.245600px;}
._0_c00423{width:1.054080px;}
._2_c00423{width:2.160000px;}
._3_c00423{width:27.525600px;}
.fc1_c00423{color:rgb(0,0,0);}
.fc0_c00423{color:rgb(35,31,32);}
.fs1_c00423{font-size:65.880000px;}
.fs0_c00423{font-size:72.000000px;}
.y0_c00423{bottom:0.000000px;}
.y1_c00423{bottom:61.748550px;}
.y1b_c00423{bottom:146.474400px;}
.y1a_c00423{bottom:187.874400px;}
.y19_c00423{bottom:229.274400px;}
.y18_c00423{bottom:270.674400px;}
.y17_c00423{bottom:312.074400px;}
.y16_c00423{bottom:353.474400px;}
.y15_c00423{bottom:394.874400px;}
.y14_c00423{bottom:436.274400px;}
.y13_c00423{bottom:477.674400px;}
.y12_c00423{bottom:519.074400px;}
.y11_c00423{bottom:560.474400px;}
.y10_c00423{bottom:601.874400px;}
.yf_c00423{bottom:643.274400px;}
.ye_c00423{bottom:684.674400px;}
.yd_c00423{bottom:726.074400px;}
.yc_c00423{bottom:767.474400px;}
.yb_c00423{bottom:808.784400px;}
.ya_c00423{bottom:850.184400px;}
.y9_c00423{bottom:891.584400px;}
.y8_c00423{bottom:932.984400px;}
.y7_c00423{bottom:974.384400px;}
.y6_c00423{bottom:1015.784400px;}
.y5_c00423{bottom:1057.184400px;}
.y4_c00423{bottom:1098.584400px;}
.y3_c00423{bottom:1139.984400px;}
.y2_c00423{bottom:1194.074400px;}
.h2_c00423{height:50.400000px;}
.h3_c00423{height:54.331699px;}
.h4_c00423{height:76.824000px;}
.h5_c00423{height:78.048000px;}
.h0_c00423{height:1262.835000px;}
.h1_c00423{height:1263.000000px;}
.w0_c00423{width:892.914000px;}
.w1_c00423{width:893.250000px;}
.x0_c00423{left:0.000000px;}
.x1_c00423{left:54.000000px;}
.x2_c00423{left:127.620000px;}
.x3_c00423{left:180.810000px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls7_c00423{letter-spacing:-0.512000pt;}
.ls9_c00423{letter-spacing:-0.320000pt;}
.lsa_c00423{letter-spacing:-0.256000pt;}
.ls8_c00423{letter-spacing:-0.064000pt;}
.ls6_c00423{letter-spacing:0.000000pt;}
.ls0_c00423{letter-spacing:0.064000pt;}
.ls2_c00423{letter-spacing:0.128000pt;}
.ls3_c00423{letter-spacing:15.680000pt;}
.ls4_c00423{letter-spacing:16.000000pt;}
.ls1_c00423{letter-spacing:34.892800pt;}
.ls5_c00423{letter-spacing:48.960000pt;}
.ws6_c00423{word-spacing:-16.128000pt;}
.ws0_c00423{word-spacing:-16.064000pt;}
.ws7_c00423{word-spacing:-16.000000pt;}
.ws3_c00423{word-spacing:-15.936000pt;}
.wsa_c00423{word-spacing:-15.680000pt;}
.ws1_c00423{word-spacing:-15.488000pt;}
.ws5_c00423{word-spacing:-0.320000pt;}
.ws8_c00423{word-spacing:-0.256000pt;}
.wsb_c00423{word-spacing:-0.117120pt;}
.wsd_c00423{word-spacing:-0.064000pt;}
.ws9_c00423{word-spacing:0.000000pt;}
.ws16_c00423{word-spacing:0.256000pt;}
.ws11_c00423{word-spacing:0.320000pt;}
.ws10_c00423{word-spacing:0.640000pt;}
.ws14_c00423{word-spacing:1.920000pt;}
.wse_c00423{word-spacing:2.240000pt;}
.ws4_c00423{word-spacing:2.560000pt;}
.wsc_c00423{word-spacing:3.776000pt;}
.ws1b_c00423{word-spacing:7.360000pt;}
.ws1c_c00423{word-spacing:7.616000pt;}
.ws18_c00423{word-spacing:7.680000pt;}
.ws1e_c00423{word-spacing:11.456000pt;}
.ws1d_c00423{word-spacing:11.520000pt;}
.ws17_c00423{word-spacing:12.800000pt;}
.ws2_c00423{word-spacing:13.120000pt;}
.ws1a_c00423{word-spacing:13.440000pt;}
.ws19_c00423{word-spacing:13.760000pt;}
.ws12_c00423{word-spacing:18.880000pt;}
.ws13_c00423{word-spacing:19.520000pt;}
.ws15_c00423{word-spacing:23.040000pt;}
.wsf_c00423{word-spacing:24.896000pt;}
.ws1f_c00423{word-spacing:32.896000pt;}
.ws20_c00423{word-spacing:32.960000pt;}
._1_c00423{margin-left:-1.107200pt;}
._0_c00423{width:0.936960pt;}
._2_c00423{width:1.920000pt;}
._3_c00423{width:24.467200pt;}
.fs1_c00423{font-size:58.560000pt;}
.fs0_c00423{font-size:64.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y1_c00423{bottom:54.887600pt;}
.y1b_c00423{bottom:130.199467pt;}
.y1a_c00423{bottom:166.999467pt;}
.y19_c00423{bottom:203.799467pt;}
.y18_c00423{bottom:240.599467pt;}
.y17_c00423{bottom:277.399467pt;}
.y16_c00423{bottom:314.199467pt;}
.y15_c00423{bottom:350.999467pt;}
.y14_c00423{bottom:387.799467pt;}
.y13_c00423{bottom:424.599467pt;}
.y12_c00423{bottom:461.399467pt;}
.y11_c00423{bottom:498.199467pt;}
.y10_c00423{bottom:534.999467pt;}
.yf_c00423{bottom:571.799467pt;}
.ye_c00423{bottom:608.599467pt;}
.yd_c00423{bottom:645.399467pt;}
.yc_c00423{bottom:682.199467pt;}
.yb_c00423{bottom:718.919467pt;}
.ya_c00423{bottom:755.719467pt;}
.y9_c00423{bottom:792.519467pt;}
.y8_c00423{bottom:829.319467pt;}
.y7_c00423{bottom:866.119467pt;}
.y6_c00423{bottom:902.919467pt;}
.y5_c00423{bottom:939.719467pt;}
.y4_c00423{bottom:976.519467pt;}
.y3_c00423{bottom:1013.319467pt;}
.y2_c00423{bottom:1061.399467pt;}
.h2_c00423{height:44.800000pt;}
.h3_c00423{height:48.294844pt;}
.h4_c00423{height:68.288000pt;}
.h5_c00423{height:69.376000pt;}
.h0_c00423{height:1122.520000pt;}
.h1_c00423{height:1122.666667pt;}
.w0_c00423{width:793.701333pt;}
.w1_c00423{width:794.000000pt;}
.x0_c00423{left:0.000000pt;}
.x1_c00423{left:48.000000pt;}
.x2_c00423{left:113.440000pt;}
.x3_c00423{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00424;src:url('chunks/assets/font_81a98a71912ac70051224736.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_ffefd697db4adc20b9d84db3.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.575000;font-style:normal;font-weight:normal;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_744a0e27160044f3b1c27f1d.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:1.592000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00424{font-family:ff5_c00424;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00424;src:url('chunks/assets/font_e4072c267e84c7fe5441a9ec.woff2')format("woff");}.ff6_c00424{font-family:ff6_c00424;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00424;src:url('chunks/assets/font_f2cfef6dba47f0ee586dd860.woff2')format("woff");}.ff7_c00424{font-family:ff7_c00424;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00424;src:url('chunks/assets/font_fbd46b28c5c7dec0c61fcb63.woff2')format("woff");}.ff8_c00424{font-family:ff8_c00424;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00424{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.lsa_c00424{letter-spacing:-0.576000px;}
.lsc_c00424{letter-spacing:-0.360000px;}
.lsd_c00424{letter-spacing:-0.288000px;}
.lse_c00424{letter-spacing:-0.216000px;}
.lsf_c00424{letter-spacing:-0.144000px;}
.lsb_c00424{letter-spacing:-0.072000px;}
.ls9_c00424{letter-spacing:0.000000px;}
.ls0_c00424{letter-spacing:0.072000px;}
.ls2_c00424{letter-spacing:0.144000px;}
.ls3_c00424{letter-spacing:17.640000px;}
.ls4_c00424{letter-spacing:18.000000px;}
.ls6_c00424{letter-spacing:21.960000px;}
.ls8_c00424{letter-spacing:34.560000px;}
.ls7_c00424{letter-spacing:35.280000px;}
.ls1_c00424{letter-spacing:39.254400px;}
.ls5_c00424{letter-spacing:55.080000px;}
.sc__c00424{text-shadow:none;}
.sc0_c00424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00424{-webkit-text-stroke:0px transparent;}
.sc0_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00424{word-spacing:-18.144000px;}
.ws0_c00424{word-spacing:-18.072000px;}
.ws7_c00424{word-spacing:-18.000000px;}
.ws3_c00424{word-spacing:-17.928000px;}
.wsd_c00424{word-spacing:-17.856000px;}
.wsa_c00424{word-spacing:-17.640000px;}
.ws1_c00424{word-spacing:-17.424000px;}
.ws5_c00424{word-spacing:-0.360000px;}
.ws8_c00424{word-spacing:-0.288000px;}
.ws2d_c00424{word-spacing:-0.144000px;}
.ws10_c00424{word-spacing:-0.131760px;}
.ws12_c00424{word-spacing:-0.072000px;}
.ws9_c00424{word-spacing:0.000000px;}
.ws19_c00424{word-spacing:0.288000px;}
.ws15_c00424{word-spacing:0.360000px;}
.ws14_c00424{word-spacing:0.720000px;}
.ws28_c00424{word-spacing:2.016000px;}
.wsb_c00424{word-spacing:2.160000px;}
.wse_c00424{word-spacing:2.520000px;}
.ws4_c00424{word-spacing:2.880000px;}
.ws2a_c00424{word-spacing:3.240000px;}
.ws2e_c00424{word-spacing:3.960000px;}
.ws11_c00424{word-spacing:4.248000px;}
.ws2f_c00424{word-spacing:4.320000px;}
.ws36_c00424{word-spacing:5.760000px;}
.ws37_c00424{word-spacing:6.120000px;}
.wsf_c00424{word-spacing:6.480000px;}
.ws2c_c00424{word-spacing:7.200000px;}
.ws2b_c00424{word-spacing:7.560000px;}
.ws1e_c00424{word-spacing:8.280000px;}
.ws29_c00424{word-spacing:8.496000px;}
.ws1f_c00424{word-spacing:8.568000px;}
.ws1b_c00424{word-spacing:8.640000px;}
.wsc_c00424{word-spacing:9.072000px;}
.ws35_c00424{word-spacing:9.720000px;}
.ws34_c00424{word-spacing:10.080000px;}
.ws25_c00424{word-spacing:11.376000px;}
.ws24_c00424{word-spacing:11.520000px;}
.ws21_c00424{word-spacing:12.888000px;}
.ws20_c00424{word-spacing:12.960000px;}
.ws1a_c00424{word-spacing:14.400000px;}
.ws2_c00424{word-spacing:14.760000px;}
.ws1d_c00424{word-spacing:15.120000px;}
.ws1c_c00424{word-spacing:15.480000px;}
.ws26_c00424{word-spacing:16.128000px;}
.ws27_c00424{word-spacing:16.200000px;}
.ws38_c00424{word-spacing:16.560000px;}
.ws30_c00424{word-spacing:16.920000px;}
.ws31_c00424{word-spacing:17.280000px;}
.ws32_c00424{word-spacing:19.728000px;}
.ws33_c00424{word-spacing:19.800000px;}
.ws16_c00424{word-spacing:21.240000px;}
.ws17_c00424{word-spacing:21.960000px;}
.ws18_c00424{word-spacing:25.920000px;}
.ws13_c00424{word-spacing:28.008000px;}
.ws22_c00424{word-spacing:37.008000px;}
.ws23_c00424{word-spacing:37.080000px;}
._1_c00424{margin-left:-1.245600px;}
._0_c00424{width:1.054080px;}
._2_c00424{width:2.160000px;}
._5_c00424{width:8.856000px;}
._4_c00424{width:21.024000px;}
._3_c00424{width:27.525600px;}
.fc2_c00424{color:transparent;}
.fc1_c00424{color:rgb(0,0,0);}
.fc0_c00424{color:rgb(35,31,32);}
.fs1_c00424{font-size:65.880000px;}
.fs0_c00424{font-size:72.000000px;}
.y0_c00424{bottom:0.000000px;}
.y1_c00424{bottom:61.748550px;}
.y1b_c00424{bottom:146.474400px;}
.y1a_c00424{bottom:187.874400px;}
.y19_c00424{bottom:229.274400px;}
.y18_c00424{bottom:270.674400px;}
.y17_c00424{bottom:312.074400px;}
.y16_c00424{bottom:353.474400px;}
.y15_c00424{bottom:394.874400px;}
.y14_c00424{bottom:436.274400px;}
.y13_c00424{bottom:477.674400px;}
.y12_c00424{bottom:519.074400px;}
.y11_c00424{bottom:560.474400px;}
.y10_c00424{bottom:601.874400px;}
.yf_c00424{bottom:643.274400px;}
.ye_c00424{bottom:684.674400px;}
.yd_c00424{bottom:726.074400px;}
.yc_c00424{bottom:767.474400px;}
.yb_c00424{bottom:808.784400px;}
.ya_c00424{bottom:850.184400px;}
.y9_c00424{bottom:891.584400px;}
.y8_c00424{bottom:932.984400px;}
.y7_c00424{bottom:974.384400px;}
.y6_c00424{bottom:1015.784400px;}
.y5_c00424{bottom:1057.184400px;}
.y4_c00424{bottom:1098.584400px;}
.y3_c00424{bottom:1139.984400px;}
.y1c_c00424{bottom:1173.915120px;}
.y2_c00424{bottom:1194.074400px;}
.h2_c00424{height:50.400000px;}
.h3_c00424{height:54.331699px;}
.h4_c00424{height:76.824000px;}
.h5_c00424{height:78.048000px;}
.h0_c00424{height:1262.835000px;}
.h1_c00424{height:1263.000000px;}
.w2_c00424{width:0.000000px;}
.w3_c00424{width:0.066000px;}
.w0_c00424{width:892.914000px;}
.w1_c00424{width:893.250000px;}
.x1_c00424{left:-838.913400px;}
.x2_c00424{left:-765.293400px;}
.x3_c00424{left:-712.103400px;}
.x0_c00424{left:0.000000px;}
.x5_c00424{left:127.620000px;}
.x6_c00424{left:180.810000px;}
.x4_c00424{left:804.366150px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.lsa_c00424{letter-spacing:-0.512000pt;}
.lsc_c00424{letter-spacing:-0.320000pt;}
.lsd_c00424{letter-spacing:-0.256000pt;}
.lse_c00424{letter-spacing:-0.192000pt;}
.lsf_c00424{letter-spacing:-0.128000pt;}
.lsb_c00424{letter-spacing:-0.064000pt;}
.ls9_c00424{letter-spacing:0.000000pt;}
.ls0_c00424{letter-spacing:0.064000pt;}
.ls2_c00424{letter-spacing:0.128000pt;}
.ls3_c00424{letter-spacing:15.680000pt;}
.ls4_c00424{letter-spacing:16.000000pt;}
.ls6_c00424{letter-spacing:19.520000pt;}
.ls8_c00424{letter-spacing:30.720000pt;}
.ls7_c00424{letter-spacing:31.360000pt;}
.ls1_c00424{letter-spacing:34.892800pt;}
.ls5_c00424{letter-spacing:48.960000pt;}
.ws6_c00424{word-spacing:-16.128000pt;}
.ws0_c00424{word-spacing:-16.064000pt;}
.ws7_c00424{word-spacing:-16.000000pt;}
.ws3_c00424{word-spacing:-15.936000pt;}
.wsd_c00424{word-spacing:-15.872000pt;}
.wsa_c00424{word-spacing:-15.680000pt;}
.ws1_c00424{word-spacing:-15.488000pt;}
.ws5_c00424{word-spacing:-0.320000pt;}
.ws8_c00424{word-spacing:-0.256000pt;}
.ws2d_c00424{word-spacing:-0.128000pt;}
.ws10_c00424{word-spacing:-0.117120pt;}
.ws12_c00424{word-spacing:-0.064000pt;}
.ws9_c00424{word-spacing:0.000000pt;}
.ws19_c00424{word-spacing:0.256000pt;}
.ws15_c00424{word-spacing:0.320000pt;}
.ws14_c00424{word-spacing:0.640000pt;}
.ws28_c00424{word-spacing:1.792000pt;}
.wsb_c00424{word-spacing:1.920000pt;}
.wse_c00424{word-spacing:2.240000pt;}
.ws4_c00424{word-spacing:2.560000pt;}
.ws2a_c00424{word-spacing:2.880000pt;}
.ws2e_c00424{word-spacing:3.520000pt;}
.ws11_c00424{word-spacing:3.776000pt;}
.ws2f_c00424{word-spacing:3.840000pt;}
.ws36_c00424{word-spacing:5.120000pt;}
.ws37_c00424{word-spacing:5.440000pt;}
.wsf_c00424{word-spacing:5.760000pt;}
.ws2c_c00424{word-spacing:6.400000pt;}
.ws2b_c00424{word-spacing:6.720000pt;}
.ws1e_c00424{word-spacing:7.360000pt;}
.ws29_c00424{word-spacing:7.552000pt;}
.ws1f_c00424{word-spacing:7.616000pt;}
.ws1b_c00424{word-spacing:7.680000pt;}
.wsc_c00424{word-spacing:8.064000pt;}
.ws35_c00424{word-spacing:8.640000pt;}
.ws34_c00424{word-spacing:8.960000pt;}
.ws25_c00424{word-spacing:10.112000pt;}
.ws24_c00424{word-spacing:10.240000pt;}
.ws21_c00424{word-spacing:11.456000pt;}
.ws20_c00424{word-spacing:11.520000pt;}
.ws1a_c00424{word-spacing:12.800000pt;}
.ws2_c00424{word-spacing:13.120000pt;}
.ws1d_c00424{word-spacing:13.440000pt;}
.ws1c_c00424{word-spacing:13.760000pt;}
.ws26_c00424{word-spacing:14.336000pt;}
.ws27_c00424{word-spacing:14.400000pt;}
.ws38_c00424{word-spacing:14.720000pt;}
.ws30_c00424{word-spacing:15.040000pt;}
.ws31_c00424{word-spacing:15.360000pt;}
.ws32_c00424{word-spacing:17.536000pt;}
.ws33_c00424{word-spacing:17.600000pt;}
.ws16_c00424{word-spacing:18.880000pt;}
.ws17_c00424{word-spacing:19.520000pt;}
.ws18_c00424{word-spacing:23.040000pt;}
.ws13_c00424{word-spacing:24.896000pt;}
.ws22_c00424{word-spacing:32.896000pt;}
.ws23_c00424{word-spacing:32.960000pt;}
._1_c00424{margin-left:-1.107200pt;}
._0_c00424{width:0.936960pt;}
._2_c00424{width:1.920000pt;}
._5_c00424{width:7.872000pt;}
._4_c00424{width:18.688000pt;}
._3_c00424{width:24.467200pt;}
.fs1_c00424{font-size:58.560000pt;}
.fs0_c00424{font-size:64.000000pt;}
.y0_c00424{bottom:0.000000pt;}
.y1_c00424{bottom:54.887600pt;}
.y1b_c00424{bottom:130.199467pt;}
.y1a_c00424{bottom:166.999467pt;}
.y19_c00424{bottom:203.799467pt;}
.y18_c00424{bottom:240.599467pt;}
.y17_c00424{bottom:277.399467pt;}
.y16_c00424{bottom:314.199467pt;}
.y15_c00424{bottom:350.999467pt;}
.y14_c00424{bottom:387.799467pt;}
.y13_c00424{bottom:424.599467pt;}
.y12_c00424{bottom:461.399467pt;}
.y11_c00424{bottom:498.199467pt;}
.y10_c00424{bottom:534.999467pt;}
.yf_c00424{bottom:571.799467pt;}
.ye_c00424{bottom:608.599467pt;}
.yd_c00424{bottom:645.399467pt;}
.yc_c00424{bottom:682.199467pt;}
.yb_c00424{bottom:718.919467pt;}
.ya_c00424{bottom:755.719467pt;}
.y9_c00424{bottom:792.519467pt;}
.y8_c00424{bottom:829.319467pt;}
.y7_c00424{bottom:866.119467pt;}
.y6_c00424{bottom:902.919467pt;}
.y5_c00424{bottom:939.719467pt;}
.y4_c00424{bottom:976.519467pt;}
.y3_c00424{bottom:1013.319467pt;}
.y1c_c00424{bottom:1043.480107pt;}
.y2_c00424{bottom:1061.399467pt;}
.h2_c00424{height:44.800000pt;}
.h3_c00424{height:48.294844pt;}
.h4_c00424{height:68.288000pt;}
.h5_c00424{height:69.376000pt;}
.h0_c00424{height:1122.520000pt;}
.h1_c00424{height:1122.666667pt;}
.w2_c00424{width:0.000000pt;}
.w3_c00424{width:0.058667pt;}
.w0_c00424{width:793.701333pt;}
.w1_c00424{width:794.000000pt;}
.x1_c00424{left:-745.700800pt;}
.x2_c00424{left:-680.260800pt;}
.x3_c00424{left:-632.980800pt;}
.x0_c00424{left:0.000000pt;}
.x5_c00424{left:113.440000pt;}
.x6_c00424{left:160.720000pt;}
.x4_c00424{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00425;src:url('chunks/assets/font_4a14e2529cc8c83e1314206a.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00425;src:url('chunks/assets/font_2cbfce818fd08d28d6fa12f2.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00425;src:url('chunks/assets/font_bbed43dca79390d3b998f64c.woff2')format("woff");}.ff4_c00425{font-family:ff4_c00425;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00425{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.ls6_c00425{letter-spacing:-0.576000px;}
.ls5_c00425{letter-spacing:-0.360000px;}
.ls7_c00425{letter-spacing:-0.288000px;}
.ls4_c00425{letter-spacing:-0.216000px;}
.ls8_c00425{letter-spacing:-0.144000px;}
.ls3_c00425{letter-spacing:0.000000px;}
.ls0_c00425{letter-spacing:0.072000px;}
.ls1_c00425{letter-spacing:0.144000px;}
.ls2_c00425{letter-spacing:33.840000px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00425{word-spacing:-18.144000px;}
.ws0_c00425{word-spacing:-18.072000px;}
.ws2_c00425{word-spacing:-18.000000px;}
.ws9_c00425{word-spacing:-17.856000px;}
.ws7_c00425{word-spacing:-17.712000px;}
.ws6_c00425{word-spacing:-17.424000px;}
.ws11_c00425{word-spacing:-0.432000px;}
.ws8_c00425{word-spacing:-0.360000px;}
.ws17_c00425{word-spacing:-0.144000px;}
.wsb_c00425{word-spacing:-0.131760px;}
.ws23_c00425{word-spacing:-0.072000px;}
.wsa_c00425{word-spacing:0.000000px;}
.ws19_c00425{word-spacing:1.008000px;}
.wsd_c00425{word-spacing:1.656000px;}
.wsc_c00425{word-spacing:1.800000px;}
.ws1e_c00425{word-spacing:3.528000px;}
.ws1d_c00425{word-spacing:3.960000px;}
.ws1b_c00425{word-spacing:4.320000px;}
.ws25_c00425{word-spacing:7.128000px;}
.ws24_c00425{word-spacing:7.200000px;}
.ws26_c00425{word-spacing:7.416000px;}
.ws22_c00425{word-spacing:7.560000px;}
.ws4_c00425{word-spacing:7.905600px;}
.ws16_c00425{word-spacing:7.920000px;}
.ws13_c00425{word-spacing:9.216000px;}
.ws14_c00425{word-spacing:9.288000px;}
.ws15_c00425{word-spacing:9.360000px;}
.wsf_c00425{word-spacing:10.368000px;}
.ws3_c00425{word-spacing:10.440000px;}
.wse_c00425{word-spacing:10.872000px;}
.ws12_c00425{word-spacing:15.480000px;}
.ws1f_c00425{word-spacing:15.840000px;}
.ws10_c00425{word-spacing:16.848000px;}
.ws5_c00425{word-spacing:22.680000px;}
.ws18_c00425{word-spacing:23.400000px;}
.ws21_c00425{word-spacing:26.856000px;}
.ws20_c00425{word-spacing:27.000000px;}
.ws1a_c00425{word-spacing:28.368000px;}
.ws1c_c00425{word-spacing:37.080000px;}
._1_c00425{margin-left:-1.008000px;}
._0_c00425{width:1.054080px;}
._3_c00425{width:2.113920px;}
._4_c00425{width:7.128000px;}
._2_c00425{width:9.216000px;}
.fc1_c00425{color:rgb(0,0,0);}
.fc0_c00425{color:rgb(35,31,32);}
.fs1_c00425{font-size:65.880000px;}
.fs0_c00425{font-size:72.000000px;}
.y0_c00425{bottom:0.000000px;}
.y1_c00425{bottom:61.748550px;}
.y1a_c00425{bottom:187.874400px;}
.y19_c00425{bottom:229.274400px;}
.y18_c00425{bottom:270.674400px;}
.y17_c00425{bottom:312.074400px;}
.y16_c00425{bottom:353.474400px;}
.y15_c00425{bottom:394.874400px;}
.y14_c00425{bottom:436.274400px;}
.y13_c00425{bottom:477.674400px;}
.y12_c00425{bottom:519.074400px;}
.y11_c00425{bottom:560.474400px;}
.y10_c00425{bottom:601.874400px;}
.yf_c00425{bottom:643.274400px;}
.ye_c00425{bottom:684.674400px;}
.yd_c00425{bottom:726.074400px;}
.yc_c00425{bottom:767.474400px;}
.yb_c00425{bottom:808.784400px;}
.ya_c00425{bottom:850.184400px;}
.y9_c00425{bottom:891.584400px;}
.y8_c00425{bottom:932.984400px;}
.y7_c00425{bottom:974.384400px;}
.y6_c00425{bottom:1015.784400px;}
.y5_c00425{bottom:1057.184400px;}
.y4_c00425{bottom:1098.584400px;}
.y3_c00425{bottom:1139.984400px;}
.y2_c00425{bottom:1194.074400px;}
.h2_c00425{height:50.400000px;}
.h3_c00425{height:54.331699px;}
.h5_c00425{height:76.824000px;}
.h4_c00425{height:78.048000px;}
.h0_c00425{height:1262.835000px;}
.h1_c00425{height:1263.000000px;}
.w0_c00425{width:892.914000px;}
.w1_c00425{width:893.250000px;}
.x0_c00425{left:0.000000px;}
.x1_c00425{left:54.000000px;}
.x2_c00425{left:127.620000px;}
.x3_c00425{left:180.810000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls6_c00425{letter-spacing:-0.512000pt;}
.ls5_c00425{letter-spacing:-0.320000pt;}
.ls7_c00425{letter-spacing:-0.256000pt;}
.ls4_c00425{letter-spacing:-0.192000pt;}
.ls8_c00425{letter-spacing:-0.128000pt;}
.ls3_c00425{letter-spacing:0.000000pt;}
.ls0_c00425{letter-spacing:0.064000pt;}
.ls1_c00425{letter-spacing:0.128000pt;}
.ls2_c00425{letter-spacing:30.080000pt;}
.ws1_c00425{word-spacing:-16.128000pt;}
.ws0_c00425{word-spacing:-16.064000pt;}
.ws2_c00425{word-spacing:-16.000000pt;}
.ws9_c00425{word-spacing:-15.872000pt;}
.ws7_c00425{word-spacing:-15.744000pt;}
.ws6_c00425{word-spacing:-15.488000pt;}
.ws11_c00425{word-spacing:-0.384000pt;}
.ws8_c00425{word-spacing:-0.320000pt;}
.ws17_c00425{word-spacing:-0.128000pt;}
.wsb_c00425{word-spacing:-0.117120pt;}
.ws23_c00425{word-spacing:-0.064000pt;}
.wsa_c00425{word-spacing:0.000000pt;}
.ws19_c00425{word-spacing:0.896000pt;}
.wsd_c00425{word-spacing:1.472000pt;}
.wsc_c00425{word-spacing:1.600000pt;}
.ws1e_c00425{word-spacing:3.136000pt;}
.ws1d_c00425{word-spacing:3.520000pt;}
.ws1b_c00425{word-spacing:3.840000pt;}
.ws25_c00425{word-spacing:6.336000pt;}
.ws24_c00425{word-spacing:6.400000pt;}
.ws26_c00425{word-spacing:6.592000pt;}
.ws22_c00425{word-spacing:6.720000pt;}
.ws4_c00425{word-spacing:7.027200pt;}
.ws16_c00425{word-spacing:7.040000pt;}
.ws13_c00425{word-spacing:8.192000pt;}
.ws14_c00425{word-spacing:8.256000pt;}
.ws15_c00425{word-spacing:8.320000pt;}
.wsf_c00425{word-spacing:9.216000pt;}
.ws3_c00425{word-spacing:9.280000pt;}
.wse_c00425{word-spacing:9.664000pt;}
.ws12_c00425{word-spacing:13.760000pt;}
.ws1f_c00425{word-spacing:14.080000pt;}
.ws10_c00425{word-spacing:14.976000pt;}
.ws5_c00425{word-spacing:20.160000pt;}
.ws18_c00425{word-spacing:20.800000pt;}
.ws21_c00425{word-spacing:23.872000pt;}
.ws20_c00425{word-spacing:24.000000pt;}
.ws1a_c00425{word-spacing:25.216000pt;}
.ws1c_c00425{word-spacing:32.960000pt;}
._1_c00425{margin-left:-0.896000pt;}
._0_c00425{width:0.936960pt;}
._3_c00425{width:1.879040pt;}
._4_c00425{width:6.336000pt;}
._2_c00425{width:8.192000pt;}
.fs1_c00425{font-size:58.560000pt;}
.fs0_c00425{font-size:64.000000pt;}
.y0_c00425{bottom:0.000000pt;}
.y1_c00425{bottom:54.887600pt;}
.y1a_c00425{bottom:166.999467pt;}
.y19_c00425{bottom:203.799467pt;}
.y18_c00425{bottom:240.599467pt;}
.y17_c00425{bottom:277.399467pt;}
.y16_c00425{bottom:314.199467pt;}
.y15_c00425{bottom:350.999467pt;}
.y14_c00425{bottom:387.799467pt;}
.y13_c00425{bottom:424.599467pt;}
.y12_c00425{bottom:461.399467pt;}
.y11_c00425{bottom:498.199467pt;}
.y10_c00425{bottom:534.999467pt;}
.yf_c00425{bottom:571.799467pt;}
.ye_c00425{bottom:608.599467pt;}
.yd_c00425{bottom:645.399467pt;}
.yc_c00425{bottom:682.199467pt;}
.yb_c00425{bottom:718.919467pt;}
.ya_c00425{bottom:755.719467pt;}
.y9_c00425{bottom:792.519467pt;}
.y8_c00425{bottom:829.319467pt;}
.y7_c00425{bottom:866.119467pt;}
.y6_c00425{bottom:902.919467pt;}
.y5_c00425{bottom:939.719467pt;}
.y4_c00425{bottom:976.519467pt;}
.y3_c00425{bottom:1013.319467pt;}
.y2_c00425{bottom:1061.399467pt;}
.h2_c00425{height:44.800000pt;}
.h3_c00425{height:48.294844pt;}
.h5_c00425{height:68.288000pt;}
.h4_c00425{height:69.376000pt;}
.h0_c00425{height:1122.520000pt;}
.h1_c00425{height:1122.666667pt;}
.w0_c00425{width:793.701333pt;}
.w1_c00425{width:794.000000pt;}
.x0_c00425{left:0.000000pt;}
.x1_c00425{left:48.000000pt;}
.x2_c00425{left:113.440000pt;}
.x3_c00425{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00426;src:url('chunks/assets/font_8783f04cb88f9e88773cff82.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00426;src:url('chunks/assets/font_8e8c820ed7d27c12097c9af1.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00426;src:url('chunks/assets/font_0303ffe65c78a4f158a6761f.woff2')format("woff");}.ff4_c00426{font-family:ff4_c00426;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00426;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00426{font-family:ff5_c00426;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00426;src:url('chunks/assets/font_10c73130a01d09beb05d1040.woff2')format("woff");}.ff6_c00426{font-family:ff6_c00426;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00426;src:url('chunks/assets/font_c15c44d58f8031e318846797.woff2')format("woff");}.ff7_c00426{font-family:ff7_c00426;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00426;src:url('chunks/assets/font_f4cd1b78d4a8271af411e9c7.woff2')format("woff");}.ff8_c00426{font-family:ff8_c00426;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00426{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.lsd_c00426{letter-spacing:-0.648000px;}
.ls9_c00426{letter-spacing:-0.576000px;}
.ls8_c00426{letter-spacing:-0.360000px;}
.lsa_c00426{letter-spacing:-0.288000px;}
.ls7_c00426{letter-spacing:-0.216000px;}
.lsb_c00426{letter-spacing:-0.144000px;}
.lsc_c00426{letter-spacing:-0.072000px;}
.ls6_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:0.072000px;}
.ls1_c00426{letter-spacing:0.144000px;}
.ls3_c00426{letter-spacing:18.000000px;}
.ls4_c00426{letter-spacing:21.240000px;}
.ls2_c00426{letter-spacing:33.840000px;}
.ls5_c00426{letter-spacing:34.920000px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00426{word-spacing:-18.144000px;}
.ws0_c00426{word-spacing:-18.072000px;}
.ws2_c00426{word-spacing:-18.000000px;}
.wsb_c00426{word-spacing:-17.928000px;}
.ws9_c00426{word-spacing:-17.856000px;}
.wsa_c00426{word-spacing:-17.784000px;}
.ws7_c00426{word-spacing:-17.712000px;}
.ws6_c00426{word-spacing:-17.424000px;}
.ws14_c00426{word-spacing:-0.432000px;}
.ws8_c00426{word-spacing:-0.360000px;}
.ws1a_c00426{word-spacing:-0.144000px;}
.wse_c00426{word-spacing:-0.131760px;}
.ws26_c00426{word-spacing:-0.072000px;}
.wsd_c00426{word-spacing:0.000000px;}
.ws2f_c00426{word-spacing:0.360000px;}
.ws1c_c00426{word-spacing:1.008000px;}
.ws2a_c00426{word-spacing:1.440000px;}
.ws10_c00426{word-spacing:1.656000px;}
.wsf_c00426{word-spacing:1.800000px;}
.ws21_c00426{word-spacing:3.528000px;}
.ws2e_c00426{word-spacing:3.600000px;}
.ws2d_c00426{word-spacing:3.888000px;}
.ws20_c00426{word-spacing:3.960000px;}
.ws1e_c00426{word-spacing:4.320000px;}
.ws35_c00426{word-spacing:6.480000px;}
.ws28_c00426{word-spacing:7.128000px;}
.ws27_c00426{word-spacing:7.200000px;}
.ws29_c00426{word-spacing:7.416000px;}
.ws25_c00426{word-spacing:7.560000px;}
.ws4_c00426{word-spacing:7.905600px;}
.ws19_c00426{word-spacing:7.920000px;}
.ws31_c00426{word-spacing:8.280000px;}
.ws32_c00426{word-spacing:8.640000px;}
.ws16_c00426{word-spacing:9.216000px;}
.ws17_c00426{word-spacing:9.288000px;}
.ws18_c00426{word-spacing:9.360000px;}
.ws12_c00426{word-spacing:10.368000px;}
.ws3_c00426{word-spacing:10.440000px;}
.ws11_c00426{word-spacing:10.872000px;}
.wsc_c00426{word-spacing:12.240000px;}
.ws33_c00426{word-spacing:12.600000px;}
.ws2b_c00426{word-spacing:13.320000px;}
.ws15_c00426{word-spacing:15.480000px;}
.ws22_c00426{word-spacing:15.840000px;}
.ws13_c00426{word-spacing:16.848000px;}
.ws30_c00426{word-spacing:16.920000px;}
.ws34_c00426{word-spacing:21.600000px;}
.ws5_c00426{word-spacing:22.680000px;}
.ws1b_c00426{word-spacing:23.400000px;}
.ws24_c00426{word-spacing:26.856000px;}
.ws23_c00426{word-spacing:27.000000px;}
.ws1d_c00426{word-spacing:28.368000px;}
.ws1f_c00426{word-spacing:37.080000px;}
.ws2c_c00426{word-spacing:50.040000px;}
._1_c00426{margin-left:-1.008000px;}
._0_c00426{width:1.054080px;}
._3_c00426{width:2.113920px;}
._4_c00426{width:7.128000px;}
._2_c00426{width:9.216000px;}
._5_c00426{width:50.472000px;}
.fc2_c00426{color:transparent;}
.fc1_c00426{color:rgb(0,0,0);}
.fc0_c00426{color:rgb(35,31,32);}
.fs1_c00426{font-size:65.880000px;}
.fs0_c00426{font-size:72.000000px;}
.y0_c00426{bottom:0.000000px;}
.y1_c00426{bottom:61.748550px;}
.y1a_c00426{bottom:187.874400px;}
.y19_c00426{bottom:229.274400px;}
.y18_c00426{bottom:270.674400px;}
.y17_c00426{bottom:312.074400px;}
.y16_c00426{bottom:353.474400px;}
.y15_c00426{bottom:394.874400px;}
.y14_c00426{bottom:436.274400px;}
.y13_c00426{bottom:477.674400px;}
.y12_c00426{bottom:519.074400px;}
.y11_c00426{bottom:560.474400px;}
.y10_c00426{bottom:601.874400px;}
.yf_c00426{bottom:643.274400px;}
.ye_c00426{bottom:684.674400px;}
.yd_c00426{bottom:726.074400px;}
.yc_c00426{bottom:767.474400px;}
.yb_c00426{bottom:808.784400px;}
.ya_c00426{bottom:850.184400px;}
.y9_c00426{bottom:891.584400px;}
.y8_c00426{bottom:932.984400px;}
.y7_c00426{bottom:974.384400px;}
.y6_c00426{bottom:1015.784400px;}
.y5_c00426{bottom:1057.184400px;}
.y4_c00426{bottom:1098.584400px;}
.y3_c00426{bottom:1139.984400px;}
.y1b_c00426{bottom:1173.915120px;}
.y2_c00426{bottom:1194.074400px;}
.h2_c00426{height:50.400000px;}
.h3_c00426{height:54.331699px;}
.h5_c00426{height:76.824000px;}
.h4_c00426{height:78.048000px;}
.h0_c00426{height:1262.835000px;}
.h1_c00426{height:1263.000000px;}
.w2_c00426{width:0.000000px;}
.w3_c00426{width:0.066000px;}
.w0_c00426{width:892.914000px;}
.w1_c00426{width:893.250000px;}
.x1_c00426{left:-838.913400px;}
.x2_c00426{left:-765.293400px;}
.x3_c00426{left:-712.103400px;}
.x0_c00426{left:0.000000px;}
.x5_c00426{left:127.620000px;}
.x6_c00426{left:180.810000px;}
.x4_c00426{left:804.366150px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.lsd_c00426{letter-spacing:-0.576000pt;}
.ls9_c00426{letter-spacing:-0.512000pt;}
.ls8_c00426{letter-spacing:-0.320000pt;}
.lsa_c00426{letter-spacing:-0.256000pt;}
.ls7_c00426{letter-spacing:-0.192000pt;}
.lsb_c00426{letter-spacing:-0.128000pt;}
.lsc_c00426{letter-spacing:-0.064000pt;}
.ls6_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:0.064000pt;}
.ls1_c00426{letter-spacing:0.128000pt;}
.ls3_c00426{letter-spacing:16.000000pt;}
.ls4_c00426{letter-spacing:18.880000pt;}
.ls2_c00426{letter-spacing:30.080000pt;}
.ls5_c00426{letter-spacing:31.040000pt;}
.ws1_c00426{word-spacing:-16.128000pt;}
.ws0_c00426{word-spacing:-16.064000pt;}
.ws2_c00426{word-spacing:-16.000000pt;}
.wsb_c00426{word-spacing:-15.936000pt;}
.ws9_c00426{word-spacing:-15.872000pt;}
.wsa_c00426{word-spacing:-15.808000pt;}
.ws7_c00426{word-spacing:-15.744000pt;}
.ws6_c00426{word-spacing:-15.488000pt;}
.ws14_c00426{word-spacing:-0.384000pt;}
.ws8_c00426{word-spacing:-0.320000pt;}
.ws1a_c00426{word-spacing:-0.128000pt;}
.wse_c00426{word-spacing:-0.117120pt;}
.ws26_c00426{word-spacing:-0.064000pt;}
.wsd_c00426{word-spacing:0.000000pt;}
.ws2f_c00426{word-spacing:0.320000pt;}
.ws1c_c00426{word-spacing:0.896000pt;}
.ws2a_c00426{word-spacing:1.280000pt;}
.ws10_c00426{word-spacing:1.472000pt;}
.wsf_c00426{word-spacing:1.600000pt;}
.ws21_c00426{word-spacing:3.136000pt;}
.ws2e_c00426{word-spacing:3.200000pt;}
.ws2d_c00426{word-spacing:3.456000pt;}
.ws20_c00426{word-spacing:3.520000pt;}
.ws1e_c00426{word-spacing:3.840000pt;}
.ws35_c00426{word-spacing:5.760000pt;}
.ws28_c00426{word-spacing:6.336000pt;}
.ws27_c00426{word-spacing:6.400000pt;}
.ws29_c00426{word-spacing:6.592000pt;}
.ws25_c00426{word-spacing:6.720000pt;}
.ws4_c00426{word-spacing:7.027200pt;}
.ws19_c00426{word-spacing:7.040000pt;}
.ws31_c00426{word-spacing:7.360000pt;}
.ws32_c00426{word-spacing:7.680000pt;}
.ws16_c00426{word-spacing:8.192000pt;}
.ws17_c00426{word-spacing:8.256000pt;}
.ws18_c00426{word-spacing:8.320000pt;}
.ws12_c00426{word-spacing:9.216000pt;}
.ws3_c00426{word-spacing:9.280000pt;}
.ws11_c00426{word-spacing:9.664000pt;}
.wsc_c00426{word-spacing:10.880000pt;}
.ws33_c00426{word-spacing:11.200000pt;}
.ws2b_c00426{word-spacing:11.840000pt;}
.ws15_c00426{word-spacing:13.760000pt;}
.ws22_c00426{word-spacing:14.080000pt;}
.ws13_c00426{word-spacing:14.976000pt;}
.ws30_c00426{word-spacing:15.040000pt;}
.ws34_c00426{word-spacing:19.200000pt;}
.ws5_c00426{word-spacing:20.160000pt;}
.ws1b_c00426{word-spacing:20.800000pt;}
.ws24_c00426{word-spacing:23.872000pt;}
.ws23_c00426{word-spacing:24.000000pt;}
.ws1d_c00426{word-spacing:25.216000pt;}
.ws1f_c00426{word-spacing:32.960000pt;}
.ws2c_c00426{word-spacing:44.480000pt;}
._1_c00426{margin-left:-0.896000pt;}
._0_c00426{width:0.936960pt;}
._3_c00426{width:1.879040pt;}
._4_c00426{width:6.336000pt;}
._2_c00426{width:8.192000pt;}
._5_c00426{width:44.864000pt;}
.fs1_c00426{font-size:58.560000pt;}
.fs0_c00426{font-size:64.000000pt;}
.y0_c00426{bottom:0.000000pt;}
.y1_c00426{bottom:54.887600pt;}
.y1a_c00426{bottom:166.999467pt;}
.y19_c00426{bottom:203.799467pt;}
.y18_c00426{bottom:240.599467pt;}
.y17_c00426{bottom:277.399467pt;}
.y16_c00426{bottom:314.199467pt;}
.y15_c00426{bottom:350.999467pt;}
.y14_c00426{bottom:387.799467pt;}
.y13_c00426{bottom:424.599467pt;}
.y12_c00426{bottom:461.399467pt;}
.y11_c00426{bottom:498.199467pt;}
.y10_c00426{bottom:534.999467pt;}
.yf_c00426{bottom:571.799467pt;}
.ye_c00426{bottom:608.599467pt;}
.yd_c00426{bottom:645.399467pt;}
.yc_c00426{bottom:682.199467pt;}
.yb_c00426{bottom:718.919467pt;}
.ya_c00426{bottom:755.719467pt;}
.y9_c00426{bottom:792.519467pt;}
.y8_c00426{bottom:829.319467pt;}
.y7_c00426{bottom:866.119467pt;}
.y6_c00426{bottom:902.919467pt;}
.y5_c00426{bottom:939.719467pt;}
.y4_c00426{bottom:976.519467pt;}
.y3_c00426{bottom:1013.319467pt;}
.y1b_c00426{bottom:1043.480107pt;}
.y2_c00426{bottom:1061.399467pt;}
.h2_c00426{height:44.800000pt;}
.h3_c00426{height:48.294844pt;}
.h5_c00426{height:68.288000pt;}
.h4_c00426{height:69.376000pt;}
.h0_c00426{height:1122.520000pt;}
.h1_c00426{height:1122.666667pt;}
.w2_c00426{width:0.000000pt;}
.w3_c00426{width:0.058667pt;}
.w0_c00426{width:793.701333pt;}
.w1_c00426{width:794.000000pt;}
.x1_c00426{left:-745.700800pt;}
.x2_c00426{left:-680.260800pt;}
.x3_c00426{left:-632.980800pt;}
.x0_c00426{left:0.000000pt;}
.x5_c00426{left:113.440000pt;}
.x6_c00426{left:160.720000pt;}
.x4_c00426{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_10c0508536c6e3f20905775a.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_cd4f9c8df7019ff172e5d3eb.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00427;src:url('chunks/assets/font_93b6f94f27ddcc7c9ae951e4.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00427{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.ls6_c00427{letter-spacing:-0.576000px;}
.ls5_c00427{letter-spacing:-0.360000px;}
.ls4_c00427{letter-spacing:0.000000px;}
.ls0_c00427{letter-spacing:0.072000px;}
.ls3_c00427{letter-spacing:0.144000px;}
.ls2_c00427{letter-spacing:18.000000px;}
.ls1_c00427{letter-spacing:21.600000px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00427{word-spacing:-18.144000px;}
.ws1_c00427{word-spacing:-18.072000px;}
.ws0_c00427{word-spacing:-18.000000px;}
.ws4_c00427{word-spacing:-17.640000px;}
.ws2_c00427{word-spacing:-17.424000px;}
.ws18_c00427{word-spacing:-0.144000px;}
.ws8_c00427{word-spacing:-0.131760px;}
.wsb_c00427{word-spacing:-0.072000px;}
.ws7_c00427{word-spacing:0.000000px;}
.wsc_c00427{word-spacing:0.360000px;}
.ws12_c00427{word-spacing:3.816000px;}
.ws11_c00427{word-spacing:3.960000px;}
.wse_c00427{word-spacing:4.320000px;}
.ws19_c00427{word-spacing:6.480000px;}
.ws13_c00427{word-spacing:7.920000px;}
.ws9_c00427{word-spacing:8.280000px;}
.wsf_c00427{word-spacing:9.000000px;}
.ws16_c00427{word-spacing:16.560000px;}
.wsd_c00427{word-spacing:18.000000px;}
.ws10_c00427{word-spacing:23.760000px;}
.ws17_c00427{word-spacing:27.648000px;}
.ws15_c00427{word-spacing:31.320000px;}
.ws6_c00427{word-spacing:32.040000px;}
.ws5_c00427{word-spacing:36.000000px;}
.ws14_c00427{word-spacing:36.720000px;}
.wsa_c00427{word-spacing:56.808000px;}
._1_c00427{margin-left:-1.152000px;}
._0_c00427{width:1.054080px;}
._3_c00427{width:2.113920px;}
._4_c00427{width:8.784000px;}
._2_c00427{width:24.048000px;}
.fc1_c00427{color:rgb(0,0,0);}
.fc0_c00427{color:rgb(35,31,32);}
.fs1_c00427{font-size:65.880000px;}
.fs0_c00427{font-size:72.000000px;}
.y0_c00427{bottom:0.000000px;}
.y1_c00427{bottom:61.748550px;}
.y19_c00427{bottom:229.274400px;}
.y18_c00427{bottom:270.674400px;}
.y17_c00427{bottom:312.074400px;}
.y16_c00427{bottom:353.474400px;}
.y15_c00427{bottom:394.874400px;}
.y14_c00427{bottom:436.274400px;}
.y13_c00427{bottom:477.674400px;}
.y12_c00427{bottom:519.074400px;}
.y11_c00427{bottom:560.474400px;}
.y10_c00427{bottom:601.874400px;}
.yf_c00427{bottom:643.274400px;}
.ye_c00427{bottom:684.674400px;}
.yd_c00427{bottom:726.074400px;}
.yc_c00427{bottom:767.474400px;}
.yb_c00427{bottom:808.784400px;}
.ya_c00427{bottom:850.184400px;}
.y9_c00427{bottom:891.584400px;}
.y8_c00427{bottom:932.984400px;}
.y7_c00427{bottom:974.384400px;}
.y6_c00427{bottom:1015.784400px;}
.y5_c00427{bottom:1057.184400px;}
.y4_c00427{bottom:1098.584400px;}
.y3_c00427{bottom:1139.984400px;}
.y2_c00427{bottom:1194.074400px;}
.h2_c00427{height:50.400000px;}
.h3_c00427{height:54.331699px;}
.h4_c00427{height:76.824000px;}
.h5_c00427{height:78.048000px;}
.h0_c00427{height:1262.835000px;}
.h1_c00427{height:1263.000000px;}
.w0_c00427{width:892.914000px;}
.w1_c00427{width:893.250000px;}
.x0_c00427{left:0.000000px;}
.x1_c00427{left:54.000000px;}
.x2_c00427{left:127.620000px;}
.x3_c00427{left:180.810000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls6_c00427{letter-spacing:-0.512000pt;}
.ls5_c00427{letter-spacing:-0.320000pt;}
.ls4_c00427{letter-spacing:0.000000pt;}
.ls0_c00427{letter-spacing:0.064000pt;}
.ls3_c00427{letter-spacing:0.128000pt;}
.ls2_c00427{letter-spacing:16.000000pt;}
.ls1_c00427{letter-spacing:19.200000pt;}
.ws3_c00427{word-spacing:-16.128000pt;}
.ws1_c00427{word-spacing:-16.064000pt;}
.ws0_c00427{word-spacing:-16.000000pt;}
.ws4_c00427{word-spacing:-15.680000pt;}
.ws2_c00427{word-spacing:-15.488000pt;}
.ws18_c00427{word-spacing:-0.128000pt;}
.ws8_c00427{word-spacing:-0.117120pt;}
.wsb_c00427{word-spacing:-0.064000pt;}
.ws7_c00427{word-spacing:0.000000pt;}
.wsc_c00427{word-spacing:0.320000pt;}
.ws12_c00427{word-spacing:3.392000pt;}
.ws11_c00427{word-spacing:3.520000pt;}
.wse_c00427{word-spacing:3.840000pt;}
.ws19_c00427{word-spacing:5.760000pt;}
.ws13_c00427{word-spacing:7.040000pt;}
.ws9_c00427{word-spacing:7.360000pt;}
.wsf_c00427{word-spacing:8.000000pt;}
.ws16_c00427{word-spacing:14.720000pt;}
.wsd_c00427{word-spacing:16.000000pt;}
.ws10_c00427{word-spacing:21.120000pt;}
.ws17_c00427{word-spacing:24.576000pt;}
.ws15_c00427{word-spacing:27.840000pt;}
.ws6_c00427{word-spacing:28.480000pt;}
.ws5_c00427{word-spacing:32.000000pt;}
.ws14_c00427{word-spacing:32.640000pt;}
.wsa_c00427{word-spacing:50.496000pt;}
._1_c00427{margin-left:-1.024000pt;}
._0_c00427{width:0.936960pt;}
._3_c00427{width:1.879040pt;}
._4_c00427{width:7.808000pt;}
._2_c00427{width:21.376000pt;}
.fs1_c00427{font-size:58.560000pt;}
.fs0_c00427{font-size:64.000000pt;}
.y0_c00427{bottom:0.000000pt;}
.y1_c00427{bottom:54.887600pt;}
.y19_c00427{bottom:203.799467pt;}
.y18_c00427{bottom:240.599467pt;}
.y17_c00427{bottom:277.399467pt;}
.y16_c00427{bottom:314.199467pt;}
.y15_c00427{bottom:350.999467pt;}
.y14_c00427{bottom:387.799467pt;}
.y13_c00427{bottom:424.599467pt;}
.y12_c00427{bottom:461.399467pt;}
.y11_c00427{bottom:498.199467pt;}
.y10_c00427{bottom:534.999467pt;}
.yf_c00427{bottom:571.799467pt;}
.ye_c00427{bottom:608.599467pt;}
.yd_c00427{bottom:645.399467pt;}
.yc_c00427{bottom:682.199467pt;}
.yb_c00427{bottom:718.919467pt;}
.ya_c00427{bottom:755.719467pt;}
.y9_c00427{bottom:792.519467pt;}
.y8_c00427{bottom:829.319467pt;}
.y7_c00427{bottom:866.119467pt;}
.y6_c00427{bottom:902.919467pt;}
.y5_c00427{bottom:939.719467pt;}
.y4_c00427{bottom:976.519467pt;}
.y3_c00427{bottom:1013.319467pt;}
.y2_c00427{bottom:1061.399467pt;}
.h2_c00427{height:44.800000pt;}
.h3_c00427{height:48.294844pt;}
.h4_c00427{height:68.288000pt;}
.h5_c00427{height:69.376000pt;}
.h0_c00427{height:1122.520000pt;}
.h1_c00427{height:1122.666667pt;}
.w0_c00427{width:793.701333pt;}
.w1_c00427{width:794.000000pt;}
.x0_c00427{left:0.000000pt;}
.x1_c00427{left:48.000000pt;}
.x2_c00427{left:113.440000pt;}
.x3_c00427{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00428;src:url('chunks/assets/font_3209199e7df4501b5bebe594.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00428;src:url('chunks/assets/font_287196d0ecf8db7044c61e25.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00428;src:url('chunks/assets/font_b05255c3f2648abb5b0da5fc.woff2')format("woff");}.ff4_c00428{font-family:ff4_c00428;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00428;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00428{font-family:ff5_c00428;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00428;src:url('chunks/assets/font_37a5628d23b282b6d8c66210.woff2')format("woff");}.ff6_c00428{font-family:ff6_c00428;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00428;src:url('chunks/assets/font_c834e63a9ae2d201b0938273.woff2')format("woff");}.ff7_c00428{font-family:ff7_c00428;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00428;src:url('chunks/assets/font_6e3a5592ae83c2fe3c996b8f.woff2')format("woff");}.ff8_c00428{font-family:ff8_c00428;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00428{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.lsa_c00428{letter-spacing:-0.576000px;}
.ls9_c00428{letter-spacing:-0.360000px;}
.lsc_c00428{letter-spacing:-0.216000px;}
.lsb_c00428{letter-spacing:-0.144000px;}
.lsd_c00428{letter-spacing:-0.072000px;}
.ls8_c00428{letter-spacing:0.000000px;}
.ls0_c00428{letter-spacing:0.072000px;}
.ls3_c00428{letter-spacing:0.144000px;}
.ls4_c00428{letter-spacing:0.151200px;}
.ls2_c00428{letter-spacing:18.000000px;}
.ls1_c00428{letter-spacing:21.600000px;}
.ls7_c00428{letter-spacing:23.040000px;}
.ls6_c00428{letter-spacing:27.698400px;}
.ls5_c00428{letter-spacing:37.440000px;}
.sc__c00428{text-shadow:none;}
.sc0_c00428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00428{-webkit-text-stroke:0px transparent;}
.sc0_c00428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00428{word-spacing:-18.144000px;}
.ws1_c00428{word-spacing:-18.072000px;}
.ws0_c00428{word-spacing:-18.000000px;}
.ws8_c00428{word-spacing:-17.856000px;}
.ws9_c00428{word-spacing:-17.784000px;}
.ws4_c00428{word-spacing:-17.640000px;}
.ws2_c00428{word-spacing:-17.424000px;}
.ws1e_c00428{word-spacing:-0.360000px;}
.ws1a_c00428{word-spacing:-0.144000px;}
.wsa_c00428{word-spacing:-0.131760px;}
.wsd_c00428{word-spacing:-0.072000px;}
.ws7_c00428{word-spacing:0.000000px;}
.ws27_c00428{word-spacing:0.144000px;}
.wse_c00428{word-spacing:0.360000px;}
.ws2b_c00428{word-spacing:1.728000px;}
.ws2c_c00428{word-spacing:1.800000px;}
.ws14_c00428{word-spacing:3.816000px;}
.ws13_c00428{word-spacing:3.960000px;}
.ws10_c00428{word-spacing:4.320000px;}
.ws28_c00428{word-spacing:5.040000px;}
.ws29_c00428{word-spacing:5.184000px;}
.ws1b_c00428{word-spacing:6.480000px;}
.ws31_c00428{word-spacing:6.768000px;}
.ws30_c00428{word-spacing:6.840000px;}
.ws15_c00428{word-spacing:7.920000px;}
.wsb_c00428{word-spacing:8.280000px;}
.ws11_c00428{word-spacing:9.000000px;}
.ws26_c00428{word-spacing:9.648000px;}
.ws25_c00428{word-spacing:9.720000px;}
.ws2a_c00428{word-spacing:10.008000px;}
.ws32_c00428{word-spacing:12.600000px;}
.ws24_c00428{word-spacing:12.888000px;}
.ws34_c00428{word-spacing:14.328000px;}
.ws35_c00428{word-spacing:14.472000px;}
.ws33_c00428{word-spacing:14.760000px;}
.ws1f_c00428{word-spacing:15.120000px;}
.ws18_c00428{word-spacing:16.560000px;}
.wsf_c00428{word-spacing:18.000000px;}
.ws21_c00428{word-spacing:19.080000px;}
.ws23_c00428{word-spacing:19.440000px;}
.ws22_c00428{word-spacing:19.800000px;}
.ws20_c00428{word-spacing:20.160000px;}
.ws12_c00428{word-spacing:23.760000px;}
.ws2e_c00428{word-spacing:26.928000px;}
.ws19_c00428{word-spacing:27.648000px;}
.ws1c_c00428{word-spacing:29.736000px;}
.ws1d_c00428{word-spacing:29.880000px;}
.ws2d_c00428{word-spacing:30.240000px;}
.ws17_c00428{word-spacing:31.320000px;}
.ws2f_c00428{word-spacing:31.680000px;}
.ws6_c00428{word-spacing:32.040000px;}
.ws5_c00428{word-spacing:36.000000px;}
.ws36_c00428{word-spacing:36.216000px;}
.ws16_c00428{word-spacing:36.720000px;}
.wsc_c00428{word-spacing:56.808000px;}
._1_c00428{margin-left:-1.159200px;}
._0_c00428{width:1.054080px;}
._3_c00428{width:2.113920px;}
._4_c00428{width:8.784000px;}
._5_c00428{width:10.368000px;}
._2_c00428{width:24.048000px;}
._6_c00428{width:61.416000px;}
.fc2_c00428{color:transparent;}
.fc1_c00428{color:rgb(0,0,0);}
.fc0_c00428{color:rgb(35,31,32);}
.fs1_c00428{font-size:65.880000px;}
.fs0_c00428{font-size:72.000000px;}
.y0_c00428{bottom:0.000000px;}
.y1_c00428{bottom:61.748550px;}
.y1c_c00428{bottom:187.874400px;}
.y19_c00428{bottom:229.274400px;}
.y18_c00428{bottom:270.674400px;}
.y17_c00428{bottom:312.074400px;}
.y16_c00428{bottom:353.474400px;}
.y15_c00428{bottom:394.874400px;}
.y14_c00428{bottom:436.274400px;}
.y13_c00428{bottom:477.674400px;}
.y12_c00428{bottom:519.074400px;}
.y11_c00428{bottom:560.474400px;}
.y1b_c00428{bottom:601.784400px;}
.y10_c00428{bottom:601.874400px;}
.yf_c00428{bottom:643.274400px;}
.ye_c00428{bottom:684.674400px;}
.yd_c00428{bottom:726.074400px;}
.yc_c00428{bottom:767.474400px;}
.yb_c00428{bottom:808.784400px;}
.ya_c00428{bottom:850.184400px;}
.y9_c00428{bottom:891.584400px;}
.y8_c00428{bottom:932.984400px;}
.y7_c00428{bottom:974.384400px;}
.y6_c00428{bottom:1015.784400px;}
.y5_c00428{bottom:1057.184400px;}
.y4_c00428{bottom:1098.584400px;}
.y3_c00428{bottom:1139.984400px;}
.y1a_c00428{bottom:1173.915120px;}
.y2_c00428{bottom:1194.074400px;}
.h2_c00428{height:50.400000px;}
.h3_c00428{height:54.331699px;}
.h4_c00428{height:76.824000px;}
.h5_c00428{height:78.048000px;}
.h0_c00428{height:1262.835000px;}
.h1_c00428{height:1263.000000px;}
.w2_c00428{width:0.000000px;}
.w3_c00428{width:0.066000px;}
.w0_c00428{width:892.914000px;}
.w1_c00428{width:893.250000px;}
.x1_c00428{left:-838.913400px;}
.x2_c00428{left:-765.293400px;}
.x3_c00428{left:-712.103400px;}
.x0_c00428{left:0.000000px;}
.x5_c00428{left:127.620000px;}
.x6_c00428{left:180.810000px;}
.x4_c00428{left:804.366150px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.lsa_c00428{letter-spacing:-0.512000pt;}
.ls9_c00428{letter-spacing:-0.320000pt;}
.lsc_c00428{letter-spacing:-0.192000pt;}
.lsb_c00428{letter-spacing:-0.128000pt;}
.lsd_c00428{letter-spacing:-0.064000pt;}
.ls8_c00428{letter-spacing:0.000000pt;}
.ls0_c00428{letter-spacing:0.064000pt;}
.ls3_c00428{letter-spacing:0.128000pt;}
.ls4_c00428{letter-spacing:0.134400pt;}
.ls2_c00428{letter-spacing:16.000000pt;}
.ls1_c00428{letter-spacing:19.200000pt;}
.ls7_c00428{letter-spacing:20.480000pt;}
.ls6_c00428{letter-spacing:24.620800pt;}
.ls5_c00428{letter-spacing:33.280000pt;}
.ws3_c00428{word-spacing:-16.128000pt;}
.ws1_c00428{word-spacing:-16.064000pt;}
.ws0_c00428{word-spacing:-16.000000pt;}
.ws8_c00428{word-spacing:-15.872000pt;}
.ws9_c00428{word-spacing:-15.808000pt;}
.ws4_c00428{word-spacing:-15.680000pt;}
.ws2_c00428{word-spacing:-15.488000pt;}
.ws1e_c00428{word-spacing:-0.320000pt;}
.ws1a_c00428{word-spacing:-0.128000pt;}
.wsa_c00428{word-spacing:-0.117120pt;}
.wsd_c00428{word-spacing:-0.064000pt;}
.ws7_c00428{word-spacing:0.000000pt;}
.ws27_c00428{word-spacing:0.128000pt;}
.wse_c00428{word-spacing:0.320000pt;}
.ws2b_c00428{word-spacing:1.536000pt;}
.ws2c_c00428{word-spacing:1.600000pt;}
.ws14_c00428{word-spacing:3.392000pt;}
.ws13_c00428{word-spacing:3.520000pt;}
.ws10_c00428{word-spacing:3.840000pt;}
.ws28_c00428{word-spacing:4.480000pt;}
.ws29_c00428{word-spacing:4.608000pt;}
.ws1b_c00428{word-spacing:5.760000pt;}
.ws31_c00428{word-spacing:6.016000pt;}
.ws30_c00428{word-spacing:6.080000pt;}
.ws15_c00428{word-spacing:7.040000pt;}
.wsb_c00428{word-spacing:7.360000pt;}
.ws11_c00428{word-spacing:8.000000pt;}
.ws26_c00428{word-spacing:8.576000pt;}
.ws25_c00428{word-spacing:8.640000pt;}
.ws2a_c00428{word-spacing:8.896000pt;}
.ws32_c00428{word-spacing:11.200000pt;}
.ws24_c00428{word-spacing:11.456000pt;}
.ws34_c00428{word-spacing:12.736000pt;}
.ws35_c00428{word-spacing:12.864000pt;}
.ws33_c00428{word-spacing:13.120000pt;}
.ws1f_c00428{word-spacing:13.440000pt;}
.ws18_c00428{word-spacing:14.720000pt;}
.wsf_c00428{word-spacing:16.000000pt;}
.ws21_c00428{word-spacing:16.960000pt;}
.ws23_c00428{word-spacing:17.280000pt;}
.ws22_c00428{word-spacing:17.600000pt;}
.ws20_c00428{word-spacing:17.920000pt;}
.ws12_c00428{word-spacing:21.120000pt;}
.ws2e_c00428{word-spacing:23.936000pt;}
.ws19_c00428{word-spacing:24.576000pt;}
.ws1c_c00428{word-spacing:26.432000pt;}
.ws1d_c00428{word-spacing:26.560000pt;}
.ws2d_c00428{word-spacing:26.880000pt;}
.ws17_c00428{word-spacing:27.840000pt;}
.ws2f_c00428{word-spacing:28.160000pt;}
.ws6_c00428{word-spacing:28.480000pt;}
.ws5_c00428{word-spacing:32.000000pt;}
.ws36_c00428{word-spacing:32.192000pt;}
.ws16_c00428{word-spacing:32.640000pt;}
.wsc_c00428{word-spacing:50.496000pt;}
._1_c00428{margin-left:-1.030400pt;}
._0_c00428{width:0.936960pt;}
._3_c00428{width:1.879040pt;}
._4_c00428{width:7.808000pt;}
._5_c00428{width:9.216000pt;}
._2_c00428{width:21.376000pt;}
._6_c00428{width:54.592000pt;}
.fs1_c00428{font-size:58.560000pt;}
.fs0_c00428{font-size:64.000000pt;}
.y0_c00428{bottom:0.000000pt;}
.y1_c00428{bottom:54.887600pt;}
.y1c_c00428{bottom:166.999467pt;}
.y19_c00428{bottom:203.799467pt;}
.y18_c00428{bottom:240.599467pt;}
.y17_c00428{bottom:277.399467pt;}
.y16_c00428{bottom:314.199467pt;}
.y15_c00428{bottom:350.999467pt;}
.y14_c00428{bottom:387.799467pt;}
.y13_c00428{bottom:424.599467pt;}
.y12_c00428{bottom:461.399467pt;}
.y11_c00428{bottom:498.199467pt;}
.y1b_c00428{bottom:534.919467pt;}
.y10_c00428{bottom:534.999467pt;}
.yf_c00428{bottom:571.799467pt;}
.ye_c00428{bottom:608.599467pt;}
.yd_c00428{bottom:645.399467pt;}
.yc_c00428{bottom:682.199467pt;}
.yb_c00428{bottom:718.919467pt;}
.ya_c00428{bottom:755.719467pt;}
.y9_c00428{bottom:792.519467pt;}
.y8_c00428{bottom:829.319467pt;}
.y7_c00428{bottom:866.119467pt;}
.y6_c00428{bottom:902.919467pt;}
.y5_c00428{bottom:939.719467pt;}
.y4_c00428{bottom:976.519467pt;}
.y3_c00428{bottom:1013.319467pt;}
.y1a_c00428{bottom:1043.480107pt;}
.y2_c00428{bottom:1061.399467pt;}
.h2_c00428{height:44.800000pt;}
.h3_c00428{height:48.294844pt;}
.h4_c00428{height:68.288000pt;}
.h5_c00428{height:69.376000pt;}
.h0_c00428{height:1122.520000pt;}
.h1_c00428{height:1122.666667pt;}
.w2_c00428{width:0.000000pt;}
.w3_c00428{width:0.058667pt;}
.w0_c00428{width:793.701333pt;}
.w1_c00428{width:794.000000pt;}
.x1_c00428{left:-745.700800pt;}
.x2_c00428{left:-680.260800pt;}
.x3_c00428{left:-632.980800pt;}
.x0_c00428{left:0.000000pt;}
.x5_c00428{left:113.440000pt;}
.x6_c00428{left:160.720000pt;}
.x4_c00428{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00429;src:url('chunks/assets/font_a96f22b0e0ec14ffdf6df544.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00429;src:url('chunks/assets/font_b3327ffcf5f727dd44bfeb92.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00429;src:url('chunks/assets/font_24fd20466b1d0117e7373d50.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00429{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls9_c00429{letter-spacing:-0.360000px;}
.lsa_c00429{letter-spacing:-0.288000px;}
.ls8_c00429{letter-spacing:-0.144000px;}
.ls7_c00429{letter-spacing:0.000000px;}
.ls1_c00429{letter-spacing:0.072000px;}
.ls5_c00429{letter-spacing:0.144000px;}
.ls3_c00429{letter-spacing:17.640000px;}
.ls2_c00429{letter-spacing:21.240000px;}
.ls6_c00429{letter-spacing:21.600000px;}
.ls0_c00429{letter-spacing:24.840000px;}
.ls4_c00429{letter-spacing:28.800000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00429{word-spacing:-18.144000px;}
.ws1_c00429{word-spacing:-18.072000px;}
.ws2_c00429{word-spacing:-18.000000px;}
.ws4_c00429{word-spacing:-17.856000px;}
.ws0_c00429{word-spacing:-17.712000px;}
.ws3_c00429{word-spacing:-17.640000px;}
.ws1b_c00429{word-spacing:-0.360000px;}
.ws14_c00429{word-spacing:-0.144000px;}
.ws9_c00429{word-spacing:-0.131760px;}
.ws17_c00429{word-spacing:-0.072000px;}
.ws7_c00429{word-spacing:0.000000px;}
.ws11_c00429{word-spacing:0.360000px;}
.wse_c00429{word-spacing:3.096000px;}
.wsf_c00429{word-spacing:3.240000px;}
.ws1d_c00429{word-spacing:3.600000px;}
.ws1e_c00429{word-spacing:5.760000px;}
.ws1f_c00429{word-spacing:6.048000px;}
.ws20_c00429{word-spacing:6.480000px;}
.wsc_c00429{word-spacing:6.840000px;}
.wsa_c00429{word-spacing:7.128000px;}
.wsb_c00429{word-spacing:7.200000px;}
.ws8_c00429{word-spacing:9.720000px;}
.ws1c_c00429{word-spacing:10.080000px;}
.ws13_c00429{word-spacing:10.368000px;}
.ws12_c00429{word-spacing:10.440000px;}
.ws10_c00429{word-spacing:12.888000px;}
.ws19_c00429{word-spacing:13.968000px;}
.ws1a_c00429{word-spacing:14.040000px;}
.ws16_c00429{word-spacing:20.088000px;}
.ws15_c00429{word-spacing:20.160000px;}
.ws6_c00429{word-spacing:20.520000px;}
.wsd_c00429{word-spacing:23.040000px;}
.ws18_c00429{word-spacing:30.240000px;}
._1_c00429{margin-left:-1.080000px;}
._0_c00429{width:1.054080px;}
.fc1_c00429{color:rgb(0,0,0);}
.fc0_c00429{color:rgb(35,31,32);}
.fs1_c00429{font-size:65.880000px;}
.fs0_c00429{font-size:72.000000px;}
.y0_c00429{bottom:0.000000px;}
.y1_c00429{bottom:61.748550px;}
.y1b_c00429{bottom:146.474400px;}
.y1a_c00429{bottom:187.874400px;}
.y19_c00429{bottom:229.274400px;}
.y18_c00429{bottom:270.674400px;}
.y17_c00429{bottom:312.074400px;}
.y16_c00429{bottom:353.474400px;}
.y15_c00429{bottom:394.874400px;}
.y14_c00429{bottom:436.274400px;}
.y13_c00429{bottom:477.674400px;}
.y12_c00429{bottom:519.074400px;}
.y11_c00429{bottom:560.474400px;}
.y10_c00429{bottom:601.874400px;}
.yf_c00429{bottom:643.274400px;}
.ye_c00429{bottom:684.674400px;}
.yd_c00429{bottom:726.074400px;}
.yc_c00429{bottom:767.474400px;}
.yb_c00429{bottom:808.784400px;}
.ya_c00429{bottom:850.184400px;}
.y9_c00429{bottom:891.584400px;}
.y8_c00429{bottom:932.984400px;}
.y7_c00429{bottom:974.384400px;}
.y6_c00429{bottom:1015.784400px;}
.y5_c00429{bottom:1057.184400px;}
.y4_c00429{bottom:1098.584400px;}
.y3_c00429{bottom:1139.984400px;}
.y2_c00429{bottom:1194.074400px;}
.h2_c00429{height:50.400000px;}
.h3_c00429{height:54.331699px;}
.h4_c00429{height:76.824000px;}
.h5_c00429{height:78.048000px;}
.h0_c00429{height:1262.835000px;}
.h1_c00429{height:1263.000000px;}
.w0_c00429{width:892.914000px;}
.w1_c00429{width:893.250000px;}
.x0_c00429{left:0.000000px;}
.x1_c00429{left:54.000000px;}
.x2_c00429{left:127.620000px;}
.x3_c00429{left:180.810000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls9_c00429{letter-spacing:-0.320000pt;}
.lsa_c00429{letter-spacing:-0.256000pt;}
.ls8_c00429{letter-spacing:-0.128000pt;}
.ls7_c00429{letter-spacing:0.000000pt;}
.ls1_c00429{letter-spacing:0.064000pt;}
.ls5_c00429{letter-spacing:0.128000pt;}
.ls3_c00429{letter-spacing:15.680000pt;}
.ls2_c00429{letter-spacing:18.880000pt;}
.ls6_c00429{letter-spacing:19.200000pt;}
.ls0_c00429{letter-spacing:22.080000pt;}
.ls4_c00429{letter-spacing:25.600000pt;}
.ws5_c00429{word-spacing:-16.128000pt;}
.ws1_c00429{word-spacing:-16.064000pt;}
.ws2_c00429{word-spacing:-16.000000pt;}
.ws4_c00429{word-spacing:-15.872000pt;}
.ws0_c00429{word-spacing:-15.744000pt;}
.ws3_c00429{word-spacing:-15.680000pt;}
.ws1b_c00429{word-spacing:-0.320000pt;}
.ws14_c00429{word-spacing:-0.128000pt;}
.ws9_c00429{word-spacing:-0.117120pt;}
.ws17_c00429{word-spacing:-0.064000pt;}
.ws7_c00429{word-spacing:0.000000pt;}
.ws11_c00429{word-spacing:0.320000pt;}
.wse_c00429{word-spacing:2.752000pt;}
.wsf_c00429{word-spacing:2.880000pt;}
.ws1d_c00429{word-spacing:3.200000pt;}
.ws1e_c00429{word-spacing:5.120000pt;}
.ws1f_c00429{word-spacing:5.376000pt;}
.ws20_c00429{word-spacing:5.760000pt;}
.wsc_c00429{word-spacing:6.080000pt;}
.wsa_c00429{word-spacing:6.336000pt;}
.wsb_c00429{word-spacing:6.400000pt;}
.ws8_c00429{word-spacing:8.640000pt;}
.ws1c_c00429{word-spacing:8.960000pt;}
.ws13_c00429{word-spacing:9.216000pt;}
.ws12_c00429{word-spacing:9.280000pt;}
.ws10_c00429{word-spacing:11.456000pt;}
.ws19_c00429{word-spacing:12.416000pt;}
.ws1a_c00429{word-spacing:12.480000pt;}
.ws16_c00429{word-spacing:17.856000pt;}
.ws15_c00429{word-spacing:17.920000pt;}
.ws6_c00429{word-spacing:18.240000pt;}
.wsd_c00429{word-spacing:20.480000pt;}
.ws18_c00429{word-spacing:26.880000pt;}
._1_c00429{margin-left:-0.960000pt;}
._0_c00429{width:0.936960pt;}
.fs1_c00429{font-size:58.560000pt;}
.fs0_c00429{font-size:64.000000pt;}
.y0_c00429{bottom:0.000000pt;}
.y1_c00429{bottom:54.887600pt;}
.y1b_c00429{bottom:130.199467pt;}
.y1a_c00429{bottom:166.999467pt;}
.y19_c00429{bottom:203.799467pt;}
.y18_c00429{bottom:240.599467pt;}
.y17_c00429{bottom:277.399467pt;}
.y16_c00429{bottom:314.199467pt;}
.y15_c00429{bottom:350.999467pt;}
.y14_c00429{bottom:387.799467pt;}
.y13_c00429{bottom:424.599467pt;}
.y12_c00429{bottom:461.399467pt;}
.y11_c00429{bottom:498.199467pt;}
.y10_c00429{bottom:534.999467pt;}
.yf_c00429{bottom:571.799467pt;}
.ye_c00429{bottom:608.599467pt;}
.yd_c00429{bottom:645.399467pt;}
.yc_c00429{bottom:682.199467pt;}
.yb_c00429{bottom:718.919467pt;}
.ya_c00429{bottom:755.719467pt;}
.y9_c00429{bottom:792.519467pt;}
.y8_c00429{bottom:829.319467pt;}
.y7_c00429{bottom:866.119467pt;}
.y6_c00429{bottom:902.919467pt;}
.y5_c00429{bottom:939.719467pt;}
.y4_c00429{bottom:976.519467pt;}
.y3_c00429{bottom:1013.319467pt;}
.y2_c00429{bottom:1061.399467pt;}
.h2_c00429{height:44.800000pt;}
.h3_c00429{height:48.294844pt;}
.h4_c00429{height:68.288000pt;}
.h5_c00429{height:69.376000pt;}
.h0_c00429{height:1122.520000pt;}
.h1_c00429{height:1122.666667pt;}
.w0_c00429{width:793.701333pt;}
.w1_c00429{width:794.000000pt;}
.x0_c00429{left:0.000000pt;}
.x1_c00429{left:48.000000pt;}
.x2_c00429{left:113.440000pt;}
.x3_c00429{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00430;src:url('chunks/assets/font_148f88c40b9ba83320badda8.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_54cfec24e018d02da67ac6f8.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00430;src:url('chunks/assets/font_e2ad4e5d51b6a377a8895639.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00430;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00430{font-family:ff5_c00430;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00430;src:url('chunks/assets/font_5c7d0f4683d2a619b4038373.woff2')format("woff");}.ff6_c00430{font-family:ff6_c00430;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00430;src:url('chunks/assets/font_8824cd7b24eb237b7004546c.woff2')format("woff");}.ff7_c00430{font-family:ff7_c00430;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00430;src:url('chunks/assets/font_3fb82e54b0cd40ae8f8edd78.woff2')format("woff");}.ff8_c00430{font-family:ff8_c00430;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00430;src:url('chunks/assets/font_1af08d55df21f972f7818da8.woff2')format("woff");}.ff9_c00430{font-family:ff9_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;}
.m0_c00430{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.ls10_c00430{letter-spacing:-0.648000px;}
.lsd_c00430{letter-spacing:-0.360000px;}
.lse_c00430{letter-spacing:-0.288000px;}
.lsc_c00430{letter-spacing:-0.144000px;}
.lsf_c00430{letter-spacing:-0.072000px;}
.lsb_c00430{letter-spacing:0.000000px;}
.ls1_c00430{letter-spacing:0.072000px;}
.ls5_c00430{letter-spacing:0.144000px;}
.ls3_c00430{letter-spacing:17.640000px;}
.ls7_c00430{letter-spacing:18.000000px;}
.ls2_c00430{letter-spacing:21.240000px;}
.ls6_c00430{letter-spacing:21.600000px;}
.ls0_c00430{letter-spacing:24.840000px;}
.lsa_c00430{letter-spacing:25.560000px;}
.ls4_c00430{letter-spacing:28.800000px;}
.ls8_c00430{letter-spacing:32.760000px;}
.ls9_c00430{letter-spacing:36.000000px;}
.sc__c00430{text-shadow:none;}
.sc0_c00430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00430{-webkit-text-stroke:0px transparent;}
.sc0_c00430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00430{word-spacing:-18.144000px;}
.ws1_c00430{word-spacing:-18.072000px;}
.ws2_c00430{word-spacing:-18.000000px;}
.wsa_c00430{word-spacing:-17.928000px;}
.ws4_c00430{word-spacing:-17.856000px;}
.ws0_c00430{word-spacing:-17.712000px;}
.ws3_c00430{word-spacing:-17.640000px;}
.wsb_c00430{word-spacing:-17.352000px;}
.ws1f_c00430{word-spacing:-0.360000px;}
.ws18_c00430{word-spacing:-0.144000px;}
.wsd_c00430{word-spacing:-0.131760px;}
.ws1b_c00430{word-spacing:-0.072000px;}
.ws7_c00430{word-spacing:0.000000px;}
.ws2f_c00430{word-spacing:0.144000px;}
.ws15_c00430{word-spacing:0.360000px;}
.ws2b_c00430{word-spacing:0.720000px;}
.ws2d_c00430{word-spacing:1.800000px;}
.ws28_c00430{word-spacing:2.952000px;}
.ws12_c00430{word-spacing:3.096000px;}
.ws13_c00430{word-spacing:3.240000px;}
.ws21_c00430{word-spacing:3.600000px;}
.ws30_c00430{word-spacing:5.328000px;}
.ws2a_c00430{word-spacing:5.400000px;}
.ws31_c00430{word-spacing:5.688000px;}
.ws22_c00430{word-spacing:5.760000px;}
.ws23_c00430{word-spacing:6.048000px;}
.ws32_c00430{word-spacing:6.120000px;}
.ws24_c00430{word-spacing:6.480000px;}
.ws10_c00430{word-spacing:6.840000px;}
.wse_c00430{word-spacing:7.128000px;}
.wsf_c00430{word-spacing:7.200000px;}
.ws33_c00430{word-spacing:7.560000px;}
.wsc_c00430{word-spacing:7.704000px;}
.ws8_c00430{word-spacing:9.720000px;}
.ws20_c00430{word-spacing:10.080000px;}
.ws17_c00430{word-spacing:10.368000px;}
.ws16_c00430{word-spacing:10.440000px;}
.ws14_c00430{word-spacing:12.888000px;}
.ws1d_c00430{word-spacing:13.968000px;}
.ws1e_c00430{word-spacing:14.040000px;}
.ws29_c00430{word-spacing:14.760000px;}
.ws25_c00430{word-spacing:19.800000px;}
.ws1a_c00430{word-spacing:20.088000px;}
.ws19_c00430{word-spacing:20.160000px;}
.ws6_c00430{word-spacing:20.520000px;}
.ws9_c00430{word-spacing:20.880000px;}
.ws2c_c00430{word-spacing:21.240000px;}
.ws2e_c00430{word-spacing:22.320000px;}
.ws11_c00430{word-spacing:23.040000px;}
.ws1c_c00430{word-spacing:30.240000px;}
.ws27_c00430{word-spacing:30.960000px;}
.ws26_c00430{word-spacing:31.176000px;}
._1_c00430{margin-left:-1.080000px;}
._0_c00430{width:1.054080px;}
._3_c00430{width:6.984000px;}
._2_c00430{width:22.320000px;}
.fc2_c00430{color:transparent;}
.fc1_c00430{color:rgb(0,0,0);}
.fc0_c00430{color:rgb(35,31,32);}
.fs1_c00430{font-size:65.880000px;}
.fs0_c00430{font-size:72.000000px;}
.y0_c00430{bottom:0.000000px;}
.y1_c00430{bottom:61.748550px;}
.y1b_c00430{bottom:146.474400px;}
.y2c_c00430{bottom:180.674400px;}
.y1a_c00430{bottom:187.874400px;}
.y2b_c00430{bottom:222.074400px;}
.y19_c00430{bottom:229.274400px;}
.y2a_c00430{bottom:263.474400px;}
.y18_c00430{bottom:270.674400px;}
.y29_c00430{bottom:304.874400px;}
.y17_c00430{bottom:312.074400px;}
.y28_c00430{bottom:346.274400px;}
.y16_c00430{bottom:353.474400px;}
.y27_c00430{bottom:387.674400px;}
.y15_c00430{bottom:394.874400px;}
.y26_c00430{bottom:429.074400px;}
.y14_c00430{bottom:436.274400px;}
.y25_c00430{bottom:470.474400px;}
.y13_c00430{bottom:477.674400px;}
.y24_c00430{bottom:511.874400px;}
.y12_c00430{bottom:519.074400px;}
.y23_c00430{bottom:553.274400px;}
.y11_c00430{bottom:560.474400px;}
.y22_c00430{bottom:594.674400px;}
.y10_c00430{bottom:601.874400px;}
.y21_c00430{bottom:636.074400px;}
.yf_c00430{bottom:643.274400px;}
.y20_c00430{bottom:677.474400px;}
.ye_c00430{bottom:684.674400px;}
.y1f_c00430{bottom:718.874400px;}
.yd_c00430{bottom:726.074400px;}
.y1e_c00430{bottom:760.274400px;}
.yc_c00430{bottom:767.474400px;}
.y1d_c00430{bottom:806.354400px;}
.yb_c00430{bottom:808.784400px;}
.ya_c00430{bottom:850.184400px;}
.y9_c00430{bottom:891.584400px;}
.y8_c00430{bottom:932.984400px;}
.y7_c00430{bottom:974.384400px;}
.y6_c00430{bottom:1015.784400px;}
.y5_c00430{bottom:1057.184400px;}
.y4_c00430{bottom:1098.584400px;}
.y3_c00430{bottom:1139.984400px;}
.y1c_c00430{bottom:1173.915120px;}
.y2_c00430{bottom:1194.074400px;}
.h2_c00430{height:50.400000px;}
.h3_c00430{height:54.331699px;}
.h4_c00430{height:76.824000px;}
.h5_c00430{height:78.048000px;}
.h0_c00430{height:1262.835000px;}
.h1_c00430{height:1263.000000px;}
.w2_c00430{width:0.000000px;}
.w3_c00430{width:0.066000px;}
.w0_c00430{width:892.914000px;}
.w1_c00430{width:893.250000px;}
.x1_c00430{left:-838.913400px;}
.x2_c00430{left:-765.293400px;}
.x3_c00430{left:-712.103400px;}
.x0_c00430{left:0.000000px;}
.x5_c00430{left:127.620000px;}
.x6_c00430{left:180.810000px;}
.x4_c00430{left:804.366150px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls10_c00430{letter-spacing:-0.576000pt;}
.lsd_c00430{letter-spacing:-0.320000pt;}
.lse_c00430{letter-spacing:-0.256000pt;}
.lsc_c00430{letter-spacing:-0.128000pt;}
.lsf_c00430{letter-spacing:-0.064000pt;}
.lsb_c00430{letter-spacing:0.000000pt;}
.ls1_c00430{letter-spacing:0.064000pt;}
.ls5_c00430{letter-spacing:0.128000pt;}
.ls3_c00430{letter-spacing:15.680000pt;}
.ls7_c00430{letter-spacing:16.000000pt;}
.ls2_c00430{letter-spacing:18.880000pt;}
.ls6_c00430{letter-spacing:19.200000pt;}
.ls0_c00430{letter-spacing:22.080000pt;}
.lsa_c00430{letter-spacing:22.720000pt;}
.ls4_c00430{letter-spacing:25.600000pt;}
.ls8_c00430{letter-spacing:29.120000pt;}
.ls9_c00430{letter-spacing:32.000000pt;}
.ws5_c00430{word-spacing:-16.128000pt;}
.ws1_c00430{word-spacing:-16.064000pt;}
.ws2_c00430{word-spacing:-16.000000pt;}
.wsa_c00430{word-spacing:-15.936000pt;}
.ws4_c00430{word-spacing:-15.872000pt;}
.ws0_c00430{word-spacing:-15.744000pt;}
.ws3_c00430{word-spacing:-15.680000pt;}
.wsb_c00430{word-spacing:-15.424000pt;}
.ws1f_c00430{word-spacing:-0.320000pt;}
.ws18_c00430{word-spacing:-0.128000pt;}
.wsd_c00430{word-spacing:-0.117120pt;}
.ws1b_c00430{word-spacing:-0.064000pt;}
.ws7_c00430{word-spacing:0.000000pt;}
.ws2f_c00430{word-spacing:0.128000pt;}
.ws15_c00430{word-spacing:0.320000pt;}
.ws2b_c00430{word-spacing:0.640000pt;}
.ws2d_c00430{word-spacing:1.600000pt;}
.ws28_c00430{word-spacing:2.624000pt;}
.ws12_c00430{word-spacing:2.752000pt;}
.ws13_c00430{word-spacing:2.880000pt;}
.ws21_c00430{word-spacing:3.200000pt;}
.ws30_c00430{word-spacing:4.736000pt;}
.ws2a_c00430{word-spacing:4.800000pt;}
.ws31_c00430{word-spacing:5.056000pt;}
.ws22_c00430{word-spacing:5.120000pt;}
.ws23_c00430{word-spacing:5.376000pt;}
.ws32_c00430{word-spacing:5.440000pt;}
.ws24_c00430{word-spacing:5.760000pt;}
.ws10_c00430{word-spacing:6.080000pt;}
.wse_c00430{word-spacing:6.336000pt;}
.wsf_c00430{word-spacing:6.400000pt;}
.ws33_c00430{word-spacing:6.720000pt;}
.wsc_c00430{word-spacing:6.848000pt;}
.ws8_c00430{word-spacing:8.640000pt;}
.ws20_c00430{word-spacing:8.960000pt;}
.ws17_c00430{word-spacing:9.216000pt;}
.ws16_c00430{word-spacing:9.280000pt;}
.ws14_c00430{word-spacing:11.456000pt;}
.ws1d_c00430{word-spacing:12.416000pt;}
.ws1e_c00430{word-spacing:12.480000pt;}
.ws29_c00430{word-spacing:13.120000pt;}
.ws25_c00430{word-spacing:17.600000pt;}
.ws1a_c00430{word-spacing:17.856000pt;}
.ws19_c00430{word-spacing:17.920000pt;}
.ws6_c00430{word-spacing:18.240000pt;}
.ws9_c00430{word-spacing:18.560000pt;}
.ws2c_c00430{word-spacing:18.880000pt;}
.ws2e_c00430{word-spacing:19.840000pt;}
.ws11_c00430{word-spacing:20.480000pt;}
.ws1c_c00430{word-spacing:26.880000pt;}
.ws27_c00430{word-spacing:27.520000pt;}
.ws26_c00430{word-spacing:27.712000pt;}
._1_c00430{margin-left:-0.960000pt;}
._0_c00430{width:0.936960pt;}
._3_c00430{width:6.208000pt;}
._2_c00430{width:19.840000pt;}
.fs1_c00430{font-size:58.560000pt;}
.fs0_c00430{font-size:64.000000pt;}
.y0_c00430{bottom:0.000000pt;}
.y1_c00430{bottom:54.887600pt;}
.y1b_c00430{bottom:130.199467pt;}
.y2c_c00430{bottom:160.599467pt;}
.y1a_c00430{bottom:166.999467pt;}
.y2b_c00430{bottom:197.399467pt;}
.y19_c00430{bottom:203.799467pt;}
.y2a_c00430{bottom:234.199467pt;}
.y18_c00430{bottom:240.599467pt;}
.y29_c00430{bottom:270.999467pt;}
.y17_c00430{bottom:277.399467pt;}
.y28_c00430{bottom:307.799467pt;}
.y16_c00430{bottom:314.199467pt;}
.y27_c00430{bottom:344.599467pt;}
.y15_c00430{bottom:350.999467pt;}
.y26_c00430{bottom:381.399467pt;}
.y14_c00430{bottom:387.799467pt;}
.y25_c00430{bottom:418.199467pt;}
.y13_c00430{bottom:424.599467pt;}
.y24_c00430{bottom:454.999467pt;}
.y12_c00430{bottom:461.399467pt;}
.y23_c00430{bottom:491.799467pt;}
.y11_c00430{bottom:498.199467pt;}
.y22_c00430{bottom:528.599467pt;}
.y10_c00430{bottom:534.999467pt;}
.y21_c00430{bottom:565.399467pt;}
.yf_c00430{bottom:571.799467pt;}
.y20_c00430{bottom:602.199467pt;}
.ye_c00430{bottom:608.599467pt;}
.y1f_c00430{bottom:638.999467pt;}
.yd_c00430{bottom:645.399467pt;}
.y1e_c00430{bottom:675.799467pt;}
.yc_c00430{bottom:682.199467pt;}
.y1d_c00430{bottom:716.759467pt;}
.yb_c00430{bottom:718.919467pt;}
.ya_c00430{bottom:755.719467pt;}
.y9_c00430{bottom:792.519467pt;}
.y8_c00430{bottom:829.319467pt;}
.y7_c00430{bottom:866.119467pt;}
.y6_c00430{bottom:902.919467pt;}
.y5_c00430{bottom:939.719467pt;}
.y4_c00430{bottom:976.519467pt;}
.y3_c00430{bottom:1013.319467pt;}
.y1c_c00430{bottom:1043.480107pt;}
.y2_c00430{bottom:1061.399467pt;}
.h2_c00430{height:44.800000pt;}
.h3_c00430{height:48.294844pt;}
.h4_c00430{height:68.288000pt;}
.h5_c00430{height:69.376000pt;}
.h0_c00430{height:1122.520000pt;}
.h1_c00430{height:1122.666667pt;}
.w2_c00430{width:0.000000pt;}
.w3_c00430{width:0.058667pt;}
.w0_c00430{width:793.701333pt;}
.w1_c00430{width:794.000000pt;}
.x1_c00430{left:-745.700800pt;}
.x2_c00430{left:-680.260800pt;}
.x3_c00430{left:-632.980800pt;}
.x0_c00430{left:0.000000pt;}
.x5_c00430{left:113.440000pt;}
.x6_c00430{left:160.720000pt;}
.x4_c00430{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00431;src:url('chunks/assets/font_fe5539e0469e26d9e5a38f11.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_107eb45781f1a43ead095693.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00431{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.ls2_c00431{letter-spacing:-0.072000px;}
.ls0_c00431{letter-spacing:0.000000px;}
.ls1_c00431{letter-spacing:0.144000px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00431{word-spacing:-18.000000px;}
.ws1_c00431{word-spacing:-17.928000px;}
.ws3_c00431{word-spacing:-0.131760px;}
.ws2_c00431{word-spacing:0.000000px;}
.ws4_c00431{word-spacing:23.616000px;}
.ws5_c00431{word-spacing:23.760000px;}
._1_c00431{margin-left:-1.080000px;}
._0_c00431{width:1.054080px;}
.fc1_c00431{color:rgb(0,0,0);}
.fc0_c00431{color:rgb(35,31,32);}
.fs1_c00431{font-size:65.880000px;}
.fs0_c00431{font-size:72.000000px;}
.y0_c00431{bottom:0.000000px;}
.y1_c00431{bottom:61.748550px;}
.y4_c00431{bottom:1098.584400px;}
.y3_c00431{bottom:1139.984400px;}
.y2_c00431{bottom:1194.074400px;}
.h2_c00431{height:50.400000px;}
.h3_c00431{height:54.331699px;}
.h4_c00431{height:76.824000px;}
.h0_c00431{height:1262.835000px;}
.h1_c00431{height:1263.000000px;}
.w0_c00431{width:892.914000px;}
.w1_c00431{width:893.250000px;}
.x0_c00431{left:0.000000px;}
.x1_c00431{left:54.000000px;}
.x2_c00431{left:127.620000px;}
.x3_c00431{left:180.810000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls2_c00431{letter-spacing:-0.064000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ls1_c00431{letter-spacing:0.128000pt;}
.ws0_c00431{word-spacing:-16.000000pt;}
.ws1_c00431{word-spacing:-15.936000pt;}
.ws3_c00431{word-spacing:-0.117120pt;}
.ws2_c00431{word-spacing:0.000000pt;}
.ws4_c00431{word-spacing:20.992000pt;}
.ws5_c00431{word-spacing:21.120000pt;}
._1_c00431{margin-left:-0.960000pt;}
._0_c00431{width:0.936960pt;}
.fs1_c00431{font-size:58.560000pt;}
.fs0_c00431{font-size:64.000000pt;}
.y0_c00431{bottom:0.000000pt;}
.y1_c00431{bottom:54.887600pt;}
.y4_c00431{bottom:976.519467pt;}
.y3_c00431{bottom:1013.319467pt;}
.y2_c00431{bottom:1061.399467pt;}
.h2_c00431{height:44.800000pt;}
.h3_c00431{height:48.294844pt;}
.h4_c00431{height:68.288000pt;}
.h0_c00431{height:1122.520000pt;}
.h1_c00431{height:1122.666667pt;}
.w0_c00431{width:793.701333pt;}
.w1_c00431{width:794.000000pt;}
.x0_c00431{left:0.000000pt;}
.x1_c00431{left:48.000000pt;}
.x2_c00431{left:113.440000pt;}
.x3_c00431{left:160.720000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_1ba5b4e4b84183c82f66049c.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00432;src:url('chunks/assets/font_874e834579597c183b29ebca.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.200000;font-style:normal;font-weight:normal;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_190a8f4c1c0033654846e571.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:0.838000;font-style:normal;font-weight:normal;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_ee5a6ccb1b14c7550bae592f.woff2')format("woff");}.ff4_c00432{font-family:ff4_c00432;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00432;src:url('chunks/assets/font_11dc4a4f8e0589706457a80b.woff2')format("woff");}.ff5_c00432{font-family:ff5_c00432;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00432{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_c00432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls0_c00432{letter-spacing:-8.865660px;}
.ls1_c00432{letter-spacing:-5.910450px;}
.ls2_c00432{letter-spacing:0.000000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00432{word-spacing:-23.928794px;}
.ws1_c00432{word-spacing:0.000000px;}
._9_c00432{margin-left:-9.180000px;}
._2_c00432{margin-left:-7.464886px;}
._0_c00432{margin-left:-6.081843px;}
._3_c00432{margin-left:-4.842919px;}
._1_c00432{margin-left:-3.227100px;}
._7_c00432{margin-left:-1.857231px;}
._6_c00432{width:1.261456px;}
._8_c00432{width:2.307676px;}
._5_c00432{width:3.498516px;}
._4_c00432{width:5.134742px;}
.fc4_c00432{color:transparent;}
.fc3_c00432{color:rgb(21,46,77);}
.fc1_c00432{color:rgb(33,56,93);}
.fc2_c00432{color:rgb(255,255,255);}
.fc0_c00432{color:rgb(35,31,32);}
.fs6_c00432{font-size:82.712400px;}
.fs8_c00432{font-size:86.074800px;}
.fs5_c00432{font-size:90.672600px;}
.fs7_c00432{font-size:101.182800px;}
.fs1_c00432{font-size:118.209000px;}
.fs4_c00432{font-size:140.419200px;}
.fs2_c00432{font-size:142.438800px;}
.fs0_c00432{font-size:177.313200px;}
.fs9_c00432{font-size:180.852600px;}
.fsa_c00432{font-size:270.000000px;}
.fs3_c00432{font-size:270.249600px;}
.y0_c00432{bottom:0.000000px;}
.y8_c00432{bottom:5.667150px;}
.y7_c00432{bottom:40.011000px;}
.yf_c00432{bottom:44.148750px;}
.y6_c00432{bottom:57.722100px;}
.y5_c00432{bottom:99.848100px;}
.y10_c00432{bottom:178.737300px;}
.y3_c00432{bottom:262.677150px;}
.ya_c00432{bottom:294.183360px;}
.y2_c00432{bottom:294.203550px;}
.y1_c00432{bottom:336.694200px;}
.y4_c00432{bottom:382.056000px;}
.yb_c00432{bottom:438.735300px;}
.yd_c00432{bottom:1065.832727px;}
.y9_c00432{bottom:1086.373350px;}
.yc_c00432{bottom:1090.945050px;}
.ye_c00432{bottom:1101.080358px;}
.h9_c00432{height:68.403155px;}
.h8_c00432{height:74.986240px;}
.hb_c00432{height:91.841812px;}
.ha_c00432{height:107.962048px;}
.h7_c00432{height:121.455000px;}
.h3_c00432{height:126.129003px;}
.h6_c00432{height:136.768301px;}
.h4_c00432{height:151.982200px;}
.hc_c00432{height:176.150432px;}
.h2_c00432{height:189.193184px;}
.h5_c00432{height:263.223110px;}
.hd_c00432{height:288.090000px;}
.h0_c00432{height:1262.835000px;}
.h1_c00432{height:1263.000000px;}
.w2_c00432{width:-530.130000px;}
.w3_c00432{width:892.912500px;}
.w0_c00432{width:892.914000px;}
.w1_c00432{width:893.250000px;}
.x7_c00432{left:-955.968750px;}
.x8_c00432{left:-75.157350px;}
.xb_c00432{left:-68.612700px;}
.x9_c00432{left:-49.659284px;}
.xd_c00432{left:-45.273900px;}
.xc_c00432{left:-31.514461px;}
.xa_c00432{left:-24.161219px;}
.x0_c00432{left:0.000000px;}
.x1_c00432{left:88.031250px;}
.x2_c00432{left:143.121150px;}
.xe_c00432{left:193.884450px;}
.x3_c00432{left:308.253000px;}
.x5_c00432{left:322.694850px;}
.x6_c00432{left:460.459050px;}
.x4_c00432{left:501.011700px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls0_c00432{letter-spacing:-7.880587pt;}
.ls1_c00432{letter-spacing:-5.253733pt;}
.ls2_c00432{letter-spacing:0.000000pt;}
.ws0_c00432{word-spacing:-21.270039pt;}
.ws1_c00432{word-spacing:0.000000pt;}
._9_c00432{margin-left:-8.160000pt;}
._2_c00432{margin-left:-6.635454pt;}
._0_c00432{margin-left:-5.406082pt;}
._3_c00432{margin-left:-4.304817pt;}
._1_c00432{margin-left:-2.868534pt;}
._7_c00432{margin-left:-1.650872pt;}
._6_c00432{width:1.121294pt;}
._8_c00432{width:2.051268pt;}
._5_c00432{width:3.109792pt;}
._4_c00432{width:4.564215pt;}
.fs6_c00432{font-size:73.522133pt;}
.fs8_c00432{font-size:76.510933pt;}
.fs5_c00432{font-size:80.597867pt;}
.fs7_c00432{font-size:89.940267pt;}
.fs1_c00432{font-size:105.074667pt;}
.fs4_c00432{font-size:124.817067pt;}
.fs2_c00432{font-size:126.612267pt;}
.fs0_c00432{font-size:157.611733pt;}
.fs9_c00432{font-size:160.757867pt;}
.fsa_c00432{font-size:240.000000pt;}
.fs3_c00432{font-size:240.221867pt;}
.y0_c00432{bottom:0.000000pt;}
.y8_c00432{bottom:5.037467pt;}
.y7_c00432{bottom:35.565333pt;}
.yf_c00432{bottom:39.243333pt;}
.y6_c00432{bottom:51.308533pt;}
.y5_c00432{bottom:88.753867pt;}
.y10_c00432{bottom:158.877600pt;}
.y3_c00432{bottom:233.490800pt;}
.ya_c00432{bottom:261.496320pt;}
.y2_c00432{bottom:261.514267pt;}
.y1_c00432{bottom:299.283733pt;}
.y4_c00432{bottom:339.605333pt;}
.yb_c00432{bottom:389.986933pt;}
.yd_c00432{bottom:947.406869pt;}
.y9_c00432{bottom:965.665200pt;}
.yc_c00432{bottom:969.728933pt;}
.ye_c00432{bottom:978.738096pt;}
.h9_c00432{height:60.802804pt;}
.h8_c00432{height:66.654436pt;}
.hb_c00432{height:81.637166pt;}
.ha_c00432{height:95.966265pt;}
.h7_c00432{height:107.960000pt;}
.h3_c00432{height:112.114669pt;}
.h6_c00432{height:121.571823pt;}
.h4_c00432{height:135.095289pt;}
.hc_c00432{height:156.578162pt;}
.h2_c00432{height:168.171719pt;}
.h5_c00432{height:233.976098pt;}
.hd_c00432{height:256.080000pt;}
.h0_c00432{height:1122.520000pt;}
.h1_c00432{height:1122.666667pt;}
.w2_c00432{width:-471.226667pt;}
.w3_c00432{width:793.700000pt;}
.w0_c00432{width:793.701333pt;}
.w1_c00432{width:794.000000pt;}
.x7_c00432{left:-849.750000pt;}
.x8_c00432{left:-66.806533pt;}
.xb_c00432{left:-60.989067pt;}
.x9_c00432{left:-44.141586pt;}
.xd_c00432{left:-40.243467pt;}
.xc_c00432{left:-28.012854pt;}
.xa_c00432{left:-21.476639pt;}
.x0_c00432{left:0.000000pt;}
.x1_c00432{left:78.250000pt;}
.x2_c00432{left:127.218800pt;}
.xe_c00432{left:172.341733pt;}
.x3_c00432{left:274.002667pt;}
.x5_c00432{left:286.839867pt;}
.x6_c00432{left:409.296933pt;}
.x4_c00432{left:445.343733pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
.sc__c00433{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
}
.y0_c00433{bottom:0.000000px;}
.h0_c00433{height:1262.835000px;}
.h1_c00433{height:1263.000000px;}
.w0_c00433{width:892.914000px;}
.w1_c00433{width:893.250000px;}
.x0_c00433{left:0.000000px;}
@media print{
.y0_c00433{bottom:0.000000pt;}
.h0_c00433{height:1122.520000pt;}
.h1_c00433{height:1122.666667pt;}
.w0_c00433{width:793.701333pt;}
.w1_c00433{width:794.000000pt;}
.x0_c00433{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_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;}
.sc__c00434{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
}
.y0_c00434{bottom:0.000000px;}
.h0_c00434{height:1262.835000px;}
.h1_c00434{height:1263.000000px;}
.w0_c00434{width:892.914000px;}
.w1_c00434{width:893.250000px;}
.x0_c00434{left:0.000000px;}
@media print{
.y0_c00434{bottom:0.000000pt;}
.h0_c00434{height:1122.520000pt;}
.h1_c00434{height:1122.666667pt;}
.w0_c00434{width:793.701333pt;}
.w1_c00434{width:794.000000pt;}
.x0_c00434{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_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;}
.sc__c00435{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00435{-webkit-text-stroke:0px transparent;}
}
.y0_c00435{bottom:0.000000px;}
.h0_c00435{height:1262.835000px;}
.h1_c00435{height:1263.000000px;}
.w0_c00435{width:892.914000px;}
.w1_c00435{width:893.250000px;}
.x0_c00435{left:0.000000px;}
@media print{
.y0_c00435{bottom:0.000000pt;}
.h0_c00435{height:1122.520000pt;}
.h1_c00435{height:1122.666667pt;}
.w0_c00435{width:793.701333pt;}
.w1_c00435{width:794.000000pt;}
.x0_c00435{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_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;}
.sc__c00436{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
}
.y0_c00436{bottom:0.000000px;}
.h0_c00436{height:1262.835000px;}
.h1_c00436{height:1263.000000px;}
.w0_c00436{width:892.914000px;}
.w1_c00436{width:893.250000px;}
.x0_c00436{left:0.000000px;}
@media print{
.y0_c00436{bottom:0.000000pt;}
.h0_c00436{height:1122.520000pt;}
.h1_c00436{height:1122.666667pt;}
.w0_c00436{width:793.701333pt;}
.w1_c00436{width:794.000000pt;}
.x0_c00436{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_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;}
.sc__c00437{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
}
.y0_c00437{bottom:0.000000px;}
.h0_c00437{height:1262.835000px;}
.h1_c00437{height:1263.000000px;}
.w0_c00437{width:892.914000px;}
.w1_c00437{width:893.250000px;}
.x0_c00437{left:0.000000px;}
@media print{
.y0_c00437{bottom:0.000000pt;}
.h0_c00437{height:1122.520000pt;}
.h1_c00437{height:1122.666667pt;}
.w0_c00437{width:793.701333pt;}
.w1_c00437{width:794.000000pt;}
.x0_c00437{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_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00438;src:url('chunks/assets/font_7f279555b7a84d687cf370ff.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00438;src:url('chunks/assets/font_2dde44bba40c4d3f12da4c77.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00438;src:url('chunks/assets/font_95f2011ff9ff2fb4061f7d5f.woff2')format("woff");}.ff4_c00438{font-family:ff4_c00438;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls5_c00438{letter-spacing:-0.144000px;}
.ls6_c00438{letter-spacing:-0.072000px;}
.ls4_c00438{letter-spacing:0.000000px;}
.ls0_c00438{letter-spacing:0.072000px;}
.ls2_c00438{letter-spacing:0.144000px;}
.ls1_c00438{letter-spacing:28.584000px;}
.ls3_c00438{letter-spacing:45.871200px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00438{word-spacing:-18.000000px;}
.ws2_c00438{word-spacing:-17.856000px;}
.ws12_c00438{word-spacing:-0.432000px;}
.ws11_c00438{word-spacing:-0.360000px;}
.ws4_c00438{word-spacing:-0.216000px;}
.wsd_c00438{word-spacing:-0.144000px;}
.ws7_c00438{word-spacing:-0.131760px;}
.wsc_c00438{word-spacing:-0.072000px;}
.ws5_c00438{word-spacing:0.000000px;}
.ws1_c00438{word-spacing:0.144000px;}
.ws6_c00438{word-spacing:0.197640px;}
.ws8_c00438{word-spacing:0.432000px;}
.ws3_c00438{word-spacing:0.504000px;}
.ws13_c00438{word-spacing:1.008000px;}
.ws14_c00438{word-spacing:8.208000px;}
.ws9_c00438{word-spacing:10.008000px;}
.wsa_c00438{word-spacing:10.080000px;}
.wse_c00438{word-spacing:10.368000px;}
.wsf_c00438{word-spacing:10.440000px;}
.wsb_c00438{word-spacing:14.688000px;}
.ws10_c00438{word-spacing:27.648000px;}
._1_c00438{margin-left:-1.080000px;}
._0_c00438{width:1.119960px;}
.fc1_c00438{color:rgb(0,0,0);}
.fc0_c00438{color:rgb(35,31,32);}
.fs1_c00438{font-size:65.880000px;}
.fs0_c00438{font-size:72.000000px;}
.y0_c00438{bottom:0.000000px;}
.y1_c00438{bottom:61.748550px;}
.y23_c00438{bottom:154.304250px;}
.y22_c00438{bottom:185.354250px;}
.y21_c00438{bottom:216.314250px;}
.y20_c00438{bottom:247.364250px;}
.y1f_c00438{bottom:278.414250px;}
.y1e_c00438{bottom:309.464250px;}
.y1d_c00438{bottom:340.514250px;}
.y1c_c00438{bottom:371.564250px;}
.y1b_c00438{bottom:402.614250px;}
.y1a_c00438{bottom:433.664250px;}
.y19_c00438{bottom:464.714250px;}
.y18_c00438{bottom:495.764250px;}
.y17_c00438{bottom:526.814250px;}
.y16_c00438{bottom:557.864250px;}
.y15_c00438{bottom:588.914250px;}
.y14_c00438{bottom:619.964250px;}
.y13_c00438{bottom:651.014250px;}
.y12_c00438{bottom:682.064250px;}
.y11_c00438{bottom:713.114250px;}
.y10_c00438{bottom:744.164250px;}
.yf_c00438{bottom:775.214250px;}
.ye_c00438{bottom:806.264250px;}
.yd_c00438{bottom:837.314250px;}
.yc_c00438{bottom:868.364250px;}
.yb_c00438{bottom:899.414250px;}
.ya_c00438{bottom:930.464250px;}
.y9_c00438{bottom:961.514250px;}
.y8_c00438{bottom:992.564250px;}
.y7_c00438{bottom:1023.614250px;}
.y6_c00438{bottom:1062.314250px;}
.y4_c00438{bottom:1101.104400px;}
.y5_c00438{bottom:1139.714400px;}
.y3_c00438{bottom:1173.915120px;}
.y2_c00438{bottom:1194.074400px;}
.h2_c00438{height:50.400000px;}
.h3_c00438{height:54.331699px;}
.h4_c00438{height:76.824000px;}
.h0_c00438{height:1262.835000px;}
.h1_c00438{height:1263.000000px;}
.w0_c00438{width:892.914000px;}
.w1_c00438{width:893.250000px;}
.x0_c00438{left:0.000000px;}
.x2_c00438{left:127.620000px;}
.x3_c00438{left:159.570000px;}
.x1_c00438{left:804.366150px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls5_c00438{letter-spacing:-0.128000pt;}
.ls6_c00438{letter-spacing:-0.064000pt;}
.ls4_c00438{letter-spacing:0.000000pt;}
.ls0_c00438{letter-spacing:0.064000pt;}
.ls2_c00438{letter-spacing:0.128000pt;}
.ls1_c00438{letter-spacing:25.408000pt;}
.ls3_c00438{letter-spacing:40.774400pt;}
.ws0_c00438{word-spacing:-16.000000pt;}
.ws2_c00438{word-spacing:-15.872000pt;}
.ws12_c00438{word-spacing:-0.384000pt;}
.ws11_c00438{word-spacing:-0.320000pt;}
.ws4_c00438{word-spacing:-0.192000pt;}
.wsd_c00438{word-spacing:-0.128000pt;}
.ws7_c00438{word-spacing:-0.117120pt;}
.wsc_c00438{word-spacing:-0.064000pt;}
.ws5_c00438{word-spacing:0.000000pt;}
.ws1_c00438{word-spacing:0.128000pt;}
.ws6_c00438{word-spacing:0.175680pt;}
.ws8_c00438{word-spacing:0.384000pt;}
.ws3_c00438{word-spacing:0.448000pt;}
.ws13_c00438{word-spacing:0.896000pt;}
.ws14_c00438{word-spacing:7.296000pt;}
.ws9_c00438{word-spacing:8.896000pt;}
.wsa_c00438{word-spacing:8.960000pt;}
.wse_c00438{word-spacing:9.216000pt;}
.wsf_c00438{word-spacing:9.280000pt;}
.wsb_c00438{word-spacing:13.056000pt;}
.ws10_c00438{word-spacing:24.576000pt;}
._1_c00438{margin-left:-0.960000pt;}
._0_c00438{width:0.995520pt;}
.fs1_c00438{font-size:58.560000pt;}
.fs0_c00438{font-size:64.000000pt;}
.y0_c00438{bottom:0.000000pt;}
.y1_c00438{bottom:54.887600pt;}
.y23_c00438{bottom:137.159333pt;}
.y22_c00438{bottom:164.759333pt;}
.y21_c00438{bottom:192.279333pt;}
.y20_c00438{bottom:219.879333pt;}
.y1f_c00438{bottom:247.479333pt;}
.y1e_c00438{bottom:275.079333pt;}
.y1d_c00438{bottom:302.679333pt;}
.y1c_c00438{bottom:330.279333pt;}
.y1b_c00438{bottom:357.879333pt;}
.y1a_c00438{bottom:385.479333pt;}
.y19_c00438{bottom:413.079333pt;}
.y18_c00438{bottom:440.679333pt;}
.y17_c00438{bottom:468.279333pt;}
.y16_c00438{bottom:495.879333pt;}
.y15_c00438{bottom:523.479333pt;}
.y14_c00438{bottom:551.079333pt;}
.y13_c00438{bottom:578.679333pt;}
.y12_c00438{bottom:606.279333pt;}
.y11_c00438{bottom:633.879333pt;}
.y10_c00438{bottom:661.479333pt;}
.yf_c00438{bottom:689.079333pt;}
.ye_c00438{bottom:716.679333pt;}
.yd_c00438{bottom:744.279333pt;}
.yc_c00438{bottom:771.879333pt;}
.yb_c00438{bottom:799.479333pt;}
.ya_c00438{bottom:827.079333pt;}
.y9_c00438{bottom:854.679333pt;}
.y8_c00438{bottom:882.279333pt;}
.y7_c00438{bottom:909.879333pt;}
.y6_c00438{bottom:944.279333pt;}
.y4_c00438{bottom:978.759467pt;}
.y5_c00438{bottom:1013.079467pt;}
.y3_c00438{bottom:1043.480107pt;}
.y2_c00438{bottom:1061.399467pt;}
.h2_c00438{height:44.800000pt;}
.h3_c00438{height:48.294844pt;}
.h4_c00438{height:68.288000pt;}
.h0_c00438{height:1122.520000pt;}
.h1_c00438{height:1122.666667pt;}
.w0_c00438{width:793.701333pt;}
.w1_c00438{width:794.000000pt;}
.x0_c00438{left:0.000000pt;}
.x2_c00438{left:113.440000pt;}
.x3_c00438{left:141.840000pt;}
.x1_c00438{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00439;src:url('chunks/assets/font_dcc5e99dc5fdf2028d5861a2.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00439;src:url('chunks/assets/font_b95c7897accbb8c1a11c3a2e.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls9_c00439{letter-spacing:-0.576000px;}
.ls7_c00439{letter-spacing:-0.288000px;}
.ls8_c00439{letter-spacing:-0.144000px;}
.ls6_c00439{letter-spacing:0.000000px;}
.ls0_c00439{letter-spacing:0.072000px;}
.ls3_c00439{letter-spacing:0.144000px;}
.ls4_c00439{letter-spacing:18.144000px;}
.ls2_c00439{letter-spacing:19.591200px;}
.ls1_c00439{letter-spacing:24.624000px;}
.ls5_c00439{letter-spacing:29.304000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00439{word-spacing:-18.072000px;}
.ws0_c00439{word-spacing:-18.000000px;}
.ws3_c00439{word-spacing:-17.856000px;}
.ws2_c00439{word-spacing:-17.712000px;}
.ws4_c00439{word-spacing:-17.424000px;}
.ws14_c00439{word-spacing:-0.432000px;}
.ws7_c00439{word-spacing:-0.131760px;}
.wsa_c00439{word-spacing:-0.072000px;}
.ws6_c00439{word-spacing:0.000000px;}
.ws5_c00439{word-spacing:0.144000px;}
.ws11_c00439{word-spacing:0.288000px;}
.wsb_c00439{word-spacing:0.648000px;}
.wsc_c00439{word-spacing:1.368000px;}
.wsd_c00439{word-spacing:1.440000px;}
.ws18_c00439{word-spacing:3.888000px;}
.ws13_c00439{word-spacing:5.328000px;}
.ws12_c00439{word-spacing:5.400000px;}
.wse_c00439{word-spacing:6.048000px;}
.ws8_c00439{word-spacing:6.408000px;}
.ws9_c00439{word-spacing:6.480000px;}
.ws17_c00439{word-spacing:11.160000px;}
.ws16_c00439{word-spacing:12.528000px;}
.ws15_c00439{word-spacing:12.600000px;}
.ws10_c00439{word-spacing:17.928000px;}
.wsf_c00439{word-spacing:18.000000px;}
._0_c00439{margin-left:-1.080000px;}
._1_c00439{width:2.160000px;}
.fc1_c00439{color:rgb(0,0,0);}
.fc0_c00439{color:rgb(35,31,32);}
.fs1_c00439{font-size:65.880000px;}
.fs0_c00439{font-size:72.000000px;}
.y0_c00439{bottom:0.000000px;}
.y1_c00439{bottom:61.748550px;}
.y24_c00439{bottom:115.424400px;}
.y23_c00439{bottom:146.474400px;}
.y22_c00439{bottom:177.524400px;}
.y21_c00439{bottom:208.574400px;}
.y20_c00439{bottom:239.624400px;}
.y1f_c00439{bottom:270.674400px;}
.y1e_c00439{bottom:301.724400px;}
.y1d_c00439{bottom:332.774400px;}
.y1c_c00439{bottom:363.824400px;}
.y1b_c00439{bottom:394.874400px;}
.y1a_c00439{bottom:425.924400px;}
.y19_c00439{bottom:456.974400px;}
.y18_c00439{bottom:488.024400px;}
.y17_c00439{bottom:519.074400px;}
.y16_c00439{bottom:550.124400px;}
.y15_c00439{bottom:581.174400px;}
.y14_c00439{bottom:612.224400px;}
.y13_c00439{bottom:643.274400px;}
.y12_c00439{bottom:674.324400px;}
.y11_c00439{bottom:705.374400px;}
.y10_c00439{bottom:736.424400px;}
.yf_c00439{bottom:767.474400px;}
.ye_c00439{bottom:798.434400px;}
.yd_c00439{bottom:829.484400px;}
.yc_c00439{bottom:860.534400px;}
.yb_c00439{bottom:891.584400px;}
.ya_c00439{bottom:922.634400px;}
.y9_c00439{bottom:953.684400px;}
.y8_c00439{bottom:984.734400px;}
.y7_c00439{bottom:1015.784400px;}
.y6_c00439{bottom:1046.834400px;}
.y5_c00439{bottom:1077.884400px;}
.y4_c00439{bottom:1108.934400px;}
.y3_c00439{bottom:1139.984400px;}
.y2_c00439{bottom:1194.074400px;}
.h2_c00439{height:50.400000px;}
.h3_c00439{height:54.331699px;}
.h4_c00439{height:76.824000px;}
.h0_c00439{height:1262.835000px;}
.h1_c00439{height:1263.000000px;}
.w0_c00439{width:892.914000px;}
.w1_c00439{width:893.250000px;}
.x0_c00439{left:0.000000px;}
.x1_c00439{left:54.000000px;}
.x2_c00439{left:127.620000px;}
.x3_c00439{left:159.570000px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls9_c00439{letter-spacing:-0.512000pt;}
.ls7_c00439{letter-spacing:-0.256000pt;}
.ls8_c00439{letter-spacing:-0.128000pt;}
.ls6_c00439{letter-spacing:0.000000pt;}
.ls0_c00439{letter-spacing:0.064000pt;}
.ls3_c00439{letter-spacing:0.128000pt;}
.ls4_c00439{letter-spacing:16.128000pt;}
.ls2_c00439{letter-spacing:17.414400pt;}
.ls1_c00439{letter-spacing:21.888000pt;}
.ls5_c00439{letter-spacing:26.048000pt;}
.ws1_c00439{word-spacing:-16.064000pt;}
.ws0_c00439{word-spacing:-16.000000pt;}
.ws3_c00439{word-spacing:-15.872000pt;}
.ws2_c00439{word-spacing:-15.744000pt;}
.ws4_c00439{word-spacing:-15.488000pt;}
.ws14_c00439{word-spacing:-0.384000pt;}
.ws7_c00439{word-spacing:-0.117120pt;}
.wsa_c00439{word-spacing:-0.064000pt;}
.ws6_c00439{word-spacing:0.000000pt;}
.ws5_c00439{word-spacing:0.128000pt;}
.ws11_c00439{word-spacing:0.256000pt;}
.wsb_c00439{word-spacing:0.576000pt;}
.wsc_c00439{word-spacing:1.216000pt;}
.wsd_c00439{word-spacing:1.280000pt;}
.ws18_c00439{word-spacing:3.456000pt;}
.ws13_c00439{word-spacing:4.736000pt;}
.ws12_c00439{word-spacing:4.800000pt;}
.wse_c00439{word-spacing:5.376000pt;}
.ws8_c00439{word-spacing:5.696000pt;}
.ws9_c00439{word-spacing:5.760000pt;}
.ws17_c00439{word-spacing:9.920000pt;}
.ws16_c00439{word-spacing:11.136000pt;}
.ws15_c00439{word-spacing:11.200000pt;}
.ws10_c00439{word-spacing:15.936000pt;}
.wsf_c00439{word-spacing:16.000000pt;}
._0_c00439{margin-left:-0.960000pt;}
._1_c00439{width:1.920000pt;}
.fs1_c00439{font-size:58.560000pt;}
.fs0_c00439{font-size:64.000000pt;}
.y0_c00439{bottom:0.000000pt;}
.y1_c00439{bottom:54.887600pt;}
.y24_c00439{bottom:102.599467pt;}
.y23_c00439{bottom:130.199467pt;}
.y22_c00439{bottom:157.799467pt;}
.y21_c00439{bottom:185.399467pt;}
.y20_c00439{bottom:212.999467pt;}
.y1f_c00439{bottom:240.599467pt;}
.y1e_c00439{bottom:268.199467pt;}
.y1d_c00439{bottom:295.799467pt;}
.y1c_c00439{bottom:323.399467pt;}
.y1b_c00439{bottom:350.999467pt;}
.y1a_c00439{bottom:378.599467pt;}
.y19_c00439{bottom:406.199467pt;}
.y18_c00439{bottom:433.799467pt;}
.y17_c00439{bottom:461.399467pt;}
.y16_c00439{bottom:488.999467pt;}
.y15_c00439{bottom:516.599467pt;}
.y14_c00439{bottom:544.199467pt;}
.y13_c00439{bottom:571.799467pt;}
.y12_c00439{bottom:599.399467pt;}
.y11_c00439{bottom:626.999467pt;}
.y10_c00439{bottom:654.599467pt;}
.yf_c00439{bottom:682.199467pt;}
.ye_c00439{bottom:709.719467pt;}
.yd_c00439{bottom:737.319467pt;}
.yc_c00439{bottom:764.919467pt;}
.yb_c00439{bottom:792.519467pt;}
.ya_c00439{bottom:820.119467pt;}
.y9_c00439{bottom:847.719467pt;}
.y8_c00439{bottom:875.319467pt;}
.y7_c00439{bottom:902.919467pt;}
.y6_c00439{bottom:930.519467pt;}
.y5_c00439{bottom:958.119467pt;}
.y4_c00439{bottom:985.719467pt;}
.y3_c00439{bottom:1013.319467pt;}
.y2_c00439{bottom:1061.399467pt;}
.h2_c00439{height:44.800000pt;}
.h3_c00439{height:48.294844pt;}
.h4_c00439{height:68.288000pt;}
.h0_c00439{height:1122.520000pt;}
.h1_c00439{height:1122.666667pt;}
.w0_c00439{width:793.701333pt;}
.w1_c00439{width:794.000000pt;}
.x0_c00439{left:0.000000pt;}
.x1_c00439{left:48.000000pt;}
.x2_c00439{left:113.440000pt;}
.x3_c00439{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00440;src:url('chunks/assets/font_01027ba48e86ac34970f3bf9.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00440;src:url('chunks/assets/font_cd8e539f97e5ca7a6c61c821.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00440;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00440{font-family:ff4_c00440;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00440;src:url('chunks/assets/font_75885d46e798e464db60e63b.woff2')format("woff");}.ff5_c00440{font-family:ff5_c00440;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00440;src:url('chunks/assets/font_61d77a4d837ecba37281622a.woff2')format("woff");}.ff6_c00440{font-family:ff6_c00440;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00440{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.lsb_c00440{letter-spacing:-0.576000px;}
.ls9_c00440{letter-spacing:-0.288000px;}
.lsa_c00440{letter-spacing:-0.144000px;}
.lsc_c00440{letter-spacing:-0.072000px;}
.ls8_c00440{letter-spacing:0.000000px;}
.ls0_c00440{letter-spacing:0.072000px;}
.ls3_c00440{letter-spacing:0.144000px;}
.ls4_c00440{letter-spacing:18.144000px;}
.ls2_c00440{letter-spacing:19.591200px;}
.ls1_c00440{letter-spacing:24.624000px;}
.ls7_c00440{letter-spacing:27.878400px;}
.ls5_c00440{letter-spacing:29.304000px;}
.ls6_c00440{letter-spacing:30.024000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00440{word-spacing:-18.072000px;}
.ws0_c00440{word-spacing:-18.000000px;}
.ws6_c00440{word-spacing:-17.928000px;}
.ws3_c00440{word-spacing:-17.856000px;}
.ws2_c00440{word-spacing:-17.712000px;}
.ws4_c00440{word-spacing:-17.424000px;}
.ws15_c00440{word-spacing:-0.432000px;}
.ws8_c00440{word-spacing:-0.131760px;}
.wsb_c00440{word-spacing:-0.072000px;}
.ws7_c00440{word-spacing:0.000000px;}
.ws5_c00440{word-spacing:0.144000px;}
.ws1a_c00440{word-spacing:0.197640px;}
.ws12_c00440{word-spacing:0.288000px;}
.ws1b_c00440{word-spacing:0.360000px;}
.wsc_c00440{word-spacing:0.648000px;}
.ws25_c00440{word-spacing:1.080000px;}
.wsd_c00440{word-spacing:1.368000px;}
.wse_c00440{word-spacing:1.440000px;}
.ws22_c00440{word-spacing:3.528000px;}
.ws19_c00440{word-spacing:3.888000px;}
.ws14_c00440{word-spacing:5.328000px;}
.ws13_c00440{word-spacing:5.400000px;}
.wsf_c00440{word-spacing:6.048000px;}
.ws9_c00440{word-spacing:6.408000px;}
.wsa_c00440{word-spacing:6.480000px;}
.ws24_c00440{word-spacing:8.640000px;}
.ws1e_c00440{word-spacing:9.000000px;}
.ws1c_c00440{word-spacing:9.288000px;}
.ws1d_c00440{word-spacing:9.360000px;}
.ws26_c00440{word-spacing:9.864000px;}
.ws27_c00440{word-spacing:10.008000px;}
.ws28_c00440{word-spacing:10.080000px;}
.ws18_c00440{word-spacing:11.160000px;}
.ws23_c00440{word-spacing:11.808000px;}
.ws17_c00440{word-spacing:12.528000px;}
.ws16_c00440{word-spacing:12.600000px;}
.ws20_c00440{word-spacing:14.400000px;}
.ws1f_c00440{word-spacing:15.408000px;}
.ws11_c00440{word-spacing:17.928000px;}
.ws10_c00440{word-spacing:18.000000px;}
.ws21_c00440{word-spacing:19.728000px;}
._0_c00440{margin-left:-1.080000px;}
._2_c00440{width:1.119960px;}
._1_c00440{width:2.160000px;}
.fc2_c00440{color:transparent;}
.fc1_c00440{color:rgb(0,0,0);}
.fc0_c00440{color:rgb(35,31,32);}
.fs1_c00440{font-size:65.880000px;}
.fs0_c00440{font-size:72.000000px;}
.y0_c00440{bottom:0.000000px;}
.y1_c00440{bottom:61.748550px;}
.y24_c00440{bottom:115.424400px;}
.y23_c00440{bottom:146.474400px;}
.y22_c00440{bottom:177.524400px;}
.y21_c00440{bottom:208.574400px;}
.y20_c00440{bottom:239.624400px;}
.y1f_c00440{bottom:270.674400px;}
.y1e_c00440{bottom:301.724400px;}
.y1d_c00440{bottom:332.774400px;}
.y1c_c00440{bottom:363.824400px;}
.y1b_c00440{bottom:394.874400px;}
.y1a_c00440{bottom:425.924400px;}
.y19_c00440{bottom:456.974400px;}
.y18_c00440{bottom:488.024400px;}
.y17_c00440{bottom:519.074400px;}
.y16_c00440{bottom:550.124400px;}
.y15_c00440{bottom:581.174400px;}
.y14_c00440{bottom:612.224400px;}
.y13_c00440{bottom:643.274400px;}
.y12_c00440{bottom:674.324400px;}
.y11_c00440{bottom:705.374400px;}
.y10_c00440{bottom:736.424400px;}
.yf_c00440{bottom:767.474400px;}
.ye_c00440{bottom:798.434400px;}
.yd_c00440{bottom:829.484400px;}
.yc_c00440{bottom:860.534400px;}
.yb_c00440{bottom:891.584400px;}
.ya_c00440{bottom:922.634400px;}
.y9_c00440{bottom:953.684400px;}
.y8_c00440{bottom:984.734400px;}
.y7_c00440{bottom:1015.784400px;}
.y6_c00440{bottom:1046.834400px;}
.y5_c00440{bottom:1077.884400px;}
.y4_c00440{bottom:1108.934400px;}
.y3_c00440{bottom:1139.984400px;}
.y25_c00440{bottom:1173.915120px;}
.y2_c00440{bottom:1194.074400px;}
.h2_c00440{height:50.400000px;}
.h3_c00440{height:54.331699px;}
.h4_c00440{height:76.824000px;}
.h0_c00440{height:1262.835000px;}
.h1_c00440{height:1263.000000px;}
.w2_c00440{width:0.000000px;}
.w3_c00440{width:0.066000px;}
.w0_c00440{width:892.914000px;}
.w1_c00440{width:893.250000px;}
.x1_c00440{left:-838.913400px;}
.x2_c00440{left:-765.293400px;}
.x3_c00440{left:-733.343400px;}
.x0_c00440{left:0.000000px;}
.x5_c00440{left:127.620000px;}
.x6_c00440{left:159.570000px;}
.x4_c00440{left:804.366150px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.lsb_c00440{letter-spacing:-0.512000pt;}
.ls9_c00440{letter-spacing:-0.256000pt;}
.lsa_c00440{letter-spacing:-0.128000pt;}
.lsc_c00440{letter-spacing:-0.064000pt;}
.ls8_c00440{letter-spacing:0.000000pt;}
.ls0_c00440{letter-spacing:0.064000pt;}
.ls3_c00440{letter-spacing:0.128000pt;}
.ls4_c00440{letter-spacing:16.128000pt;}
.ls2_c00440{letter-spacing:17.414400pt;}
.ls1_c00440{letter-spacing:21.888000pt;}
.ls7_c00440{letter-spacing:24.780800pt;}
.ls5_c00440{letter-spacing:26.048000pt;}
.ls6_c00440{letter-spacing:26.688000pt;}
.ws1_c00440{word-spacing:-16.064000pt;}
.ws0_c00440{word-spacing:-16.000000pt;}
.ws6_c00440{word-spacing:-15.936000pt;}
.ws3_c00440{word-spacing:-15.872000pt;}
.ws2_c00440{word-spacing:-15.744000pt;}
.ws4_c00440{word-spacing:-15.488000pt;}
.ws15_c00440{word-spacing:-0.384000pt;}
.ws8_c00440{word-spacing:-0.117120pt;}
.wsb_c00440{word-spacing:-0.064000pt;}
.ws7_c00440{word-spacing:0.000000pt;}
.ws5_c00440{word-spacing:0.128000pt;}
.ws1a_c00440{word-spacing:0.175680pt;}
.ws12_c00440{word-spacing:0.256000pt;}
.ws1b_c00440{word-spacing:0.320000pt;}
.wsc_c00440{word-spacing:0.576000pt;}
.ws25_c00440{word-spacing:0.960000pt;}
.wsd_c00440{word-spacing:1.216000pt;}
.wse_c00440{word-spacing:1.280000pt;}
.ws22_c00440{word-spacing:3.136000pt;}
.ws19_c00440{word-spacing:3.456000pt;}
.ws14_c00440{word-spacing:4.736000pt;}
.ws13_c00440{word-spacing:4.800000pt;}
.wsf_c00440{word-spacing:5.376000pt;}
.ws9_c00440{word-spacing:5.696000pt;}
.wsa_c00440{word-spacing:5.760000pt;}
.ws24_c00440{word-spacing:7.680000pt;}
.ws1e_c00440{word-spacing:8.000000pt;}
.ws1c_c00440{word-spacing:8.256000pt;}
.ws1d_c00440{word-spacing:8.320000pt;}
.ws26_c00440{word-spacing:8.768000pt;}
.ws27_c00440{word-spacing:8.896000pt;}
.ws28_c00440{word-spacing:8.960000pt;}
.ws18_c00440{word-spacing:9.920000pt;}
.ws23_c00440{word-spacing:10.496000pt;}
.ws17_c00440{word-spacing:11.136000pt;}
.ws16_c00440{word-spacing:11.200000pt;}
.ws20_c00440{word-spacing:12.800000pt;}
.ws1f_c00440{word-spacing:13.696000pt;}
.ws11_c00440{word-spacing:15.936000pt;}
.ws10_c00440{word-spacing:16.000000pt;}
.ws21_c00440{word-spacing:17.536000pt;}
._0_c00440{margin-left:-0.960000pt;}
._2_c00440{width:0.995520pt;}
._1_c00440{width:1.920000pt;}
.fs1_c00440{font-size:58.560000pt;}
.fs0_c00440{font-size:64.000000pt;}
.y0_c00440{bottom:0.000000pt;}
.y1_c00440{bottom:54.887600pt;}
.y24_c00440{bottom:102.599467pt;}
.y23_c00440{bottom:130.199467pt;}
.y22_c00440{bottom:157.799467pt;}
.y21_c00440{bottom:185.399467pt;}
.y20_c00440{bottom:212.999467pt;}
.y1f_c00440{bottom:240.599467pt;}
.y1e_c00440{bottom:268.199467pt;}
.y1d_c00440{bottom:295.799467pt;}
.y1c_c00440{bottom:323.399467pt;}
.y1b_c00440{bottom:350.999467pt;}
.y1a_c00440{bottom:378.599467pt;}
.y19_c00440{bottom:406.199467pt;}
.y18_c00440{bottom:433.799467pt;}
.y17_c00440{bottom:461.399467pt;}
.y16_c00440{bottom:488.999467pt;}
.y15_c00440{bottom:516.599467pt;}
.y14_c00440{bottom:544.199467pt;}
.y13_c00440{bottom:571.799467pt;}
.y12_c00440{bottom:599.399467pt;}
.y11_c00440{bottom:626.999467pt;}
.y10_c00440{bottom:654.599467pt;}
.yf_c00440{bottom:682.199467pt;}
.ye_c00440{bottom:709.719467pt;}
.yd_c00440{bottom:737.319467pt;}
.yc_c00440{bottom:764.919467pt;}
.yb_c00440{bottom:792.519467pt;}
.ya_c00440{bottom:820.119467pt;}
.y9_c00440{bottom:847.719467pt;}
.y8_c00440{bottom:875.319467pt;}
.y7_c00440{bottom:902.919467pt;}
.y6_c00440{bottom:930.519467pt;}
.y5_c00440{bottom:958.119467pt;}
.y4_c00440{bottom:985.719467pt;}
.y3_c00440{bottom:1013.319467pt;}
.y25_c00440{bottom:1043.480107pt;}
.y2_c00440{bottom:1061.399467pt;}
.h2_c00440{height:44.800000pt;}
.h3_c00440{height:48.294844pt;}
.h4_c00440{height:68.288000pt;}
.h0_c00440{height:1122.520000pt;}
.h1_c00440{height:1122.666667pt;}
.w2_c00440{width:0.000000pt;}
.w3_c00440{width:0.058667pt;}
.w0_c00440{width:793.701333pt;}
.w1_c00440{width:794.000000pt;}
.x1_c00440{left:-745.700800pt;}
.x2_c00440{left:-680.260800pt;}
.x3_c00440{left:-651.860800pt;}
.x0_c00440{left:0.000000pt;}
.x5_c00440{left:113.440000pt;}
.x6_c00440{left:141.840000pt;}
.x4_c00440{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00441;src:url('chunks/assets/font_df425e10b428d3211a9dabfb.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00441;src:url('chunks/assets/font_1cf6944a173c3a270080b4cc.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00441{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls9_c00441{letter-spacing:-0.288000px;}
.ls8_c00441{letter-spacing:-0.144000px;}
.ls7_c00441{letter-spacing:-0.072000px;}
.ls6_c00441{letter-spacing:0.000000px;}
.ls1_c00441{letter-spacing:0.072000px;}
.ls2_c00441{letter-spacing:0.144000px;}
.ls4_c00441{letter-spacing:18.144000px;}
.ls3_c00441{letter-spacing:21.024000px;}
.ls5_c00441{letter-spacing:21.744000px;}
.ls0_c00441{letter-spacing:33.984000px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00441{word-spacing:-18.072000px;}
.ws0_c00441{word-spacing:-18.000000px;}
.ws1_c00441{word-spacing:-17.928000px;}
.ws2_c00441{word-spacing:-17.856000px;}
.wsf_c00441{word-spacing:-0.144000px;}
.ws6_c00441{word-spacing:-0.131760px;}
.wsb_c00441{word-spacing:-0.072000px;}
.ws5_c00441{word-spacing:0.000000px;}
.ws3_c00441{word-spacing:0.288000px;}
.ws11_c00441{word-spacing:1.368000px;}
.wse_c00441{word-spacing:2.808000px;}
.ws13_c00441{word-spacing:3.888000px;}
.wsa_c00441{word-spacing:4.248000px;}
.ws10_c00441{word-spacing:5.328000px;}
.wsc_c00441{word-spacing:6.696000px;}
.ws9_c00441{word-spacing:10.368000px;}
.ws8_c00441{word-spacing:15.768000px;}
.ws7_c00441{word-spacing:15.840000px;}
.wsd_c00441{word-spacing:17.928000px;}
.ws12_c00441{word-spacing:21.888000px;}
._0_c00441{margin-left:-1.224000px;}
._1_c00441{width:1.872000px;}
.fc1_c00441{color:rgb(0,0,0);}
.fc0_c00441{color:rgb(35,31,32);}
.fs1_c00441{font-size:65.880000px;}
.fs0_c00441{font-size:72.000000px;}
.y0_c00441{bottom:0.000000px;}
.y1_c00441{bottom:61.748550px;}
.y24_c00441{bottom:115.424400px;}
.y23_c00441{bottom:146.474400px;}
.y22_c00441{bottom:177.524400px;}
.y21_c00441{bottom:208.574400px;}
.y20_c00441{bottom:239.624400px;}
.y1f_c00441{bottom:270.674400px;}
.y1e_c00441{bottom:301.724400px;}
.y1d_c00441{bottom:332.774400px;}
.y1c_c00441{bottom:363.824400px;}
.y1b_c00441{bottom:394.874400px;}
.y1a_c00441{bottom:425.924400px;}
.y19_c00441{bottom:456.974400px;}
.y18_c00441{bottom:488.024400px;}
.y17_c00441{bottom:519.074400px;}
.y16_c00441{bottom:550.124400px;}
.y15_c00441{bottom:581.174400px;}
.y14_c00441{bottom:612.224400px;}
.y13_c00441{bottom:643.274400px;}
.y12_c00441{bottom:674.324400px;}
.y11_c00441{bottom:705.374400px;}
.y10_c00441{bottom:736.424400px;}
.yf_c00441{bottom:767.474400px;}
.ye_c00441{bottom:798.434400px;}
.yd_c00441{bottom:829.484400px;}
.yc_c00441{bottom:860.534400px;}
.yb_c00441{bottom:891.584400px;}
.ya_c00441{bottom:922.634400px;}
.y9_c00441{bottom:953.684400px;}
.y8_c00441{bottom:984.734400px;}
.y7_c00441{bottom:1015.784400px;}
.y6_c00441{bottom:1046.834400px;}
.y5_c00441{bottom:1077.884400px;}
.y4_c00441{bottom:1108.934400px;}
.y3_c00441{bottom:1139.984400px;}
.y2_c00441{bottom:1194.074400px;}
.h2_c00441{height:50.400000px;}
.h3_c00441{height:54.331699px;}
.h4_c00441{height:76.824000px;}
.h0_c00441{height:1262.835000px;}
.h1_c00441{height:1263.000000px;}
.w0_c00441{width:892.914000px;}
.w1_c00441{width:893.250000px;}
.x0_c00441{left:0.000000px;}
.x1_c00441{left:54.000000px;}
.x2_c00441{left:127.620000px;}
.x3_c00441{left:159.570000px;}
.x4_c00441{left:164.070000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls9_c00441{letter-spacing:-0.256000pt;}
.ls8_c00441{letter-spacing:-0.128000pt;}
.ls7_c00441{letter-spacing:-0.064000pt;}
.ls6_c00441{letter-spacing:0.000000pt;}
.ls1_c00441{letter-spacing:0.064000pt;}
.ls2_c00441{letter-spacing:0.128000pt;}
.ls4_c00441{letter-spacing:16.128000pt;}
.ls3_c00441{letter-spacing:18.688000pt;}
.ls5_c00441{letter-spacing:19.328000pt;}
.ls0_c00441{letter-spacing:30.208000pt;}
.ws4_c00441{word-spacing:-16.064000pt;}
.ws0_c00441{word-spacing:-16.000000pt;}
.ws1_c00441{word-spacing:-15.936000pt;}
.ws2_c00441{word-spacing:-15.872000pt;}
.wsf_c00441{word-spacing:-0.128000pt;}
.ws6_c00441{word-spacing:-0.117120pt;}
.wsb_c00441{word-spacing:-0.064000pt;}
.ws5_c00441{word-spacing:0.000000pt;}
.ws3_c00441{word-spacing:0.256000pt;}
.ws11_c00441{word-spacing:1.216000pt;}
.wse_c00441{word-spacing:2.496000pt;}
.ws13_c00441{word-spacing:3.456000pt;}
.wsa_c00441{word-spacing:3.776000pt;}
.ws10_c00441{word-spacing:4.736000pt;}
.wsc_c00441{word-spacing:5.952000pt;}
.ws9_c00441{word-spacing:9.216000pt;}
.ws8_c00441{word-spacing:14.016000pt;}
.ws7_c00441{word-spacing:14.080000pt;}
.wsd_c00441{word-spacing:15.936000pt;}
.ws12_c00441{word-spacing:19.456000pt;}
._0_c00441{margin-left:-1.088000pt;}
._1_c00441{width:1.664000pt;}
.fs1_c00441{font-size:58.560000pt;}
.fs0_c00441{font-size:64.000000pt;}
.y0_c00441{bottom:0.000000pt;}
.y1_c00441{bottom:54.887600pt;}
.y24_c00441{bottom:102.599467pt;}
.y23_c00441{bottom:130.199467pt;}
.y22_c00441{bottom:157.799467pt;}
.y21_c00441{bottom:185.399467pt;}
.y20_c00441{bottom:212.999467pt;}
.y1f_c00441{bottom:240.599467pt;}
.y1e_c00441{bottom:268.199467pt;}
.y1d_c00441{bottom:295.799467pt;}
.y1c_c00441{bottom:323.399467pt;}
.y1b_c00441{bottom:350.999467pt;}
.y1a_c00441{bottom:378.599467pt;}
.y19_c00441{bottom:406.199467pt;}
.y18_c00441{bottom:433.799467pt;}
.y17_c00441{bottom:461.399467pt;}
.y16_c00441{bottom:488.999467pt;}
.y15_c00441{bottom:516.599467pt;}
.y14_c00441{bottom:544.199467pt;}
.y13_c00441{bottom:571.799467pt;}
.y12_c00441{bottom:599.399467pt;}
.y11_c00441{bottom:626.999467pt;}
.y10_c00441{bottom:654.599467pt;}
.yf_c00441{bottom:682.199467pt;}
.ye_c00441{bottom:709.719467pt;}
.yd_c00441{bottom:737.319467pt;}
.yc_c00441{bottom:764.919467pt;}
.yb_c00441{bottom:792.519467pt;}
.ya_c00441{bottom:820.119467pt;}
.y9_c00441{bottom:847.719467pt;}
.y8_c00441{bottom:875.319467pt;}
.y7_c00441{bottom:902.919467pt;}
.y6_c00441{bottom:930.519467pt;}
.y5_c00441{bottom:958.119467pt;}
.y4_c00441{bottom:985.719467pt;}
.y3_c00441{bottom:1013.319467pt;}
.y2_c00441{bottom:1061.399467pt;}
.h2_c00441{height:44.800000pt;}
.h3_c00441{height:48.294844pt;}
.h4_c00441{height:68.288000pt;}
.h0_c00441{height:1122.520000pt;}
.h1_c00441{height:1122.666667pt;}
.w0_c00441{width:793.701333pt;}
.w1_c00441{width:794.000000pt;}
.x0_c00441{left:0.000000pt;}
.x1_c00441{left:48.000000pt;}
.x2_c00441{left:113.440000pt;}
.x3_c00441{left:141.840000pt;}
.x4_c00441{left:145.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00442;src:url('chunks/assets/font_6d78f01683bfbab38b611531.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00442;src:url('chunks/assets/font_e5c6861efa4f79e3cec66e3c.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00442;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00442{font-family:ff4_c00442;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00442;src:url('chunks/assets/font_4c958ba0e988566092a93da5.woff2')format("woff");}.ff5_c00442{font-family:ff5_c00442;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00442;src:url('chunks/assets/font_232b6bf95af3e38a9f8b5ed8.woff2')format("woff");}.ff6_c00442{font-family:ff6_c00442;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls9_c00442{letter-spacing:-0.288000px;}
.ls8_c00442{letter-spacing:-0.144000px;}
.ls7_c00442{letter-spacing:-0.072000px;}
.ls6_c00442{letter-spacing:0.000000px;}
.ls1_c00442{letter-spacing:0.072000px;}
.ls2_c00442{letter-spacing:0.144000px;}
.ls4_c00442{letter-spacing:18.144000px;}
.ls3_c00442{letter-spacing:21.024000px;}
.ls5_c00442{letter-spacing:21.744000px;}
.ls0_c00442{letter-spacing:33.984000px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00442{word-spacing:-18.144000px;}
.ws4_c00442{word-spacing:-18.072000px;}
.ws0_c00442{word-spacing:-18.000000px;}
.ws1_c00442{word-spacing:-17.928000px;}
.ws2_c00442{word-spacing:-17.856000px;}
.ws1f_c00442{word-spacing:-0.432000px;}
.ws6_c00442{word-spacing:-0.216000px;}
.ws11_c00442{word-spacing:-0.144000px;}
.ws9_c00442{word-spacing:-0.131760px;}
.ws7_c00442{word-spacing:-0.072000px;}
.ws8_c00442{word-spacing:0.000000px;}
.ws16_c00442{word-spacing:0.197640px;}
.ws3_c00442{word-spacing:0.288000px;}
.ws13_c00442{word-spacing:1.368000px;}
.ws18_c00442{word-spacing:1.728000px;}
.ws19_c00442{word-spacing:1.800000px;}
.ws17_c00442{word-spacing:2.160000px;}
.ws10_c00442{word-spacing:2.808000px;}
.ws20_c00442{word-spacing:3.528000px;}
.ws15_c00442{word-spacing:3.888000px;}
.wsd_c00442{word-spacing:4.248000px;}
.ws12_c00442{word-spacing:5.328000px;}
.wse_c00442{word-spacing:6.696000px;}
.ws1a_c00442{word-spacing:8.928000px;}
.wsc_c00442{word-spacing:10.368000px;}
.ws1c_c00442{word-spacing:13.320000px;}
.ws1d_c00442{word-spacing:14.328000px;}
.wsb_c00442{word-spacing:15.768000px;}
.wsa_c00442{word-spacing:15.840000px;}
.ws1e_c00442{word-spacing:16.128000px;}
.ws1b_c00442{word-spacing:17.640000px;}
.wsf_c00442{word-spacing:17.928000px;}
.ws14_c00442{word-spacing:21.888000px;}
._0_c00442{margin-left:-1.224000px;}
._1_c00442{width:1.872000px;}
.fc2_c00442{color:transparent;}
.fc1_c00442{color:rgb(0,0,0);}
.fc0_c00442{color:rgb(35,31,32);}
.fs1_c00442{font-size:65.880000px;}
.fs0_c00442{font-size:72.000000px;}
.y0_c00442{bottom:0.000000px;}
.y1_c00442{bottom:61.748550px;}
.y24_c00442{bottom:115.424400px;}
.y23_c00442{bottom:146.474400px;}
.y22_c00442{bottom:177.524400px;}
.y21_c00442{bottom:208.574400px;}
.y20_c00442{bottom:239.624400px;}
.y1f_c00442{bottom:270.674400px;}
.y1e_c00442{bottom:301.724400px;}
.y1d_c00442{bottom:332.774400px;}
.y1c_c00442{bottom:363.824400px;}
.y1b_c00442{bottom:394.874400px;}
.y1a_c00442{bottom:425.924400px;}
.y19_c00442{bottom:456.974400px;}
.y18_c00442{bottom:488.024400px;}
.y17_c00442{bottom:519.074400px;}
.y16_c00442{bottom:550.124400px;}
.y15_c00442{bottom:581.174400px;}
.y14_c00442{bottom:612.224400px;}
.y13_c00442{bottom:643.274400px;}
.y12_c00442{bottom:674.324400px;}
.y11_c00442{bottom:705.374400px;}
.y10_c00442{bottom:736.424400px;}
.yf_c00442{bottom:767.474400px;}
.ye_c00442{bottom:798.434400px;}
.yd_c00442{bottom:829.484400px;}
.yc_c00442{bottom:860.534400px;}
.yb_c00442{bottom:891.584400px;}
.ya_c00442{bottom:922.634400px;}
.y9_c00442{bottom:953.684400px;}
.y8_c00442{bottom:984.734400px;}
.y7_c00442{bottom:1015.784400px;}
.y6_c00442{bottom:1046.834400px;}
.y5_c00442{bottom:1077.884400px;}
.y4_c00442{bottom:1108.934400px;}
.y3_c00442{bottom:1139.984400px;}
.y25_c00442{bottom:1173.915120px;}
.y2_c00442{bottom:1194.074400px;}
.h2_c00442{height:50.400000px;}
.h3_c00442{height:54.331699px;}
.h4_c00442{height:76.824000px;}
.h0_c00442{height:1262.835000px;}
.h1_c00442{height:1263.000000px;}
.w2_c00442{width:0.000000px;}
.w3_c00442{width:0.066000px;}
.w0_c00442{width:892.914000px;}
.w1_c00442{width:893.250000px;}
.x1_c00442{left:-838.913400px;}
.x2_c00442{left:-765.293400px;}
.x3_c00442{left:-733.343400px;}
.x4_c00442{left:-728.843400px;}
.x0_c00442{left:0.000000px;}
.x6_c00442{left:127.620000px;}
.x7_c00442{left:159.570000px;}
.x5_c00442{left:804.366150px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls9_c00442{letter-spacing:-0.256000pt;}
.ls8_c00442{letter-spacing:-0.128000pt;}
.ls7_c00442{letter-spacing:-0.064000pt;}
.ls6_c00442{letter-spacing:0.000000pt;}
.ls1_c00442{letter-spacing:0.064000pt;}
.ls2_c00442{letter-spacing:0.128000pt;}
.ls4_c00442{letter-spacing:16.128000pt;}
.ls3_c00442{letter-spacing:18.688000pt;}
.ls5_c00442{letter-spacing:19.328000pt;}
.ls0_c00442{letter-spacing:30.208000pt;}
.ws5_c00442{word-spacing:-16.128000pt;}
.ws4_c00442{word-spacing:-16.064000pt;}
.ws0_c00442{word-spacing:-16.000000pt;}
.ws1_c00442{word-spacing:-15.936000pt;}
.ws2_c00442{word-spacing:-15.872000pt;}
.ws1f_c00442{word-spacing:-0.384000pt;}
.ws6_c00442{word-spacing:-0.192000pt;}
.ws11_c00442{word-spacing:-0.128000pt;}
.ws9_c00442{word-spacing:-0.117120pt;}
.ws7_c00442{word-spacing:-0.064000pt;}
.ws8_c00442{word-spacing:0.000000pt;}
.ws16_c00442{word-spacing:0.175680pt;}
.ws3_c00442{word-spacing:0.256000pt;}
.ws13_c00442{word-spacing:1.216000pt;}
.ws18_c00442{word-spacing:1.536000pt;}
.ws19_c00442{word-spacing:1.600000pt;}
.ws17_c00442{word-spacing:1.920000pt;}
.ws10_c00442{word-spacing:2.496000pt;}
.ws20_c00442{word-spacing:3.136000pt;}
.ws15_c00442{word-spacing:3.456000pt;}
.wsd_c00442{word-spacing:3.776000pt;}
.ws12_c00442{word-spacing:4.736000pt;}
.wse_c00442{word-spacing:5.952000pt;}
.ws1a_c00442{word-spacing:7.936000pt;}
.wsc_c00442{word-spacing:9.216000pt;}
.ws1c_c00442{word-spacing:11.840000pt;}
.ws1d_c00442{word-spacing:12.736000pt;}
.wsb_c00442{word-spacing:14.016000pt;}
.wsa_c00442{word-spacing:14.080000pt;}
.ws1e_c00442{word-spacing:14.336000pt;}
.ws1b_c00442{word-spacing:15.680000pt;}
.wsf_c00442{word-spacing:15.936000pt;}
.ws14_c00442{word-spacing:19.456000pt;}
._0_c00442{margin-left:-1.088000pt;}
._1_c00442{width:1.664000pt;}
.fs1_c00442{font-size:58.560000pt;}
.fs0_c00442{font-size:64.000000pt;}
.y0_c00442{bottom:0.000000pt;}
.y1_c00442{bottom:54.887600pt;}
.y24_c00442{bottom:102.599467pt;}
.y23_c00442{bottom:130.199467pt;}
.y22_c00442{bottom:157.799467pt;}
.y21_c00442{bottom:185.399467pt;}
.y20_c00442{bottom:212.999467pt;}
.y1f_c00442{bottom:240.599467pt;}
.y1e_c00442{bottom:268.199467pt;}
.y1d_c00442{bottom:295.799467pt;}
.y1c_c00442{bottom:323.399467pt;}
.y1b_c00442{bottom:350.999467pt;}
.y1a_c00442{bottom:378.599467pt;}
.y19_c00442{bottom:406.199467pt;}
.y18_c00442{bottom:433.799467pt;}
.y17_c00442{bottom:461.399467pt;}
.y16_c00442{bottom:488.999467pt;}
.y15_c00442{bottom:516.599467pt;}
.y14_c00442{bottom:544.199467pt;}
.y13_c00442{bottom:571.799467pt;}
.y12_c00442{bottom:599.399467pt;}
.y11_c00442{bottom:626.999467pt;}
.y10_c00442{bottom:654.599467pt;}
.yf_c00442{bottom:682.199467pt;}
.ye_c00442{bottom:709.719467pt;}
.yd_c00442{bottom:737.319467pt;}
.yc_c00442{bottom:764.919467pt;}
.yb_c00442{bottom:792.519467pt;}
.ya_c00442{bottom:820.119467pt;}
.y9_c00442{bottom:847.719467pt;}
.y8_c00442{bottom:875.319467pt;}
.y7_c00442{bottom:902.919467pt;}
.y6_c00442{bottom:930.519467pt;}
.y5_c00442{bottom:958.119467pt;}
.y4_c00442{bottom:985.719467pt;}
.y3_c00442{bottom:1013.319467pt;}
.y25_c00442{bottom:1043.480107pt;}
.y2_c00442{bottom:1061.399467pt;}
.h2_c00442{height:44.800000pt;}
.h3_c00442{height:48.294844pt;}
.h4_c00442{height:68.288000pt;}
.h0_c00442{height:1122.520000pt;}
.h1_c00442{height:1122.666667pt;}
.w2_c00442{width:0.000000pt;}
.w3_c00442{width:0.058667pt;}
.w0_c00442{width:793.701333pt;}
.w1_c00442{width:794.000000pt;}
.x1_c00442{left:-745.700800pt;}
.x2_c00442{left:-680.260800pt;}
.x3_c00442{left:-651.860800pt;}
.x4_c00442{left:-647.860800pt;}
.x0_c00442{left:0.000000pt;}
.x6_c00442{left:113.440000pt;}
.x7_c00442{left:141.840000pt;}
.x5_c00442{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00443;src:url('chunks/assets/font_a8d03e7e2d4f3bc4a84560d3.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00443;src:url('chunks/assets/font_dbe053dc99f271fec3bcccfb.woff2')format("woff");}.ff3_c00443{font-family:ff3_c00443;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00443{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls6_c00443{letter-spacing:-0.144000px;}
.ls5_c00443{letter-spacing:0.000000px;}
.ls0_c00443{letter-spacing:0.072000px;}
.ls2_c00443{letter-spacing:0.144000px;}
.ls4_c00443{letter-spacing:20.664000px;}
.ls1_c00443{letter-spacing:22.104000px;}
.ls3_c00443{letter-spacing:37.224000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00443{word-spacing:-18.144000px;}
.ws0_c00443{word-spacing:-18.000000px;}
.ws1_c00443{word-spacing:-17.856000px;}
.ws9_c00443{word-spacing:-0.432000px;}
.ws6_c00443{word-spacing:-0.131760px;}
.wse_c00443{word-spacing:-0.072000px;}
.ws5_c00443{word-spacing:0.000000px;}
.ws10_c00443{word-spacing:2.736000px;}
.ws11_c00443{word-spacing:2.880000px;}
.ws2_c00443{word-spacing:3.024000px;}
.wsb_c00443{word-spacing:3.888000px;}
.wsa_c00443{word-spacing:3.960000px;}
.ws12_c00443{word-spacing:4.248000px;}
.ws15_c00443{word-spacing:10.368000px;}
.ws3_c00443{word-spacing:15.264000px;}
.ws13_c00443{word-spacing:15.408000px;}
.wsc_c00443{word-spacing:16.128000px;}
.wsd_c00443{word-spacing:16.560000px;}
.wsf_c00443{word-spacing:19.008000px;}
.ws14_c00443{word-spacing:20.808000px;}
.ws8_c00443{word-spacing:21.600000px;}
.ws7_c00443{word-spacing:22.248000px;}
._0_c00443{margin-left:-1.022400px;}
.fc1_c00443{color:rgb(0,0,0);}
.fc0_c00443{color:rgb(35,31,32);}
.fs1_c00443{font-size:65.880000px;}
.fs0_c00443{font-size:72.000000px;}
.y0_c00443{bottom:0.000000px;}
.y1_c00443{bottom:61.748550px;}
.y24_c00443{bottom:115.424400px;}
.y23_c00443{bottom:146.474400px;}
.y22_c00443{bottom:177.524400px;}
.y21_c00443{bottom:208.574400px;}
.y20_c00443{bottom:239.624400px;}
.y1f_c00443{bottom:270.674400px;}
.y1e_c00443{bottom:301.724400px;}
.y1d_c00443{bottom:332.774400px;}
.y1c_c00443{bottom:363.824400px;}
.y1b_c00443{bottom:394.874400px;}
.y1a_c00443{bottom:425.924400px;}
.y19_c00443{bottom:456.974400px;}
.y18_c00443{bottom:488.024400px;}
.y17_c00443{bottom:519.074400px;}
.y16_c00443{bottom:550.124400px;}
.y15_c00443{bottom:581.174400px;}
.y14_c00443{bottom:612.224400px;}
.y13_c00443{bottom:643.274400px;}
.y12_c00443{bottom:674.324400px;}
.y11_c00443{bottom:705.374400px;}
.y10_c00443{bottom:736.424400px;}
.yf_c00443{bottom:767.474400px;}
.ye_c00443{bottom:798.434400px;}
.yd_c00443{bottom:829.484400px;}
.yc_c00443{bottom:860.534400px;}
.yb_c00443{bottom:891.584400px;}
.ya_c00443{bottom:922.634400px;}
.y9_c00443{bottom:953.684400px;}
.y8_c00443{bottom:984.734400px;}
.y7_c00443{bottom:1015.784400px;}
.y6_c00443{bottom:1046.834400px;}
.y5_c00443{bottom:1077.884400px;}
.y4_c00443{bottom:1108.934400px;}
.y3_c00443{bottom:1139.984400px;}
.y2_c00443{bottom:1194.074400px;}
.h2_c00443{height:50.400000px;}
.h3_c00443{height:54.331699px;}
.h4_c00443{height:76.824000px;}
.h0_c00443{height:1262.835000px;}
.h1_c00443{height:1263.000000px;}
.w0_c00443{width:892.914000px;}
.w1_c00443{width:893.250000px;}
.x0_c00443{left:0.000000px;}
.x1_c00443{left:54.000000px;}
.x2_c00443{left:127.620000px;}
.x3_c00443{left:159.570000px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls6_c00443{letter-spacing:-0.128000pt;}
.ls5_c00443{letter-spacing:0.000000pt;}
.ls0_c00443{letter-spacing:0.064000pt;}
.ls2_c00443{letter-spacing:0.128000pt;}
.ls4_c00443{letter-spacing:18.368000pt;}
.ls1_c00443{letter-spacing:19.648000pt;}
.ls3_c00443{letter-spacing:33.088000pt;}
.ws4_c00443{word-spacing:-16.128000pt;}
.ws0_c00443{word-spacing:-16.000000pt;}
.ws1_c00443{word-spacing:-15.872000pt;}
.ws9_c00443{word-spacing:-0.384000pt;}
.ws6_c00443{word-spacing:-0.117120pt;}
.wse_c00443{word-spacing:-0.064000pt;}
.ws5_c00443{word-spacing:0.000000pt;}
.ws10_c00443{word-spacing:2.432000pt;}
.ws11_c00443{word-spacing:2.560000pt;}
.ws2_c00443{word-spacing:2.688000pt;}
.wsb_c00443{word-spacing:3.456000pt;}
.wsa_c00443{word-spacing:3.520000pt;}
.ws12_c00443{word-spacing:3.776000pt;}
.ws15_c00443{word-spacing:9.216000pt;}
.ws3_c00443{word-spacing:13.568000pt;}
.ws13_c00443{word-spacing:13.696000pt;}
.wsc_c00443{word-spacing:14.336000pt;}
.wsd_c00443{word-spacing:14.720000pt;}
.wsf_c00443{word-spacing:16.896000pt;}
.ws14_c00443{word-spacing:18.496000pt;}
.ws8_c00443{word-spacing:19.200000pt;}
.ws7_c00443{word-spacing:19.776000pt;}
._0_c00443{margin-left:-0.908800pt;}
.fs1_c00443{font-size:58.560000pt;}
.fs0_c00443{font-size:64.000000pt;}
.y0_c00443{bottom:0.000000pt;}
.y1_c00443{bottom:54.887600pt;}
.y24_c00443{bottom:102.599467pt;}
.y23_c00443{bottom:130.199467pt;}
.y22_c00443{bottom:157.799467pt;}
.y21_c00443{bottom:185.399467pt;}
.y20_c00443{bottom:212.999467pt;}
.y1f_c00443{bottom:240.599467pt;}
.y1e_c00443{bottom:268.199467pt;}
.y1d_c00443{bottom:295.799467pt;}
.y1c_c00443{bottom:323.399467pt;}
.y1b_c00443{bottom:350.999467pt;}
.y1a_c00443{bottom:378.599467pt;}
.y19_c00443{bottom:406.199467pt;}
.y18_c00443{bottom:433.799467pt;}
.y17_c00443{bottom:461.399467pt;}
.y16_c00443{bottom:488.999467pt;}
.y15_c00443{bottom:516.599467pt;}
.y14_c00443{bottom:544.199467pt;}
.y13_c00443{bottom:571.799467pt;}
.y12_c00443{bottom:599.399467pt;}
.y11_c00443{bottom:626.999467pt;}
.y10_c00443{bottom:654.599467pt;}
.yf_c00443{bottom:682.199467pt;}
.ye_c00443{bottom:709.719467pt;}
.yd_c00443{bottom:737.319467pt;}
.yc_c00443{bottom:764.919467pt;}
.yb_c00443{bottom:792.519467pt;}
.ya_c00443{bottom:820.119467pt;}
.y9_c00443{bottom:847.719467pt;}
.y8_c00443{bottom:875.319467pt;}
.y7_c00443{bottom:902.919467pt;}
.y6_c00443{bottom:930.519467pt;}
.y5_c00443{bottom:958.119467pt;}
.y4_c00443{bottom:985.719467pt;}
.y3_c00443{bottom:1013.319467pt;}
.y2_c00443{bottom:1061.399467pt;}
.h2_c00443{height:44.800000pt;}
.h3_c00443{height:48.294844pt;}
.h4_c00443{height:68.288000pt;}
.h0_c00443{height:1122.520000pt;}
.h1_c00443{height:1122.666667pt;}
.w0_c00443{width:793.701333pt;}
.w1_c00443{width:794.000000pt;}
.x0_c00443{left:0.000000pt;}
.x1_c00443{left:48.000000pt;}
.x2_c00443{left:113.440000pt;}
.x3_c00443{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00444;src:url('chunks/assets/font_e4a0d6008c22ca1454cb0acc.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00444;src:url('chunks/assets/font_6d8c14d2907c75dfc4ca7391.woff2')format("woff");}.ff3_c00444{font-family:ff3_c00444;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00444;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00444{font-family:ff4_c00444;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00444;src:url('chunks/assets/font_6175b5b66cec0a755de55f61.woff2')format("woff");}.ff5_c00444{font-family:ff5_c00444;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00444;src:url('chunks/assets/font_d8a8165d99db660498928edf.woff2')format("woff");}.ff6_c00444{font-family:ff6_c00444;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.lsa_c00444{letter-spacing:-0.648000px;}
.ls9_c00444{letter-spacing:-0.144000px;}
.lsb_c00444{letter-spacing:-0.072000px;}
.ls8_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:0.072000px;}
.ls2_c00444{letter-spacing:0.144000px;}
.ls6_c00444{letter-spacing:18.144000px;}
.ls5_c00444{letter-spacing:19.584000px;}
.ls4_c00444{letter-spacing:20.664000px;}
.ls1_c00444{letter-spacing:22.104000px;}
.ls7_c00444{letter-spacing:36.144000px;}
.ls3_c00444{letter-spacing:37.224000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00444{word-spacing:-18.144000px;}
.ws6_c00444{word-spacing:-18.072000px;}
.ws0_c00444{word-spacing:-18.000000px;}
.ws7_c00444{word-spacing:-17.928000px;}
.ws1_c00444{word-spacing:-17.856000px;}
.ws5_c00444{word-spacing:-17.352000px;}
.wsd_c00444{word-spacing:-0.432000px;}
.wsa_c00444{word-spacing:-0.131760px;}
.ws12_c00444{word-spacing:-0.072000px;}
.ws9_c00444{word-spacing:0.000000px;}
.ws8_c00444{word-spacing:0.144000px;}
.ws1a_c00444{word-spacing:0.197640px;}
.ws1d_c00444{word-spacing:1.368000px;}
.ws1f_c00444{word-spacing:1.440000px;}
.ws1c_c00444{word-spacing:1.800000px;}
.ws14_c00444{word-spacing:2.736000px;}
.ws15_c00444{word-spacing:2.880000px;}
.ws2_c00444{word-spacing:3.024000px;}
.wsf_c00444{word-spacing:3.888000px;}
.wse_c00444{word-spacing:3.960000px;}
.ws16_c00444{word-spacing:4.248000px;}
.ws22_c00444{word-spacing:4.608000px;}
.ws1b_c00444{word-spacing:4.680000px;}
.ws24_c00444{word-spacing:5.688000px;}
.ws1e_c00444{word-spacing:8.568000px;}
.ws23_c00444{word-spacing:8.640000px;}
.ws19_c00444{word-spacing:10.368000px;}
.ws3_c00444{word-spacing:15.264000px;}
.ws17_c00444{word-spacing:15.408000px;}
.ws10_c00444{word-spacing:16.128000px;}
.ws11_c00444{word-spacing:16.560000px;}
.ws21_c00444{word-spacing:18.288000px;}
.ws20_c00444{word-spacing:18.360000px;}
.ws13_c00444{word-spacing:19.008000px;}
.ws18_c00444{word-spacing:20.808000px;}
.wsc_c00444{word-spacing:21.600000px;}
.wsb_c00444{word-spacing:22.248000px;}
._0_c00444{margin-left:-1.022400px;}
._1_c00444{width:1.119960px;}
._2_c00444{width:2.304000px;}
._3_c00444{width:16.992000px;}
.fc2_c00444{color:transparent;}
.fc1_c00444{color:rgb(0,0,0);}
.fc0_c00444{color:rgb(35,31,32);}
.fs1_c00444{font-size:65.880000px;}
.fs0_c00444{font-size:72.000000px;}
.y0_c00444{bottom:0.000000px;}
.y1_c00444{bottom:61.748550px;}
.y24_c00444{bottom:115.424400px;}
.y23_c00444{bottom:146.474400px;}
.y22_c00444{bottom:177.524400px;}
.y21_c00444{bottom:208.574400px;}
.y20_c00444{bottom:239.624400px;}
.y1f_c00444{bottom:270.674400px;}
.y1e_c00444{bottom:301.724400px;}
.y1d_c00444{bottom:332.774400px;}
.y1c_c00444{bottom:363.824400px;}
.y1b_c00444{bottom:394.874400px;}
.y1a_c00444{bottom:425.924400px;}
.y19_c00444{bottom:456.974400px;}
.y18_c00444{bottom:488.024400px;}
.y17_c00444{bottom:519.074400px;}
.y16_c00444{bottom:550.124400px;}
.y15_c00444{bottom:581.174400px;}
.y14_c00444{bottom:612.224400px;}
.y13_c00444{bottom:643.274400px;}
.y12_c00444{bottom:674.324400px;}
.y11_c00444{bottom:705.374400px;}
.y10_c00444{bottom:736.424400px;}
.yf_c00444{bottom:767.474400px;}
.ye_c00444{bottom:798.434400px;}
.yd_c00444{bottom:829.484400px;}
.yc_c00444{bottom:860.534400px;}
.yb_c00444{bottom:891.584400px;}
.ya_c00444{bottom:922.634400px;}
.y9_c00444{bottom:953.684400px;}
.y8_c00444{bottom:984.734400px;}
.y7_c00444{bottom:1015.784400px;}
.y6_c00444{bottom:1046.834400px;}
.y5_c00444{bottom:1077.884400px;}
.y4_c00444{bottom:1108.934400px;}
.y3_c00444{bottom:1139.984400px;}
.y25_c00444{bottom:1173.915120px;}
.y2_c00444{bottom:1194.074400px;}
.h2_c00444{height:50.400000px;}
.h3_c00444{height:54.331699px;}
.h4_c00444{height:76.824000px;}
.h0_c00444{height:1262.835000px;}
.h1_c00444{height:1263.000000px;}
.w2_c00444{width:0.000000px;}
.w3_c00444{width:0.066000px;}
.w0_c00444{width:892.914000px;}
.w1_c00444{width:893.250000px;}
.x1_c00444{left:-838.913400px;}
.x2_c00444{left:-765.293400px;}
.x3_c00444{left:-733.343400px;}
.x0_c00444{left:0.000000px;}
.x5_c00444{left:127.620000px;}
.x6_c00444{left:159.570000px;}
.x4_c00444{left:804.366150px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.lsa_c00444{letter-spacing:-0.576000pt;}
.ls9_c00444{letter-spacing:-0.128000pt;}
.lsb_c00444{letter-spacing:-0.064000pt;}
.ls8_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:0.064000pt;}
.ls2_c00444{letter-spacing:0.128000pt;}
.ls6_c00444{letter-spacing:16.128000pt;}
.ls5_c00444{letter-spacing:17.408000pt;}
.ls4_c00444{letter-spacing:18.368000pt;}
.ls1_c00444{letter-spacing:19.648000pt;}
.ls7_c00444{letter-spacing:32.128000pt;}
.ls3_c00444{letter-spacing:33.088000pt;}
.ws4_c00444{word-spacing:-16.128000pt;}
.ws6_c00444{word-spacing:-16.064000pt;}
.ws0_c00444{word-spacing:-16.000000pt;}
.ws7_c00444{word-spacing:-15.936000pt;}
.ws1_c00444{word-spacing:-15.872000pt;}
.ws5_c00444{word-spacing:-15.424000pt;}
.wsd_c00444{word-spacing:-0.384000pt;}
.wsa_c00444{word-spacing:-0.117120pt;}
.ws12_c00444{word-spacing:-0.064000pt;}
.ws9_c00444{word-spacing:0.000000pt;}
.ws8_c00444{word-spacing:0.128000pt;}
.ws1a_c00444{word-spacing:0.175680pt;}
.ws1d_c00444{word-spacing:1.216000pt;}
.ws1f_c00444{word-spacing:1.280000pt;}
.ws1c_c00444{word-spacing:1.600000pt;}
.ws14_c00444{word-spacing:2.432000pt;}
.ws15_c00444{word-spacing:2.560000pt;}
.ws2_c00444{word-spacing:2.688000pt;}
.wsf_c00444{word-spacing:3.456000pt;}
.wse_c00444{word-spacing:3.520000pt;}
.ws16_c00444{word-spacing:3.776000pt;}
.ws22_c00444{word-spacing:4.096000pt;}
.ws1b_c00444{word-spacing:4.160000pt;}
.ws24_c00444{word-spacing:5.056000pt;}
.ws1e_c00444{word-spacing:7.616000pt;}
.ws23_c00444{word-spacing:7.680000pt;}
.ws19_c00444{word-spacing:9.216000pt;}
.ws3_c00444{word-spacing:13.568000pt;}
.ws17_c00444{word-spacing:13.696000pt;}
.ws10_c00444{word-spacing:14.336000pt;}
.ws11_c00444{word-spacing:14.720000pt;}
.ws21_c00444{word-spacing:16.256000pt;}
.ws20_c00444{word-spacing:16.320000pt;}
.ws13_c00444{word-spacing:16.896000pt;}
.ws18_c00444{word-spacing:18.496000pt;}
.wsc_c00444{word-spacing:19.200000pt;}
.wsb_c00444{word-spacing:19.776000pt;}
._0_c00444{margin-left:-0.908800pt;}
._1_c00444{width:0.995520pt;}
._2_c00444{width:2.048000pt;}
._3_c00444{width:15.104000pt;}
.fs1_c00444{font-size:58.560000pt;}
.fs0_c00444{font-size:64.000000pt;}
.y0_c00444{bottom:0.000000pt;}
.y1_c00444{bottom:54.887600pt;}
.y24_c00444{bottom:102.599467pt;}
.y23_c00444{bottom:130.199467pt;}
.y22_c00444{bottom:157.799467pt;}
.y21_c00444{bottom:185.399467pt;}
.y20_c00444{bottom:212.999467pt;}
.y1f_c00444{bottom:240.599467pt;}
.y1e_c00444{bottom:268.199467pt;}
.y1d_c00444{bottom:295.799467pt;}
.y1c_c00444{bottom:323.399467pt;}
.y1b_c00444{bottom:350.999467pt;}
.y1a_c00444{bottom:378.599467pt;}
.y19_c00444{bottom:406.199467pt;}
.y18_c00444{bottom:433.799467pt;}
.y17_c00444{bottom:461.399467pt;}
.y16_c00444{bottom:488.999467pt;}
.y15_c00444{bottom:516.599467pt;}
.y14_c00444{bottom:544.199467pt;}
.y13_c00444{bottom:571.799467pt;}
.y12_c00444{bottom:599.399467pt;}
.y11_c00444{bottom:626.999467pt;}
.y10_c00444{bottom:654.599467pt;}
.yf_c00444{bottom:682.199467pt;}
.ye_c00444{bottom:709.719467pt;}
.yd_c00444{bottom:737.319467pt;}
.yc_c00444{bottom:764.919467pt;}
.yb_c00444{bottom:792.519467pt;}
.ya_c00444{bottom:820.119467pt;}
.y9_c00444{bottom:847.719467pt;}
.y8_c00444{bottom:875.319467pt;}
.y7_c00444{bottom:902.919467pt;}
.y6_c00444{bottom:930.519467pt;}
.y5_c00444{bottom:958.119467pt;}
.y4_c00444{bottom:985.719467pt;}
.y3_c00444{bottom:1013.319467pt;}
.y25_c00444{bottom:1043.480107pt;}
.y2_c00444{bottom:1061.399467pt;}
.h2_c00444{height:44.800000pt;}
.h3_c00444{height:48.294844pt;}
.h4_c00444{height:68.288000pt;}
.h0_c00444{height:1122.520000pt;}
.h1_c00444{height:1122.666667pt;}
.w2_c00444{width:0.000000pt;}
.w3_c00444{width:0.058667pt;}
.w0_c00444{width:793.701333pt;}
.w1_c00444{width:794.000000pt;}
.x1_c00444{left:-745.700800pt;}
.x2_c00444{left:-680.260800pt;}
.x3_c00444{left:-651.860800pt;}
.x0_c00444{left:0.000000pt;}
.x5_c00444{left:113.440000pt;}
.x6_c00444{left:141.840000pt;}
.x4_c00444{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00445;src:url('chunks/assets/font_ae2bf7949f0ba57b998d5ab3.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_f7ae035d06c11cf0980473ad.woff2')format("woff");}.ff3_c00445{font-family:ff3_c00445;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls6_c00445{letter-spacing:-0.144000px;}
.ls5_c00445{letter-spacing:0.000000px;}
.ls0_c00445{letter-spacing:0.072000px;}
.ls4_c00445{letter-spacing:0.144000px;}
.ls2_c00445{letter-spacing:18.144000px;}
.ls3_c00445{letter-spacing:19.224000px;}
.ls1_c00445{letter-spacing:22.824000px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00445{word-spacing:-18.072000px;}
.ws0_c00445{word-spacing:-18.000000px;}
.wsd_c00445{word-spacing:-0.432000px;}
.wsc_c00445{word-spacing:-0.360000px;}
.ws11_c00445{word-spacing:-0.144000px;}
.ws3_c00445{word-spacing:-0.131760px;}
.ws4_c00445{word-spacing:-0.072000px;}
.ws2_c00445{word-spacing:0.000000px;}
.wse_c00445{word-spacing:0.144000px;}
.ws7_c00445{word-spacing:0.288000px;}
.ws6_c00445{word-spacing:0.360000px;}
.ws14_c00445{word-spacing:0.576000px;}
.ws15_c00445{word-spacing:0.648000px;}
.ws12_c00445{word-spacing:1.080000px;}
.wsf_c00445{word-spacing:2.448000px;}
.ws10_c00445{word-spacing:2.520000px;}
.wsa_c00445{word-spacing:4.680000px;}
.ws9_c00445{word-spacing:4.968000px;}
.ws8_c00445{word-spacing:5.040000px;}
.ws13_c00445{word-spacing:8.208000px;}
.wsb_c00445{word-spacing:9.288000px;}
.ws5_c00445{word-spacing:10.368000px;}
._0_c00445{margin-left:-1.238400px;}
.fc1_c00445{color:rgb(0,0,0);}
.fc0_c00445{color:rgb(35,31,32);}
.fs1_c00445{font-size:65.880000px;}
.fs0_c00445{font-size:72.000000px;}
.y0_c00445{bottom:0.000000px;}
.y1_c00445{bottom:61.748550px;}
.y22_c00445{bottom:177.524400px;}
.y21_c00445{bottom:208.574400px;}
.y20_c00445{bottom:239.624400px;}
.y1f_c00445{bottom:270.674400px;}
.y1e_c00445{bottom:301.724400px;}
.y1d_c00445{bottom:332.774400px;}
.y1c_c00445{bottom:363.824400px;}
.y1b_c00445{bottom:394.874400px;}
.y1a_c00445{bottom:425.924400px;}
.y19_c00445{bottom:456.974400px;}
.y18_c00445{bottom:488.024400px;}
.y17_c00445{bottom:519.074400px;}
.y16_c00445{bottom:550.124400px;}
.y15_c00445{bottom:581.174400px;}
.y14_c00445{bottom:612.224400px;}
.y13_c00445{bottom:643.274400px;}
.y12_c00445{bottom:674.324400px;}
.y11_c00445{bottom:705.374400px;}
.y10_c00445{bottom:736.424400px;}
.yf_c00445{bottom:767.474400px;}
.ye_c00445{bottom:798.434400px;}
.yd_c00445{bottom:829.484400px;}
.yc_c00445{bottom:860.534400px;}
.yb_c00445{bottom:891.584400px;}
.ya_c00445{bottom:922.634400px;}
.y9_c00445{bottom:953.684400px;}
.y8_c00445{bottom:984.734400px;}
.y7_c00445{bottom:1015.784400px;}
.y6_c00445{bottom:1046.834400px;}
.y5_c00445{bottom:1077.884400px;}
.y4_c00445{bottom:1108.934400px;}
.y3_c00445{bottom:1139.984400px;}
.y2_c00445{bottom:1194.074400px;}
.h2_c00445{height:50.400000px;}
.h3_c00445{height:54.331699px;}
.h4_c00445{height:76.824000px;}
.h0_c00445{height:1262.835000px;}
.h1_c00445{height:1263.000000px;}
.w0_c00445{width:892.914000px;}
.w1_c00445{width:893.250000px;}
.x0_c00445{left:0.000000px;}
.x1_c00445{left:54.000000px;}
.x2_c00445{left:127.620000px;}
.x3_c00445{left:159.570000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls6_c00445{letter-spacing:-0.128000pt;}
.ls5_c00445{letter-spacing:0.000000pt;}
.ls0_c00445{letter-spacing:0.064000pt;}
.ls4_c00445{letter-spacing:0.128000pt;}
.ls2_c00445{letter-spacing:16.128000pt;}
.ls3_c00445{letter-spacing:17.088000pt;}
.ls1_c00445{letter-spacing:20.288000pt;}
.ws1_c00445{word-spacing:-16.064000pt;}
.ws0_c00445{word-spacing:-16.000000pt;}
.wsd_c00445{word-spacing:-0.384000pt;}
.wsc_c00445{word-spacing:-0.320000pt;}
.ws11_c00445{word-spacing:-0.128000pt;}
.ws3_c00445{word-spacing:-0.117120pt;}
.ws4_c00445{word-spacing:-0.064000pt;}
.ws2_c00445{word-spacing:0.000000pt;}
.wse_c00445{word-spacing:0.128000pt;}
.ws7_c00445{word-spacing:0.256000pt;}
.ws6_c00445{word-spacing:0.320000pt;}
.ws14_c00445{word-spacing:0.512000pt;}
.ws15_c00445{word-spacing:0.576000pt;}
.ws12_c00445{word-spacing:0.960000pt;}
.wsf_c00445{word-spacing:2.176000pt;}
.ws10_c00445{word-spacing:2.240000pt;}
.wsa_c00445{word-spacing:4.160000pt;}
.ws9_c00445{word-spacing:4.416000pt;}
.ws8_c00445{word-spacing:4.480000pt;}
.ws13_c00445{word-spacing:7.296000pt;}
.wsb_c00445{word-spacing:8.256000pt;}
.ws5_c00445{word-spacing:9.216000pt;}
._0_c00445{margin-left:-1.100800pt;}
.fs1_c00445{font-size:58.560000pt;}
.fs0_c00445{font-size:64.000000pt;}
.y0_c00445{bottom:0.000000pt;}
.y1_c00445{bottom:54.887600pt;}
.y22_c00445{bottom:157.799467pt;}
.y21_c00445{bottom:185.399467pt;}
.y20_c00445{bottom:212.999467pt;}
.y1f_c00445{bottom:240.599467pt;}
.y1e_c00445{bottom:268.199467pt;}
.y1d_c00445{bottom:295.799467pt;}
.y1c_c00445{bottom:323.399467pt;}
.y1b_c00445{bottom:350.999467pt;}
.y1a_c00445{bottom:378.599467pt;}
.y19_c00445{bottom:406.199467pt;}
.y18_c00445{bottom:433.799467pt;}
.y17_c00445{bottom:461.399467pt;}
.y16_c00445{bottom:488.999467pt;}
.y15_c00445{bottom:516.599467pt;}
.y14_c00445{bottom:544.199467pt;}
.y13_c00445{bottom:571.799467pt;}
.y12_c00445{bottom:599.399467pt;}
.y11_c00445{bottom:626.999467pt;}
.y10_c00445{bottom:654.599467pt;}
.yf_c00445{bottom:682.199467pt;}
.ye_c00445{bottom:709.719467pt;}
.yd_c00445{bottom:737.319467pt;}
.yc_c00445{bottom:764.919467pt;}
.yb_c00445{bottom:792.519467pt;}
.ya_c00445{bottom:820.119467pt;}
.y9_c00445{bottom:847.719467pt;}
.y8_c00445{bottom:875.319467pt;}
.y7_c00445{bottom:902.919467pt;}
.y6_c00445{bottom:930.519467pt;}
.y5_c00445{bottom:958.119467pt;}
.y4_c00445{bottom:985.719467pt;}
.y3_c00445{bottom:1013.319467pt;}
.y2_c00445{bottom:1061.399467pt;}
.h2_c00445{height:44.800000pt;}
.h3_c00445{height:48.294844pt;}
.h4_c00445{height:68.288000pt;}
.h0_c00445{height:1122.520000pt;}
.h1_c00445{height:1122.666667pt;}
.w0_c00445{width:793.701333pt;}
.w1_c00445{width:794.000000pt;}
.x0_c00445{left:0.000000pt;}
.x1_c00445{left:48.000000pt;}
.x2_c00445{left:113.440000pt;}
.x3_c00445{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00446;src:url('chunks/assets/font_6a6907b80cf6ded4fc13fd3d.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00446;src:url('chunks/assets/font_3a95b0b3b7e78be82f6b7bed.woff2')format("woff");}.ff3_c00446{font-family:ff3_c00446;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00446;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00446;src:url('chunks/assets/font_3f3f09c3cd270030e5420e41.woff2')format("woff");}.ff5_c00446{font-family:ff5_c00446;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00446;src:url('chunks/assets/font_f202c460ea0567f651f96e5c.woff2')format("woff");}.ff6_c00446{font-family:ff6_c00446;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls8_c00446{letter-spacing:-0.144000px;}
.ls7_c00446{letter-spacing:0.000000px;}
.ls0_c00446{letter-spacing:0.072000px;}
.ls4_c00446{letter-spacing:0.144000px;}
.ls9_c00446{letter-spacing:0.360000px;}
.ls2_c00446{letter-spacing:18.144000px;}
.ls6_c00446{letter-spacing:18.151200px;}
.ls3_c00446{letter-spacing:19.224000px;}
.ls5_c00446{letter-spacing:20.304000px;}
.ls1_c00446{letter-spacing:22.824000px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00446{word-spacing:-18.360000px;}
.ws4_c00446{word-spacing:-18.144000px;}
.ws1_c00446{word-spacing:-18.072000px;}
.ws0_c00446{word-spacing:-18.000000px;}
.ws3_c00446{word-spacing:-17.856000px;}
.ws10_c00446{word-spacing:-0.432000px;}
.wsf_c00446{word-spacing:-0.360000px;}
.ws14_c00446{word-spacing:-0.144000px;}
.ws6_c00446{word-spacing:-0.131760px;}
.ws7_c00446{word-spacing:-0.072000px;}
.ws5_c00446{word-spacing:0.000000px;}
.ws11_c00446{word-spacing:0.144000px;}
.ws19_c00446{word-spacing:0.197640px;}
.wsa_c00446{word-spacing:0.288000px;}
.ws9_c00446{word-spacing:0.360000px;}
.ws17_c00446{word-spacing:0.576000px;}
.ws18_c00446{word-spacing:0.648000px;}
.ws15_c00446{word-spacing:1.080000px;}
.ws1c_c00446{word-spacing:2.088000px;}
.ws1a_c00446{word-spacing:2.160000px;}
.ws12_c00446{word-spacing:2.448000px;}
.ws13_c00446{word-spacing:2.520000px;}
.wsd_c00446{word-spacing:4.680000px;}
.wsc_c00446{word-spacing:4.968000px;}
.wsb_c00446{word-spacing:5.040000px;}
.ws20_c00446{word-spacing:5.688000px;}
.ws16_c00446{word-spacing:8.208000px;}
.wse_c00446{word-spacing:9.288000px;}
.ws8_c00446{word-spacing:10.368000px;}
.ws1f_c00446{word-spacing:12.168000px;}
.ws1b_c00446{word-spacing:17.568000px;}
.ws1d_c00446{word-spacing:18.648000px;}
.ws1e_c00446{word-spacing:18.720000px;}
._0_c00446{margin-left:-1.238400px;}
._1_c00446{width:1.119960px;}
._2_c00446{width:21.168000px;}
.fc2_c00446{color:transparent;}
.fc1_c00446{color:rgb(0,0,0);}
.fc0_c00446{color:rgb(35,31,32);}
.fs1_c00446{font-size:65.880000px;}
.fs0_c00446{font-size:72.000000px;}
.y0_c00446{bottom:0.000000px;}
.y1_c00446{bottom:61.748550px;}
.y24_c00446{bottom:146.474400px;}
.y22_c00446{bottom:177.524400px;}
.y21_c00446{bottom:208.574400px;}
.y20_c00446{bottom:239.624400px;}
.y1f_c00446{bottom:270.674400px;}
.y1e_c00446{bottom:301.724400px;}
.y1d_c00446{bottom:332.774400px;}
.y1c_c00446{bottom:363.824400px;}
.y1b_c00446{bottom:394.874400px;}
.y1a_c00446{bottom:425.924400px;}
.y19_c00446{bottom:456.974400px;}
.y18_c00446{bottom:488.024400px;}
.y17_c00446{bottom:519.074400px;}
.y16_c00446{bottom:550.124400px;}
.y15_c00446{bottom:581.174400px;}
.y14_c00446{bottom:612.224400px;}
.y13_c00446{bottom:643.274400px;}
.y12_c00446{bottom:674.324400px;}
.y11_c00446{bottom:705.374400px;}
.y10_c00446{bottom:736.424400px;}
.yf_c00446{bottom:767.474400px;}
.ye_c00446{bottom:798.434400px;}
.yd_c00446{bottom:829.484400px;}
.yc_c00446{bottom:860.534400px;}
.yb_c00446{bottom:891.584400px;}
.ya_c00446{bottom:922.634400px;}
.y9_c00446{bottom:953.684400px;}
.y8_c00446{bottom:984.734400px;}
.y7_c00446{bottom:1015.784400px;}
.y6_c00446{bottom:1046.834400px;}
.y5_c00446{bottom:1077.884400px;}
.y4_c00446{bottom:1108.934400px;}
.y3_c00446{bottom:1139.984400px;}
.y23_c00446{bottom:1173.915120px;}
.y2_c00446{bottom:1194.074400px;}
.h2_c00446{height:50.400000px;}
.h3_c00446{height:54.331699px;}
.h4_c00446{height:76.824000px;}
.h0_c00446{height:1262.835000px;}
.h1_c00446{height:1263.000000px;}
.w2_c00446{width:0.000000px;}
.w3_c00446{width:0.066000px;}
.w0_c00446{width:892.914000px;}
.w1_c00446{width:893.250000px;}
.x1_c00446{left:-838.913400px;}
.x2_c00446{left:-765.293400px;}
.x3_c00446{left:-733.343400px;}
.x0_c00446{left:0.000000px;}
.x5_c00446{left:127.620000px;}
.x6_c00446{left:132.120000px;}
.x7_c00446{left:159.570000px;}
.x4_c00446{left:804.366150px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls8_c00446{letter-spacing:-0.128000pt;}
.ls7_c00446{letter-spacing:0.000000pt;}
.ls0_c00446{letter-spacing:0.064000pt;}
.ls4_c00446{letter-spacing:0.128000pt;}
.ls9_c00446{letter-spacing:0.320000pt;}
.ls2_c00446{letter-spacing:16.128000pt;}
.ls6_c00446{letter-spacing:16.134400pt;}
.ls3_c00446{letter-spacing:17.088000pt;}
.ls5_c00446{letter-spacing:18.048000pt;}
.ls1_c00446{letter-spacing:20.288000pt;}
.ws2_c00446{word-spacing:-16.320000pt;}
.ws4_c00446{word-spacing:-16.128000pt;}
.ws1_c00446{word-spacing:-16.064000pt;}
.ws0_c00446{word-spacing:-16.000000pt;}
.ws3_c00446{word-spacing:-15.872000pt;}
.ws10_c00446{word-spacing:-0.384000pt;}
.wsf_c00446{word-spacing:-0.320000pt;}
.ws14_c00446{word-spacing:-0.128000pt;}
.ws6_c00446{word-spacing:-0.117120pt;}
.ws7_c00446{word-spacing:-0.064000pt;}
.ws5_c00446{word-spacing:0.000000pt;}
.ws11_c00446{word-spacing:0.128000pt;}
.ws19_c00446{word-spacing:0.175680pt;}
.wsa_c00446{word-spacing:0.256000pt;}
.ws9_c00446{word-spacing:0.320000pt;}
.ws17_c00446{word-spacing:0.512000pt;}
.ws18_c00446{word-spacing:0.576000pt;}
.ws15_c00446{word-spacing:0.960000pt;}
.ws1c_c00446{word-spacing:1.856000pt;}
.ws1a_c00446{word-spacing:1.920000pt;}
.ws12_c00446{word-spacing:2.176000pt;}
.ws13_c00446{word-spacing:2.240000pt;}
.wsd_c00446{word-spacing:4.160000pt;}
.wsc_c00446{word-spacing:4.416000pt;}
.wsb_c00446{word-spacing:4.480000pt;}
.ws20_c00446{word-spacing:5.056000pt;}
.ws16_c00446{word-spacing:7.296000pt;}
.wse_c00446{word-spacing:8.256000pt;}
.ws8_c00446{word-spacing:9.216000pt;}
.ws1f_c00446{word-spacing:10.816000pt;}
.ws1b_c00446{word-spacing:15.616000pt;}
.ws1d_c00446{word-spacing:16.576000pt;}
.ws1e_c00446{word-spacing:16.640000pt;}
._0_c00446{margin-left:-1.100800pt;}
._1_c00446{width:0.995520pt;}
._2_c00446{width:18.816000pt;}
.fs1_c00446{font-size:58.560000pt;}
.fs0_c00446{font-size:64.000000pt;}
.y0_c00446{bottom:0.000000pt;}
.y1_c00446{bottom:54.887600pt;}
.y24_c00446{bottom:130.199467pt;}
.y22_c00446{bottom:157.799467pt;}
.y21_c00446{bottom:185.399467pt;}
.y20_c00446{bottom:212.999467pt;}
.y1f_c00446{bottom:240.599467pt;}
.y1e_c00446{bottom:268.199467pt;}
.y1d_c00446{bottom:295.799467pt;}
.y1c_c00446{bottom:323.399467pt;}
.y1b_c00446{bottom:350.999467pt;}
.y1a_c00446{bottom:378.599467pt;}
.y19_c00446{bottom:406.199467pt;}
.y18_c00446{bottom:433.799467pt;}
.y17_c00446{bottom:461.399467pt;}
.y16_c00446{bottom:488.999467pt;}
.y15_c00446{bottom:516.599467pt;}
.y14_c00446{bottom:544.199467pt;}
.y13_c00446{bottom:571.799467pt;}
.y12_c00446{bottom:599.399467pt;}
.y11_c00446{bottom:626.999467pt;}
.y10_c00446{bottom:654.599467pt;}
.yf_c00446{bottom:682.199467pt;}
.ye_c00446{bottom:709.719467pt;}
.yd_c00446{bottom:737.319467pt;}
.yc_c00446{bottom:764.919467pt;}
.yb_c00446{bottom:792.519467pt;}
.ya_c00446{bottom:820.119467pt;}
.y9_c00446{bottom:847.719467pt;}
.y8_c00446{bottom:875.319467pt;}
.y7_c00446{bottom:902.919467pt;}
.y6_c00446{bottom:930.519467pt;}
.y5_c00446{bottom:958.119467pt;}
.y4_c00446{bottom:985.719467pt;}
.y3_c00446{bottom:1013.319467pt;}
.y23_c00446{bottom:1043.480107pt;}
.y2_c00446{bottom:1061.399467pt;}
.h2_c00446{height:44.800000pt;}
.h3_c00446{height:48.294844pt;}
.h4_c00446{height:68.288000pt;}
.h0_c00446{height:1122.520000pt;}
.h1_c00446{height:1122.666667pt;}
.w2_c00446{width:0.000000pt;}
.w3_c00446{width:0.058667pt;}
.w0_c00446{width:793.701333pt;}
.w1_c00446{width:794.000000pt;}
.x1_c00446{left:-745.700800pt;}
.x2_c00446{left:-680.260800pt;}
.x3_c00446{left:-651.860800pt;}
.x0_c00446{left:0.000000pt;}
.x5_c00446{left:113.440000pt;}
.x6_c00446{left:117.440000pt;}
.x7_c00446{left:141.840000pt;}
.x4_c00446{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00447;src:url('chunks/assets/font_318cfec65f68d1d98077018b.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00447;src:url('chunks/assets/font_9f4a71855bc295e621dc2a9c.woff2')format("woff");}.ff3_c00447{font-family:ff3_c00447;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.ls8_c00447{letter-spacing:-0.072000px;}
.ls7_c00447{letter-spacing:0.000000px;}
.ls0_c00447{letter-spacing:0.072000px;}
.ls9_c00447{letter-spacing:0.144000px;}
.ls6_c00447{letter-spacing:17.784000px;}
.ls5_c00447{letter-spacing:18.144000px;}
.ls3_c00447{letter-spacing:18.504000px;}
.ls1_c00447{letter-spacing:21.024000px;}
.ls2_c00447{letter-spacing:22.464000px;}
.ls4_c00447{letter-spacing:24.984000px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00447{word-spacing:-18.144000px;}
.ws2_c00447{word-spacing:-18.072000px;}
.ws0_c00447{word-spacing:-18.000000px;}
.ws4_c00447{word-spacing:-17.928000px;}
.wsb_c00447{word-spacing:-0.432000px;}
.ws7_c00447{word-spacing:-0.131760px;}
.ws8_c00447{word-spacing:-0.072000px;}
.ws6_c00447{word-spacing:0.000000px;}
.ws1_c00447{word-spacing:0.144000px;}
.wsa_c00447{word-spacing:2.808000px;}
.ws9_c00447{word-spacing:2.880000px;}
.wse_c00447{word-spacing:3.816000px;}
.ws10_c00447{word-spacing:3.888000px;}
.wsd_c00447{word-spacing:4.248000px;}
.wsc_c00447{word-spacing:4.320000px;}
.ws13_c00447{word-spacing:5.688000px;}
.ws12_c00447{word-spacing:6.768000px;}
.ws3_c00447{word-spacing:6.984000px;}
.ws11_c00447{word-spacing:7.920000px;}
.wsf_c00447{word-spacing:23.328000px;}
._0_c00447{margin-left:-1.238400px;}
._1_c00447{width:1.008000px;}
.fc1_c00447{color:rgb(0,0,0);}
.fc0_c00447{color:rgb(35,31,32);}
.fs1_c00447{font-size:65.880000px;}
.fs0_c00447{font-size:72.000000px;}
.y0_c00447{bottom:0.000000px;}
.y1_c00447{bottom:61.748550px;}
.y1f_c00447{bottom:270.674400px;}
.y1e_c00447{bottom:301.724400px;}
.y1d_c00447{bottom:332.774400px;}
.y1c_c00447{bottom:363.824400px;}
.y1b_c00447{bottom:394.874400px;}
.y1a_c00447{bottom:425.924400px;}
.y19_c00447{bottom:456.974400px;}
.y18_c00447{bottom:488.024400px;}
.y17_c00447{bottom:519.074400px;}
.y16_c00447{bottom:550.124400px;}
.y15_c00447{bottom:581.174400px;}
.y14_c00447{bottom:612.224400px;}
.y13_c00447{bottom:643.274400px;}
.y12_c00447{bottom:674.324400px;}
.y11_c00447{bottom:705.374400px;}
.y10_c00447{bottom:736.424400px;}
.yf_c00447{bottom:767.474400px;}
.ye_c00447{bottom:798.434400px;}
.yd_c00447{bottom:829.484400px;}
.yc_c00447{bottom:860.534400px;}
.yb_c00447{bottom:891.584400px;}
.ya_c00447{bottom:922.634400px;}
.y9_c00447{bottom:953.684400px;}
.y8_c00447{bottom:984.734400px;}
.y7_c00447{bottom:1015.784400px;}
.y6_c00447{bottom:1046.834400px;}
.y5_c00447{bottom:1077.884400px;}
.y4_c00447{bottom:1108.934400px;}
.y3_c00447{bottom:1139.984400px;}
.y2_c00447{bottom:1194.074400px;}
.h2_c00447{height:50.400000px;}
.h3_c00447{height:54.331699px;}
.h4_c00447{height:76.824000px;}
.h0_c00447{height:1262.835000px;}
.h1_c00447{height:1263.000000px;}
.w0_c00447{width:892.914000px;}
.w1_c00447{width:893.250000px;}
.x0_c00447{left:0.000000px;}
.x1_c00447{left:54.000000px;}
.x2_c00447{left:127.620000px;}
.x3_c00447{left:159.570000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls8_c00447{letter-spacing:-0.064000pt;}
.ls7_c00447{letter-spacing:0.000000pt;}
.ls0_c00447{letter-spacing:0.064000pt;}
.ls9_c00447{letter-spacing:0.128000pt;}
.ls6_c00447{letter-spacing:15.808000pt;}
.ls5_c00447{letter-spacing:16.128000pt;}
.ls3_c00447{letter-spacing:16.448000pt;}
.ls1_c00447{letter-spacing:18.688000pt;}
.ls2_c00447{letter-spacing:19.968000pt;}
.ls4_c00447{letter-spacing:22.208000pt;}
.ws5_c00447{word-spacing:-16.128000pt;}
.ws2_c00447{word-spacing:-16.064000pt;}
.ws0_c00447{word-spacing:-16.000000pt;}
.ws4_c00447{word-spacing:-15.936000pt;}
.wsb_c00447{word-spacing:-0.384000pt;}
.ws7_c00447{word-spacing:-0.117120pt;}
.ws8_c00447{word-spacing:-0.064000pt;}
.ws6_c00447{word-spacing:0.000000pt;}
.ws1_c00447{word-spacing:0.128000pt;}
.wsa_c00447{word-spacing:2.496000pt;}
.ws9_c00447{word-spacing:2.560000pt;}
.wse_c00447{word-spacing:3.392000pt;}
.ws10_c00447{word-spacing:3.456000pt;}
.wsd_c00447{word-spacing:3.776000pt;}
.wsc_c00447{word-spacing:3.840000pt;}
.ws13_c00447{word-spacing:5.056000pt;}
.ws12_c00447{word-spacing:6.016000pt;}
.ws3_c00447{word-spacing:6.208000pt;}
.ws11_c00447{word-spacing:7.040000pt;}
.wsf_c00447{word-spacing:20.736000pt;}
._0_c00447{margin-left:-1.100800pt;}
._1_c00447{width:0.896000pt;}
.fs1_c00447{font-size:58.560000pt;}
.fs0_c00447{font-size:64.000000pt;}
.y0_c00447{bottom:0.000000pt;}
.y1_c00447{bottom:54.887600pt;}
.y1f_c00447{bottom:240.599467pt;}
.y1e_c00447{bottom:268.199467pt;}
.y1d_c00447{bottom:295.799467pt;}
.y1c_c00447{bottom:323.399467pt;}
.y1b_c00447{bottom:350.999467pt;}
.y1a_c00447{bottom:378.599467pt;}
.y19_c00447{bottom:406.199467pt;}
.y18_c00447{bottom:433.799467pt;}
.y17_c00447{bottom:461.399467pt;}
.y16_c00447{bottom:488.999467pt;}
.y15_c00447{bottom:516.599467pt;}
.y14_c00447{bottom:544.199467pt;}
.y13_c00447{bottom:571.799467pt;}
.y12_c00447{bottom:599.399467pt;}
.y11_c00447{bottom:626.999467pt;}
.y10_c00447{bottom:654.599467pt;}
.yf_c00447{bottom:682.199467pt;}
.ye_c00447{bottom:709.719467pt;}
.yd_c00447{bottom:737.319467pt;}
.yc_c00447{bottom:764.919467pt;}
.yb_c00447{bottom:792.519467pt;}
.ya_c00447{bottom:820.119467pt;}
.y9_c00447{bottom:847.719467pt;}
.y8_c00447{bottom:875.319467pt;}
.y7_c00447{bottom:902.919467pt;}
.y6_c00447{bottom:930.519467pt;}
.y5_c00447{bottom:958.119467pt;}
.y4_c00447{bottom:985.719467pt;}
.y3_c00447{bottom:1013.319467pt;}
.y2_c00447{bottom:1061.399467pt;}
.h2_c00447{height:44.800000pt;}
.h3_c00447{height:48.294844pt;}
.h4_c00447{height:68.288000pt;}
.h0_c00447{height:1122.520000pt;}
.h1_c00447{height:1122.666667pt;}
.w0_c00447{width:793.701333pt;}
.w1_c00447{width:794.000000pt;}
.x0_c00447{left:0.000000pt;}
.x1_c00447{left:48.000000pt;}
.x2_c00447{left:113.440000pt;}
.x3_c00447{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00448;src:url('chunks/assets/font_def608a5efbbf3e65899a6e6.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00448;src:url('chunks/assets/font_2645721c95c19f1c7df8900f.woff2')format("woff");}.ff3_c00448{font-family:ff3_c00448;line-height:1.575000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00448{font-family:ff4_c00448;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00448;src:url('chunks/assets/font_1fd2a53a04800da51ff3924d.woff2')format("woff");}.ff5_c00448{font-family:ff5_c00448;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00448;src:url('chunks/assets/font_d5f9161b747a9d29acd10283.woff2')format("woff");}.ff6_c00448{font-family:ff6_c00448;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00448{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.lsc_c00448{letter-spacing:-0.144000px;}
.lsb_c00448{letter-spacing:-0.072000px;}
.lsa_c00448{letter-spacing:0.000000px;}
.ls0_c00448{letter-spacing:0.072000px;}
.ls7_c00448{letter-spacing:0.144000px;}
.ls6_c00448{letter-spacing:17.784000px;}
.ls5_c00448{letter-spacing:18.144000px;}
.ls3_c00448{letter-spacing:18.504000px;}
.ls1_c00448{letter-spacing:21.024000px;}
.ls2_c00448{letter-spacing:22.464000px;}
.ls4_c00448{letter-spacing:24.984000px;}
.ls8_c00448{letter-spacing:29.304000px;}
.ls9_c00448{letter-spacing:36.504000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00448{word-spacing:-18.144000px;}
.ws2_c00448{word-spacing:-18.072000px;}
.ws0_c00448{word-spacing:-18.000000px;}
.ws4_c00448{word-spacing:-17.928000px;}
.ws6_c00448{word-spacing:-17.856000px;}
.wse_c00448{word-spacing:-0.432000px;}
.ws7_c00448{word-spacing:-0.216000px;}
.ws1b_c00448{word-spacing:-0.144000px;}
.wsa_c00448{word-spacing:-0.131760px;}
.wsb_c00448{word-spacing:-0.072000px;}
.ws9_c00448{word-spacing:0.000000px;}
.ws1_c00448{word-spacing:0.144000px;}
.ws17_c00448{word-spacing:0.197640px;}
.ws18_c00448{word-spacing:0.432000px;}
.ws1a_c00448{word-spacing:0.720000px;}
.wsd_c00448{word-spacing:2.808000px;}
.wsc_c00448{word-spacing:2.880000px;}
.ws1f_c00448{word-spacing:3.168000px;}
.ws11_c00448{word-spacing:3.816000px;}
.ws13_c00448{word-spacing:3.888000px;}
.ws10_c00448{word-spacing:4.248000px;}
.wsf_c00448{word-spacing:4.320000px;}
.ws19_c00448{word-spacing:4.968000px;}
.ws16_c00448{word-spacing:5.688000px;}
.ws20_c00448{word-spacing:6.120000px;}
.ws15_c00448{word-spacing:6.768000px;}
.ws3_c00448{word-spacing:6.984000px;}
.ws14_c00448{word-spacing:7.920000px;}
.ws1d_c00448{word-spacing:11.160000px;}
.ws1c_c00448{word-spacing:12.960000px;}
.ws21_c00448{word-spacing:14.760000px;}
.ws1e_c00448{word-spacing:18.720000px;}
.ws8_c00448{word-spacing:18.864000px;}
.ws12_c00448{word-spacing:23.328000px;}
._0_c00448{margin-left:-1.238400px;}
._1_c00448{width:1.008000px;}
._2_c00448{width:35.568000px;}
.fc2_c00448{color:transparent;}
.fc1_c00448{color:rgb(0,0,0);}
.fc0_c00448{color:rgb(35,31,32);}
.fs1_c00448{font-size:65.880000px;}
.fs0_c00448{font-size:72.000000px;}
.y0_c00448{bottom:0.000000px;}
.y1_c00448{bottom:61.748550px;}
.y25_c00448{bottom:115.424400px;}
.y24_c00448{bottom:146.474400px;}
.y23_c00448{bottom:177.524400px;}
.y22_c00448{bottom:208.574400px;}
.y21_c00448{bottom:239.624400px;}
.y1f_c00448{bottom:270.674400px;}
.y1e_c00448{bottom:301.724400px;}
.y1d_c00448{bottom:332.774400px;}
.y1c_c00448{bottom:363.824400px;}
.y1b_c00448{bottom:394.874400px;}
.y1a_c00448{bottom:425.924400px;}
.y19_c00448{bottom:456.974400px;}
.y18_c00448{bottom:488.024400px;}
.y17_c00448{bottom:519.074400px;}
.y16_c00448{bottom:550.124400px;}
.y15_c00448{bottom:581.174400px;}
.y14_c00448{bottom:612.224400px;}
.y13_c00448{bottom:643.274400px;}
.y12_c00448{bottom:674.324400px;}
.y11_c00448{bottom:705.374400px;}
.y10_c00448{bottom:736.424400px;}
.yf_c00448{bottom:767.474400px;}
.ye_c00448{bottom:798.434400px;}
.yd_c00448{bottom:829.484400px;}
.yc_c00448{bottom:860.534400px;}
.yb_c00448{bottom:891.584400px;}
.ya_c00448{bottom:922.634400px;}
.y9_c00448{bottom:953.684400px;}
.y8_c00448{bottom:984.734400px;}
.y7_c00448{bottom:1015.784400px;}
.y6_c00448{bottom:1046.834400px;}
.y5_c00448{bottom:1077.884400px;}
.y4_c00448{bottom:1108.934400px;}
.y3_c00448{bottom:1139.984400px;}
.y20_c00448{bottom:1173.915120px;}
.y2_c00448{bottom:1194.074400px;}
.h2_c00448{height:50.400000px;}
.h3_c00448{height:54.331699px;}
.h4_c00448{height:76.824000px;}
.h0_c00448{height:1262.835000px;}
.h1_c00448{height:1263.000000px;}
.w2_c00448{width:0.000000px;}
.w3_c00448{width:0.066000px;}
.w0_c00448{width:892.914000px;}
.w1_c00448{width:893.250000px;}
.x1_c00448{left:-838.913400px;}
.x2_c00448{left:-765.293400px;}
.x3_c00448{left:-733.343400px;}
.x0_c00448{left:0.000000px;}
.x5_c00448{left:127.620000px;}
.x4_c00448{left:804.366150px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.lsc_c00448{letter-spacing:-0.128000pt;}
.lsb_c00448{letter-spacing:-0.064000pt;}
.lsa_c00448{letter-spacing:0.000000pt;}
.ls0_c00448{letter-spacing:0.064000pt;}
.ls7_c00448{letter-spacing:0.128000pt;}
.ls6_c00448{letter-spacing:15.808000pt;}
.ls5_c00448{letter-spacing:16.128000pt;}
.ls3_c00448{letter-spacing:16.448000pt;}
.ls1_c00448{letter-spacing:18.688000pt;}
.ls2_c00448{letter-spacing:19.968000pt;}
.ls4_c00448{letter-spacing:22.208000pt;}
.ls8_c00448{letter-spacing:26.048000pt;}
.ls9_c00448{letter-spacing:32.448000pt;}
.ws5_c00448{word-spacing:-16.128000pt;}
.ws2_c00448{word-spacing:-16.064000pt;}
.ws0_c00448{word-spacing:-16.000000pt;}
.ws4_c00448{word-spacing:-15.936000pt;}
.ws6_c00448{word-spacing:-15.872000pt;}
.wse_c00448{word-spacing:-0.384000pt;}
.ws7_c00448{word-spacing:-0.192000pt;}
.ws1b_c00448{word-spacing:-0.128000pt;}
.wsa_c00448{word-spacing:-0.117120pt;}
.wsb_c00448{word-spacing:-0.064000pt;}
.ws9_c00448{word-spacing:0.000000pt;}
.ws1_c00448{word-spacing:0.128000pt;}
.ws17_c00448{word-spacing:0.175680pt;}
.ws18_c00448{word-spacing:0.384000pt;}
.ws1a_c00448{word-spacing:0.640000pt;}
.wsd_c00448{word-spacing:2.496000pt;}
.wsc_c00448{word-spacing:2.560000pt;}
.ws1f_c00448{word-spacing:2.816000pt;}
.ws11_c00448{word-spacing:3.392000pt;}
.ws13_c00448{word-spacing:3.456000pt;}
.ws10_c00448{word-spacing:3.776000pt;}
.wsf_c00448{word-spacing:3.840000pt;}
.ws19_c00448{word-spacing:4.416000pt;}
.ws16_c00448{word-spacing:5.056000pt;}
.ws20_c00448{word-spacing:5.440000pt;}
.ws15_c00448{word-spacing:6.016000pt;}
.ws3_c00448{word-spacing:6.208000pt;}
.ws14_c00448{word-spacing:7.040000pt;}
.ws1d_c00448{word-spacing:9.920000pt;}
.ws1c_c00448{word-spacing:11.520000pt;}
.ws21_c00448{word-spacing:13.120000pt;}
.ws1e_c00448{word-spacing:16.640000pt;}
.ws8_c00448{word-spacing:16.768000pt;}
.ws12_c00448{word-spacing:20.736000pt;}
._0_c00448{margin-left:-1.100800pt;}
._1_c00448{width:0.896000pt;}
._2_c00448{width:31.616000pt;}
.fs1_c00448{font-size:58.560000pt;}
.fs0_c00448{font-size:64.000000pt;}
.y0_c00448{bottom:0.000000pt;}
.y1_c00448{bottom:54.887600pt;}
.y25_c00448{bottom:102.599467pt;}
.y24_c00448{bottom:130.199467pt;}
.y23_c00448{bottom:157.799467pt;}
.y22_c00448{bottom:185.399467pt;}
.y21_c00448{bottom:212.999467pt;}
.y1f_c00448{bottom:240.599467pt;}
.y1e_c00448{bottom:268.199467pt;}
.y1d_c00448{bottom:295.799467pt;}
.y1c_c00448{bottom:323.399467pt;}
.y1b_c00448{bottom:350.999467pt;}
.y1a_c00448{bottom:378.599467pt;}
.y19_c00448{bottom:406.199467pt;}
.y18_c00448{bottom:433.799467pt;}
.y17_c00448{bottom:461.399467pt;}
.y16_c00448{bottom:488.999467pt;}
.y15_c00448{bottom:516.599467pt;}
.y14_c00448{bottom:544.199467pt;}
.y13_c00448{bottom:571.799467pt;}
.y12_c00448{bottom:599.399467pt;}
.y11_c00448{bottom:626.999467pt;}
.y10_c00448{bottom:654.599467pt;}
.yf_c00448{bottom:682.199467pt;}
.ye_c00448{bottom:709.719467pt;}
.yd_c00448{bottom:737.319467pt;}
.yc_c00448{bottom:764.919467pt;}
.yb_c00448{bottom:792.519467pt;}
.ya_c00448{bottom:820.119467pt;}
.y9_c00448{bottom:847.719467pt;}
.y8_c00448{bottom:875.319467pt;}
.y7_c00448{bottom:902.919467pt;}
.y6_c00448{bottom:930.519467pt;}
.y5_c00448{bottom:958.119467pt;}
.y4_c00448{bottom:985.719467pt;}
.y3_c00448{bottom:1013.319467pt;}
.y20_c00448{bottom:1043.480107pt;}
.y2_c00448{bottom:1061.399467pt;}
.h2_c00448{height:44.800000pt;}
.h3_c00448{height:48.294844pt;}
.h4_c00448{height:68.288000pt;}
.h0_c00448{height:1122.520000pt;}
.h1_c00448{height:1122.666667pt;}
.w2_c00448{width:0.000000pt;}
.w3_c00448{width:0.058667pt;}
.w0_c00448{width:793.701333pt;}
.w1_c00448{width:794.000000pt;}
.x1_c00448{left:-745.700800pt;}
.x2_c00448{left:-680.260800pt;}
.x3_c00448{left:-651.860800pt;}
.x0_c00448{left:0.000000pt;}
.x5_c00448{left:113.440000pt;}
.x4_c00448{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00449;src:url('chunks/assets/font_9b9bb36e85b5b10a8df22088.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00449;src:url('chunks/assets/font_2292aad8a7e7d10029eb9336.woff2')format("woff");}.ff3_c00449{font-family:ff3_c00449;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00449{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls4_c00449{letter-spacing:-0.144000px;}
.ls3_c00449{letter-spacing:0.000000px;}
.ls0_c00449{letter-spacing:0.072000px;}
.ls1_c00449{letter-spacing:0.144000px;}
.ls2_c00449{letter-spacing:18.144000px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00449{word-spacing:-18.000000px;}
.ws1_c00449{word-spacing:-17.856000px;}
.wsc_c00449{word-spacing:-0.144000px;}
.ws3_c00449{word-spacing:-0.131760px;}
.ws6_c00449{word-spacing:-0.072000px;}
.ws2_c00449{word-spacing:0.000000px;}
.ws9_c00449{word-spacing:0.288000px;}
.ws5_c00449{word-spacing:4.248000px;}
.wsb_c00449{word-spacing:4.536000px;}
.ws4_c00449{word-spacing:4.608000px;}
.wsa_c00449{word-spacing:8.928000px;}
.ws8_c00449{word-spacing:17.280000px;}
.ws7_c00449{word-spacing:19.368000px;}
.wsd_c00449{word-spacing:22.608000px;}
._0_c00449{margin-left:-1.080000px;}
._1_c00449{width:1.008000px;}
.fc1_c00449{color:rgb(0,0,0);}
.fc0_c00449{color:rgb(35,31,32);}
.fs1_c00449{font-size:65.880000px;}
.fs0_c00449{font-size:72.000000px;}
.y0_c00449{bottom:0.000000px;}
.y1_c00449{bottom:61.748550px;}
.y23_c00449{bottom:146.474400px;}
.y22_c00449{bottom:177.524400px;}
.y21_c00449{bottom:208.574400px;}
.y20_c00449{bottom:239.624400px;}
.y1f_c00449{bottom:270.674400px;}
.y1e_c00449{bottom:301.724400px;}
.y1d_c00449{bottom:332.774400px;}
.y1c_c00449{bottom:363.824400px;}
.y1b_c00449{bottom:394.874400px;}
.y1a_c00449{bottom:425.924400px;}
.y19_c00449{bottom:456.974400px;}
.y18_c00449{bottom:488.024400px;}
.y17_c00449{bottom:519.074400px;}
.y16_c00449{bottom:550.124400px;}
.y15_c00449{bottom:581.174400px;}
.y14_c00449{bottom:612.224400px;}
.y13_c00449{bottom:643.274400px;}
.y12_c00449{bottom:674.324400px;}
.y11_c00449{bottom:705.374400px;}
.y10_c00449{bottom:736.424400px;}
.yf_c00449{bottom:767.474400px;}
.ye_c00449{bottom:798.434400px;}
.yd_c00449{bottom:829.484400px;}
.yc_c00449{bottom:860.534400px;}
.yb_c00449{bottom:891.584400px;}
.ya_c00449{bottom:922.634400px;}
.y9_c00449{bottom:953.684400px;}
.y8_c00449{bottom:984.734400px;}
.y7_c00449{bottom:1015.784400px;}
.y6_c00449{bottom:1046.834400px;}
.y5_c00449{bottom:1077.884400px;}
.y4_c00449{bottom:1108.934400px;}
.y3_c00449{bottom:1139.984400px;}
.y2_c00449{bottom:1194.074400px;}
.h2_c00449{height:50.400000px;}
.h3_c00449{height:54.331699px;}
.h4_c00449{height:76.824000px;}
.h0_c00449{height:1262.835000px;}
.h1_c00449{height:1263.000000px;}
.w0_c00449{width:892.914000px;}
.w1_c00449{width:893.250000px;}
.x0_c00449{left:0.000000px;}
.x1_c00449{left:54.000000px;}
.x2_c00449{left:127.620000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls4_c00449{letter-spacing:-0.128000pt;}
.ls3_c00449{letter-spacing:0.000000pt;}
.ls0_c00449{letter-spacing:0.064000pt;}
.ls1_c00449{letter-spacing:0.128000pt;}
.ls2_c00449{letter-spacing:16.128000pt;}
.ws0_c00449{word-spacing:-16.000000pt;}
.ws1_c00449{word-spacing:-15.872000pt;}
.wsc_c00449{word-spacing:-0.128000pt;}
.ws3_c00449{word-spacing:-0.117120pt;}
.ws6_c00449{word-spacing:-0.064000pt;}
.ws2_c00449{word-spacing:0.000000pt;}
.ws9_c00449{word-spacing:0.256000pt;}
.ws5_c00449{word-spacing:3.776000pt;}
.wsb_c00449{word-spacing:4.032000pt;}
.ws4_c00449{word-spacing:4.096000pt;}
.wsa_c00449{word-spacing:7.936000pt;}
.ws8_c00449{word-spacing:15.360000pt;}
.ws7_c00449{word-spacing:17.216000pt;}
.wsd_c00449{word-spacing:20.096000pt;}
._0_c00449{margin-left:-0.960000pt;}
._1_c00449{width:0.896000pt;}
.fs1_c00449{font-size:58.560000pt;}
.fs0_c00449{font-size:64.000000pt;}
.y0_c00449{bottom:0.000000pt;}
.y1_c00449{bottom:54.887600pt;}
.y23_c00449{bottom:130.199467pt;}
.y22_c00449{bottom:157.799467pt;}
.y21_c00449{bottom:185.399467pt;}
.y20_c00449{bottom:212.999467pt;}
.y1f_c00449{bottom:240.599467pt;}
.y1e_c00449{bottom:268.199467pt;}
.y1d_c00449{bottom:295.799467pt;}
.y1c_c00449{bottom:323.399467pt;}
.y1b_c00449{bottom:350.999467pt;}
.y1a_c00449{bottom:378.599467pt;}
.y19_c00449{bottom:406.199467pt;}
.y18_c00449{bottom:433.799467pt;}
.y17_c00449{bottom:461.399467pt;}
.y16_c00449{bottom:488.999467pt;}
.y15_c00449{bottom:516.599467pt;}
.y14_c00449{bottom:544.199467pt;}
.y13_c00449{bottom:571.799467pt;}
.y12_c00449{bottom:599.399467pt;}
.y11_c00449{bottom:626.999467pt;}
.y10_c00449{bottom:654.599467pt;}
.yf_c00449{bottom:682.199467pt;}
.ye_c00449{bottom:709.719467pt;}
.yd_c00449{bottom:737.319467pt;}
.yc_c00449{bottom:764.919467pt;}
.yb_c00449{bottom:792.519467pt;}
.ya_c00449{bottom:820.119467pt;}
.y9_c00449{bottom:847.719467pt;}
.y8_c00449{bottom:875.319467pt;}
.y7_c00449{bottom:902.919467pt;}
.y6_c00449{bottom:930.519467pt;}
.y5_c00449{bottom:958.119467pt;}
.y4_c00449{bottom:985.719467pt;}
.y3_c00449{bottom:1013.319467pt;}
.y2_c00449{bottom:1061.399467pt;}
.h2_c00449{height:44.800000pt;}
.h3_c00449{height:48.294844pt;}
.h4_c00449{height:68.288000pt;}
.h0_c00449{height:1122.520000pt;}
.h1_c00449{height:1122.666667pt;}
.w0_c00449{width:793.701333pt;}
.w1_c00449{width:794.000000pt;}
.x0_c00449{left:0.000000pt;}
.x1_c00449{left:48.000000pt;}
.x2_c00449{left:113.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00450;src:url('chunks/assets/font_641af0bfac2e30ef477dbb57.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00450;src:url('chunks/assets/font_0383ee836ef0da6e7f609a26.woff2')format("woff");}.ff3_c00450{font-family:ff3_c00450;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00450;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00450{font-family:ff4_c00450;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00450;src:url('chunks/assets/font_934c24282039df803fd95c33.woff2')format("woff");}.ff5_c00450{font-family:ff5_c00450;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00450;src:url('chunks/assets/font_bdc2814d312a99bafb93725e.woff2')format("woff");}.ff6_c00450{font-family:ff6_c00450;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00450{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls7_c00450{letter-spacing:-0.144000px;}
.ls8_c00450{letter-spacing:-0.072000px;}
.ls6_c00450{letter-spacing:0.000000px;}
.ls0_c00450{letter-spacing:0.072000px;}
.ls1_c00450{letter-spacing:0.144000px;}
.ls4_c00450{letter-spacing:17.784000px;}
.ls2_c00450{letter-spacing:18.144000px;}
.ls5_c00450{letter-spacing:22.824000px;}
.ls3_c00450{letter-spacing:23.904000px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00450{word-spacing:-18.144000px;}
.ws2_c00450{word-spacing:-18.072000px;}
.ws0_c00450{word-spacing:-18.000000px;}
.ws4_c00450{word-spacing:-17.928000px;}
.ws1_c00450{word-spacing:-17.856000px;}
.ws15_c00450{word-spacing:-0.432000px;}
.ws18_c00450{word-spacing:-0.360000px;}
.wsf_c00450{word-spacing:-0.144000px;}
.ws6_c00450{word-spacing:-0.131760px;}
.ws9_c00450{word-spacing:-0.072000px;}
.ws5_c00450{word-spacing:0.000000px;}
.ws19_c00450{word-spacing:0.072000px;}
.ws16_c00450{word-spacing:0.144000px;}
.ws11_c00450{word-spacing:0.197640px;}
.wsc_c00450{word-spacing:0.288000px;}
.ws17_c00450{word-spacing:0.360000px;}
.ws1b_c00450{word-spacing:0.720000px;}
.ws8_c00450{word-spacing:4.248000px;}
.wse_c00450{word-spacing:4.536000px;}
.ws7_c00450{word-spacing:4.608000px;}
.ws14_c00450{word-spacing:5.616000px;}
.ws13_c00450{word-spacing:5.688000px;}
.ws12_c00450{word-spacing:5.760000px;}
.wsd_c00450{word-spacing:8.928000px;}
.ws1a_c00450{word-spacing:12.168000px;}
.wsb_c00450{word-spacing:17.280000px;}
.wsa_c00450{word-spacing:19.368000px;}
.ws10_c00450{word-spacing:22.608000px;}
._0_c00450{margin-left:-1.080000px;}
._1_c00450{width:1.008000px;}
.fc2_c00450{color:transparent;}
.fc1_c00450{color:rgb(0,0,0);}
.fc0_c00450{color:rgb(35,31,32);}
.fs1_c00450{font-size:65.880000px;}
.fs0_c00450{font-size:72.000000px;}
.y0_c00450{bottom:0.000000px;}
.y1_c00450{bottom:61.748550px;}
.y25_c00450{bottom:115.424400px;}
.y23_c00450{bottom:146.474400px;}
.y22_c00450{bottom:177.524400px;}
.y21_c00450{bottom:208.574400px;}
.y20_c00450{bottom:239.624400px;}
.y1f_c00450{bottom:270.674400px;}
.y1e_c00450{bottom:301.724400px;}
.y1d_c00450{bottom:332.774400px;}
.y1c_c00450{bottom:363.824400px;}
.y1b_c00450{bottom:394.874400px;}
.y1a_c00450{bottom:425.924400px;}
.y19_c00450{bottom:456.974400px;}
.y18_c00450{bottom:488.024400px;}
.y17_c00450{bottom:519.074400px;}
.y16_c00450{bottom:550.124400px;}
.y15_c00450{bottom:581.174400px;}
.y14_c00450{bottom:612.224400px;}
.y13_c00450{bottom:643.274400px;}
.y12_c00450{bottom:674.324400px;}
.y11_c00450{bottom:705.374400px;}
.y10_c00450{bottom:736.424400px;}
.yf_c00450{bottom:767.474400px;}
.ye_c00450{bottom:798.434400px;}
.yd_c00450{bottom:829.484400px;}
.yc_c00450{bottom:860.534400px;}
.yb_c00450{bottom:891.584400px;}
.ya_c00450{bottom:922.634400px;}
.y9_c00450{bottom:953.684400px;}
.y8_c00450{bottom:984.734400px;}
.y7_c00450{bottom:1015.784400px;}
.y6_c00450{bottom:1046.834400px;}
.y5_c00450{bottom:1077.884400px;}
.y4_c00450{bottom:1108.934400px;}
.y3_c00450{bottom:1139.984400px;}
.y24_c00450{bottom:1173.915120px;}
.y2_c00450{bottom:1194.074400px;}
.h2_c00450{height:50.400000px;}
.h3_c00450{height:54.331699px;}
.h4_c00450{height:76.824000px;}
.h0_c00450{height:1262.835000px;}
.h1_c00450{height:1263.000000px;}
.w2_c00450{width:0.000000px;}
.w3_c00450{width:0.066000px;}
.w0_c00450{width:892.914000px;}
.w1_c00450{width:893.250000px;}
.x1_c00450{left:-838.913400px;}
.x2_c00450{left:-765.293400px;}
.x0_c00450{left:0.000000px;}
.x4_c00450{left:127.620000px;}
.x3_c00450{left:804.366150px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls7_c00450{letter-spacing:-0.128000pt;}
.ls8_c00450{letter-spacing:-0.064000pt;}
.ls6_c00450{letter-spacing:0.000000pt;}
.ls0_c00450{letter-spacing:0.064000pt;}
.ls1_c00450{letter-spacing:0.128000pt;}
.ls4_c00450{letter-spacing:15.808000pt;}
.ls2_c00450{letter-spacing:16.128000pt;}
.ls5_c00450{letter-spacing:20.288000pt;}
.ls3_c00450{letter-spacing:21.248000pt;}
.ws3_c00450{word-spacing:-16.128000pt;}
.ws2_c00450{word-spacing:-16.064000pt;}
.ws0_c00450{word-spacing:-16.000000pt;}
.ws4_c00450{word-spacing:-15.936000pt;}
.ws1_c00450{word-spacing:-15.872000pt;}
.ws15_c00450{word-spacing:-0.384000pt;}
.ws18_c00450{word-spacing:-0.320000pt;}
.wsf_c00450{word-spacing:-0.128000pt;}
.ws6_c00450{word-spacing:-0.117120pt;}
.ws9_c00450{word-spacing:-0.064000pt;}
.ws5_c00450{word-spacing:0.000000pt;}
.ws19_c00450{word-spacing:0.064000pt;}
.ws16_c00450{word-spacing:0.128000pt;}
.ws11_c00450{word-spacing:0.175680pt;}
.wsc_c00450{word-spacing:0.256000pt;}
.ws17_c00450{word-spacing:0.320000pt;}
.ws1b_c00450{word-spacing:0.640000pt;}
.ws8_c00450{word-spacing:3.776000pt;}
.wse_c00450{word-spacing:4.032000pt;}
.ws7_c00450{word-spacing:4.096000pt;}
.ws14_c00450{word-spacing:4.992000pt;}
.ws13_c00450{word-spacing:5.056000pt;}
.ws12_c00450{word-spacing:5.120000pt;}
.wsd_c00450{word-spacing:7.936000pt;}
.ws1a_c00450{word-spacing:10.816000pt;}
.wsb_c00450{word-spacing:15.360000pt;}
.wsa_c00450{word-spacing:17.216000pt;}
.ws10_c00450{word-spacing:20.096000pt;}
._0_c00450{margin-left:-0.960000pt;}
._1_c00450{width:0.896000pt;}
.fs1_c00450{font-size:58.560000pt;}
.fs0_c00450{font-size:64.000000pt;}
.y0_c00450{bottom:0.000000pt;}
.y1_c00450{bottom:54.887600pt;}
.y25_c00450{bottom:102.599467pt;}
.y23_c00450{bottom:130.199467pt;}
.y22_c00450{bottom:157.799467pt;}
.y21_c00450{bottom:185.399467pt;}
.y20_c00450{bottom:212.999467pt;}
.y1f_c00450{bottom:240.599467pt;}
.y1e_c00450{bottom:268.199467pt;}
.y1d_c00450{bottom:295.799467pt;}
.y1c_c00450{bottom:323.399467pt;}
.y1b_c00450{bottom:350.999467pt;}
.y1a_c00450{bottom:378.599467pt;}
.y19_c00450{bottom:406.199467pt;}
.y18_c00450{bottom:433.799467pt;}
.y17_c00450{bottom:461.399467pt;}
.y16_c00450{bottom:488.999467pt;}
.y15_c00450{bottom:516.599467pt;}
.y14_c00450{bottom:544.199467pt;}
.y13_c00450{bottom:571.799467pt;}
.y12_c00450{bottom:599.399467pt;}
.y11_c00450{bottom:626.999467pt;}
.y10_c00450{bottom:654.599467pt;}
.yf_c00450{bottom:682.199467pt;}
.ye_c00450{bottom:709.719467pt;}
.yd_c00450{bottom:737.319467pt;}
.yc_c00450{bottom:764.919467pt;}
.yb_c00450{bottom:792.519467pt;}
.ya_c00450{bottom:820.119467pt;}
.y9_c00450{bottom:847.719467pt;}
.y8_c00450{bottom:875.319467pt;}
.y7_c00450{bottom:902.919467pt;}
.y6_c00450{bottom:930.519467pt;}
.y5_c00450{bottom:958.119467pt;}
.y4_c00450{bottom:985.719467pt;}
.y3_c00450{bottom:1013.319467pt;}
.y24_c00450{bottom:1043.480107pt;}
.y2_c00450{bottom:1061.399467pt;}
.h2_c00450{height:44.800000pt;}
.h3_c00450{height:48.294844pt;}
.h4_c00450{height:68.288000pt;}
.h0_c00450{height:1122.520000pt;}
.h1_c00450{height:1122.666667pt;}
.w2_c00450{width:0.000000pt;}
.w3_c00450{width:0.058667pt;}
.w0_c00450{width:793.701333pt;}
.w1_c00450{width:794.000000pt;}
.x1_c00450{left:-745.700800pt;}
.x2_c00450{left:-680.260800pt;}
.x0_c00450{left:0.000000pt;}
.x4_c00450{left:113.440000pt;}
.x3_c00450{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00451;src:url('chunks/assets/font_31f57acb65be61c388e2d863.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00451;src:url('chunks/assets/font_d45596febb36fbffaeceac7b.woff2')format("woff");}.ff3_c00451{font-family:ff3_c00451;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00451{letter-spacing:-0.576000px;}
.ls4_c00451{letter-spacing:0.000000px;}
.ls0_c00451{letter-spacing:0.072000px;}
.ls2_c00451{letter-spacing:0.144000px;}
.ls1_c00451{letter-spacing:22.867200px;}
.ls3_c00451{letter-spacing:23.904000px;}
.sc__c00451{text-shadow:none;}
.sc0_c00451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00451{-webkit-text-stroke:0px transparent;}
.sc0_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00451{word-spacing:-18.072000px;}
.ws0_c00451{word-spacing:-18.000000px;}
.ws1_c00451{word-spacing:-17.424000px;}
.ws7_c00451{word-spacing:-0.648000px;}
.ws4_c00451{word-spacing:-0.131760px;}
.ws9_c00451{word-spacing:-0.072000px;}
.ws3_c00451{word-spacing:0.000000px;}
.wsd_c00451{word-spacing:1.440000px;}
.ws6_c00451{word-spacing:4.608000px;}
.ws5_c00451{word-spacing:4.680000px;}
.ws8_c00451{word-spacing:5.688000px;}
.wse_c00451{word-spacing:9.288000px;}
.wsc_c00451{word-spacing:10.008000px;}
.wsa_c00451{word-spacing:12.528000px;}
.wsb_c00451{word-spacing:20.448000px;}
._1_c00451{margin-left:-1.094400px;}
._0_c00451{width:1.008000px;}
.fc1_c00451{color:rgb(0,0,0);}
.fc0_c00451{color:rgb(35,31,32);}
.fs1_c00451{font-size:65.880000px;}
.fs0_c00451{font-size:72.000000px;}
.y0_c00451{bottom:0.000000px;}
.y1_c00451{bottom:61.748550px;}
.y24_c00451{bottom:115.424400px;}
.y23_c00451{bottom:146.474400px;}
.y22_c00451{bottom:177.524400px;}
.y21_c00451{bottom:208.574400px;}
.y20_c00451{bottom:239.624400px;}
.y1f_c00451{bottom:270.674400px;}
.y1e_c00451{bottom:301.724400px;}
.y1d_c00451{bottom:332.774400px;}
.y1c_c00451{bottom:363.824400px;}
.y1b_c00451{bottom:394.874400px;}
.y1a_c00451{bottom:425.924400px;}
.y19_c00451{bottom:456.974400px;}
.y18_c00451{bottom:488.024400px;}
.y17_c00451{bottom:519.074400px;}
.y16_c00451{bottom:550.124400px;}
.y15_c00451{bottom:581.174400px;}
.y14_c00451{bottom:612.224400px;}
.y13_c00451{bottom:643.274400px;}
.y12_c00451{bottom:674.324400px;}
.y11_c00451{bottom:705.374400px;}
.y10_c00451{bottom:736.424400px;}
.yf_c00451{bottom:767.474400px;}
.ye_c00451{bottom:798.434400px;}
.yd_c00451{bottom:829.484400px;}
.yc_c00451{bottom:860.534400px;}
.yb_c00451{bottom:891.584400px;}
.ya_c00451{bottom:922.634400px;}
.y9_c00451{bottom:953.684400px;}
.y8_c00451{bottom:984.734400px;}
.y7_c00451{bottom:1015.784400px;}
.y6_c00451{bottom:1046.834400px;}
.y5_c00451{bottom:1077.884400px;}
.y4_c00451{bottom:1108.934400px;}
.y3_c00451{bottom:1139.984400px;}
.y2_c00451{bottom:1194.074400px;}
.h2_c00451{height:50.400000px;}
.h3_c00451{height:54.331699px;}
.h4_c00451{height:76.824000px;}
.h0_c00451{height:1262.835000px;}
.h1_c00451{height:1263.000000px;}
.w0_c00451{width:892.914000px;}
.w1_c00451{width:893.250000px;}
.x0_c00451{left:0.000000px;}
.x1_c00451{left:54.000000px;}
.x2_c00451{left:127.620000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls5_c00451{letter-spacing:-0.512000pt;}
.ls4_c00451{letter-spacing:0.000000pt;}
.ls0_c00451{letter-spacing:0.064000pt;}
.ls2_c00451{letter-spacing:0.128000pt;}
.ls1_c00451{letter-spacing:20.326400pt;}
.ls3_c00451{letter-spacing:21.248000pt;}
.ws2_c00451{word-spacing:-16.064000pt;}
.ws0_c00451{word-spacing:-16.000000pt;}
.ws1_c00451{word-spacing:-15.488000pt;}
.ws7_c00451{word-spacing:-0.576000pt;}
.ws4_c00451{word-spacing:-0.117120pt;}
.ws9_c00451{word-spacing:-0.064000pt;}
.ws3_c00451{word-spacing:0.000000pt;}
.wsd_c00451{word-spacing:1.280000pt;}
.ws6_c00451{word-spacing:4.096000pt;}
.ws5_c00451{word-spacing:4.160000pt;}
.ws8_c00451{word-spacing:5.056000pt;}
.wse_c00451{word-spacing:8.256000pt;}
.wsc_c00451{word-spacing:8.896000pt;}
.wsa_c00451{word-spacing:11.136000pt;}
.wsb_c00451{word-spacing:18.176000pt;}
._1_c00451{margin-left:-0.972800pt;}
._0_c00451{width:0.896000pt;}
.fs1_c00451{font-size:58.560000pt;}
.fs0_c00451{font-size:64.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y1_c00451{bottom:54.887600pt;}
.y24_c00451{bottom:102.599467pt;}
.y23_c00451{bottom:130.199467pt;}
.y22_c00451{bottom:157.799467pt;}
.y21_c00451{bottom:185.399467pt;}
.y20_c00451{bottom:212.999467pt;}
.y1f_c00451{bottom:240.599467pt;}
.y1e_c00451{bottom:268.199467pt;}
.y1d_c00451{bottom:295.799467pt;}
.y1c_c00451{bottom:323.399467pt;}
.y1b_c00451{bottom:350.999467pt;}
.y1a_c00451{bottom:378.599467pt;}
.y19_c00451{bottom:406.199467pt;}
.y18_c00451{bottom:433.799467pt;}
.y17_c00451{bottom:461.399467pt;}
.y16_c00451{bottom:488.999467pt;}
.y15_c00451{bottom:516.599467pt;}
.y14_c00451{bottom:544.199467pt;}
.y13_c00451{bottom:571.799467pt;}
.y12_c00451{bottom:599.399467pt;}
.y11_c00451{bottom:626.999467pt;}
.y10_c00451{bottom:654.599467pt;}
.yf_c00451{bottom:682.199467pt;}
.ye_c00451{bottom:709.719467pt;}
.yd_c00451{bottom:737.319467pt;}
.yc_c00451{bottom:764.919467pt;}
.yb_c00451{bottom:792.519467pt;}
.ya_c00451{bottom:820.119467pt;}
.y9_c00451{bottom:847.719467pt;}
.y8_c00451{bottom:875.319467pt;}
.y7_c00451{bottom:902.919467pt;}
.y6_c00451{bottom:930.519467pt;}
.y5_c00451{bottom:958.119467pt;}
.y4_c00451{bottom:985.719467pt;}
.y3_c00451{bottom:1013.319467pt;}
.y2_c00451{bottom:1061.399467pt;}
.h2_c00451{height:44.800000pt;}
.h3_c00451{height:48.294844pt;}
.h4_c00451{height:68.288000pt;}
.h0_c00451{height:1122.520000pt;}
.h1_c00451{height:1122.666667pt;}
.w0_c00451{width:793.701333pt;}
.w1_c00451{width:794.000000pt;}
.x0_c00451{left:0.000000pt;}
.x1_c00451{left:48.000000pt;}
.x2_c00451{left:113.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00452;src:url('chunks/assets/font_0f959d22e6e26cb1b20bc4f5.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00452;src:url('chunks/assets/font_d3d96831e4e098ea1bc19b45.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00452;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00452;src:url('chunks/assets/font_535072bff5ea6f44bda82e95.woff2')format("woff");}.ff5_c00452{font-family:ff5_c00452;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00452;src:url('chunks/assets/font_6b29e0208082dd5de871b609.woff2')format("woff");}.ff6_c00452{font-family:ff6_c00452;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00452{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.ls8_c00452{letter-spacing:-0.576000px;}
.ls9_c00452{letter-spacing:-0.144000px;}
.lsa_c00452{letter-spacing:-0.072000px;}
.ls7_c00452{letter-spacing:0.000000px;}
.ls0_c00452{letter-spacing:0.072000px;}
.ls2_c00452{letter-spacing:0.144000px;}
.ls5_c00452{letter-spacing:18.144000px;}
.ls4_c00452{letter-spacing:22.852800px;}
.ls1_c00452{letter-spacing:22.860000px;}
.ls3_c00452{letter-spacing:23.904000px;}
.ls6_c00452{letter-spacing:28.224000px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00452{word-spacing:-18.144000px;}
.ws2_c00452{word-spacing:-18.072000px;}
.ws0_c00452{word-spacing:-18.000000px;}
.ws5_c00452{word-spacing:-17.928000px;}
.ws4_c00452{word-spacing:-17.856000px;}
.ws1_c00452{word-spacing:-17.424000px;}
.wsa_c00452{word-spacing:-0.648000px;}
.ws19_c00452{word-spacing:-0.504000px;}
.ws1a_c00452{word-spacing:-0.432000px;}
.ws14_c00452{word-spacing:-0.144000px;}
.ws7_c00452{word-spacing:-0.131760px;}
.wsc_c00452{word-spacing:-0.072000px;}
.ws6_c00452{word-spacing:0.000000px;}
.ws12_c00452{word-spacing:0.197640px;}
.ws10_c00452{word-spacing:1.440000px;}
.ws13_c00452{word-spacing:4.248000px;}
.ws9_c00452{word-spacing:4.608000px;}
.ws8_c00452{word-spacing:4.680000px;}
.wsb_c00452{word-spacing:5.688000px;}
.ws11_c00452{word-spacing:9.288000px;}
.ws16_c00452{word-spacing:9.936000px;}
.wsf_c00452{word-spacing:10.008000px;}
.ws15_c00452{word-spacing:10.080000px;}
.wsd_c00452{word-spacing:12.528000px;}
.ws17_c00452{word-spacing:13.248000px;}
.ws18_c00452{word-spacing:20.016000px;}
.wse_c00452{word-spacing:20.448000px;}
._1_c00452{margin-left:-1.087200px;}
._0_c00452{width:1.008000px;}
.fc2_c00452{color:transparent;}
.fc1_c00452{color:rgb(0,0,0);}
.fc0_c00452{color:rgb(35,31,32);}
.fs1_c00452{font-size:65.880000px;}
.fs0_c00452{font-size:72.000000px;}
.y0_c00452{bottom:0.000000px;}
.y1_c00452{bottom:61.748550px;}
.y24_c00452{bottom:115.424400px;}
.y23_c00452{bottom:146.474400px;}
.y22_c00452{bottom:177.524400px;}
.y21_c00452{bottom:208.574400px;}
.y20_c00452{bottom:239.624400px;}
.y1f_c00452{bottom:270.674400px;}
.y1e_c00452{bottom:301.724400px;}
.y1d_c00452{bottom:332.774400px;}
.y1c_c00452{bottom:363.824400px;}
.y1b_c00452{bottom:394.874400px;}
.y1a_c00452{bottom:425.924400px;}
.y19_c00452{bottom:456.974400px;}
.y18_c00452{bottom:488.024400px;}
.y17_c00452{bottom:519.074400px;}
.y16_c00452{bottom:550.124400px;}
.y15_c00452{bottom:581.174400px;}
.y14_c00452{bottom:612.224400px;}
.y13_c00452{bottom:643.274400px;}
.y12_c00452{bottom:674.324400px;}
.y11_c00452{bottom:705.374400px;}
.y10_c00452{bottom:736.424400px;}
.yf_c00452{bottom:767.474400px;}
.ye_c00452{bottom:798.434400px;}
.yd_c00452{bottom:829.484400px;}
.yc_c00452{bottom:860.534400px;}
.yb_c00452{bottom:891.584400px;}
.ya_c00452{bottom:922.634400px;}
.y9_c00452{bottom:953.684400px;}
.y8_c00452{bottom:984.734400px;}
.y7_c00452{bottom:1015.784400px;}
.y6_c00452{bottom:1046.834400px;}
.y5_c00452{bottom:1077.884400px;}
.y4_c00452{bottom:1108.934400px;}
.y3_c00452{bottom:1139.984400px;}
.y25_c00452{bottom:1173.915120px;}
.y2_c00452{bottom:1194.074400px;}
.h2_c00452{height:50.400000px;}
.h3_c00452{height:54.331699px;}
.h4_c00452{height:76.824000px;}
.h0_c00452{height:1262.835000px;}
.h1_c00452{height:1263.000000px;}
.w2_c00452{width:0.000000px;}
.w3_c00452{width:0.066000px;}
.w0_c00452{width:892.914000px;}
.w1_c00452{width:893.250000px;}
.x1_c00452{left:-838.913400px;}
.x2_c00452{left:-765.293400px;}
.x0_c00452{left:0.000000px;}
.x4_c00452{left:127.620000px;}
.x3_c00452{left:804.366150px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls8_c00452{letter-spacing:-0.512000pt;}
.ls9_c00452{letter-spacing:-0.128000pt;}
.lsa_c00452{letter-spacing:-0.064000pt;}
.ls7_c00452{letter-spacing:0.000000pt;}
.ls0_c00452{letter-spacing:0.064000pt;}
.ls2_c00452{letter-spacing:0.128000pt;}
.ls5_c00452{letter-spacing:16.128000pt;}
.ls4_c00452{letter-spacing:20.313600pt;}
.ls1_c00452{letter-spacing:20.320000pt;}
.ls3_c00452{letter-spacing:21.248000pt;}
.ls6_c00452{letter-spacing:25.088000pt;}
.ws3_c00452{word-spacing:-16.128000pt;}
.ws2_c00452{word-spacing:-16.064000pt;}
.ws0_c00452{word-spacing:-16.000000pt;}
.ws5_c00452{word-spacing:-15.936000pt;}
.ws4_c00452{word-spacing:-15.872000pt;}
.ws1_c00452{word-spacing:-15.488000pt;}
.wsa_c00452{word-spacing:-0.576000pt;}
.ws19_c00452{word-spacing:-0.448000pt;}
.ws1a_c00452{word-spacing:-0.384000pt;}
.ws14_c00452{word-spacing:-0.128000pt;}
.ws7_c00452{word-spacing:-0.117120pt;}
.wsc_c00452{word-spacing:-0.064000pt;}
.ws6_c00452{word-spacing:0.000000pt;}
.ws12_c00452{word-spacing:0.175680pt;}
.ws10_c00452{word-spacing:1.280000pt;}
.ws13_c00452{word-spacing:3.776000pt;}
.ws9_c00452{word-spacing:4.096000pt;}
.ws8_c00452{word-spacing:4.160000pt;}
.wsb_c00452{word-spacing:5.056000pt;}
.ws11_c00452{word-spacing:8.256000pt;}
.ws16_c00452{word-spacing:8.832000pt;}
.wsf_c00452{word-spacing:8.896000pt;}
.ws15_c00452{word-spacing:8.960000pt;}
.wsd_c00452{word-spacing:11.136000pt;}
.ws17_c00452{word-spacing:11.776000pt;}
.ws18_c00452{word-spacing:17.792000pt;}
.wse_c00452{word-spacing:18.176000pt;}
._1_c00452{margin-left:-0.966400pt;}
._0_c00452{width:0.896000pt;}
.fs1_c00452{font-size:58.560000pt;}
.fs0_c00452{font-size:64.000000pt;}
.y0_c00452{bottom:0.000000pt;}
.y1_c00452{bottom:54.887600pt;}
.y24_c00452{bottom:102.599467pt;}
.y23_c00452{bottom:130.199467pt;}
.y22_c00452{bottom:157.799467pt;}
.y21_c00452{bottom:185.399467pt;}
.y20_c00452{bottom:212.999467pt;}
.y1f_c00452{bottom:240.599467pt;}
.y1e_c00452{bottom:268.199467pt;}
.y1d_c00452{bottom:295.799467pt;}
.y1c_c00452{bottom:323.399467pt;}
.y1b_c00452{bottom:350.999467pt;}
.y1a_c00452{bottom:378.599467pt;}
.y19_c00452{bottom:406.199467pt;}
.y18_c00452{bottom:433.799467pt;}
.y17_c00452{bottom:461.399467pt;}
.y16_c00452{bottom:488.999467pt;}
.y15_c00452{bottom:516.599467pt;}
.y14_c00452{bottom:544.199467pt;}
.y13_c00452{bottom:571.799467pt;}
.y12_c00452{bottom:599.399467pt;}
.y11_c00452{bottom:626.999467pt;}
.y10_c00452{bottom:654.599467pt;}
.yf_c00452{bottom:682.199467pt;}
.ye_c00452{bottom:709.719467pt;}
.yd_c00452{bottom:737.319467pt;}
.yc_c00452{bottom:764.919467pt;}
.yb_c00452{bottom:792.519467pt;}
.ya_c00452{bottom:820.119467pt;}
.y9_c00452{bottom:847.719467pt;}
.y8_c00452{bottom:875.319467pt;}
.y7_c00452{bottom:902.919467pt;}
.y6_c00452{bottom:930.519467pt;}
.y5_c00452{bottom:958.119467pt;}
.y4_c00452{bottom:985.719467pt;}
.y3_c00452{bottom:1013.319467pt;}
.y25_c00452{bottom:1043.480107pt;}
.y2_c00452{bottom:1061.399467pt;}
.h2_c00452{height:44.800000pt;}
.h3_c00452{height:48.294844pt;}
.h4_c00452{height:68.288000pt;}
.h0_c00452{height:1122.520000pt;}
.h1_c00452{height:1122.666667pt;}
.w2_c00452{width:0.000000pt;}
.w3_c00452{width:0.058667pt;}
.w0_c00452{width:793.701333pt;}
.w1_c00452{width:794.000000pt;}
.x1_c00452{left:-745.700800pt;}
.x2_c00452{left:-680.260800pt;}
.x0_c00452{left:0.000000pt;}
.x4_c00452{left:113.440000pt;}
.x3_c00452{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00453;src:url('chunks/assets/font_7056ad2689ee8b445e628748.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00453;src:url('chunks/assets/font_a82759423d0f16696ce9e7e9.woff2')format("woff");}.ff3_c00453{font-family:ff3_c00453;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00453{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls4_c00453{letter-spacing:-0.144000px;}
.ls6_c00453{letter-spacing:-0.072000px;}
.ls3_c00453{letter-spacing:0.000000px;}
.ls0_c00453{letter-spacing:0.072000px;}
.ls1_c00453{letter-spacing:0.144000px;}
.ls5_c00453{letter-spacing:0.360000px;}
.ls2_c00453{letter-spacing:18.144000px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00453{word-spacing:-18.360000px;}
.ws0_c00453{word-spacing:-18.000000px;}
.ws2_c00453{word-spacing:-17.928000px;}
.ws3_c00453{word-spacing:-17.856000px;}
.ws9_c00453{word-spacing:-0.144000px;}
.ws6_c00453{word-spacing:-0.131760px;}
.ws8_c00453{word-spacing:-0.072000px;}
.ws5_c00453{word-spacing:0.000000px;}
.ws4_c00453{word-spacing:0.144000px;}
.wsc_c00453{word-spacing:0.360000px;}
.wsd_c00453{word-spacing:2.808000px;}
.wse_c00453{word-spacing:3.528000px;}
.wsf_c00453{word-spacing:3.600000px;}
.wsa_c00453{word-spacing:4.320000px;}
.ws7_c00453{word-spacing:5.328000px;}
.wsb_c00453{word-spacing:16.488000px;}
._1_c00453{margin-left:-1.224000px;}
._0_c00453{width:1.008000px;}
.fc1_c00453{color:rgb(0,0,0);}
.fc0_c00453{color:rgb(35,31,32);}
.fs1_c00453{font-size:65.880000px;}
.fs0_c00453{font-size:72.000000px;}
.y0_c00453{bottom:0.000000px;}
.y1_c00453{bottom:61.748550px;}
.y22_c00453{bottom:115.424400px;}
.y21_c00453{bottom:146.474400px;}
.y20_c00453{bottom:177.524400px;}
.y1f_c00453{bottom:208.574400px;}
.y1e_c00453{bottom:239.624400px;}
.y1d_c00453{bottom:270.674400px;}
.y1c_c00453{bottom:301.724400px;}
.y1b_c00453{bottom:332.774400px;}
.y1a_c00453{bottom:363.824400px;}
.y19_c00453{bottom:394.874400px;}
.y18_c00453{bottom:425.924400px;}
.y17_c00453{bottom:456.974400px;}
.y16_c00453{bottom:488.024400px;}
.y15_c00453{bottom:519.074400px;}
.y14_c00453{bottom:550.124400px;}
.y13_c00453{bottom:581.174400px;}
.y12_c00453{bottom:612.224400px;}
.y11_c00453{bottom:643.274400px;}
.y10_c00453{bottom:674.324400px;}
.yf_c00453{bottom:705.374400px;}
.ye_c00453{bottom:736.424400px;}
.yd_c00453{bottom:767.474400px;}
.yc_c00453{bottom:798.434400px;}
.yb_c00453{bottom:829.484400px;}
.ya_c00453{bottom:860.534400px;}
.y9_c00453{bottom:891.584400px;}
.y8_c00453{bottom:922.634400px;}
.y7_c00453{bottom:953.684400px;}
.y6_c00453{bottom:984.734400px;}
.y5_c00453{bottom:1046.834400px;}
.y4_c00453{bottom:1077.884400px;}
.y3_c00453{bottom:1139.984400px;}
.y2_c00453{bottom:1194.074400px;}
.h2_c00453{height:50.400000px;}
.h3_c00453{height:54.331699px;}
.h4_c00453{height:76.824000px;}
.h0_c00453{height:1262.835000px;}
.h1_c00453{height:1263.000000px;}
.w0_c00453{width:892.914000px;}
.w1_c00453{width:893.250000px;}
.x0_c00453{left:0.000000px;}
.x1_c00453{left:54.000000px;}
.x2_c00453{left:127.620000px;}
.x3_c00453{left:159.570000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls4_c00453{letter-spacing:-0.128000pt;}
.ls6_c00453{letter-spacing:-0.064000pt;}
.ls3_c00453{letter-spacing:0.000000pt;}
.ls0_c00453{letter-spacing:0.064000pt;}
.ls1_c00453{letter-spacing:0.128000pt;}
.ls5_c00453{letter-spacing:0.320000pt;}
.ls2_c00453{letter-spacing:16.128000pt;}
.ws1_c00453{word-spacing:-16.320000pt;}
.ws0_c00453{word-spacing:-16.000000pt;}
.ws2_c00453{word-spacing:-15.936000pt;}
.ws3_c00453{word-spacing:-15.872000pt;}
.ws9_c00453{word-spacing:-0.128000pt;}
.ws6_c00453{word-spacing:-0.117120pt;}
.ws8_c00453{word-spacing:-0.064000pt;}
.ws5_c00453{word-spacing:0.000000pt;}
.ws4_c00453{word-spacing:0.128000pt;}
.wsc_c00453{word-spacing:0.320000pt;}
.wsd_c00453{word-spacing:2.496000pt;}
.wse_c00453{word-spacing:3.136000pt;}
.wsf_c00453{word-spacing:3.200000pt;}
.wsa_c00453{word-spacing:3.840000pt;}
.ws7_c00453{word-spacing:4.736000pt;}
.wsb_c00453{word-spacing:14.656000pt;}
._1_c00453{margin-left:-1.088000pt;}
._0_c00453{width:0.896000pt;}
.fs1_c00453{font-size:58.560000pt;}
.fs0_c00453{font-size:64.000000pt;}
.y0_c00453{bottom:0.000000pt;}
.y1_c00453{bottom:54.887600pt;}
.y22_c00453{bottom:102.599467pt;}
.y21_c00453{bottom:130.199467pt;}
.y20_c00453{bottom:157.799467pt;}
.y1f_c00453{bottom:185.399467pt;}
.y1e_c00453{bottom:212.999467pt;}
.y1d_c00453{bottom:240.599467pt;}
.y1c_c00453{bottom:268.199467pt;}
.y1b_c00453{bottom:295.799467pt;}
.y1a_c00453{bottom:323.399467pt;}
.y19_c00453{bottom:350.999467pt;}
.y18_c00453{bottom:378.599467pt;}
.y17_c00453{bottom:406.199467pt;}
.y16_c00453{bottom:433.799467pt;}
.y15_c00453{bottom:461.399467pt;}
.y14_c00453{bottom:488.999467pt;}
.y13_c00453{bottom:516.599467pt;}
.y12_c00453{bottom:544.199467pt;}
.y11_c00453{bottom:571.799467pt;}
.y10_c00453{bottom:599.399467pt;}
.yf_c00453{bottom:626.999467pt;}
.ye_c00453{bottom:654.599467pt;}
.yd_c00453{bottom:682.199467pt;}
.yc_c00453{bottom:709.719467pt;}
.yb_c00453{bottom:737.319467pt;}
.ya_c00453{bottom:764.919467pt;}
.y9_c00453{bottom:792.519467pt;}
.y8_c00453{bottom:820.119467pt;}
.y7_c00453{bottom:847.719467pt;}
.y6_c00453{bottom:875.319467pt;}
.y5_c00453{bottom:930.519467pt;}
.y4_c00453{bottom:958.119467pt;}
.y3_c00453{bottom:1013.319467pt;}
.y2_c00453{bottom:1061.399467pt;}
.h2_c00453{height:44.800000pt;}
.h3_c00453{height:48.294844pt;}
.h4_c00453{height:68.288000pt;}
.h0_c00453{height:1122.520000pt;}
.h1_c00453{height:1122.666667pt;}
.w0_c00453{width:793.701333pt;}
.w1_c00453{width:794.000000pt;}
.x0_c00453{left:0.000000pt;}
.x1_c00453{left:48.000000pt;}
.x2_c00453{left:113.440000pt;}
.x3_c00453{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00454;src:url('chunks/assets/font_70b26d6374c9ece712958587.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00454;src:url('chunks/assets/font_8d40f5a492aeb6f3d2f90534.woff2')format("woff");}.ff3_c00454{font-family:ff3_c00454;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00454;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00454;src:url('chunks/assets/font_5cdda9cea4d5f14efbb7ac66.woff2')format("woff");}.ff5_c00454{font-family:ff5_c00454;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00454;src:url('chunks/assets/font_a3c1dca7fb5ff9d9488dd886.woff2')format("woff");}.ff6_c00454{font-family:ff6_c00454;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00454{letter-spacing:-0.360000px;}
.ls5_c00454{letter-spacing:-0.144000px;}
.ls7_c00454{letter-spacing:-0.072000px;}
.ls4_c00454{letter-spacing:0.000000px;}
.ls0_c00454{letter-spacing:0.072000px;}
.ls1_c00454{letter-spacing:0.144000px;}
.ls6_c00454{letter-spacing:0.360000px;}
.ls3_c00454{letter-spacing:17.798400px;}
.ls2_c00454{letter-spacing:18.144000px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00454{word-spacing:-18.360000px;}
.ws5_c00454{word-spacing:-18.072000px;}
.ws0_c00454{word-spacing:-18.000000px;}
.ws2_c00454{word-spacing:-17.928000px;}
.ws3_c00454{word-spacing:-17.856000px;}
.ws6_c00454{word-spacing:-17.640000px;}
.ws18_c00454{word-spacing:-0.504000px;}
.ws1b_c00454{word-spacing:-0.360000px;}
.wsb_c00454{word-spacing:-0.144000px;}
.ws8_c00454{word-spacing:-0.131760px;}
.wsa_c00454{word-spacing:-0.072000px;}
.ws7_c00454{word-spacing:0.000000px;}
.ws4_c00454{word-spacing:0.144000px;}
.ws12_c00454{word-spacing:0.197640px;}
.wse_c00454{word-spacing:0.360000px;}
.ws17_c00454{word-spacing:1.368000px;}
.ws19_c00454{word-spacing:1.728000px;}
.ws1a_c00454{word-spacing:2.448000px;}
.wsf_c00454{word-spacing:2.808000px;}
.ws10_c00454{word-spacing:3.528000px;}
.ws11_c00454{word-spacing:3.600000px;}
.wsc_c00454{word-spacing:4.320000px;}
.ws9_c00454{word-spacing:5.328000px;}
.ws1d_c00454{word-spacing:12.888000px;}
.ws13_c00454{word-spacing:13.680000px;}
.ws1c_c00454{word-spacing:16.128000px;}
.wsd_c00454{word-spacing:16.488000px;}
.ws1e_c00454{word-spacing:19.800000px;}
.ws16_c00454{word-spacing:22.248000px;}
.ws14_c00454{word-spacing:30.168000px;}
.ws15_c00454{word-spacing:30.240000px;}
._1_c00454{margin-left:-1.224000px;}
._0_c00454{width:1.008000px;}
.fc2_c00454{color:transparent;}
.fc1_c00454{color:rgb(0,0,0);}
.fc0_c00454{color:rgb(35,31,32);}
.fs1_c00454{font-size:65.880000px;}
.fs0_c00454{font-size:72.000000px;}
.y0_c00454{bottom:0.000000px;}
.y1_c00454{bottom:61.748550px;}
.y22_c00454{bottom:115.424400px;}
.y21_c00454{bottom:146.474400px;}
.y20_c00454{bottom:177.524400px;}
.y1f_c00454{bottom:208.574400px;}
.y1e_c00454{bottom:239.624400px;}
.y1d_c00454{bottom:270.674400px;}
.y1c_c00454{bottom:301.724400px;}
.y1b_c00454{bottom:332.774400px;}
.y1a_c00454{bottom:363.824400px;}
.y19_c00454{bottom:394.874400px;}
.y18_c00454{bottom:425.924400px;}
.y17_c00454{bottom:456.974400px;}
.y16_c00454{bottom:488.024400px;}
.y15_c00454{bottom:519.074400px;}
.y14_c00454{bottom:550.124400px;}
.y13_c00454{bottom:581.174400px;}
.y12_c00454{bottom:612.224400px;}
.y11_c00454{bottom:643.274400px;}
.y10_c00454{bottom:674.324400px;}
.yf_c00454{bottom:705.374400px;}
.ye_c00454{bottom:736.424400px;}
.yd_c00454{bottom:767.474400px;}
.yc_c00454{bottom:798.434400px;}
.yb_c00454{bottom:829.484400px;}
.ya_c00454{bottom:860.534400px;}
.y9_c00454{bottom:891.584400px;}
.y8_c00454{bottom:922.634400px;}
.y7_c00454{bottom:953.684400px;}
.y6_c00454{bottom:984.734400px;}
.y25_c00454{bottom:1015.784400px;}
.y5_c00454{bottom:1046.834400px;}
.y4_c00454{bottom:1077.884400px;}
.y24_c00454{bottom:1108.934400px;}
.y3_c00454{bottom:1139.984400px;}
.y23_c00454{bottom:1173.915120px;}
.y2_c00454{bottom:1194.074400px;}
.h2_c00454{height:50.400000px;}
.h3_c00454{height:54.331699px;}
.h4_c00454{height:76.824000px;}
.h0_c00454{height:1262.835000px;}
.h1_c00454{height:1263.000000px;}
.w2_c00454{width:0.000000px;}
.w3_c00454{width:0.066000px;}
.w0_c00454{width:892.914000px;}
.w1_c00454{width:893.250000px;}
.x1_c00454{left:-838.913400px;}
.x2_c00454{left:-765.293400px;}
.x3_c00454{left:-733.343400px;}
.x0_c00454{left:0.000000px;}
.x5_c00454{left:127.620000px;}
.x6_c00454{left:159.570000px;}
.x4_c00454{left:804.366150px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls8_c00454{letter-spacing:-0.320000pt;}
.ls5_c00454{letter-spacing:-0.128000pt;}
.ls7_c00454{letter-spacing:-0.064000pt;}
.ls4_c00454{letter-spacing:0.000000pt;}
.ls0_c00454{letter-spacing:0.064000pt;}
.ls1_c00454{letter-spacing:0.128000pt;}
.ls6_c00454{letter-spacing:0.320000pt;}
.ls3_c00454{letter-spacing:15.820800pt;}
.ls2_c00454{letter-spacing:16.128000pt;}
.ws1_c00454{word-spacing:-16.320000pt;}
.ws5_c00454{word-spacing:-16.064000pt;}
.ws0_c00454{word-spacing:-16.000000pt;}
.ws2_c00454{word-spacing:-15.936000pt;}
.ws3_c00454{word-spacing:-15.872000pt;}
.ws6_c00454{word-spacing:-15.680000pt;}
.ws18_c00454{word-spacing:-0.448000pt;}
.ws1b_c00454{word-spacing:-0.320000pt;}
.wsb_c00454{word-spacing:-0.128000pt;}
.ws8_c00454{word-spacing:-0.117120pt;}
.wsa_c00454{word-spacing:-0.064000pt;}
.ws7_c00454{word-spacing:0.000000pt;}
.ws4_c00454{word-spacing:0.128000pt;}
.ws12_c00454{word-spacing:0.175680pt;}
.wse_c00454{word-spacing:0.320000pt;}
.ws17_c00454{word-spacing:1.216000pt;}
.ws19_c00454{word-spacing:1.536000pt;}
.ws1a_c00454{word-spacing:2.176000pt;}
.wsf_c00454{word-spacing:2.496000pt;}
.ws10_c00454{word-spacing:3.136000pt;}
.ws11_c00454{word-spacing:3.200000pt;}
.wsc_c00454{word-spacing:3.840000pt;}
.ws9_c00454{word-spacing:4.736000pt;}
.ws1d_c00454{word-spacing:11.456000pt;}
.ws13_c00454{word-spacing:12.160000pt;}
.ws1c_c00454{word-spacing:14.336000pt;}
.wsd_c00454{word-spacing:14.656000pt;}
.ws1e_c00454{word-spacing:17.600000pt;}
.ws16_c00454{word-spacing:19.776000pt;}
.ws14_c00454{word-spacing:26.816000pt;}
.ws15_c00454{word-spacing:26.880000pt;}
._1_c00454{margin-left:-1.088000pt;}
._0_c00454{width:0.896000pt;}
.fs1_c00454{font-size:58.560000pt;}
.fs0_c00454{font-size:64.000000pt;}
.y0_c00454{bottom:0.000000pt;}
.y1_c00454{bottom:54.887600pt;}
.y22_c00454{bottom:102.599467pt;}
.y21_c00454{bottom:130.199467pt;}
.y20_c00454{bottom:157.799467pt;}
.y1f_c00454{bottom:185.399467pt;}
.y1e_c00454{bottom:212.999467pt;}
.y1d_c00454{bottom:240.599467pt;}
.y1c_c00454{bottom:268.199467pt;}
.y1b_c00454{bottom:295.799467pt;}
.y1a_c00454{bottom:323.399467pt;}
.y19_c00454{bottom:350.999467pt;}
.y18_c00454{bottom:378.599467pt;}
.y17_c00454{bottom:406.199467pt;}
.y16_c00454{bottom:433.799467pt;}
.y15_c00454{bottom:461.399467pt;}
.y14_c00454{bottom:488.999467pt;}
.y13_c00454{bottom:516.599467pt;}
.y12_c00454{bottom:544.199467pt;}
.y11_c00454{bottom:571.799467pt;}
.y10_c00454{bottom:599.399467pt;}
.yf_c00454{bottom:626.999467pt;}
.ye_c00454{bottom:654.599467pt;}
.yd_c00454{bottom:682.199467pt;}
.yc_c00454{bottom:709.719467pt;}
.yb_c00454{bottom:737.319467pt;}
.ya_c00454{bottom:764.919467pt;}
.y9_c00454{bottom:792.519467pt;}
.y8_c00454{bottom:820.119467pt;}
.y7_c00454{bottom:847.719467pt;}
.y6_c00454{bottom:875.319467pt;}
.y25_c00454{bottom:902.919467pt;}
.y5_c00454{bottom:930.519467pt;}
.y4_c00454{bottom:958.119467pt;}
.y24_c00454{bottom:985.719467pt;}
.y3_c00454{bottom:1013.319467pt;}
.y23_c00454{bottom:1043.480107pt;}
.y2_c00454{bottom:1061.399467pt;}
.h2_c00454{height:44.800000pt;}
.h3_c00454{height:48.294844pt;}
.h4_c00454{height:68.288000pt;}
.h0_c00454{height:1122.520000pt;}
.h1_c00454{height:1122.666667pt;}
.w2_c00454{width:0.000000pt;}
.w3_c00454{width:0.058667pt;}
.w0_c00454{width:793.701333pt;}
.w1_c00454{width:794.000000pt;}
.x1_c00454{left:-745.700800pt;}
.x2_c00454{left:-680.260800pt;}
.x3_c00454{left:-651.860800pt;}
.x0_c00454{left:0.000000pt;}
.x5_c00454{left:113.440000pt;}
.x6_c00454{left:141.840000pt;}
.x4_c00454{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00455;src:url('chunks/assets/font_93176b5193c78db69ff1602c.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00455;src:url('chunks/assets/font_7f73f4c231e128d471435ef2.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.144000px;}
.ls4_c00455{letter-spacing:0.000000px;}
.ls0_c00455{letter-spacing:0.072000px;}
.ls1_c00455{letter-spacing:0.144000px;}
.ls2_c00455{letter-spacing:18.158400px;}
.ls3_c00455{letter-spacing:32.904000px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00455{word-spacing:-18.072000px;}
.ws0_c00455{word-spacing:-18.000000px;}
.ws1_c00455{word-spacing:-17.856000px;}
.wsa_c00455{word-spacing:-0.144000px;}
.ws4_c00455{word-spacing:-0.131760px;}
.ws8_c00455{word-spacing:-0.072000px;}
.ws3_c00455{word-spacing:0.000000px;}
.wsb_c00455{word-spacing:1.008000px;}
.ws7_c00455{word-spacing:5.688000px;}
.ws5_c00455{word-spacing:12.168000px;}
.ws6_c00455{word-spacing:12.600000px;}
.ws9_c00455{word-spacing:14.760000px;}
._0_c00455{margin-left:-1.389600px;}
._1_c00455{width:1.008000px;}
.fc1_c00455{color:rgb(0,0,0);}
.fc0_c00455{color:rgb(35,31,32);}
.fs1_c00455{font-size:65.880000px;}
.fs0_c00455{font-size:72.000000px;}
.y0_c00455{bottom:0.000000px;}
.y1_c00455{bottom:61.748550px;}
.ye_c00455{bottom:798.434400px;}
.yd_c00455{bottom:829.484400px;}
.yc_c00455{bottom:860.534400px;}
.yb_c00455{bottom:891.584400px;}
.ya_c00455{bottom:922.634400px;}
.y9_c00455{bottom:953.684400px;}
.y8_c00455{bottom:984.734400px;}
.y7_c00455{bottom:1015.784400px;}
.y6_c00455{bottom:1046.834400px;}
.y5_c00455{bottom:1077.884400px;}
.y4_c00455{bottom:1108.934400px;}
.y3_c00455{bottom:1139.984400px;}
.y2_c00455{bottom:1194.074400px;}
.h2_c00455{height:50.400000px;}
.h3_c00455{height:54.331699px;}
.h4_c00455{height:76.824000px;}
.h0_c00455{height:1262.835000px;}
.h1_c00455{height:1263.000000px;}
.w0_c00455{width:892.914000px;}
.w1_c00455{width:893.250000px;}
.x0_c00455{left:0.000000px;}
.x1_c00455{left:54.000000px;}
.x2_c00455{left:127.620000px;}
.x3_c00455{left:159.570000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls5_c00455{letter-spacing:-0.128000pt;}
.ls4_c00455{letter-spacing:0.000000pt;}
.ls0_c00455{letter-spacing:0.064000pt;}
.ls1_c00455{letter-spacing:0.128000pt;}
.ls2_c00455{letter-spacing:16.140800pt;}
.ls3_c00455{letter-spacing:29.248000pt;}
.ws2_c00455{word-spacing:-16.064000pt;}
.ws0_c00455{word-spacing:-16.000000pt;}
.ws1_c00455{word-spacing:-15.872000pt;}
.wsa_c00455{word-spacing:-0.128000pt;}
.ws4_c00455{word-spacing:-0.117120pt;}
.ws8_c00455{word-spacing:-0.064000pt;}
.ws3_c00455{word-spacing:0.000000pt;}
.wsb_c00455{word-spacing:0.896000pt;}
.ws7_c00455{word-spacing:5.056000pt;}
.ws5_c00455{word-spacing:10.816000pt;}
.ws6_c00455{word-spacing:11.200000pt;}
.ws9_c00455{word-spacing:13.120000pt;}
._0_c00455{margin-left:-1.235200pt;}
._1_c00455{width:0.896000pt;}
.fs1_c00455{font-size:58.560000pt;}
.fs0_c00455{font-size:64.000000pt;}
.y0_c00455{bottom:0.000000pt;}
.y1_c00455{bottom:54.887600pt;}
.ye_c00455{bottom:709.719467pt;}
.yd_c00455{bottom:737.319467pt;}
.yc_c00455{bottom:764.919467pt;}
.yb_c00455{bottom:792.519467pt;}
.ya_c00455{bottom:820.119467pt;}
.y9_c00455{bottom:847.719467pt;}
.y8_c00455{bottom:875.319467pt;}
.y7_c00455{bottom:902.919467pt;}
.y6_c00455{bottom:930.519467pt;}
.y5_c00455{bottom:958.119467pt;}
.y4_c00455{bottom:985.719467pt;}
.y3_c00455{bottom:1013.319467pt;}
.y2_c00455{bottom:1061.399467pt;}
.h2_c00455{height:44.800000pt;}
.h3_c00455{height:48.294844pt;}
.h4_c00455{height:68.288000pt;}
.h0_c00455{height:1122.520000pt;}
.h1_c00455{height:1122.666667pt;}
.w0_c00455{width:793.701333pt;}
.w1_c00455{width:794.000000pt;}
.x0_c00455{left:0.000000pt;}
.x1_c00455{left:48.000000pt;}
.x2_c00455{left:113.440000pt;}
.x3_c00455{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00456;src:url('chunks/assets/font_6941a24c8387e4469fb72007.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_86a93aef02e054fd56445068.woff2')format("woff");}.ff3_c00456{font-family:ff3_c00456;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00456;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00456{font-family:ff4_c00456;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00456;src:url('chunks/assets/font_90395c5a4de2fa3029dd236d.woff2')format("woff");}.ff5_c00456{font-family:ff5_c00456;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00456;src:url('chunks/assets/font_fe95e3d577149e7e6f2eae3e.woff2')format("woff");}.ff6_c00456{font-family:ff6_c00456;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00456{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls6_c00456{letter-spacing:-0.144000px;}
.ls5_c00456{letter-spacing:0.000000px;}
.ls0_c00456{letter-spacing:0.072000px;}
.ls1_c00456{letter-spacing:0.144000px;}
.ls2_c00456{letter-spacing:18.158400px;}
.ls4_c00456{letter-spacing:29.304000px;}
.ls3_c00456{letter-spacing:32.904000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00456{word-spacing:-18.144000px;}
.ws2_c00456{word-spacing:-18.072000px;}
.ws0_c00456{word-spacing:-18.000000px;}
.ws1_c00456{word-spacing:-17.856000px;}
.wsc_c00456{word-spacing:-0.144000px;}
.ws6_c00456{word-spacing:-0.131760px;}
.wsa_c00456{word-spacing:-0.072000px;}
.ws5_c00456{word-spacing:0.000000px;}
.wsf_c00456{word-spacing:0.144000px;}
.wse_c00456{word-spacing:0.197640px;}
.ws3_c00456{word-spacing:0.288000px;}
.wsd_c00456{word-spacing:1.008000px;}
.ws1a_c00456{word-spacing:4.968000px;}
.ws19_c00456{word-spacing:5.400000px;}
.ws9_c00456{word-spacing:5.688000px;}
.ws12_c00456{word-spacing:7.344000px;}
.ws11_c00456{word-spacing:7.560000px;}
.ws18_c00456{word-spacing:7.920000px;}
.ws10_c00456{word-spacing:8.208000px;}
.ws14_c00456{word-spacing:11.088000px;}
.ws15_c00456{word-spacing:11.160000px;}
.ws7_c00456{word-spacing:12.168000px;}
.ws8_c00456{word-spacing:12.600000px;}
.ws17_c00456{word-spacing:13.320000px;}
.ws16_c00456{word-spacing:13.392000px;}
.ws13_c00456{word-spacing:13.968000px;}
.wsb_c00456{word-spacing:14.760000px;}
._0_c00456{margin-left:-1.389600px;}
._1_c00456{width:1.008000px;}
.fc2_c00456{color:transparent;}
.fc1_c00456{color:rgb(0,0,0);}
.fc0_c00456{color:rgb(35,31,32);}
.fs1_c00456{font-size:65.880000px;}
.fs0_c00456{font-size:72.000000px;}
.y0_c00456{bottom:0.000000px;}
.y1_c00456{bottom:61.748550px;}
.y25_c00456{bottom:115.424400px;}
.y24_c00456{bottom:146.474400px;}
.y23_c00456{bottom:177.524400px;}
.y22_c00456{bottom:208.574400px;}
.y21_c00456{bottom:239.624400px;}
.y20_c00456{bottom:270.674400px;}
.y1f_c00456{bottom:301.724400px;}
.y1e_c00456{bottom:332.774400px;}
.y1d_c00456{bottom:363.824400px;}
.y1c_c00456{bottom:394.874400px;}
.y1b_c00456{bottom:425.924400px;}
.y1a_c00456{bottom:456.974400px;}
.y19_c00456{bottom:488.024400px;}
.y18_c00456{bottom:519.074400px;}
.y17_c00456{bottom:550.124400px;}
.y16_c00456{bottom:581.174400px;}
.y15_c00456{bottom:612.224400px;}
.y14_c00456{bottom:643.274400px;}
.y13_c00456{bottom:674.324400px;}
.y12_c00456{bottom:705.374400px;}
.y11_c00456{bottom:736.424400px;}
.y10_c00456{bottom:767.474400px;}
.ye_c00456{bottom:798.434400px;}
.yd_c00456{bottom:829.484400px;}
.yc_c00456{bottom:860.534400px;}
.yb_c00456{bottom:891.584400px;}
.ya_c00456{bottom:922.634400px;}
.y9_c00456{bottom:953.684400px;}
.y8_c00456{bottom:984.734400px;}
.y7_c00456{bottom:1015.784400px;}
.y6_c00456{bottom:1046.834400px;}
.y5_c00456{bottom:1077.884400px;}
.y4_c00456{bottom:1108.934400px;}
.y3_c00456{bottom:1139.984400px;}
.yf_c00456{bottom:1173.915120px;}
.y2_c00456{bottom:1194.074400px;}
.h2_c00456{height:50.400000px;}
.h3_c00456{height:54.331699px;}
.h4_c00456{height:76.824000px;}
.h0_c00456{height:1262.835000px;}
.h1_c00456{height:1263.000000px;}
.w2_c00456{width:0.000000px;}
.w3_c00456{width:0.066000px;}
.w0_c00456{width:892.914000px;}
.w1_c00456{width:893.250000px;}
.x1_c00456{left:-838.913400px;}
.x2_c00456{left:-765.293400px;}
.x3_c00456{left:-733.343400px;}
.x0_c00456{left:0.000000px;}
.x5_c00456{left:127.620000px;}
.x6_c00456{left:132.120000px;}
.x4_c00456{left:804.366150px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls6_c00456{letter-spacing:-0.128000pt;}
.ls5_c00456{letter-spacing:0.000000pt;}
.ls0_c00456{letter-spacing:0.064000pt;}
.ls1_c00456{letter-spacing:0.128000pt;}
.ls2_c00456{letter-spacing:16.140800pt;}
.ls4_c00456{letter-spacing:26.048000pt;}
.ls3_c00456{letter-spacing:29.248000pt;}
.ws4_c00456{word-spacing:-16.128000pt;}
.ws2_c00456{word-spacing:-16.064000pt;}
.ws0_c00456{word-spacing:-16.000000pt;}
.ws1_c00456{word-spacing:-15.872000pt;}
.wsc_c00456{word-spacing:-0.128000pt;}
.ws6_c00456{word-spacing:-0.117120pt;}
.wsa_c00456{word-spacing:-0.064000pt;}
.ws5_c00456{word-spacing:0.000000pt;}
.wsf_c00456{word-spacing:0.128000pt;}
.wse_c00456{word-spacing:0.175680pt;}
.ws3_c00456{word-spacing:0.256000pt;}
.wsd_c00456{word-spacing:0.896000pt;}
.ws1a_c00456{word-spacing:4.416000pt;}
.ws19_c00456{word-spacing:4.800000pt;}
.ws9_c00456{word-spacing:5.056000pt;}
.ws12_c00456{word-spacing:6.528000pt;}
.ws11_c00456{word-spacing:6.720000pt;}
.ws18_c00456{word-spacing:7.040000pt;}
.ws10_c00456{word-spacing:7.296000pt;}
.ws14_c00456{word-spacing:9.856000pt;}
.ws15_c00456{word-spacing:9.920000pt;}
.ws7_c00456{word-spacing:10.816000pt;}
.ws8_c00456{word-spacing:11.200000pt;}
.ws17_c00456{word-spacing:11.840000pt;}
.ws16_c00456{word-spacing:11.904000pt;}
.ws13_c00456{word-spacing:12.416000pt;}
.wsb_c00456{word-spacing:13.120000pt;}
._0_c00456{margin-left:-1.235200pt;}
._1_c00456{width:0.896000pt;}
.fs1_c00456{font-size:58.560000pt;}
.fs0_c00456{font-size:64.000000pt;}
.y0_c00456{bottom:0.000000pt;}
.y1_c00456{bottom:54.887600pt;}
.y25_c00456{bottom:102.599467pt;}
.y24_c00456{bottom:130.199467pt;}
.y23_c00456{bottom:157.799467pt;}
.y22_c00456{bottom:185.399467pt;}
.y21_c00456{bottom:212.999467pt;}
.y20_c00456{bottom:240.599467pt;}
.y1f_c00456{bottom:268.199467pt;}
.y1e_c00456{bottom:295.799467pt;}
.y1d_c00456{bottom:323.399467pt;}
.y1c_c00456{bottom:350.999467pt;}
.y1b_c00456{bottom:378.599467pt;}
.y1a_c00456{bottom:406.199467pt;}
.y19_c00456{bottom:433.799467pt;}
.y18_c00456{bottom:461.399467pt;}
.y17_c00456{bottom:488.999467pt;}
.y16_c00456{bottom:516.599467pt;}
.y15_c00456{bottom:544.199467pt;}
.y14_c00456{bottom:571.799467pt;}
.y13_c00456{bottom:599.399467pt;}
.y12_c00456{bottom:626.999467pt;}
.y11_c00456{bottom:654.599467pt;}
.y10_c00456{bottom:682.199467pt;}
.ye_c00456{bottom:709.719467pt;}
.yd_c00456{bottom:737.319467pt;}
.yc_c00456{bottom:764.919467pt;}
.yb_c00456{bottom:792.519467pt;}
.ya_c00456{bottom:820.119467pt;}
.y9_c00456{bottom:847.719467pt;}
.y8_c00456{bottom:875.319467pt;}
.y7_c00456{bottom:902.919467pt;}
.y6_c00456{bottom:930.519467pt;}
.y5_c00456{bottom:958.119467pt;}
.y4_c00456{bottom:985.719467pt;}
.y3_c00456{bottom:1013.319467pt;}
.yf_c00456{bottom:1043.480107pt;}
.y2_c00456{bottom:1061.399467pt;}
.h2_c00456{height:44.800000pt;}
.h3_c00456{height:48.294844pt;}
.h4_c00456{height:68.288000pt;}
.h0_c00456{height:1122.520000pt;}
.h1_c00456{height:1122.666667pt;}
.w2_c00456{width:0.000000pt;}
.w3_c00456{width:0.058667pt;}
.w0_c00456{width:793.701333pt;}
.w1_c00456{width:794.000000pt;}
.x1_c00456{left:-745.700800pt;}
.x2_c00456{left:-680.260800pt;}
.x3_c00456{left:-651.860800pt;}
.x0_c00456{left:0.000000pt;}
.x5_c00456{left:113.440000pt;}
.x6_c00456{left:117.440000pt;}
.x4_c00456{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00457;src:url('chunks/assets/font_449089b11ca3073b0f2dc98f.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_b76917c7db9ac55c6447b734.woff2')format("woff");}.ff3_c00457{font-family:ff3_c00457;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00457{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls6_c00457{letter-spacing:-0.144000px;}
.ls7_c00457{letter-spacing:-0.072000px;}
.ls5_c00457{letter-spacing:0.000000px;}
.ls0_c00457{letter-spacing:0.072000px;}
.ls2_c00457{letter-spacing:0.144000px;}
.ls3_c00457{letter-spacing:0.504000px;}
.ls1_c00457{letter-spacing:18.144000px;}
.ls4_c00457{letter-spacing:18.158400px;}
.sc__c00457{text-shadow:none;}
.sc0_c00457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00457{-webkit-text-stroke:0px transparent;}
.sc0_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00457{word-spacing:-18.072000px;}
.ws0_c00457{word-spacing:-18.000000px;}
.ws3_c00457{word-spacing:-17.928000px;}
.ws2_c00457{word-spacing:-17.856000px;}
.ws15_c00457{word-spacing:-0.360000px;}
.wsd_c00457{word-spacing:-0.144000px;}
.ws6_c00457{word-spacing:-0.131760px;}
.wsb_c00457{word-spacing:-0.072000px;}
.ws5_c00457{word-spacing:0.000000px;}
.ws14_c00457{word-spacing:0.144000px;}
.ws1_c00457{word-spacing:0.288000px;}
.wsc_c00457{word-spacing:0.720000px;}
.ws9_c00457{word-spacing:2.520000px;}
.ws13_c00457{word-spacing:6.408000px;}
.ws11_c00457{word-spacing:6.768000px;}
.ws10_c00457{word-spacing:6.840000px;}
.ws12_c00457{word-spacing:7.488000px;}
.ws16_c00457{word-spacing:9.288000px;}
.wsf_c00457{word-spacing:9.360000px;}
.ws7_c00457{word-spacing:10.728000px;}
.ws8_c00457{word-spacing:10.800000px;}
.wse_c00457{word-spacing:11.520000px;}
.wsa_c00457{word-spacing:29.808000px;}
._0_c00457{margin-left:-1.296000px;}
._1_c00457{width:1.008000px;}
.fc1_c00457{color:rgb(0,0,0);}
.fc0_c00457{color:rgb(35,31,32);}
.fs1_c00457{font-size:65.880000px;}
.fs0_c00457{font-size:72.000000px;}
.y0_c00457{bottom:0.000000px;}
.y1_c00457{bottom:61.748550px;}
.y22_c00457{bottom:177.524400px;}
.y21_c00457{bottom:208.574400px;}
.y20_c00457{bottom:239.624400px;}
.y1f_c00457{bottom:270.674400px;}
.y1e_c00457{bottom:301.724400px;}
.y1d_c00457{bottom:332.774400px;}
.y1c_c00457{bottom:363.824400px;}
.y1b_c00457{bottom:394.874400px;}
.y1a_c00457{bottom:425.924400px;}
.y19_c00457{bottom:456.974400px;}
.y18_c00457{bottom:488.024400px;}
.y17_c00457{bottom:519.074400px;}
.y16_c00457{bottom:550.124400px;}
.y15_c00457{bottom:581.174400px;}
.y14_c00457{bottom:612.224400px;}
.y13_c00457{bottom:643.274400px;}
.y12_c00457{bottom:674.324400px;}
.y11_c00457{bottom:705.374400px;}
.y10_c00457{bottom:736.424400px;}
.yf_c00457{bottom:767.474400px;}
.ye_c00457{bottom:798.434400px;}
.yd_c00457{bottom:829.484400px;}
.yc_c00457{bottom:860.534400px;}
.yb_c00457{bottom:891.584400px;}
.ya_c00457{bottom:922.634400px;}
.y9_c00457{bottom:953.684400px;}
.y8_c00457{bottom:984.734400px;}
.y7_c00457{bottom:1015.784400px;}
.y6_c00457{bottom:1046.834400px;}
.y5_c00457{bottom:1077.884400px;}
.y4_c00457{bottom:1108.934400px;}
.y3_c00457{bottom:1139.984400px;}
.y2_c00457{bottom:1194.074400px;}
.h2_c00457{height:50.400000px;}
.h3_c00457{height:54.331699px;}
.h4_c00457{height:76.824000px;}
.h0_c00457{height:1262.835000px;}
.h1_c00457{height:1263.000000px;}
.w0_c00457{width:892.914000px;}
.w1_c00457{width:893.250000px;}
.x0_c00457{left:0.000000px;}
.x1_c00457{left:54.000000px;}
.x2_c00457{left:127.620000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls6_c00457{letter-spacing:-0.128000pt;}
.ls7_c00457{letter-spacing:-0.064000pt;}
.ls5_c00457{letter-spacing:0.000000pt;}
.ls0_c00457{letter-spacing:0.064000pt;}
.ls2_c00457{letter-spacing:0.128000pt;}
.ls3_c00457{letter-spacing:0.448000pt;}
.ls1_c00457{letter-spacing:16.128000pt;}
.ls4_c00457{letter-spacing:16.140800pt;}
.ws4_c00457{word-spacing:-16.064000pt;}
.ws0_c00457{word-spacing:-16.000000pt;}
.ws3_c00457{word-spacing:-15.936000pt;}
.ws2_c00457{word-spacing:-15.872000pt;}
.ws15_c00457{word-spacing:-0.320000pt;}
.wsd_c00457{word-spacing:-0.128000pt;}
.ws6_c00457{word-spacing:-0.117120pt;}
.wsb_c00457{word-spacing:-0.064000pt;}
.ws5_c00457{word-spacing:0.000000pt;}
.ws14_c00457{word-spacing:0.128000pt;}
.ws1_c00457{word-spacing:0.256000pt;}
.wsc_c00457{word-spacing:0.640000pt;}
.ws9_c00457{word-spacing:2.240000pt;}
.ws13_c00457{word-spacing:5.696000pt;}
.ws11_c00457{word-spacing:6.016000pt;}
.ws10_c00457{word-spacing:6.080000pt;}
.ws12_c00457{word-spacing:6.656000pt;}
.ws16_c00457{word-spacing:8.256000pt;}
.wsf_c00457{word-spacing:8.320000pt;}
.ws7_c00457{word-spacing:9.536000pt;}
.ws8_c00457{word-spacing:9.600000pt;}
.wse_c00457{word-spacing:10.240000pt;}
.wsa_c00457{word-spacing:26.496000pt;}
._0_c00457{margin-left:-1.152000pt;}
._1_c00457{width:0.896000pt;}
.fs1_c00457{font-size:58.560000pt;}
.fs0_c00457{font-size:64.000000pt;}
.y0_c00457{bottom:0.000000pt;}
.y1_c00457{bottom:54.887600pt;}
.y22_c00457{bottom:157.799467pt;}
.y21_c00457{bottom:185.399467pt;}
.y20_c00457{bottom:212.999467pt;}
.y1f_c00457{bottom:240.599467pt;}
.y1e_c00457{bottom:268.199467pt;}
.y1d_c00457{bottom:295.799467pt;}
.y1c_c00457{bottom:323.399467pt;}
.y1b_c00457{bottom:350.999467pt;}
.y1a_c00457{bottom:378.599467pt;}
.y19_c00457{bottom:406.199467pt;}
.y18_c00457{bottom:433.799467pt;}
.y17_c00457{bottom:461.399467pt;}
.y16_c00457{bottom:488.999467pt;}
.y15_c00457{bottom:516.599467pt;}
.y14_c00457{bottom:544.199467pt;}
.y13_c00457{bottom:571.799467pt;}
.y12_c00457{bottom:599.399467pt;}
.y11_c00457{bottom:626.999467pt;}
.y10_c00457{bottom:654.599467pt;}
.yf_c00457{bottom:682.199467pt;}
.ye_c00457{bottom:709.719467pt;}
.yd_c00457{bottom:737.319467pt;}
.yc_c00457{bottom:764.919467pt;}
.yb_c00457{bottom:792.519467pt;}
.ya_c00457{bottom:820.119467pt;}
.y9_c00457{bottom:847.719467pt;}
.y8_c00457{bottom:875.319467pt;}
.y7_c00457{bottom:902.919467pt;}
.y6_c00457{bottom:930.519467pt;}
.y5_c00457{bottom:958.119467pt;}
.y4_c00457{bottom:985.719467pt;}
.y3_c00457{bottom:1013.319467pt;}
.y2_c00457{bottom:1061.399467pt;}
.h2_c00457{height:44.800000pt;}
.h3_c00457{height:48.294844pt;}
.h4_c00457{height:68.288000pt;}
.h0_c00457{height:1122.520000pt;}
.h1_c00457{height:1122.666667pt;}
.w0_c00457{width:793.701333pt;}
.w1_c00457{width:794.000000pt;}
.x0_c00457{left:0.000000pt;}
.x1_c00457{left:48.000000pt;}
.x2_c00457{left:113.440000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00458;src:url('chunks/assets/font_f8af394dc7d47ae7a575c547.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_3dfc78e9c21329cf94eeea72.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00458;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00458{font-family:ff4_c00458;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00458;src:url('chunks/assets/font_6b2cb3b3da1d10134b74147a.woff2')format("woff");}.ff5_c00458{font-family:ff5_c00458;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00458;src:url('chunks/assets/font_cd62d28d3f756a382b86b8ad.woff2')format("woff");}.ff6_c00458{font-family:ff6_c00458;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7_c00458{letter-spacing:-0.144000px;}
.ls8_c00458{letter-spacing:-0.072000px;}
.ls6_c00458{letter-spacing:0.000000px;}
.ls0_c00458{letter-spacing:0.072000px;}
.ls2_c00458{letter-spacing:0.144000px;}
.ls3_c00458{letter-spacing:0.504000px;}
.ls1_c00458{letter-spacing:18.144000px;}
.ls4_c00458{letter-spacing:18.158400px;}
.ls5_c00458{letter-spacing:31.824000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00458{word-spacing:-18.072000px;}
.ws0_c00458{word-spacing:-18.000000px;}
.ws3_c00458{word-spacing:-17.928000px;}
.ws2_c00458{word-spacing:-17.856000px;}
.ws1d_c00458{word-spacing:-0.432000px;}
.ws15_c00458{word-spacing:-0.360000px;}
.wse_c00458{word-spacing:-0.144000px;}
.ws7_c00458{word-spacing:-0.131760px;}
.wsc_c00458{word-spacing:-0.072000px;}
.ws6_c00458{word-spacing:0.000000px;}
.ws5_c00458{word-spacing:0.144000px;}
.ws17_c00458{word-spacing:0.197640px;}
.ws1_c00458{word-spacing:0.288000px;}
.wsd_c00458{word-spacing:0.720000px;}
.ws1b_c00458{word-spacing:1.728000px;}
.wsa_c00458{word-spacing:2.520000px;}
.ws19_c00458{word-spacing:5.256000px;}
.ws1a_c00458{word-spacing:5.400000px;}
.ws14_c00458{word-spacing:6.408000px;}
.ws12_c00458{word-spacing:6.768000px;}
.ws11_c00458{word-spacing:6.840000px;}
.ws13_c00458{word-spacing:7.488000px;}
.ws1e_c00458{word-spacing:7.560000px;}
.ws16_c00458{word-spacing:9.288000px;}
.ws10_c00458{word-spacing:9.360000px;}
.ws8_c00458{word-spacing:10.728000px;}
.ws9_c00458{word-spacing:10.800000px;}
.wsf_c00458{word-spacing:11.520000px;}
.ws1c_c00458{word-spacing:13.608000px;}
.ws18_c00458{word-spacing:21.240000px;}
.wsb_c00458{word-spacing:29.808000px;}
._0_c00458{margin-left:-1.296000px;}
._1_c00458{width:1.008000px;}
.fc2_c00458{color:transparent;}
.fc1_c00458{color:rgb(0,0,0);}
.fc0_c00458{color:rgb(35,31,32);}
.fs1_c00458{font-size:65.880000px;}
.fs0_c00458{font-size:72.000000px;}
.y0_c00458{bottom:0.000000px;}
.y1_c00458{bottom:61.748550px;}
.y22_c00458{bottom:177.524400px;}
.y21_c00458{bottom:208.574400px;}
.y20_c00458{bottom:239.624400px;}
.y1f_c00458{bottom:270.674400px;}
.y1e_c00458{bottom:301.724400px;}
.y1d_c00458{bottom:332.774400px;}
.y1c_c00458{bottom:363.824400px;}
.y1b_c00458{bottom:394.874400px;}
.y1a_c00458{bottom:425.924400px;}
.y19_c00458{bottom:456.974400px;}
.y18_c00458{bottom:488.024400px;}
.y17_c00458{bottom:519.074400px;}
.y16_c00458{bottom:550.124400px;}
.y15_c00458{bottom:581.174400px;}
.y14_c00458{bottom:612.224400px;}
.y13_c00458{bottom:643.274400px;}
.y12_c00458{bottom:674.324400px;}
.y11_c00458{bottom:705.374400px;}
.y10_c00458{bottom:736.424400px;}
.yf_c00458{bottom:767.474400px;}
.ye_c00458{bottom:798.434400px;}
.yd_c00458{bottom:829.484400px;}
.yc_c00458{bottom:860.534400px;}
.yb_c00458{bottom:891.584400px;}
.ya_c00458{bottom:922.634400px;}
.y9_c00458{bottom:953.684400px;}
.y8_c00458{bottom:984.734400px;}
.y7_c00458{bottom:1015.784400px;}
.y6_c00458{bottom:1046.834400px;}
.y5_c00458{bottom:1077.884400px;}
.y4_c00458{bottom:1108.934400px;}
.y3_c00458{bottom:1139.984400px;}
.y23_c00458{bottom:1173.915120px;}
.y2_c00458{bottom:1194.074400px;}
.h2_c00458{height:50.400000px;}
.h3_c00458{height:54.331699px;}
.h4_c00458{height:76.824000px;}
.h0_c00458{height:1262.835000px;}
.h1_c00458{height:1263.000000px;}
.w2_c00458{width:0.000000px;}
.w3_c00458{width:0.066000px;}
.w0_c00458{width:892.914000px;}
.w1_c00458{width:893.250000px;}
.x1_c00458{left:-838.913400px;}
.x2_c00458{left:-765.293400px;}
.x0_c00458{left:0.000000px;}
.x4_c00458{left:127.620000px;}
.x3_c00458{left:804.366150px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls7_c00458{letter-spacing:-0.128000pt;}
.ls8_c00458{letter-spacing:-0.064000pt;}
.ls6_c00458{letter-spacing:0.000000pt;}
.ls0_c00458{letter-spacing:0.064000pt;}
.ls2_c00458{letter-spacing:0.128000pt;}
.ls3_c00458{letter-spacing:0.448000pt;}
.ls1_c00458{letter-spacing:16.128000pt;}
.ls4_c00458{letter-spacing:16.140800pt;}
.ls5_c00458{letter-spacing:28.288000pt;}
.ws4_c00458{word-spacing:-16.064000pt;}
.ws0_c00458{word-spacing:-16.000000pt;}
.ws3_c00458{word-spacing:-15.936000pt;}
.ws2_c00458{word-spacing:-15.872000pt;}
.ws1d_c00458{word-spacing:-0.384000pt;}
.ws15_c00458{word-spacing:-0.320000pt;}
.wse_c00458{word-spacing:-0.128000pt;}
.ws7_c00458{word-spacing:-0.117120pt;}
.wsc_c00458{word-spacing:-0.064000pt;}
.ws6_c00458{word-spacing:0.000000pt;}
.ws5_c00458{word-spacing:0.128000pt;}
.ws17_c00458{word-spacing:0.175680pt;}
.ws1_c00458{word-spacing:0.256000pt;}
.wsd_c00458{word-spacing:0.640000pt;}
.ws1b_c00458{word-spacing:1.536000pt;}
.wsa_c00458{word-spacing:2.240000pt;}
.ws19_c00458{word-spacing:4.672000pt;}
.ws1a_c00458{word-spacing:4.800000pt;}
.ws14_c00458{word-spacing:5.696000pt;}
.ws12_c00458{word-spacing:6.016000pt;}
.ws11_c00458{word-spacing:6.080000pt;}
.ws13_c00458{word-spacing:6.656000pt;}
.ws1e_c00458{word-spacing:6.720000pt;}
.ws16_c00458{word-spacing:8.256000pt;}
.ws10_c00458{word-spacing:8.320000pt;}
.ws8_c00458{word-spacing:9.536000pt;}
.ws9_c00458{word-spacing:9.600000pt;}
.wsf_c00458{word-spacing:10.240000pt;}
.ws1c_c00458{word-spacing:12.096000pt;}
.ws18_c00458{word-spacing:18.880000pt;}
.wsb_c00458{word-spacing:26.496000pt;}
._0_c00458{margin-left:-1.152000pt;}
._1_c00458{width:0.896000pt;}
.fs1_c00458{font-size:58.560000pt;}
.fs0_c00458{font-size:64.000000pt;}
.y0_c00458{bottom:0.000000pt;}
.y1_c00458{bottom:54.887600pt;}
.y22_c00458{bottom:157.799467pt;}
.y21_c00458{bottom:185.399467pt;}
.y20_c00458{bottom:212.999467pt;}
.y1f_c00458{bottom:240.599467pt;}
.y1e_c00458{bottom:268.199467pt;}
.y1d_c00458{bottom:295.799467pt;}
.y1c_c00458{bottom:323.399467pt;}
.y1b_c00458{bottom:350.999467pt;}
.y1a_c00458{bottom:378.599467pt;}
.y19_c00458{bottom:406.199467pt;}
.y18_c00458{bottom:433.799467pt;}
.y17_c00458{bottom:461.399467pt;}
.y16_c00458{bottom:488.999467pt;}
.y15_c00458{bottom:516.599467pt;}
.y14_c00458{bottom:544.199467pt;}
.y13_c00458{bottom:571.799467pt;}
.y12_c00458{bottom:599.399467pt;}
.y11_c00458{bottom:626.999467pt;}
.y10_c00458{bottom:654.599467pt;}
.yf_c00458{bottom:682.199467pt;}
.ye_c00458{bottom:709.719467pt;}
.yd_c00458{bottom:737.319467pt;}
.yc_c00458{bottom:764.919467pt;}
.yb_c00458{bottom:792.519467pt;}
.ya_c00458{bottom:820.119467pt;}
.y9_c00458{bottom:847.719467pt;}
.y8_c00458{bottom:875.319467pt;}
.y7_c00458{bottom:902.919467pt;}
.y6_c00458{bottom:930.519467pt;}
.y5_c00458{bottom:958.119467pt;}
.y4_c00458{bottom:985.719467pt;}
.y3_c00458{bottom:1013.319467pt;}
.y23_c00458{bottom:1043.480107pt;}
.y2_c00458{bottom:1061.399467pt;}
.h2_c00458{height:44.800000pt;}
.h3_c00458{height:48.294844pt;}
.h4_c00458{height:68.288000pt;}
.h0_c00458{height:1122.520000pt;}
.h1_c00458{height:1122.666667pt;}
.w2_c00458{width:0.000000pt;}
.w3_c00458{width:0.058667pt;}
.w0_c00458{width:793.701333pt;}
.w1_c00458{width:794.000000pt;}
.x1_c00458{left:-745.700800pt;}
.x2_c00458{left:-680.260800pt;}
.x0_c00458{left:0.000000pt;}
.x4_c00458{left:113.440000pt;}
.x3_c00458{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00459;src:url('chunks/assets/font_02262f4b511efeffe2070838.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00459;src:url('chunks/assets/font_b36ef79b209bc7c990828712.woff2')format("woff");}.ff3_c00459{font-family:ff3_c00459;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00459{letter-spacing:-0.360000px;}
.ls4_c00459{letter-spacing:-0.144000px;}
.ls3_c00459{letter-spacing:-0.072000px;}
.ls2_c00459{letter-spacing:0.000000px;}
.ls0_c00459{letter-spacing:0.072000px;}
.ls1_c00459{letter-spacing:0.144000px;}
.sc__c00459{text-shadow:none;}
.sc0_c00459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00459{-webkit-text-stroke:0px transparent;}
.sc0_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00459{word-spacing:-18.000000px;}
.ws2_c00459{word-spacing:-17.856000px;}
.ws3_c00459{word-spacing:-17.640000px;}
.wsc_c00459{word-spacing:-0.576000px;}
.wsf_c00459{word-spacing:-0.144000px;}
.ws5_c00459{word-spacing:-0.131760px;}
.ws9_c00459{word-spacing:-0.072000px;}
.ws4_c00459{word-spacing:0.000000px;}
.ws1_c00459{word-spacing:0.144000px;}
.ws6_c00459{word-spacing:0.432000px;}
.ws7_c00459{word-spacing:0.648000px;}
.ws8_c00459{word-spacing:2.088000px;}
.wsa_c00459{word-spacing:2.160000px;}
.wsb_c00459{word-spacing:3.528000px;}
.wsd_c00459{word-spacing:4.608000px;}
.wse_c00459{word-spacing:7.920000px;}
.ws10_c00459{word-spacing:8.568000px;}
.ws11_c00459{word-spacing:8.640000px;}
._0_c00459{margin-left:-1.008000px;}
.fc1_c00459{color:rgb(0,0,0);}
.fc0_c00459{color:rgb(35,31,32);}
.fs1_c00459{font-size:65.880000px;}
.fs0_c00459{font-size:72.000000px;}
.y0_c00459{bottom:0.000000px;}
.y1_c00459{bottom:61.748550px;}
.y23_c00459{bottom:115.424400px;}
.y22_c00459{bottom:146.474400px;}
.y21_c00459{bottom:177.524400px;}
.y20_c00459{bottom:208.574400px;}
.y1f_c00459{bottom:239.624400px;}
.y1e_c00459{bottom:270.674400px;}
.y1d_c00459{bottom:301.724400px;}
.y1c_c00459{bottom:332.774400px;}
.y1b_c00459{bottom:363.824400px;}
.y1a_c00459{bottom:394.874400px;}
.y19_c00459{bottom:425.924400px;}
.y18_c00459{bottom:456.974400px;}
.y17_c00459{bottom:488.024400px;}
.y16_c00459{bottom:519.074400px;}
.y15_c00459{bottom:550.124400px;}
.y14_c00459{bottom:581.174400px;}
.y13_c00459{bottom:612.224400px;}
.y12_c00459{bottom:643.274400px;}
.y11_c00459{bottom:674.324400px;}
.y10_c00459{bottom:705.374400px;}
.yf_c00459{bottom:736.424400px;}
.ye_c00459{bottom:767.474400px;}
.yd_c00459{bottom:798.434400px;}
.yc_c00459{bottom:829.484400px;}
.yb_c00459{bottom:860.534400px;}
.ya_c00459{bottom:891.584400px;}
.y9_c00459{bottom:922.634400px;}
.y8_c00459{bottom:953.684400px;}
.y7_c00459{bottom:984.734400px;}
.y6_c00459{bottom:1015.784400px;}
.y5_c00459{bottom:1046.834400px;}
.y4_c00459{bottom:1077.884400px;}
.y3_c00459{bottom:1139.984400px;}
.y2_c00459{bottom:1194.074400px;}
.h2_c00459{height:50.400000px;}
.h3_c00459{height:54.331699px;}
.h4_c00459{height:76.824000px;}
.h0_c00459{height:1262.835000px;}
.h1_c00459{height:1263.000000px;}
.w0_c00459{width:892.914000px;}
.w1_c00459{width:893.250000px;}
.x0_c00459{left:0.000000px;}
.x1_c00459{left:54.000000px;}
.x2_c00459{left:127.620000px;}
.x3_c00459{left:159.570000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls5_c00459{letter-spacing:-0.320000pt;}
.ls4_c00459{letter-spacing:-0.128000pt;}
.ls3_c00459{letter-spacing:-0.064000pt;}
.ls2_c00459{letter-spacing:0.000000pt;}
.ls0_c00459{letter-spacing:0.064000pt;}
.ls1_c00459{letter-spacing:0.128000pt;}
.ws0_c00459{word-spacing:-16.000000pt;}
.ws2_c00459{word-spacing:-15.872000pt;}
.ws3_c00459{word-spacing:-15.680000pt;}
.wsc_c00459{word-spacing:-0.512000pt;}
.wsf_c00459{word-spacing:-0.128000pt;}
.ws5_c00459{word-spacing:-0.117120pt;}
.ws9_c00459{word-spacing:-0.064000pt;}
.ws4_c00459{word-spacing:0.000000pt;}
.ws1_c00459{word-spacing:0.128000pt;}
.ws6_c00459{word-spacing:0.384000pt;}
.ws7_c00459{word-spacing:0.576000pt;}
.ws8_c00459{word-spacing:1.856000pt;}
.wsa_c00459{word-spacing:1.920000pt;}
.wsb_c00459{word-spacing:3.136000pt;}
.wsd_c00459{word-spacing:4.096000pt;}
.wse_c00459{word-spacing:7.040000pt;}
.ws10_c00459{word-spacing:7.616000pt;}
.ws11_c00459{word-spacing:7.680000pt;}
._0_c00459{margin-left:-0.896000pt;}
.fs1_c00459{font-size:58.560000pt;}
.fs0_c00459{font-size:64.000000pt;}
.y0_c00459{bottom:0.000000pt;}
.y1_c00459{bottom:54.887600pt;}
.y23_c00459{bottom:102.599467pt;}
.y22_c00459{bottom:130.199467pt;}
.y21_c00459{bottom:157.799467pt;}
.y20_c00459{bottom:185.399467pt;}
.y1f_c00459{bottom:212.999467pt;}
.y1e_c00459{bottom:240.599467pt;}
.y1d_c00459{bottom:268.199467pt;}
.y1c_c00459{bottom:295.799467pt;}
.y1b_c00459{bottom:323.399467pt;}
.y1a_c00459{bottom:350.999467pt;}
.y19_c00459{bottom:378.599467pt;}
.y18_c00459{bottom:406.199467pt;}
.y17_c00459{bottom:433.799467pt;}
.y16_c00459{bottom:461.399467pt;}
.y15_c00459{bottom:488.999467pt;}
.y14_c00459{bottom:516.599467pt;}
.y13_c00459{bottom:544.199467pt;}
.y12_c00459{bottom:571.799467pt;}
.y11_c00459{bottom:599.399467pt;}
.y10_c00459{bottom:626.999467pt;}
.yf_c00459{bottom:654.599467pt;}
.ye_c00459{bottom:682.199467pt;}
.yd_c00459{bottom:709.719467pt;}
.yc_c00459{bottom:737.319467pt;}
.yb_c00459{bottom:764.919467pt;}
.ya_c00459{bottom:792.519467pt;}
.y9_c00459{bottom:820.119467pt;}
.y8_c00459{bottom:847.719467pt;}
.y7_c00459{bottom:875.319467pt;}
.y6_c00459{bottom:902.919467pt;}
.y5_c00459{bottom:930.519467pt;}
.y4_c00459{bottom:958.119467pt;}
.y3_c00459{bottom:1013.319467pt;}
.y2_c00459{bottom:1061.399467pt;}
.h2_c00459{height:44.800000pt;}
.h3_c00459{height:48.294844pt;}
.h4_c00459{height:68.288000pt;}
.h0_c00459{height:1122.520000pt;}
.h1_c00459{height:1122.666667pt;}
.w0_c00459{width:793.701333pt;}
.w1_c00459{width:794.000000pt;}
.x0_c00459{left:0.000000pt;}
.x1_c00459{left:48.000000pt;}
.x2_c00459{left:113.440000pt;}
.x3_c00459{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00460;src:url('chunks/assets/font_6edf9f44f2f705ddbadfbdcf.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00460;src:url('chunks/assets/font_46c11b29fe460c9106ea71a1.woff2')format("woff");}.ff3_c00460{font-family:ff3_c00460;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00460;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00460;src:url('chunks/assets/font_68e6150ebcb24af7024d2a73.woff2')format("woff");}.ff5_c00460{font-family:ff5_c00460;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00460;src:url('chunks/assets/font_055caa4523f9dc6f3f989f96.woff2')format("woff");}.ff6_c00460{font-family:ff6_c00460;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00460{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls6_c00460{letter-spacing:-0.360000px;}
.ls5_c00460{letter-spacing:-0.144000px;}
.ls4_c00460{letter-spacing:-0.072000px;}
.ls3_c00460{letter-spacing:0.000000px;}
.ls0_c00460{letter-spacing:0.072000px;}
.ls1_c00460{letter-spacing:0.144000px;}
.ls2_c00460{letter-spacing:18.144000px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00460{word-spacing:-18.072000px;}
.ws0_c00460{word-spacing:-18.000000px;}
.ws2_c00460{word-spacing:-17.856000px;}
.ws3_c00460{word-spacing:-17.640000px;}
.wse_c00460{word-spacing:-0.576000px;}
.ws11_c00460{word-spacing:-0.144000px;}
.ws7_c00460{word-spacing:-0.131760px;}
.wsb_c00460{word-spacing:-0.072000px;}
.ws6_c00460{word-spacing:0.000000px;}
.ws1_c00460{word-spacing:0.144000px;}
.ws14_c00460{word-spacing:0.197640px;}
.ws15_c00460{word-spacing:0.288000px;}
.ws8_c00460{word-spacing:0.432000px;}
.ws9_c00460{word-spacing:0.648000px;}
.ws1d_c00460{word-spacing:1.008000px;}
.wsa_c00460{word-spacing:2.088000px;}
.wsc_c00460{word-spacing:2.160000px;}
.wsd_c00460{word-spacing:3.528000px;}
.ws1b_c00460{word-spacing:4.320000px;}
.wsf_c00460{word-spacing:4.608000px;}
.ws1a_c00460{word-spacing:5.040000px;}
.ws16_c00460{word-spacing:6.048000px;}
.ws19_c00460{word-spacing:6.840000px;}
.ws10_c00460{word-spacing:7.920000px;}
.ws5_c00460{word-spacing:8.064000px;}
.ws12_c00460{word-spacing:8.568000px;}
.ws13_c00460{word-spacing:8.640000px;}
.ws1e_c00460{word-spacing:9.288000px;}
.ws18_c00460{word-spacing:10.728000px;}
.ws17_c00460{word-spacing:10.800000px;}
.ws1c_c00460{word-spacing:12.528000px;}
.ws1f_c00460{word-spacing:21.168000px;}
._0_c00460{margin-left:-1.008000px;}
._1_c00460{width:1.119960px;}
.fc2_c00460{color:transparent;}
.fc1_c00460{color:rgb(0,0,0);}
.fc0_c00460{color:rgb(35,31,32);}
.fs1_c00460{font-size:65.880000px;}
.fs0_c00460{font-size:72.000000px;}
.y0_c00460{bottom:0.000000px;}
.y1_c00460{bottom:61.748550px;}
.y23_c00460{bottom:115.424400px;}
.y22_c00460{bottom:146.474400px;}
.y21_c00460{bottom:177.524400px;}
.y20_c00460{bottom:208.574400px;}
.y1f_c00460{bottom:239.624400px;}
.y1e_c00460{bottom:270.674400px;}
.y1d_c00460{bottom:301.724400px;}
.y1c_c00460{bottom:332.774400px;}
.y1b_c00460{bottom:363.824400px;}
.y1a_c00460{bottom:394.874400px;}
.y19_c00460{bottom:425.924400px;}
.y18_c00460{bottom:456.974400px;}
.y17_c00460{bottom:488.024400px;}
.y16_c00460{bottom:519.074400px;}
.y15_c00460{bottom:550.124400px;}
.y14_c00460{bottom:581.174400px;}
.y13_c00460{bottom:612.224400px;}
.y12_c00460{bottom:643.274400px;}
.y11_c00460{bottom:674.324400px;}
.y10_c00460{bottom:705.374400px;}
.yf_c00460{bottom:736.424400px;}
.ye_c00460{bottom:767.474400px;}
.yd_c00460{bottom:798.434400px;}
.yc_c00460{bottom:829.484400px;}
.yb_c00460{bottom:860.534400px;}
.ya_c00460{bottom:891.584400px;}
.y9_c00460{bottom:922.634400px;}
.y8_c00460{bottom:953.684400px;}
.y7_c00460{bottom:984.734400px;}
.y6_c00460{bottom:1015.784400px;}
.y5_c00460{bottom:1046.834400px;}
.y4_c00460{bottom:1077.884400px;}
.y25_c00460{bottom:1108.934400px;}
.y3_c00460{bottom:1139.984400px;}
.y24_c00460{bottom:1173.915120px;}
.y2_c00460{bottom:1194.074400px;}
.h2_c00460{height:50.400000px;}
.h3_c00460{height:54.331699px;}
.h4_c00460{height:76.824000px;}
.h0_c00460{height:1262.835000px;}
.h1_c00460{height:1263.000000px;}
.w2_c00460{width:0.000000px;}
.w3_c00460{width:0.066000px;}
.w0_c00460{width:892.914000px;}
.w1_c00460{width:893.250000px;}
.x1_c00460{left:-838.913400px;}
.x2_c00460{left:-765.293400px;}
.x3_c00460{left:-733.343400px;}
.x0_c00460{left:0.000000px;}
.x5_c00460{left:127.620000px;}
.x6_c00460{left:159.570000px;}
.x4_c00460{left:804.366150px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls6_c00460{letter-spacing:-0.320000pt;}
.ls5_c00460{letter-spacing:-0.128000pt;}
.ls4_c00460{letter-spacing:-0.064000pt;}
.ls3_c00460{letter-spacing:0.000000pt;}
.ls0_c00460{letter-spacing:0.064000pt;}
.ls1_c00460{letter-spacing:0.128000pt;}
.ls2_c00460{letter-spacing:16.128000pt;}
.ws4_c00460{word-spacing:-16.064000pt;}
.ws0_c00460{word-spacing:-16.000000pt;}
.ws2_c00460{word-spacing:-15.872000pt;}
.ws3_c00460{word-spacing:-15.680000pt;}
.wse_c00460{word-spacing:-0.512000pt;}
.ws11_c00460{word-spacing:-0.128000pt;}
.ws7_c00460{word-spacing:-0.117120pt;}
.wsb_c00460{word-spacing:-0.064000pt;}
.ws6_c00460{word-spacing:0.000000pt;}
.ws1_c00460{word-spacing:0.128000pt;}
.ws14_c00460{word-spacing:0.175680pt;}
.ws15_c00460{word-spacing:0.256000pt;}
.ws8_c00460{word-spacing:0.384000pt;}
.ws9_c00460{word-spacing:0.576000pt;}
.ws1d_c00460{word-spacing:0.896000pt;}
.wsa_c00460{word-spacing:1.856000pt;}
.wsc_c00460{word-spacing:1.920000pt;}
.wsd_c00460{word-spacing:3.136000pt;}
.ws1b_c00460{word-spacing:3.840000pt;}
.wsf_c00460{word-spacing:4.096000pt;}
.ws1a_c00460{word-spacing:4.480000pt;}
.ws16_c00460{word-spacing:5.376000pt;}
.ws19_c00460{word-spacing:6.080000pt;}
.ws10_c00460{word-spacing:7.040000pt;}
.ws5_c00460{word-spacing:7.168000pt;}
.ws12_c00460{word-spacing:7.616000pt;}
.ws13_c00460{word-spacing:7.680000pt;}
.ws1e_c00460{word-spacing:8.256000pt;}
.ws18_c00460{word-spacing:9.536000pt;}
.ws17_c00460{word-spacing:9.600000pt;}
.ws1c_c00460{word-spacing:11.136000pt;}
.ws1f_c00460{word-spacing:18.816000pt;}
._0_c00460{margin-left:-0.896000pt;}
._1_c00460{width:0.995520pt;}
.fs1_c00460{font-size:58.560000pt;}
.fs0_c00460{font-size:64.000000pt;}
.y0_c00460{bottom:0.000000pt;}
.y1_c00460{bottom:54.887600pt;}
.y23_c00460{bottom:102.599467pt;}
.y22_c00460{bottom:130.199467pt;}
.y21_c00460{bottom:157.799467pt;}
.y20_c00460{bottom:185.399467pt;}
.y1f_c00460{bottom:212.999467pt;}
.y1e_c00460{bottom:240.599467pt;}
.y1d_c00460{bottom:268.199467pt;}
.y1c_c00460{bottom:295.799467pt;}
.y1b_c00460{bottom:323.399467pt;}
.y1a_c00460{bottom:350.999467pt;}
.y19_c00460{bottom:378.599467pt;}
.y18_c00460{bottom:406.199467pt;}
.y17_c00460{bottom:433.799467pt;}
.y16_c00460{bottom:461.399467pt;}
.y15_c00460{bottom:488.999467pt;}
.y14_c00460{bottom:516.599467pt;}
.y13_c00460{bottom:544.199467pt;}
.y12_c00460{bottom:571.799467pt;}
.y11_c00460{bottom:599.399467pt;}
.y10_c00460{bottom:626.999467pt;}
.yf_c00460{bottom:654.599467pt;}
.ye_c00460{bottom:682.199467pt;}
.yd_c00460{bottom:709.719467pt;}
.yc_c00460{bottom:737.319467pt;}
.yb_c00460{bottom:764.919467pt;}
.ya_c00460{bottom:792.519467pt;}
.y9_c00460{bottom:820.119467pt;}
.y8_c00460{bottom:847.719467pt;}
.y7_c00460{bottom:875.319467pt;}
.y6_c00460{bottom:902.919467pt;}
.y5_c00460{bottom:930.519467pt;}
.y4_c00460{bottom:958.119467pt;}
.y25_c00460{bottom:985.719467pt;}
.y3_c00460{bottom:1013.319467pt;}
.y24_c00460{bottom:1043.480107pt;}
.y2_c00460{bottom:1061.399467pt;}
.h2_c00460{height:44.800000pt;}
.h3_c00460{height:48.294844pt;}
.h4_c00460{height:68.288000pt;}
.h0_c00460{height:1122.520000pt;}
.h1_c00460{height:1122.666667pt;}
.w2_c00460{width:0.000000pt;}
.w3_c00460{width:0.058667pt;}
.w0_c00460{width:793.701333pt;}
.w1_c00460{width:794.000000pt;}
.x1_c00460{left:-745.700800pt;}
.x2_c00460{left:-680.260800pt;}
.x3_c00460{left:-651.860800pt;}
.x0_c00460{left:0.000000pt;}
.x5_c00460{left:113.440000pt;}
.x6_c00460{left:141.840000pt;}
.x4_c00460{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00461;src:url('chunks/assets/font_79f51248afa55011d61766f6.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00461;src:url('chunks/assets/font_7f7574e177129a0ef8a9ee7b.woff2')format("woff");}.ff3_c00461{font-family:ff3_c00461;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00461{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls6_c00461{letter-spacing:-0.576000px;}
.ls5_c00461{letter-spacing:-0.144000px;}
.ls4_c00461{letter-spacing:0.000000px;}
.ls0_c00461{letter-spacing:0.072000px;}
.ls3_c00461{letter-spacing:0.144000px;}
.ls2_c00461{letter-spacing:18.144000px;}
.ls1_c00461{letter-spacing:27.864000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00461{word-spacing:-18.144000px;}
.ws2_c00461{word-spacing:-18.072000px;}
.ws4_c00461{word-spacing:-17.856000px;}
.wsf_c00461{word-spacing:-0.432000px;}
.ws7_c00461{word-spacing:-0.131760px;}
.ws8_c00461{word-spacing:-0.072000px;}
.ws6_c00461{word-spacing:0.000000px;}
.ws3_c00461{word-spacing:0.144000px;}
.ws0_c00461{word-spacing:0.504000px;}
.ws16_c00461{word-spacing:0.576000px;}
.ws11_c00461{word-spacing:1.008000px;}
.ws9_c00461{word-spacing:1.440000px;}
.wsc_c00461{word-spacing:1.728000px;}
.ws10_c00461{word-spacing:2.448000px;}
.ws15_c00461{word-spacing:3.168000px;}
.ws13_c00461{word-spacing:3.600000px;}
.wsa_c00461{word-spacing:8.208000px;}
.wsb_c00461{word-spacing:8.280000px;}
.ws1_c00461{word-spacing:8.424000px;}
.wsd_c00461{word-spacing:9.648000px;}
.wse_c00461{word-spacing:9.720000px;}
.ws12_c00461{word-spacing:11.448000px;}
.ws14_c00461{word-spacing:24.048000px;}
._0_c00461{margin-left:-1.152000px;}
._1_c00461{width:1.065600px;}
.fc1_c00461{color:rgb(0,0,0);}
.fc0_c00461{color:rgb(35,31,32);}
.fs1_c00461{font-size:65.880000px;}
.fs0_c00461{font-size:72.000000px;}
.y0_c00461{bottom:0.000000px;}
.y1_c00461{bottom:61.748550px;}
.y24_c00461{bottom:115.424400px;}
.y23_c00461{bottom:146.474400px;}
.y22_c00461{bottom:177.524400px;}
.y21_c00461{bottom:208.574400px;}
.y20_c00461{bottom:239.624400px;}
.y1f_c00461{bottom:270.674400px;}
.y1e_c00461{bottom:301.724400px;}
.y1d_c00461{bottom:332.774400px;}
.y1c_c00461{bottom:363.824400px;}
.y1b_c00461{bottom:394.874400px;}
.y1a_c00461{bottom:425.924400px;}
.y19_c00461{bottom:456.974400px;}
.y18_c00461{bottom:488.024400px;}
.y17_c00461{bottom:519.074400px;}
.y16_c00461{bottom:550.124400px;}
.y15_c00461{bottom:581.174400px;}
.y14_c00461{bottom:612.224400px;}
.y13_c00461{bottom:643.274400px;}
.y12_c00461{bottom:674.324400px;}
.y11_c00461{bottom:705.374400px;}
.y10_c00461{bottom:736.424400px;}
.yf_c00461{bottom:767.474400px;}
.ye_c00461{bottom:798.434400px;}
.yd_c00461{bottom:829.484400px;}
.yc_c00461{bottom:860.534400px;}
.yb_c00461{bottom:891.584400px;}
.ya_c00461{bottom:922.634400px;}
.y9_c00461{bottom:953.684400px;}
.y8_c00461{bottom:984.734400px;}
.y7_c00461{bottom:1015.784400px;}
.y6_c00461{bottom:1046.834400px;}
.y5_c00461{bottom:1077.884400px;}
.y4_c00461{bottom:1108.934400px;}
.y3_c00461{bottom:1139.984400px;}
.y2_c00461{bottom:1194.074400px;}
.h2_c00461{height:50.400000px;}
.h3_c00461{height:54.331699px;}
.h4_c00461{height:76.824000px;}
.h0_c00461{height:1262.835000px;}
.h1_c00461{height:1263.000000px;}
.w0_c00461{width:892.914000px;}
.w1_c00461{width:893.250000px;}
.x0_c00461{left:0.000000px;}
.x1_c00461{left:54.000000px;}
.x2_c00461{left:127.620000px;}
.x3_c00461{left:159.570000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls6_c00461{letter-spacing:-0.512000pt;}
.ls5_c00461{letter-spacing:-0.128000pt;}
.ls4_c00461{letter-spacing:0.000000pt;}
.ls0_c00461{letter-spacing:0.064000pt;}
.ls3_c00461{letter-spacing:0.128000pt;}
.ls2_c00461{letter-spacing:16.128000pt;}
.ls1_c00461{letter-spacing:24.768000pt;}
.ws5_c00461{word-spacing:-16.128000pt;}
.ws2_c00461{word-spacing:-16.064000pt;}
.ws4_c00461{word-spacing:-15.872000pt;}
.wsf_c00461{word-spacing:-0.384000pt;}
.ws7_c00461{word-spacing:-0.117120pt;}
.ws8_c00461{word-spacing:-0.064000pt;}
.ws6_c00461{word-spacing:0.000000pt;}
.ws3_c00461{word-spacing:0.128000pt;}
.ws0_c00461{word-spacing:0.448000pt;}
.ws16_c00461{word-spacing:0.512000pt;}
.ws11_c00461{word-spacing:0.896000pt;}
.ws9_c00461{word-spacing:1.280000pt;}
.wsc_c00461{word-spacing:1.536000pt;}
.ws10_c00461{word-spacing:2.176000pt;}
.ws15_c00461{word-spacing:2.816000pt;}
.ws13_c00461{word-spacing:3.200000pt;}
.wsa_c00461{word-spacing:7.296000pt;}
.wsb_c00461{word-spacing:7.360000pt;}
.ws1_c00461{word-spacing:7.488000pt;}
.wsd_c00461{word-spacing:8.576000pt;}
.wse_c00461{word-spacing:8.640000pt;}
.ws12_c00461{word-spacing:10.176000pt;}
.ws14_c00461{word-spacing:21.376000pt;}
._0_c00461{margin-left:-1.024000pt;}
._1_c00461{width:0.947200pt;}
.fs1_c00461{font-size:58.560000pt;}
.fs0_c00461{font-size:64.000000pt;}
.y0_c00461{bottom:0.000000pt;}
.y1_c00461{bottom:54.887600pt;}
.y24_c00461{bottom:102.599467pt;}
.y23_c00461{bottom:130.199467pt;}
.y22_c00461{bottom:157.799467pt;}
.y21_c00461{bottom:185.399467pt;}
.y20_c00461{bottom:212.999467pt;}
.y1f_c00461{bottom:240.599467pt;}
.y1e_c00461{bottom:268.199467pt;}
.y1d_c00461{bottom:295.799467pt;}
.y1c_c00461{bottom:323.399467pt;}
.y1b_c00461{bottom:350.999467pt;}
.y1a_c00461{bottom:378.599467pt;}
.y19_c00461{bottom:406.199467pt;}
.y18_c00461{bottom:433.799467pt;}
.y17_c00461{bottom:461.399467pt;}
.y16_c00461{bottom:488.999467pt;}
.y15_c00461{bottom:516.599467pt;}
.y14_c00461{bottom:544.199467pt;}
.y13_c00461{bottom:571.799467pt;}
.y12_c00461{bottom:599.399467pt;}
.y11_c00461{bottom:626.999467pt;}
.y10_c00461{bottom:654.599467pt;}
.yf_c00461{bottom:682.199467pt;}
.ye_c00461{bottom:709.719467pt;}
.yd_c00461{bottom:737.319467pt;}
.yc_c00461{bottom:764.919467pt;}
.yb_c00461{bottom:792.519467pt;}
.ya_c00461{bottom:820.119467pt;}
.y9_c00461{bottom:847.719467pt;}
.y8_c00461{bottom:875.319467pt;}
.y7_c00461{bottom:902.919467pt;}
.y6_c00461{bottom:930.519467pt;}
.y5_c00461{bottom:958.119467pt;}
.y4_c00461{bottom:985.719467pt;}
.y3_c00461{bottom:1013.319467pt;}
.y2_c00461{bottom:1061.399467pt;}
.h2_c00461{height:44.800000pt;}
.h3_c00461{height:48.294844pt;}
.h4_c00461{height:68.288000pt;}
.h0_c00461{height:1122.520000pt;}
.h1_c00461{height:1122.666667pt;}
.w0_c00461{width:793.701333pt;}
.w1_c00461{width:794.000000pt;}
.x0_c00461{left:0.000000pt;}
.x1_c00461{left:48.000000pt;}
.x2_c00461{left:113.440000pt;}
.x3_c00461{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00462;src:url('chunks/assets/font_e0ca3f825b05107c5d4cd380.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00462;src:url('chunks/assets/font_1b7e434c3d9a85251a78d353.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00462;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00462{font-family:ff4_c00462;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00462;src:url('chunks/assets/font_d6440779900b9653435cf5f6.woff2')format("woff");}.ff5_c00462{font-family:ff5_c00462;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00462;src:url('chunks/assets/font_5041a7c485c313cb91a23cf3.woff2')format("woff");}.ff6_c00462{font-family:ff6_c00462;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00462{letter-spacing:-0.576000px;}
.ls7_c00462{letter-spacing:-0.144000px;}
.ls9_c00462{letter-spacing:-0.072000px;}
.ls6_c00462{letter-spacing:0.000000px;}
.ls0_c00462{letter-spacing:0.072000px;}
.ls3_c00462{letter-spacing:0.144000px;}
.ls2_c00462{letter-spacing:18.144000px;}
.ls5_c00462{letter-spacing:22.104000px;}
.ls4_c00462{letter-spacing:22.464000px;}
.ls1_c00462{letter-spacing:27.864000px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00462{word-spacing:-18.144000px;}
.ws2_c00462{word-spacing:-18.072000px;}
.ws4_c00462{word-spacing:-17.856000px;}
.ws6_c00462{word-spacing:-17.424000px;}
.ws11_c00462{word-spacing:-0.432000px;}
.ws1f_c00462{word-spacing:-0.144000px;}
.ws9_c00462{word-spacing:-0.131760px;}
.wsa_c00462{word-spacing:-0.072000px;}
.ws8_c00462{word-spacing:0.000000px;}
.ws3_c00462{word-spacing:0.144000px;}
.ws19_c00462{word-spacing:0.197640px;}
.ws22_c00462{word-spacing:0.288000px;}
.ws0_c00462{word-spacing:0.504000px;}
.ws18_c00462{word-spacing:0.576000px;}
.ws13_c00462{word-spacing:1.008000px;}
.ws26_c00462{word-spacing:1.368000px;}
.wsb_c00462{word-spacing:1.440000px;}
.ws7_c00462{word-spacing:1.656000px;}
.wse_c00462{word-spacing:1.728000px;}
.ws12_c00462{word-spacing:2.448000px;}
.ws17_c00462{word-spacing:3.168000px;}
.ws25_c00462{word-spacing:3.240000px;}
.ws15_c00462{word-spacing:3.600000px;}
.ws1a_c00462{word-spacing:3.888000px;}
.ws1e_c00462{word-spacing:3.960000px;}
.ws21_c00462{word-spacing:4.248000px;}
.ws29_c00462{word-spacing:6.048000px;}
.ws1d_c00462{word-spacing:6.840000px;}
.ws1c_c00462{word-spacing:7.128000px;}
.ws1b_c00462{word-spacing:7.200000px;}
.ws24_c00462{word-spacing:7.488000px;}
.wsc_c00462{word-spacing:8.208000px;}
.wsd_c00462{word-spacing:8.280000px;}
.ws1_c00462{word-spacing:8.424000px;}
.ws20_c00462{word-spacing:9.288000px;}
.wsf_c00462{word-spacing:9.648000px;}
.ws10_c00462{word-spacing:9.720000px;}
.ws14_c00462{word-spacing:11.448000px;}
.ws28_c00462{word-spacing:11.520000px;}
.ws2b_c00462{word-spacing:15.696000px;}
.ws2a_c00462{word-spacing:15.768000px;}
.ws27_c00462{word-spacing:15.840000px;}
.ws16_c00462{word-spacing:24.048000px;}
.ws23_c00462{word-spacing:24.768000px;}
._0_c00462{margin-left:-1.152000px;}
._1_c00462{width:1.065600px;}
._2_c00462{width:36.144000px;}
.fc2_c00462{color:transparent;}
.fc1_c00462{color:rgb(0,0,0);}
.fc0_c00462{color:rgb(35,31,32);}
.fs1_c00462{font-size:65.880000px;}
.fs0_c00462{font-size:72.000000px;}
.y0_c00462{bottom:0.000000px;}
.y1_c00462{bottom:61.748550px;}
.y24_c00462{bottom:115.424400px;}
.y23_c00462{bottom:146.474400px;}
.y22_c00462{bottom:177.524400px;}
.y21_c00462{bottom:208.574400px;}
.y20_c00462{bottom:239.624400px;}
.y1f_c00462{bottom:270.674400px;}
.y1e_c00462{bottom:301.724400px;}
.y1d_c00462{bottom:332.774400px;}
.y1c_c00462{bottom:363.824400px;}
.y1b_c00462{bottom:394.874400px;}
.y1a_c00462{bottom:425.924400px;}
.y19_c00462{bottom:456.974400px;}
.y18_c00462{bottom:488.024400px;}
.y17_c00462{bottom:519.074400px;}
.y16_c00462{bottom:550.124400px;}
.y15_c00462{bottom:581.174400px;}
.y14_c00462{bottom:612.224400px;}
.y13_c00462{bottom:643.274400px;}
.y12_c00462{bottom:674.324400px;}
.y11_c00462{bottom:705.374400px;}
.y10_c00462{bottom:736.424400px;}
.yf_c00462{bottom:767.474400px;}
.ye_c00462{bottom:798.434400px;}
.yd_c00462{bottom:829.484400px;}
.yc_c00462{bottom:860.534400px;}
.yb_c00462{bottom:891.584400px;}
.ya_c00462{bottom:922.634400px;}
.y9_c00462{bottom:953.684400px;}
.y8_c00462{bottom:984.734400px;}
.y7_c00462{bottom:1015.784400px;}
.y6_c00462{bottom:1046.834400px;}
.y5_c00462{bottom:1077.884400px;}
.y4_c00462{bottom:1108.934400px;}
.y3_c00462{bottom:1139.984400px;}
.y25_c00462{bottom:1173.915120px;}
.y2_c00462{bottom:1194.074400px;}
.h2_c00462{height:50.400000px;}
.h3_c00462{height:54.331699px;}
.h4_c00462{height:76.824000px;}
.h0_c00462{height:1262.835000px;}
.h1_c00462{height:1263.000000px;}
.w2_c00462{width:0.000000px;}
.w3_c00462{width:0.066000px;}
.w0_c00462{width:892.914000px;}
.w1_c00462{width:893.250000px;}
.x1_c00462{left:-838.913400px;}
.x2_c00462{left:-765.293400px;}
.x3_c00462{left:-733.343400px;}
.x0_c00462{left:0.000000px;}
.x5_c00462{left:127.620000px;}
.x6_c00462{left:159.570000px;}
.x4_c00462{left:804.366150px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls8_c00462{letter-spacing:-0.512000pt;}
.ls7_c00462{letter-spacing:-0.128000pt;}
.ls9_c00462{letter-spacing:-0.064000pt;}
.ls6_c00462{letter-spacing:0.000000pt;}
.ls0_c00462{letter-spacing:0.064000pt;}
.ls3_c00462{letter-spacing:0.128000pt;}
.ls2_c00462{letter-spacing:16.128000pt;}
.ls5_c00462{letter-spacing:19.648000pt;}
.ls4_c00462{letter-spacing:19.968000pt;}
.ls1_c00462{letter-spacing:24.768000pt;}
.ws5_c00462{word-spacing:-16.128000pt;}
.ws2_c00462{word-spacing:-16.064000pt;}
.ws4_c00462{word-spacing:-15.872000pt;}
.ws6_c00462{word-spacing:-15.488000pt;}
.ws11_c00462{word-spacing:-0.384000pt;}
.ws1f_c00462{word-spacing:-0.128000pt;}
.ws9_c00462{word-spacing:-0.117120pt;}
.wsa_c00462{word-spacing:-0.064000pt;}
.ws8_c00462{word-spacing:0.000000pt;}
.ws3_c00462{word-spacing:0.128000pt;}
.ws19_c00462{word-spacing:0.175680pt;}
.ws22_c00462{word-spacing:0.256000pt;}
.ws0_c00462{word-spacing:0.448000pt;}
.ws18_c00462{word-spacing:0.512000pt;}
.ws13_c00462{word-spacing:0.896000pt;}
.ws26_c00462{word-spacing:1.216000pt;}
.wsb_c00462{word-spacing:1.280000pt;}
.ws7_c00462{word-spacing:1.472000pt;}
.wse_c00462{word-spacing:1.536000pt;}
.ws12_c00462{word-spacing:2.176000pt;}
.ws17_c00462{word-spacing:2.816000pt;}
.ws25_c00462{word-spacing:2.880000pt;}
.ws15_c00462{word-spacing:3.200000pt;}
.ws1a_c00462{word-spacing:3.456000pt;}
.ws1e_c00462{word-spacing:3.520000pt;}
.ws21_c00462{word-spacing:3.776000pt;}
.ws29_c00462{word-spacing:5.376000pt;}
.ws1d_c00462{word-spacing:6.080000pt;}
.ws1c_c00462{word-spacing:6.336000pt;}
.ws1b_c00462{word-spacing:6.400000pt;}
.ws24_c00462{word-spacing:6.656000pt;}
.wsc_c00462{word-spacing:7.296000pt;}
.wsd_c00462{word-spacing:7.360000pt;}
.ws1_c00462{word-spacing:7.488000pt;}
.ws20_c00462{word-spacing:8.256000pt;}
.wsf_c00462{word-spacing:8.576000pt;}
.ws10_c00462{word-spacing:8.640000pt;}
.ws14_c00462{word-spacing:10.176000pt;}
.ws28_c00462{word-spacing:10.240000pt;}
.ws2b_c00462{word-spacing:13.952000pt;}
.ws2a_c00462{word-spacing:14.016000pt;}
.ws27_c00462{word-spacing:14.080000pt;}
.ws16_c00462{word-spacing:21.376000pt;}
.ws23_c00462{word-spacing:22.016000pt;}
._0_c00462{margin-left:-1.024000pt;}
._1_c00462{width:0.947200pt;}
._2_c00462{width:32.128000pt;}
.fs1_c00462{font-size:58.560000pt;}
.fs0_c00462{font-size:64.000000pt;}
.y0_c00462{bottom:0.000000pt;}
.y1_c00462{bottom:54.887600pt;}
.y24_c00462{bottom:102.599467pt;}
.y23_c00462{bottom:130.199467pt;}
.y22_c00462{bottom:157.799467pt;}
.y21_c00462{bottom:185.399467pt;}
.y20_c00462{bottom:212.999467pt;}
.y1f_c00462{bottom:240.599467pt;}
.y1e_c00462{bottom:268.199467pt;}
.y1d_c00462{bottom:295.799467pt;}
.y1c_c00462{bottom:323.399467pt;}
.y1b_c00462{bottom:350.999467pt;}
.y1a_c00462{bottom:378.599467pt;}
.y19_c00462{bottom:406.199467pt;}
.y18_c00462{bottom:433.799467pt;}
.y17_c00462{bottom:461.399467pt;}
.y16_c00462{bottom:488.999467pt;}
.y15_c00462{bottom:516.599467pt;}
.y14_c00462{bottom:544.199467pt;}
.y13_c00462{bottom:571.799467pt;}
.y12_c00462{bottom:599.399467pt;}
.y11_c00462{bottom:626.999467pt;}
.y10_c00462{bottom:654.599467pt;}
.yf_c00462{bottom:682.199467pt;}
.ye_c00462{bottom:709.719467pt;}
.yd_c00462{bottom:737.319467pt;}
.yc_c00462{bottom:764.919467pt;}
.yb_c00462{bottom:792.519467pt;}
.ya_c00462{bottom:820.119467pt;}
.y9_c00462{bottom:847.719467pt;}
.y8_c00462{bottom:875.319467pt;}
.y7_c00462{bottom:902.919467pt;}
.y6_c00462{bottom:930.519467pt;}
.y5_c00462{bottom:958.119467pt;}
.y4_c00462{bottom:985.719467pt;}
.y3_c00462{bottom:1013.319467pt;}
.y25_c00462{bottom:1043.480107pt;}
.y2_c00462{bottom:1061.399467pt;}
.h2_c00462{height:44.800000pt;}
.h3_c00462{height:48.294844pt;}
.h4_c00462{height:68.288000pt;}
.h0_c00462{height:1122.520000pt;}
.h1_c00462{height:1122.666667pt;}
.w2_c00462{width:0.000000pt;}
.w3_c00462{width:0.058667pt;}
.w0_c00462{width:793.701333pt;}
.w1_c00462{width:794.000000pt;}
.x1_c00462{left:-745.700800pt;}
.x2_c00462{left:-680.260800pt;}
.x3_c00462{left:-651.860800pt;}
.x0_c00462{left:0.000000pt;}
.x5_c00462{left:113.440000pt;}
.x6_c00462{left:141.840000pt;}
.x4_c00462{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00463;src:url('chunks/assets/font_8a9316422162c354e950bfb0.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00463;src:url('chunks/assets/font_bcb8f0c384c534654198cd84.woff2')format("woff");}.ff3_c00463{font-family:ff3_c00463;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00463;src:url('chunks/assets/font_c8771c1adad5baaaf88e5b41.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls5_c00463{letter-spacing:-0.216000px;}
.ls4_c00463{letter-spacing:-0.144000px;}
.ls3_c00463{letter-spacing:0.000000px;}
.ls0_c00463{letter-spacing:0.072000px;}
.ls1_c00463{letter-spacing:0.144000px;}
.ls2_c00463{letter-spacing:18.504000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00463{word-spacing:-18.144000px;}
.ws5_c00463{word-spacing:-18.072000px;}
.ws1_c00463{word-spacing:-18.000000px;}
.ws4_c00463{word-spacing:-17.856000px;}
.ws6_c00463{word-spacing:-17.784000px;}
.ws13_c00463{word-spacing:-0.648000px;}
.ws8_c00463{word-spacing:-0.131760px;}
.wsc_c00463{word-spacing:-0.072000px;}
.ws7_c00463{word-spacing:0.000000px;}
.ws3_c00463{word-spacing:0.144000px;}
.ws11_c00463{word-spacing:0.288000px;}
.ws14_c00463{word-spacing:1.440000px;}
.ws10_c00463{word-spacing:4.248000px;}
.ws18_c00463{word-spacing:4.320000px;}
.ws17_c00463{word-spacing:4.608000px;}
.ws9_c00463{word-spacing:6.480000px;}
.wse_c00463{word-spacing:7.848000px;}
.wsf_c00463{word-spacing:7.920000px;}
.wsd_c00463{word-spacing:12.240000px;}
.ws0_c00463{word-spacing:12.384000px;}
.ws16_c00463{word-spacing:13.248000px;}
.wsb_c00463{word-spacing:16.128000px;}
.wsa_c00463{word-spacing:16.200000px;}
.ws12_c00463{word-spacing:21.240000px;}
.ws15_c00463{word-spacing:25.128000px;}
._0_c00463{margin-left:-1.080000px;}
._1_c00463{width:1.008000px;}
.fc1_c00463{color:rgb(0,0,0);}
.fc0_c00463{color:rgb(35,31,32);}
.fs1_c00463{font-size:65.880000px;}
.fs0_c00463{font-size:72.000000px;}
.y0_c00463{bottom:0.000000px;}
.y1_c00463{bottom:61.748550px;}
.y24_c00463{bottom:115.424400px;}
.y23_c00463{bottom:146.474400px;}
.y22_c00463{bottom:177.524400px;}
.y21_c00463{bottom:208.574400px;}
.y20_c00463{bottom:239.624400px;}
.y1f_c00463{bottom:270.674400px;}
.y1e_c00463{bottom:301.724400px;}
.y1d_c00463{bottom:332.774400px;}
.y1c_c00463{bottom:363.824400px;}
.y1b_c00463{bottom:394.874400px;}
.y1a_c00463{bottom:425.924400px;}
.y19_c00463{bottom:456.974400px;}
.y18_c00463{bottom:488.024400px;}
.y17_c00463{bottom:519.074400px;}
.y16_c00463{bottom:550.124400px;}
.y15_c00463{bottom:581.174400px;}
.y14_c00463{bottom:612.224400px;}
.y13_c00463{bottom:643.274400px;}
.y12_c00463{bottom:674.324400px;}
.y11_c00463{bottom:705.374400px;}
.y10_c00463{bottom:736.424400px;}
.yf_c00463{bottom:767.474400px;}
.ye_c00463{bottom:798.434400px;}
.yd_c00463{bottom:829.394400px;}
.yc_c00463{bottom:860.534400px;}
.yb_c00463{bottom:891.584400px;}
.ya_c00463{bottom:922.634400px;}
.y9_c00463{bottom:953.684400px;}
.y8_c00463{bottom:984.734400px;}
.y7_c00463{bottom:1015.784400px;}
.y6_c00463{bottom:1046.834400px;}
.y5_c00463{bottom:1077.884400px;}
.y4_c00463{bottom:1108.934400px;}
.y3_c00463{bottom:1139.984400px;}
.y2_c00463{bottom:1194.074400px;}
.h2_c00463{height:50.400000px;}
.h3_c00463{height:54.331699px;}
.h4_c00463{height:76.824000px;}
.h5_c00463{height:78.048000px;}
.h0_c00463{height:1262.835000px;}
.h1_c00463{height:1263.000000px;}
.w0_c00463{width:892.914000px;}
.w1_c00463{width:893.250000px;}
.x0_c00463{left:0.000000px;}
.x1_c00463{left:54.000000px;}
.x2_c00463{left:127.620000px;}
.x3_c00463{left:159.570000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls5_c00463{letter-spacing:-0.192000pt;}
.ls4_c00463{letter-spacing:-0.128000pt;}
.ls3_c00463{letter-spacing:0.000000pt;}
.ls0_c00463{letter-spacing:0.064000pt;}
.ls1_c00463{letter-spacing:0.128000pt;}
.ls2_c00463{letter-spacing:16.448000pt;}
.ws2_c00463{word-spacing:-16.128000pt;}
.ws5_c00463{word-spacing:-16.064000pt;}
.ws1_c00463{word-spacing:-16.000000pt;}
.ws4_c00463{word-spacing:-15.872000pt;}
.ws6_c00463{word-spacing:-15.808000pt;}
.ws13_c00463{word-spacing:-0.576000pt;}
.ws8_c00463{word-spacing:-0.117120pt;}
.wsc_c00463{word-spacing:-0.064000pt;}
.ws7_c00463{word-spacing:0.000000pt;}
.ws3_c00463{word-spacing:0.128000pt;}
.ws11_c00463{word-spacing:0.256000pt;}
.ws14_c00463{word-spacing:1.280000pt;}
.ws10_c00463{word-spacing:3.776000pt;}
.ws18_c00463{word-spacing:3.840000pt;}
.ws17_c00463{word-spacing:4.096000pt;}
.ws9_c00463{word-spacing:5.760000pt;}
.wse_c00463{word-spacing:6.976000pt;}
.wsf_c00463{word-spacing:7.040000pt;}
.wsd_c00463{word-spacing:10.880000pt;}
.ws0_c00463{word-spacing:11.008000pt;}
.ws16_c00463{word-spacing:11.776000pt;}
.wsb_c00463{word-spacing:14.336000pt;}
.wsa_c00463{word-spacing:14.400000pt;}
.ws12_c00463{word-spacing:18.880000pt;}
.ws15_c00463{word-spacing:22.336000pt;}
._0_c00463{margin-left:-0.960000pt;}
._1_c00463{width:0.896000pt;}
.fs1_c00463{font-size:58.560000pt;}
.fs0_c00463{font-size:64.000000pt;}
.y0_c00463{bottom:0.000000pt;}
.y1_c00463{bottom:54.887600pt;}
.y24_c00463{bottom:102.599467pt;}
.y23_c00463{bottom:130.199467pt;}
.y22_c00463{bottom:157.799467pt;}
.y21_c00463{bottom:185.399467pt;}
.y20_c00463{bottom:212.999467pt;}
.y1f_c00463{bottom:240.599467pt;}
.y1e_c00463{bottom:268.199467pt;}
.y1d_c00463{bottom:295.799467pt;}
.y1c_c00463{bottom:323.399467pt;}
.y1b_c00463{bottom:350.999467pt;}
.y1a_c00463{bottom:378.599467pt;}
.y19_c00463{bottom:406.199467pt;}
.y18_c00463{bottom:433.799467pt;}
.y17_c00463{bottom:461.399467pt;}
.y16_c00463{bottom:488.999467pt;}
.y15_c00463{bottom:516.599467pt;}
.y14_c00463{bottom:544.199467pt;}
.y13_c00463{bottom:571.799467pt;}
.y12_c00463{bottom:599.399467pt;}
.y11_c00463{bottom:626.999467pt;}
.y10_c00463{bottom:654.599467pt;}
.yf_c00463{bottom:682.199467pt;}
.ye_c00463{bottom:709.719467pt;}
.yd_c00463{bottom:737.239467pt;}
.yc_c00463{bottom:764.919467pt;}
.yb_c00463{bottom:792.519467pt;}
.ya_c00463{bottom:820.119467pt;}
.y9_c00463{bottom:847.719467pt;}
.y8_c00463{bottom:875.319467pt;}
.y7_c00463{bottom:902.919467pt;}
.y6_c00463{bottom:930.519467pt;}
.y5_c00463{bottom:958.119467pt;}
.y4_c00463{bottom:985.719467pt;}
.y3_c00463{bottom:1013.319467pt;}
.y2_c00463{bottom:1061.399467pt;}
.h2_c00463{height:44.800000pt;}
.h3_c00463{height:48.294844pt;}
.h4_c00463{height:68.288000pt;}
.h5_c00463{height:69.376000pt;}
.h0_c00463{height:1122.520000pt;}
.h1_c00463{height:1122.666667pt;}
.w0_c00463{width:793.701333pt;}
.w1_c00463{width:794.000000pt;}
.x0_c00463{left:0.000000pt;}
.x1_c00463{left:48.000000pt;}
.x2_c00463{left:113.440000pt;}
.x3_c00463{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00464;src:url('chunks/assets/font_80a2aa02d9f6f8d2d9ddcf53.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00464;src:url('chunks/assets/font_becc9dcd1a05e6011f85e17b.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00464;src:url('chunks/assets/font_fb970e01eb06bac70dd217a9.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;line-height:1.592000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5_c00464{font-family:ff5_c00464;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00464;src:url('chunks/assets/font_46be12ced9362611a08168c6.woff2')format("woff");}.ff6_c00464{font-family:ff6_c00464;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00464;src:url('chunks/assets/font_224e793c7390d142e326daed.woff2')format("woff");}.ff7_c00464{font-family:ff7_c00464;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00464;src:url('chunks/assets/font_a84f4971737d9da970f962d8.woff2')format("woff");}.ff8_c00464{font-family:ff8_c00464;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00464{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls7_c00464{letter-spacing:-0.576000px;}
.ls6_c00464{letter-spacing:-0.216000px;}
.ls5_c00464{letter-spacing:-0.144000px;}
.ls4_c00464{letter-spacing:0.000000px;}
.ls0_c00464{letter-spacing:0.072000px;}
.ls1_c00464{letter-spacing:0.144000px;}
.ls3_c00464{letter-spacing:18.144000px;}
.ls2_c00464{letter-spacing:18.504000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00464{word-spacing:-18.144000px;}
.ws5_c00464{word-spacing:-18.072000px;}
.ws1_c00464{word-spacing:-18.000000px;}
.ws4_c00464{word-spacing:-17.856000px;}
.ws6_c00464{word-spacing:-17.784000px;}
.wsb_c00464{word-spacing:-17.424000px;}
.ws18_c00464{word-spacing:-0.648000px;}
.ws29_c00464{word-spacing:-0.432000px;}
.wsd_c00464{word-spacing:-0.131760px;}
.ws11_c00464{word-spacing:-0.072000px;}
.wsc_c00464{word-spacing:0.000000px;}
.ws3_c00464{word-spacing:0.144000px;}
.ws1e_c00464{word-spacing:0.197640px;}
.ws16_c00464{word-spacing:0.288000px;}
.ws19_c00464{word-spacing:1.440000px;}
.wsa_c00464{word-spacing:1.944000px;}
.ws2f_c00464{word-spacing:2.088000px;}
.ws2b_c00464{word-spacing:2.448000px;}
.ws2d_c00464{word-spacing:2.520000px;}
.ws23_c00464{word-spacing:3.240000px;}
.ws15_c00464{word-spacing:4.248000px;}
.ws1d_c00464{word-spacing:4.320000px;}
.ws1c_c00464{word-spacing:4.608000px;}
.wse_c00464{word-spacing:6.480000px;}
.ws1f_c00464{word-spacing:7.128000px;}
.ws8_c00464{word-spacing:7.704000px;}
.ws13_c00464{word-spacing:7.848000px;}
.ws14_c00464{word-spacing:7.920000px;}
.ws2a_c00464{word-spacing:8.208000px;}
.ws25_c00464{word-spacing:10.368000px;}
.ws28_c00464{word-spacing:11.808000px;}
.ws12_c00464{word-spacing:12.240000px;}
.ws0_c00464{word-spacing:12.384000px;}
.ws24_c00464{word-spacing:12.528000px;}
.ws27_c00464{word-spacing:12.600000px;}
.ws1b_c00464{word-spacing:13.248000px;}
.ws2c_c00464{word-spacing:14.688000px;}
.ws22_c00464{word-spacing:14.760000px;}
.ws7_c00464{word-spacing:14.904000px;}
.ws10_c00464{word-spacing:16.128000px;}
.wsf_c00464{word-spacing:16.200000px;}
.ws20_c00464{word-spacing:16.488000px;}
.ws21_c00464{word-spacing:16.560000px;}
.ws26_c00464{word-spacing:17.928000px;}
.ws2e_c00464{word-spacing:18.000000px;}
.ws9_c00464{word-spacing:18.144000px;}
.ws17_c00464{word-spacing:21.240000px;}
.ws1a_c00464{word-spacing:25.128000px;}
._0_c00464{margin-left:-1.080000px;}
._1_c00464{width:1.008000px;}
.fc2_c00464{color:transparent;}
.fc1_c00464{color:rgb(0,0,0);}
.fc0_c00464{color:rgb(35,31,32);}
.fs1_c00464{font-size:65.880000px;}
.fs0_c00464{font-size:72.000000px;}
.y0_c00464{bottom:0.000000px;}
.y1_c00464{bottom:61.748550px;}
.y24_c00464{bottom:115.424400px;}
.y23_c00464{bottom:146.474400px;}
.y22_c00464{bottom:177.524400px;}
.y21_c00464{bottom:208.574400px;}
.y20_c00464{bottom:239.624400px;}
.y1f_c00464{bottom:270.674400px;}
.y1e_c00464{bottom:301.724400px;}
.y1d_c00464{bottom:332.774400px;}
.y1c_c00464{bottom:363.824400px;}
.y1b_c00464{bottom:394.874400px;}
.y1a_c00464{bottom:425.924400px;}
.y19_c00464{bottom:456.974400px;}
.y18_c00464{bottom:488.024400px;}
.y17_c00464{bottom:519.074400px;}
.y16_c00464{bottom:550.124400px;}
.y15_c00464{bottom:581.174400px;}
.y14_c00464{bottom:612.224400px;}
.y13_c00464{bottom:643.274400px;}
.y12_c00464{bottom:674.324400px;}
.y11_c00464{bottom:705.374400px;}
.y10_c00464{bottom:736.424400px;}
.yf_c00464{bottom:767.474400px;}
.ye_c00464{bottom:798.434400px;}
.yd_c00464{bottom:829.394400px;}
.y26_c00464{bottom:829.484400px;}
.yc_c00464{bottom:860.534400px;}
.yb_c00464{bottom:891.584400px;}
.ya_c00464{bottom:922.634400px;}
.y9_c00464{bottom:953.684400px;}
.y8_c00464{bottom:984.734400px;}
.y7_c00464{bottom:1015.784400px;}
.y6_c00464{bottom:1046.834400px;}
.y5_c00464{bottom:1077.884400px;}
.y4_c00464{bottom:1108.934400px;}
.y3_c00464{bottom:1139.984400px;}
.y25_c00464{bottom:1173.915120px;}
.y2_c00464{bottom:1194.074400px;}
.h2_c00464{height:50.400000px;}
.h3_c00464{height:54.331699px;}
.h4_c00464{height:76.824000px;}
.h5_c00464{height:78.048000px;}
.h0_c00464{height:1262.835000px;}
.h1_c00464{height:1263.000000px;}
.w2_c00464{width:0.000000px;}
.w3_c00464{width:0.066000px;}
.w0_c00464{width:892.914000px;}
.w1_c00464{width:893.250000px;}
.x1_c00464{left:-838.913400px;}
.x2_c00464{left:-765.293400px;}
.x3_c00464{left:-733.343400px;}
.x0_c00464{left:0.000000px;}
.x5_c00464{left:127.620000px;}
.x6_c00464{left:159.570000px;}
.x4_c00464{left:804.366150px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls7_c00464{letter-spacing:-0.512000pt;}
.ls6_c00464{letter-spacing:-0.192000pt;}
.ls5_c00464{letter-spacing:-0.128000pt;}
.ls4_c00464{letter-spacing:0.000000pt;}
.ls0_c00464{letter-spacing:0.064000pt;}
.ls1_c00464{letter-spacing:0.128000pt;}
.ls3_c00464{letter-spacing:16.128000pt;}
.ls2_c00464{letter-spacing:16.448000pt;}
.ws2_c00464{word-spacing:-16.128000pt;}
.ws5_c00464{word-spacing:-16.064000pt;}
.ws1_c00464{word-spacing:-16.000000pt;}
.ws4_c00464{word-spacing:-15.872000pt;}
.ws6_c00464{word-spacing:-15.808000pt;}
.wsb_c00464{word-spacing:-15.488000pt;}
.ws18_c00464{word-spacing:-0.576000pt;}
.ws29_c00464{word-spacing:-0.384000pt;}
.wsd_c00464{word-spacing:-0.117120pt;}
.ws11_c00464{word-spacing:-0.064000pt;}
.wsc_c00464{word-spacing:0.000000pt;}
.ws3_c00464{word-spacing:0.128000pt;}
.ws1e_c00464{word-spacing:0.175680pt;}
.ws16_c00464{word-spacing:0.256000pt;}
.ws19_c00464{word-spacing:1.280000pt;}
.wsa_c00464{word-spacing:1.728000pt;}
.ws2f_c00464{word-spacing:1.856000pt;}
.ws2b_c00464{word-spacing:2.176000pt;}
.ws2d_c00464{word-spacing:2.240000pt;}
.ws23_c00464{word-spacing:2.880000pt;}
.ws15_c00464{word-spacing:3.776000pt;}
.ws1d_c00464{word-spacing:3.840000pt;}
.ws1c_c00464{word-spacing:4.096000pt;}
.wse_c00464{word-spacing:5.760000pt;}
.ws1f_c00464{word-spacing:6.336000pt;}
.ws8_c00464{word-spacing:6.848000pt;}
.ws13_c00464{word-spacing:6.976000pt;}
.ws14_c00464{word-spacing:7.040000pt;}
.ws2a_c00464{word-spacing:7.296000pt;}
.ws25_c00464{word-spacing:9.216000pt;}
.ws28_c00464{word-spacing:10.496000pt;}
.ws12_c00464{word-spacing:10.880000pt;}
.ws0_c00464{word-spacing:11.008000pt;}
.ws24_c00464{word-spacing:11.136000pt;}
.ws27_c00464{word-spacing:11.200000pt;}
.ws1b_c00464{word-spacing:11.776000pt;}
.ws2c_c00464{word-spacing:13.056000pt;}
.ws22_c00464{word-spacing:13.120000pt;}
.ws7_c00464{word-spacing:13.248000pt;}
.ws10_c00464{word-spacing:14.336000pt;}
.wsf_c00464{word-spacing:14.400000pt;}
.ws20_c00464{word-spacing:14.656000pt;}
.ws21_c00464{word-spacing:14.720000pt;}
.ws26_c00464{word-spacing:15.936000pt;}
.ws2e_c00464{word-spacing:16.000000pt;}
.ws9_c00464{word-spacing:16.128000pt;}
.ws17_c00464{word-spacing:18.880000pt;}
.ws1a_c00464{word-spacing:22.336000pt;}
._0_c00464{margin-left:-0.960000pt;}
._1_c00464{width:0.896000pt;}
.fs1_c00464{font-size:58.560000pt;}
.fs0_c00464{font-size:64.000000pt;}
.y0_c00464{bottom:0.000000pt;}
.y1_c00464{bottom:54.887600pt;}
.y24_c00464{bottom:102.599467pt;}
.y23_c00464{bottom:130.199467pt;}
.y22_c00464{bottom:157.799467pt;}
.y21_c00464{bottom:185.399467pt;}
.y20_c00464{bottom:212.999467pt;}
.y1f_c00464{bottom:240.599467pt;}
.y1e_c00464{bottom:268.199467pt;}
.y1d_c00464{bottom:295.799467pt;}
.y1c_c00464{bottom:323.399467pt;}
.y1b_c00464{bottom:350.999467pt;}
.y1a_c00464{bottom:378.599467pt;}
.y19_c00464{bottom:406.199467pt;}
.y18_c00464{bottom:433.799467pt;}
.y17_c00464{bottom:461.399467pt;}
.y16_c00464{bottom:488.999467pt;}
.y15_c00464{bottom:516.599467pt;}
.y14_c00464{bottom:544.199467pt;}
.y13_c00464{bottom:571.799467pt;}
.y12_c00464{bottom:599.399467pt;}
.y11_c00464{bottom:626.999467pt;}
.y10_c00464{bottom:654.599467pt;}
.yf_c00464{bottom:682.199467pt;}
.ye_c00464{bottom:709.719467pt;}
.yd_c00464{bottom:737.239467pt;}
.y26_c00464{bottom:737.319467pt;}
.yc_c00464{bottom:764.919467pt;}
.yb_c00464{bottom:792.519467pt;}
.ya_c00464{bottom:820.119467pt;}
.y9_c00464{bottom:847.719467pt;}
.y8_c00464{bottom:875.319467pt;}
.y7_c00464{bottom:902.919467pt;}
.y6_c00464{bottom:930.519467pt;}
.y5_c00464{bottom:958.119467pt;}
.y4_c00464{bottom:985.719467pt;}
.y3_c00464{bottom:1013.319467pt;}
.y25_c00464{bottom:1043.480107pt;}
.y2_c00464{bottom:1061.399467pt;}
.h2_c00464{height:44.800000pt;}
.h3_c00464{height:48.294844pt;}
.h4_c00464{height:68.288000pt;}
.h5_c00464{height:69.376000pt;}
.h0_c00464{height:1122.520000pt;}
.h1_c00464{height:1122.666667pt;}
.w2_c00464{width:0.000000pt;}
.w3_c00464{width:0.058667pt;}
.w0_c00464{width:793.701333pt;}
.w1_c00464{width:794.000000pt;}
.x1_c00464{left:-745.700800pt;}
.x2_c00464{left:-680.260800pt;}
.x3_c00464{left:-651.860800pt;}
.x0_c00464{left:0.000000pt;}
.x5_c00464{left:113.440000pt;}
.x6_c00464{left:141.840000pt;}
.x4_c00464{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00465;src:url('chunks/assets/font_2887bc92adf35c3bdb7a6f11.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00465;src:url('chunks/assets/font_1374c15954f92868b3aefabe.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00465{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls4_c00465{letter-spacing:-0.576000px;}
.ls3_c00465{letter-spacing:-0.144000px;}
.ls2_c00465{letter-spacing:0.000000px;}
.ls0_c00465{letter-spacing:0.072000px;}
.ls1_c00465{letter-spacing:18.144000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00465{word-spacing:-17.856000px;}
.wsd_c00465{word-spacing:-0.432000px;}
.ws3_c00465{word-spacing:-0.131760px;}
.ws8_c00465{word-spacing:-0.072000px;}
.ws2_c00465{word-spacing:0.000000px;}
.ws1_c00465{word-spacing:0.144000px;}
.ws13_c00465{word-spacing:0.576000px;}
.ws15_c00465{word-spacing:1.008000px;}
.ws7_c00465{word-spacing:1.728000px;}
.ws10_c00465{word-spacing:2.088000px;}
.ws12_c00465{word-spacing:2.160000px;}
.ws5_c00465{word-spacing:3.240000px;}
.ws6_c00465{word-spacing:3.960000px;}
.ws4_c00465{word-spacing:4.248000px;}
.ws17_c00465{word-spacing:6.696000px;}
.ws11_c00465{word-spacing:6.768000px;}
.ws9_c00465{word-spacing:10.080000px;}
.wsf_c00465{word-spacing:10.368000px;}
.wse_c00465{word-spacing:10.440000px;}
.wsb_c00465{word-spacing:11.448000px;}
.wsa_c00465{word-spacing:11.520000px;}
.ws16_c00465{word-spacing:12.240000px;}
.wsc_c00465{word-spacing:13.680000px;}
.ws14_c00465{word-spacing:17.496000px;}
._0_c00465{margin-left:-1.022400px;}
._1_c00465{width:1.015200px;}
.fc1_c00465{color:rgb(0,0,0);}
.fc0_c00465{color:rgb(35,31,32);}
.fs1_c00465{font-size:65.880000px;}
.fs0_c00465{font-size:72.000000px;}
.y0_c00465{bottom:0.000000px;}
.y1_c00465{bottom:61.748550px;}
.y24_c00465{bottom:115.424400px;}
.y23_c00465{bottom:146.474400px;}
.y22_c00465{bottom:177.524400px;}
.y21_c00465{bottom:208.574400px;}
.y20_c00465{bottom:239.624400px;}
.y1f_c00465{bottom:270.674400px;}
.y1e_c00465{bottom:301.724400px;}
.y1d_c00465{bottom:332.774400px;}
.y1c_c00465{bottom:363.824400px;}
.y1b_c00465{bottom:394.874400px;}
.y1a_c00465{bottom:425.924400px;}
.y19_c00465{bottom:456.974400px;}
.y18_c00465{bottom:488.024400px;}
.y17_c00465{bottom:519.074400px;}
.y16_c00465{bottom:550.124400px;}
.y15_c00465{bottom:581.174400px;}
.y14_c00465{bottom:612.224400px;}
.y13_c00465{bottom:643.274400px;}
.y12_c00465{bottom:674.324400px;}
.y11_c00465{bottom:705.374400px;}
.y10_c00465{bottom:736.424400px;}
.yf_c00465{bottom:767.474400px;}
.ye_c00465{bottom:798.434400px;}
.yd_c00465{bottom:829.484400px;}
.yc_c00465{bottom:860.534400px;}
.yb_c00465{bottom:891.584400px;}
.ya_c00465{bottom:922.634400px;}
.y9_c00465{bottom:953.684400px;}
.y8_c00465{bottom:984.734400px;}
.y7_c00465{bottom:1015.784400px;}
.y6_c00465{bottom:1046.834400px;}
.y5_c00465{bottom:1077.884400px;}
.y4_c00465{bottom:1108.934400px;}
.y3_c00465{bottom:1139.984400px;}
.y2_c00465{bottom:1194.074400px;}
.h2_c00465{height:50.400000px;}
.h3_c00465{height:54.331699px;}
.h4_c00465{height:76.824000px;}
.h0_c00465{height:1262.835000px;}
.h1_c00465{height:1263.000000px;}
.w0_c00465{width:892.914000px;}
.w1_c00465{width:893.250000px;}
.x0_c00465{left:0.000000px;}
.x1_c00465{left:54.000000px;}
.x2_c00465{left:127.620000px;}
.x3_c00465{left:159.570000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls4_c00465{letter-spacing:-0.512000pt;}
.ls3_c00465{letter-spacing:-0.128000pt;}
.ls2_c00465{letter-spacing:0.000000pt;}
.ls0_c00465{letter-spacing:0.064000pt;}
.ls1_c00465{letter-spacing:16.128000pt;}
.ws0_c00465{word-spacing:-15.872000pt;}
.wsd_c00465{word-spacing:-0.384000pt;}
.ws3_c00465{word-spacing:-0.117120pt;}
.ws8_c00465{word-spacing:-0.064000pt;}
.ws2_c00465{word-spacing:0.000000pt;}
.ws1_c00465{word-spacing:0.128000pt;}
.ws13_c00465{word-spacing:0.512000pt;}
.ws15_c00465{word-spacing:0.896000pt;}
.ws7_c00465{word-spacing:1.536000pt;}
.ws10_c00465{word-spacing:1.856000pt;}
.ws12_c00465{word-spacing:1.920000pt;}
.ws5_c00465{word-spacing:2.880000pt;}
.ws6_c00465{word-spacing:3.520000pt;}
.ws4_c00465{word-spacing:3.776000pt;}
.ws17_c00465{word-spacing:5.952000pt;}
.ws11_c00465{word-spacing:6.016000pt;}
.ws9_c00465{word-spacing:8.960000pt;}
.wsf_c00465{word-spacing:9.216000pt;}
.wse_c00465{word-spacing:9.280000pt;}
.wsb_c00465{word-spacing:10.176000pt;}
.wsa_c00465{word-spacing:10.240000pt;}
.ws16_c00465{word-spacing:10.880000pt;}
.wsc_c00465{word-spacing:12.160000pt;}
.ws14_c00465{word-spacing:15.552000pt;}
._0_c00465{margin-left:-0.908800pt;}
._1_c00465{width:0.902400pt;}
.fs1_c00465{font-size:58.560000pt;}
.fs0_c00465{font-size:64.000000pt;}
.y0_c00465{bottom:0.000000pt;}
.y1_c00465{bottom:54.887600pt;}
.y24_c00465{bottom:102.599467pt;}
.y23_c00465{bottom:130.199467pt;}
.y22_c00465{bottom:157.799467pt;}
.y21_c00465{bottom:185.399467pt;}
.y20_c00465{bottom:212.999467pt;}
.y1f_c00465{bottom:240.599467pt;}
.y1e_c00465{bottom:268.199467pt;}
.y1d_c00465{bottom:295.799467pt;}
.y1c_c00465{bottom:323.399467pt;}
.y1b_c00465{bottom:350.999467pt;}
.y1a_c00465{bottom:378.599467pt;}
.y19_c00465{bottom:406.199467pt;}
.y18_c00465{bottom:433.799467pt;}
.y17_c00465{bottom:461.399467pt;}
.y16_c00465{bottom:488.999467pt;}
.y15_c00465{bottom:516.599467pt;}
.y14_c00465{bottom:544.199467pt;}
.y13_c00465{bottom:571.799467pt;}
.y12_c00465{bottom:599.399467pt;}
.y11_c00465{bottom:626.999467pt;}
.y10_c00465{bottom:654.599467pt;}
.yf_c00465{bottom:682.199467pt;}
.ye_c00465{bottom:709.719467pt;}
.yd_c00465{bottom:737.319467pt;}
.yc_c00465{bottom:764.919467pt;}
.yb_c00465{bottom:792.519467pt;}
.ya_c00465{bottom:820.119467pt;}
.y9_c00465{bottom:847.719467pt;}
.y8_c00465{bottom:875.319467pt;}
.y7_c00465{bottom:902.919467pt;}
.y6_c00465{bottom:930.519467pt;}
.y5_c00465{bottom:958.119467pt;}
.y4_c00465{bottom:985.719467pt;}
.y3_c00465{bottom:1013.319467pt;}
.y2_c00465{bottom:1061.399467pt;}
.h2_c00465{height:44.800000pt;}
.h3_c00465{height:48.294844pt;}
.h4_c00465{height:68.288000pt;}
.h0_c00465{height:1122.520000pt;}
.h1_c00465{height:1122.666667pt;}
.w0_c00465{width:793.701333pt;}
.w1_c00465{width:794.000000pt;}
.x0_c00465{left:0.000000pt;}
.x1_c00465{left:48.000000pt;}
.x2_c00465{left:113.440000pt;}
.x3_c00465{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00466;src:url('chunks/assets/font_b61f1ce913a9351a3a83b334.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00466;src:url('chunks/assets/font_da5d1d30b28fe381ea63ed48.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00466;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00466{font-family:ff4_c00466;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00466;src:url('chunks/assets/font_7d07371d9b3e03d09b97fbce.woff2')format("woff");}.ff5_c00466{font-family:ff5_c00466;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00466;src:url('chunks/assets/font_f0c9ebaabccf53c447acd663.woff2')format("woff");}.ff6_c00466{font-family:ff6_c00466;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00466{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.ls5_c00466{letter-spacing:-0.576000px;}
.ls6_c00466{letter-spacing:-0.216000px;}
.ls4_c00466{letter-spacing:-0.144000px;}
.ls3_c00466{letter-spacing:0.000000px;}
.ls0_c00466{letter-spacing:0.072000px;}
.ls2_c00466{letter-spacing:0.144000px;}
.ls1_c00466{letter-spacing:18.144000px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00466{word-spacing:-18.144000px;}
.ws3_c00466{word-spacing:-18.000000px;}
.ws0_c00466{word-spacing:-17.856000px;}
.ws4_c00466{word-spacing:-17.784000px;}
.ws10_c00466{word-spacing:-0.432000px;}
.ws6_c00466{word-spacing:-0.131760px;}
.wsb_c00466{word-spacing:-0.072000px;}
.ws5_c00466{word-spacing:0.000000px;}
.ws1_c00466{word-spacing:0.144000px;}
.ws1b_c00466{word-spacing:0.197640px;}
.ws16_c00466{word-spacing:0.576000px;}
.ws18_c00466{word-spacing:1.008000px;}
.wsa_c00466{word-spacing:1.728000px;}
.ws13_c00466{word-spacing:2.088000px;}
.ws15_c00466{word-spacing:2.160000px;}
.ws8_c00466{word-spacing:3.240000px;}
.ws9_c00466{word-spacing:3.960000px;}
.ws7_c00466{word-spacing:4.248000px;}
.ws1a_c00466{word-spacing:6.696000px;}
.ws14_c00466{word-spacing:6.768000px;}
.wsc_c00466{word-spacing:10.080000px;}
.ws12_c00466{word-spacing:10.368000px;}
.ws11_c00466{word-spacing:10.440000px;}
.ws1c_c00466{word-spacing:10.656000px;}
.wse_c00466{word-spacing:11.448000px;}
.wsd_c00466{word-spacing:11.520000px;}
.ws19_c00466{word-spacing:12.240000px;}
.wsf_c00466{word-spacing:13.680000px;}
.ws1d_c00466{word-spacing:16.848000px;}
.ws17_c00466{word-spacing:17.496000px;}
._0_c00466{margin-left:-1.015200px;}
._1_c00466{width:1.029600px;}
.fc2_c00466{color:transparent;}
.fc1_c00466{color:rgb(0,0,0);}
.fc0_c00466{color:rgb(35,31,32);}
.fs1_c00466{font-size:65.880000px;}
.fs0_c00466{font-size:72.000000px;}
.y0_c00466{bottom:0.000000px;}
.y1_c00466{bottom:61.748550px;}
.y24_c00466{bottom:115.424400px;}
.y23_c00466{bottom:146.474400px;}
.y22_c00466{bottom:177.524400px;}
.y21_c00466{bottom:208.574400px;}
.y20_c00466{bottom:239.624400px;}
.y1f_c00466{bottom:270.674400px;}
.y1e_c00466{bottom:301.724400px;}
.y1d_c00466{bottom:332.774400px;}
.y1c_c00466{bottom:363.824400px;}
.y1b_c00466{bottom:394.874400px;}
.y1a_c00466{bottom:425.924400px;}
.y19_c00466{bottom:456.974400px;}
.y18_c00466{bottom:488.024400px;}
.y17_c00466{bottom:519.074400px;}
.y16_c00466{bottom:550.124400px;}
.y15_c00466{bottom:581.174400px;}
.y14_c00466{bottom:612.224400px;}
.y13_c00466{bottom:643.274400px;}
.y12_c00466{bottom:674.324400px;}
.y11_c00466{bottom:705.374400px;}
.y10_c00466{bottom:736.424400px;}
.yf_c00466{bottom:767.474400px;}
.ye_c00466{bottom:798.434400px;}
.yd_c00466{bottom:829.484400px;}
.yc_c00466{bottom:860.534400px;}
.yb_c00466{bottom:891.584400px;}
.ya_c00466{bottom:922.634400px;}
.y9_c00466{bottom:953.684400px;}
.y8_c00466{bottom:984.734400px;}
.y7_c00466{bottom:1015.784400px;}
.y6_c00466{bottom:1046.834400px;}
.y5_c00466{bottom:1077.884400px;}
.y4_c00466{bottom:1108.934400px;}
.y3_c00466{bottom:1139.984400px;}
.y25_c00466{bottom:1173.915120px;}
.y2_c00466{bottom:1194.074400px;}
.h2_c00466{height:50.400000px;}
.h3_c00466{height:54.331699px;}
.h4_c00466{height:76.824000px;}
.h0_c00466{height:1262.835000px;}
.h1_c00466{height:1263.000000px;}
.w2_c00466{width:0.000000px;}
.w3_c00466{width:0.066000px;}
.w0_c00466{width:892.914000px;}
.w1_c00466{width:893.250000px;}
.x1_c00466{left:-838.913400px;}
.x2_c00466{left:-765.293400px;}
.x3_c00466{left:-733.343400px;}
.x0_c00466{left:0.000000px;}
.x5_c00466{left:127.620000px;}
.x6_c00466{left:159.570000px;}
.x4_c00466{left:804.366150px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls5_c00466{letter-spacing:-0.512000pt;}
.ls6_c00466{letter-spacing:-0.192000pt;}
.ls4_c00466{letter-spacing:-0.128000pt;}
.ls3_c00466{letter-spacing:0.000000pt;}
.ls0_c00466{letter-spacing:0.064000pt;}
.ls2_c00466{letter-spacing:0.128000pt;}
.ls1_c00466{letter-spacing:16.128000pt;}
.ws2_c00466{word-spacing:-16.128000pt;}
.ws3_c00466{word-spacing:-16.000000pt;}
.ws0_c00466{word-spacing:-15.872000pt;}
.ws4_c00466{word-spacing:-15.808000pt;}
.ws10_c00466{word-spacing:-0.384000pt;}
.ws6_c00466{word-spacing:-0.117120pt;}
.wsb_c00466{word-spacing:-0.064000pt;}
.ws5_c00466{word-spacing:0.000000pt;}
.ws1_c00466{word-spacing:0.128000pt;}
.ws1b_c00466{word-spacing:0.175680pt;}
.ws16_c00466{word-spacing:0.512000pt;}
.ws18_c00466{word-spacing:0.896000pt;}
.wsa_c00466{word-spacing:1.536000pt;}
.ws13_c00466{word-spacing:1.856000pt;}
.ws15_c00466{word-spacing:1.920000pt;}
.ws8_c00466{word-spacing:2.880000pt;}
.ws9_c00466{word-spacing:3.520000pt;}
.ws7_c00466{word-spacing:3.776000pt;}
.ws1a_c00466{word-spacing:5.952000pt;}
.ws14_c00466{word-spacing:6.016000pt;}
.wsc_c00466{word-spacing:8.960000pt;}
.ws12_c00466{word-spacing:9.216000pt;}
.ws11_c00466{word-spacing:9.280000pt;}
.ws1c_c00466{word-spacing:9.472000pt;}
.wse_c00466{word-spacing:10.176000pt;}
.wsd_c00466{word-spacing:10.240000pt;}
.ws19_c00466{word-spacing:10.880000pt;}
.wsf_c00466{word-spacing:12.160000pt;}
.ws1d_c00466{word-spacing:14.976000pt;}
.ws17_c00466{word-spacing:15.552000pt;}
._0_c00466{margin-left:-0.902400pt;}
._1_c00466{width:0.915200pt;}
.fs1_c00466{font-size:58.560000pt;}
.fs0_c00466{font-size:64.000000pt;}
.y0_c00466{bottom:0.000000pt;}
.y1_c00466{bottom:54.887600pt;}
.y24_c00466{bottom:102.599467pt;}
.y23_c00466{bottom:130.199467pt;}
.y22_c00466{bottom:157.799467pt;}
.y21_c00466{bottom:185.399467pt;}
.y20_c00466{bottom:212.999467pt;}
.y1f_c00466{bottom:240.599467pt;}
.y1e_c00466{bottom:268.199467pt;}
.y1d_c00466{bottom:295.799467pt;}
.y1c_c00466{bottom:323.399467pt;}
.y1b_c00466{bottom:350.999467pt;}
.y1a_c00466{bottom:378.599467pt;}
.y19_c00466{bottom:406.199467pt;}
.y18_c00466{bottom:433.799467pt;}
.y17_c00466{bottom:461.399467pt;}
.y16_c00466{bottom:488.999467pt;}
.y15_c00466{bottom:516.599467pt;}
.y14_c00466{bottom:544.199467pt;}
.y13_c00466{bottom:571.799467pt;}
.y12_c00466{bottom:599.399467pt;}
.y11_c00466{bottom:626.999467pt;}
.y10_c00466{bottom:654.599467pt;}
.yf_c00466{bottom:682.199467pt;}
.ye_c00466{bottom:709.719467pt;}
.yd_c00466{bottom:737.319467pt;}
.yc_c00466{bottom:764.919467pt;}
.yb_c00466{bottom:792.519467pt;}
.ya_c00466{bottom:820.119467pt;}
.y9_c00466{bottom:847.719467pt;}
.y8_c00466{bottom:875.319467pt;}
.y7_c00466{bottom:902.919467pt;}
.y6_c00466{bottom:930.519467pt;}
.y5_c00466{bottom:958.119467pt;}
.y4_c00466{bottom:985.719467pt;}
.y3_c00466{bottom:1013.319467pt;}
.y25_c00466{bottom:1043.480107pt;}
.y2_c00466{bottom:1061.399467pt;}
.h2_c00466{height:44.800000pt;}
.h3_c00466{height:48.294844pt;}
.h4_c00466{height:68.288000pt;}
.h0_c00466{height:1122.520000pt;}
.h1_c00466{height:1122.666667pt;}
.w2_c00466{width:0.000000pt;}
.w3_c00466{width:0.058667pt;}
.w0_c00466{width:793.701333pt;}
.w1_c00466{width:794.000000pt;}
.x1_c00466{left:-745.700800pt;}
.x2_c00466{left:-680.260800pt;}
.x3_c00466{left:-651.860800pt;}
.x0_c00466{left:0.000000pt;}
.x5_c00466{left:113.440000pt;}
.x6_c00466{left:141.840000pt;}
.x4_c00466{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00467;src:url('chunks/assets/font_5052a344d5bf688a1a1ea54d.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_7366fd494ba09ec8de05490c.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls4_c00467{letter-spacing:-0.144000px;}
.ls3_c00467{letter-spacing:0.000000px;}
.ls1_c00467{letter-spacing:0.072000px;}
.ls0_c00467{letter-spacing:0.144000px;}
.ls5_c00467{letter-spacing:0.360000px;}
.ls2_c00467{letter-spacing:18.144000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00467{word-spacing:-18.360000px;}
.ws3_c00467{word-spacing:-18.072000px;}
.ws1_c00467{word-spacing:-18.000000px;}
.ws2_c00467{word-spacing:-17.856000px;}
.wse_c00467{word-spacing:-0.144000px;}
.ws7_c00467{word-spacing:-0.131760px;}
.wsa_c00467{word-spacing:-0.072000px;}
.ws6_c00467{word-spacing:0.000000px;}
.ws4_c00467{word-spacing:0.144000px;}
.ws5_c00467{word-spacing:0.504000px;}
.wsb_c00467{word-spacing:0.648000px;}
.wsd_c00467{word-spacing:0.936000px;}
.ws12_c00467{word-spacing:3.960000px;}
.ws14_c00467{word-spacing:4.968000px;}
.ws10_c00467{word-spacing:6.048000px;}
.ws11_c00467{word-spacing:6.120000px;}
.ws15_c00467{word-spacing:6.768000px;}
.ws13_c00467{word-spacing:7.776000px;}
.wsc_c00467{word-spacing:12.600000px;}
.wsf_c00467{word-spacing:16.488000px;}
.ws9_c00467{word-spacing:17.496000px;}
.ws8_c00467{word-spacing:17.640000px;}
._1_c00467{margin-left:-1.296000px;}
._0_c00467{width:1.008000px;}
._2_c00467{width:17.676000px;}
.fc1_c00467{color:rgb(0,0,0);}
.fc0_c00467{color:rgb(35,31,32);}
.fs1_c00467{font-size:65.880000px;}
.fs0_c00467{font-size:72.000000px;}
.y0_c00467{bottom:0.000000px;}
.y1_c00467{bottom:61.748550px;}
.y22_c00467{bottom:146.474400px;}
.y21_c00467{bottom:177.524400px;}
.y20_c00467{bottom:208.574400px;}
.y1f_c00467{bottom:239.624400px;}
.y1e_c00467{bottom:270.674400px;}
.y1d_c00467{bottom:301.724400px;}
.y1c_c00467{bottom:332.774400px;}
.y1b_c00467{bottom:363.824400px;}
.y1a_c00467{bottom:394.874400px;}
.y19_c00467{bottom:425.924400px;}
.y18_c00467{bottom:456.974400px;}
.y17_c00467{bottom:488.024400px;}
.y16_c00467{bottom:519.074400px;}
.y15_c00467{bottom:550.124400px;}
.y14_c00467{bottom:581.174400px;}
.y13_c00467{bottom:612.224400px;}
.y12_c00467{bottom:643.274400px;}
.y11_c00467{bottom:674.324400px;}
.y10_c00467{bottom:705.374400px;}
.yf_c00467{bottom:736.424400px;}
.ye_c00467{bottom:767.474400px;}
.yd_c00467{bottom:798.434400px;}
.yc_c00467{bottom:829.484400px;}
.yb_c00467{bottom:860.534400px;}
.ya_c00467{bottom:891.584400px;}
.y9_c00467{bottom:922.634400px;}
.y8_c00467{bottom:953.684400px;}
.y7_c00467{bottom:984.734400px;}
.y6_c00467{bottom:1015.784400px;}
.y5_c00467{bottom:1046.834400px;}
.y4_c00467{bottom:1077.884400px;}
.y3_c00467{bottom:1139.984400px;}
.y2_c00467{bottom:1194.074400px;}
.h2_c00467{height:50.400000px;}
.h3_c00467{height:54.331699px;}
.h4_c00467{height:76.824000px;}
.h0_c00467{height:1262.835000px;}
.h1_c00467{height:1263.000000px;}
.w0_c00467{width:892.914000px;}
.w1_c00467{width:893.250000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:54.000000px;}
.x2_c00467{left:127.620000px;}
.x3_c00467{left:159.570000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls4_c00467{letter-spacing:-0.128000pt;}
.ls3_c00467{letter-spacing:0.000000pt;}
.ls1_c00467{letter-spacing:0.064000pt;}
.ls0_c00467{letter-spacing:0.128000pt;}
.ls5_c00467{letter-spacing:0.320000pt;}
.ls2_c00467{letter-spacing:16.128000pt;}
.ws0_c00467{word-spacing:-16.320000pt;}
.ws3_c00467{word-spacing:-16.064000pt;}
.ws1_c00467{word-spacing:-16.000000pt;}
.ws2_c00467{word-spacing:-15.872000pt;}
.wse_c00467{word-spacing:-0.128000pt;}
.ws7_c00467{word-spacing:-0.117120pt;}
.wsa_c00467{word-spacing:-0.064000pt;}
.ws6_c00467{word-spacing:0.000000pt;}
.ws4_c00467{word-spacing:0.128000pt;}
.ws5_c00467{word-spacing:0.448000pt;}
.wsb_c00467{word-spacing:0.576000pt;}
.wsd_c00467{word-spacing:0.832000pt;}
.ws12_c00467{word-spacing:3.520000pt;}
.ws14_c00467{word-spacing:4.416000pt;}
.ws10_c00467{word-spacing:5.376000pt;}
.ws11_c00467{word-spacing:5.440000pt;}
.ws15_c00467{word-spacing:6.016000pt;}
.ws13_c00467{word-spacing:6.912000pt;}
.wsc_c00467{word-spacing:11.200000pt;}
.wsf_c00467{word-spacing:14.656000pt;}
.ws9_c00467{word-spacing:15.552000pt;}
.ws8_c00467{word-spacing:15.680000pt;}
._1_c00467{margin-left:-1.152000pt;}
._0_c00467{width:0.896000pt;}
._2_c00467{width:15.712000pt;}
.fs1_c00467{font-size:58.560000pt;}
.fs0_c00467{font-size:64.000000pt;}
.y0_c00467{bottom:0.000000pt;}
.y1_c00467{bottom:54.887600pt;}
.y22_c00467{bottom:130.199467pt;}
.y21_c00467{bottom:157.799467pt;}
.y20_c00467{bottom:185.399467pt;}
.y1f_c00467{bottom:212.999467pt;}
.y1e_c00467{bottom:240.599467pt;}
.y1d_c00467{bottom:268.199467pt;}
.y1c_c00467{bottom:295.799467pt;}
.y1b_c00467{bottom:323.399467pt;}
.y1a_c00467{bottom:350.999467pt;}
.y19_c00467{bottom:378.599467pt;}
.y18_c00467{bottom:406.199467pt;}
.y17_c00467{bottom:433.799467pt;}
.y16_c00467{bottom:461.399467pt;}
.y15_c00467{bottom:488.999467pt;}
.y14_c00467{bottom:516.599467pt;}
.y13_c00467{bottom:544.199467pt;}
.y12_c00467{bottom:571.799467pt;}
.y11_c00467{bottom:599.399467pt;}
.y10_c00467{bottom:626.999467pt;}
.yf_c00467{bottom:654.599467pt;}
.ye_c00467{bottom:682.199467pt;}
.yd_c00467{bottom:709.719467pt;}
.yc_c00467{bottom:737.319467pt;}
.yb_c00467{bottom:764.919467pt;}
.ya_c00467{bottom:792.519467pt;}
.y9_c00467{bottom:820.119467pt;}
.y8_c00467{bottom:847.719467pt;}
.y7_c00467{bottom:875.319467pt;}
.y6_c00467{bottom:902.919467pt;}
.y5_c00467{bottom:930.519467pt;}
.y4_c00467{bottom:958.119467pt;}
.y3_c00467{bottom:1013.319467pt;}
.y2_c00467{bottom:1061.399467pt;}
.h2_c00467{height:44.800000pt;}
.h3_c00467{height:48.294844pt;}
.h4_c00467{height:68.288000pt;}
.h0_c00467{height:1122.520000pt;}
.h1_c00467{height:1122.666667pt;}
.w0_c00467{width:793.701333pt;}
.w1_c00467{width:794.000000pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:48.000000pt;}
.x2_c00467{left:113.440000pt;}
.x3_c00467{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00468;src:url('chunks/assets/font_f2a4e8ed1f0d6c893a4c0efb.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00468;src:url('chunks/assets/font_4798e6bfefd30e61a4494a72.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.575000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00468{font-family:ff4_c00468;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00468;src:url('chunks/assets/font_bb62e78349078fc700342d3d.woff2')format("woff");}.ff5_c00468{font-family:ff5_c00468;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00468;src:url('chunks/assets/font_925264fc7b8f2e72d86ac798.woff2')format("woff");}.ff6_c00468{font-family:ff6_c00468;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00468{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.ls5_c00468{letter-spacing:-0.144000px;}
.ls7_c00468{letter-spacing:-0.072000px;}
.ls4_c00468{letter-spacing:0.000000px;}
.ls1_c00468{letter-spacing:0.072000px;}
.ls0_c00468{letter-spacing:0.144000px;}
.ls6_c00468{letter-spacing:0.360000px;}
.ls2_c00468{letter-spacing:18.144000px;}
.ls3_c00468{letter-spacing:18.172800px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00468{word-spacing:-18.360000px;}
.ws3_c00468{word-spacing:-18.072000px;}
.ws1_c00468{word-spacing:-18.000000px;}
.ws6_c00468{word-spacing:-17.928000px;}
.ws2_c00468{word-spacing:-17.856000px;}
.wsf_c00468{word-spacing:-0.144000px;}
.ws8_c00468{word-spacing:-0.131760px;}
.wsb_c00468{word-spacing:-0.072000px;}
.ws7_c00468{word-spacing:0.000000px;}
.ws4_c00468{word-spacing:0.144000px;}
.ws17_c00468{word-spacing:0.197640px;}
.ws21_c00468{word-spacing:0.360000px;}
.ws5_c00468{word-spacing:0.504000px;}
.wsc_c00468{word-spacing:0.648000px;}
.wse_c00468{word-spacing:0.936000px;}
.ws25_c00468{word-spacing:1.008000px;}
.ws20_c00468{word-spacing:2.088000px;}
.ws1c_c00468{word-spacing:2.808000px;}
.ws22_c00468{word-spacing:2.880000px;}
.ws13_c00468{word-spacing:3.960000px;}
.ws1f_c00468{word-spacing:4.536000px;}
.ws15_c00468{word-spacing:4.968000px;}
.ws1e_c00468{word-spacing:5.040000px;}
.ws24_c00468{word-spacing:5.760000px;}
.ws11_c00468{word-spacing:6.048000px;}
.ws12_c00468{word-spacing:6.120000px;}
.ws16_c00468{word-spacing:6.768000px;}
.ws14_c00468{word-spacing:7.776000px;}
.ws1d_c00468{word-spacing:7.848000px;}
.ws1a_c00468{word-spacing:9.648000px;}
.ws1b_c00468{word-spacing:11.016000px;}
.wsd_c00468{word-spacing:12.600000px;}
.ws18_c00468{word-spacing:14.328000px;}
.ws19_c00468{word-spacing:14.400000px;}
.ws10_c00468{word-spacing:16.488000px;}
.wsa_c00468{word-spacing:17.496000px;}
.ws9_c00468{word-spacing:17.640000px;}
.ws23_c00468{word-spacing:19.440000px;}
._1_c00468{margin-left:-1.296000px;}
._0_c00468{width:1.008000px;}
._2_c00468{width:17.676000px;}
.fc2_c00468{color:transparent;}
.fc1_c00468{color:rgb(0,0,0);}
.fc0_c00468{color:rgb(35,31,32);}
.fs1_c00468{font-size:65.880000px;}
.fs0_c00468{font-size:72.000000px;}
.y0_c00468{bottom:0.000000px;}
.y1_c00468{bottom:61.748550px;}
.y22_c00468{bottom:146.474400px;}
.y21_c00468{bottom:177.524400px;}
.y20_c00468{bottom:208.574400px;}
.y1f_c00468{bottom:239.624400px;}
.y1e_c00468{bottom:270.674400px;}
.y1d_c00468{bottom:301.724400px;}
.y1c_c00468{bottom:332.774400px;}
.y1b_c00468{bottom:363.824400px;}
.y1a_c00468{bottom:394.874400px;}
.y19_c00468{bottom:425.924400px;}
.y18_c00468{bottom:456.974400px;}
.y17_c00468{bottom:488.024400px;}
.y16_c00468{bottom:519.074400px;}
.y15_c00468{bottom:550.124400px;}
.y14_c00468{bottom:581.174400px;}
.y13_c00468{bottom:612.224400px;}
.y12_c00468{bottom:643.274400px;}
.y11_c00468{bottom:674.324400px;}
.y10_c00468{bottom:705.374400px;}
.yf_c00468{bottom:736.424400px;}
.ye_c00468{bottom:767.474400px;}
.yd_c00468{bottom:798.434400px;}
.yc_c00468{bottom:829.484400px;}
.yb_c00468{bottom:860.534400px;}
.ya_c00468{bottom:891.584400px;}
.y9_c00468{bottom:922.634400px;}
.y8_c00468{bottom:953.684400px;}
.y7_c00468{bottom:984.734400px;}
.y6_c00468{bottom:1015.784400px;}
.y5_c00468{bottom:1046.834400px;}
.y4_c00468{bottom:1077.884400px;}
.y24_c00468{bottom:1108.934400px;}
.y3_c00468{bottom:1139.984400px;}
.y23_c00468{bottom:1173.915120px;}
.y2_c00468{bottom:1194.074400px;}
.h2_c00468{height:50.400000px;}
.h3_c00468{height:54.331699px;}
.h4_c00468{height:76.824000px;}
.h0_c00468{height:1262.835000px;}
.h1_c00468{height:1263.000000px;}
.w2_c00468{width:0.000000px;}
.w3_c00468{width:0.066000px;}
.w0_c00468{width:892.914000px;}
.w1_c00468{width:893.250000px;}
.x1_c00468{left:-838.913400px;}
.x2_c00468{left:-765.293400px;}
.x3_c00468{left:-733.343400px;}
.x0_c00468{left:0.000000px;}
.x5_c00468{left:127.620000px;}
.x6_c00468{left:159.570000px;}
.x4_c00468{left:804.366150px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls5_c00468{letter-spacing:-0.128000pt;}
.ls7_c00468{letter-spacing:-0.064000pt;}
.ls4_c00468{letter-spacing:0.000000pt;}
.ls1_c00468{letter-spacing:0.064000pt;}
.ls0_c00468{letter-spacing:0.128000pt;}
.ls6_c00468{letter-spacing:0.320000pt;}
.ls2_c00468{letter-spacing:16.128000pt;}
.ls3_c00468{letter-spacing:16.153600pt;}
.ws0_c00468{word-spacing:-16.320000pt;}
.ws3_c00468{word-spacing:-16.064000pt;}
.ws1_c00468{word-spacing:-16.000000pt;}
.ws6_c00468{word-spacing:-15.936000pt;}
.ws2_c00468{word-spacing:-15.872000pt;}
.wsf_c00468{word-spacing:-0.128000pt;}
.ws8_c00468{word-spacing:-0.117120pt;}
.wsb_c00468{word-spacing:-0.064000pt;}
.ws7_c00468{word-spacing:0.000000pt;}
.ws4_c00468{word-spacing:0.128000pt;}
.ws17_c00468{word-spacing:0.175680pt;}
.ws21_c00468{word-spacing:0.320000pt;}
.ws5_c00468{word-spacing:0.448000pt;}
.wsc_c00468{word-spacing:0.576000pt;}
.wse_c00468{word-spacing:0.832000pt;}
.ws25_c00468{word-spacing:0.896000pt;}
.ws20_c00468{word-spacing:1.856000pt;}
.ws1c_c00468{word-spacing:2.496000pt;}
.ws22_c00468{word-spacing:2.560000pt;}
.ws13_c00468{word-spacing:3.520000pt;}
.ws1f_c00468{word-spacing:4.032000pt;}
.ws15_c00468{word-spacing:4.416000pt;}
.ws1e_c00468{word-spacing:4.480000pt;}
.ws24_c00468{word-spacing:5.120000pt;}
.ws11_c00468{word-spacing:5.376000pt;}
.ws12_c00468{word-spacing:5.440000pt;}
.ws16_c00468{word-spacing:6.016000pt;}
.ws14_c00468{word-spacing:6.912000pt;}
.ws1d_c00468{word-spacing:6.976000pt;}
.ws1a_c00468{word-spacing:8.576000pt;}
.ws1b_c00468{word-spacing:9.792000pt;}
.wsd_c00468{word-spacing:11.200000pt;}
.ws18_c00468{word-spacing:12.736000pt;}
.ws19_c00468{word-spacing:12.800000pt;}
.ws10_c00468{word-spacing:14.656000pt;}
.wsa_c00468{word-spacing:15.552000pt;}
.ws9_c00468{word-spacing:15.680000pt;}
.ws23_c00468{word-spacing:17.280000pt;}
._1_c00468{margin-left:-1.152000pt;}
._0_c00468{width:0.896000pt;}
._2_c00468{width:15.712000pt;}
.fs1_c00468{font-size:58.560000pt;}
.fs0_c00468{font-size:64.000000pt;}
.y0_c00468{bottom:0.000000pt;}
.y1_c00468{bottom:54.887600pt;}
.y22_c00468{bottom:130.199467pt;}
.y21_c00468{bottom:157.799467pt;}
.y20_c00468{bottom:185.399467pt;}
.y1f_c00468{bottom:212.999467pt;}
.y1e_c00468{bottom:240.599467pt;}
.y1d_c00468{bottom:268.199467pt;}
.y1c_c00468{bottom:295.799467pt;}
.y1b_c00468{bottom:323.399467pt;}
.y1a_c00468{bottom:350.999467pt;}
.y19_c00468{bottom:378.599467pt;}
.y18_c00468{bottom:406.199467pt;}
.y17_c00468{bottom:433.799467pt;}
.y16_c00468{bottom:461.399467pt;}
.y15_c00468{bottom:488.999467pt;}
.y14_c00468{bottom:516.599467pt;}
.y13_c00468{bottom:544.199467pt;}
.y12_c00468{bottom:571.799467pt;}
.y11_c00468{bottom:599.399467pt;}
.y10_c00468{bottom:626.999467pt;}
.yf_c00468{bottom:654.599467pt;}
.ye_c00468{bottom:682.199467pt;}
.yd_c00468{bottom:709.719467pt;}
.yc_c00468{bottom:737.319467pt;}
.yb_c00468{bottom:764.919467pt;}
.ya_c00468{bottom:792.519467pt;}
.y9_c00468{bottom:820.119467pt;}
.y8_c00468{bottom:847.719467pt;}
.y7_c00468{bottom:875.319467pt;}
.y6_c00468{bottom:902.919467pt;}
.y5_c00468{bottom:930.519467pt;}
.y4_c00468{bottom:958.119467pt;}
.y24_c00468{bottom:985.719467pt;}
.y3_c00468{bottom:1013.319467pt;}
.y23_c00468{bottom:1043.480107pt;}
.y2_c00468{bottom:1061.399467pt;}
.h2_c00468{height:44.800000pt;}
.h3_c00468{height:48.294844pt;}
.h4_c00468{height:68.288000pt;}
.h0_c00468{height:1122.520000pt;}
.h1_c00468{height:1122.666667pt;}
.w2_c00468{width:0.000000pt;}
.w3_c00468{width:0.058667pt;}
.w0_c00468{width:793.701333pt;}
.w1_c00468{width:794.000000pt;}
.x1_c00468{left:-745.700800pt;}
.x2_c00468{left:-680.260800pt;}
.x3_c00468{left:-651.860800pt;}
.x0_c00468{left:0.000000pt;}
.x5_c00468{left:113.440000pt;}
.x6_c00468{left:141.840000pt;}
.x4_c00468{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00469;src:url('chunks/assets/font_50840d8ec14dee23d632f061.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00469;src:url('chunks/assets/font_9e658b8dc4c725c04fd562c1.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls3_c00469{letter-spacing:-0.144000px;}
.ls2_c00469{letter-spacing:0.000000px;}
.ls0_c00469{letter-spacing:0.072000px;}
.ls1_c00469{letter-spacing:36.504000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00469{word-spacing:-17.856000px;}
.ws3_c00469{word-spacing:-0.131760px;}
.ws6_c00469{word-spacing:-0.072000px;}
.ws2_c00469{word-spacing:0.000000px;}
.ws1_c00469{word-spacing:0.144000px;}
.ws9_c00469{word-spacing:0.648000px;}
.ws8_c00469{word-spacing:7.200000px;}
.ws5_c00469{word-spacing:7.848000px;}
.ws10_c00469{word-spacing:8.136000px;}
.wsf_c00469{word-spacing:8.208000px;}
.wsc_c00469{word-spacing:10.008000px;}
.wsd_c00469{word-spacing:11.808000px;}
.wse_c00469{word-spacing:11.880000px;}
.wsa_c00469{word-spacing:13.536000px;}
.wsb_c00469{word-spacing:13.680000px;}
.ws4_c00469{word-spacing:16.848000px;}
.ws7_c00469{word-spacing:18.288000px;}
._0_c00469{margin-left:-1.166400px;}
.fc1_c00469{color:rgb(0,0,0);}
.fc0_c00469{color:rgb(35,31,32);}
.fs1_c00469{font-size:65.880000px;}
.fs0_c00469{font-size:72.000000px;}
.y0_c00469{bottom:0.000000px;}
.y1_c00469{bottom:61.748550px;}
.y16_c00469{bottom:550.124400px;}
.y15_c00469{bottom:581.174400px;}
.y14_c00469{bottom:612.224400px;}
.y13_c00469{bottom:643.274400px;}
.y12_c00469{bottom:674.324400px;}
.y11_c00469{bottom:705.374400px;}
.y10_c00469{bottom:736.424400px;}
.yf_c00469{bottom:767.474400px;}
.ye_c00469{bottom:798.434400px;}
.yd_c00469{bottom:829.484400px;}
.yc_c00469{bottom:860.534400px;}
.yb_c00469{bottom:891.584400px;}
.ya_c00469{bottom:922.634400px;}
.y9_c00469{bottom:953.684400px;}
.y8_c00469{bottom:984.734400px;}
.y7_c00469{bottom:1015.784400px;}
.y6_c00469{bottom:1046.834400px;}
.y5_c00469{bottom:1077.884400px;}
.y4_c00469{bottom:1108.934400px;}
.y3_c00469{bottom:1139.984400px;}
.y2_c00469{bottom:1194.074400px;}
.h2_c00469{height:50.400000px;}
.h3_c00469{height:54.331699px;}
.h4_c00469{height:76.824000px;}
.h0_c00469{height:1262.835000px;}
.h1_c00469{height:1263.000000px;}
.w0_c00469{width:892.914000px;}
.w1_c00469{width:893.250000px;}
.x0_c00469{left:0.000000px;}
.x1_c00469{left:54.000000px;}
.x2_c00469{left:127.620000px;}
.x3_c00469{left:159.570000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls3_c00469{letter-spacing:-0.128000pt;}
.ls2_c00469{letter-spacing:0.000000pt;}
.ls0_c00469{letter-spacing:0.064000pt;}
.ls1_c00469{letter-spacing:32.448000pt;}
.ws0_c00469{word-spacing:-15.872000pt;}
.ws3_c00469{word-spacing:-0.117120pt;}
.ws6_c00469{word-spacing:-0.064000pt;}
.ws2_c00469{word-spacing:0.000000pt;}
.ws1_c00469{word-spacing:0.128000pt;}
.ws9_c00469{word-spacing:0.576000pt;}
.ws8_c00469{word-spacing:6.400000pt;}
.ws5_c00469{word-spacing:6.976000pt;}
.ws10_c00469{word-spacing:7.232000pt;}
.wsf_c00469{word-spacing:7.296000pt;}
.wsc_c00469{word-spacing:8.896000pt;}
.wsd_c00469{word-spacing:10.496000pt;}
.wse_c00469{word-spacing:10.560000pt;}
.wsa_c00469{word-spacing:12.032000pt;}
.wsb_c00469{word-spacing:12.160000pt;}
.ws4_c00469{word-spacing:14.976000pt;}
.ws7_c00469{word-spacing:16.256000pt;}
._0_c00469{margin-left:-1.036800pt;}
.fs1_c00469{font-size:58.560000pt;}
.fs0_c00469{font-size:64.000000pt;}
.y0_c00469{bottom:0.000000pt;}
.y1_c00469{bottom:54.887600pt;}
.y16_c00469{bottom:488.999467pt;}
.y15_c00469{bottom:516.599467pt;}
.y14_c00469{bottom:544.199467pt;}
.y13_c00469{bottom:571.799467pt;}
.y12_c00469{bottom:599.399467pt;}
.y11_c00469{bottom:626.999467pt;}
.y10_c00469{bottom:654.599467pt;}
.yf_c00469{bottom:682.199467pt;}
.ye_c00469{bottom:709.719467pt;}
.yd_c00469{bottom:737.319467pt;}
.yc_c00469{bottom:764.919467pt;}
.yb_c00469{bottom:792.519467pt;}
.ya_c00469{bottom:820.119467pt;}
.y9_c00469{bottom:847.719467pt;}
.y8_c00469{bottom:875.319467pt;}
.y7_c00469{bottom:902.919467pt;}
.y6_c00469{bottom:930.519467pt;}
.y5_c00469{bottom:958.119467pt;}
.y4_c00469{bottom:985.719467pt;}
.y3_c00469{bottom:1013.319467pt;}
.y2_c00469{bottom:1061.399467pt;}
.h2_c00469{height:44.800000pt;}
.h3_c00469{height:48.294844pt;}
.h4_c00469{height:68.288000pt;}
.h0_c00469{height:1122.520000pt;}
.h1_c00469{height:1122.666667pt;}
.w0_c00469{width:793.701333pt;}
.w1_c00469{width:794.000000pt;}
.x0_c00469{left:0.000000pt;}
.x1_c00469{left:48.000000pt;}
.x2_c00469{left:113.440000pt;}
.x3_c00469{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00470;src:url('chunks/assets/font_9de788feb3f21a91e84b9ef2.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00470;src:url('chunks/assets/font_ac31a8dfafd7f8c29c6f1024.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00470;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00470{font-family:ff4_c00470;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00470;src:url('chunks/assets/font_914ce6df20d8dd77e2b29a6a.woff2')format("woff");}.ff5_c00470{font-family:ff5_c00470;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00470;src:url('chunks/assets/font_b03d26cc2cedcfda7696ce7f.woff2')format("woff");}.ff6_c00470{font-family:ff6_c00470;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00470{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls8_c00470{letter-spacing:-0.144000px;}
.ls9_c00470{letter-spacing:-0.072000px;}
.ls7_c00470{letter-spacing:0.000000px;}
.ls0_c00470{letter-spacing:0.072000px;}
.ls2_c00470{letter-spacing:0.144000px;}
.ls4_c00470{letter-spacing:17.784000px;}
.ls5_c00470{letter-spacing:18.144000px;}
.ls6_c00470{letter-spacing:18.151200px;}
.ls3_c00470{letter-spacing:18.158400px;}
.ls1_c00470{letter-spacing:36.504000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00470{word-spacing:-18.000000px;}
.ws3_c00470{word-spacing:-17.928000px;}
.ws0_c00470{word-spacing:-17.856000px;}
.ws1b_c00470{word-spacing:-0.432000px;}
.ws1a_c00470{word-spacing:-0.360000px;}
.ws17_c00470{word-spacing:-0.144000px;}
.ws5_c00470{word-spacing:-0.131760px;}
.ws8_c00470{word-spacing:-0.072000px;}
.ws4_c00470{word-spacing:0.000000px;}
.ws1_c00470{word-spacing:0.144000px;}
.ws13_c00470{word-spacing:0.197640px;}
.ws14_c00470{word-spacing:0.432000px;}
.wsb_c00470{word-spacing:0.648000px;}
.ws16_c00470{word-spacing:2.160000px;}
.ws1c_c00470{word-spacing:5.328000px;}
.ws15_c00470{word-spacing:7.128000px;}
.wsa_c00470{word-spacing:7.200000px;}
.ws7_c00470{word-spacing:7.848000px;}
.ws12_c00470{word-spacing:8.136000px;}
.ws11_c00470{word-spacing:8.208000px;}
.wse_c00470{word-spacing:10.008000px;}
.ws18_c00470{word-spacing:10.080000px;}
.wsf_c00470{word-spacing:11.808000px;}
.ws10_c00470{word-spacing:11.880000px;}
.wsc_c00470{word-spacing:13.536000px;}
.wsd_c00470{word-spacing:13.680000px;}
.ws6_c00470{word-spacing:16.848000px;}
.ws19_c00470{word-spacing:17.568000px;}
.ws9_c00470{word-spacing:18.288000px;}
._0_c00470{margin-left:-1.166400px;}
._1_c00470{width:1.119960px;}
.fc2_c00470{color:transparent;}
.fc1_c00470{color:rgb(0,0,0);}
.fc0_c00470{color:rgb(35,31,32);}
.fs1_c00470{font-size:65.880000px;}
.fs0_c00470{font-size:72.000000px;}
.y0_c00470{bottom:0.000000px;}
.y1_c00470{bottom:61.748550px;}
.y36_c00470{bottom:130.994400px;}
.y35_c00470{bottom:162.044400px;}
.y34_c00470{bottom:193.094400px;}
.y33_c00470{bottom:224.144400px;}
.y32_c00470{bottom:255.194400px;}
.y31_c00470{bottom:286.244400px;}
.y30_c00470{bottom:317.294400px;}
.y2f_c00470{bottom:348.344400px;}
.y2e_c00470{bottom:379.394400px;}
.y2d_c00470{bottom:410.354400px;}
.y2c_c00470{bottom:441.404400px;}
.y2b_c00470{bottom:472.454400px;}
.y2a_c00470{bottom:503.504400px;}
.y29_c00470{bottom:534.554400px;}
.y16_c00470{bottom:550.124400px;}
.y28_c00470{bottom:565.604400px;}
.y15_c00470{bottom:581.174400px;}
.y27_c00470{bottom:596.654400px;}
.y14_c00470{bottom:612.224400px;}
.y26_c00470{bottom:627.704400px;}
.y13_c00470{bottom:643.274400px;}
.y25_c00470{bottom:658.754400px;}
.y12_c00470{bottom:674.324400px;}
.y24_c00470{bottom:689.804400px;}
.y11_c00470{bottom:705.374400px;}
.y23_c00470{bottom:720.854400px;}
.y10_c00470{bottom:736.424400px;}
.y22_c00470{bottom:751.904400px;}
.yf_c00470{bottom:767.474400px;}
.y21_c00470{bottom:782.954400px;}
.ye_c00470{bottom:798.434400px;}
.yd_c00470{bottom:829.484400px;}
.y20_c00470{bottom:845.054400px;}
.yc_c00470{bottom:860.534400px;}
.y1f_c00470{bottom:876.104400px;}
.yb_c00470{bottom:891.584400px;}
.y1e_c00470{bottom:907.154400px;}
.ya_c00470{bottom:922.634400px;}
.y1d_c00470{bottom:938.204400px;}
.y9_c00470{bottom:953.684400px;}
.y1c_c00470{bottom:969.254400px;}
.y8_c00470{bottom:984.734400px;}
.y1b_c00470{bottom:1000.304400px;}
.y7_c00470{bottom:1015.784400px;}
.y6_c00470{bottom:1046.834400px;}
.y1a_c00470{bottom:1062.404400px;}
.y5_c00470{bottom:1077.884400px;}
.y19_c00470{bottom:1101.104400px;}
.y4_c00470{bottom:1108.934400px;}
.y18_c00470{bottom:1139.894400px;}
.y3_c00470{bottom:1139.984400px;}
.y17_c00470{bottom:1173.915120px;}
.y2_c00470{bottom:1194.074400px;}
.h2_c00470{height:50.400000px;}
.h3_c00470{height:54.331699px;}
.h4_c00470{height:76.824000px;}
.h0_c00470{height:1262.835000px;}
.h1_c00470{height:1263.000000px;}
.w2_c00470{width:0.000000px;}
.w3_c00470{width:0.066000px;}
.w0_c00470{width:892.914000px;}
.w1_c00470{width:893.250000px;}
.x1_c00470{left:-838.913400px;}
.x2_c00470{left:-765.293400px;}
.x3_c00470{left:-733.343400px;}
.x0_c00470{left:0.000000px;}
.x5_c00470{left:127.620000px;}
.x6_c00470{left:159.570000px;}
.x4_c00470{left:804.366150px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls8_c00470{letter-spacing:-0.128000pt;}
.ls9_c00470{letter-spacing:-0.064000pt;}
.ls7_c00470{letter-spacing:0.000000pt;}
.ls0_c00470{letter-spacing:0.064000pt;}
.ls2_c00470{letter-spacing:0.128000pt;}
.ls4_c00470{letter-spacing:15.808000pt;}
.ls5_c00470{letter-spacing:16.128000pt;}
.ls6_c00470{letter-spacing:16.134400pt;}
.ls3_c00470{letter-spacing:16.140800pt;}
.ls1_c00470{letter-spacing:32.448000pt;}
.ws2_c00470{word-spacing:-16.000000pt;}
.ws3_c00470{word-spacing:-15.936000pt;}
.ws0_c00470{word-spacing:-15.872000pt;}
.ws1b_c00470{word-spacing:-0.384000pt;}
.ws1a_c00470{word-spacing:-0.320000pt;}
.ws17_c00470{word-spacing:-0.128000pt;}
.ws5_c00470{word-spacing:-0.117120pt;}
.ws8_c00470{word-spacing:-0.064000pt;}
.ws4_c00470{word-spacing:0.000000pt;}
.ws1_c00470{word-spacing:0.128000pt;}
.ws13_c00470{word-spacing:0.175680pt;}
.ws14_c00470{word-spacing:0.384000pt;}
.wsb_c00470{word-spacing:0.576000pt;}
.ws16_c00470{word-spacing:1.920000pt;}
.ws1c_c00470{word-spacing:4.736000pt;}
.ws15_c00470{word-spacing:6.336000pt;}
.wsa_c00470{word-spacing:6.400000pt;}
.ws7_c00470{word-spacing:6.976000pt;}
.ws12_c00470{word-spacing:7.232000pt;}
.ws11_c00470{word-spacing:7.296000pt;}
.wse_c00470{word-spacing:8.896000pt;}
.ws18_c00470{word-spacing:8.960000pt;}
.wsf_c00470{word-spacing:10.496000pt;}
.ws10_c00470{word-spacing:10.560000pt;}
.wsc_c00470{word-spacing:12.032000pt;}
.wsd_c00470{word-spacing:12.160000pt;}
.ws6_c00470{word-spacing:14.976000pt;}
.ws19_c00470{word-spacing:15.616000pt;}
.ws9_c00470{word-spacing:16.256000pt;}
._0_c00470{margin-left:-1.036800pt;}
._1_c00470{width:0.995520pt;}
.fs1_c00470{font-size:58.560000pt;}
.fs0_c00470{font-size:64.000000pt;}
.y0_c00470{bottom:0.000000pt;}
.y1_c00470{bottom:54.887600pt;}
.y36_c00470{bottom:116.439467pt;}
.y35_c00470{bottom:144.039467pt;}
.y34_c00470{bottom:171.639467pt;}
.y33_c00470{bottom:199.239467pt;}
.y32_c00470{bottom:226.839467pt;}
.y31_c00470{bottom:254.439467pt;}
.y30_c00470{bottom:282.039467pt;}
.y2f_c00470{bottom:309.639467pt;}
.y2e_c00470{bottom:337.239467pt;}
.y2d_c00470{bottom:364.759467pt;}
.y2c_c00470{bottom:392.359467pt;}
.y2b_c00470{bottom:419.959467pt;}
.y2a_c00470{bottom:447.559467pt;}
.y29_c00470{bottom:475.159467pt;}
.y16_c00470{bottom:488.999467pt;}
.y28_c00470{bottom:502.759467pt;}
.y15_c00470{bottom:516.599467pt;}
.y27_c00470{bottom:530.359467pt;}
.y14_c00470{bottom:544.199467pt;}
.y26_c00470{bottom:557.959467pt;}
.y13_c00470{bottom:571.799467pt;}
.y25_c00470{bottom:585.559467pt;}
.y12_c00470{bottom:599.399467pt;}
.y24_c00470{bottom:613.159467pt;}
.y11_c00470{bottom:626.999467pt;}
.y23_c00470{bottom:640.759467pt;}
.y10_c00470{bottom:654.599467pt;}
.y22_c00470{bottom:668.359467pt;}
.yf_c00470{bottom:682.199467pt;}
.y21_c00470{bottom:695.959467pt;}
.ye_c00470{bottom:709.719467pt;}
.yd_c00470{bottom:737.319467pt;}
.y20_c00470{bottom:751.159467pt;}
.yc_c00470{bottom:764.919467pt;}
.y1f_c00470{bottom:778.759467pt;}
.yb_c00470{bottom:792.519467pt;}
.y1e_c00470{bottom:806.359467pt;}
.ya_c00470{bottom:820.119467pt;}
.y1d_c00470{bottom:833.959467pt;}
.y9_c00470{bottom:847.719467pt;}
.y1c_c00470{bottom:861.559467pt;}
.y8_c00470{bottom:875.319467pt;}
.y1b_c00470{bottom:889.159467pt;}
.y7_c00470{bottom:902.919467pt;}
.y6_c00470{bottom:930.519467pt;}
.y1a_c00470{bottom:944.359467pt;}
.y5_c00470{bottom:958.119467pt;}
.y19_c00470{bottom:978.759467pt;}
.y4_c00470{bottom:985.719467pt;}
.y18_c00470{bottom:1013.239467pt;}
.y3_c00470{bottom:1013.319467pt;}
.y17_c00470{bottom:1043.480107pt;}
.y2_c00470{bottom:1061.399467pt;}
.h2_c00470{height:44.800000pt;}
.h3_c00470{height:48.294844pt;}
.h4_c00470{height:68.288000pt;}
.h0_c00470{height:1122.520000pt;}
.h1_c00470{height:1122.666667pt;}
.w2_c00470{width:0.000000pt;}
.w3_c00470{width:0.058667pt;}
.w0_c00470{width:793.701333pt;}
.w1_c00470{width:794.000000pt;}
.x1_c00470{left:-745.700800pt;}
.x2_c00470{left:-680.260800pt;}
.x3_c00470{left:-651.860800pt;}
.x0_c00470{left:0.000000pt;}
.x5_c00470{left:113.440000pt;}
.x6_c00470{left:141.840000pt;}
.x4_c00470{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00471;src:url('chunks/assets/font_e72764ae9e8e0f05ea766df9.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00471;src:url('chunks/assets/font_24176077db79031850a0b0b6.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00471{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.ls5_c00471{letter-spacing:-0.216000px;}
.ls4_c00471{letter-spacing:0.000000px;}
.ls1_c00471{letter-spacing:0.072000px;}
.ls2_c00471{letter-spacing:0.144000px;}
.ls0_c00471{letter-spacing:18.144000px;}
.ls3_c00471{letter-spacing:18.165600px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00471{word-spacing:-18.072000px;}
.ws1_c00471{word-spacing:-18.000000px;}
.ws0_c00471{word-spacing:-17.784000px;}
.ws13_c00471{word-spacing:-0.432000px;}
.ws3_c00471{word-spacing:-0.216000px;}
.ws10_c00471{word-spacing:-0.144000px;}
.ws7_c00471{word-spacing:-0.131760px;}
.ws8_c00471{word-spacing:-0.072000px;}
.ws6_c00471{word-spacing:0.000000px;}
.ws4_c00471{word-spacing:0.144000px;}
.ws5_c00471{word-spacing:0.504000px;}
.wsf_c00471{word-spacing:1.728000px;}
.wsd_c00471{word-spacing:7.416000px;}
.wse_c00471{word-spacing:7.560000px;}
.ws9_c00471{word-spacing:8.280000px;}
.ws12_c00471{word-spacing:10.008000px;}
.wsc_c00471{word-spacing:15.768000px;}
.wsa_c00471{word-spacing:16.488000px;}
.wsb_c00471{word-spacing:16.560000px;}
.ws11_c00471{word-spacing:18.648000px;}
._0_c00471{margin-left:-1.080000px;}
._1_c00471{width:1.022400px;}
.fc1_c00471{color:rgb(0,0,0);}
.fc0_c00471{color:rgb(35,31,32);}
.fs1_c00471{font-size:65.880000px;}
.fs0_c00471{font-size:72.000000px;}
.y0_c00471{bottom:0.000000px;}
.y1_c00471{bottom:61.748550px;}
.y23_c00471{bottom:146.474400px;}
.y22_c00471{bottom:177.524400px;}
.y21_c00471{bottom:208.574400px;}
.y20_c00471{bottom:239.624400px;}
.y1f_c00471{bottom:270.674400px;}
.y1e_c00471{bottom:301.724400px;}
.y1d_c00471{bottom:332.774400px;}
.y1c_c00471{bottom:363.824400px;}
.y1b_c00471{bottom:394.874400px;}
.y1a_c00471{bottom:425.924400px;}
.y19_c00471{bottom:456.974400px;}
.y18_c00471{bottom:488.024400px;}
.y17_c00471{bottom:519.074400px;}
.y16_c00471{bottom:550.124400px;}
.y15_c00471{bottom:581.174400px;}
.y14_c00471{bottom:612.224400px;}
.y13_c00471{bottom:643.274400px;}
.y12_c00471{bottom:674.324400px;}
.y11_c00471{bottom:705.374400px;}
.y10_c00471{bottom:736.424400px;}
.yf_c00471{bottom:767.474400px;}
.ye_c00471{bottom:798.434400px;}
.yd_c00471{bottom:829.484400px;}
.yc_c00471{bottom:860.534400px;}
.yb_c00471{bottom:891.584400px;}
.ya_c00471{bottom:922.634400px;}
.y9_c00471{bottom:953.684400px;}
.y8_c00471{bottom:984.734400px;}
.y7_c00471{bottom:1015.784400px;}
.y6_c00471{bottom:1046.834400px;}
.y5_c00471{bottom:1077.884400px;}
.y4_c00471{bottom:1108.934400px;}
.y3_c00471{bottom:1139.984400px;}
.y2_c00471{bottom:1194.074400px;}
.h2_c00471{height:50.400000px;}
.h3_c00471{height:54.331699px;}
.h4_c00471{height:76.824000px;}
.h0_c00471{height:1262.835000px;}
.h1_c00471{height:1263.000000px;}
.w0_c00471{width:892.914000px;}
.w1_c00471{width:893.250000px;}
.x0_c00471{left:0.000000px;}
.x1_c00471{left:54.000000px;}
.x2_c00471{left:127.620000px;}
.x3_c00471{left:159.570000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls5_c00471{letter-spacing:-0.192000pt;}
.ls4_c00471{letter-spacing:0.000000pt;}
.ls1_c00471{letter-spacing:0.064000pt;}
.ls2_c00471{letter-spacing:0.128000pt;}
.ls0_c00471{letter-spacing:16.128000pt;}
.ls3_c00471{letter-spacing:16.147200pt;}
.ws2_c00471{word-spacing:-16.064000pt;}
.ws1_c00471{word-spacing:-16.000000pt;}
.ws0_c00471{word-spacing:-15.808000pt;}
.ws13_c00471{word-spacing:-0.384000pt;}
.ws3_c00471{word-spacing:-0.192000pt;}
.ws10_c00471{word-spacing:-0.128000pt;}
.ws7_c00471{word-spacing:-0.117120pt;}
.ws8_c00471{word-spacing:-0.064000pt;}
.ws6_c00471{word-spacing:0.000000pt;}
.ws4_c00471{word-spacing:0.128000pt;}
.ws5_c00471{word-spacing:0.448000pt;}
.wsf_c00471{word-spacing:1.536000pt;}
.wsd_c00471{word-spacing:6.592000pt;}
.wse_c00471{word-spacing:6.720000pt;}
.ws9_c00471{word-spacing:7.360000pt;}
.ws12_c00471{word-spacing:8.896000pt;}
.wsc_c00471{word-spacing:14.016000pt;}
.wsa_c00471{word-spacing:14.656000pt;}
.wsb_c00471{word-spacing:14.720000pt;}
.ws11_c00471{word-spacing:16.576000pt;}
._0_c00471{margin-left:-0.960000pt;}
._1_c00471{width:0.908800pt;}
.fs1_c00471{font-size:58.560000pt;}
.fs0_c00471{font-size:64.000000pt;}
.y0_c00471{bottom:0.000000pt;}
.y1_c00471{bottom:54.887600pt;}
.y23_c00471{bottom:130.199467pt;}
.y22_c00471{bottom:157.799467pt;}
.y21_c00471{bottom:185.399467pt;}
.y20_c00471{bottom:212.999467pt;}
.y1f_c00471{bottom:240.599467pt;}
.y1e_c00471{bottom:268.199467pt;}
.y1d_c00471{bottom:295.799467pt;}
.y1c_c00471{bottom:323.399467pt;}
.y1b_c00471{bottom:350.999467pt;}
.y1a_c00471{bottom:378.599467pt;}
.y19_c00471{bottom:406.199467pt;}
.y18_c00471{bottom:433.799467pt;}
.y17_c00471{bottom:461.399467pt;}
.y16_c00471{bottom:488.999467pt;}
.y15_c00471{bottom:516.599467pt;}
.y14_c00471{bottom:544.199467pt;}
.y13_c00471{bottom:571.799467pt;}
.y12_c00471{bottom:599.399467pt;}
.y11_c00471{bottom:626.999467pt;}
.y10_c00471{bottom:654.599467pt;}
.yf_c00471{bottom:682.199467pt;}
.ye_c00471{bottom:709.719467pt;}
.yd_c00471{bottom:737.319467pt;}
.yc_c00471{bottom:764.919467pt;}
.yb_c00471{bottom:792.519467pt;}
.ya_c00471{bottom:820.119467pt;}
.y9_c00471{bottom:847.719467pt;}
.y8_c00471{bottom:875.319467pt;}
.y7_c00471{bottom:902.919467pt;}
.y6_c00471{bottom:930.519467pt;}
.y5_c00471{bottom:958.119467pt;}
.y4_c00471{bottom:985.719467pt;}
.y3_c00471{bottom:1013.319467pt;}
.y2_c00471{bottom:1061.399467pt;}
.h2_c00471{height:44.800000pt;}
.h3_c00471{height:48.294844pt;}
.h4_c00471{height:68.288000pt;}
.h0_c00471{height:1122.520000pt;}
.h1_c00471{height:1122.666667pt;}
.w0_c00471{width:793.701333pt;}
.w1_c00471{width:794.000000pt;}
.x0_c00471{left:0.000000pt;}
.x1_c00471{left:48.000000pt;}
.x2_c00471{left:113.440000pt;}
.x3_c00471{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00472;src:url('chunks/assets/font_55e7b82c7fcf883bc73ae263.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00472;src:url('chunks/assets/font_10aa40759fa2b344e0de2e4d.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00472;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00472;src:url('chunks/assets/font_e2986d69d0818a4e706a6615.woff2')format("woff");}.ff5_c00472{font-family:ff5_c00472;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00472;src:url('chunks/assets/font_d149bd9f5e003664c16b8f5e.woff2')format("woff");}.ff6_c00472{font-family:ff6_c00472;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls9_c00472{letter-spacing:-0.360000px;}
.ls7_c00472{letter-spacing:-0.288000px;}
.ls6_c00472{letter-spacing:-0.216000px;}
.ls8_c00472{letter-spacing:-0.072000px;}
.ls5_c00472{letter-spacing:0.000000px;}
.ls1_c00472{letter-spacing:0.072000px;}
.ls2_c00472{letter-spacing:0.144000px;}
.ls0_c00472{letter-spacing:18.144000px;}
.ls3_c00472{letter-spacing:18.158400px;}
.ls4_c00472{letter-spacing:20.664000px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00472{word-spacing:-18.144000px;}
.ws2_c00472{word-spacing:-18.072000px;}
.ws1_c00472{word-spacing:-18.000000px;}
.ws7_c00472{word-spacing:-17.928000px;}
.ws0_c00472{word-spacing:-17.784000px;}
.ws15_c00472{word-spacing:-0.432000px;}
.ws18_c00472{word-spacing:-0.360000px;}
.ws3_c00472{word-spacing:-0.216000px;}
.ws12_c00472{word-spacing:-0.144000px;}
.ws9_c00472{word-spacing:-0.131760px;}
.wsa_c00472{word-spacing:-0.072000px;}
.ws8_c00472{word-spacing:0.000000px;}
.ws4_c00472{word-spacing:0.144000px;}
.ws16_c00472{word-spacing:0.197640px;}
.ws1b_c00472{word-spacing:0.288000px;}
.ws5_c00472{word-spacing:0.504000px;}
.ws1e_c00472{word-spacing:1.008000px;}
.ws11_c00472{word-spacing:1.728000px;}
.ws1a_c00472{word-spacing:2.088000px;}
.ws17_c00472{word-spacing:2.448000px;}
.ws1f_c00472{word-spacing:3.096000px;}
.ws1d_c00472{word-spacing:6.048000px;}
.ws1c_c00472{word-spacing:6.408000px;}
.wsf_c00472{word-spacing:7.416000px;}
.ws10_c00472{word-spacing:7.560000px;}
.wsb_c00472{word-spacing:8.280000px;}
.ws22_c00472{word-spacing:8.928000px;}
.ws14_c00472{word-spacing:10.008000px;}
.ws20_c00472{word-spacing:13.608000px;}
.ws19_c00472{word-spacing:13.968000px;}
.ws21_c00472{word-spacing:14.040000px;}
.wse_c00472{word-spacing:15.768000px;}
.wsc_c00472{word-spacing:16.488000px;}
.wsd_c00472{word-spacing:16.560000px;}
.ws13_c00472{word-spacing:18.648000px;}
._0_c00472{margin-left:-1.080000px;}
._1_c00472{width:1.022400px;}
.fc2_c00472{color:transparent;}
.fc1_c00472{color:rgb(0,0,0);}
.fc0_c00472{color:rgb(35,31,32);}
.fs1_c00472{font-size:65.880000px;}
.fs0_c00472{font-size:72.000000px;}
.y0_c00472{bottom:0.000000px;}
.y1_c00472{bottom:61.748550px;}
.y23_c00472{bottom:146.474400px;}
.y22_c00472{bottom:177.524400px;}
.y21_c00472{bottom:208.574400px;}
.y20_c00472{bottom:239.624400px;}
.y1f_c00472{bottom:270.674400px;}
.y1e_c00472{bottom:301.724400px;}
.y1d_c00472{bottom:332.774400px;}
.y1c_c00472{bottom:363.824400px;}
.y1b_c00472{bottom:394.874400px;}
.y1a_c00472{bottom:425.924400px;}
.y19_c00472{bottom:456.974400px;}
.y18_c00472{bottom:488.024400px;}
.y17_c00472{bottom:519.074400px;}
.y16_c00472{bottom:550.124400px;}
.y15_c00472{bottom:581.174400px;}
.y14_c00472{bottom:612.224400px;}
.y13_c00472{bottom:643.274400px;}
.y12_c00472{bottom:674.324400px;}
.y11_c00472{bottom:705.374400px;}
.y10_c00472{bottom:736.424400px;}
.yf_c00472{bottom:767.474400px;}
.ye_c00472{bottom:798.434400px;}
.yd_c00472{bottom:829.484400px;}
.yc_c00472{bottom:860.534400px;}
.yb_c00472{bottom:891.584400px;}
.ya_c00472{bottom:922.634400px;}
.y9_c00472{bottom:953.684400px;}
.y8_c00472{bottom:984.734400px;}
.y7_c00472{bottom:1015.784400px;}
.y6_c00472{bottom:1046.834400px;}
.y5_c00472{bottom:1077.884400px;}
.y4_c00472{bottom:1108.934400px;}
.y3_c00472{bottom:1139.984400px;}
.y24_c00472{bottom:1173.915120px;}
.y2_c00472{bottom:1194.074400px;}
.h2_c00472{height:50.400000px;}
.h3_c00472{height:54.331699px;}
.h4_c00472{height:76.824000px;}
.h0_c00472{height:1262.835000px;}
.h1_c00472{height:1263.000000px;}
.w2_c00472{width:0.000000px;}
.w3_c00472{width:0.066000px;}
.w0_c00472{width:892.914000px;}
.w1_c00472{width:893.250000px;}
.x1_c00472{left:-838.913400px;}
.x2_c00472{left:-765.293400px;}
.x3_c00472{left:-733.343400px;}
.x0_c00472{left:0.000000px;}
.x5_c00472{left:127.620000px;}
.x6_c00472{left:159.570000px;}
.x4_c00472{left:804.366150px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls9_c00472{letter-spacing:-0.320000pt;}
.ls7_c00472{letter-spacing:-0.256000pt;}
.ls6_c00472{letter-spacing:-0.192000pt;}
.ls8_c00472{letter-spacing:-0.064000pt;}
.ls5_c00472{letter-spacing:0.000000pt;}
.ls1_c00472{letter-spacing:0.064000pt;}
.ls2_c00472{letter-spacing:0.128000pt;}
.ls0_c00472{letter-spacing:16.128000pt;}
.ls3_c00472{letter-spacing:16.140800pt;}
.ls4_c00472{letter-spacing:18.368000pt;}
.ws6_c00472{word-spacing:-16.128000pt;}
.ws2_c00472{word-spacing:-16.064000pt;}
.ws1_c00472{word-spacing:-16.000000pt;}
.ws7_c00472{word-spacing:-15.936000pt;}
.ws0_c00472{word-spacing:-15.808000pt;}
.ws15_c00472{word-spacing:-0.384000pt;}
.ws18_c00472{word-spacing:-0.320000pt;}
.ws3_c00472{word-spacing:-0.192000pt;}
.ws12_c00472{word-spacing:-0.128000pt;}
.ws9_c00472{word-spacing:-0.117120pt;}
.wsa_c00472{word-spacing:-0.064000pt;}
.ws8_c00472{word-spacing:0.000000pt;}
.ws4_c00472{word-spacing:0.128000pt;}
.ws16_c00472{word-spacing:0.175680pt;}
.ws1b_c00472{word-spacing:0.256000pt;}
.ws5_c00472{word-spacing:0.448000pt;}
.ws1e_c00472{word-spacing:0.896000pt;}
.ws11_c00472{word-spacing:1.536000pt;}
.ws1a_c00472{word-spacing:1.856000pt;}
.ws17_c00472{word-spacing:2.176000pt;}
.ws1f_c00472{word-spacing:2.752000pt;}
.ws1d_c00472{word-spacing:5.376000pt;}
.ws1c_c00472{word-spacing:5.696000pt;}
.wsf_c00472{word-spacing:6.592000pt;}
.ws10_c00472{word-spacing:6.720000pt;}
.wsb_c00472{word-spacing:7.360000pt;}
.ws22_c00472{word-spacing:7.936000pt;}
.ws14_c00472{word-spacing:8.896000pt;}
.ws20_c00472{word-spacing:12.096000pt;}
.ws19_c00472{word-spacing:12.416000pt;}
.ws21_c00472{word-spacing:12.480000pt;}
.wse_c00472{word-spacing:14.016000pt;}
.wsc_c00472{word-spacing:14.656000pt;}
.wsd_c00472{word-spacing:14.720000pt;}
.ws13_c00472{word-spacing:16.576000pt;}
._0_c00472{margin-left:-0.960000pt;}
._1_c00472{width:0.908800pt;}
.fs1_c00472{font-size:58.560000pt;}
.fs0_c00472{font-size:64.000000pt;}
.y0_c00472{bottom:0.000000pt;}
.y1_c00472{bottom:54.887600pt;}
.y23_c00472{bottom:130.199467pt;}
.y22_c00472{bottom:157.799467pt;}
.y21_c00472{bottom:185.399467pt;}
.y20_c00472{bottom:212.999467pt;}
.y1f_c00472{bottom:240.599467pt;}
.y1e_c00472{bottom:268.199467pt;}
.y1d_c00472{bottom:295.799467pt;}
.y1c_c00472{bottom:323.399467pt;}
.y1b_c00472{bottom:350.999467pt;}
.y1a_c00472{bottom:378.599467pt;}
.y19_c00472{bottom:406.199467pt;}
.y18_c00472{bottom:433.799467pt;}
.y17_c00472{bottom:461.399467pt;}
.y16_c00472{bottom:488.999467pt;}
.y15_c00472{bottom:516.599467pt;}
.y14_c00472{bottom:544.199467pt;}
.y13_c00472{bottom:571.799467pt;}
.y12_c00472{bottom:599.399467pt;}
.y11_c00472{bottom:626.999467pt;}
.y10_c00472{bottom:654.599467pt;}
.yf_c00472{bottom:682.199467pt;}
.ye_c00472{bottom:709.719467pt;}
.yd_c00472{bottom:737.319467pt;}
.yc_c00472{bottom:764.919467pt;}
.yb_c00472{bottom:792.519467pt;}
.ya_c00472{bottom:820.119467pt;}
.y9_c00472{bottom:847.719467pt;}
.y8_c00472{bottom:875.319467pt;}
.y7_c00472{bottom:902.919467pt;}
.y6_c00472{bottom:930.519467pt;}
.y5_c00472{bottom:958.119467pt;}
.y4_c00472{bottom:985.719467pt;}
.y3_c00472{bottom:1013.319467pt;}
.y24_c00472{bottom:1043.480107pt;}
.y2_c00472{bottom:1061.399467pt;}
.h2_c00472{height:44.800000pt;}
.h3_c00472{height:48.294844pt;}
.h4_c00472{height:68.288000pt;}
.h0_c00472{height:1122.520000pt;}
.h1_c00472{height:1122.666667pt;}
.w2_c00472{width:0.000000pt;}
.w3_c00472{width:0.058667pt;}
.w0_c00472{width:793.701333pt;}
.w1_c00472{width:794.000000pt;}
.x1_c00472{left:-745.700800pt;}
.x2_c00472{left:-680.260800pt;}
.x3_c00472{left:-651.860800pt;}
.x0_c00472{left:0.000000pt;}
.x5_c00472{left:113.440000pt;}
.x6_c00472{left:141.840000pt;}
.x4_c00472{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00473;src:url('chunks/assets/font_802df5f4b285ed6031b343be.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00473;src:url('chunks/assets/font_9f742f5461d9fbf3124a8aed.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00473{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.ls8_c00473{letter-spacing:-0.648000px;}
.ls7_c00473{letter-spacing:-0.360000px;}
.ls9_c00473{letter-spacing:-0.288000px;}
.ls6_c00473{letter-spacing:-0.072000px;}
.ls5_c00473{letter-spacing:0.000000px;}
.ls0_c00473{letter-spacing:0.072000px;}
.ls3_c00473{letter-spacing:0.144000px;}
.ls1_c00473{letter-spacing:18.144000px;}
.ls4_c00473{letter-spacing:18.504000px;}
.ls2_c00473{letter-spacing:25.704000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00473{word-spacing:-18.072000px;}
.ws7_c00473{word-spacing:-18.000000px;}
.ws2_c00473{word-spacing:-17.928000px;}
.ws8_c00473{word-spacing:-17.712000px;}
.ws5_c00473{word-spacing:-17.640000px;}
.ws6_c00473{word-spacing:-17.352000px;}
.ws18_c00473{word-spacing:-0.648000px;}
.ws3_c00473{word-spacing:-0.216000px;}
.wsa_c00473{word-spacing:-0.131760px;}
.wsd_c00473{word-spacing:-0.072000px;}
.ws9_c00473{word-spacing:0.000000px;}
.ws0_c00473{word-spacing:0.144000px;}
.ws10_c00473{word-spacing:0.360000px;}
.wse_c00473{word-spacing:2.808000px;}
.wsf_c00473{word-spacing:5.328000px;}
.ws11_c00473{word-spacing:7.560000px;}
.ws4_c00473{word-spacing:7.704000px;}
.ws16_c00473{word-spacing:8.208000px;}
.ws13_c00473{word-spacing:8.568000px;}
.ws12_c00473{word-spacing:8.640000px;}
.ws19_c00473{word-spacing:12.528000px;}
.ws15_c00473{word-spacing:14.976000px;}
.wsc_c00473{word-spacing:17.928000px;}
.ws14_c00473{word-spacing:18.000000px;}
.wsb_c00473{word-spacing:23.328000px;}
.ws17_c00473{word-spacing:23.400000px;}
._0_c00473{margin-left:-1.512000px;}
._1_c00473{width:1.008000px;}
.fc1_c00473{color:rgb(0,0,0);}
.fc0_c00473{color:rgb(35,31,32);}
.fs1_c00473{font-size:65.880000px;}
.fs0_c00473{font-size:72.000000px;}
.y0_c00473{bottom:0.000000px;}
.y1_c00473{bottom:61.748550px;}
.y24_c00473{bottom:115.424400px;}
.y23_c00473{bottom:146.474400px;}
.y22_c00473{bottom:177.524400px;}
.y21_c00473{bottom:208.574400px;}
.y20_c00473{bottom:239.624400px;}
.y1f_c00473{bottom:270.674400px;}
.y1e_c00473{bottom:301.724400px;}
.y1d_c00473{bottom:332.774400px;}
.y1c_c00473{bottom:363.824400px;}
.y1b_c00473{bottom:394.874400px;}
.y1a_c00473{bottom:425.924400px;}
.y19_c00473{bottom:456.974400px;}
.y18_c00473{bottom:488.024400px;}
.y17_c00473{bottom:519.074400px;}
.y16_c00473{bottom:550.124400px;}
.y15_c00473{bottom:581.174400px;}
.y14_c00473{bottom:612.224400px;}
.y13_c00473{bottom:643.274400px;}
.y12_c00473{bottom:674.324400px;}
.y11_c00473{bottom:705.374400px;}
.y10_c00473{bottom:736.424400px;}
.yf_c00473{bottom:767.474400px;}
.ye_c00473{bottom:798.434400px;}
.yd_c00473{bottom:829.484400px;}
.yc_c00473{bottom:860.534400px;}
.yb_c00473{bottom:891.584400px;}
.ya_c00473{bottom:922.634400px;}
.y9_c00473{bottom:953.684400px;}
.y8_c00473{bottom:984.734400px;}
.y7_c00473{bottom:1015.784400px;}
.y6_c00473{bottom:1046.834400px;}
.y5_c00473{bottom:1077.884400px;}
.y4_c00473{bottom:1108.934400px;}
.y3_c00473{bottom:1139.984400px;}
.y2_c00473{bottom:1194.074400px;}
.h2_c00473{height:50.400000px;}
.h3_c00473{height:54.331699px;}
.h4_c00473{height:76.824000px;}
.h0_c00473{height:1262.835000px;}
.h1_c00473{height:1263.000000px;}
.w0_c00473{width:892.914000px;}
.w1_c00473{width:893.250000px;}
.x0_c00473{left:0.000000px;}
.x1_c00473{left:54.000000px;}
.x2_c00473{left:127.620000px;}
.x3_c00473{left:159.570000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls8_c00473{letter-spacing:-0.576000pt;}
.ls7_c00473{letter-spacing:-0.320000pt;}
.ls9_c00473{letter-spacing:-0.256000pt;}
.ls6_c00473{letter-spacing:-0.064000pt;}
.ls5_c00473{letter-spacing:0.000000pt;}
.ls0_c00473{letter-spacing:0.064000pt;}
.ls3_c00473{letter-spacing:0.128000pt;}
.ls1_c00473{letter-spacing:16.128000pt;}
.ls4_c00473{letter-spacing:16.448000pt;}
.ls2_c00473{letter-spacing:22.848000pt;}
.ws1_c00473{word-spacing:-16.064000pt;}
.ws7_c00473{word-spacing:-16.000000pt;}
.ws2_c00473{word-spacing:-15.936000pt;}
.ws8_c00473{word-spacing:-15.744000pt;}
.ws5_c00473{word-spacing:-15.680000pt;}
.ws6_c00473{word-spacing:-15.424000pt;}
.ws18_c00473{word-spacing:-0.576000pt;}
.ws3_c00473{word-spacing:-0.192000pt;}
.wsa_c00473{word-spacing:-0.117120pt;}
.wsd_c00473{word-spacing:-0.064000pt;}
.ws9_c00473{word-spacing:0.000000pt;}
.ws0_c00473{word-spacing:0.128000pt;}
.ws10_c00473{word-spacing:0.320000pt;}
.wse_c00473{word-spacing:2.496000pt;}
.wsf_c00473{word-spacing:4.736000pt;}
.ws11_c00473{word-spacing:6.720000pt;}
.ws4_c00473{word-spacing:6.848000pt;}
.ws16_c00473{word-spacing:7.296000pt;}
.ws13_c00473{word-spacing:7.616000pt;}
.ws12_c00473{word-spacing:7.680000pt;}
.ws19_c00473{word-spacing:11.136000pt;}
.ws15_c00473{word-spacing:13.312000pt;}
.wsc_c00473{word-spacing:15.936000pt;}
.ws14_c00473{word-spacing:16.000000pt;}
.wsb_c00473{word-spacing:20.736000pt;}
.ws17_c00473{word-spacing:20.800000pt;}
._0_c00473{margin-left:-1.344000pt;}
._1_c00473{width:0.896000pt;}
.fs1_c00473{font-size:58.560000pt;}
.fs0_c00473{font-size:64.000000pt;}
.y0_c00473{bottom:0.000000pt;}
.y1_c00473{bottom:54.887600pt;}
.y24_c00473{bottom:102.599467pt;}
.y23_c00473{bottom:130.199467pt;}
.y22_c00473{bottom:157.799467pt;}
.y21_c00473{bottom:185.399467pt;}
.y20_c00473{bottom:212.999467pt;}
.y1f_c00473{bottom:240.599467pt;}
.y1e_c00473{bottom:268.199467pt;}
.y1d_c00473{bottom:295.799467pt;}
.y1c_c00473{bottom:323.399467pt;}
.y1b_c00473{bottom:350.999467pt;}
.y1a_c00473{bottom:378.599467pt;}
.y19_c00473{bottom:406.199467pt;}
.y18_c00473{bottom:433.799467pt;}
.y17_c00473{bottom:461.399467pt;}
.y16_c00473{bottom:488.999467pt;}
.y15_c00473{bottom:516.599467pt;}
.y14_c00473{bottom:544.199467pt;}
.y13_c00473{bottom:571.799467pt;}
.y12_c00473{bottom:599.399467pt;}
.y11_c00473{bottom:626.999467pt;}
.y10_c00473{bottom:654.599467pt;}
.yf_c00473{bottom:682.199467pt;}
.ye_c00473{bottom:709.719467pt;}
.yd_c00473{bottom:737.319467pt;}
.yc_c00473{bottom:764.919467pt;}
.yb_c00473{bottom:792.519467pt;}
.ya_c00473{bottom:820.119467pt;}
.y9_c00473{bottom:847.719467pt;}
.y8_c00473{bottom:875.319467pt;}
.y7_c00473{bottom:902.919467pt;}
.y6_c00473{bottom:930.519467pt;}
.y5_c00473{bottom:958.119467pt;}
.y4_c00473{bottom:985.719467pt;}
.y3_c00473{bottom:1013.319467pt;}
.y2_c00473{bottom:1061.399467pt;}
.h2_c00473{height:44.800000pt;}
.h3_c00473{height:48.294844pt;}
.h4_c00473{height:68.288000pt;}
.h0_c00473{height:1122.520000pt;}
.h1_c00473{height:1122.666667pt;}
.w0_c00473{width:793.701333pt;}
.w1_c00473{width:794.000000pt;}
.x0_c00473{left:0.000000pt;}
.x1_c00473{left:48.000000pt;}
.x2_c00473{left:113.440000pt;}
.x3_c00473{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00474;src:url('chunks/assets/font_8a9fa6bbd6e5460226450175.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00474;src:url('chunks/assets/font_b6b17995edfa0d5cba887d8e.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00474;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00474{font-family:ff4_c00474;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00474;src:url('chunks/assets/font_996fef3f1e01ceb07a09be33.woff2')format("woff");}.ff5_c00474{font-family:ff5_c00474;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00474;src:url('chunks/assets/font_b630ce1385fb749e0e6c2c99.woff2')format("woff");}.ff6_c00474{font-family:ff6_c00474;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls9_c00474{letter-spacing:-0.648000px;}
.ls8_c00474{letter-spacing:-0.360000px;}
.lsa_c00474{letter-spacing:-0.288000px;}
.lsb_c00474{letter-spacing:-0.144000px;}
.ls7_c00474{letter-spacing:-0.072000px;}
.ls6_c00474{letter-spacing:0.000000px;}
.ls0_c00474{letter-spacing:0.072000px;}
.ls3_c00474{letter-spacing:0.144000px;}
.ls5_c00474{letter-spacing:0.180000px;}
.ls1_c00474{letter-spacing:18.144000px;}
.ls4_c00474{letter-spacing:18.504000px;}
.ls2_c00474{letter-spacing:25.704000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00474{word-spacing:-18.144000px;}
.ws1_c00474{word-spacing:-18.072000px;}
.ws7_c00474{word-spacing:-18.000000px;}
.ws2_c00474{word-spacing:-17.928000px;}
.ws9_c00474{word-spacing:-17.856000px;}
.ws8_c00474{word-spacing:-17.712000px;}
.ws5_c00474{word-spacing:-17.640000px;}
.ws6_c00474{word-spacing:-17.352000px;}
.ws1b_c00474{word-spacing:-0.648000px;}
.ws20_c00474{word-spacing:-0.360000px;}
.ws3_c00474{word-spacing:-0.216000px;}
.wsd_c00474{word-spacing:-0.131760px;}
.ws10_c00474{word-spacing:-0.072000px;}
.wsc_c00474{word-spacing:0.000000px;}
.ws0_c00474{word-spacing:0.144000px;}
.ws1d_c00474{word-spacing:0.197640px;}
.ws13_c00474{word-spacing:0.360000px;}
.wsb_c00474{word-spacing:0.504000px;}
.ws1e_c00474{word-spacing:1.728000px;}
.ws22_c00474{word-spacing:2.448000px;}
.ws11_c00474{word-spacing:2.808000px;}
.ws12_c00474{word-spacing:5.328000px;}
.ws25_c00474{word-spacing:5.760000px;}
.ws24_c00474{word-spacing:6.120000px;}
.ws14_c00474{word-spacing:7.560000px;}
.ws4_c00474{word-spacing:7.704000px;}
.ws26_c00474{word-spacing:7.848000px;}
.ws19_c00474{word-spacing:8.208000px;}
.ws1f_c00474{word-spacing:8.280000px;}
.ws16_c00474{word-spacing:8.568000px;}
.ws15_c00474{word-spacing:8.640000px;}
.ws28_c00474{word-spacing:10.368000px;}
.ws21_c00474{word-spacing:10.440000px;}
.ws1c_c00474{word-spacing:12.528000px;}
.ws18_c00474{word-spacing:14.976000px;}
.ws23_c00474{word-spacing:15.048000px;}
.ws29_c00474{word-spacing:16.560000px;}
.wsf_c00474{word-spacing:17.928000px;}
.ws17_c00474{word-spacing:18.000000px;}
.ws27_c00474{word-spacing:22.320000px;}
.wse_c00474{word-spacing:23.328000px;}
.ws1a_c00474{word-spacing:23.400000px;}
._0_c00474{margin-left:-1.512000px;}
._1_c00474{width:1.008000px;}
.fc2_c00474{color:transparent;}
.fc1_c00474{color:rgb(0,0,0);}
.fc0_c00474{color:rgb(35,31,32);}
.fs1_c00474{font-size:65.880000px;}
.fs0_c00474{font-size:72.000000px;}
.y0_c00474{bottom:0.000000px;}
.y1_c00474{bottom:61.748550px;}
.y24_c00474{bottom:115.424400px;}
.y23_c00474{bottom:146.474400px;}
.y22_c00474{bottom:177.524400px;}
.y21_c00474{bottom:208.574400px;}
.y20_c00474{bottom:239.624400px;}
.y1f_c00474{bottom:270.674400px;}
.y1e_c00474{bottom:301.724400px;}
.y1d_c00474{bottom:332.774400px;}
.y1c_c00474{bottom:363.824400px;}
.y1b_c00474{bottom:394.874400px;}
.y1a_c00474{bottom:425.924400px;}
.y19_c00474{bottom:456.974400px;}
.y18_c00474{bottom:488.024400px;}
.y17_c00474{bottom:519.074400px;}
.y16_c00474{bottom:550.124400px;}
.y15_c00474{bottom:581.174400px;}
.y14_c00474{bottom:612.224400px;}
.y13_c00474{bottom:643.274400px;}
.y12_c00474{bottom:674.324400px;}
.y11_c00474{bottom:705.374400px;}
.y10_c00474{bottom:736.424400px;}
.yf_c00474{bottom:767.474400px;}
.ye_c00474{bottom:798.434400px;}
.yd_c00474{bottom:829.484400px;}
.yc_c00474{bottom:860.534400px;}
.yb_c00474{bottom:891.584400px;}
.ya_c00474{bottom:922.634400px;}
.y9_c00474{bottom:953.684400px;}
.y8_c00474{bottom:984.734400px;}
.y7_c00474{bottom:1015.784400px;}
.y6_c00474{bottom:1046.834400px;}
.y5_c00474{bottom:1077.884400px;}
.y4_c00474{bottom:1108.934400px;}
.y3_c00474{bottom:1139.984400px;}
.y25_c00474{bottom:1173.915120px;}
.y2_c00474{bottom:1194.074400px;}
.h2_c00474{height:50.400000px;}
.h3_c00474{height:54.331699px;}
.h4_c00474{height:76.824000px;}
.h0_c00474{height:1262.835000px;}
.h1_c00474{height:1263.000000px;}
.w2_c00474{width:0.000000px;}
.w3_c00474{width:0.066000px;}
.w0_c00474{width:892.914000px;}
.w1_c00474{width:893.250000px;}
.x1_c00474{left:-838.913400px;}
.x2_c00474{left:-765.293400px;}
.x3_c00474{left:-733.343400px;}
.x0_c00474{left:0.000000px;}
.x5_c00474{left:127.620000px;}
.x6_c00474{left:159.570000px;}
.x4_c00474{left:804.366150px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls9_c00474{letter-spacing:-0.576000pt;}
.ls8_c00474{letter-spacing:-0.320000pt;}
.lsa_c00474{letter-spacing:-0.256000pt;}
.lsb_c00474{letter-spacing:-0.128000pt;}
.ls7_c00474{letter-spacing:-0.064000pt;}
.ls6_c00474{letter-spacing:0.000000pt;}
.ls0_c00474{letter-spacing:0.064000pt;}
.ls3_c00474{letter-spacing:0.128000pt;}
.ls5_c00474{letter-spacing:0.160000pt;}
.ls1_c00474{letter-spacing:16.128000pt;}
.ls4_c00474{letter-spacing:16.448000pt;}
.ls2_c00474{letter-spacing:22.848000pt;}
.wsa_c00474{word-spacing:-16.128000pt;}
.ws1_c00474{word-spacing:-16.064000pt;}
.ws7_c00474{word-spacing:-16.000000pt;}
.ws2_c00474{word-spacing:-15.936000pt;}
.ws9_c00474{word-spacing:-15.872000pt;}
.ws8_c00474{word-spacing:-15.744000pt;}
.ws5_c00474{word-spacing:-15.680000pt;}
.ws6_c00474{word-spacing:-15.424000pt;}
.ws1b_c00474{word-spacing:-0.576000pt;}
.ws20_c00474{word-spacing:-0.320000pt;}
.ws3_c00474{word-spacing:-0.192000pt;}
.wsd_c00474{word-spacing:-0.117120pt;}
.ws10_c00474{word-spacing:-0.064000pt;}
.wsc_c00474{word-spacing:0.000000pt;}
.ws0_c00474{word-spacing:0.128000pt;}
.ws1d_c00474{word-spacing:0.175680pt;}
.ws13_c00474{word-spacing:0.320000pt;}
.wsb_c00474{word-spacing:0.448000pt;}
.ws1e_c00474{word-spacing:1.536000pt;}
.ws22_c00474{word-spacing:2.176000pt;}
.ws11_c00474{word-spacing:2.496000pt;}
.ws12_c00474{word-spacing:4.736000pt;}
.ws25_c00474{word-spacing:5.120000pt;}
.ws24_c00474{word-spacing:5.440000pt;}
.ws14_c00474{word-spacing:6.720000pt;}
.ws4_c00474{word-spacing:6.848000pt;}
.ws26_c00474{word-spacing:6.976000pt;}
.ws19_c00474{word-spacing:7.296000pt;}
.ws1f_c00474{word-spacing:7.360000pt;}
.ws16_c00474{word-spacing:7.616000pt;}
.ws15_c00474{word-spacing:7.680000pt;}
.ws28_c00474{word-spacing:9.216000pt;}
.ws21_c00474{word-spacing:9.280000pt;}
.ws1c_c00474{word-spacing:11.136000pt;}
.ws18_c00474{word-spacing:13.312000pt;}
.ws23_c00474{word-spacing:13.376000pt;}
.ws29_c00474{word-spacing:14.720000pt;}
.wsf_c00474{word-spacing:15.936000pt;}
.ws17_c00474{word-spacing:16.000000pt;}
.ws27_c00474{word-spacing:19.840000pt;}
.wse_c00474{word-spacing:20.736000pt;}
.ws1a_c00474{word-spacing:20.800000pt;}
._0_c00474{margin-left:-1.344000pt;}
._1_c00474{width:0.896000pt;}
.fs1_c00474{font-size:58.560000pt;}
.fs0_c00474{font-size:64.000000pt;}
.y0_c00474{bottom:0.000000pt;}
.y1_c00474{bottom:54.887600pt;}
.y24_c00474{bottom:102.599467pt;}
.y23_c00474{bottom:130.199467pt;}
.y22_c00474{bottom:157.799467pt;}
.y21_c00474{bottom:185.399467pt;}
.y20_c00474{bottom:212.999467pt;}
.y1f_c00474{bottom:240.599467pt;}
.y1e_c00474{bottom:268.199467pt;}
.y1d_c00474{bottom:295.799467pt;}
.y1c_c00474{bottom:323.399467pt;}
.y1b_c00474{bottom:350.999467pt;}
.y1a_c00474{bottom:378.599467pt;}
.y19_c00474{bottom:406.199467pt;}
.y18_c00474{bottom:433.799467pt;}
.y17_c00474{bottom:461.399467pt;}
.y16_c00474{bottom:488.999467pt;}
.y15_c00474{bottom:516.599467pt;}
.y14_c00474{bottom:544.199467pt;}
.y13_c00474{bottom:571.799467pt;}
.y12_c00474{bottom:599.399467pt;}
.y11_c00474{bottom:626.999467pt;}
.y10_c00474{bottom:654.599467pt;}
.yf_c00474{bottom:682.199467pt;}
.ye_c00474{bottom:709.719467pt;}
.yd_c00474{bottom:737.319467pt;}
.yc_c00474{bottom:764.919467pt;}
.yb_c00474{bottom:792.519467pt;}
.ya_c00474{bottom:820.119467pt;}
.y9_c00474{bottom:847.719467pt;}
.y8_c00474{bottom:875.319467pt;}
.y7_c00474{bottom:902.919467pt;}
.y6_c00474{bottom:930.519467pt;}
.y5_c00474{bottom:958.119467pt;}
.y4_c00474{bottom:985.719467pt;}
.y3_c00474{bottom:1013.319467pt;}
.y25_c00474{bottom:1043.480107pt;}
.y2_c00474{bottom:1061.399467pt;}
.h2_c00474{height:44.800000pt;}
.h3_c00474{height:48.294844pt;}
.h4_c00474{height:68.288000pt;}
.h0_c00474{height:1122.520000pt;}
.h1_c00474{height:1122.666667pt;}
.w2_c00474{width:0.000000pt;}
.w3_c00474{width:0.058667pt;}
.w0_c00474{width:793.701333pt;}
.w1_c00474{width:794.000000pt;}
.x1_c00474{left:-745.700800pt;}
.x2_c00474{left:-680.260800pt;}
.x3_c00474{left:-651.860800pt;}
.x0_c00474{left:0.000000pt;}
.x5_c00474{left:113.440000pt;}
.x6_c00474{left:141.840000pt;}
.x4_c00474{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00475;src:url('chunks/assets/font_05e2ea594649a88c78e967b1.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00475;src:url('chunks/assets/font_cd8889be8403b5c6c9943cc0.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls7_c00475{letter-spacing:-0.360000px;}
.ls8_c00475{letter-spacing:-0.288000px;}
.ls6_c00475{letter-spacing:-0.072000px;}
.ls5_c00475{letter-spacing:0.000000px;}
.ls0_c00475{letter-spacing:0.072000px;}
.ls2_c00475{letter-spacing:0.144000px;}
.ls1_c00475{letter-spacing:18.144000px;}
.ls4_c00475{letter-spacing:21.240000px;}
.ls3_c00475{letter-spacing:21.384000px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00475{word-spacing:-18.144000px;}
.ws3_c00475{word-spacing:-18.072000px;}
.ws0_c00475{word-spacing:-18.000000px;}
.ws1_c00475{word-spacing:-17.928000px;}
.ws4_c00475{word-spacing:-17.640000px;}
.wsf_c00475{word-spacing:-0.504000px;}
.ws13_c00475{word-spacing:-0.432000px;}
.ws9_c00475{word-spacing:-0.144000px;}
.ws8_c00475{word-spacing:-0.131760px;}
.wsc_c00475{word-spacing:-0.072000px;}
.ws7_c00475{word-spacing:0.000000px;}
.ws5_c00475{word-spacing:0.144000px;}
.ws12_c00475{word-spacing:0.288000px;}
.ws6_c00475{word-spacing:0.504000px;}
.ws15_c00475{word-spacing:2.088000px;}
.ws16_c00475{word-spacing:2.160000px;}
.ws14_c00475{word-spacing:3.168000px;}
.wsb_c00475{word-spacing:6.840000px;}
.ws10_c00475{word-spacing:14.040000px;}
.wsa_c00475{word-spacing:14.616000px;}
.ws11_c00475{word-spacing:15.048000px;}
.wsd_c00475{word-spacing:26.928000px;}
.wse_c00475{word-spacing:27.000000px;}
._0_c00475{margin-left:-1.080000px;}
._1_c00475{width:1.224000px;}
._3_c00475{width:2.592000px;}
._2_c00475{width:31.896000px;}
.fc1_c00475{color:rgb(0,0,0);}
.fc0_c00475{color:rgb(35,31,32);}
.fs1_c00475{font-size:65.880000px;}
.fs0_c00475{font-size:72.000000px;}
.y0_c00475{bottom:0.000000px;}
.y1_c00475{bottom:61.748550px;}
.y22_c00475{bottom:115.424400px;}
.y21_c00475{bottom:146.474400px;}
.y20_c00475{bottom:177.524400px;}
.y1f_c00475{bottom:208.574400px;}
.y1e_c00475{bottom:239.624400px;}
.y1d_c00475{bottom:270.674400px;}
.y1c_c00475{bottom:301.724400px;}
.y1b_c00475{bottom:332.774400px;}
.y1a_c00475{bottom:363.824400px;}
.y19_c00475{bottom:394.874400px;}
.y18_c00475{bottom:425.924400px;}
.y17_c00475{bottom:456.974400px;}
.y16_c00475{bottom:488.024400px;}
.y15_c00475{bottom:519.074400px;}
.y14_c00475{bottom:550.124400px;}
.y13_c00475{bottom:581.174400px;}
.y12_c00475{bottom:612.224400px;}
.y11_c00475{bottom:643.274400px;}
.y10_c00475{bottom:674.324400px;}
.yf_c00475{bottom:705.374400px;}
.ye_c00475{bottom:736.424400px;}
.yd_c00475{bottom:767.474400px;}
.yc_c00475{bottom:798.434400px;}
.yb_c00475{bottom:829.484400px;}
.ya_c00475{bottom:860.534400px;}
.y9_c00475{bottom:891.584400px;}
.y8_c00475{bottom:922.634400px;}
.y7_c00475{bottom:953.684400px;}
.y6_c00475{bottom:984.734400px;}
.y5_c00475{bottom:1046.834400px;}
.y4_c00475{bottom:1077.884400px;}
.y3_c00475{bottom:1139.984400px;}
.y2_c00475{bottom:1194.074400px;}
.h2_c00475{height:50.400000px;}
.h3_c00475{height:54.331699px;}
.h4_c00475{height:76.824000px;}
.h0_c00475{height:1262.835000px;}
.h1_c00475{height:1263.000000px;}
.w0_c00475{width:892.914000px;}
.w1_c00475{width:893.250000px;}
.x0_c00475{left:0.000000px;}
.x1_c00475{left:54.000000px;}
.x2_c00475{left:127.620000px;}
.x3_c00475{left:159.570000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls7_c00475{letter-spacing:-0.320000pt;}
.ls8_c00475{letter-spacing:-0.256000pt;}
.ls6_c00475{letter-spacing:-0.064000pt;}
.ls5_c00475{letter-spacing:0.000000pt;}
.ls0_c00475{letter-spacing:0.064000pt;}
.ls2_c00475{letter-spacing:0.128000pt;}
.ls1_c00475{letter-spacing:16.128000pt;}
.ls4_c00475{letter-spacing:18.880000pt;}
.ls3_c00475{letter-spacing:19.008000pt;}
.ws2_c00475{word-spacing:-16.128000pt;}
.ws3_c00475{word-spacing:-16.064000pt;}
.ws0_c00475{word-spacing:-16.000000pt;}
.ws1_c00475{word-spacing:-15.936000pt;}
.ws4_c00475{word-spacing:-15.680000pt;}
.wsf_c00475{word-spacing:-0.448000pt;}
.ws13_c00475{word-spacing:-0.384000pt;}
.ws9_c00475{word-spacing:-0.128000pt;}
.ws8_c00475{word-spacing:-0.117120pt;}
.wsc_c00475{word-spacing:-0.064000pt;}
.ws7_c00475{word-spacing:0.000000pt;}
.ws5_c00475{word-spacing:0.128000pt;}
.ws12_c00475{word-spacing:0.256000pt;}
.ws6_c00475{word-spacing:0.448000pt;}
.ws15_c00475{word-spacing:1.856000pt;}
.ws16_c00475{word-spacing:1.920000pt;}
.ws14_c00475{word-spacing:2.816000pt;}
.wsb_c00475{word-spacing:6.080000pt;}
.ws10_c00475{word-spacing:12.480000pt;}
.wsa_c00475{word-spacing:12.992000pt;}
.ws11_c00475{word-spacing:13.376000pt;}
.wsd_c00475{word-spacing:23.936000pt;}
.wse_c00475{word-spacing:24.000000pt;}
._0_c00475{margin-left:-0.960000pt;}
._1_c00475{width:1.088000pt;}
._3_c00475{width:2.304000pt;}
._2_c00475{width:28.352000pt;}
.fs1_c00475{font-size:58.560000pt;}
.fs0_c00475{font-size:64.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y1_c00475{bottom:54.887600pt;}
.y22_c00475{bottom:102.599467pt;}
.y21_c00475{bottom:130.199467pt;}
.y20_c00475{bottom:157.799467pt;}
.y1f_c00475{bottom:185.399467pt;}
.y1e_c00475{bottom:212.999467pt;}
.y1d_c00475{bottom:240.599467pt;}
.y1c_c00475{bottom:268.199467pt;}
.y1b_c00475{bottom:295.799467pt;}
.y1a_c00475{bottom:323.399467pt;}
.y19_c00475{bottom:350.999467pt;}
.y18_c00475{bottom:378.599467pt;}
.y17_c00475{bottom:406.199467pt;}
.y16_c00475{bottom:433.799467pt;}
.y15_c00475{bottom:461.399467pt;}
.y14_c00475{bottom:488.999467pt;}
.y13_c00475{bottom:516.599467pt;}
.y12_c00475{bottom:544.199467pt;}
.y11_c00475{bottom:571.799467pt;}
.y10_c00475{bottom:599.399467pt;}
.yf_c00475{bottom:626.999467pt;}
.ye_c00475{bottom:654.599467pt;}
.yd_c00475{bottom:682.199467pt;}
.yc_c00475{bottom:709.719467pt;}
.yb_c00475{bottom:737.319467pt;}
.ya_c00475{bottom:764.919467pt;}
.y9_c00475{bottom:792.519467pt;}
.y8_c00475{bottom:820.119467pt;}
.y7_c00475{bottom:847.719467pt;}
.y6_c00475{bottom:875.319467pt;}
.y5_c00475{bottom:930.519467pt;}
.y4_c00475{bottom:958.119467pt;}
.y3_c00475{bottom:1013.319467pt;}
.y2_c00475{bottom:1061.399467pt;}
.h2_c00475{height:44.800000pt;}
.h3_c00475{height:48.294844pt;}
.h4_c00475{height:68.288000pt;}
.h0_c00475{height:1122.520000pt;}
.h1_c00475{height:1122.666667pt;}
.w0_c00475{width:793.701333pt;}
.w1_c00475{width:794.000000pt;}
.x0_c00475{left:0.000000pt;}
.x1_c00475{left:48.000000pt;}
.x2_c00475{left:113.440000pt;}
.x3_c00475{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00476;src:url('chunks/assets/font_e7312118c741025fe5f75b17.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00476;src:url('chunks/assets/font_254ab3c88760b4de0540b21d.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.575000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00476{font-family:ff4_c00476;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00476;src:url('chunks/assets/font_86f6dae4b35a27b919467188.woff2')format("woff");}.ff5_c00476{font-family:ff5_c00476;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00476;src:url('chunks/assets/font_2e8c8f834970ab6a497fb825.woff2')format("woff");}.ff6_c00476{font-family:ff6_c00476;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.lsa_c00476{letter-spacing:-0.648000px;}
.ls8_c00476{letter-spacing:-0.360000px;}
.ls9_c00476{letter-spacing:-0.288000px;}
.lsb_c00476{letter-spacing:-0.144000px;}
.ls7_c00476{letter-spacing:-0.072000px;}
.ls6_c00476{letter-spacing:0.000000px;}
.ls0_c00476{letter-spacing:0.072000px;}
.ls2_c00476{letter-spacing:0.144000px;}
.ls5_c00476{letter-spacing:17.784000px;}
.ls1_c00476{letter-spacing:18.144000px;}
.ls4_c00476{letter-spacing:21.240000px;}
.ls3_c00476{letter-spacing:21.384000px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00476{word-spacing:-18.144000px;}
.ws3_c00476{word-spacing:-18.072000px;}
.ws0_c00476{word-spacing:-18.000000px;}
.ws1_c00476{word-spacing:-17.928000px;}
.ws9_c00476{word-spacing:-17.856000px;}
.ws4_c00476{word-spacing:-17.640000px;}
.ws8_c00476{word-spacing:-17.352000px;}
.ws12_c00476{word-spacing:-0.504000px;}
.ws16_c00476{word-spacing:-0.432000px;}
.wsc_c00476{word-spacing:-0.144000px;}
.wsb_c00476{word-spacing:-0.131760px;}
.wsf_c00476{word-spacing:-0.072000px;}
.wsa_c00476{word-spacing:0.000000px;}
.ws5_c00476{word-spacing:0.144000px;}
.ws1a_c00476{word-spacing:0.197640px;}
.ws15_c00476{word-spacing:0.288000px;}
.ws6_c00476{word-spacing:0.504000px;}
.ws21_c00476{word-spacing:1.368000px;}
.ws18_c00476{word-spacing:2.088000px;}
.ws19_c00476{word-spacing:2.160000px;}
.ws25_c00476{word-spacing:2.448000px;}
.ws1b_c00476{word-spacing:3.096000px;}
.ws17_c00476{word-spacing:3.168000px;}
.ws1c_c00476{word-spacing:3.240000px;}
.ws20_c00476{word-spacing:3.528000px;}
.ws1d_c00476{word-spacing:5.688000px;}
.ws1e_c00476{word-spacing:6.552000px;}
.ws1f_c00476{word-spacing:6.768000px;}
.wse_c00476{word-spacing:6.840000px;}
.ws7_c00476{word-spacing:6.984000px;}
.ws26_c00476{word-spacing:7.056000px;}
.ws27_c00476{word-spacing:7.488000px;}
.ws24_c00476{word-spacing:11.520000px;}
.ws23_c00476{word-spacing:11.880000px;}
.ws13_c00476{word-spacing:14.040000px;}
.ws22_c00476{word-spacing:14.328000px;}
.wsd_c00476{word-spacing:14.616000px;}
.ws14_c00476{word-spacing:15.048000px;}
.ws10_c00476{word-spacing:26.928000px;}
.ws11_c00476{word-spacing:27.000000px;}
._0_c00476{margin-left:-1.080000px;}
._1_c00476{width:1.224000px;}
._3_c00476{width:2.592000px;}
._2_c00476{width:31.896000px;}
.fc2_c00476{color:transparent;}
.fc1_c00476{color:rgb(0,0,0);}
.fc0_c00476{color:rgb(35,31,32);}
.fs1_c00476{font-size:65.880000px;}
.fs0_c00476{font-size:72.000000px;}
.y0_c00476{bottom:0.000000px;}
.y1_c00476{bottom:61.748550px;}
.y22_c00476{bottom:115.424400px;}
.y21_c00476{bottom:146.474400px;}
.y20_c00476{bottom:177.524400px;}
.y1f_c00476{bottom:208.574400px;}
.y1e_c00476{bottom:239.624400px;}
.y1d_c00476{bottom:270.674400px;}
.y1c_c00476{bottom:301.724400px;}
.y1b_c00476{bottom:332.774400px;}
.y1a_c00476{bottom:363.824400px;}
.y19_c00476{bottom:394.874400px;}
.y18_c00476{bottom:425.924400px;}
.y17_c00476{bottom:456.974400px;}
.y16_c00476{bottom:488.024400px;}
.y15_c00476{bottom:519.074400px;}
.y14_c00476{bottom:550.124400px;}
.y13_c00476{bottom:581.174400px;}
.y12_c00476{bottom:612.224400px;}
.y11_c00476{bottom:643.274400px;}
.y10_c00476{bottom:674.324400px;}
.yf_c00476{bottom:705.374400px;}
.ye_c00476{bottom:736.424400px;}
.yd_c00476{bottom:767.474400px;}
.yc_c00476{bottom:798.434400px;}
.yb_c00476{bottom:829.484400px;}
.ya_c00476{bottom:860.534400px;}
.y9_c00476{bottom:891.584400px;}
.y8_c00476{bottom:922.634400px;}
.y7_c00476{bottom:953.684400px;}
.y6_c00476{bottom:984.734400px;}
.y25_c00476{bottom:1015.784400px;}
.y5_c00476{bottom:1046.834400px;}
.y4_c00476{bottom:1077.884400px;}
.y24_c00476{bottom:1108.934400px;}
.y3_c00476{bottom:1139.984400px;}
.y23_c00476{bottom:1173.915120px;}
.y2_c00476{bottom:1194.074400px;}
.h2_c00476{height:50.400000px;}
.h3_c00476{height:54.331699px;}
.h4_c00476{height:76.824000px;}
.h0_c00476{height:1262.835000px;}
.h1_c00476{height:1263.000000px;}
.w2_c00476{width:0.000000px;}
.w3_c00476{width:0.066000px;}
.w0_c00476{width:892.914000px;}
.w1_c00476{width:893.250000px;}
.x1_c00476{left:-838.913400px;}
.x2_c00476{left:-765.293400px;}
.x3_c00476{left:-733.343400px;}
.x0_c00476{left:0.000000px;}
.x5_c00476{left:127.620000px;}
.x6_c00476{left:159.570000px;}
.x4_c00476{left:804.366150px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.lsa_c00476{letter-spacing:-0.576000pt;}
.ls8_c00476{letter-spacing:-0.320000pt;}
.ls9_c00476{letter-spacing:-0.256000pt;}
.lsb_c00476{letter-spacing:-0.128000pt;}
.ls7_c00476{letter-spacing:-0.064000pt;}
.ls6_c00476{letter-spacing:0.000000pt;}
.ls0_c00476{letter-spacing:0.064000pt;}
.ls2_c00476{letter-spacing:0.128000pt;}
.ls5_c00476{letter-spacing:15.808000pt;}
.ls1_c00476{letter-spacing:16.128000pt;}
.ls4_c00476{letter-spacing:18.880000pt;}
.ls3_c00476{letter-spacing:19.008000pt;}
.ws2_c00476{word-spacing:-16.128000pt;}
.ws3_c00476{word-spacing:-16.064000pt;}
.ws0_c00476{word-spacing:-16.000000pt;}
.ws1_c00476{word-spacing:-15.936000pt;}
.ws9_c00476{word-spacing:-15.872000pt;}
.ws4_c00476{word-spacing:-15.680000pt;}
.ws8_c00476{word-spacing:-15.424000pt;}
.ws12_c00476{word-spacing:-0.448000pt;}
.ws16_c00476{word-spacing:-0.384000pt;}
.wsc_c00476{word-spacing:-0.128000pt;}
.wsb_c00476{word-spacing:-0.117120pt;}
.wsf_c00476{word-spacing:-0.064000pt;}
.wsa_c00476{word-spacing:0.000000pt;}
.ws5_c00476{word-spacing:0.128000pt;}
.ws1a_c00476{word-spacing:0.175680pt;}
.ws15_c00476{word-spacing:0.256000pt;}
.ws6_c00476{word-spacing:0.448000pt;}
.ws21_c00476{word-spacing:1.216000pt;}
.ws18_c00476{word-spacing:1.856000pt;}
.ws19_c00476{word-spacing:1.920000pt;}
.ws25_c00476{word-spacing:2.176000pt;}
.ws1b_c00476{word-spacing:2.752000pt;}
.ws17_c00476{word-spacing:2.816000pt;}
.ws1c_c00476{word-spacing:2.880000pt;}
.ws20_c00476{word-spacing:3.136000pt;}
.ws1d_c00476{word-spacing:5.056000pt;}
.ws1e_c00476{word-spacing:5.824000pt;}
.ws1f_c00476{word-spacing:6.016000pt;}
.wse_c00476{word-spacing:6.080000pt;}
.ws7_c00476{word-spacing:6.208000pt;}
.ws26_c00476{word-spacing:6.272000pt;}
.ws27_c00476{word-spacing:6.656000pt;}
.ws24_c00476{word-spacing:10.240000pt;}
.ws23_c00476{word-spacing:10.560000pt;}
.ws13_c00476{word-spacing:12.480000pt;}
.ws22_c00476{word-spacing:12.736000pt;}
.wsd_c00476{word-spacing:12.992000pt;}
.ws14_c00476{word-spacing:13.376000pt;}
.ws10_c00476{word-spacing:23.936000pt;}
.ws11_c00476{word-spacing:24.000000pt;}
._0_c00476{margin-left:-0.960000pt;}
._1_c00476{width:1.088000pt;}
._3_c00476{width:2.304000pt;}
._2_c00476{width:28.352000pt;}
.fs1_c00476{font-size:58.560000pt;}
.fs0_c00476{font-size:64.000000pt;}
.y0_c00476{bottom:0.000000pt;}
.y1_c00476{bottom:54.887600pt;}
.y22_c00476{bottom:102.599467pt;}
.y21_c00476{bottom:130.199467pt;}
.y20_c00476{bottom:157.799467pt;}
.y1f_c00476{bottom:185.399467pt;}
.y1e_c00476{bottom:212.999467pt;}
.y1d_c00476{bottom:240.599467pt;}
.y1c_c00476{bottom:268.199467pt;}
.y1b_c00476{bottom:295.799467pt;}
.y1a_c00476{bottom:323.399467pt;}
.y19_c00476{bottom:350.999467pt;}
.y18_c00476{bottom:378.599467pt;}
.y17_c00476{bottom:406.199467pt;}
.y16_c00476{bottom:433.799467pt;}
.y15_c00476{bottom:461.399467pt;}
.y14_c00476{bottom:488.999467pt;}
.y13_c00476{bottom:516.599467pt;}
.y12_c00476{bottom:544.199467pt;}
.y11_c00476{bottom:571.799467pt;}
.y10_c00476{bottom:599.399467pt;}
.yf_c00476{bottom:626.999467pt;}
.ye_c00476{bottom:654.599467pt;}
.yd_c00476{bottom:682.199467pt;}
.yc_c00476{bottom:709.719467pt;}
.yb_c00476{bottom:737.319467pt;}
.ya_c00476{bottom:764.919467pt;}
.y9_c00476{bottom:792.519467pt;}
.y8_c00476{bottom:820.119467pt;}
.y7_c00476{bottom:847.719467pt;}
.y6_c00476{bottom:875.319467pt;}
.y25_c00476{bottom:902.919467pt;}
.y5_c00476{bottom:930.519467pt;}
.y4_c00476{bottom:958.119467pt;}
.y24_c00476{bottom:985.719467pt;}
.y3_c00476{bottom:1013.319467pt;}
.y23_c00476{bottom:1043.480107pt;}
.y2_c00476{bottom:1061.399467pt;}
.h2_c00476{height:44.800000pt;}
.h3_c00476{height:48.294844pt;}
.h4_c00476{height:68.288000pt;}
.h0_c00476{height:1122.520000pt;}
.h1_c00476{height:1122.666667pt;}
.w2_c00476{width:0.000000pt;}
.w3_c00476{width:0.058667pt;}
.w0_c00476{width:793.701333pt;}
.w1_c00476{width:794.000000pt;}
.x1_c00476{left:-745.700800pt;}
.x2_c00476{left:-680.260800pt;}
.x3_c00476{left:-651.860800pt;}
.x0_c00476{left:0.000000pt;}
.x5_c00476{left:113.440000pt;}
.x6_c00476{left:141.840000pt;}
.x4_c00476{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00477;src:url('chunks/assets/font_df1074899e4ae497e924be9f.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00477;src:url('chunks/assets/font_58aad68eb3d38bcd1d698071.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00477{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls4_c00477{letter-spacing:-0.144000px;}
.ls5_c00477{letter-spacing:-0.072000px;}
.ls3_c00477{letter-spacing:0.000000px;}
.ls2_c00477{letter-spacing:0.072000px;}
.ls0_c00477{letter-spacing:0.144000px;}
.ls1_c00477{letter-spacing:18.144000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00477{word-spacing:-18.072000px;}
.ws3_c00477{word-spacing:-17.928000px;}
.ws0_c00477{word-spacing:-17.856000px;}
.wsd_c00477{word-spacing:-0.432000px;}
.ws11_c00477{word-spacing:-0.360000px;}
.ws9_c00477{word-spacing:-0.144000px;}
.ws6_c00477{word-spacing:-0.131760px;}
.wsa_c00477{word-spacing:-0.072000px;}
.ws5_c00477{word-spacing:0.000000px;}
.ws4_c00477{word-spacing:0.144000px;}
.wsb_c00477{word-spacing:0.288000px;}
.ws1_c00477{word-spacing:0.504000px;}
.ws14_c00477{word-spacing:1.008000px;}
.ws8_c00477{word-spacing:1.800000px;}
.ws13_c00477{word-spacing:2.808000px;}
.ws7_c00477{word-spacing:4.320000px;}
.ws12_c00477{word-spacing:6.048000px;}
.wse_c00477{word-spacing:7.560000px;}
.wsc_c00477{word-spacing:8.640000px;}
.ws17_c00477{word-spacing:10.728000px;}
.ws10_c00477{word-spacing:11.880000px;}
.wsf_c00477{word-spacing:12.168000px;}
.ws15_c00477{word-spacing:12.528000px;}
.ws16_c00477{word-spacing:12.600000px;}
._0_c00477{margin-left:-1.080000px;}
._1_c00477{width:1.008000px;}
.fc1_c00477{color:rgb(0,0,0);}
.fc0_c00477{color:rgb(35,31,32);}
.fs1_c00477{font-size:65.880000px;}
.fs0_c00477{font-size:72.000000px;}
.y0_c00477{bottom:0.000000px;}
.y1_c00477{bottom:61.748550px;}
.y23_c00477{bottom:146.474400px;}
.y22_c00477{bottom:177.524400px;}
.y21_c00477{bottom:208.574400px;}
.y20_c00477{bottom:239.624400px;}
.y1f_c00477{bottom:270.674400px;}
.y1e_c00477{bottom:301.724400px;}
.y1d_c00477{bottom:332.774400px;}
.y1c_c00477{bottom:363.824400px;}
.y1b_c00477{bottom:394.874400px;}
.y1a_c00477{bottom:425.924400px;}
.y19_c00477{bottom:456.974400px;}
.y18_c00477{bottom:488.024400px;}
.y17_c00477{bottom:519.074400px;}
.y16_c00477{bottom:550.124400px;}
.y15_c00477{bottom:581.174400px;}
.y14_c00477{bottom:612.224400px;}
.y13_c00477{bottom:643.274400px;}
.y12_c00477{bottom:674.324400px;}
.y11_c00477{bottom:705.374400px;}
.y10_c00477{bottom:736.424400px;}
.yf_c00477{bottom:767.474400px;}
.ye_c00477{bottom:798.434400px;}
.yd_c00477{bottom:829.484400px;}
.yc_c00477{bottom:860.534400px;}
.yb_c00477{bottom:891.584400px;}
.ya_c00477{bottom:922.634400px;}
.y9_c00477{bottom:953.684400px;}
.y8_c00477{bottom:984.734400px;}
.y7_c00477{bottom:1015.784400px;}
.y6_c00477{bottom:1046.834400px;}
.y5_c00477{bottom:1077.884400px;}
.y4_c00477{bottom:1108.934400px;}
.y3_c00477{bottom:1139.984400px;}
.y2_c00477{bottom:1194.074400px;}
.h2_c00477{height:50.400000px;}
.h3_c00477{height:54.331699px;}
.h4_c00477{height:76.824000px;}
.h0_c00477{height:1262.835000px;}
.h1_c00477{height:1263.000000px;}
.w0_c00477{width:892.914000px;}
.w1_c00477{width:893.250000px;}
.x0_c00477{left:0.000000px;}
.x1_c00477{left:54.000000px;}
.x2_c00477{left:127.620000px;}
.x3_c00477{left:159.570000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls4_c00477{letter-spacing:-0.128000pt;}
.ls5_c00477{letter-spacing:-0.064000pt;}
.ls3_c00477{letter-spacing:0.000000pt;}
.ls2_c00477{letter-spacing:0.064000pt;}
.ls0_c00477{letter-spacing:0.128000pt;}
.ls1_c00477{letter-spacing:16.128000pt;}
.ws2_c00477{word-spacing:-16.064000pt;}
.ws3_c00477{word-spacing:-15.936000pt;}
.ws0_c00477{word-spacing:-15.872000pt;}
.wsd_c00477{word-spacing:-0.384000pt;}
.ws11_c00477{word-spacing:-0.320000pt;}
.ws9_c00477{word-spacing:-0.128000pt;}
.ws6_c00477{word-spacing:-0.117120pt;}
.wsa_c00477{word-spacing:-0.064000pt;}
.ws5_c00477{word-spacing:0.000000pt;}
.ws4_c00477{word-spacing:0.128000pt;}
.wsb_c00477{word-spacing:0.256000pt;}
.ws1_c00477{word-spacing:0.448000pt;}
.ws14_c00477{word-spacing:0.896000pt;}
.ws8_c00477{word-spacing:1.600000pt;}
.ws13_c00477{word-spacing:2.496000pt;}
.ws7_c00477{word-spacing:3.840000pt;}
.ws12_c00477{word-spacing:5.376000pt;}
.wse_c00477{word-spacing:6.720000pt;}
.wsc_c00477{word-spacing:7.680000pt;}
.ws17_c00477{word-spacing:9.536000pt;}
.ws10_c00477{word-spacing:10.560000pt;}
.wsf_c00477{word-spacing:10.816000pt;}
.ws15_c00477{word-spacing:11.136000pt;}
.ws16_c00477{word-spacing:11.200000pt;}
._0_c00477{margin-left:-0.960000pt;}
._1_c00477{width:0.896000pt;}
.fs1_c00477{font-size:58.560000pt;}
.fs0_c00477{font-size:64.000000pt;}
.y0_c00477{bottom:0.000000pt;}
.y1_c00477{bottom:54.887600pt;}
.y23_c00477{bottom:130.199467pt;}
.y22_c00477{bottom:157.799467pt;}
.y21_c00477{bottom:185.399467pt;}
.y20_c00477{bottom:212.999467pt;}
.y1f_c00477{bottom:240.599467pt;}
.y1e_c00477{bottom:268.199467pt;}
.y1d_c00477{bottom:295.799467pt;}
.y1c_c00477{bottom:323.399467pt;}
.y1b_c00477{bottom:350.999467pt;}
.y1a_c00477{bottom:378.599467pt;}
.y19_c00477{bottom:406.199467pt;}
.y18_c00477{bottom:433.799467pt;}
.y17_c00477{bottom:461.399467pt;}
.y16_c00477{bottom:488.999467pt;}
.y15_c00477{bottom:516.599467pt;}
.y14_c00477{bottom:544.199467pt;}
.y13_c00477{bottom:571.799467pt;}
.y12_c00477{bottom:599.399467pt;}
.y11_c00477{bottom:626.999467pt;}
.y10_c00477{bottom:654.599467pt;}
.yf_c00477{bottom:682.199467pt;}
.ye_c00477{bottom:709.719467pt;}
.yd_c00477{bottom:737.319467pt;}
.yc_c00477{bottom:764.919467pt;}
.yb_c00477{bottom:792.519467pt;}
.ya_c00477{bottom:820.119467pt;}
.y9_c00477{bottom:847.719467pt;}
.y8_c00477{bottom:875.319467pt;}
.y7_c00477{bottom:902.919467pt;}
.y6_c00477{bottom:930.519467pt;}
.y5_c00477{bottom:958.119467pt;}
.y4_c00477{bottom:985.719467pt;}
.y3_c00477{bottom:1013.319467pt;}
.y2_c00477{bottom:1061.399467pt;}
.h2_c00477{height:44.800000pt;}
.h3_c00477{height:48.294844pt;}
.h4_c00477{height:68.288000pt;}
.h0_c00477{height:1122.520000pt;}
.h1_c00477{height:1122.666667pt;}
.w0_c00477{width:793.701333pt;}
.w1_c00477{width:794.000000pt;}
.x0_c00477{left:0.000000pt;}
.x1_c00477{left:48.000000pt;}
.x2_c00477{left:113.440000pt;}
.x3_c00477{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00478;src:url('chunks/assets/font_f6c303af71db77db3f5b99e3.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00478;src:url('chunks/assets/font_2eccbfc2e5d3943c3fe5e6a0.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00478;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00478{font-family:ff4_c00478;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00478;src:url('chunks/assets/font_8ea153478abc31da568e8f28.woff2')format("woff");}.ff5_c00478{font-family:ff5_c00478;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00478;src:url('chunks/assets/font_88d722b37ad422930fd72ac4.woff2')format("woff");}.ff6_c00478{font-family:ff6_c00478;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00478{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls8_c00478{letter-spacing:-0.648000px;}
.ls7_c00478{letter-spacing:-0.360000px;}
.ls6_c00478{letter-spacing:-0.288000px;}
.ls4_c00478{letter-spacing:-0.144000px;}
.ls5_c00478{letter-spacing:-0.072000px;}
.ls3_c00478{letter-spacing:0.000000px;}
.ls2_c00478{letter-spacing:0.072000px;}
.ls0_c00478{letter-spacing:0.144000px;}
.ls1_c00478{letter-spacing:18.144000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00478{word-spacing:-18.072000px;}
.ws3_c00478{word-spacing:-17.928000px;}
.ws0_c00478{word-spacing:-17.856000px;}
.ws5_c00478{word-spacing:-17.352000px;}
.wse_c00478{word-spacing:-0.432000px;}
.ws12_c00478{word-spacing:-0.360000px;}
.wsa_c00478{word-spacing:-0.144000px;}
.ws7_c00478{word-spacing:-0.131760px;}
.wsb_c00478{word-spacing:-0.072000px;}
.ws6_c00478{word-spacing:0.000000px;}
.ws4_c00478{word-spacing:0.144000px;}
.ws19_c00478{word-spacing:0.197640px;}
.wsc_c00478{word-spacing:0.288000px;}
.ws1_c00478{word-spacing:0.504000px;}
.ws15_c00478{word-spacing:1.008000px;}
.ws22_c00478{word-spacing:1.368000px;}
.ws23_c00478{word-spacing:1.728000px;}
.ws9_c00478{word-spacing:1.800000px;}
.ws1d_c00478{word-spacing:2.520000px;}
.ws14_c00478{word-spacing:2.808000px;}
.ws1e_c00478{word-spacing:4.248000px;}
.ws8_c00478{word-spacing:4.320000px;}
.ws1f_c00478{word-spacing:4.608000px;}
.ws26_c00478{word-spacing:5.328000px;}
.ws13_c00478{word-spacing:6.048000px;}
.wsf_c00478{word-spacing:7.560000px;}
.wsd_c00478{word-spacing:8.640000px;}
.ws1b_c00478{word-spacing:9.648000px;}
.ws18_c00478{word-spacing:10.728000px;}
.ws11_c00478{word-spacing:11.880000px;}
.ws10_c00478{word-spacing:12.168000px;}
.ws16_c00478{word-spacing:12.528000px;}
.ws17_c00478{word-spacing:12.600000px;}
.ws1a_c00478{word-spacing:13.248000px;}
.ws24_c00478{word-spacing:15.408000px;}
.ws25_c00478{word-spacing:15.840000px;}
.ws1c_c00478{word-spacing:16.128000px;}
.ws21_c00478{word-spacing:17.928000px;}
.ws20_c00478{word-spacing:18.360000px;}
._0_c00478{margin-left:-1.080000px;}
._1_c00478{width:1.008000px;}
.fc2_c00478{color:transparent;}
.fc1_c00478{color:rgb(0,0,0);}
.fc0_c00478{color:rgb(35,31,32);}
.fs1_c00478{font-size:65.880000px;}
.fs0_c00478{font-size:72.000000px;}
.y0_c00478{bottom:0.000000px;}
.y1_c00478{bottom:61.748550px;}
.y25_c00478{bottom:115.424400px;}
.y23_c00478{bottom:146.474400px;}
.y22_c00478{bottom:177.524400px;}
.y21_c00478{bottom:208.574400px;}
.y20_c00478{bottom:239.624400px;}
.y1f_c00478{bottom:270.674400px;}
.y1e_c00478{bottom:301.724400px;}
.y1d_c00478{bottom:332.774400px;}
.y1c_c00478{bottom:363.824400px;}
.y1b_c00478{bottom:394.874400px;}
.y1a_c00478{bottom:425.924400px;}
.y19_c00478{bottom:456.974400px;}
.y18_c00478{bottom:488.024400px;}
.y17_c00478{bottom:519.074400px;}
.y16_c00478{bottom:550.124400px;}
.y15_c00478{bottom:581.174400px;}
.y14_c00478{bottom:612.224400px;}
.y13_c00478{bottom:643.274400px;}
.y12_c00478{bottom:674.324400px;}
.y11_c00478{bottom:705.374400px;}
.y10_c00478{bottom:736.424400px;}
.yf_c00478{bottom:767.474400px;}
.ye_c00478{bottom:798.434400px;}
.yd_c00478{bottom:829.484400px;}
.yc_c00478{bottom:860.534400px;}
.yb_c00478{bottom:891.584400px;}
.ya_c00478{bottom:922.634400px;}
.y9_c00478{bottom:953.684400px;}
.y8_c00478{bottom:984.734400px;}
.y7_c00478{bottom:1015.784400px;}
.y6_c00478{bottom:1046.834400px;}
.y5_c00478{bottom:1077.884400px;}
.y4_c00478{bottom:1108.934400px;}
.y3_c00478{bottom:1139.984400px;}
.y24_c00478{bottom:1173.915120px;}
.y2_c00478{bottom:1194.074400px;}
.h2_c00478{height:50.400000px;}
.h3_c00478{height:54.331699px;}
.h4_c00478{height:76.824000px;}
.h0_c00478{height:1262.835000px;}
.h1_c00478{height:1263.000000px;}
.w2_c00478{width:0.000000px;}
.w3_c00478{width:0.066000px;}
.w0_c00478{width:892.914000px;}
.w1_c00478{width:893.250000px;}
.x1_c00478{left:-838.913400px;}
.x2_c00478{left:-765.293400px;}
.x3_c00478{left:-733.343400px;}
.x0_c00478{left:0.000000px;}
.x5_c00478{left:127.620000px;}
.x6_c00478{left:159.570000px;}
.x4_c00478{left:804.366150px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls8_c00478{letter-spacing:-0.576000pt;}
.ls7_c00478{letter-spacing:-0.320000pt;}
.ls6_c00478{letter-spacing:-0.256000pt;}
.ls4_c00478{letter-spacing:-0.128000pt;}
.ls5_c00478{letter-spacing:-0.064000pt;}
.ls3_c00478{letter-spacing:0.000000pt;}
.ls2_c00478{letter-spacing:0.064000pt;}
.ls0_c00478{letter-spacing:0.128000pt;}
.ls1_c00478{letter-spacing:16.128000pt;}
.ws2_c00478{word-spacing:-16.064000pt;}
.ws3_c00478{word-spacing:-15.936000pt;}
.ws0_c00478{word-spacing:-15.872000pt;}
.ws5_c00478{word-spacing:-15.424000pt;}
.wse_c00478{word-spacing:-0.384000pt;}
.ws12_c00478{word-spacing:-0.320000pt;}
.wsa_c00478{word-spacing:-0.128000pt;}
.ws7_c00478{word-spacing:-0.117120pt;}
.wsb_c00478{word-spacing:-0.064000pt;}
.ws6_c00478{word-spacing:0.000000pt;}
.ws4_c00478{word-spacing:0.128000pt;}
.ws19_c00478{word-spacing:0.175680pt;}
.wsc_c00478{word-spacing:0.256000pt;}
.ws1_c00478{word-spacing:0.448000pt;}
.ws15_c00478{word-spacing:0.896000pt;}
.ws22_c00478{word-spacing:1.216000pt;}
.ws23_c00478{word-spacing:1.536000pt;}
.ws9_c00478{word-spacing:1.600000pt;}
.ws1d_c00478{word-spacing:2.240000pt;}
.ws14_c00478{word-spacing:2.496000pt;}
.ws1e_c00478{word-spacing:3.776000pt;}
.ws8_c00478{word-spacing:3.840000pt;}
.ws1f_c00478{word-spacing:4.096000pt;}
.ws26_c00478{word-spacing:4.736000pt;}
.ws13_c00478{word-spacing:5.376000pt;}
.wsf_c00478{word-spacing:6.720000pt;}
.wsd_c00478{word-spacing:7.680000pt;}
.ws1b_c00478{word-spacing:8.576000pt;}
.ws18_c00478{word-spacing:9.536000pt;}
.ws11_c00478{word-spacing:10.560000pt;}
.ws10_c00478{word-spacing:10.816000pt;}
.ws16_c00478{word-spacing:11.136000pt;}
.ws17_c00478{word-spacing:11.200000pt;}
.ws1a_c00478{word-spacing:11.776000pt;}
.ws24_c00478{word-spacing:13.696000pt;}
.ws25_c00478{word-spacing:14.080000pt;}
.ws1c_c00478{word-spacing:14.336000pt;}
.ws21_c00478{word-spacing:15.936000pt;}
.ws20_c00478{word-spacing:16.320000pt;}
._0_c00478{margin-left:-0.960000pt;}
._1_c00478{width:0.896000pt;}
.fs1_c00478{font-size:58.560000pt;}
.fs0_c00478{font-size:64.000000pt;}
.y0_c00478{bottom:0.000000pt;}
.y1_c00478{bottom:54.887600pt;}
.y25_c00478{bottom:102.599467pt;}
.y23_c00478{bottom:130.199467pt;}
.y22_c00478{bottom:157.799467pt;}
.y21_c00478{bottom:185.399467pt;}
.y20_c00478{bottom:212.999467pt;}
.y1f_c00478{bottom:240.599467pt;}
.y1e_c00478{bottom:268.199467pt;}
.y1d_c00478{bottom:295.799467pt;}
.y1c_c00478{bottom:323.399467pt;}
.y1b_c00478{bottom:350.999467pt;}
.y1a_c00478{bottom:378.599467pt;}
.y19_c00478{bottom:406.199467pt;}
.y18_c00478{bottom:433.799467pt;}
.y17_c00478{bottom:461.399467pt;}
.y16_c00478{bottom:488.999467pt;}
.y15_c00478{bottom:516.599467pt;}
.y14_c00478{bottom:544.199467pt;}
.y13_c00478{bottom:571.799467pt;}
.y12_c00478{bottom:599.399467pt;}
.y11_c00478{bottom:626.999467pt;}
.y10_c00478{bottom:654.599467pt;}
.yf_c00478{bottom:682.199467pt;}
.ye_c00478{bottom:709.719467pt;}
.yd_c00478{bottom:737.319467pt;}
.yc_c00478{bottom:764.919467pt;}
.yb_c00478{bottom:792.519467pt;}
.ya_c00478{bottom:820.119467pt;}
.y9_c00478{bottom:847.719467pt;}
.y8_c00478{bottom:875.319467pt;}
.y7_c00478{bottom:902.919467pt;}
.y6_c00478{bottom:930.519467pt;}
.y5_c00478{bottom:958.119467pt;}
.y4_c00478{bottom:985.719467pt;}
.y3_c00478{bottom:1013.319467pt;}
.y24_c00478{bottom:1043.480107pt;}
.y2_c00478{bottom:1061.399467pt;}
.h2_c00478{height:44.800000pt;}
.h3_c00478{height:48.294844pt;}
.h4_c00478{height:68.288000pt;}
.h0_c00478{height:1122.520000pt;}
.h1_c00478{height:1122.666667pt;}
.w2_c00478{width:0.000000pt;}
.w3_c00478{width:0.058667pt;}
.w0_c00478{width:793.701333pt;}
.w1_c00478{width:794.000000pt;}
.x1_c00478{left:-745.700800pt;}
.x2_c00478{left:-680.260800pt;}
.x3_c00478{left:-651.860800pt;}
.x0_c00478{left:0.000000pt;}
.x5_c00478{left:113.440000pt;}
.x6_c00478{left:141.840000pt;}
.x4_c00478{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00479;src:url('chunks/assets/font_b7e3d79e5c1320ab78195012.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00479;src:url('chunks/assets/font_dc34791fbf50f8e9dd014c8e.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls6_c00479{letter-spacing:-0.144000px;}
.ls7_c00479{letter-spacing:-0.072000px;}
.ls5_c00479{letter-spacing:0.000000px;}
.ls1_c00479{letter-spacing:0.072000px;}
.ls2_c00479{letter-spacing:0.144000px;}
.ls0_c00479{letter-spacing:18.144000px;}
.ls3_c00479{letter-spacing:20.304000px;}
.ls4_c00479{letter-spacing:23.544000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00479{word-spacing:-18.072000px;}
.ws5_c00479{word-spacing:-18.000000px;}
.ws2_c00479{word-spacing:-17.928000px;}
.ws0_c00479{word-spacing:-17.856000px;}
.ws15_c00479{word-spacing:-0.432000px;}
.ws11_c00479{word-spacing:-0.360000px;}
.ws16_c00479{word-spacing:-0.144000px;}
.ws9_c00479{word-spacing:-0.131760px;}
.wsa_c00479{word-spacing:-0.072000px;}
.ws8_c00479{word-spacing:0.000000px;}
.ws12_c00479{word-spacing:0.072000px;}
.ws1_c00479{word-spacing:0.144000px;}
.ws3_c00479{word-spacing:0.504000px;}
.ws10_c00479{word-spacing:1.008000px;}
.ws17_c00479{word-spacing:2.088000px;}
.ws13_c00479{word-spacing:2.160000px;}
.ws4_c00479{word-spacing:2.304000px;}
.ws14_c00479{word-spacing:4.248000px;}
.wsb_c00479{word-spacing:5.256000px;}
.wsc_c00479{word-spacing:5.328000px;}
.ws1a_c00479{word-spacing:5.400000px;}
.ws6_c00479{word-spacing:5.544000px;}
.wsd_c00479{word-spacing:5.616000px;}
.wse_c00479{word-spacing:5.688000px;}
.ws19_c00479{word-spacing:6.120000px;}
.ws18_c00479{word-spacing:8.928000px;}
.ws1b_c00479{word-spacing:16.200000px;}
.wsf_c00479{word-spacing:16.560000px;}
._0_c00479{margin-left:-1.310400px;}
._1_c00479{width:1.080000px;}
.fc1_c00479{color:rgb(0,0,0);}
.fc0_c00479{color:rgb(35,31,32);}
.fs1_c00479{font-size:65.880000px;}
.fs0_c00479{font-size:72.000000px;}
.y0_c00479{bottom:0.000000px;}
.y1_c00479{bottom:61.748550px;}
.y24_c00479{bottom:115.424400px;}
.y23_c00479{bottom:146.474400px;}
.y22_c00479{bottom:177.524400px;}
.y21_c00479{bottom:208.574400px;}
.y20_c00479{bottom:239.624400px;}
.y1f_c00479{bottom:270.674400px;}
.y1e_c00479{bottom:301.724400px;}
.y1d_c00479{bottom:332.774400px;}
.y1c_c00479{bottom:363.824400px;}
.y1b_c00479{bottom:394.874400px;}
.y1a_c00479{bottom:425.924400px;}
.y19_c00479{bottom:456.974400px;}
.y18_c00479{bottom:488.024400px;}
.y17_c00479{bottom:519.074400px;}
.y16_c00479{bottom:550.124400px;}
.y15_c00479{bottom:581.174400px;}
.y14_c00479{bottom:612.224400px;}
.y13_c00479{bottom:643.274400px;}
.y12_c00479{bottom:674.324400px;}
.y11_c00479{bottom:705.374400px;}
.y10_c00479{bottom:736.424400px;}
.yf_c00479{bottom:767.474400px;}
.ye_c00479{bottom:798.434400px;}
.yd_c00479{bottom:829.484400px;}
.yc_c00479{bottom:860.534400px;}
.yb_c00479{bottom:891.584400px;}
.ya_c00479{bottom:922.634400px;}
.y9_c00479{bottom:953.684400px;}
.y8_c00479{bottom:984.734400px;}
.y7_c00479{bottom:1015.784400px;}
.y6_c00479{bottom:1046.834400px;}
.y5_c00479{bottom:1077.884400px;}
.y4_c00479{bottom:1108.934400px;}
.y3_c00479{bottom:1139.984400px;}
.y2_c00479{bottom:1194.074400px;}
.h2_c00479{height:50.400000px;}
.h3_c00479{height:54.331699px;}
.h4_c00479{height:76.824000px;}
.h0_c00479{height:1262.835000px;}
.h1_c00479{height:1263.000000px;}
.w0_c00479{width:892.914000px;}
.w1_c00479{width:893.250000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:54.000000px;}
.x2_c00479{left:127.620000px;}
.x3_c00479{left:159.570000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls6_c00479{letter-spacing:-0.128000pt;}
.ls7_c00479{letter-spacing:-0.064000pt;}
.ls5_c00479{letter-spacing:0.000000pt;}
.ls1_c00479{letter-spacing:0.064000pt;}
.ls2_c00479{letter-spacing:0.128000pt;}
.ls0_c00479{letter-spacing:16.128000pt;}
.ls3_c00479{letter-spacing:18.048000pt;}
.ls4_c00479{letter-spacing:20.928000pt;}
.ws7_c00479{word-spacing:-16.064000pt;}
.ws5_c00479{word-spacing:-16.000000pt;}
.ws2_c00479{word-spacing:-15.936000pt;}
.ws0_c00479{word-spacing:-15.872000pt;}
.ws15_c00479{word-spacing:-0.384000pt;}
.ws11_c00479{word-spacing:-0.320000pt;}
.ws16_c00479{word-spacing:-0.128000pt;}
.ws9_c00479{word-spacing:-0.117120pt;}
.wsa_c00479{word-spacing:-0.064000pt;}
.ws8_c00479{word-spacing:0.000000pt;}
.ws12_c00479{word-spacing:0.064000pt;}
.ws1_c00479{word-spacing:0.128000pt;}
.ws3_c00479{word-spacing:0.448000pt;}
.ws10_c00479{word-spacing:0.896000pt;}
.ws17_c00479{word-spacing:1.856000pt;}
.ws13_c00479{word-spacing:1.920000pt;}
.ws4_c00479{word-spacing:2.048000pt;}
.ws14_c00479{word-spacing:3.776000pt;}
.wsb_c00479{word-spacing:4.672000pt;}
.wsc_c00479{word-spacing:4.736000pt;}
.ws1a_c00479{word-spacing:4.800000pt;}
.ws6_c00479{word-spacing:4.928000pt;}
.wsd_c00479{word-spacing:4.992000pt;}
.wse_c00479{word-spacing:5.056000pt;}
.ws19_c00479{word-spacing:5.440000pt;}
.ws18_c00479{word-spacing:7.936000pt;}
.ws1b_c00479{word-spacing:14.400000pt;}
.wsf_c00479{word-spacing:14.720000pt;}
._0_c00479{margin-left:-1.164800pt;}
._1_c00479{width:0.960000pt;}
.fs1_c00479{font-size:58.560000pt;}
.fs0_c00479{font-size:64.000000pt;}
.y0_c00479{bottom:0.000000pt;}
.y1_c00479{bottom:54.887600pt;}
.y24_c00479{bottom:102.599467pt;}
.y23_c00479{bottom:130.199467pt;}
.y22_c00479{bottom:157.799467pt;}
.y21_c00479{bottom:185.399467pt;}
.y20_c00479{bottom:212.999467pt;}
.y1f_c00479{bottom:240.599467pt;}
.y1e_c00479{bottom:268.199467pt;}
.y1d_c00479{bottom:295.799467pt;}
.y1c_c00479{bottom:323.399467pt;}
.y1b_c00479{bottom:350.999467pt;}
.y1a_c00479{bottom:378.599467pt;}
.y19_c00479{bottom:406.199467pt;}
.y18_c00479{bottom:433.799467pt;}
.y17_c00479{bottom:461.399467pt;}
.y16_c00479{bottom:488.999467pt;}
.y15_c00479{bottom:516.599467pt;}
.y14_c00479{bottom:544.199467pt;}
.y13_c00479{bottom:571.799467pt;}
.y12_c00479{bottom:599.399467pt;}
.y11_c00479{bottom:626.999467pt;}
.y10_c00479{bottom:654.599467pt;}
.yf_c00479{bottom:682.199467pt;}
.ye_c00479{bottom:709.719467pt;}
.yd_c00479{bottom:737.319467pt;}
.yc_c00479{bottom:764.919467pt;}
.yb_c00479{bottom:792.519467pt;}
.ya_c00479{bottom:820.119467pt;}
.y9_c00479{bottom:847.719467pt;}
.y8_c00479{bottom:875.319467pt;}
.y7_c00479{bottom:902.919467pt;}
.y6_c00479{bottom:930.519467pt;}
.y5_c00479{bottom:958.119467pt;}
.y4_c00479{bottom:985.719467pt;}
.y3_c00479{bottom:1013.319467pt;}
.y2_c00479{bottom:1061.399467pt;}
.h2_c00479{height:44.800000pt;}
.h3_c00479{height:48.294844pt;}
.h4_c00479{height:68.288000pt;}
.h0_c00479{height:1122.520000pt;}
.h1_c00479{height:1122.666667pt;}
.w0_c00479{width:793.701333pt;}
.w1_c00479{width:794.000000pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:48.000000pt;}
.x2_c00479{left:113.440000pt;}
.x3_c00479{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00480;src:url('chunks/assets/font_0bd72e143cae1ac9e355b217.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00480;src:url('chunks/assets/font_46de807fd5e0106e8112ada3.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00480;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00480;src:url('chunks/assets/font_80eb54c3efecc2e25c277c85.woff2')format("woff");}.ff5_c00480{font-family:ff5_c00480;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00480;src:url('chunks/assets/font_e7916b65969c5a059f36accf.woff2')format("woff");}.ff6_c00480{font-family:ff6_c00480;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls8_c00480{letter-spacing:-0.216000px;}
.ls6_c00480{letter-spacing:-0.144000px;}
.ls7_c00480{letter-spacing:-0.072000px;}
.ls5_c00480{letter-spacing:0.000000px;}
.ls1_c00480{letter-spacing:0.072000px;}
.ls2_c00480{letter-spacing:0.144000px;}
.ls0_c00480{letter-spacing:18.144000px;}
.ls3_c00480{letter-spacing:20.304000px;}
.ls4_c00480{letter-spacing:23.544000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00480{word-spacing:-18.144000px;}
.ws7_c00480{word-spacing:-18.072000px;}
.ws5_c00480{word-spacing:-18.000000px;}
.ws2_c00480{word-spacing:-17.928000px;}
.ws0_c00480{word-spacing:-17.856000px;}
.ws8_c00480{word-spacing:-17.784000px;}
.ws18_c00480{word-spacing:-0.432000px;}
.ws14_c00480{word-spacing:-0.360000px;}
.ws19_c00480{word-spacing:-0.144000px;}
.wsc_c00480{word-spacing:-0.131760px;}
.wsd_c00480{word-spacing:-0.072000px;}
.wsb_c00480{word-spacing:0.000000px;}
.ws15_c00480{word-spacing:0.072000px;}
.ws1_c00480{word-spacing:0.144000px;}
.ws1f_c00480{word-spacing:0.197640px;}
.ws3_c00480{word-spacing:0.504000px;}
.ws13_c00480{word-spacing:1.008000px;}
.ws24_c00480{word-spacing:1.728000px;}
.ws1a_c00480{word-spacing:2.088000px;}
.ws16_c00480{word-spacing:2.160000px;}
.ws4_c00480{word-spacing:2.304000px;}
.ws22_c00480{word-spacing:2.880000px;}
.ws29_c00480{word-spacing:3.240000px;}
.ws17_c00480{word-spacing:4.248000px;}
.wse_c00480{word-spacing:5.256000px;}
.wsf_c00480{word-spacing:5.328000px;}
.ws1d_c00480{word-spacing:5.400000px;}
.ws6_c00480{word-spacing:5.544000px;}
.ws10_c00480{word-spacing:5.616000px;}
.ws11_c00480{word-spacing:5.688000px;}
.ws1c_c00480{word-spacing:6.120000px;}
.ws20_c00480{word-spacing:7.488000px;}
.ws26_c00480{word-spacing:8.568000px;}
.ws1b_c00480{word-spacing:8.928000px;}
.ws23_c00480{word-spacing:9.360000px;}
.wsa_c00480{word-spacing:9.504000px;}
.ws27_c00480{word-spacing:10.008000px;}
.ws28_c00480{word-spacing:10.800000px;}
.ws21_c00480{word-spacing:11.088000px;}
.ws25_c00480{word-spacing:11.448000px;}
.ws1e_c00480{word-spacing:16.200000px;}
.ws12_c00480{word-spacing:16.560000px;}
._0_c00480{margin-left:-1.310400px;}
._1_c00480{width:1.080000px;}
.fc2_c00480{color:transparent;}
.fc1_c00480{color:rgb(0,0,0);}
.fc0_c00480{color:rgb(35,31,32);}
.fs1_c00480{font-size:65.880000px;}
.fs0_c00480{font-size:72.000000px;}
.y0_c00480{bottom:0.000000px;}
.y1_c00480{bottom:61.748550px;}
.y24_c00480{bottom:115.424400px;}
.y23_c00480{bottom:146.474400px;}
.y22_c00480{bottom:177.524400px;}
.y21_c00480{bottom:208.574400px;}
.y20_c00480{bottom:239.624400px;}
.y1f_c00480{bottom:270.674400px;}
.y1e_c00480{bottom:301.724400px;}
.y1d_c00480{bottom:332.774400px;}
.y1c_c00480{bottom:363.824400px;}
.y1b_c00480{bottom:394.874400px;}
.y1a_c00480{bottom:425.924400px;}
.y19_c00480{bottom:456.974400px;}
.y18_c00480{bottom:488.024400px;}
.y17_c00480{bottom:519.074400px;}
.y16_c00480{bottom:550.124400px;}
.y15_c00480{bottom:581.174400px;}
.y14_c00480{bottom:612.224400px;}
.y13_c00480{bottom:643.274400px;}
.y12_c00480{bottom:674.324400px;}
.y11_c00480{bottom:705.374400px;}
.y10_c00480{bottom:736.424400px;}
.yf_c00480{bottom:767.474400px;}
.ye_c00480{bottom:798.434400px;}
.yd_c00480{bottom:829.484400px;}
.yc_c00480{bottom:860.534400px;}
.yb_c00480{bottom:891.584400px;}
.ya_c00480{bottom:922.634400px;}
.y9_c00480{bottom:953.684400px;}
.y8_c00480{bottom:984.734400px;}
.y7_c00480{bottom:1015.784400px;}
.y6_c00480{bottom:1046.834400px;}
.y5_c00480{bottom:1077.884400px;}
.y4_c00480{bottom:1108.934400px;}
.y3_c00480{bottom:1139.984400px;}
.y25_c00480{bottom:1173.915120px;}
.y2_c00480{bottom:1194.074400px;}
.h2_c00480{height:50.400000px;}
.h3_c00480{height:54.331699px;}
.h4_c00480{height:76.824000px;}
.h0_c00480{height:1262.835000px;}
.h1_c00480{height:1263.000000px;}
.w2_c00480{width:0.000000px;}
.w3_c00480{width:0.066000px;}
.w0_c00480{width:892.914000px;}
.w1_c00480{width:893.250000px;}
.x1_c00480{left:-838.913400px;}
.x2_c00480{left:-765.293400px;}
.x3_c00480{left:-733.343400px;}
.x0_c00480{left:0.000000px;}
.x5_c00480{left:127.620000px;}
.x6_c00480{left:159.570000px;}
.x4_c00480{left:804.366150px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls8_c00480{letter-spacing:-0.192000pt;}
.ls6_c00480{letter-spacing:-0.128000pt;}
.ls7_c00480{letter-spacing:-0.064000pt;}
.ls5_c00480{letter-spacing:0.000000pt;}
.ls1_c00480{letter-spacing:0.064000pt;}
.ls2_c00480{letter-spacing:0.128000pt;}
.ls0_c00480{letter-spacing:16.128000pt;}
.ls3_c00480{letter-spacing:18.048000pt;}
.ls4_c00480{letter-spacing:20.928000pt;}
.ws9_c00480{word-spacing:-16.128000pt;}
.ws7_c00480{word-spacing:-16.064000pt;}
.ws5_c00480{word-spacing:-16.000000pt;}
.ws2_c00480{word-spacing:-15.936000pt;}
.ws0_c00480{word-spacing:-15.872000pt;}
.ws8_c00480{word-spacing:-15.808000pt;}
.ws18_c00480{word-spacing:-0.384000pt;}
.ws14_c00480{word-spacing:-0.320000pt;}
.ws19_c00480{word-spacing:-0.128000pt;}
.wsc_c00480{word-spacing:-0.117120pt;}
.wsd_c00480{word-spacing:-0.064000pt;}
.wsb_c00480{word-spacing:0.000000pt;}
.ws15_c00480{word-spacing:0.064000pt;}
.ws1_c00480{word-spacing:0.128000pt;}
.ws1f_c00480{word-spacing:0.175680pt;}
.ws3_c00480{word-spacing:0.448000pt;}
.ws13_c00480{word-spacing:0.896000pt;}
.ws24_c00480{word-spacing:1.536000pt;}
.ws1a_c00480{word-spacing:1.856000pt;}
.ws16_c00480{word-spacing:1.920000pt;}
.ws4_c00480{word-spacing:2.048000pt;}
.ws22_c00480{word-spacing:2.560000pt;}
.ws29_c00480{word-spacing:2.880000pt;}
.ws17_c00480{word-spacing:3.776000pt;}
.wse_c00480{word-spacing:4.672000pt;}
.wsf_c00480{word-spacing:4.736000pt;}
.ws1d_c00480{word-spacing:4.800000pt;}
.ws6_c00480{word-spacing:4.928000pt;}
.ws10_c00480{word-spacing:4.992000pt;}
.ws11_c00480{word-spacing:5.056000pt;}
.ws1c_c00480{word-spacing:5.440000pt;}
.ws20_c00480{word-spacing:6.656000pt;}
.ws26_c00480{word-spacing:7.616000pt;}
.ws1b_c00480{word-spacing:7.936000pt;}
.ws23_c00480{word-spacing:8.320000pt;}
.wsa_c00480{word-spacing:8.448000pt;}
.ws27_c00480{word-spacing:8.896000pt;}
.ws28_c00480{word-spacing:9.600000pt;}
.ws21_c00480{word-spacing:9.856000pt;}
.ws25_c00480{word-spacing:10.176000pt;}
.ws1e_c00480{word-spacing:14.400000pt;}
.ws12_c00480{word-spacing:14.720000pt;}
._0_c00480{margin-left:-1.164800pt;}
._1_c00480{width:0.960000pt;}
.fs1_c00480{font-size:58.560000pt;}
.fs0_c00480{font-size:64.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y1_c00480{bottom:54.887600pt;}
.y24_c00480{bottom:102.599467pt;}
.y23_c00480{bottom:130.199467pt;}
.y22_c00480{bottom:157.799467pt;}
.y21_c00480{bottom:185.399467pt;}
.y20_c00480{bottom:212.999467pt;}
.y1f_c00480{bottom:240.599467pt;}
.y1e_c00480{bottom:268.199467pt;}
.y1d_c00480{bottom:295.799467pt;}
.y1c_c00480{bottom:323.399467pt;}
.y1b_c00480{bottom:350.999467pt;}
.y1a_c00480{bottom:378.599467pt;}
.y19_c00480{bottom:406.199467pt;}
.y18_c00480{bottom:433.799467pt;}
.y17_c00480{bottom:461.399467pt;}
.y16_c00480{bottom:488.999467pt;}
.y15_c00480{bottom:516.599467pt;}
.y14_c00480{bottom:544.199467pt;}
.y13_c00480{bottom:571.799467pt;}
.y12_c00480{bottom:599.399467pt;}
.y11_c00480{bottom:626.999467pt;}
.y10_c00480{bottom:654.599467pt;}
.yf_c00480{bottom:682.199467pt;}
.ye_c00480{bottom:709.719467pt;}
.yd_c00480{bottom:737.319467pt;}
.yc_c00480{bottom:764.919467pt;}
.yb_c00480{bottom:792.519467pt;}
.ya_c00480{bottom:820.119467pt;}
.y9_c00480{bottom:847.719467pt;}
.y8_c00480{bottom:875.319467pt;}
.y7_c00480{bottom:902.919467pt;}
.y6_c00480{bottom:930.519467pt;}
.y5_c00480{bottom:958.119467pt;}
.y4_c00480{bottom:985.719467pt;}
.y3_c00480{bottom:1013.319467pt;}
.y25_c00480{bottom:1043.480107pt;}
.y2_c00480{bottom:1061.399467pt;}
.h2_c00480{height:44.800000pt;}
.h3_c00480{height:48.294844pt;}
.h4_c00480{height:68.288000pt;}
.h0_c00480{height:1122.520000pt;}
.h1_c00480{height:1122.666667pt;}
.w2_c00480{width:0.000000pt;}
.w3_c00480{width:0.058667pt;}
.w0_c00480{width:793.701333pt;}
.w1_c00480{width:794.000000pt;}
.x1_c00480{left:-745.700800pt;}
.x2_c00480{left:-680.260800pt;}
.x3_c00480{left:-651.860800pt;}
.x0_c00480{left:0.000000pt;}
.x5_c00480{left:113.440000pt;}
.x6_c00480{left:141.840000pt;}
.x4_c00480{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00481;src:url('chunks/assets/font_5172448f5fbe4def4c3f13c0.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00481;src:url('chunks/assets/font_d91e5dee5997c8152ed1b0ab.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00481{letter-spacing:-0.144000px;}
.ls5_c00481{letter-spacing:-0.072000px;}
.ls4_c00481{letter-spacing:0.000000px;}
.ls0_c00481{letter-spacing:0.072000px;}
.ls2_c00481{letter-spacing:0.144000px;}
.ls1_c00481{letter-spacing:18.144000px;}
.ls3_c00481{letter-spacing:18.504000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00481{word-spacing:-18.144000px;}
.ws5_c00481{word-spacing:-18.072000px;}
.ws0_c00481{word-spacing:-17.928000px;}
.ws1_c00481{word-spacing:-17.856000px;}
.ws9_c00481{word-spacing:-0.432000px;}
.wsf_c00481{word-spacing:-0.144000px;}
.ws7_c00481{word-spacing:-0.131760px;}
.wsc_c00481{word-spacing:-0.072000px;}
.ws6_c00481{word-spacing:0.000000px;}
.ws2_c00481{word-spacing:0.144000px;}
.ws4_c00481{word-spacing:0.504000px;}
.ws12_c00481{word-spacing:1.008000px;}
.wsb_c00481{word-spacing:2.448000px;}
.ws13_c00481{word-spacing:3.528000px;}
.ws11_c00481{word-spacing:3.600000px;}
.wse_c00481{word-spacing:4.968000px;}
.ws10_c00481{word-spacing:6.768000px;}
.ws8_c00481{word-spacing:8.928000px;}
.wsd_c00481{word-spacing:11.088000px;}
.wsa_c00481{word-spacing:31.248000px;}
._0_c00481{margin-left:-1.152000px;}
.fc1_c00481{color:rgb(0,0,0);}
.fc0_c00481{color:rgb(35,31,32);}
.fs1_c00481{font-size:65.880000px;}
.fs0_c00481{font-size:72.000000px;}
.y0_c00481{bottom:0.000000px;}
.y1_c00481{bottom:61.748550px;}
.y23_c00481{bottom:146.474400px;}
.y22_c00481{bottom:177.524400px;}
.y21_c00481{bottom:208.574400px;}
.y20_c00481{bottom:239.624400px;}
.y1f_c00481{bottom:270.674400px;}
.y1e_c00481{bottom:301.724400px;}
.y1d_c00481{bottom:332.774400px;}
.y1c_c00481{bottom:363.824400px;}
.y1b_c00481{bottom:394.874400px;}
.y1a_c00481{bottom:425.924400px;}
.y19_c00481{bottom:456.974400px;}
.y18_c00481{bottom:488.024400px;}
.y17_c00481{bottom:519.074400px;}
.y16_c00481{bottom:550.124400px;}
.y15_c00481{bottom:581.174400px;}
.y14_c00481{bottom:612.224400px;}
.y13_c00481{bottom:643.274400px;}
.y12_c00481{bottom:674.324400px;}
.y11_c00481{bottom:705.374400px;}
.y10_c00481{bottom:736.424400px;}
.yf_c00481{bottom:767.474400px;}
.ye_c00481{bottom:798.434400px;}
.yd_c00481{bottom:829.484400px;}
.yc_c00481{bottom:860.534400px;}
.yb_c00481{bottom:891.584400px;}
.ya_c00481{bottom:922.634400px;}
.y9_c00481{bottom:953.684400px;}
.y8_c00481{bottom:984.734400px;}
.y7_c00481{bottom:1015.784400px;}
.y6_c00481{bottom:1046.834400px;}
.y5_c00481{bottom:1077.884400px;}
.y4_c00481{bottom:1108.934400px;}
.y3_c00481{bottom:1139.984400px;}
.y2_c00481{bottom:1194.074400px;}
.h2_c00481{height:50.400000px;}
.h3_c00481{height:54.331699px;}
.h4_c00481{height:76.824000px;}
.h0_c00481{height:1262.835000px;}
.h1_c00481{height:1263.000000px;}
.w0_c00481{width:892.914000px;}
.w1_c00481{width:893.250000px;}
.x0_c00481{left:0.000000px;}
.x1_c00481{left:54.000000px;}
.x2_c00481{left:127.620000px;}
.x3_c00481{left:159.570000px;}
.x4_c00481{left:164.070000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls6_c00481{letter-spacing:-0.128000pt;}
.ls5_c00481{letter-spacing:-0.064000pt;}
.ls4_c00481{letter-spacing:0.000000pt;}
.ls0_c00481{letter-spacing:0.064000pt;}
.ls2_c00481{letter-spacing:0.128000pt;}
.ls1_c00481{letter-spacing:16.128000pt;}
.ls3_c00481{letter-spacing:16.448000pt;}
.ws3_c00481{word-spacing:-16.128000pt;}
.ws5_c00481{word-spacing:-16.064000pt;}
.ws0_c00481{word-spacing:-15.936000pt;}
.ws1_c00481{word-spacing:-15.872000pt;}
.ws9_c00481{word-spacing:-0.384000pt;}
.wsf_c00481{word-spacing:-0.128000pt;}
.ws7_c00481{word-spacing:-0.117120pt;}
.wsc_c00481{word-spacing:-0.064000pt;}
.ws6_c00481{word-spacing:0.000000pt;}
.ws2_c00481{word-spacing:0.128000pt;}
.ws4_c00481{word-spacing:0.448000pt;}
.ws12_c00481{word-spacing:0.896000pt;}
.wsb_c00481{word-spacing:2.176000pt;}
.ws13_c00481{word-spacing:3.136000pt;}
.ws11_c00481{word-spacing:3.200000pt;}
.wse_c00481{word-spacing:4.416000pt;}
.ws10_c00481{word-spacing:6.016000pt;}
.ws8_c00481{word-spacing:7.936000pt;}
.wsd_c00481{word-spacing:9.856000pt;}
.wsa_c00481{word-spacing:27.776000pt;}
._0_c00481{margin-left:-1.024000pt;}
.fs1_c00481{font-size:58.560000pt;}
.fs0_c00481{font-size:64.000000pt;}
.y0_c00481{bottom:0.000000pt;}
.y1_c00481{bottom:54.887600pt;}
.y23_c00481{bottom:130.199467pt;}
.y22_c00481{bottom:157.799467pt;}
.y21_c00481{bottom:185.399467pt;}
.y20_c00481{bottom:212.999467pt;}
.y1f_c00481{bottom:240.599467pt;}
.y1e_c00481{bottom:268.199467pt;}
.y1d_c00481{bottom:295.799467pt;}
.y1c_c00481{bottom:323.399467pt;}
.y1b_c00481{bottom:350.999467pt;}
.y1a_c00481{bottom:378.599467pt;}
.y19_c00481{bottom:406.199467pt;}
.y18_c00481{bottom:433.799467pt;}
.y17_c00481{bottom:461.399467pt;}
.y16_c00481{bottom:488.999467pt;}
.y15_c00481{bottom:516.599467pt;}
.y14_c00481{bottom:544.199467pt;}
.y13_c00481{bottom:571.799467pt;}
.y12_c00481{bottom:599.399467pt;}
.y11_c00481{bottom:626.999467pt;}
.y10_c00481{bottom:654.599467pt;}
.yf_c00481{bottom:682.199467pt;}
.ye_c00481{bottom:709.719467pt;}
.yd_c00481{bottom:737.319467pt;}
.yc_c00481{bottom:764.919467pt;}
.yb_c00481{bottom:792.519467pt;}
.ya_c00481{bottom:820.119467pt;}
.y9_c00481{bottom:847.719467pt;}
.y8_c00481{bottom:875.319467pt;}
.y7_c00481{bottom:902.919467pt;}
.y6_c00481{bottom:930.519467pt;}
.y5_c00481{bottom:958.119467pt;}
.y4_c00481{bottom:985.719467pt;}
.y3_c00481{bottom:1013.319467pt;}
.y2_c00481{bottom:1061.399467pt;}
.h2_c00481{height:44.800000pt;}
.h3_c00481{height:48.294844pt;}
.h4_c00481{height:68.288000pt;}
.h0_c00481{height:1122.520000pt;}
.h1_c00481{height:1122.666667pt;}
.w0_c00481{width:793.701333pt;}
.w1_c00481{width:794.000000pt;}
.x0_c00481{left:0.000000pt;}
.x1_c00481{left:48.000000pt;}
.x2_c00481{left:113.440000pt;}
.x3_c00481{left:141.840000pt;}
.x4_c00481{left:145.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00482;src:url('chunks/assets/font_e0eb4809c182047736fbc028.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00482;src:url('chunks/assets/font_6530201b55074ae2b30dc35e.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00482;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00482{font-family:ff4_c00482;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00482;src:url('chunks/assets/font_2349fa4126cd5d1abb1b5e9e.woff2')format("woff");}.ff5_c00482{font-family:ff5_c00482;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00482;src:url('chunks/assets/font_6530201b55074ae2b30dc35e.woff2')format("woff");}.ff6_c00482{font-family:ff6_c00482;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00482{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls6_c00482{letter-spacing:-0.144000px;}
.ls5_c00482{letter-spacing:-0.072000px;}
.ls4_c00482{letter-spacing:0.000000px;}
.ls0_c00482{letter-spacing:0.072000px;}
.ls2_c00482{letter-spacing:0.144000px;}
.ls1_c00482{letter-spacing:18.144000px;}
.ls3_c00482{letter-spacing:18.504000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00482{word-spacing:-18.144000px;}
.ws5_c00482{word-spacing:-18.072000px;}
.ws0_c00482{word-spacing:-17.928000px;}
.ws1_c00482{word-spacing:-17.856000px;}
.ws9_c00482{word-spacing:-0.432000px;}
.wsf_c00482{word-spacing:-0.144000px;}
.ws7_c00482{word-spacing:-0.131760px;}
.wsc_c00482{word-spacing:-0.072000px;}
.ws6_c00482{word-spacing:0.000000px;}
.ws2_c00482{word-spacing:0.144000px;}
.ws14_c00482{word-spacing:0.197640px;}
.ws4_c00482{word-spacing:0.504000px;}
.ws12_c00482{word-spacing:1.008000px;}
.wsb_c00482{word-spacing:2.448000px;}
.ws15_c00482{word-spacing:3.168000px;}
.ws13_c00482{word-spacing:3.528000px;}
.ws11_c00482{word-spacing:3.600000px;}
.wse_c00482{word-spacing:4.968000px;}
.ws10_c00482{word-spacing:6.768000px;}
.ws8_c00482{word-spacing:8.928000px;}
.wsd_c00482{word-spacing:11.088000px;}
.wsa_c00482{word-spacing:31.248000px;}
._0_c00482{margin-left:-1.152000px;}
._1_c00482{width:1.119960px;}
.fc2_c00482{color:transparent;}
.fc1_c00482{color:rgb(0,0,0);}
.fc0_c00482{color:rgb(35,31,32);}
.fs1_c00482{font-size:65.880000px;}
.fs0_c00482{font-size:72.000000px;}
.y0_c00482{bottom:0.000000px;}
.y1_c00482{bottom:61.748550px;}
.y23_c00482{bottom:146.474400px;}
.y22_c00482{bottom:177.524400px;}
.y21_c00482{bottom:208.574400px;}
.y20_c00482{bottom:239.624400px;}
.y1f_c00482{bottom:270.674400px;}
.y1e_c00482{bottom:301.724400px;}
.y1d_c00482{bottom:332.774400px;}
.y1c_c00482{bottom:363.824400px;}
.y1b_c00482{bottom:394.874400px;}
.y1a_c00482{bottom:425.924400px;}
.y19_c00482{bottom:456.974400px;}
.y18_c00482{bottom:488.024400px;}
.y17_c00482{bottom:519.074400px;}
.y16_c00482{bottom:550.124400px;}
.y15_c00482{bottom:581.174400px;}
.y14_c00482{bottom:612.224400px;}
.y13_c00482{bottom:643.274400px;}
.y12_c00482{bottom:674.324400px;}
.y11_c00482{bottom:705.374400px;}
.y10_c00482{bottom:736.424400px;}
.yf_c00482{bottom:767.474400px;}
.ye_c00482{bottom:798.434400px;}
.yd_c00482{bottom:829.484400px;}
.yc_c00482{bottom:860.534400px;}
.yb_c00482{bottom:891.584400px;}
.ya_c00482{bottom:922.634400px;}
.y9_c00482{bottom:953.684400px;}
.y8_c00482{bottom:984.734400px;}
.y7_c00482{bottom:1015.784400px;}
.y6_c00482{bottom:1046.834400px;}
.y5_c00482{bottom:1077.884400px;}
.y4_c00482{bottom:1108.934400px;}
.y3_c00482{bottom:1139.984400px;}
.y24_c00482{bottom:1173.915120px;}
.y2_c00482{bottom:1194.074400px;}
.h2_c00482{height:50.400000px;}
.h3_c00482{height:54.331699px;}
.h4_c00482{height:76.824000px;}
.h0_c00482{height:1262.835000px;}
.h1_c00482{height:1263.000000px;}
.w2_c00482{width:0.000000px;}
.w3_c00482{width:0.066000px;}
.w0_c00482{width:892.914000px;}
.w1_c00482{width:893.250000px;}
.x1_c00482{left:-838.913400px;}
.x2_c00482{left:-765.293400px;}
.x3_c00482{left:-733.343400px;}
.x4_c00482{left:-728.843400px;}
.x0_c00482{left:0.000000px;}
.x6_c00482{left:127.620000px;}
.x7_c00482{left:159.570000px;}
.x5_c00482{left:804.366150px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls6_c00482{letter-spacing:-0.128000pt;}
.ls5_c00482{letter-spacing:-0.064000pt;}
.ls4_c00482{letter-spacing:0.000000pt;}
.ls0_c00482{letter-spacing:0.064000pt;}
.ls2_c00482{letter-spacing:0.128000pt;}
.ls1_c00482{letter-spacing:16.128000pt;}
.ls3_c00482{letter-spacing:16.448000pt;}
.ws3_c00482{word-spacing:-16.128000pt;}
.ws5_c00482{word-spacing:-16.064000pt;}
.ws0_c00482{word-spacing:-15.936000pt;}
.ws1_c00482{word-spacing:-15.872000pt;}
.ws9_c00482{word-spacing:-0.384000pt;}
.wsf_c00482{word-spacing:-0.128000pt;}
.ws7_c00482{word-spacing:-0.117120pt;}
.wsc_c00482{word-spacing:-0.064000pt;}
.ws6_c00482{word-spacing:0.000000pt;}
.ws2_c00482{word-spacing:0.128000pt;}
.ws14_c00482{word-spacing:0.175680pt;}
.ws4_c00482{word-spacing:0.448000pt;}
.ws12_c00482{word-spacing:0.896000pt;}
.wsb_c00482{word-spacing:2.176000pt;}
.ws15_c00482{word-spacing:2.816000pt;}
.ws13_c00482{word-spacing:3.136000pt;}
.ws11_c00482{word-spacing:3.200000pt;}
.wse_c00482{word-spacing:4.416000pt;}
.ws10_c00482{word-spacing:6.016000pt;}
.ws8_c00482{word-spacing:7.936000pt;}
.wsd_c00482{word-spacing:9.856000pt;}
.wsa_c00482{word-spacing:27.776000pt;}
._0_c00482{margin-left:-1.024000pt;}
._1_c00482{width:0.995520pt;}
.fs1_c00482{font-size:58.560000pt;}
.fs0_c00482{font-size:64.000000pt;}
.y0_c00482{bottom:0.000000pt;}
.y1_c00482{bottom:54.887600pt;}
.y23_c00482{bottom:130.199467pt;}
.y22_c00482{bottom:157.799467pt;}
.y21_c00482{bottom:185.399467pt;}
.y20_c00482{bottom:212.999467pt;}
.y1f_c00482{bottom:240.599467pt;}
.y1e_c00482{bottom:268.199467pt;}
.y1d_c00482{bottom:295.799467pt;}
.y1c_c00482{bottom:323.399467pt;}
.y1b_c00482{bottom:350.999467pt;}
.y1a_c00482{bottom:378.599467pt;}
.y19_c00482{bottom:406.199467pt;}
.y18_c00482{bottom:433.799467pt;}
.y17_c00482{bottom:461.399467pt;}
.y16_c00482{bottom:488.999467pt;}
.y15_c00482{bottom:516.599467pt;}
.y14_c00482{bottom:544.199467pt;}
.y13_c00482{bottom:571.799467pt;}
.y12_c00482{bottom:599.399467pt;}
.y11_c00482{bottom:626.999467pt;}
.y10_c00482{bottom:654.599467pt;}
.yf_c00482{bottom:682.199467pt;}
.ye_c00482{bottom:709.719467pt;}
.yd_c00482{bottom:737.319467pt;}
.yc_c00482{bottom:764.919467pt;}
.yb_c00482{bottom:792.519467pt;}
.ya_c00482{bottom:820.119467pt;}
.y9_c00482{bottom:847.719467pt;}
.y8_c00482{bottom:875.319467pt;}
.y7_c00482{bottom:902.919467pt;}
.y6_c00482{bottom:930.519467pt;}
.y5_c00482{bottom:958.119467pt;}
.y4_c00482{bottom:985.719467pt;}
.y3_c00482{bottom:1013.319467pt;}
.y24_c00482{bottom:1043.480107pt;}
.y2_c00482{bottom:1061.399467pt;}
.h2_c00482{height:44.800000pt;}
.h3_c00482{height:48.294844pt;}
.h4_c00482{height:68.288000pt;}
.h0_c00482{height:1122.520000pt;}
.h1_c00482{height:1122.666667pt;}
.w2_c00482{width:0.000000pt;}
.w3_c00482{width:0.058667pt;}
.w0_c00482{width:793.701333pt;}
.w1_c00482{width:794.000000pt;}
.x1_c00482{left:-745.700800pt;}
.x2_c00482{left:-680.260800pt;}
.x3_c00482{left:-651.860800pt;}
.x4_c00482{left:-647.860800pt;}
.x0_c00482{left:0.000000pt;}
.x6_c00482{left:113.440000pt;}
.x7_c00482{left:141.840000pt;}
.x5_c00482{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00483;src:url('chunks/assets/font_7d3d9d70edb44aa2ce006f0f.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00483;src:url('chunks/assets/font_7a1d0c9653e5d35918c04b09.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00483{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.ls4_c00483{letter-spacing:-0.072000px;}
.ls3_c00483{letter-spacing:0.000000px;}
.ls0_c00483{letter-spacing:0.072000px;}
.ls2_c00483{letter-spacing:0.144000px;}
.ls1_c00483{letter-spacing:18.144000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00483{word-spacing:-18.000000px;}
.ws2_c00483{word-spacing:-17.928000px;}
.wsd_c00483{word-spacing:-0.144000px;}
.ws5_c00483{word-spacing:-0.131760px;}
.wsa_c00483{word-spacing:-0.072000px;}
.ws4_c00483{word-spacing:0.000000px;}
.ws1_c00483{word-spacing:0.144000px;}
.ws6_c00483{word-spacing:0.432000px;}
.ws3_c00483{word-spacing:0.504000px;}
.wsb_c00483{word-spacing:2.520000px;}
.ws7_c00483{word-spacing:3.528000px;}
.ws8_c00483{word-spacing:6.048000px;}
.wse_c00483{word-spacing:6.408000px;}
.wsc_c00483{word-spacing:11.448000px;}
.ws9_c00483{word-spacing:15.696000px;}
.ws11_c00483{word-spacing:22.320000px;}
.wsf_c00483{word-spacing:26.568000px;}
.ws10_c00483{word-spacing:27.000000px;}
._0_c00483{margin-left:-1.008000px;}
._1_c00483{width:1.008000px;}
.fc1_c00483{color:rgb(0,0,0);}
.fc0_c00483{color:rgb(35,31,32);}
.fs1_c00483{font-size:65.880000px;}
.fs0_c00483{font-size:72.000000px;}
.y0_c00483{bottom:0.000000px;}
.y1_c00483{bottom:61.748550px;}
.y23_c00483{bottom:115.424400px;}
.y22_c00483{bottom:146.474400px;}
.y21_c00483{bottom:177.524400px;}
.y20_c00483{bottom:208.574400px;}
.y1f_c00483{bottom:239.624400px;}
.y1e_c00483{bottom:270.674400px;}
.y1d_c00483{bottom:301.724400px;}
.y1c_c00483{bottom:332.774400px;}
.y1b_c00483{bottom:363.824400px;}
.y1a_c00483{bottom:394.874400px;}
.y19_c00483{bottom:425.924400px;}
.y18_c00483{bottom:456.974400px;}
.y17_c00483{bottom:488.024400px;}
.y16_c00483{bottom:519.074400px;}
.y15_c00483{bottom:550.124400px;}
.y14_c00483{bottom:581.174400px;}
.y13_c00483{bottom:612.224400px;}
.y12_c00483{bottom:643.274400px;}
.y11_c00483{bottom:674.324400px;}
.y10_c00483{bottom:705.374400px;}
.yf_c00483{bottom:736.424400px;}
.ye_c00483{bottom:767.474400px;}
.yd_c00483{bottom:798.434400px;}
.yc_c00483{bottom:829.484400px;}
.yb_c00483{bottom:860.534400px;}
.ya_c00483{bottom:891.584400px;}
.y9_c00483{bottom:922.634400px;}
.y8_c00483{bottom:953.684400px;}
.y7_c00483{bottom:984.734400px;}
.y6_c00483{bottom:1015.784400px;}
.y5_c00483{bottom:1046.834400px;}
.y4_c00483{bottom:1077.884400px;}
.y3_c00483{bottom:1139.984400px;}
.y2_c00483{bottom:1194.074400px;}
.h2_c00483{height:50.400000px;}
.h3_c00483{height:54.331699px;}
.h4_c00483{height:76.824000px;}
.h0_c00483{height:1262.835000px;}
.h1_c00483{height:1263.000000px;}
.w0_c00483{width:892.914000px;}
.w1_c00483{width:893.250000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:54.000000px;}
.x2_c00483{left:127.620000px;}
.x3_c00483{left:159.570000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls4_c00483{letter-spacing:-0.064000pt;}
.ls3_c00483{letter-spacing:0.000000pt;}
.ls0_c00483{letter-spacing:0.064000pt;}
.ls2_c00483{letter-spacing:0.128000pt;}
.ls1_c00483{letter-spacing:16.128000pt;}
.ws0_c00483{word-spacing:-16.000000pt;}
.ws2_c00483{word-spacing:-15.936000pt;}
.wsd_c00483{word-spacing:-0.128000pt;}
.ws5_c00483{word-spacing:-0.117120pt;}
.wsa_c00483{word-spacing:-0.064000pt;}
.ws4_c00483{word-spacing:0.000000pt;}
.ws1_c00483{word-spacing:0.128000pt;}
.ws6_c00483{word-spacing:0.384000pt;}
.ws3_c00483{word-spacing:0.448000pt;}
.wsb_c00483{word-spacing:2.240000pt;}
.ws7_c00483{word-spacing:3.136000pt;}
.ws8_c00483{word-spacing:5.376000pt;}
.wse_c00483{word-spacing:5.696000pt;}
.wsc_c00483{word-spacing:10.176000pt;}
.ws9_c00483{word-spacing:13.952000pt;}
.ws11_c00483{word-spacing:19.840000pt;}
.wsf_c00483{word-spacing:23.616000pt;}
.ws10_c00483{word-spacing:24.000000pt;}
._0_c00483{margin-left:-0.896000pt;}
._1_c00483{width:0.896000pt;}
.fs1_c00483{font-size:58.560000pt;}
.fs0_c00483{font-size:64.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y1_c00483{bottom:54.887600pt;}
.y23_c00483{bottom:102.599467pt;}
.y22_c00483{bottom:130.199467pt;}
.y21_c00483{bottom:157.799467pt;}
.y20_c00483{bottom:185.399467pt;}
.y1f_c00483{bottom:212.999467pt;}
.y1e_c00483{bottom:240.599467pt;}
.y1d_c00483{bottom:268.199467pt;}
.y1c_c00483{bottom:295.799467pt;}
.y1b_c00483{bottom:323.399467pt;}
.y1a_c00483{bottom:350.999467pt;}
.y19_c00483{bottom:378.599467pt;}
.y18_c00483{bottom:406.199467pt;}
.y17_c00483{bottom:433.799467pt;}
.y16_c00483{bottom:461.399467pt;}
.y15_c00483{bottom:488.999467pt;}
.y14_c00483{bottom:516.599467pt;}
.y13_c00483{bottom:544.199467pt;}
.y12_c00483{bottom:571.799467pt;}
.y11_c00483{bottom:599.399467pt;}
.y10_c00483{bottom:626.999467pt;}
.yf_c00483{bottom:654.599467pt;}
.ye_c00483{bottom:682.199467pt;}
.yd_c00483{bottom:709.719467pt;}
.yc_c00483{bottom:737.319467pt;}
.yb_c00483{bottom:764.919467pt;}
.ya_c00483{bottom:792.519467pt;}
.y9_c00483{bottom:820.119467pt;}
.y8_c00483{bottom:847.719467pt;}
.y7_c00483{bottom:875.319467pt;}
.y6_c00483{bottom:902.919467pt;}
.y5_c00483{bottom:930.519467pt;}
.y4_c00483{bottom:958.119467pt;}
.y3_c00483{bottom:1013.319467pt;}
.y2_c00483{bottom:1061.399467pt;}
.h2_c00483{height:44.800000pt;}
.h3_c00483{height:48.294844pt;}
.h4_c00483{height:68.288000pt;}
.h0_c00483{height:1122.520000pt;}
.h1_c00483{height:1122.666667pt;}
.w0_c00483{width:793.701333pt;}
.w1_c00483{width:794.000000pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:48.000000pt;}
.x2_c00483{left:113.440000pt;}
.x3_c00483{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00484;src:url('chunks/assets/font_0aadf02509cd6fbe18b5b332.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00484;src:url('chunks/assets/font_cd4e81623bb0cda70dfe1b46.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00484;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00484{font-family:ff4_c00484;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00484;src:url('chunks/assets/font_36780b20832ceed0eb0e70b3.woff2')format("woff");}.ff5_c00484{font-family:ff5_c00484;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00484;src:url('chunks/assets/font_13b24eb94404a9cfbb34820a.woff2')format("woff");}.ff6_c00484{font-family:ff6_c00484;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00484;src:url('chunks/assets/font_a7d3f8b4c6169d96c470525e.woff2')format("woff");}.ff7_c00484{font-family:ff7_c00484;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00484{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls4_c00484{letter-spacing:-0.072000px;}
.ls3_c00484{letter-spacing:0.000000px;}
.ls0_c00484{letter-spacing:0.072000px;}
.ls2_c00484{letter-spacing:0.144000px;}
.ls1_c00484{letter-spacing:18.144000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00484{word-spacing:-18.072000px;}
.ws0_c00484{word-spacing:-18.000000px;}
.ws2_c00484{word-spacing:-17.928000px;}
.wse_c00484{word-spacing:-0.144000px;}
.ws6_c00484{word-spacing:-0.131760px;}
.wsb_c00484{word-spacing:-0.072000px;}
.ws5_c00484{word-spacing:0.000000px;}
.ws15_c00484{word-spacing:0.072000px;}
.ws1_c00484{word-spacing:0.144000px;}
.ws13_c00484{word-spacing:0.197640px;}
.ws7_c00484{word-spacing:0.432000px;}
.ws3_c00484{word-spacing:0.504000px;}
.wsc_c00484{word-spacing:2.520000px;}
.ws8_c00484{word-spacing:3.528000px;}
.ws14_c00484{word-spacing:3.600000px;}
.ws18_c00484{word-spacing:4.320000px;}
.ws16_c00484{word-spacing:5.328000px;}
.ws9_c00484{word-spacing:6.048000px;}
.wsf_c00484{word-spacing:6.408000px;}
.ws19_c00484{word-spacing:9.648000px;}
.wsd_c00484{word-spacing:11.448000px;}
.ws1a_c00484{word-spacing:11.808000px;}
.wsa_c00484{word-spacing:15.696000px;}
.ws17_c00484{word-spacing:15.768000px;}
.ws1c_c00484{word-spacing:18.648000px;}
.ws1b_c00484{word-spacing:18.720000px;}
.ws12_c00484{word-spacing:22.320000px;}
.ws10_c00484{word-spacing:26.568000px;}
.ws11_c00484{word-spacing:27.000000px;}
._0_c00484{margin-left:-1.008000px;}
._1_c00484{width:1.008000px;}
.fc2_c00484{color:transparent;}
.fc1_c00484{color:rgb(0,0,0);}
.fc0_c00484{color:rgb(35,31,32);}
.fs1_c00484{font-size:65.880000px;}
.fs0_c00484{font-size:72.000000px;}
.y0_c00484{bottom:0.000000px;}
.y1_c00484{bottom:61.748550px;}
.y23_c00484{bottom:115.424400px;}
.y22_c00484{bottom:146.474400px;}
.y21_c00484{bottom:177.524400px;}
.y20_c00484{bottom:208.574400px;}
.y1f_c00484{bottom:239.624400px;}
.y1e_c00484{bottom:270.674400px;}
.y1d_c00484{bottom:301.724400px;}
.y1c_c00484{bottom:332.774400px;}
.y1b_c00484{bottom:363.824400px;}
.y1a_c00484{bottom:394.874400px;}
.y19_c00484{bottom:425.924400px;}
.y18_c00484{bottom:456.974400px;}
.y17_c00484{bottom:488.024400px;}
.y16_c00484{bottom:519.074400px;}
.y15_c00484{bottom:550.124400px;}
.y14_c00484{bottom:581.174400px;}
.y13_c00484{bottom:612.224400px;}
.y12_c00484{bottom:643.274400px;}
.y11_c00484{bottom:674.324400px;}
.y10_c00484{bottom:705.374400px;}
.yf_c00484{bottom:736.424400px;}
.ye_c00484{bottom:767.474400px;}
.yd_c00484{bottom:798.434400px;}
.yc_c00484{bottom:829.484400px;}
.yb_c00484{bottom:860.534400px;}
.ya_c00484{bottom:891.584400px;}
.y9_c00484{bottom:922.634400px;}
.y8_c00484{bottom:953.684400px;}
.y7_c00484{bottom:984.734400px;}
.y6_c00484{bottom:1015.784400px;}
.y5_c00484{bottom:1046.834400px;}
.y4_c00484{bottom:1077.884400px;}
.y25_c00484{bottom:1108.934400px;}
.y3_c00484{bottom:1139.984400px;}
.y24_c00484{bottom:1173.915120px;}
.y2_c00484{bottom:1194.074400px;}
.h2_c00484{height:50.400000px;}
.h3_c00484{height:54.331699px;}
.h4_c00484{height:76.824000px;}
.h5_c00484{height:78.048000px;}
.h0_c00484{height:1262.835000px;}
.h1_c00484{height:1263.000000px;}
.w2_c00484{width:0.000000px;}
.w3_c00484{width:0.066000px;}
.w0_c00484{width:892.914000px;}
.w1_c00484{width:893.250000px;}
.x1_c00484{left:-838.913400px;}
.x2_c00484{left:-765.293400px;}
.x3_c00484{left:-733.343400px;}
.x0_c00484{left:0.000000px;}
.x5_c00484{left:127.620000px;}
.x6_c00484{left:159.570000px;}
.x4_c00484{left:804.366150px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls4_c00484{letter-spacing:-0.064000pt;}
.ls3_c00484{letter-spacing:0.000000pt;}
.ls0_c00484{letter-spacing:0.064000pt;}
.ls2_c00484{letter-spacing:0.128000pt;}
.ls1_c00484{letter-spacing:16.128000pt;}
.ws4_c00484{word-spacing:-16.064000pt;}
.ws0_c00484{word-spacing:-16.000000pt;}
.ws2_c00484{word-spacing:-15.936000pt;}
.wse_c00484{word-spacing:-0.128000pt;}
.ws6_c00484{word-spacing:-0.117120pt;}
.wsb_c00484{word-spacing:-0.064000pt;}
.ws5_c00484{word-spacing:0.000000pt;}
.ws15_c00484{word-spacing:0.064000pt;}
.ws1_c00484{word-spacing:0.128000pt;}
.ws13_c00484{word-spacing:0.175680pt;}
.ws7_c00484{word-spacing:0.384000pt;}
.ws3_c00484{word-spacing:0.448000pt;}
.wsc_c00484{word-spacing:2.240000pt;}
.ws8_c00484{word-spacing:3.136000pt;}
.ws14_c00484{word-spacing:3.200000pt;}
.ws18_c00484{word-spacing:3.840000pt;}
.ws16_c00484{word-spacing:4.736000pt;}
.ws9_c00484{word-spacing:5.376000pt;}
.wsf_c00484{word-spacing:5.696000pt;}
.ws19_c00484{word-spacing:8.576000pt;}
.wsd_c00484{word-spacing:10.176000pt;}
.ws1a_c00484{word-spacing:10.496000pt;}
.wsa_c00484{word-spacing:13.952000pt;}
.ws17_c00484{word-spacing:14.016000pt;}
.ws1c_c00484{word-spacing:16.576000pt;}
.ws1b_c00484{word-spacing:16.640000pt;}
.ws12_c00484{word-spacing:19.840000pt;}
.ws10_c00484{word-spacing:23.616000pt;}
.ws11_c00484{word-spacing:24.000000pt;}
._0_c00484{margin-left:-0.896000pt;}
._1_c00484{width:0.896000pt;}
.fs1_c00484{font-size:58.560000pt;}
.fs0_c00484{font-size:64.000000pt;}
.y0_c00484{bottom:0.000000pt;}
.y1_c00484{bottom:54.887600pt;}
.y23_c00484{bottom:102.599467pt;}
.y22_c00484{bottom:130.199467pt;}
.y21_c00484{bottom:157.799467pt;}
.y20_c00484{bottom:185.399467pt;}
.y1f_c00484{bottom:212.999467pt;}
.y1e_c00484{bottom:240.599467pt;}
.y1d_c00484{bottom:268.199467pt;}
.y1c_c00484{bottom:295.799467pt;}
.y1b_c00484{bottom:323.399467pt;}
.y1a_c00484{bottom:350.999467pt;}
.y19_c00484{bottom:378.599467pt;}
.y18_c00484{bottom:406.199467pt;}
.y17_c00484{bottom:433.799467pt;}
.y16_c00484{bottom:461.399467pt;}
.y15_c00484{bottom:488.999467pt;}
.y14_c00484{bottom:516.599467pt;}
.y13_c00484{bottom:544.199467pt;}
.y12_c00484{bottom:571.799467pt;}
.y11_c00484{bottom:599.399467pt;}
.y10_c00484{bottom:626.999467pt;}
.yf_c00484{bottom:654.599467pt;}
.ye_c00484{bottom:682.199467pt;}
.yd_c00484{bottom:709.719467pt;}
.yc_c00484{bottom:737.319467pt;}
.yb_c00484{bottom:764.919467pt;}
.ya_c00484{bottom:792.519467pt;}
.y9_c00484{bottom:820.119467pt;}
.y8_c00484{bottom:847.719467pt;}
.y7_c00484{bottom:875.319467pt;}
.y6_c00484{bottom:902.919467pt;}
.y5_c00484{bottom:930.519467pt;}
.y4_c00484{bottom:958.119467pt;}
.y25_c00484{bottom:985.719467pt;}
.y3_c00484{bottom:1013.319467pt;}
.y24_c00484{bottom:1043.480107pt;}
.y2_c00484{bottom:1061.399467pt;}
.h2_c00484{height:44.800000pt;}
.h3_c00484{height:48.294844pt;}
.h4_c00484{height:68.288000pt;}
.h5_c00484{height:69.376000pt;}
.h0_c00484{height:1122.520000pt;}
.h1_c00484{height:1122.666667pt;}
.w2_c00484{width:0.000000pt;}
.w3_c00484{width:0.058667pt;}
.w0_c00484{width:793.701333pt;}
.w1_c00484{width:794.000000pt;}
.x1_c00484{left:-745.700800pt;}
.x2_c00484{left:-680.260800pt;}
.x3_c00484{left:-651.860800pt;}
.x0_c00484{left:0.000000pt;}
.x5_c00484{left:113.440000pt;}
.x6_c00484{left:141.840000pt;}
.x4_c00484{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00485;src:url('chunks/assets/font_c7ffbfaef185b87afbafe1e1.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00485;src:url('chunks/assets/font_3318a17796262c2b66f8c6c6.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.ls6_c00485{letter-spacing:-0.360000px;}
.ls8_c00485{letter-spacing:-0.288000px;}
.ls5_c00485{letter-spacing:-0.144000px;}
.ls7_c00485{letter-spacing:-0.072000px;}
.ls4_c00485{letter-spacing:0.000000px;}
.ls0_c00485{letter-spacing:0.072000px;}
.ls3_c00485{letter-spacing:0.144000px;}
.ls1_c00485{letter-spacing:18.144000px;}
.ls2_c00485{letter-spacing:18.158400px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00485{word-spacing:-18.144000px;}
.ws1_c00485{word-spacing:-18.072000px;}
.ws5_c00485{word-spacing:-18.000000px;}
.ws6_c00485{word-spacing:-17.928000px;}
.ws0_c00485{word-spacing:-17.856000px;}
.ws4_c00485{word-spacing:-17.640000px;}
.ws11_c00485{word-spacing:-0.432000px;}
.wse_c00485{word-spacing:-0.360000px;}
.ws9_c00485{word-spacing:-0.131760px;}
.ws10_c00485{word-spacing:-0.072000px;}
.ws8_c00485{word-spacing:0.000000px;}
.ws2_c00485{word-spacing:0.144000px;}
.ws18_c00485{word-spacing:0.288000px;}
.ws15_c00485{word-spacing:0.360000px;}
.ws3_c00485{word-spacing:0.504000px;}
.ws19_c00485{word-spacing:1.728000px;}
.ws13_c00485{word-spacing:2.520000px;}
.wsd_c00485{word-spacing:2.880000px;}
.wsc_c00485{word-spacing:3.168000px;}
.wsa_c00485{word-spacing:3.528000px;}
.wsb_c00485{word-spacing:3.600000px;}
.ws12_c00485{word-spacing:7.920000px;}
.ws14_c00485{word-spacing:10.368000px;}
.wsf_c00485{word-spacing:12.888000px;}
.ws17_c00485{word-spacing:16.920000px;}
.ws16_c00485{word-spacing:18.288000px;}
._0_c00485{margin-left:-1.159200px;}
._1_c00485{width:1.008000px;}
.fc1_c00485{color:rgb(0,0,0);}
.fc0_c00485{color:rgb(35,31,32);}
.fs1_c00485{font-size:65.880000px;}
.fs0_c00485{font-size:72.000000px;}
.y0_c00485{bottom:0.000000px;}
.y1_c00485{bottom:61.748550px;}
.y23_c00485{bottom:146.474400px;}
.y22_c00485{bottom:177.524400px;}
.y21_c00485{bottom:208.574400px;}
.y20_c00485{bottom:239.624400px;}
.y1f_c00485{bottom:270.674400px;}
.y1e_c00485{bottom:301.724400px;}
.y1d_c00485{bottom:332.774400px;}
.y1c_c00485{bottom:363.824400px;}
.y1b_c00485{bottom:394.874400px;}
.y1a_c00485{bottom:425.924400px;}
.y19_c00485{bottom:456.974400px;}
.y18_c00485{bottom:488.024400px;}
.y17_c00485{bottom:519.074400px;}
.y16_c00485{bottom:550.124400px;}
.y15_c00485{bottom:581.174400px;}
.y14_c00485{bottom:612.224400px;}
.y13_c00485{bottom:643.274400px;}
.y12_c00485{bottom:674.324400px;}
.y11_c00485{bottom:705.374400px;}
.y10_c00485{bottom:736.424400px;}
.yf_c00485{bottom:767.474400px;}
.ye_c00485{bottom:798.434400px;}
.yd_c00485{bottom:829.484400px;}
.yc_c00485{bottom:860.534400px;}
.yb_c00485{bottom:891.584400px;}
.ya_c00485{bottom:922.634400px;}
.y9_c00485{bottom:953.684400px;}
.y8_c00485{bottom:984.734400px;}
.y7_c00485{bottom:1015.784400px;}
.y6_c00485{bottom:1046.834400px;}
.y5_c00485{bottom:1077.884400px;}
.y4_c00485{bottom:1108.934400px;}
.y3_c00485{bottom:1139.984400px;}
.y2_c00485{bottom:1194.074400px;}
.h2_c00485{height:50.400000px;}
.h3_c00485{height:54.331699px;}
.h4_c00485{height:76.824000px;}
.h0_c00485{height:1262.835000px;}
.h1_c00485{height:1263.000000px;}
.w0_c00485{width:892.914000px;}
.w1_c00485{width:893.250000px;}
.x0_c00485{left:0.000000px;}
.x1_c00485{left:54.000000px;}
.x2_c00485{left:127.620000px;}
.x3_c00485{left:159.570000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls6_c00485{letter-spacing:-0.320000pt;}
.ls8_c00485{letter-spacing:-0.256000pt;}
.ls5_c00485{letter-spacing:-0.128000pt;}
.ls7_c00485{letter-spacing:-0.064000pt;}
.ls4_c00485{letter-spacing:0.000000pt;}
.ls0_c00485{letter-spacing:0.064000pt;}
.ls3_c00485{letter-spacing:0.128000pt;}
.ls1_c00485{letter-spacing:16.128000pt;}
.ls2_c00485{letter-spacing:16.140800pt;}
.ws7_c00485{word-spacing:-16.128000pt;}
.ws1_c00485{word-spacing:-16.064000pt;}
.ws5_c00485{word-spacing:-16.000000pt;}
.ws6_c00485{word-spacing:-15.936000pt;}
.ws0_c00485{word-spacing:-15.872000pt;}
.ws4_c00485{word-spacing:-15.680000pt;}
.ws11_c00485{word-spacing:-0.384000pt;}
.wse_c00485{word-spacing:-0.320000pt;}
.ws9_c00485{word-spacing:-0.117120pt;}
.ws10_c00485{word-spacing:-0.064000pt;}
.ws8_c00485{word-spacing:0.000000pt;}
.ws2_c00485{word-spacing:0.128000pt;}
.ws18_c00485{word-spacing:0.256000pt;}
.ws15_c00485{word-spacing:0.320000pt;}
.ws3_c00485{word-spacing:0.448000pt;}
.ws19_c00485{word-spacing:1.536000pt;}
.ws13_c00485{word-spacing:2.240000pt;}
.wsd_c00485{word-spacing:2.560000pt;}
.wsc_c00485{word-spacing:2.816000pt;}
.wsa_c00485{word-spacing:3.136000pt;}
.wsb_c00485{word-spacing:3.200000pt;}
.ws12_c00485{word-spacing:7.040000pt;}
.ws14_c00485{word-spacing:9.216000pt;}
.wsf_c00485{word-spacing:11.456000pt;}
.ws17_c00485{word-spacing:15.040000pt;}
.ws16_c00485{word-spacing:16.256000pt;}
._0_c00485{margin-left:-1.030400pt;}
._1_c00485{width:0.896000pt;}
.fs1_c00485{font-size:58.560000pt;}
.fs0_c00485{font-size:64.000000pt;}
.y0_c00485{bottom:0.000000pt;}
.y1_c00485{bottom:54.887600pt;}
.y23_c00485{bottom:130.199467pt;}
.y22_c00485{bottom:157.799467pt;}
.y21_c00485{bottom:185.399467pt;}
.y20_c00485{bottom:212.999467pt;}
.y1f_c00485{bottom:240.599467pt;}
.y1e_c00485{bottom:268.199467pt;}
.y1d_c00485{bottom:295.799467pt;}
.y1c_c00485{bottom:323.399467pt;}
.y1b_c00485{bottom:350.999467pt;}
.y1a_c00485{bottom:378.599467pt;}
.y19_c00485{bottom:406.199467pt;}
.y18_c00485{bottom:433.799467pt;}
.y17_c00485{bottom:461.399467pt;}
.y16_c00485{bottom:488.999467pt;}
.y15_c00485{bottom:516.599467pt;}
.y14_c00485{bottom:544.199467pt;}
.y13_c00485{bottom:571.799467pt;}
.y12_c00485{bottom:599.399467pt;}
.y11_c00485{bottom:626.999467pt;}
.y10_c00485{bottom:654.599467pt;}
.yf_c00485{bottom:682.199467pt;}
.ye_c00485{bottom:709.719467pt;}
.yd_c00485{bottom:737.319467pt;}
.yc_c00485{bottom:764.919467pt;}
.yb_c00485{bottom:792.519467pt;}
.ya_c00485{bottom:820.119467pt;}
.y9_c00485{bottom:847.719467pt;}
.y8_c00485{bottom:875.319467pt;}
.y7_c00485{bottom:902.919467pt;}
.y6_c00485{bottom:930.519467pt;}
.y5_c00485{bottom:958.119467pt;}
.y4_c00485{bottom:985.719467pt;}
.y3_c00485{bottom:1013.319467pt;}
.y2_c00485{bottom:1061.399467pt;}
.h2_c00485{height:44.800000pt;}
.h3_c00485{height:48.294844pt;}
.h4_c00485{height:68.288000pt;}
.h0_c00485{height:1122.520000pt;}
.h1_c00485{height:1122.666667pt;}
.w0_c00485{width:793.701333pt;}
.w1_c00485{width:794.000000pt;}
.x0_c00485{left:0.000000pt;}
.x1_c00485{left:48.000000pt;}
.x2_c00485{left:113.440000pt;}
.x3_c00485{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00486;src:url('chunks/assets/font_c0e17a7c050c51be060c74f4.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00486;src:url('chunks/assets/font_9e4a828595ffe912f6bebe2e.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00486;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00486;src:url('chunks/assets/font_067323cfe51227e15fda4c34.woff2')format("woff");}.ff5_c00486{font-family:ff5_c00486;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00486;src:url('chunks/assets/font_360b8041fa456707f4c42132.woff2')format("woff");}.ff6_c00486{font-family:ff6_c00486;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00486{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls7_c00486{letter-spacing:-0.360000px;}
.ls9_c00486{letter-spacing:-0.288000px;}
.ls6_c00486{letter-spacing:-0.144000px;}
.ls8_c00486{letter-spacing:-0.072000px;}
.ls5_c00486{letter-spacing:0.000000px;}
.ls0_c00486{letter-spacing:0.072000px;}
.ls3_c00486{letter-spacing:0.144000px;}
.ls1_c00486{letter-spacing:18.144000px;}
.ls2_c00486{letter-spacing:18.158400px;}
.ls4_c00486{letter-spacing:18.504000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00486{word-spacing:-18.144000px;}
.ws1_c00486{word-spacing:-18.072000px;}
.ws5_c00486{word-spacing:-18.000000px;}
.ws6_c00486{word-spacing:-17.928000px;}
.ws0_c00486{word-spacing:-17.856000px;}
.ws4_c00486{word-spacing:-17.640000px;}
.ws12_c00486{word-spacing:-0.432000px;}
.wsf_c00486{word-spacing:-0.360000px;}
.ws1f_c00486{word-spacing:-0.144000px;}
.wsa_c00486{word-spacing:-0.131760px;}
.ws11_c00486{word-spacing:-0.072000px;}
.ws9_c00486{word-spacing:0.000000px;}
.ws2_c00486{word-spacing:0.144000px;}
.ws1b_c00486{word-spacing:0.197640px;}
.ws19_c00486{word-spacing:0.288000px;}
.ws16_c00486{word-spacing:0.360000px;}
.ws3_c00486{word-spacing:0.504000px;}
.ws22_c00486{word-spacing:1.008000px;}
.ws21_c00486{word-spacing:1.080000px;}
.ws1a_c00486{word-spacing:1.728000px;}
.ws1d_c00486{word-spacing:2.160000px;}
.ws14_c00486{word-spacing:2.520000px;}
.wse_c00486{word-spacing:2.880000px;}
.wsd_c00486{word-spacing:3.168000px;}
.wsb_c00486{word-spacing:3.528000px;}
.wsc_c00486{word-spacing:3.600000px;}
.ws20_c00486{word-spacing:4.680000px;}
.ws8_c00486{word-spacing:4.824000px;}
.ws13_c00486{word-spacing:7.920000px;}
.ws23_c00486{word-spacing:8.568000px;}
.ws1e_c00486{word-spacing:8.928000px;}
.ws25_c00486{word-spacing:9.000000px;}
.ws24_c00486{word-spacing:9.360000px;}
.ws15_c00486{word-spacing:10.368000px;}
.ws10_c00486{word-spacing:12.888000px;}
.ws26_c00486{word-spacing:15.120000px;}
.ws18_c00486{word-spacing:16.920000px;}
.ws17_c00486{word-spacing:18.288000px;}
.ws1c_c00486{word-spacing:25.200000px;}
._0_c00486{margin-left:-1.159200px;}
._1_c00486{width:1.008000px;}
.fc2_c00486{color:transparent;}
.fc1_c00486{color:rgb(0,0,0);}
.fc0_c00486{color:rgb(35,31,32);}
.fs1_c00486{font-size:65.880000px;}
.fs0_c00486{font-size:72.000000px;}
.y0_c00486{bottom:0.000000px;}
.y1_c00486{bottom:61.748550px;}
.y25_c00486{bottom:115.424400px;}
.y23_c00486{bottom:146.474400px;}
.y22_c00486{bottom:177.524400px;}
.y21_c00486{bottom:208.574400px;}
.y20_c00486{bottom:239.624400px;}
.y1f_c00486{bottom:270.674400px;}
.y1e_c00486{bottom:301.724400px;}
.y1d_c00486{bottom:332.774400px;}
.y1c_c00486{bottom:363.824400px;}
.y1b_c00486{bottom:394.874400px;}
.y1a_c00486{bottom:425.924400px;}
.y19_c00486{bottom:456.974400px;}
.y18_c00486{bottom:488.024400px;}
.y17_c00486{bottom:519.074400px;}
.y16_c00486{bottom:550.124400px;}
.y15_c00486{bottom:581.174400px;}
.y14_c00486{bottom:612.224400px;}
.y13_c00486{bottom:643.274400px;}
.y12_c00486{bottom:674.324400px;}
.y11_c00486{bottom:705.374400px;}
.y10_c00486{bottom:736.424400px;}
.yf_c00486{bottom:767.474400px;}
.ye_c00486{bottom:798.434400px;}
.yd_c00486{bottom:829.484400px;}
.yc_c00486{bottom:860.534400px;}
.yb_c00486{bottom:891.584400px;}
.ya_c00486{bottom:922.634400px;}
.y9_c00486{bottom:953.684400px;}
.y8_c00486{bottom:984.734400px;}
.y7_c00486{bottom:1015.784400px;}
.y6_c00486{bottom:1046.834400px;}
.y5_c00486{bottom:1077.884400px;}
.y4_c00486{bottom:1108.934400px;}
.y3_c00486{bottom:1139.984400px;}
.y24_c00486{bottom:1173.915120px;}
.y2_c00486{bottom:1194.074400px;}
.h2_c00486{height:50.400000px;}
.h3_c00486{height:54.331699px;}
.h4_c00486{height:76.824000px;}
.h0_c00486{height:1262.835000px;}
.h1_c00486{height:1263.000000px;}
.w2_c00486{width:0.000000px;}
.w3_c00486{width:0.066000px;}
.w0_c00486{width:892.914000px;}
.w1_c00486{width:893.250000px;}
.x1_c00486{left:-838.913400px;}
.x2_c00486{left:-765.293400px;}
.x3_c00486{left:-733.343400px;}
.x0_c00486{left:0.000000px;}
.x5_c00486{left:127.620000px;}
.x6_c00486{left:159.570000px;}
.x4_c00486{left:804.366150px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls7_c00486{letter-spacing:-0.320000pt;}
.ls9_c00486{letter-spacing:-0.256000pt;}
.ls6_c00486{letter-spacing:-0.128000pt;}
.ls8_c00486{letter-spacing:-0.064000pt;}
.ls5_c00486{letter-spacing:0.000000pt;}
.ls0_c00486{letter-spacing:0.064000pt;}
.ls3_c00486{letter-spacing:0.128000pt;}
.ls1_c00486{letter-spacing:16.128000pt;}
.ls2_c00486{letter-spacing:16.140800pt;}
.ls4_c00486{letter-spacing:16.448000pt;}
.ws7_c00486{word-spacing:-16.128000pt;}
.ws1_c00486{word-spacing:-16.064000pt;}
.ws5_c00486{word-spacing:-16.000000pt;}
.ws6_c00486{word-spacing:-15.936000pt;}
.ws0_c00486{word-spacing:-15.872000pt;}
.ws4_c00486{word-spacing:-15.680000pt;}
.ws12_c00486{word-spacing:-0.384000pt;}
.wsf_c00486{word-spacing:-0.320000pt;}
.ws1f_c00486{word-spacing:-0.128000pt;}
.wsa_c00486{word-spacing:-0.117120pt;}
.ws11_c00486{word-spacing:-0.064000pt;}
.ws9_c00486{word-spacing:0.000000pt;}
.ws2_c00486{word-spacing:0.128000pt;}
.ws1b_c00486{word-spacing:0.175680pt;}
.ws19_c00486{word-spacing:0.256000pt;}
.ws16_c00486{word-spacing:0.320000pt;}
.ws3_c00486{word-spacing:0.448000pt;}
.ws22_c00486{word-spacing:0.896000pt;}
.ws21_c00486{word-spacing:0.960000pt;}
.ws1a_c00486{word-spacing:1.536000pt;}
.ws1d_c00486{word-spacing:1.920000pt;}
.ws14_c00486{word-spacing:2.240000pt;}
.wse_c00486{word-spacing:2.560000pt;}
.wsd_c00486{word-spacing:2.816000pt;}
.wsb_c00486{word-spacing:3.136000pt;}
.wsc_c00486{word-spacing:3.200000pt;}
.ws20_c00486{word-spacing:4.160000pt;}
.ws8_c00486{word-spacing:4.288000pt;}
.ws13_c00486{word-spacing:7.040000pt;}
.ws23_c00486{word-spacing:7.616000pt;}
.ws1e_c00486{word-spacing:7.936000pt;}
.ws25_c00486{word-spacing:8.000000pt;}
.ws24_c00486{word-spacing:8.320000pt;}
.ws15_c00486{word-spacing:9.216000pt;}
.ws10_c00486{word-spacing:11.456000pt;}
.ws26_c00486{word-spacing:13.440000pt;}
.ws18_c00486{word-spacing:15.040000pt;}
.ws17_c00486{word-spacing:16.256000pt;}
.ws1c_c00486{word-spacing:22.400000pt;}
._0_c00486{margin-left:-1.030400pt;}
._1_c00486{width:0.896000pt;}
.fs1_c00486{font-size:58.560000pt;}
.fs0_c00486{font-size:64.000000pt;}
.y0_c00486{bottom:0.000000pt;}
.y1_c00486{bottom:54.887600pt;}
.y25_c00486{bottom:102.599467pt;}
.y23_c00486{bottom:130.199467pt;}
.y22_c00486{bottom:157.799467pt;}
.y21_c00486{bottom:185.399467pt;}
.y20_c00486{bottom:212.999467pt;}
.y1f_c00486{bottom:240.599467pt;}
.y1e_c00486{bottom:268.199467pt;}
.y1d_c00486{bottom:295.799467pt;}
.y1c_c00486{bottom:323.399467pt;}
.y1b_c00486{bottom:350.999467pt;}
.y1a_c00486{bottom:378.599467pt;}
.y19_c00486{bottom:406.199467pt;}
.y18_c00486{bottom:433.799467pt;}
.y17_c00486{bottom:461.399467pt;}
.y16_c00486{bottom:488.999467pt;}
.y15_c00486{bottom:516.599467pt;}
.y14_c00486{bottom:544.199467pt;}
.y13_c00486{bottom:571.799467pt;}
.y12_c00486{bottom:599.399467pt;}
.y11_c00486{bottom:626.999467pt;}
.y10_c00486{bottom:654.599467pt;}
.yf_c00486{bottom:682.199467pt;}
.ye_c00486{bottom:709.719467pt;}
.yd_c00486{bottom:737.319467pt;}
.yc_c00486{bottom:764.919467pt;}
.yb_c00486{bottom:792.519467pt;}
.ya_c00486{bottom:820.119467pt;}
.y9_c00486{bottom:847.719467pt;}
.y8_c00486{bottom:875.319467pt;}
.y7_c00486{bottom:902.919467pt;}
.y6_c00486{bottom:930.519467pt;}
.y5_c00486{bottom:958.119467pt;}
.y4_c00486{bottom:985.719467pt;}
.y3_c00486{bottom:1013.319467pt;}
.y24_c00486{bottom:1043.480107pt;}
.y2_c00486{bottom:1061.399467pt;}
.h2_c00486{height:44.800000pt;}
.h3_c00486{height:48.294844pt;}
.h4_c00486{height:68.288000pt;}
.h0_c00486{height:1122.520000pt;}
.h1_c00486{height:1122.666667pt;}
.w2_c00486{width:0.000000pt;}
.w3_c00486{width:0.058667pt;}
.w0_c00486{width:793.701333pt;}
.w1_c00486{width:794.000000pt;}
.x1_c00486{left:-745.700800pt;}
.x2_c00486{left:-680.260800pt;}
.x3_c00486{left:-651.860800pt;}
.x0_c00486{left:0.000000pt;}
.x5_c00486{left:113.440000pt;}
.x6_c00486{left:141.840000pt;}
.x4_c00486{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00487;src:url('chunks/assets/font_f951be383d9572f73d1cb8d3.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00487;src:url('chunks/assets/font_df49d0b7d186e30b27fa3fc9.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls3_c00487{letter-spacing:-0.144000px;}
.ls4_c00487{letter-spacing:-0.072000px;}
.ls2_c00487{letter-spacing:0.000000px;}
.ls0_c00487{letter-spacing:0.072000px;}
.ls1_c00487{letter-spacing:18.144000px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00487{word-spacing:-18.000000px;}
.ws1_c00487{word-spacing:-17.928000px;}
.ws0_c00487{word-spacing:-17.856000px;}
.ws5_c00487{word-spacing:-0.131760px;}
.ws9_c00487{word-spacing:-0.072000px;}
.ws4_c00487{word-spacing:0.000000px;}
.ws2_c00487{word-spacing:0.144000px;}
.ws8_c00487{word-spacing:0.288000px;}
.wsc_c00487{word-spacing:0.648000px;}
.wsb_c00487{word-spacing:2.088000px;}
.wsa_c00487{word-spacing:2.520000px;}
.wse_c00487{word-spacing:2.808000px;}
.ws7_c00487{word-spacing:3.168000px;}
.wsf_c00487{word-spacing:5.040000px;}
.ws6_c00487{word-spacing:7.200000px;}
.wsd_c00487{word-spacing:11.808000px;}
._1_c00487{margin-left:-1.015200px;}
._0_c00487{width:1.000800px;}
.fc1_c00487{color:rgb(0,0,0);}
.fc0_c00487{color:rgb(35,31,32);}
.fs1_c00487{font-size:65.880000px;}
.fs0_c00487{font-size:72.000000px;}
.y0_c00487{bottom:0.000000px;}
.y1_c00487{bottom:61.748550px;}
.y18_c00487{bottom:488.024400px;}
.y17_c00487{bottom:519.074400px;}
.y16_c00487{bottom:550.124400px;}
.y15_c00487{bottom:581.174400px;}
.y14_c00487{bottom:612.224400px;}
.y13_c00487{bottom:643.274400px;}
.y12_c00487{bottom:674.324400px;}
.y11_c00487{bottom:705.374400px;}
.y10_c00487{bottom:736.424400px;}
.yf_c00487{bottom:767.474400px;}
.ye_c00487{bottom:798.434400px;}
.yd_c00487{bottom:829.484400px;}
.yc_c00487{bottom:860.534400px;}
.yb_c00487{bottom:891.584400px;}
.ya_c00487{bottom:922.634400px;}
.y9_c00487{bottom:953.684400px;}
.y8_c00487{bottom:984.734400px;}
.y7_c00487{bottom:1015.784400px;}
.y6_c00487{bottom:1046.834400px;}
.y5_c00487{bottom:1077.884400px;}
.y4_c00487{bottom:1108.934400px;}
.y3_c00487{bottom:1139.984400px;}
.y2_c00487{bottom:1194.074400px;}
.h2_c00487{height:50.400000px;}
.h3_c00487{height:54.331699px;}
.h4_c00487{height:76.824000px;}
.h0_c00487{height:1262.835000px;}
.h1_c00487{height:1263.000000px;}
.w0_c00487{width:892.914000px;}
.w1_c00487{width:893.250000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:54.000000px;}
.x2_c00487{left:127.620000px;}
.x3_c00487{left:159.570000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls3_c00487{letter-spacing:-0.128000pt;}
.ls4_c00487{letter-spacing:-0.064000pt;}
.ls2_c00487{letter-spacing:0.000000pt;}
.ls0_c00487{letter-spacing:0.064000pt;}
.ls1_c00487{letter-spacing:16.128000pt;}
.ws3_c00487{word-spacing:-16.000000pt;}
.ws1_c00487{word-spacing:-15.936000pt;}
.ws0_c00487{word-spacing:-15.872000pt;}
.ws5_c00487{word-spacing:-0.117120pt;}
.ws9_c00487{word-spacing:-0.064000pt;}
.ws4_c00487{word-spacing:0.000000pt;}
.ws2_c00487{word-spacing:0.128000pt;}
.ws8_c00487{word-spacing:0.256000pt;}
.wsc_c00487{word-spacing:0.576000pt;}
.wsb_c00487{word-spacing:1.856000pt;}
.wsa_c00487{word-spacing:2.240000pt;}
.wse_c00487{word-spacing:2.496000pt;}
.ws7_c00487{word-spacing:2.816000pt;}
.wsf_c00487{word-spacing:4.480000pt;}
.ws6_c00487{word-spacing:6.400000pt;}
.wsd_c00487{word-spacing:10.496000pt;}
._1_c00487{margin-left:-0.902400pt;}
._0_c00487{width:0.889600pt;}
.fs1_c00487{font-size:58.560000pt;}
.fs0_c00487{font-size:64.000000pt;}
.y0_c00487{bottom:0.000000pt;}
.y1_c00487{bottom:54.887600pt;}
.y18_c00487{bottom:433.799467pt;}
.y17_c00487{bottom:461.399467pt;}
.y16_c00487{bottom:488.999467pt;}
.y15_c00487{bottom:516.599467pt;}
.y14_c00487{bottom:544.199467pt;}
.y13_c00487{bottom:571.799467pt;}
.y12_c00487{bottom:599.399467pt;}
.y11_c00487{bottom:626.999467pt;}
.y10_c00487{bottom:654.599467pt;}
.yf_c00487{bottom:682.199467pt;}
.ye_c00487{bottom:709.719467pt;}
.yd_c00487{bottom:737.319467pt;}
.yc_c00487{bottom:764.919467pt;}
.yb_c00487{bottom:792.519467pt;}
.ya_c00487{bottom:820.119467pt;}
.y9_c00487{bottom:847.719467pt;}
.y8_c00487{bottom:875.319467pt;}
.y7_c00487{bottom:902.919467pt;}
.y6_c00487{bottom:930.519467pt;}
.y5_c00487{bottom:958.119467pt;}
.y4_c00487{bottom:985.719467pt;}
.y3_c00487{bottom:1013.319467pt;}
.y2_c00487{bottom:1061.399467pt;}
.h2_c00487{height:44.800000pt;}
.h3_c00487{height:48.294844pt;}
.h4_c00487{height:68.288000pt;}
.h0_c00487{height:1122.520000pt;}
.h1_c00487{height:1122.666667pt;}
.w0_c00487{width:793.701333pt;}
.w1_c00487{width:794.000000pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:48.000000pt;}
.x2_c00487{left:113.440000pt;}
.x3_c00487{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00488;src:url('chunks/assets/font_e92f7b71264a8b8fb1ed9326.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00488;src:url('chunks/assets/font_c99d93006d9d2680ae11e8e2.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00488;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00488{font-family:ff4_c00488;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00488;src:url('chunks/assets/font_66b02ad4cb93edc20f1949b6.woff2')format("woff");}.ff5_c00488{font-family:ff5_c00488;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00488;src:url('chunks/assets/font_9c3fb21f82a15af643e9af41.woff2')format("woff");}.ff6_c00488{font-family:ff6_c00488;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls6_c00488{letter-spacing:-0.144000px;}
.ls7_c00488{letter-spacing:-0.072000px;}
.ls5_c00488{letter-spacing:0.000000px;}
.ls0_c00488{letter-spacing:0.072000px;}
.ls3_c00488{letter-spacing:0.144000px;}
.ls1_c00488{letter-spacing:18.144000px;}
.ls2_c00488{letter-spacing:21.024000px;}
.ls4_c00488{letter-spacing:30.398400px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00488{word-spacing:-18.144000px;}
.ws5_c00488{word-spacing:-18.072000px;}
.ws3_c00488{word-spacing:-18.000000px;}
.ws1_c00488{word-spacing:-17.928000px;}
.ws0_c00488{word-spacing:-17.856000px;}
.ws1d_c00488{word-spacing:-0.432000px;}
.ws7_c00488{word-spacing:-0.131760px;}
.wsb_c00488{word-spacing:-0.072000px;}
.ws6_c00488{word-spacing:0.000000px;}
.ws1b_c00488{word-spacing:0.072000px;}
.ws2_c00488{word-spacing:0.144000px;}
.ws12_c00488{word-spacing:0.197640px;}
.wsa_c00488{word-spacing:0.288000px;}
.ws13_c00488{word-spacing:0.432000px;}
.wse_c00488{word-spacing:0.648000px;}
.wsd_c00488{word-spacing:2.088000px;}
.ws1f_c00488{word-spacing:2.160000px;}
.ws19_c00488{word-spacing:2.448000px;}
.wsc_c00488{word-spacing:2.520000px;}
.ws10_c00488{word-spacing:2.808000px;}
.ws1a_c00488{word-spacing:2.880000px;}
.ws9_c00488{word-spacing:3.168000px;}
.ws15_c00488{word-spacing:3.528000px;}
.ws1e_c00488{word-spacing:4.968000px;}
.ws11_c00488{word-spacing:5.040000px;}
.ws8_c00488{word-spacing:7.200000px;}
.ws14_c00488{word-spacing:9.648000px;}
.ws18_c00488{word-spacing:11.088000px;}
.wsf_c00488{word-spacing:11.808000px;}
.ws17_c00488{word-spacing:12.168000px;}
.ws1c_c00488{word-spacing:12.240000px;}
.ws16_c00488{word-spacing:12.960000px;}
._1_c00488{margin-left:-1.015200px;}
._0_c00488{width:1.000800px;}
.fc2_c00488{color:transparent;}
.fc1_c00488{color:rgb(0,0,0);}
.fc0_c00488{color:rgb(35,31,32);}
.fs1_c00488{font-size:65.880000px;}
.fs0_c00488{font-size:72.000000px;}
.y0_c00488{bottom:0.000000px;}
.y1_c00488{bottom:61.748550px;}
.y25_c00488{bottom:115.424400px;}
.y24_c00488{bottom:146.474400px;}
.y23_c00488{bottom:177.524400px;}
.y22_c00488{bottom:208.574400px;}
.y21_c00488{bottom:239.624400px;}
.y20_c00488{bottom:270.674400px;}
.y1f_c00488{bottom:301.724400px;}
.y1e_c00488{bottom:332.774400px;}
.y1d_c00488{bottom:363.824400px;}
.y1c_c00488{bottom:394.874400px;}
.y1b_c00488{bottom:425.924400px;}
.y1a_c00488{bottom:456.974400px;}
.y18_c00488{bottom:488.024400px;}
.y17_c00488{bottom:519.074400px;}
.y16_c00488{bottom:550.124400px;}
.y15_c00488{bottom:581.174400px;}
.y14_c00488{bottom:612.224400px;}
.y13_c00488{bottom:643.274400px;}
.y12_c00488{bottom:674.324400px;}
.y11_c00488{bottom:705.374400px;}
.y10_c00488{bottom:736.424400px;}
.yf_c00488{bottom:767.474400px;}
.ye_c00488{bottom:798.434400px;}
.yd_c00488{bottom:829.484400px;}
.yc_c00488{bottom:860.534400px;}
.yb_c00488{bottom:891.584400px;}
.ya_c00488{bottom:922.634400px;}
.y9_c00488{bottom:953.684400px;}
.y8_c00488{bottom:984.734400px;}
.y7_c00488{bottom:1015.784400px;}
.y6_c00488{bottom:1046.834400px;}
.y5_c00488{bottom:1077.884400px;}
.y4_c00488{bottom:1108.934400px;}
.y3_c00488{bottom:1139.984400px;}
.y19_c00488{bottom:1173.915120px;}
.y2_c00488{bottom:1194.074400px;}
.h2_c00488{height:50.400000px;}
.h3_c00488{height:54.331699px;}
.h4_c00488{height:76.824000px;}
.h0_c00488{height:1262.835000px;}
.h1_c00488{height:1263.000000px;}
.w2_c00488{width:0.000000px;}
.w3_c00488{width:0.066000px;}
.w0_c00488{width:892.914000px;}
.w1_c00488{width:893.250000px;}
.x1_c00488{left:-838.913400px;}
.x2_c00488{left:-765.293400px;}
.x3_c00488{left:-733.343400px;}
.x0_c00488{left:0.000000px;}
.x5_c00488{left:127.620000px;}
.x6_c00488{left:159.570000px;}
.x4_c00488{left:804.366150px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls6_c00488{letter-spacing:-0.128000pt;}
.ls7_c00488{letter-spacing:-0.064000pt;}
.ls5_c00488{letter-spacing:0.000000pt;}
.ls0_c00488{letter-spacing:0.064000pt;}
.ls3_c00488{letter-spacing:0.128000pt;}
.ls1_c00488{letter-spacing:16.128000pt;}
.ls2_c00488{letter-spacing:18.688000pt;}
.ls4_c00488{letter-spacing:27.020800pt;}
.ws4_c00488{word-spacing:-16.128000pt;}
.ws5_c00488{word-spacing:-16.064000pt;}
.ws3_c00488{word-spacing:-16.000000pt;}
.ws1_c00488{word-spacing:-15.936000pt;}
.ws0_c00488{word-spacing:-15.872000pt;}
.ws1d_c00488{word-spacing:-0.384000pt;}
.ws7_c00488{word-spacing:-0.117120pt;}
.wsb_c00488{word-spacing:-0.064000pt;}
.ws6_c00488{word-spacing:0.000000pt;}
.ws1b_c00488{word-spacing:0.064000pt;}
.ws2_c00488{word-spacing:0.128000pt;}
.ws12_c00488{word-spacing:0.175680pt;}
.wsa_c00488{word-spacing:0.256000pt;}
.ws13_c00488{word-spacing:0.384000pt;}
.wse_c00488{word-spacing:0.576000pt;}
.wsd_c00488{word-spacing:1.856000pt;}
.ws1f_c00488{word-spacing:1.920000pt;}
.ws19_c00488{word-spacing:2.176000pt;}
.wsc_c00488{word-spacing:2.240000pt;}
.ws10_c00488{word-spacing:2.496000pt;}
.ws1a_c00488{word-spacing:2.560000pt;}
.ws9_c00488{word-spacing:2.816000pt;}
.ws15_c00488{word-spacing:3.136000pt;}
.ws1e_c00488{word-spacing:4.416000pt;}
.ws11_c00488{word-spacing:4.480000pt;}
.ws8_c00488{word-spacing:6.400000pt;}
.ws14_c00488{word-spacing:8.576000pt;}
.ws18_c00488{word-spacing:9.856000pt;}
.wsf_c00488{word-spacing:10.496000pt;}
.ws17_c00488{word-spacing:10.816000pt;}
.ws1c_c00488{word-spacing:10.880000pt;}
.ws16_c00488{word-spacing:11.520000pt;}
._1_c00488{margin-left:-0.902400pt;}
._0_c00488{width:0.889600pt;}
.fs1_c00488{font-size:58.560000pt;}
.fs0_c00488{font-size:64.000000pt;}
.y0_c00488{bottom:0.000000pt;}
.y1_c00488{bottom:54.887600pt;}
.y25_c00488{bottom:102.599467pt;}
.y24_c00488{bottom:130.199467pt;}
.y23_c00488{bottom:157.799467pt;}
.y22_c00488{bottom:185.399467pt;}
.y21_c00488{bottom:212.999467pt;}
.y20_c00488{bottom:240.599467pt;}
.y1f_c00488{bottom:268.199467pt;}
.y1e_c00488{bottom:295.799467pt;}
.y1d_c00488{bottom:323.399467pt;}
.y1c_c00488{bottom:350.999467pt;}
.y1b_c00488{bottom:378.599467pt;}
.y1a_c00488{bottom:406.199467pt;}
.y18_c00488{bottom:433.799467pt;}
.y17_c00488{bottom:461.399467pt;}
.y16_c00488{bottom:488.999467pt;}
.y15_c00488{bottom:516.599467pt;}
.y14_c00488{bottom:544.199467pt;}
.y13_c00488{bottom:571.799467pt;}
.y12_c00488{bottom:599.399467pt;}
.y11_c00488{bottom:626.999467pt;}
.y10_c00488{bottom:654.599467pt;}
.yf_c00488{bottom:682.199467pt;}
.ye_c00488{bottom:709.719467pt;}
.yd_c00488{bottom:737.319467pt;}
.yc_c00488{bottom:764.919467pt;}
.yb_c00488{bottom:792.519467pt;}
.ya_c00488{bottom:820.119467pt;}
.y9_c00488{bottom:847.719467pt;}
.y8_c00488{bottom:875.319467pt;}
.y7_c00488{bottom:902.919467pt;}
.y6_c00488{bottom:930.519467pt;}
.y5_c00488{bottom:958.119467pt;}
.y4_c00488{bottom:985.719467pt;}
.y3_c00488{bottom:1013.319467pt;}
.y19_c00488{bottom:1043.480107pt;}
.y2_c00488{bottom:1061.399467pt;}
.h2_c00488{height:44.800000pt;}
.h3_c00488{height:48.294844pt;}
.h4_c00488{height:68.288000pt;}
.h0_c00488{height:1122.520000pt;}
.h1_c00488{height:1122.666667pt;}
.w2_c00488{width:0.000000pt;}
.w3_c00488{width:0.058667pt;}
.w0_c00488{width:793.701333pt;}
.w1_c00488{width:794.000000pt;}
.x1_c00488{left:-745.700800pt;}
.x2_c00488{left:-680.260800pt;}
.x3_c00488{left:-651.860800pt;}
.x0_c00488{left:0.000000pt;}
.x5_c00488{left:113.440000pt;}
.x6_c00488{left:141.840000pt;}
.x4_c00488{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00489;src:url('chunks/assets/font_19b46351ecba15f70da13838.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00489;src:url('chunks/assets/font_e5c4052382a3717e1b12c58a.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00489{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls6_c00489{letter-spacing:-0.288000px;}
.ls5_c00489{letter-spacing:-0.072000px;}
.ls4_c00489{letter-spacing:0.000000px;}
.ls0_c00489{letter-spacing:0.072000px;}
.ls2_c00489{letter-spacing:0.144000px;}
.ls3_c00489{letter-spacing:12.831120px;}
.ls1_c00489{letter-spacing:18.144000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00489{word-spacing:-18.072000px;}
.ws0_c00489{word-spacing:-18.000000px;}
.ws2_c00489{word-spacing:-17.928000px;}
.ws8_c00489{word-spacing:-0.576000px;}
.ws7_c00489{word-spacing:-0.131760px;}
.ws9_c00489{word-spacing:-0.072000px;}
.ws6_c00489{word-spacing:0.000000px;}
.ws1_c00489{word-spacing:0.144000px;}
.ws13_c00489{word-spacing:0.288000px;}
.ws11_c00489{word-spacing:1.728000px;}
.ws3_c00489{word-spacing:1.944000px;}
.wsb_c00489{word-spacing:2.088000px;}
.ws14_c00489{word-spacing:2.808000px;}
.wsd_c00489{word-spacing:6.408000px;}
.wsc_c00489{word-spacing:7.128000px;}
.wsf_c00489{word-spacing:7.560000px;}
.wsa_c00489{word-spacing:9.720000px;}
.ws12_c00489{word-spacing:12.168000px;}
.ws16_c00489{word-spacing:12.816000px;}
.ws17_c00489{word-spacing:12.888000px;}
.ws15_c00489{word-spacing:13.032000px;}
.ws4_c00489{word-spacing:13.104000px;}
.wse_c00489{word-spacing:13.680000px;}
.ws10_c00489{word-spacing:15.840000px;}
._0_c00489{margin-left:-1.022400px;}
._1_c00489{width:1.008000px;}
.fc1_c00489{color:rgb(0,0,0);}
.fc0_c00489{color:rgb(35,31,32);}
.fs1_c00489{font-size:65.880000px;}
.fs0_c00489{font-size:72.000000px;}
.y0_c00489{bottom:0.000000px;}
.y1_c00489{bottom:61.748550px;}
.y24_c00489{bottom:115.424400px;}
.y23_c00489{bottom:146.474400px;}
.y22_c00489{bottom:177.524400px;}
.y21_c00489{bottom:208.574400px;}
.y20_c00489{bottom:239.624400px;}
.y1f_c00489{bottom:270.674400px;}
.y1e_c00489{bottom:301.724400px;}
.y1d_c00489{bottom:332.774400px;}
.y1c_c00489{bottom:363.824400px;}
.y1b_c00489{bottom:394.874400px;}
.y1a_c00489{bottom:425.924400px;}
.y19_c00489{bottom:456.974400px;}
.y18_c00489{bottom:488.024400px;}
.y17_c00489{bottom:519.074400px;}
.y16_c00489{bottom:550.124400px;}
.y15_c00489{bottom:581.174400px;}
.y14_c00489{bottom:612.224400px;}
.y13_c00489{bottom:643.274400px;}
.y12_c00489{bottom:674.324400px;}
.y11_c00489{bottom:705.374400px;}
.y10_c00489{bottom:736.424400px;}
.yf_c00489{bottom:767.474400px;}
.ye_c00489{bottom:798.434400px;}
.yd_c00489{bottom:829.484400px;}
.yc_c00489{bottom:860.534400px;}
.yb_c00489{bottom:891.584400px;}
.ya_c00489{bottom:922.634400px;}
.y9_c00489{bottom:953.684400px;}
.y8_c00489{bottom:984.734400px;}
.y7_c00489{bottom:1015.784400px;}
.y6_c00489{bottom:1046.834400px;}
.y5_c00489{bottom:1077.884400px;}
.y4_c00489{bottom:1108.934400px;}
.y3_c00489{bottom:1139.984400px;}
.y2_c00489{bottom:1194.074400px;}
.h2_c00489{height:50.400000px;}
.h3_c00489{height:54.331699px;}
.h4_c00489{height:76.824000px;}
.h0_c00489{height:1262.835000px;}
.h1_c00489{height:1263.000000px;}
.w0_c00489{width:892.914000px;}
.w1_c00489{width:893.250000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:54.000000px;}
.x2_c00489{left:127.620000px;}
.x3_c00489{left:159.570000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls6_c00489{letter-spacing:-0.256000pt;}
.ls5_c00489{letter-spacing:-0.064000pt;}
.ls4_c00489{letter-spacing:0.000000pt;}
.ls0_c00489{letter-spacing:0.064000pt;}
.ls2_c00489{letter-spacing:0.128000pt;}
.ls3_c00489{letter-spacing:11.405440pt;}
.ls1_c00489{letter-spacing:16.128000pt;}
.ws5_c00489{word-spacing:-16.064000pt;}
.ws0_c00489{word-spacing:-16.000000pt;}
.ws2_c00489{word-spacing:-15.936000pt;}
.ws8_c00489{word-spacing:-0.512000pt;}
.ws7_c00489{word-spacing:-0.117120pt;}
.ws9_c00489{word-spacing:-0.064000pt;}
.ws6_c00489{word-spacing:0.000000pt;}
.ws1_c00489{word-spacing:0.128000pt;}
.ws13_c00489{word-spacing:0.256000pt;}
.ws11_c00489{word-spacing:1.536000pt;}
.ws3_c00489{word-spacing:1.728000pt;}
.wsb_c00489{word-spacing:1.856000pt;}
.ws14_c00489{word-spacing:2.496000pt;}
.wsd_c00489{word-spacing:5.696000pt;}
.wsc_c00489{word-spacing:6.336000pt;}
.wsf_c00489{word-spacing:6.720000pt;}
.wsa_c00489{word-spacing:8.640000pt;}
.ws12_c00489{word-spacing:10.816000pt;}
.ws16_c00489{word-spacing:11.392000pt;}
.ws17_c00489{word-spacing:11.456000pt;}
.ws15_c00489{word-spacing:11.584000pt;}
.ws4_c00489{word-spacing:11.648000pt;}
.wse_c00489{word-spacing:12.160000pt;}
.ws10_c00489{word-spacing:14.080000pt;}
._0_c00489{margin-left:-0.908800pt;}
._1_c00489{width:0.896000pt;}
.fs1_c00489{font-size:58.560000pt;}
.fs0_c00489{font-size:64.000000pt;}
.y0_c00489{bottom:0.000000pt;}
.y1_c00489{bottom:54.887600pt;}
.y24_c00489{bottom:102.599467pt;}
.y23_c00489{bottom:130.199467pt;}
.y22_c00489{bottom:157.799467pt;}
.y21_c00489{bottom:185.399467pt;}
.y20_c00489{bottom:212.999467pt;}
.y1f_c00489{bottom:240.599467pt;}
.y1e_c00489{bottom:268.199467pt;}
.y1d_c00489{bottom:295.799467pt;}
.y1c_c00489{bottom:323.399467pt;}
.y1b_c00489{bottom:350.999467pt;}
.y1a_c00489{bottom:378.599467pt;}
.y19_c00489{bottom:406.199467pt;}
.y18_c00489{bottom:433.799467pt;}
.y17_c00489{bottom:461.399467pt;}
.y16_c00489{bottom:488.999467pt;}
.y15_c00489{bottom:516.599467pt;}
.y14_c00489{bottom:544.199467pt;}
.y13_c00489{bottom:571.799467pt;}
.y12_c00489{bottom:599.399467pt;}
.y11_c00489{bottom:626.999467pt;}
.y10_c00489{bottom:654.599467pt;}
.yf_c00489{bottom:682.199467pt;}
.ye_c00489{bottom:709.719467pt;}
.yd_c00489{bottom:737.319467pt;}
.yc_c00489{bottom:764.919467pt;}
.yb_c00489{bottom:792.519467pt;}
.ya_c00489{bottom:820.119467pt;}
.y9_c00489{bottom:847.719467pt;}
.y8_c00489{bottom:875.319467pt;}
.y7_c00489{bottom:902.919467pt;}
.y6_c00489{bottom:930.519467pt;}
.y5_c00489{bottom:958.119467pt;}
.y4_c00489{bottom:985.719467pt;}
.y3_c00489{bottom:1013.319467pt;}
.y2_c00489{bottom:1061.399467pt;}
.h2_c00489{height:44.800000pt;}
.h3_c00489{height:48.294844pt;}
.h4_c00489{height:68.288000pt;}
.h0_c00489{height:1122.520000pt;}
.h1_c00489{height:1122.666667pt;}
.w0_c00489{width:793.701333pt;}
.w1_c00489{width:794.000000pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:48.000000pt;}
.x2_c00489{left:113.440000pt;}
.x3_c00489{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00490;src:url('chunks/assets/font_d186f369556317ad560b1ee1.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00490;src:url('chunks/assets/font_15015ff571aa8d234e94c2d2.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00490;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00490{font-family:ff4_c00490;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00490;src:url('chunks/assets/font_ccdec96d7d74008677e3cec2.woff2')format("woff");}.ff5_c00490{font-family:ff5_c00490;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00490;src:url('chunks/assets/font_53311ffe8438d0cf3f060696.woff2')format("woff");}.ff6_c00490{font-family:ff6_c00490;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00490;src:url('chunks/assets/font_916536111d5a76ea21d79a5a.woff2')format("woff");}.ff7_c00490{font-family:ff7_c00490;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls9_c00490{letter-spacing:-0.360000px;}
.ls7_c00490{letter-spacing:-0.288000px;}
.ls8_c00490{letter-spacing:-0.144000px;}
.ls6_c00490{letter-spacing:-0.072000px;}
.ls5_c00490{letter-spacing:0.000000px;}
.ls0_c00490{letter-spacing:0.072000px;}
.ls2_c00490{letter-spacing:0.144000px;}
.ls3_c00490{letter-spacing:12.831120px;}
.ls1_c00490{letter-spacing:18.144000px;}
.ls4_c00490{letter-spacing:18.504000px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00490{word-spacing:-18.072000px;}
.ws0_c00490{word-spacing:-18.000000px;}
.ws2_c00490{word-spacing:-17.928000px;}
.ws9_c00490{word-spacing:-0.576000px;}
.ws8_c00490{word-spacing:-0.131760px;}
.wsa_c00490{word-spacing:-0.072000px;}
.ws7_c00490{word-spacing:0.000000px;}
.ws1_c00490{word-spacing:0.144000px;}
.ws19_c00490{word-spacing:0.197640px;}
.ws14_c00490{word-spacing:0.288000px;}
.ws28_c00490{word-spacing:0.360000px;}
.ws6_c00490{word-spacing:0.504000px;}
.ws23_c00490{word-spacing:0.648000px;}
.ws22_c00490{word-spacing:0.720000px;}
.ws12_c00490{word-spacing:1.728000px;}
.ws3_c00490{word-spacing:1.944000px;}
.wsc_c00490{word-spacing:2.088000px;}
.ws15_c00490{word-spacing:2.808000px;}
.ws1d_c00490{word-spacing:3.888000px;}
.ws1b_c00490{word-spacing:4.608000px;}
.ws24_c00490{word-spacing:5.328000px;}
.wse_c00490{word-spacing:6.408000px;}
.wsd_c00490{word-spacing:7.128000px;}
.ws10_c00490{word-spacing:7.560000px;}
.ws25_c00490{word-spacing:9.648000px;}
.wsb_c00490{word-spacing:9.720000px;}
.ws27_c00490{word-spacing:10.008000px;}
.ws26_c00490{word-spacing:10.080000px;}
.ws20_c00490{word-spacing:10.368000px;}
.ws1c_c00490{word-spacing:12.096000px;}
.ws13_c00490{word-spacing:12.168000px;}
.ws17_c00490{word-spacing:12.816000px;}
.ws18_c00490{word-spacing:12.888000px;}
.ws16_c00490{word-spacing:13.032000px;}
.ws4_c00490{word-spacing:13.104000px;}
.wsf_c00490{word-spacing:13.680000px;}
.ws1e_c00490{word-spacing:14.688000px;}
.ws11_c00490{word-spacing:15.840000px;}
.ws1f_c00490{word-spacing:17.208000px;}
.ws21_c00490{word-spacing:24.048000px;}
.ws1a_c00490{word-spacing:29.880000px;}
._0_c00490{margin-left:-1.022400px;}
._1_c00490{width:1.008000px;}
._3_c00490{width:10.872000px;}
._2_c00490{width:27.043200px;}
.fc2_c00490{color:transparent;}
.fc1_c00490{color:rgb(0,0,0);}
.fc0_c00490{color:rgb(35,31,32);}
.fs1_c00490{font-size:65.880000px;}
.fs0_c00490{font-size:72.000000px;}
.y0_c00490{bottom:0.000000px;}
.y1_c00490{bottom:61.748550px;}
.y24_c00490{bottom:115.424400px;}
.y23_c00490{bottom:146.474400px;}
.y22_c00490{bottom:177.524400px;}
.y21_c00490{bottom:208.574400px;}
.y20_c00490{bottom:239.624400px;}
.y1f_c00490{bottom:270.674400px;}
.y1e_c00490{bottom:301.724400px;}
.y1d_c00490{bottom:332.774400px;}
.y1c_c00490{bottom:363.824400px;}
.y1b_c00490{bottom:394.874400px;}
.y1a_c00490{bottom:425.924400px;}
.y19_c00490{bottom:456.974400px;}
.y18_c00490{bottom:488.024400px;}
.y17_c00490{bottom:519.074400px;}
.y16_c00490{bottom:550.124400px;}
.y15_c00490{bottom:581.174400px;}
.y14_c00490{bottom:612.224400px;}
.y13_c00490{bottom:643.274400px;}
.y12_c00490{bottom:674.324400px;}
.y11_c00490{bottom:705.374400px;}
.y10_c00490{bottom:736.424400px;}
.yf_c00490{bottom:767.474400px;}
.ye_c00490{bottom:798.434400px;}
.yd_c00490{bottom:829.484400px;}
.yc_c00490{bottom:860.534400px;}
.yb_c00490{bottom:891.584400px;}
.ya_c00490{bottom:922.634400px;}
.y9_c00490{bottom:953.684400px;}
.y8_c00490{bottom:984.734400px;}
.y7_c00490{bottom:1015.784400px;}
.y6_c00490{bottom:1046.834400px;}
.y5_c00490{bottom:1077.884400px;}
.y4_c00490{bottom:1108.934400px;}
.y3_c00490{bottom:1139.984400px;}
.y25_c00490{bottom:1173.915120px;}
.y2_c00490{bottom:1194.074400px;}
.h2_c00490{height:50.400000px;}
.h3_c00490{height:54.331699px;}
.h4_c00490{height:76.824000px;}
.h5_c00490{height:78.048000px;}
.h0_c00490{height:1262.835000px;}
.h1_c00490{height:1263.000000px;}
.w2_c00490{width:0.000000px;}
.w3_c00490{width:0.066000px;}
.w0_c00490{width:892.914000px;}
.w1_c00490{width:893.250000px;}
.x1_c00490{left:-838.913400px;}
.x2_c00490{left:-765.293400px;}
.x3_c00490{left:-733.343400px;}
.x0_c00490{left:0.000000px;}
.x5_c00490{left:127.620000px;}
.x6_c00490{left:159.570000px;}
.x4_c00490{left:804.366150px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls9_c00490{letter-spacing:-0.320000pt;}
.ls7_c00490{letter-spacing:-0.256000pt;}
.ls8_c00490{letter-spacing:-0.128000pt;}
.ls6_c00490{letter-spacing:-0.064000pt;}
.ls5_c00490{letter-spacing:0.000000pt;}
.ls0_c00490{letter-spacing:0.064000pt;}
.ls2_c00490{letter-spacing:0.128000pt;}
.ls3_c00490{letter-spacing:11.405440pt;}
.ls1_c00490{letter-spacing:16.128000pt;}
.ls4_c00490{letter-spacing:16.448000pt;}
.ws5_c00490{word-spacing:-16.064000pt;}
.ws0_c00490{word-spacing:-16.000000pt;}
.ws2_c00490{word-spacing:-15.936000pt;}
.ws9_c00490{word-spacing:-0.512000pt;}
.ws8_c00490{word-spacing:-0.117120pt;}
.wsa_c00490{word-spacing:-0.064000pt;}
.ws7_c00490{word-spacing:0.000000pt;}
.ws1_c00490{word-spacing:0.128000pt;}
.ws19_c00490{word-spacing:0.175680pt;}
.ws14_c00490{word-spacing:0.256000pt;}
.ws28_c00490{word-spacing:0.320000pt;}
.ws6_c00490{word-spacing:0.448000pt;}
.ws23_c00490{word-spacing:0.576000pt;}
.ws22_c00490{word-spacing:0.640000pt;}
.ws12_c00490{word-spacing:1.536000pt;}
.ws3_c00490{word-spacing:1.728000pt;}
.wsc_c00490{word-spacing:1.856000pt;}
.ws15_c00490{word-spacing:2.496000pt;}
.ws1d_c00490{word-spacing:3.456000pt;}
.ws1b_c00490{word-spacing:4.096000pt;}
.ws24_c00490{word-spacing:4.736000pt;}
.wse_c00490{word-spacing:5.696000pt;}
.wsd_c00490{word-spacing:6.336000pt;}
.ws10_c00490{word-spacing:6.720000pt;}
.ws25_c00490{word-spacing:8.576000pt;}
.wsb_c00490{word-spacing:8.640000pt;}
.ws27_c00490{word-spacing:8.896000pt;}
.ws26_c00490{word-spacing:8.960000pt;}
.ws20_c00490{word-spacing:9.216000pt;}
.ws1c_c00490{word-spacing:10.752000pt;}
.ws13_c00490{word-spacing:10.816000pt;}
.ws17_c00490{word-spacing:11.392000pt;}
.ws18_c00490{word-spacing:11.456000pt;}
.ws16_c00490{word-spacing:11.584000pt;}
.ws4_c00490{word-spacing:11.648000pt;}
.wsf_c00490{word-spacing:12.160000pt;}
.ws1e_c00490{word-spacing:13.056000pt;}
.ws11_c00490{word-spacing:14.080000pt;}
.ws1f_c00490{word-spacing:15.296000pt;}
.ws21_c00490{word-spacing:21.376000pt;}
.ws1a_c00490{word-spacing:26.560000pt;}
._0_c00490{margin-left:-0.908800pt;}
._1_c00490{width:0.896000pt;}
._3_c00490{width:9.664000pt;}
._2_c00490{width:24.038400pt;}
.fs1_c00490{font-size:58.560000pt;}
.fs0_c00490{font-size:64.000000pt;}
.y0_c00490{bottom:0.000000pt;}
.y1_c00490{bottom:54.887600pt;}
.y24_c00490{bottom:102.599467pt;}
.y23_c00490{bottom:130.199467pt;}
.y22_c00490{bottom:157.799467pt;}
.y21_c00490{bottom:185.399467pt;}
.y20_c00490{bottom:212.999467pt;}
.y1f_c00490{bottom:240.599467pt;}
.y1e_c00490{bottom:268.199467pt;}
.y1d_c00490{bottom:295.799467pt;}
.y1c_c00490{bottom:323.399467pt;}
.y1b_c00490{bottom:350.999467pt;}
.y1a_c00490{bottom:378.599467pt;}
.y19_c00490{bottom:406.199467pt;}
.y18_c00490{bottom:433.799467pt;}
.y17_c00490{bottom:461.399467pt;}
.y16_c00490{bottom:488.999467pt;}
.y15_c00490{bottom:516.599467pt;}
.y14_c00490{bottom:544.199467pt;}
.y13_c00490{bottom:571.799467pt;}
.y12_c00490{bottom:599.399467pt;}
.y11_c00490{bottom:626.999467pt;}
.y10_c00490{bottom:654.599467pt;}
.yf_c00490{bottom:682.199467pt;}
.ye_c00490{bottom:709.719467pt;}
.yd_c00490{bottom:737.319467pt;}
.yc_c00490{bottom:764.919467pt;}
.yb_c00490{bottom:792.519467pt;}
.ya_c00490{bottom:820.119467pt;}
.y9_c00490{bottom:847.719467pt;}
.y8_c00490{bottom:875.319467pt;}
.y7_c00490{bottom:902.919467pt;}
.y6_c00490{bottom:930.519467pt;}
.y5_c00490{bottom:958.119467pt;}
.y4_c00490{bottom:985.719467pt;}
.y3_c00490{bottom:1013.319467pt;}
.y25_c00490{bottom:1043.480107pt;}
.y2_c00490{bottom:1061.399467pt;}
.h2_c00490{height:44.800000pt;}
.h3_c00490{height:48.294844pt;}
.h4_c00490{height:68.288000pt;}
.h5_c00490{height:69.376000pt;}
.h0_c00490{height:1122.520000pt;}
.h1_c00490{height:1122.666667pt;}
.w2_c00490{width:0.000000pt;}
.w3_c00490{width:0.058667pt;}
.w0_c00490{width:793.701333pt;}
.w1_c00490{width:794.000000pt;}
.x1_c00490{left:-745.700800pt;}
.x2_c00490{left:-680.260800pt;}
.x3_c00490{left:-651.860800pt;}
.x0_c00490{left:0.000000pt;}
.x5_c00490{left:113.440000pt;}
.x6_c00490{left:141.840000pt;}
.x4_c00490{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00491;src:url('chunks/assets/font_bd229efc43ccd3a58ce2579e.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00491;src:url('chunks/assets/font_57d8d8e8ef21235b294b2074.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls3_c00491{letter-spacing:-0.144000px;}
.ls4_c00491{letter-spacing:-0.072000px;}
.ls2_c00491{letter-spacing:0.000000px;}
.ls0_c00491{letter-spacing:0.072000px;}
.ls1_c00491{letter-spacing:18.144000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00491{word-spacing:-18.072000px;}
.ws2_c00491{word-spacing:-18.000000px;}
.ws4_c00491{word-spacing:-17.928000px;}
.ws0_c00491{word-spacing:-17.856000px;}
.ws6_c00491{word-spacing:-0.131760px;}
.ws8_c00491{word-spacing:-0.072000px;}
.ws5_c00491{word-spacing:0.000000px;}
.ws1_c00491{word-spacing:0.144000px;}
.ws7_c00491{word-spacing:3.960000px;}
.ws9_c00491{word-spacing:7.920000px;}
._0_c00491{margin-left:-1.072800px;}
._1_c00491{width:1.224000px;}
.fc1_c00491{color:rgb(0,0,0);}
.fc0_c00491{color:rgb(35,31,32);}
.fs1_c00491{font-size:65.880000px;}
.fs0_c00491{font-size:72.000000px;}
.y0_c00491{bottom:0.000000px;}
.y1_c00491{bottom:61.748550px;}
.yf_c00491{bottom:767.474400px;}
.ye_c00491{bottom:798.434400px;}
.yd_c00491{bottom:829.484400px;}
.yc_c00491{bottom:860.534400px;}
.yb_c00491{bottom:891.584400px;}
.ya_c00491{bottom:922.634400px;}
.y9_c00491{bottom:953.684400px;}
.y8_c00491{bottom:984.734400px;}
.y7_c00491{bottom:1015.784400px;}
.y6_c00491{bottom:1046.834400px;}
.y5_c00491{bottom:1077.884400px;}
.y4_c00491{bottom:1108.934400px;}
.y3_c00491{bottom:1139.984400px;}
.y2_c00491{bottom:1194.074400px;}
.h2_c00491{height:50.400000px;}
.h3_c00491{height:54.331699px;}
.h4_c00491{height:76.824000px;}
.h0_c00491{height:1262.835000px;}
.h1_c00491{height:1263.000000px;}
.w0_c00491{width:892.914000px;}
.w1_c00491{width:893.250000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:54.000000px;}
.x2_c00491{left:127.620000px;}
.x3_c00491{left:159.570000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls3_c00491{letter-spacing:-0.128000pt;}
.ls4_c00491{letter-spacing:-0.064000pt;}
.ls2_c00491{letter-spacing:0.000000pt;}
.ls0_c00491{letter-spacing:0.064000pt;}
.ls1_c00491{letter-spacing:16.128000pt;}
.ws3_c00491{word-spacing:-16.064000pt;}
.ws2_c00491{word-spacing:-16.000000pt;}
.ws4_c00491{word-spacing:-15.936000pt;}
.ws0_c00491{word-spacing:-15.872000pt;}
.ws6_c00491{word-spacing:-0.117120pt;}
.ws8_c00491{word-spacing:-0.064000pt;}
.ws5_c00491{word-spacing:0.000000pt;}
.ws1_c00491{word-spacing:0.128000pt;}
.ws7_c00491{word-spacing:3.520000pt;}
.ws9_c00491{word-spacing:7.040000pt;}
._0_c00491{margin-left:-0.953600pt;}
._1_c00491{width:1.088000pt;}
.fs1_c00491{font-size:58.560000pt;}
.fs0_c00491{font-size:64.000000pt;}
.y0_c00491{bottom:0.000000pt;}
.y1_c00491{bottom:54.887600pt;}
.yf_c00491{bottom:682.199467pt;}
.ye_c00491{bottom:709.719467pt;}
.yd_c00491{bottom:737.319467pt;}
.yc_c00491{bottom:764.919467pt;}
.yb_c00491{bottom:792.519467pt;}
.ya_c00491{bottom:820.119467pt;}
.y9_c00491{bottom:847.719467pt;}
.y8_c00491{bottom:875.319467pt;}
.y7_c00491{bottom:902.919467pt;}
.y6_c00491{bottom:930.519467pt;}
.y5_c00491{bottom:958.119467pt;}
.y4_c00491{bottom:985.719467pt;}
.y3_c00491{bottom:1013.319467pt;}
.y2_c00491{bottom:1061.399467pt;}
.h2_c00491{height:44.800000pt;}
.h3_c00491{height:48.294844pt;}
.h4_c00491{height:68.288000pt;}
.h0_c00491{height:1122.520000pt;}
.h1_c00491{height:1122.666667pt;}
.w0_c00491{width:793.701333pt;}
.w1_c00491{width:794.000000pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:48.000000pt;}
.x2_c00491{left:113.440000pt;}
.x3_c00491{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00492;src:url('chunks/assets/font_ee7565456f7c0eec562485e0.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00492;src:url('chunks/assets/font_bb8d7472c5c16808a6d43371.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00492;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00492{font-family:ff4_c00492;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00492;src:url('chunks/assets/font_d27d9064646a5227913da28a.woff2')format("woff");}.ff5_c00492{font-family:ff5_c00492;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00492;src:url('chunks/assets/font_993806e4aa1b21b9b02f7c95.woff2')format("woff");}.ff6_c00492{font-family:ff6_c00492;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls6_c00492{letter-spacing:-0.576000px;}
.ls4_c00492{letter-spacing:-0.144000px;}
.ls5_c00492{letter-spacing:-0.072000px;}
.ls3_c00492{letter-spacing:0.000000px;}
.ls0_c00492{letter-spacing:0.072000px;}
.ls2_c00492{letter-spacing:0.144000px;}
.ls1_c00492{letter-spacing:18.144000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00492{word-spacing:-18.072000px;}
.ws2_c00492{word-spacing:-18.000000px;}
.ws4_c00492{word-spacing:-17.928000px;}
.ws0_c00492{word-spacing:-17.856000px;}
.ws5_c00492{word-spacing:-17.424000px;}
.ws12_c00492{word-spacing:-0.432000px;}
.ws15_c00492{word-spacing:-0.360000px;}
.ws7_c00492{word-spacing:-0.131760px;}
.ws9_c00492{word-spacing:-0.072000px;}
.ws6_c00492{word-spacing:0.000000px;}
.ws1_c00492{word-spacing:0.144000px;}
.wsb_c00492{word-spacing:0.197640px;}
.ws11_c00492{word-spacing:0.360000px;}
.wsc_c00492{word-spacing:0.432000px;}
.ws10_c00492{word-spacing:1.008000px;}
.wse_c00492{word-spacing:2.160000px;}
.ws8_c00492{word-spacing:3.960000px;}
.wsd_c00492{word-spacing:4.320000px;}
.wsa_c00492{word-spacing:7.920000px;}
.ws13_c00492{word-spacing:8.928000px;}
.wsf_c00492{word-spacing:9.288000px;}
.ws14_c00492{word-spacing:15.408000px;}
._0_c00492{margin-left:-1.072800px;}
._1_c00492{width:1.224000px;}
.fc2_c00492{color:transparent;}
.fc1_c00492{color:rgb(0,0,0);}
.fc0_c00492{color:rgb(35,31,32);}
.fs1_c00492{font-size:65.880000px;}
.fs0_c00492{font-size:72.000000px;}
.y0_c00492{bottom:0.000000px;}
.y1_c00492{bottom:61.748550px;}
.y25_c00492{bottom:115.424400px;}
.y24_c00492{bottom:146.474400px;}
.y23_c00492{bottom:177.524400px;}
.y22_c00492{bottom:208.574400px;}
.y21_c00492{bottom:239.624400px;}
.y20_c00492{bottom:270.674400px;}
.y1f_c00492{bottom:301.724400px;}
.y1e_c00492{bottom:332.774400px;}
.y1d_c00492{bottom:363.824400px;}
.y1c_c00492{bottom:394.874400px;}
.y1b_c00492{bottom:425.924400px;}
.y1a_c00492{bottom:456.974400px;}
.y19_c00492{bottom:488.024400px;}
.y18_c00492{bottom:519.074400px;}
.y17_c00492{bottom:550.124400px;}
.y16_c00492{bottom:581.174400px;}
.y15_c00492{bottom:612.224400px;}
.y14_c00492{bottom:643.274400px;}
.y13_c00492{bottom:674.324400px;}
.y12_c00492{bottom:705.374400px;}
.y11_c00492{bottom:736.424400px;}
.yf_c00492{bottom:767.474400px;}
.ye_c00492{bottom:798.434400px;}
.yd_c00492{bottom:829.484400px;}
.yc_c00492{bottom:860.534400px;}
.yb_c00492{bottom:891.584400px;}
.ya_c00492{bottom:922.634400px;}
.y9_c00492{bottom:953.684400px;}
.y8_c00492{bottom:984.734400px;}
.y7_c00492{bottom:1015.784400px;}
.y6_c00492{bottom:1046.834400px;}
.y5_c00492{bottom:1077.884400px;}
.y4_c00492{bottom:1108.934400px;}
.y3_c00492{bottom:1139.984400px;}
.y10_c00492{bottom:1173.915120px;}
.y2_c00492{bottom:1194.074400px;}
.h2_c00492{height:50.400000px;}
.h3_c00492{height:54.331699px;}
.h4_c00492{height:76.824000px;}
.h0_c00492{height:1262.835000px;}
.h1_c00492{height:1263.000000px;}
.w2_c00492{width:0.000000px;}
.w3_c00492{width:0.066000px;}
.w0_c00492{width:892.914000px;}
.w1_c00492{width:893.250000px;}
.x1_c00492{left:-838.913400px;}
.x2_c00492{left:-765.293400px;}
.x3_c00492{left:-733.343400px;}
.x0_c00492{left:0.000000px;}
.x5_c00492{left:127.620000px;}
.x6_c00492{left:159.570000px;}
.x7_c00492{left:164.070000px;}
.x4_c00492{left:804.366150px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls6_c00492{letter-spacing:-0.512000pt;}
.ls4_c00492{letter-spacing:-0.128000pt;}
.ls5_c00492{letter-spacing:-0.064000pt;}
.ls3_c00492{letter-spacing:0.000000pt;}
.ls0_c00492{letter-spacing:0.064000pt;}
.ls2_c00492{letter-spacing:0.128000pt;}
.ls1_c00492{letter-spacing:16.128000pt;}
.ws3_c00492{word-spacing:-16.064000pt;}
.ws2_c00492{word-spacing:-16.000000pt;}
.ws4_c00492{word-spacing:-15.936000pt;}
.ws0_c00492{word-spacing:-15.872000pt;}
.ws5_c00492{word-spacing:-15.488000pt;}
.ws12_c00492{word-spacing:-0.384000pt;}
.ws15_c00492{word-spacing:-0.320000pt;}
.ws7_c00492{word-spacing:-0.117120pt;}
.ws9_c00492{word-spacing:-0.064000pt;}
.ws6_c00492{word-spacing:0.000000pt;}
.ws1_c00492{word-spacing:0.128000pt;}
.wsb_c00492{word-spacing:0.175680pt;}
.ws11_c00492{word-spacing:0.320000pt;}
.wsc_c00492{word-spacing:0.384000pt;}
.ws10_c00492{word-spacing:0.896000pt;}
.wse_c00492{word-spacing:1.920000pt;}
.ws8_c00492{word-spacing:3.520000pt;}
.wsd_c00492{word-spacing:3.840000pt;}
.wsa_c00492{word-spacing:7.040000pt;}
.ws13_c00492{word-spacing:7.936000pt;}
.wsf_c00492{word-spacing:8.256000pt;}
.ws14_c00492{word-spacing:13.696000pt;}
._0_c00492{margin-left:-0.953600pt;}
._1_c00492{width:1.088000pt;}
.fs1_c00492{font-size:58.560000pt;}
.fs0_c00492{font-size:64.000000pt;}
.y0_c00492{bottom:0.000000pt;}
.y1_c00492{bottom:54.887600pt;}
.y25_c00492{bottom:102.599467pt;}
.y24_c00492{bottom:130.199467pt;}
.y23_c00492{bottom:157.799467pt;}
.y22_c00492{bottom:185.399467pt;}
.y21_c00492{bottom:212.999467pt;}
.y20_c00492{bottom:240.599467pt;}
.y1f_c00492{bottom:268.199467pt;}
.y1e_c00492{bottom:295.799467pt;}
.y1d_c00492{bottom:323.399467pt;}
.y1c_c00492{bottom:350.999467pt;}
.y1b_c00492{bottom:378.599467pt;}
.y1a_c00492{bottom:406.199467pt;}
.y19_c00492{bottom:433.799467pt;}
.y18_c00492{bottom:461.399467pt;}
.y17_c00492{bottom:488.999467pt;}
.y16_c00492{bottom:516.599467pt;}
.y15_c00492{bottom:544.199467pt;}
.y14_c00492{bottom:571.799467pt;}
.y13_c00492{bottom:599.399467pt;}
.y12_c00492{bottom:626.999467pt;}
.y11_c00492{bottom:654.599467pt;}
.yf_c00492{bottom:682.199467pt;}
.ye_c00492{bottom:709.719467pt;}
.yd_c00492{bottom:737.319467pt;}
.yc_c00492{bottom:764.919467pt;}
.yb_c00492{bottom:792.519467pt;}
.ya_c00492{bottom:820.119467pt;}
.y9_c00492{bottom:847.719467pt;}
.y8_c00492{bottom:875.319467pt;}
.y7_c00492{bottom:902.919467pt;}
.y6_c00492{bottom:930.519467pt;}
.y5_c00492{bottom:958.119467pt;}
.y4_c00492{bottom:985.719467pt;}
.y3_c00492{bottom:1013.319467pt;}
.y10_c00492{bottom:1043.480107pt;}
.y2_c00492{bottom:1061.399467pt;}
.h2_c00492{height:44.800000pt;}
.h3_c00492{height:48.294844pt;}
.h4_c00492{height:68.288000pt;}
.h0_c00492{height:1122.520000pt;}
.h1_c00492{height:1122.666667pt;}
.w2_c00492{width:0.000000pt;}
.w3_c00492{width:0.058667pt;}
.w0_c00492{width:793.701333pt;}
.w1_c00492{width:794.000000pt;}
.x1_c00492{left:-745.700800pt;}
.x2_c00492{left:-680.260800pt;}
.x3_c00492{left:-651.860800pt;}
.x0_c00492{left:0.000000pt;}
.x5_c00492{left:113.440000pt;}
.x6_c00492{left:141.840000pt;}
.x7_c00492{left:145.840000pt;}
.x4_c00492{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00493;src:url('chunks/assets/font_a5c4f1e00bac27a469cfee01.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_dc67ef1f38e0364e31743be3.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls6_c00493{letter-spacing:-0.288000px;}
.ls5_c00493{letter-spacing:-0.072000px;}
.ls4_c00493{letter-spacing:0.000000px;}
.ls0_c00493{letter-spacing:0.072000px;}
.ls2_c00493{letter-spacing:0.504000px;}
.ls1_c00493{letter-spacing:18.144000px;}
.ls3_c00493{letter-spacing:18.504000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00493{word-spacing:-17.928000px;}
.ws3_c00493{word-spacing:-0.131760px;}
.ws8_c00493{word-spacing:-0.072000px;}
.ws2_c00493{word-spacing:0.000000px;}
.ws0_c00493{word-spacing:0.144000px;}
.wsc_c00493{word-spacing:0.288000px;}
.ws9_c00493{word-spacing:0.648000px;}
.wsf_c00493{word-spacing:0.936000px;}
.ws10_c00493{word-spacing:1.008000px;}
.ws7_c00493{word-spacing:1.080000px;}
.ws6_c00493{word-spacing:1.440000px;}
.ws11_c00493{word-spacing:3.240000px;}
.wsb_c00493{word-spacing:4.968000px;}
.ws12_c00493{word-spacing:10.728000px;}
.ws5_c00493{word-spacing:12.240000px;}
.ws4_c00493{word-spacing:14.760000px;}
.wsd_c00493{word-spacing:20.088000px;}
.wse_c00493{word-spacing:21.600000px;}
.wsa_c00493{word-spacing:28.008000px;}
._0_c00493{margin-left:-1.080000px;}
._1_c00493{width:1.008000px;}
.fc1_c00493{color:rgb(0,0,0);}
.fc0_c00493{color:rgb(35,31,32);}
.fs1_c00493{font-size:65.880000px;}
.fs0_c00493{font-size:72.000000px;}
.y0_c00493{bottom:0.000000px;}
.y1_c00493{bottom:61.748550px;}
.y23_c00493{bottom:146.474400px;}
.y22_c00493{bottom:177.524400px;}
.y21_c00493{bottom:208.574400px;}
.y20_c00493{bottom:239.624400px;}
.y1f_c00493{bottom:270.674400px;}
.y1e_c00493{bottom:301.724400px;}
.y1d_c00493{bottom:332.774400px;}
.y1c_c00493{bottom:363.824400px;}
.y1b_c00493{bottom:394.874400px;}
.y1a_c00493{bottom:425.924400px;}
.y19_c00493{bottom:456.974400px;}
.y18_c00493{bottom:488.024400px;}
.y17_c00493{bottom:519.074400px;}
.y16_c00493{bottom:550.124400px;}
.y15_c00493{bottom:581.174400px;}
.y14_c00493{bottom:612.224400px;}
.y13_c00493{bottom:643.274400px;}
.y12_c00493{bottom:674.324400px;}
.y11_c00493{bottom:705.374400px;}
.y10_c00493{bottom:736.424400px;}
.yf_c00493{bottom:767.474400px;}
.ye_c00493{bottom:798.434400px;}
.yd_c00493{bottom:829.484400px;}
.yc_c00493{bottom:860.534400px;}
.yb_c00493{bottom:891.584400px;}
.ya_c00493{bottom:922.634400px;}
.y9_c00493{bottom:953.684400px;}
.y8_c00493{bottom:984.734400px;}
.y7_c00493{bottom:1015.784400px;}
.y6_c00493{bottom:1046.834400px;}
.y5_c00493{bottom:1077.884400px;}
.y4_c00493{bottom:1108.934400px;}
.y3_c00493{bottom:1139.984400px;}
.y2_c00493{bottom:1194.074400px;}
.h2_c00493{height:50.400000px;}
.h3_c00493{height:54.331699px;}
.h4_c00493{height:76.824000px;}
.h0_c00493{height:1262.835000px;}
.h1_c00493{height:1263.000000px;}
.w0_c00493{width:892.914000px;}
.w1_c00493{width:893.250000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:54.000000px;}
.x2_c00493{left:127.620000px;}
.x3_c00493{left:159.570000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls6_c00493{letter-spacing:-0.256000pt;}
.ls5_c00493{letter-spacing:-0.064000pt;}
.ls4_c00493{letter-spacing:0.000000pt;}
.ls0_c00493{letter-spacing:0.064000pt;}
.ls2_c00493{letter-spacing:0.448000pt;}
.ls1_c00493{letter-spacing:16.128000pt;}
.ls3_c00493{letter-spacing:16.448000pt;}
.ws1_c00493{word-spacing:-15.936000pt;}
.ws3_c00493{word-spacing:-0.117120pt;}
.ws8_c00493{word-spacing:-0.064000pt;}
.ws2_c00493{word-spacing:0.000000pt;}
.ws0_c00493{word-spacing:0.128000pt;}
.wsc_c00493{word-spacing:0.256000pt;}
.ws9_c00493{word-spacing:0.576000pt;}
.wsf_c00493{word-spacing:0.832000pt;}
.ws10_c00493{word-spacing:0.896000pt;}
.ws7_c00493{word-spacing:0.960000pt;}
.ws6_c00493{word-spacing:1.280000pt;}
.ws11_c00493{word-spacing:2.880000pt;}
.wsb_c00493{word-spacing:4.416000pt;}
.ws12_c00493{word-spacing:9.536000pt;}
.ws5_c00493{word-spacing:10.880000pt;}
.ws4_c00493{word-spacing:13.120000pt;}
.wsd_c00493{word-spacing:17.856000pt;}
.wse_c00493{word-spacing:19.200000pt;}
.wsa_c00493{word-spacing:24.896000pt;}
._0_c00493{margin-left:-0.960000pt;}
._1_c00493{width:0.896000pt;}
.fs1_c00493{font-size:58.560000pt;}
.fs0_c00493{font-size:64.000000pt;}
.y0_c00493{bottom:0.000000pt;}
.y1_c00493{bottom:54.887600pt;}
.y23_c00493{bottom:130.199467pt;}
.y22_c00493{bottom:157.799467pt;}
.y21_c00493{bottom:185.399467pt;}
.y20_c00493{bottom:212.999467pt;}
.y1f_c00493{bottom:240.599467pt;}
.y1e_c00493{bottom:268.199467pt;}
.y1d_c00493{bottom:295.799467pt;}
.y1c_c00493{bottom:323.399467pt;}
.y1b_c00493{bottom:350.999467pt;}
.y1a_c00493{bottom:378.599467pt;}
.y19_c00493{bottom:406.199467pt;}
.y18_c00493{bottom:433.799467pt;}
.y17_c00493{bottom:461.399467pt;}
.y16_c00493{bottom:488.999467pt;}
.y15_c00493{bottom:516.599467pt;}
.y14_c00493{bottom:544.199467pt;}
.y13_c00493{bottom:571.799467pt;}
.y12_c00493{bottom:599.399467pt;}
.y11_c00493{bottom:626.999467pt;}
.y10_c00493{bottom:654.599467pt;}
.yf_c00493{bottom:682.199467pt;}
.ye_c00493{bottom:709.719467pt;}
.yd_c00493{bottom:737.319467pt;}
.yc_c00493{bottom:764.919467pt;}
.yb_c00493{bottom:792.519467pt;}
.ya_c00493{bottom:820.119467pt;}
.y9_c00493{bottom:847.719467pt;}
.y8_c00493{bottom:875.319467pt;}
.y7_c00493{bottom:902.919467pt;}
.y6_c00493{bottom:930.519467pt;}
.y5_c00493{bottom:958.119467pt;}
.y4_c00493{bottom:985.719467pt;}
.y3_c00493{bottom:1013.319467pt;}
.y2_c00493{bottom:1061.399467pt;}
.h2_c00493{height:44.800000pt;}
.h3_c00493{height:48.294844pt;}
.h4_c00493{height:68.288000pt;}
.h0_c00493{height:1122.520000pt;}
.h1_c00493{height:1122.666667pt;}
.w0_c00493{width:793.701333pt;}
.w1_c00493{width:794.000000pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:48.000000pt;}
.x2_c00493{left:113.440000pt;}
.x3_c00493{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00494;src:url('chunks/assets/font_8c2ea21ab9ab65e0b9124084.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00494;src:url('chunks/assets/font_53f6fbce5445252af9fbef07.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.575000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00494{font-family:ff4_c00494;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00494;src:url('chunks/assets/font_c4d5657e665c1d7cb5f210b5.woff2')format("woff");}.ff5_c00494{font-family:ff5_c00494;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00494;src:url('chunks/assets/font_73fc339ae1d3db11b282533f.woff2')format("woff");}.ff6_c00494{font-family:ff6_c00494;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00494{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls9_c00494{letter-spacing:-0.648000px;}
.ls7_c00494{letter-spacing:-0.288000px;}
.ls8_c00494{letter-spacing:-0.216000px;}
.ls6_c00494{letter-spacing:-0.072000px;}
.ls5_c00494{letter-spacing:0.000000px;}
.ls0_c00494{letter-spacing:0.072000px;}
.ls4_c00494{letter-spacing:0.144000px;}
.ls2_c00494{letter-spacing:0.504000px;}
.ls1_c00494{letter-spacing:18.144000px;}
.ls3_c00494{letter-spacing:18.504000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00494{word-spacing:-18.072000px;}
.ws2_c00494{word-spacing:-18.000000px;}
.ws1_c00494{word-spacing:-17.928000px;}
.ws5_c00494{word-spacing:-17.352000px;}
.ws22_c00494{word-spacing:-0.432000px;}
.ws7_c00494{word-spacing:-0.131760px;}
.wsc_c00494{word-spacing:-0.072000px;}
.ws6_c00494{word-spacing:0.000000px;}
.ws23_c00494{word-spacing:0.072000px;}
.ws0_c00494{word-spacing:0.144000px;}
.ws17_c00494{word-spacing:0.197640px;}
.ws1c_c00494{word-spacing:0.216000px;}
.ws10_c00494{word-spacing:0.288000px;}
.ws3_c00494{word-spacing:0.504000px;}
.wsd_c00494{word-spacing:0.648000px;}
.ws13_c00494{word-spacing:0.936000px;}
.ws14_c00494{word-spacing:1.008000px;}
.wsb_c00494{word-spacing:1.080000px;}
.wsa_c00494{word-spacing:1.440000px;}
.ws19_c00494{word-spacing:2.736000px;}
.ws1a_c00494{word-spacing:2.808000px;}
.ws15_c00494{word-spacing:3.240000px;}
.ws1f_c00494{word-spacing:3.528000px;}
.ws20_c00494{word-spacing:3.672000px;}
.ws21_c00494{word-spacing:3.960000px;}
.ws1e_c00494{word-spacing:4.248000px;}
.wsf_c00494{word-spacing:4.968000px;}
.ws18_c00494{word-spacing:9.288000px;}
.ws16_c00494{word-spacing:10.728000px;}
.ws9_c00494{word-spacing:12.240000px;}
.ws1b_c00494{word-spacing:13.320000px;}
.ws8_c00494{word-spacing:14.760000px;}
.ws1d_c00494{word-spacing:16.200000px;}
.ws11_c00494{word-spacing:20.088000px;}
.ws12_c00494{word-spacing:21.600000px;}
.wse_c00494{word-spacing:28.008000px;}
._0_c00494{margin-left:-1.080000px;}
._1_c00494{width:1.008000px;}
.fc2_c00494{color:transparent;}
.fc1_c00494{color:rgb(0,0,0);}
.fc0_c00494{color:rgb(35,31,32);}
.fs1_c00494{font-size:65.880000px;}
.fs0_c00494{font-size:72.000000px;}
.y0_c00494{bottom:0.000000px;}
.y1_c00494{bottom:61.748550px;}
.y25_c00494{bottom:115.424400px;}
.y23_c00494{bottom:146.474400px;}
.y22_c00494{bottom:177.524400px;}
.y21_c00494{bottom:208.574400px;}
.y20_c00494{bottom:239.624400px;}
.y1f_c00494{bottom:270.674400px;}
.y1e_c00494{bottom:301.724400px;}
.y1d_c00494{bottom:332.774400px;}
.y1c_c00494{bottom:363.824400px;}
.y1b_c00494{bottom:394.874400px;}
.y1a_c00494{bottom:425.924400px;}
.y19_c00494{bottom:456.974400px;}
.y18_c00494{bottom:488.024400px;}
.y17_c00494{bottom:519.074400px;}
.y16_c00494{bottom:550.124400px;}
.y15_c00494{bottom:581.174400px;}
.y14_c00494{bottom:612.224400px;}
.y13_c00494{bottom:643.274400px;}
.y12_c00494{bottom:674.324400px;}
.y11_c00494{bottom:705.374400px;}
.y10_c00494{bottom:736.424400px;}
.yf_c00494{bottom:767.474400px;}
.ye_c00494{bottom:798.434400px;}
.yd_c00494{bottom:829.484400px;}
.yc_c00494{bottom:860.534400px;}
.yb_c00494{bottom:891.584400px;}
.ya_c00494{bottom:922.634400px;}
.y9_c00494{bottom:953.684400px;}
.y8_c00494{bottom:984.734400px;}
.y7_c00494{bottom:1015.784400px;}
.y6_c00494{bottom:1046.834400px;}
.y5_c00494{bottom:1077.884400px;}
.y4_c00494{bottom:1108.934400px;}
.y3_c00494{bottom:1139.984400px;}
.y24_c00494{bottom:1173.915120px;}
.y2_c00494{bottom:1194.074400px;}
.h2_c00494{height:50.400000px;}
.h3_c00494{height:54.331699px;}
.h4_c00494{height:76.824000px;}
.h0_c00494{height:1262.835000px;}
.h1_c00494{height:1263.000000px;}
.w2_c00494{width:0.000000px;}
.w3_c00494{width:0.066000px;}
.w0_c00494{width:892.914000px;}
.w1_c00494{width:893.250000px;}
.x1_c00494{left:-838.913400px;}
.x2_c00494{left:-765.293400px;}
.x3_c00494{left:-733.343400px;}
.x0_c00494{left:0.000000px;}
.x5_c00494{left:127.620000px;}
.x6_c00494{left:159.570000px;}
.x4_c00494{left:804.366150px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls9_c00494{letter-spacing:-0.576000pt;}
.ls7_c00494{letter-spacing:-0.256000pt;}
.ls8_c00494{letter-spacing:-0.192000pt;}
.ls6_c00494{letter-spacing:-0.064000pt;}
.ls5_c00494{letter-spacing:0.000000pt;}
.ls0_c00494{letter-spacing:0.064000pt;}
.ls4_c00494{letter-spacing:0.128000pt;}
.ls2_c00494{letter-spacing:0.448000pt;}
.ls1_c00494{letter-spacing:16.128000pt;}
.ls3_c00494{letter-spacing:16.448000pt;}
.ws4_c00494{word-spacing:-16.064000pt;}
.ws2_c00494{word-spacing:-16.000000pt;}
.ws1_c00494{word-spacing:-15.936000pt;}
.ws5_c00494{word-spacing:-15.424000pt;}
.ws22_c00494{word-spacing:-0.384000pt;}
.ws7_c00494{word-spacing:-0.117120pt;}
.wsc_c00494{word-spacing:-0.064000pt;}
.ws6_c00494{word-spacing:0.000000pt;}
.ws23_c00494{word-spacing:0.064000pt;}
.ws0_c00494{word-spacing:0.128000pt;}
.ws17_c00494{word-spacing:0.175680pt;}
.ws1c_c00494{word-spacing:0.192000pt;}
.ws10_c00494{word-spacing:0.256000pt;}
.ws3_c00494{word-spacing:0.448000pt;}
.wsd_c00494{word-spacing:0.576000pt;}
.ws13_c00494{word-spacing:0.832000pt;}
.ws14_c00494{word-spacing:0.896000pt;}
.wsb_c00494{word-spacing:0.960000pt;}
.wsa_c00494{word-spacing:1.280000pt;}
.ws19_c00494{word-spacing:2.432000pt;}
.ws1a_c00494{word-spacing:2.496000pt;}
.ws15_c00494{word-spacing:2.880000pt;}
.ws1f_c00494{word-spacing:3.136000pt;}
.ws20_c00494{word-spacing:3.264000pt;}
.ws21_c00494{word-spacing:3.520000pt;}
.ws1e_c00494{word-spacing:3.776000pt;}
.wsf_c00494{word-spacing:4.416000pt;}
.ws18_c00494{word-spacing:8.256000pt;}
.ws16_c00494{word-spacing:9.536000pt;}
.ws9_c00494{word-spacing:10.880000pt;}
.ws1b_c00494{word-spacing:11.840000pt;}
.ws8_c00494{word-spacing:13.120000pt;}
.ws1d_c00494{word-spacing:14.400000pt;}
.ws11_c00494{word-spacing:17.856000pt;}
.ws12_c00494{word-spacing:19.200000pt;}
.wse_c00494{word-spacing:24.896000pt;}
._0_c00494{margin-left:-0.960000pt;}
._1_c00494{width:0.896000pt;}
.fs1_c00494{font-size:58.560000pt;}
.fs0_c00494{font-size:64.000000pt;}
.y0_c00494{bottom:0.000000pt;}
.y1_c00494{bottom:54.887600pt;}
.y25_c00494{bottom:102.599467pt;}
.y23_c00494{bottom:130.199467pt;}
.y22_c00494{bottom:157.799467pt;}
.y21_c00494{bottom:185.399467pt;}
.y20_c00494{bottom:212.999467pt;}
.y1f_c00494{bottom:240.599467pt;}
.y1e_c00494{bottom:268.199467pt;}
.y1d_c00494{bottom:295.799467pt;}
.y1c_c00494{bottom:323.399467pt;}
.y1b_c00494{bottom:350.999467pt;}
.y1a_c00494{bottom:378.599467pt;}
.y19_c00494{bottom:406.199467pt;}
.y18_c00494{bottom:433.799467pt;}
.y17_c00494{bottom:461.399467pt;}
.y16_c00494{bottom:488.999467pt;}
.y15_c00494{bottom:516.599467pt;}
.y14_c00494{bottom:544.199467pt;}
.y13_c00494{bottom:571.799467pt;}
.y12_c00494{bottom:599.399467pt;}
.y11_c00494{bottom:626.999467pt;}
.y10_c00494{bottom:654.599467pt;}
.yf_c00494{bottom:682.199467pt;}
.ye_c00494{bottom:709.719467pt;}
.yd_c00494{bottom:737.319467pt;}
.yc_c00494{bottom:764.919467pt;}
.yb_c00494{bottom:792.519467pt;}
.ya_c00494{bottom:820.119467pt;}
.y9_c00494{bottom:847.719467pt;}
.y8_c00494{bottom:875.319467pt;}
.y7_c00494{bottom:902.919467pt;}
.y6_c00494{bottom:930.519467pt;}
.y5_c00494{bottom:958.119467pt;}
.y4_c00494{bottom:985.719467pt;}
.y3_c00494{bottom:1013.319467pt;}
.y24_c00494{bottom:1043.480107pt;}
.y2_c00494{bottom:1061.399467pt;}
.h2_c00494{height:44.800000pt;}
.h3_c00494{height:48.294844pt;}
.h4_c00494{height:68.288000pt;}
.h0_c00494{height:1122.520000pt;}
.h1_c00494{height:1122.666667pt;}
.w2_c00494{width:0.000000pt;}
.w3_c00494{width:0.058667pt;}
.w0_c00494{width:793.701333pt;}
.w1_c00494{width:794.000000pt;}
.x1_c00494{left:-745.700800pt;}
.x2_c00494{left:-680.260800pt;}
.x3_c00494{left:-651.860800pt;}
.x0_c00494{left:0.000000pt;}
.x5_c00494{left:113.440000pt;}
.x6_c00494{left:141.840000pt;}
.x4_c00494{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00495;src:url('chunks/assets/font_28653653dd1cc4b2663b7bcf.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00495;src:url('chunks/assets/font_15de9e51ff035fdeb9e789c9.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00495{letter-spacing:-0.144000px;}
.ls4_c00495{letter-spacing:-0.072000px;}
.ls3_c00495{letter-spacing:0.000000px;}
.ls0_c00495{letter-spacing:0.072000px;}
.ls1_c00495{letter-spacing:0.144000px;}
.ls2_c00495{letter-spacing:18.144000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00495{word-spacing:-18.072000px;}
.ws4_c00495{word-spacing:-18.000000px;}
.ws2_c00495{word-spacing:-17.928000px;}
.wsb_c00495{word-spacing:-0.432000px;}
.wsd_c00495{word-spacing:-0.144000px;}
.ws6_c00495{word-spacing:-0.131760px;}
.ws7_c00495{word-spacing:-0.072000px;}
.ws5_c00495{word-spacing:0.000000px;}
.wsf_c00495{word-spacing:0.072000px;}
.ws1_c00495{word-spacing:0.144000px;}
.ws0_c00495{word-spacing:0.504000px;}
.wse_c00495{word-spacing:3.168000px;}
.ws8_c00495{word-spacing:3.960000px;}
.ws10_c00495{word-spacing:5.400000px;}
.ws9_c00495{word-spacing:6.768000px;}
.wsc_c00495{word-spacing:14.400000px;}
.wsa_c00495{word-spacing:20.880000px;}
._0_c00495{margin-left:-1.008000px;}
._1_c00495{width:1.022400px;}
.fc1_c00495{color:rgb(0,0,0);}
.fc0_c00495{color:rgb(35,31,32);}
.fs1_c00495{font-size:65.880000px;}
.fs0_c00495{font-size:72.000000px;}
.y0_c00495{bottom:0.000000px;}
.y1_c00495{bottom:61.748550px;}
.y23_c00495{bottom:146.474400px;}
.y22_c00495{bottom:177.524400px;}
.y21_c00495{bottom:208.574400px;}
.y20_c00495{bottom:239.624400px;}
.y1f_c00495{bottom:270.674400px;}
.y1e_c00495{bottom:301.724400px;}
.y1d_c00495{bottom:332.774400px;}
.y1c_c00495{bottom:363.824400px;}
.y1b_c00495{bottom:394.874400px;}
.y1a_c00495{bottom:425.924400px;}
.y19_c00495{bottom:456.974400px;}
.y18_c00495{bottom:488.024400px;}
.y17_c00495{bottom:519.074400px;}
.y16_c00495{bottom:550.124400px;}
.y15_c00495{bottom:581.174400px;}
.y14_c00495{bottom:612.224400px;}
.y13_c00495{bottom:643.274400px;}
.y12_c00495{bottom:674.324400px;}
.y11_c00495{bottom:705.374400px;}
.y10_c00495{bottom:736.424400px;}
.yf_c00495{bottom:767.474400px;}
.ye_c00495{bottom:798.434400px;}
.yd_c00495{bottom:829.484400px;}
.yc_c00495{bottom:860.534400px;}
.yb_c00495{bottom:891.584400px;}
.ya_c00495{bottom:922.634400px;}
.y9_c00495{bottom:953.684400px;}
.y8_c00495{bottom:984.734400px;}
.y7_c00495{bottom:1015.784400px;}
.y6_c00495{bottom:1046.834400px;}
.y5_c00495{bottom:1077.884400px;}
.y4_c00495{bottom:1108.934400px;}
.y3_c00495{bottom:1139.984400px;}
.y2_c00495{bottom:1194.074400px;}
.h2_c00495{height:50.400000px;}
.h3_c00495{height:54.331699px;}
.h4_c00495{height:76.824000px;}
.h0_c00495{height:1262.835000px;}
.h1_c00495{height:1263.000000px;}
.w0_c00495{width:892.914000px;}
.w1_c00495{width:893.250000px;}
.x0_c00495{left:0.000000px;}
.x1_c00495{left:54.000000px;}
.x2_c00495{left:127.620000px;}
.x3_c00495{left:159.570000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls5_c00495{letter-spacing:-0.128000pt;}
.ls4_c00495{letter-spacing:-0.064000pt;}
.ls3_c00495{letter-spacing:0.000000pt;}
.ls0_c00495{letter-spacing:0.064000pt;}
.ls1_c00495{letter-spacing:0.128000pt;}
.ls2_c00495{letter-spacing:16.128000pt;}
.ws3_c00495{word-spacing:-16.064000pt;}
.ws4_c00495{word-spacing:-16.000000pt;}
.ws2_c00495{word-spacing:-15.936000pt;}
.wsb_c00495{word-spacing:-0.384000pt;}
.wsd_c00495{word-spacing:-0.128000pt;}
.ws6_c00495{word-spacing:-0.117120pt;}
.ws7_c00495{word-spacing:-0.064000pt;}
.ws5_c00495{word-spacing:0.000000pt;}
.wsf_c00495{word-spacing:0.064000pt;}
.ws1_c00495{word-spacing:0.128000pt;}
.ws0_c00495{word-spacing:0.448000pt;}
.wse_c00495{word-spacing:2.816000pt;}
.ws8_c00495{word-spacing:3.520000pt;}
.ws10_c00495{word-spacing:4.800000pt;}
.ws9_c00495{word-spacing:6.016000pt;}
.wsc_c00495{word-spacing:12.800000pt;}
.wsa_c00495{word-spacing:18.560000pt;}
._0_c00495{margin-left:-0.896000pt;}
._1_c00495{width:0.908800pt;}
.fs1_c00495{font-size:58.560000pt;}
.fs0_c00495{font-size:64.000000pt;}
.y0_c00495{bottom:0.000000pt;}
.y1_c00495{bottom:54.887600pt;}
.y23_c00495{bottom:130.199467pt;}
.y22_c00495{bottom:157.799467pt;}
.y21_c00495{bottom:185.399467pt;}
.y20_c00495{bottom:212.999467pt;}
.y1f_c00495{bottom:240.599467pt;}
.y1e_c00495{bottom:268.199467pt;}
.y1d_c00495{bottom:295.799467pt;}
.y1c_c00495{bottom:323.399467pt;}
.y1b_c00495{bottom:350.999467pt;}
.y1a_c00495{bottom:378.599467pt;}
.y19_c00495{bottom:406.199467pt;}
.y18_c00495{bottom:433.799467pt;}
.y17_c00495{bottom:461.399467pt;}
.y16_c00495{bottom:488.999467pt;}
.y15_c00495{bottom:516.599467pt;}
.y14_c00495{bottom:544.199467pt;}
.y13_c00495{bottom:571.799467pt;}
.y12_c00495{bottom:599.399467pt;}
.y11_c00495{bottom:626.999467pt;}
.y10_c00495{bottom:654.599467pt;}
.yf_c00495{bottom:682.199467pt;}
.ye_c00495{bottom:709.719467pt;}
.yd_c00495{bottom:737.319467pt;}
.yc_c00495{bottom:764.919467pt;}
.yb_c00495{bottom:792.519467pt;}
.ya_c00495{bottom:820.119467pt;}
.y9_c00495{bottom:847.719467pt;}
.y8_c00495{bottom:875.319467pt;}
.y7_c00495{bottom:902.919467pt;}
.y6_c00495{bottom:930.519467pt;}
.y5_c00495{bottom:958.119467pt;}
.y4_c00495{bottom:985.719467pt;}
.y3_c00495{bottom:1013.319467pt;}
.y2_c00495{bottom:1061.399467pt;}
.h2_c00495{height:44.800000pt;}
.h3_c00495{height:48.294844pt;}
.h4_c00495{height:68.288000pt;}
.h0_c00495{height:1122.520000pt;}
.h1_c00495{height:1122.666667pt;}
.w0_c00495{width:793.701333pt;}
.w1_c00495{width:794.000000pt;}
.x0_c00495{left:0.000000pt;}
.x1_c00495{left:48.000000pt;}
.x2_c00495{left:113.440000pt;}
.x3_c00495{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00496;src:url('chunks/assets/font_b63cf566a283694f9d94bb04.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00496;src:url('chunks/assets/font_302f891b38258713921acca3.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.575000;font-style:normal;font-weight:normal;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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00496{font-family:ff4_c00496;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00496;src:url('chunks/assets/font_900350d0e6b29cb96465d993.woff2')format("woff");}.ff5_c00496{font-family:ff5_c00496;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00496;src:url('chunks/assets/font_55ecba540868498f209738f5.woff2')format("woff");}.ff6_c00496{font-family:ff6_c00496;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls5_c00496{letter-spacing:-0.144000px;}
.ls4_c00496{letter-spacing:-0.072000px;}
.ls3_c00496{letter-spacing:0.000000px;}
.ls0_c00496{letter-spacing:0.072000px;}
.ls1_c00496{letter-spacing:0.144000px;}
.ls2_c00496{letter-spacing:18.144000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00496{word-spacing:-18.072000px;}
.ws4_c00496{word-spacing:-18.000000px;}
.ws2_c00496{word-spacing:-17.928000px;}
.wsb_c00496{word-spacing:-0.432000px;}
.ws17_c00496{word-spacing:-0.360000px;}
.wsd_c00496{word-spacing:-0.144000px;}
.ws6_c00496{word-spacing:-0.131760px;}
.ws7_c00496{word-spacing:-0.072000px;}
.ws5_c00496{word-spacing:0.000000px;}
.wsf_c00496{word-spacing:0.072000px;}
.ws1_c00496{word-spacing:0.144000px;}
.ws11_c00496{word-spacing:0.197640px;}
.ws0_c00496{word-spacing:0.504000px;}
.ws1a_c00496{word-spacing:1.080000px;}
.ws13_c00496{word-spacing:2.160000px;}
.wse_c00496{word-spacing:3.168000px;}
.ws19_c00496{word-spacing:3.528000px;}
.ws12_c00496{word-spacing:3.888000px;}
.ws8_c00496{word-spacing:3.960000px;}
.ws18_c00496{word-spacing:4.320000px;}
.ws10_c00496{word-spacing:5.400000px;}
.ws9_c00496{word-spacing:6.768000px;}
.wsc_c00496{word-spacing:14.400000px;}
.ws16_c00496{word-spacing:17.280000px;}
.ws14_c00496{word-spacing:19.008000px;}
.ws15_c00496{word-spacing:19.080000px;}
.wsa_c00496{word-spacing:20.880000px;}
._0_c00496{margin-left:-1.008000px;}
._1_c00496{width:1.022400px;}
.fc2_c00496{color:transparent;}
.fc1_c00496{color:rgb(0,0,0);}
.fc0_c00496{color:rgb(35,31,32);}
.fs1_c00496{font-size:65.880000px;}
.fs0_c00496{font-size:72.000000px;}
.y0_c00496{bottom:0.000000px;}
.y1_c00496{bottom:61.748550px;}
.y23_c00496{bottom:146.474400px;}
.y22_c00496{bottom:177.524400px;}
.y21_c00496{bottom:208.574400px;}
.y20_c00496{bottom:239.624400px;}
.y1f_c00496{bottom:270.674400px;}
.y1e_c00496{bottom:301.724400px;}
.y1d_c00496{bottom:332.774400px;}
.y1c_c00496{bottom:363.824400px;}
.y1b_c00496{bottom:394.874400px;}
.y1a_c00496{bottom:425.924400px;}
.y19_c00496{bottom:456.974400px;}
.y18_c00496{bottom:488.024400px;}
.y17_c00496{bottom:519.074400px;}
.y16_c00496{bottom:550.124400px;}
.y15_c00496{bottom:581.174400px;}
.y14_c00496{bottom:612.224400px;}
.y13_c00496{bottom:643.274400px;}
.y12_c00496{bottom:674.324400px;}
.y11_c00496{bottom:705.374400px;}
.y10_c00496{bottom:736.424400px;}
.yf_c00496{bottom:767.474400px;}
.ye_c00496{bottom:798.434400px;}
.yd_c00496{bottom:829.484400px;}
.yc_c00496{bottom:860.534400px;}
.yb_c00496{bottom:891.584400px;}
.ya_c00496{bottom:922.634400px;}
.y9_c00496{bottom:953.684400px;}
.y8_c00496{bottom:984.734400px;}
.y7_c00496{bottom:1015.784400px;}
.y6_c00496{bottom:1046.834400px;}
.y5_c00496{bottom:1077.884400px;}
.y4_c00496{bottom:1108.934400px;}
.y3_c00496{bottom:1139.984400px;}
.y24_c00496{bottom:1173.915120px;}
.y2_c00496{bottom:1194.074400px;}
.h2_c00496{height:50.400000px;}
.h3_c00496{height:54.331699px;}
.h4_c00496{height:76.824000px;}
.h0_c00496{height:1262.835000px;}
.h1_c00496{height:1263.000000px;}
.w2_c00496{width:0.000000px;}
.w3_c00496{width:0.066000px;}
.w0_c00496{width:892.914000px;}
.w1_c00496{width:893.250000px;}
.x1_c00496{left:-838.913400px;}
.x2_c00496{left:-765.293400px;}
.x3_c00496{left:-733.343400px;}
.x0_c00496{left:0.000000px;}
.x5_c00496{left:127.620000px;}
.x6_c00496{left:159.570000px;}
.x4_c00496{left:804.366150px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls5_c00496{letter-spacing:-0.128000pt;}
.ls4_c00496{letter-spacing:-0.064000pt;}
.ls3_c00496{letter-spacing:0.000000pt;}
.ls0_c00496{letter-spacing:0.064000pt;}
.ls1_c00496{letter-spacing:0.128000pt;}
.ls2_c00496{letter-spacing:16.128000pt;}
.ws3_c00496{word-spacing:-16.064000pt;}
.ws4_c00496{word-spacing:-16.000000pt;}
.ws2_c00496{word-spacing:-15.936000pt;}
.wsb_c00496{word-spacing:-0.384000pt;}
.ws17_c00496{word-spacing:-0.320000pt;}
.wsd_c00496{word-spacing:-0.128000pt;}
.ws6_c00496{word-spacing:-0.117120pt;}
.ws7_c00496{word-spacing:-0.064000pt;}
.ws5_c00496{word-spacing:0.000000pt;}
.wsf_c00496{word-spacing:0.064000pt;}
.ws1_c00496{word-spacing:0.128000pt;}
.ws11_c00496{word-spacing:0.175680pt;}
.ws0_c00496{word-spacing:0.448000pt;}
.ws1a_c00496{word-spacing:0.960000pt;}
.ws13_c00496{word-spacing:1.920000pt;}
.wse_c00496{word-spacing:2.816000pt;}
.ws19_c00496{word-spacing:3.136000pt;}
.ws12_c00496{word-spacing:3.456000pt;}
.ws8_c00496{word-spacing:3.520000pt;}
.ws18_c00496{word-spacing:3.840000pt;}
.ws10_c00496{word-spacing:4.800000pt;}
.ws9_c00496{word-spacing:6.016000pt;}
.wsc_c00496{word-spacing:12.800000pt;}
.ws16_c00496{word-spacing:15.360000pt;}
.ws14_c00496{word-spacing:16.896000pt;}
.ws15_c00496{word-spacing:16.960000pt;}
.wsa_c00496{word-spacing:18.560000pt;}
._0_c00496{margin-left:-0.896000pt;}
._1_c00496{width:0.908800pt;}
.fs1_c00496{font-size:58.560000pt;}
.fs0_c00496{font-size:64.000000pt;}
.y0_c00496{bottom:0.000000pt;}
.y1_c00496{bottom:54.887600pt;}
.y23_c00496{bottom:130.199467pt;}
.y22_c00496{bottom:157.799467pt;}
.y21_c00496{bottom:185.399467pt;}
.y20_c00496{bottom:212.999467pt;}
.y1f_c00496{bottom:240.599467pt;}
.y1e_c00496{bottom:268.199467pt;}
.y1d_c00496{bottom:295.799467pt;}
.y1c_c00496{bottom:323.399467pt;}
.y1b_c00496{bottom:350.999467pt;}
.y1a_c00496{bottom:378.599467pt;}
.y19_c00496{bottom:406.199467pt;}
.y18_c00496{bottom:433.799467pt;}
.y17_c00496{bottom:461.399467pt;}
.y16_c00496{bottom:488.999467pt;}
.y15_c00496{bottom:516.599467pt;}
.y14_c00496{bottom:544.199467pt;}
.y13_c00496{bottom:571.799467pt;}
.y12_c00496{bottom:599.399467pt;}
.y11_c00496{bottom:626.999467pt;}
.y10_c00496{bottom:654.599467pt;}
.yf_c00496{bottom:682.199467pt;}
.ye_c00496{bottom:709.719467pt;}
.yd_c00496{bottom:737.319467pt;}
.yc_c00496{bottom:764.919467pt;}
.yb_c00496{bottom:792.519467pt;}
.ya_c00496{bottom:820.119467pt;}
.y9_c00496{bottom:847.719467pt;}
.y8_c00496{bottom:875.319467pt;}
.y7_c00496{bottom:902.919467pt;}
.y6_c00496{bottom:930.519467pt;}
.y5_c00496{bottom:958.119467pt;}
.y4_c00496{bottom:985.719467pt;}
.y3_c00496{bottom:1013.319467pt;}
.y24_c00496{bottom:1043.480107pt;}
.y2_c00496{bottom:1061.399467pt;}
.h2_c00496{height:44.800000pt;}
.h3_c00496{height:48.294844pt;}
.h4_c00496{height:68.288000pt;}
.h0_c00496{height:1122.520000pt;}
.h1_c00496{height:1122.666667pt;}
.w2_c00496{width:0.000000pt;}
.w3_c00496{width:0.058667pt;}
.w0_c00496{width:793.701333pt;}
.w1_c00496{width:794.000000pt;}
.x1_c00496{left:-745.700800pt;}
.x2_c00496{left:-680.260800pt;}
.x3_c00496{left:-651.860800pt;}
.x0_c00496{left:0.000000pt;}
.x5_c00496{left:113.440000pt;}
.x6_c00496{left:141.840000pt;}
.x4_c00496{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00497;src:url('chunks/assets/font_c02191bb767640beaff5669b.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00497;src:url('chunks/assets/font_8ffc8b72acfb4478e49ce98e.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls6_c00497{letter-spacing:-0.144000px;}
.ls5_c00497{letter-spacing:-0.072000px;}
.ls3_c00497{letter-spacing:0.000000px;}
.ls0_c00497{letter-spacing:0.072000px;}
.ls4_c00497{letter-spacing:0.144000px;}
.ls1_c00497{letter-spacing:18.144000px;}
.ls2_c00497{letter-spacing:18.504000px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00497{word-spacing:-18.144000px;}
.ws0_c00497{word-spacing:-18.000000px;}
.ws1_c00497{word-spacing:-17.928000px;}
.ws4_c00497{word-spacing:-17.856000px;}
.ws10_c00497{word-spacing:-0.432000px;}
.ws8_c00497{word-spacing:-0.144000px;}
.ws7_c00497{word-spacing:-0.131760px;}
.wsb_c00497{word-spacing:-0.072000px;}
.ws6_c00497{word-spacing:0.000000px;}
.ws3_c00497{word-spacing:0.144000px;}
.wse_c00497{word-spacing:0.288000px;}
.wsd_c00497{word-spacing:0.360000px;}
.ws2_c00497{word-spacing:0.504000px;}
.wsf_c00497{word-spacing:1.440000px;}
.ws12_c00497{word-spacing:2.448000px;}
.ws9_c00497{word-spacing:5.040000px;}
.wsa_c00497{word-spacing:6.768000px;}
.ws11_c00497{word-spacing:6.840000px;}
.wsc_c00497{word-spacing:7.560000px;}
.ws13_c00497{word-spacing:8.640000px;}
._0_c00497{margin-left:-1.080000px;}
._1_c00497{width:1.080000px;}
.fc1_c00497{color:rgb(0,0,0);}
.fc0_c00497{color:rgb(35,31,32);}
.fs1_c00497{font-size:65.880000px;}
.fs0_c00497{font-size:72.000000px;}
.y0_c00497{bottom:0.000000px;}
.y1_c00497{bottom:61.748550px;}
.y22_c00497{bottom:115.424400px;}
.y21_c00497{bottom:146.474400px;}
.y20_c00497{bottom:177.524400px;}
.y1f_c00497{bottom:208.574400px;}
.y1e_c00497{bottom:239.624400px;}
.y1d_c00497{bottom:270.674400px;}
.y1c_c00497{bottom:301.724400px;}
.y1b_c00497{bottom:332.774400px;}
.y1a_c00497{bottom:363.824400px;}
.y19_c00497{bottom:394.874400px;}
.y18_c00497{bottom:425.924400px;}
.y17_c00497{bottom:456.974400px;}
.y16_c00497{bottom:488.024400px;}
.y15_c00497{bottom:519.074400px;}
.y14_c00497{bottom:550.124400px;}
.y13_c00497{bottom:581.174400px;}
.y12_c00497{bottom:612.224400px;}
.y11_c00497{bottom:643.274400px;}
.y10_c00497{bottom:674.324400px;}
.yf_c00497{bottom:705.374400px;}
.ye_c00497{bottom:736.424400px;}
.yd_c00497{bottom:767.474400px;}
.yc_c00497{bottom:798.434400px;}
.yb_c00497{bottom:829.484400px;}
.ya_c00497{bottom:860.534400px;}
.y9_c00497{bottom:891.584400px;}
.y8_c00497{bottom:922.634400px;}
.y7_c00497{bottom:953.684400px;}
.y6_c00497{bottom:984.734400px;}
.y5_c00497{bottom:1046.834400px;}
.y4_c00497{bottom:1077.884400px;}
.y3_c00497{bottom:1139.984400px;}
.y2_c00497{bottom:1194.074400px;}
.h2_c00497{height:50.400000px;}
.h3_c00497{height:54.331699px;}
.h4_c00497{height:76.824000px;}
.h0_c00497{height:1262.835000px;}
.h1_c00497{height:1263.000000px;}
.w0_c00497{width:892.914000px;}
.w1_c00497{width:893.250000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:54.000000px;}
.x2_c00497{left:127.620000px;}
.x3_c00497{left:159.570000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls6_c00497{letter-spacing:-0.128000pt;}
.ls5_c00497{letter-spacing:-0.064000pt;}
.ls3_c00497{letter-spacing:0.000000pt;}
.ls0_c00497{letter-spacing:0.064000pt;}
.ls4_c00497{letter-spacing:0.128000pt;}
.ls1_c00497{letter-spacing:16.128000pt;}
.ls2_c00497{letter-spacing:16.448000pt;}
.ws5_c00497{word-spacing:-16.128000pt;}
.ws0_c00497{word-spacing:-16.000000pt;}
.ws1_c00497{word-spacing:-15.936000pt;}
.ws4_c00497{word-spacing:-15.872000pt;}
.ws10_c00497{word-spacing:-0.384000pt;}
.ws8_c00497{word-spacing:-0.128000pt;}
.ws7_c00497{word-spacing:-0.117120pt;}
.wsb_c00497{word-spacing:-0.064000pt;}
.ws6_c00497{word-spacing:0.000000pt;}
.ws3_c00497{word-spacing:0.128000pt;}
.wse_c00497{word-spacing:0.256000pt;}
.wsd_c00497{word-spacing:0.320000pt;}
.ws2_c00497{word-spacing:0.448000pt;}
.wsf_c00497{word-spacing:1.280000pt;}
.ws12_c00497{word-spacing:2.176000pt;}
.ws9_c00497{word-spacing:4.480000pt;}
.wsa_c00497{word-spacing:6.016000pt;}
.ws11_c00497{word-spacing:6.080000pt;}
.wsc_c00497{word-spacing:6.720000pt;}
.ws13_c00497{word-spacing:7.680000pt;}
._0_c00497{margin-left:-0.960000pt;}
._1_c00497{width:0.960000pt;}
.fs1_c00497{font-size:58.560000pt;}
.fs0_c00497{font-size:64.000000pt;}
.y0_c00497{bottom:0.000000pt;}
.y1_c00497{bottom:54.887600pt;}
.y22_c00497{bottom:102.599467pt;}
.y21_c00497{bottom:130.199467pt;}
.y20_c00497{bottom:157.799467pt;}
.y1f_c00497{bottom:185.399467pt;}
.y1e_c00497{bottom:212.999467pt;}
.y1d_c00497{bottom:240.599467pt;}
.y1c_c00497{bottom:268.199467pt;}
.y1b_c00497{bottom:295.799467pt;}
.y1a_c00497{bottom:323.399467pt;}
.y19_c00497{bottom:350.999467pt;}
.y18_c00497{bottom:378.599467pt;}
.y17_c00497{bottom:406.199467pt;}
.y16_c00497{bottom:433.799467pt;}
.y15_c00497{bottom:461.399467pt;}
.y14_c00497{bottom:488.999467pt;}
.y13_c00497{bottom:516.599467pt;}
.y12_c00497{bottom:544.199467pt;}
.y11_c00497{bottom:571.799467pt;}
.y10_c00497{bottom:599.399467pt;}
.yf_c00497{bottom:626.999467pt;}
.ye_c00497{bottom:654.599467pt;}
.yd_c00497{bottom:682.199467pt;}
.yc_c00497{bottom:709.719467pt;}
.yb_c00497{bottom:737.319467pt;}
.ya_c00497{bottom:764.919467pt;}
.y9_c00497{bottom:792.519467pt;}
.y8_c00497{bottom:820.119467pt;}
.y7_c00497{bottom:847.719467pt;}
.y6_c00497{bottom:875.319467pt;}
.y5_c00497{bottom:930.519467pt;}
.y4_c00497{bottom:958.119467pt;}
.y3_c00497{bottom:1013.319467pt;}
.y2_c00497{bottom:1061.399467pt;}
.h2_c00497{height:44.800000pt;}
.h3_c00497{height:48.294844pt;}
.h4_c00497{height:68.288000pt;}
.h0_c00497{height:1122.520000pt;}
.h1_c00497{height:1122.666667pt;}
.w0_c00497{width:793.701333pt;}
.w1_c00497{width:794.000000pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:48.000000pt;}
.x2_c00497{left:113.440000pt;}
.x3_c00497{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00498;src:url('chunks/assets/font_6d78e726f2bbbd5d1fda893c.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_79ffa982507bee1029bb4a00.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00498;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00498{font-family:ff4_c00498;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00498;src:url('chunks/assets/font_69a6e6e0057ea2c85b5f4d76.woff2')format("woff");}.ff5_c00498{font-family:ff5_c00498;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00498;src:url('chunks/assets/font_fc2837afb0295f587a19ba2f.woff2')format("woff");}.ff6_c00498{font-family:ff6_c00498;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00498{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls6_c00498{letter-spacing:-0.144000px;}
.ls5_c00498{letter-spacing:-0.072000px;}
.ls3_c00498{letter-spacing:0.000000px;}
.ls0_c00498{letter-spacing:0.072000px;}
.ls4_c00498{letter-spacing:0.144000px;}
.ls1_c00498{letter-spacing:18.144000px;}
.ls2_c00498{letter-spacing:18.504000px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00498{word-spacing:-18.144000px;}
.ws6_c00498{word-spacing:-18.072000px;}
.ws0_c00498{word-spacing:-18.000000px;}
.ws1_c00498{word-spacing:-17.928000px;}
.ws4_c00498{word-spacing:-17.856000px;}
.ws11_c00498{word-spacing:-0.432000px;}
.ws19_c00498{word-spacing:-0.360000px;}
.ws9_c00498{word-spacing:-0.144000px;}
.ws8_c00498{word-spacing:-0.131760px;}
.wsc_c00498{word-spacing:-0.072000px;}
.ws7_c00498{word-spacing:0.000000px;}
.ws3_c00498{word-spacing:0.144000px;}
.ws15_c00498{word-spacing:0.197640px;}
.wsf_c00498{word-spacing:0.288000px;}
.wse_c00498{word-spacing:0.360000px;}
.ws2_c00498{word-spacing:0.504000px;}
.ws1d_c00498{word-spacing:1.080000px;}
.ws1f_c00498{word-spacing:1.368000px;}
.ws10_c00498{word-spacing:1.440000px;}
.ws13_c00498{word-spacing:2.448000px;}
.ws17_c00498{word-spacing:4.680000px;}
.wsa_c00498{word-spacing:5.040000px;}
.ws1e_c00498{word-spacing:6.408000px;}
.wsb_c00498{word-spacing:6.768000px;}
.ws12_c00498{word-spacing:6.840000px;}
.wsd_c00498{word-spacing:7.560000px;}
.ws1b_c00498{word-spacing:8.568000px;}
.ws14_c00498{word-spacing:8.640000px;}
.ws16_c00498{word-spacing:9.720000px;}
.ws1a_c00498{word-spacing:10.728000px;}
.ws1c_c00498{word-spacing:11.880000px;}
.ws18_c00498{word-spacing:12.528000px;}
.ws20_c00498{word-spacing:13.680000px;}
._0_c00498{margin-left:-1.080000px;}
._1_c00498{width:1.080000px;}
.fc2_c00498{color:transparent;}
.fc1_c00498{color:rgb(0,0,0);}
.fc0_c00498{color:rgb(35,31,32);}
.fs1_c00498{font-size:65.880000px;}
.fs0_c00498{font-size:72.000000px;}
.y0_c00498{bottom:0.000000px;}
.y1_c00498{bottom:61.748550px;}
.y22_c00498{bottom:115.424400px;}
.y21_c00498{bottom:146.474400px;}
.y20_c00498{bottom:177.524400px;}
.y1f_c00498{bottom:208.574400px;}
.y1e_c00498{bottom:239.624400px;}
.y1d_c00498{bottom:270.674400px;}
.y1c_c00498{bottom:301.724400px;}
.y1b_c00498{bottom:332.774400px;}
.y1a_c00498{bottom:363.824400px;}
.y19_c00498{bottom:394.874400px;}
.y18_c00498{bottom:425.924400px;}
.y17_c00498{bottom:456.974400px;}
.y16_c00498{bottom:488.024400px;}
.y15_c00498{bottom:519.074400px;}
.y14_c00498{bottom:550.124400px;}
.y13_c00498{bottom:581.174400px;}
.y12_c00498{bottom:612.224400px;}
.y11_c00498{bottom:643.274400px;}
.y10_c00498{bottom:674.324400px;}
.yf_c00498{bottom:705.374400px;}
.ye_c00498{bottom:736.424400px;}
.yd_c00498{bottom:767.474400px;}
.yc_c00498{bottom:798.434400px;}
.yb_c00498{bottom:829.484400px;}
.ya_c00498{bottom:860.534400px;}
.y9_c00498{bottom:891.584400px;}
.y8_c00498{bottom:922.634400px;}
.y7_c00498{bottom:953.684400px;}
.y6_c00498{bottom:984.734400px;}
.y25_c00498{bottom:1015.784400px;}
.y5_c00498{bottom:1046.834400px;}
.y4_c00498{bottom:1077.884400px;}
.y24_c00498{bottom:1108.934400px;}
.y3_c00498{bottom:1139.984400px;}
.y23_c00498{bottom:1173.915120px;}
.y2_c00498{bottom:1194.074400px;}
.h2_c00498{height:50.400000px;}
.h3_c00498{height:54.331699px;}
.h4_c00498{height:76.824000px;}
.h0_c00498{height:1262.835000px;}
.h1_c00498{height:1263.000000px;}
.w2_c00498{width:0.000000px;}
.w3_c00498{width:0.066000px;}
.w0_c00498{width:892.914000px;}
.w1_c00498{width:893.250000px;}
.x1_c00498{left:-838.913400px;}
.x2_c00498{left:-765.293400px;}
.x3_c00498{left:-733.343400px;}
.x0_c00498{left:0.000000px;}
.x5_c00498{left:127.620000px;}
.x6_c00498{left:159.570000px;}
.x7_c00498{left:164.070000px;}
.x4_c00498{left:804.366150px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls6_c00498{letter-spacing:-0.128000pt;}
.ls5_c00498{letter-spacing:-0.064000pt;}
.ls3_c00498{letter-spacing:0.000000pt;}
.ls0_c00498{letter-spacing:0.064000pt;}
.ls4_c00498{letter-spacing:0.128000pt;}
.ls1_c00498{letter-spacing:16.128000pt;}
.ls2_c00498{letter-spacing:16.448000pt;}
.ws5_c00498{word-spacing:-16.128000pt;}
.ws6_c00498{word-spacing:-16.064000pt;}
.ws0_c00498{word-spacing:-16.000000pt;}
.ws1_c00498{word-spacing:-15.936000pt;}
.ws4_c00498{word-spacing:-15.872000pt;}
.ws11_c00498{word-spacing:-0.384000pt;}
.ws19_c00498{word-spacing:-0.320000pt;}
.ws9_c00498{word-spacing:-0.128000pt;}
.ws8_c00498{word-spacing:-0.117120pt;}
.wsc_c00498{word-spacing:-0.064000pt;}
.ws7_c00498{word-spacing:0.000000pt;}
.ws3_c00498{word-spacing:0.128000pt;}
.ws15_c00498{word-spacing:0.175680pt;}
.wsf_c00498{word-spacing:0.256000pt;}
.wse_c00498{word-spacing:0.320000pt;}
.ws2_c00498{word-spacing:0.448000pt;}
.ws1d_c00498{word-spacing:0.960000pt;}
.ws1f_c00498{word-spacing:1.216000pt;}
.ws10_c00498{word-spacing:1.280000pt;}
.ws13_c00498{word-spacing:2.176000pt;}
.ws17_c00498{word-spacing:4.160000pt;}
.wsa_c00498{word-spacing:4.480000pt;}
.ws1e_c00498{word-spacing:5.696000pt;}
.wsb_c00498{word-spacing:6.016000pt;}
.ws12_c00498{word-spacing:6.080000pt;}
.wsd_c00498{word-spacing:6.720000pt;}
.ws1b_c00498{word-spacing:7.616000pt;}
.ws14_c00498{word-spacing:7.680000pt;}
.ws16_c00498{word-spacing:8.640000pt;}
.ws1a_c00498{word-spacing:9.536000pt;}
.ws1c_c00498{word-spacing:10.560000pt;}
.ws18_c00498{word-spacing:11.136000pt;}
.ws20_c00498{word-spacing:12.160000pt;}
._0_c00498{margin-left:-0.960000pt;}
._1_c00498{width:0.960000pt;}
.fs1_c00498{font-size:58.560000pt;}
.fs0_c00498{font-size:64.000000pt;}
.y0_c00498{bottom:0.000000pt;}
.y1_c00498{bottom:54.887600pt;}
.y22_c00498{bottom:102.599467pt;}
.y21_c00498{bottom:130.199467pt;}
.y20_c00498{bottom:157.799467pt;}
.y1f_c00498{bottom:185.399467pt;}
.y1e_c00498{bottom:212.999467pt;}
.y1d_c00498{bottom:240.599467pt;}
.y1c_c00498{bottom:268.199467pt;}
.y1b_c00498{bottom:295.799467pt;}
.y1a_c00498{bottom:323.399467pt;}
.y19_c00498{bottom:350.999467pt;}
.y18_c00498{bottom:378.599467pt;}
.y17_c00498{bottom:406.199467pt;}
.y16_c00498{bottom:433.799467pt;}
.y15_c00498{bottom:461.399467pt;}
.y14_c00498{bottom:488.999467pt;}
.y13_c00498{bottom:516.599467pt;}
.y12_c00498{bottom:544.199467pt;}
.y11_c00498{bottom:571.799467pt;}
.y10_c00498{bottom:599.399467pt;}
.yf_c00498{bottom:626.999467pt;}
.ye_c00498{bottom:654.599467pt;}
.yd_c00498{bottom:682.199467pt;}
.yc_c00498{bottom:709.719467pt;}
.yb_c00498{bottom:737.319467pt;}
.ya_c00498{bottom:764.919467pt;}
.y9_c00498{bottom:792.519467pt;}
.y8_c00498{bottom:820.119467pt;}
.y7_c00498{bottom:847.719467pt;}
.y6_c00498{bottom:875.319467pt;}
.y25_c00498{bottom:902.919467pt;}
.y5_c00498{bottom:930.519467pt;}
.y4_c00498{bottom:958.119467pt;}
.y24_c00498{bottom:985.719467pt;}
.y3_c00498{bottom:1013.319467pt;}
.y23_c00498{bottom:1043.480107pt;}
.y2_c00498{bottom:1061.399467pt;}
.h2_c00498{height:44.800000pt;}
.h3_c00498{height:48.294844pt;}
.h4_c00498{height:68.288000pt;}
.h0_c00498{height:1122.520000pt;}
.h1_c00498{height:1122.666667pt;}
.w2_c00498{width:0.000000pt;}
.w3_c00498{width:0.058667pt;}
.w0_c00498{width:793.701333pt;}
.w1_c00498{width:794.000000pt;}
.x1_c00498{left:-745.700800pt;}
.x2_c00498{left:-680.260800pt;}
.x3_c00498{left:-651.860800pt;}
.x0_c00498{left:0.000000pt;}
.x5_c00498{left:113.440000pt;}
.x6_c00498{left:141.840000pt;}
.x7_c00498{left:145.840000pt;}
.x4_c00498{left:714.992133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00499;src:url('chunks/assets/font_2004476a70682df5e55aaaaf.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00499;src:url('chunks/assets/font_16cb2560fccc501d17f8cec2.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00499{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls4_c00499{letter-spacing:-0.072000px;}
.ls3_c00499{letter-spacing:0.000000px;}
.ls0_c00499{letter-spacing:0.072000px;}
.ls2_c00499{letter-spacing:0.144000px;}
.ls1_c00499{letter-spacing:18.144000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:-18.072000px;}
.ws2_c00499{word-spacing:-17.928000px;}
.ws12_c00499{word-spacing:-0.432000px;}
.ws13_c00499{word-spacing:-0.360000px;}
.ws16_c00499{word-spacing:-0.144000px;}
.ws4_c00499{word-spacing:-0.131760px;}
.ws6_c00499{word-spacing:-0.072000px;}
.ws3_c00499{word-spacing:0.000000px;}
.wsc_c00499{word-spacing:0.072000px;}
.ws1_c00499{word-spacing:0.144000px;}
.wsd_c00499{word-spacing:0.648000px;}
.ws5_c00499{word-spacing:1.368000px;}
.ws10_c00499{word-spacing:2.160000px;}
.wsa_c00499{word-spacing:2.808000px;}
.ws9_c00499{word-spacing:2.880000px;}
.ws15_c00499{word-spacing:3.168000px;}
.ws14_c00499{word-spacing:3.240000px;}
.ws7_c00499{word-spacing:5.616000px;}
.ws8_c00499{word-spacing:5.688000px;}
.ws11_c00499{word-spacing:6.768000px;}
.wsb_c00499{word-spacing:9.720000px;}
.wsf_c00499{word-spacing:17.928000px;}
.wse_c00499{word-spacing:18.000000px;}
._0_c00499{margin-left:-1.231200px;}
._1_c00499{width:1.166400px;}
.fc1_c00499{color:rgb(0,0,0);}
.fc0_c00499{color:rgb(35,31,32);}
.fs1_c00499{font-size:65.880000px;}
.fs0_c00499{font-size:72.000000px;}
.y0_c00499{bottom:0.000000px;}
.y1_c00499{bottom:61.748550px;}
.y24_c00499{bottom:115.424400px;}
.y23_c00499{bottom:146.474400px;}
.y22_c00499{bottom:177.524400px;}
.y21_c00499{bottom:208.574400px;}
.y20_c00499{bottom:239.624400px;}
.y1f_c00499{bottom:270.674400px;}
.y1e_c00499{bottom:301.724400px;}
.y1d_c00499{bottom:332.774400px;}
.y1c_c00499{bottom:363.824400px;}
.y1b_c00499{bottom:394.874400px;}
.y1a_c00499{bottom:425.924400px;}
.y19_c00499{bottom:456.974400px;}
.y18_c00499{bottom:488.024400px;}
.y17_c00499{bottom:519.074400px;}
.y16_c00499{bottom:550.124400px;}
.y15_c00499{bottom:581.174400px;}
.y14_c00499{bottom:612.224400px;}
.y13_c00499{bottom:643.274400px;}
.y12_c00499{bottom:674.324400px;}
.y11_c00499{bottom:705.374400px;}
.y10_c00499{bottom:736.424400px;}
.yf_c00499{bottom:767.474400px;}
.ye_c00499{bottom:798.434400px;}
.yd_c00499{bottom:829.484400px;}
.yc_c00499{bottom:860.534400px;}
.yb_c00499{bottom:891.584400px;}
.ya_c00499{bottom:922.634400px;}
.y9_c00499{bottom:953.684400px;}
.y8_c00499{bottom:984.734400px;}
.y7_c00499{bottom:1015.784400px;}
.y6_c00499{bottom:1046.834400px;}
.y5_c00499{bottom:1077.884400px;}
.y4_c00499{bottom:1108.934400px;}
.y3_c00499{bottom:1139.984400px;}
.y2_c00499{bottom:1194.074400px;}
.h2_c00499{height:50.400000px;}
.h3_c00499{height:54.331699px;}
.h4_c00499{height:76.824000px;}
.h0_c00499{height:1262.835000px;}
.h1_c00499{height:1263.000000px;}
.w0_c00499{width:892.914000px;}
.w1_c00499{width:893.250000px;}
.x0_c00499{left:0.000000px;}
.x1_c00499{left:54.000000px;}
.x2_c00499{left:127.620000px;}
.x3_c00499{left:159.570000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls4_c00499{letter-spacing:-0.064000pt;}
.ls3_c00499{letter-spacing:0.000000pt;}
.ls0_c00499{letter-spacing:0.064000pt;}
.ls2_c00499{letter-spacing:0.128000pt;}
.ls1_c00499{letter-spacing:16.128000pt;}
.ws0_c00499{word-spacing:-16.064000pt;}
.ws2_c00499{word-spacing:-15.936000pt;}
.ws12_c00499{word-spacing:-0.384000pt;}
.ws13_c00499{word-spacing:-0.320000pt;}
.ws16_c00499{word-spacing:-0.128000pt;}
.ws4_c00499{word-spacing:-0.117120pt;}
.ws6_c00499{word-spacing:-0.064000pt;}
.ws3_c00499{word-spacing:0.000000pt;}
.wsc_c00499{word-spacing:0.064000pt;}
.ws1_c00499{word-spacing:0.128000pt;}
.wsd_c00499{word-spacing:0.576000pt;}
.ws5_c00499{word-spacing:1.216000pt;}
.ws10_c00499{word-spacing:1.920000pt;}
.wsa_c00499{word-spacing:2.496000pt;}
.ws9_c00499{word-spacing:2.560000pt;}
.ws15_c00499{word-spacing:2.816000pt;}
.ws14_c00499{word-spacing:2.880000pt;}
.ws7_c00499{word-spacing:4.992000pt;}
.ws8_c00499{word-spacing:5.056000pt;}
.ws11_c00499{word-spacing:6.016000pt;}
.wsb_c00499{word-spacing:8.640000pt;}
.wsf_c00499{word-spacing:15.936000pt;}
.wse_c00499{word-spacing:16.000000pt;}
._0_c00499{margin-left:-1.094400pt;}
._1_c00499{width:1.036800pt;}
.fs1_c00499{font-size:58.560000pt;}
.fs0_c00499{font-size:64.000000pt;}
.y0_c00499{bottom:0.000000pt;}
.y1_c00499{bottom:54.887600pt;}
.y24_c00499{bottom:102.599467pt;}
.y23_c00499{bottom:130.199467pt;}
.y22_c00499{bottom:157.799467pt;}
.y21_c00499{bottom:185.399467pt;}
.y20_c00499{bottom:212.999467pt;}
.y1f_c00499{bottom:240.599467pt;}
.y1e_c00499{bottom:268.199467pt;}
.y1d_c00499{bottom:295.799467pt;}
.y1c_c00499{bottom:323.399467pt;}
.y1b_c00499{bottom:350.999467pt;}
.y1a_c00499{bottom:378.599467pt;}
.y19_c00499{bottom:406.199467pt;}
.y18_c00499{bottom:433.799467pt;}
.y17_c00499{bottom:461.399467pt;}
.y16_c00499{bottom:488.999467pt;}
.y15_c00499{bottom:516.599467pt;}
.y14_c00499{bottom:544.199467pt;}
.y13_c00499{bottom:571.799467pt;}
.y12_c00499{bottom:599.399467pt;}
.y11_c00499{bottom:626.999467pt;}
.y10_c00499{bottom:654.599467pt;}
.yf_c00499{bottom:682.199467pt;}
.ye_c00499{bottom:709.719467pt;}
.yd_c00499{bottom:737.319467pt;}
.yc_c00499{bottom:764.919467pt;}
.yb_c00499{bottom:792.519467pt;}
.ya_c00499{bottom:820.119467pt;}
.y9_c00499{bottom:847.719467pt;}
.y8_c00499{bottom:875.319467pt;}
.y7_c00499{bottom:902.919467pt;}
.y6_c00499{bottom:930.519467pt;}
.y5_c00499{bottom:958.119467pt;}
.y4_c00499{bottom:985.719467pt;}
.y3_c00499{bottom:1013.319467pt;}
.y2_c00499{bottom:1061.399467pt;}
.h2_c00499{height:44.800000pt;}
.h3_c00499{height:48.294844pt;}
.h4_c00499{height:68.288000pt;}
.h0_c00499{height:1122.520000pt;}
.h1_c00499{height:1122.666667pt;}
.w0_c00499{width:793.701333pt;}
.w1_c00499{width:794.000000pt;}
.x0_c00499{left:0.000000pt;}
.x1_c00499{left:48.000000pt;}
.x2_c00499{left:113.440000pt;}
.x3_c00499{left:141.840000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_fd04395b0d08949bf176ca52.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_8845f531e4dbcd5ccac72e3f.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00001;src:url('chunks/assets/font_bad85ef7066ce2105a24b189.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00001;src:url('chunks/assets/font_3130a86e02bed70c90e36fdf.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00001;src:url('chunks/assets/font_21eb9938d83cb8197053964f.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00001;src:url('chunks/assets/font_9f671c307d7f44f0a6844f71.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00001;src:url('chunks/assets/font_bad85ef7066ce2105a24b189.woff2')format("woff");}.ffb_c00001{font-family:ffb_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00001;src:url('chunks/assets/font_30e5d0443b49efe519a6fba4.woff2')format("woff");}.ffc_c00001{font-family:ffc_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffd_c00001{font-family:ffd_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00001;src:url('chunks/assets/font_483a5c5dcfa0253ad1aa2e31.woff2')format("woff");}.ffe_c00001{font-family:ffe_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00001;src:url('chunks/assets/font_0e481ded004e1bf3f6265855.woff2')format("woff");}.fff_c00001{font-family:fff_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff10_c00001{font-family:ff10_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00001;src:url('chunks/assets/font_3796e63c1f33bf392bcaf584.woff2')format("woff");}.ff11_c00001{font-family:ff11_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00001;src:url('chunks/assets/font_f8c490251d68e7b7bd342c88.woff2')format("woff");}.ff12_c00001{font-family:ff12_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff13_c00001{font-family:ff13_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00001;src:url('chunks/assets/font_483a5c5dcfa0253ad1aa2e31.woff2')format("woff");}.ff14_c00001{font-family:ff14_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00001;src:url('chunks/assets/font_c9676b7746e43aeaa6204a0c.woff2')format("woff");}.ff15_c00001{font-family:ff15_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff16_c00001{font-family:ff16_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00001;src:url('chunks/assets/font_3796e63c1f33bf392bcaf584.woff2')format("woff");}.ff17_c00001{font-family:ff17_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00001;src:url('chunks/assets/font_42f22b8c976e930a93c28cd7.woff2')format("woff");}.ff18_c00001{font-family:ff18_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff19_c00001{font-family:ff19_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00001;src:url('chunks/assets/font_108adf362b4f53c2335f8326.woff2')format("woff");}.ff1a_c00001{font-family:ff1a_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00001;src:url('chunks/assets/font_b2cdb0caa49b26b4cda92a75.woff2')format("woff");}.ff1b_c00001{font-family:ff1b_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1c_c00001{font-family:ff1c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00001;src:url('chunks/assets/font_f05cfa2dac3d3083413e3e05.woff2')format("woff");}.ff1d_c00001{font-family:ff1d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00001;src:url('chunks/assets/font_727c8d6bdb49d9b4f789e9bd.woff2')format("woff");}.ff1e_c00001{font-family:ff1e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1f_c00001{font-family:ff1f_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00001;src:url('chunks/assets/font_108adf362b4f53c2335f8326.woff2')format("woff");}.ff20_c00001{font-family:ff20_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00001;src:url('chunks/assets/font_dea50e2460b0eb5aca5f0775.woff2')format("woff");}.ff21_c00001{font-family:ff21_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff22_c00001{font-family:ff22_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00001;src:url('chunks/assets/font_507a174ce6ad1f251bc3f652.woff2')format("woff");}.ff23_c00001{font-family:ff23_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00001;src:url('chunks/assets/font_f6c332418d8b3ff5b1b4cf68.woff2')format("woff");}.ff24_c00001{font-family:ff24_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff25_c00001{font-family:ff25_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00001;src:url('chunks/assets/font_d0f1b97b300465dba54c9df8.woff2')format("woff");}.ff26_c00001{font-family:ff26_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00001;src:url('chunks/assets/font_b2b5a90a408b7ea927edaac0.woff2')format("woff");}.ff27_c00001{font-family:ff27_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff28_c00001{font-family:ff28_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00001;src:url('chunks/assets/font_507a174ce6ad1f251bc3f652.woff2')format("woff");}.ff29_c00001{font-family:ff29_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00001;src:url('chunks/assets/font_b05c835914c5b344533c8433.woff2')format("woff");}.ff2a_c00001{font-family:ff2a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2b_c00001{font-family:ff2b_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00001;src:url('chunks/assets/font_a65afafb950bcccc85e8100a.woff2')format("woff");}.ff2c_c00001{font-family:ff2c_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00001;src:url('chunks/assets/font_b13a684c0daa92432e8e6292.woff2')format("woff");}.ff2d_c00001{font-family:ff2d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2e_c00001{font-family:ff2e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00001;src:url('chunks/assets/font_42a615da711a9edf14c611ea.woff2')format("woff");}.ff2f_c00001{font-family:ff2f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00001;src:url('chunks/assets/font_fc682b349aef84cc62e2f787.woff2')format("woff");}.ff30_c00001{font-family:ff30_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff31_c00001{font-family:ff31_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00001;src:url('chunks/assets/font_a65afafb950bcccc85e8100a.woff2')format("woff");}.ff32_c00001{font-family:ff32_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00001;src:url('chunks/assets/font_1f53ce42e4a9993383705c92.woff2')format("woff");}.ff33_c00001{font-family:ff33_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff34_c00001{font-family:ff34_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00001;src:url('chunks/assets/font_42a615da711a9edf14c611ea.woff2')format("woff");}.ff35_c00001{font-family:ff35_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00001;src:url('chunks/assets/font_8f44cf4f7500fc1f295be9ba.woff2')format("woff");}.ff36_c00001{font-family:ff36_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff37_c00001{font-family:ff37_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00001;src:url('chunks/assets/font_9796f91d5d427b161f3be03d.woff2')format("woff");}.ff38_c00001{font-family:ff38_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00001;src:url('chunks/assets/font_7ce8341fef5d26fce043993d.woff2')format("woff");}.ff39_c00001{font-family:ff39_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3a_c00001{font-family:ff3a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00001;src:url('chunks/assets/font_ae5ee946b4c448982eb34d0c.woff2')format("woff");}.ff3b_c00001{font-family:ff3b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00001;src:url('chunks/assets/font_c4e5e135432eb3860ef30688.woff2')format("woff");}.ff3c_c00001{font-family:ff3c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3d_c00001{font-family:ff3d_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00001;src:url('chunks/assets/font_9796f91d5d427b161f3be03d.woff2')format("woff");}.ff3e_c00001{font-family:ff3e_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f_c00001;src:url('chunks/assets/font_778bbb684f43fd8df664fa3b.woff2')format("woff");}.ff3f_c00001{font-family:ff3f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff40_c00001{font-family:ff40_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41_c00001;src:url('chunks/assets/font_efdd38d916b4485072270a77.woff2')format("woff");}.ff41_c00001{font-family:ff41_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42_c00001;src:url('chunks/assets/font_6463cc23f34a1d56269853b9.woff2')format("woff");}.ff42_c00001{font-family:ff42_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff43_c00001{font-family:ff43_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44_c00001;src:url('chunks/assets/font_d6a13064750f976a9cd7bc40.woff2')format("woff");}.ff44_c00001{font-family:ff44_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45_c00001;src:url('chunks/assets/font_81e28e689e7b7c9729defbdd.woff2')format("woff");}.ff45_c00001{font-family:ff45_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff46_c00001{font-family:ff46_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47_c00001;src:url('chunks/assets/font_efdd38d916b4485072270a77.woff2')format("woff");}.ff47_c00001{font-family:ff47_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48_c00001;src:url('chunks/assets/font_52769a50b09553a89120360e.woff2')format("woff");}.ff48_c00001{font-family:ff48_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff49_c00001{font-family:ff49_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a_c00001;src:url('chunks/assets/font_d6a13064750f976a9cd7bc40.woff2')format("woff");}.ff4a_c00001{font-family:ff4a_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b_c00001;src:url('chunks/assets/font_8f58f9127a00a0c3cb9cf189.woff2')format("woff");}.ff4b_c00001{font-family:ff4b_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4c_c00001{font-family:ff4c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d_c00001;src:url('chunks/assets/font_034be3adf1b83e1344611dc6.woff2')format("woff");}.ff4d_c00001{font-family:ff4d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e_c00001;src:url('chunks/assets/font_8f58f9127a00a0c3cb9cf189.woff2')format("woff");}.ff4e_c00001{font-family:ff4e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff4f_c00001{font-family:ff4f_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50_c00001;src:url('chunks/assets/font_045bb2b990065aa6b88e12e6.woff2')format("woff");}.ff50_c00001{font-family:ff50_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51_c00001;src:url('chunks/assets/font_f8698d45008430eeaa9c3267.woff2')format("woff");}.ff51_c00001{font-family:ff51_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff52_c00001{font-family:ff52_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53_c00001;src:url('chunks/assets/font_034be3adf1b83e1344611dc6.woff2')format("woff");}.ff53_c00001{font-family:ff53_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54_c00001;src:url('chunks/assets/font_02a8047a0df2050cd9e32eb5.woff2')format("woff");}.ff54_c00001{font-family:ff54_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff55_c00001{font-family:ff55_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56_c00001;src:url('chunks/assets/font_844341234084ad6ddf4df10e.woff2')format("woff");}.ff56_c00001{font-family:ff56_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57_c00001;src:url('chunks/assets/font_3bdc22253e826a03e6a22082.woff2')format("woff");}.ff57_c00001{font-family:ff57_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff58_c00001{font-family:ff58_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59_c00001;src:url('chunks/assets/font_ac097cb56b87618392fdaf4c.woff2')format("woff");}.ff59_c00001{font-family:ff59_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a_c00001;src:url('chunks/assets/font_391073989a750f8881440c49.woff2')format("woff");}.ff5a_c00001{font-family:ff5a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5b_c00001{font-family:ff5b_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c_c00001;src:url('chunks/assets/font_844341234084ad6ddf4df10e.woff2')format("woff");}.ff5c_c00001{font-family:ff5c_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d_c00001;src:url('chunks/assets/font_657c41239b66c01bab66b125.woff2')format("woff");}.ff5d_c00001{font-family:ff5d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff5e_c00001{font-family:ff5e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f_c00001;src:url('chunks/assets/font_782ef0b8736fea5beb9c0634.woff2')format("woff");}.ff5f_c00001{font-family:ff5f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60_c00001;src:url('chunks/assets/font_d347c9ae034adcb7e4e7ddda.woff2')format("woff");}.ff60_c00001{font-family:ff60_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff61_c00001{font-family:ff61_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62_c00001;src:url('chunks/assets/font_0dca767c051dc594620d110e.woff2')format("woff");}.ff62_c00001{font-family:ff62_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63_c00001;src:url('chunks/assets/font_e8357acf7effc85e7c2f8c13.woff2')format("woff");}.ff63_c00001{font-family:ff63_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff64_c00001{font-family:ff64_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65_c00001;src:url('chunks/assets/font_782ef0b8736fea5beb9c0634.woff2')format("woff");}.ff65_c00001{font-family:ff65_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66_c00001;src:url('chunks/assets/font_42a77b0a5e7103ecea731ad6.woff2')format("woff");}.ff66_c00001{font-family:ff66_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff67_c00001{font-family:ff67_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68_c00001;src:url('chunks/assets/font_0dca767c051dc594620d110e.woff2')format("woff");}.ff68_c00001{font-family:ff68_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69_c00001;src:url('chunks/assets/font_3b05b633466b8e675af27ed3.woff2')format("woff");}.ff69_c00001{font-family:ff69_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6a_c00001{font-family:ff6a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b_c00001;src:url('chunks/assets/font_9d3233ec2b04c8343214f56a.woff2')format("woff");}.ff6b_c00001{font-family:ff6b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c_c00001;src:url('chunks/assets/font_c6c53c660372e3bef26270dd.woff2')format("woff");}.ff6c_c00001{font-family:ff6c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff6d_c00001{font-family:ff6d_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e_c00001;src:url('chunks/assets/font_a550a59fcab3b2d55cdb0e12.woff2')format("woff");}.ff6e_c00001{font-family:ff6e_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f_c00001;src:url('chunks/assets/font_c5b9ed66cf2cb03f3532300a.woff2')format("woff");}.ff6f_c00001{font-family:ff6f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff70_c00001{font-family:ff70_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71_c00001;src:url('chunks/assets/font_9d3233ec2b04c8343214f56a.woff2')format("woff");}.ff71_c00001{font-family:ff71_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72_c00001;src:url('chunks/assets/font_ca25229f384a85e2d3de4378.woff2')format("woff");}.ff72_c00001{font-family:ff72_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff73_c00001{font-family:ff73_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74_c00001;src:url('chunks/assets/font_1abaedc4da481c8338e3382a.woff2')format("woff");}.ff74_c00001{font-family:ff74_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff75_c00001;src:url('chunks/assets/font_7ddcb8446632f6671ab2fb34.woff2')format("woff");}.ff75_c00001{font-family:ff75_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff76_c00001{font-family:ff76_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77_c00001;src:url('chunks/assets/font_5af0c3b91685b2179cd713aa.woff2')format("woff");}.ff77_c00001{font-family:ff77_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78_c00001;src:url('chunks/assets/font_e3157a92757fe9913e411eed.woff2')format("woff");}.ff78_c00001{font-family:ff78_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff79_c00001{font-family:ff79_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a_c00001;src:url('chunks/assets/font_1abaedc4da481c8338e3382a.woff2')format("woff");}.ff7a_c00001{font-family:ff7a_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b_c00001;src:url('chunks/assets/font_f00aceef09758104321ef00f.woff2')format("woff");}.ff7b_c00001{font-family:ff7b_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff7c_c00001{font-family:ff7c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d_c00001;src:url('chunks/assets/font_ba3eddbacdcbd997133cef91.woff2')format("woff");}.ff7d_c00001{font-family:ff7d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e_c00001;src:url('chunks/assets/font_7108eb7637a1a8542c94b134.woff2')format("woff");}.ff7e_c00001{font-family:ff7e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7f_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff7f_c00001{font-family:ff7f_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff80_c00001;src:url('chunks/assets/font_9de1c2d7759a842b075efe56.woff2')format("woff");}.ff80_c00001{font-family:ff80_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff81_c00001;src:url('chunks/assets/font_5952f94733d226fba963c3a1.woff2')format("woff");}.ff81_c00001{font-family:ff81_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff82_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff82_c00001{font-family:ff82_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff83_c00001;src:url('chunks/assets/font_ba3eddbacdcbd997133cef91.woff2')format("woff");}.ff83_c00001{font-family:ff83_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff84_c00001;src:url('chunks/assets/font_a11f59265cb074dabe546518.woff2')format("woff");}.ff84_c00001{font-family:ff84_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff85_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff85_c00001{font-family:ff85_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff86_c00001;src:url('chunks/assets/font_9de1c2d7759a842b075efe56.woff2')format("woff");}.ff86_c00001{font-family:ff86_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff87_c00001;src:url('chunks/assets/font_d915f005abba5c62ad9160c5.woff2')format("woff");}.ff87_c00001{font-family:ff87_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff88_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff88_c00001{font-family:ff88_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff89_c00001;src:url('chunks/assets/font_33192b486f8404b4f210aeb6.woff2')format("woff");}.ff89_c00001{font-family:ff89_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8a_c00001;src:url('chunks/assets/font_75b5833e6fc9f871a505fdc8.woff2')format("woff");}.ff8a_c00001{font-family:ff8a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8b_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff8b_c00001{font-family:ff8b_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8c_c00001;src:url('chunks/assets/font_4bd068e6180af8a86e4d15a0.woff2')format("woff");}.ff8c_c00001{font-family:ff8c_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8d_c00001;src:url('chunks/assets/font_827af1f3f4c0c07154f70d56.woff2')format("woff");}.ff8d_c00001{font-family:ff8d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff8e_c00001{font-family:ff8e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8f_c00001;src:url('chunks/assets/font_33192b486f8404b4f210aeb6.woff2')format("woff");}.ff8f_c00001{font-family:ff8f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff90_c00001;src:url('chunks/assets/font_b2fc855944359b09a3a41d90.woff2')format("woff");}.ff90_c00001{font-family:ff90_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff91_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff91_c00001{font-family:ff91_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff92_c00001;src:url('chunks/assets/font_17ad04c3300709fc9530e622.woff2')format("woff");}.ff92_c00001{font-family:ff92_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff93_c00001;src:url('chunks/assets/font_28ddfc65fab1dfaef44ad276.woff2')format("woff");}.ff93_c00001{font-family:ff93_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff94_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff94_c00001{font-family:ff94_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff95_c00001;src:url('chunks/assets/font_36104f434604abb0bc701a55.woff2')format("woff");}.ff95_c00001{font-family:ff95_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff96_c00001;src:url('chunks/assets/font_cd28094d49c1d2c4cfe31219.woff2')format("woff");}.ff96_c00001{font-family:ff96_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff97_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff97_c00001{font-family:ff97_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff98_c00001;src:url('chunks/assets/font_17ad04c3300709fc9530e622.woff2')format("woff");}.ff98_c00001{font-family:ff98_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff99_c00001;src:url('chunks/assets/font_e4fc6b021bb6c39ec99bdeb6.woff2')format("woff");}.ff99_c00001{font-family:ff99_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff9a_c00001{font-family:ff9a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9b_c00001;src:url('chunks/assets/font_f449e1436378e36b83e89d45.woff2')format("woff");}.ff9b_c00001{font-family:ff9b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9c_c00001;src:url('chunks/assets/font_b0d3b36216ab4b22eb67d8d0.woff2')format("woff");}.ff9c_c00001{font-family:ff9c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9d_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff9d_c00001{font-family:ff9d_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9e_c00001;src:url('chunks/assets/font_5c65e6d4c96ae036e381342a.woff2')format("woff");}.ff9e_c00001{font-family:ff9e_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9f_c00001;src:url('chunks/assets/font_e997d01e98ea2ba0bd3409ba.woff2')format("woff");}.ff9f_c00001{font-family:ff9f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa0_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffa0_c00001{font-family:ffa0_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa1_c00001;src:url('chunks/assets/font_f449e1436378e36b83e89d45.woff2')format("woff");}.ffa1_c00001{font-family:ffa1_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa2_c00001;src:url('chunks/assets/font_a74a6c9c71ebac7dff72bd85.woff2')format("woff");}.ffa2_c00001{font-family:ffa2_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa3_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffa3_c00001{font-family:ffa3_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa4_c00001;src:url('chunks/assets/font_5c65e6d4c96ae036e381342a.woff2')format("woff");}.ffa4_c00001{font-family:ffa4_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa5_c00001;src:url('chunks/assets/font_59d22cfcf1d54a2b3c918698.woff2')format("woff");}.ffa5_c00001{font-family:ffa5_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa6_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffa6_c00001{font-family:ffa6_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa7_c00001;src:url('chunks/assets/font_2b730555d8a08ff6b726f3d8.woff2')format("woff");}.ffa7_c00001{font-family:ffa7_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa8_c00001;src:url('chunks/assets/font_6de9d2ae4ee073d2c9b9b661.woff2')format("woff");}.ffa8_c00001{font-family:ffa8_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa9_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffa9_c00001{font-family:ffa9_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffaa_c00001;src:url('chunks/assets/font_6f33132f43ed3ba4bd3dcc56.woff2')format("woff");}.ffaa_c00001{font-family:ffaa_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffab_c00001;src:url('chunks/assets/font_2a27f2794c8e6a2d6c7c8846.woff2')format("woff");}.ffab_c00001{font-family:ffab_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffac_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffac_c00001{font-family:ffac_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffad_c00001;src:url('chunks/assets/font_2b730555d8a08ff6b726f3d8.woff2')format("woff");}.ffad_c00001{font-family:ffad_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffae_c00001;src:url('chunks/assets/font_a35e6424e33177aa921f7717.woff2')format("woff");}.ffae_c00001{font-family:ffae_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffaf_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffaf_c00001{font-family:ffaf_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb0_c00001;src:url('chunks/assets/font_43361496fc48734c7fb513b8.woff2')format("woff");}.ffb0_c00001{font-family:ffb0_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb1_c00001;src:url('chunks/assets/font_9cc394aa9d9dffdcf706e533.woff2')format("woff");}.ffb1_c00001{font-family:ffb1_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb2_c00001;src:url('chunks/assets/font_43361496fc48734c7fb513b8.woff2')format("woff");}.ffb2_c00001{font-family:ffb2_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb3_c00001;src:url('chunks/assets/font_9cc394aa9d9dffdcf706e533.woff2')format("woff");}.ffb3_c00001{font-family:ffb3_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb4_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffb4_c00001{font-family:ffb4_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb5_c00001;src:url('chunks/assets/font_91b267d45d6dedae68ebe780.woff2')format("woff");}.ffb5_c00001{font-family:ffb5_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb6_c00001;src:url('chunks/assets/font_f3f907f8b5053bff2bb26041.woff2')format("woff");}.ffb6_c00001{font-family:ffb6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb7_c00001;src:url('chunks/assets/font_bd381afd29426673c8046fe0.woff2')format("woff");}.ffb7_c00001{font-family:ffb7_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb8_c00001;src:url('chunks/assets/font_a4a1f3bc4e59ec69401402bc.woff2')format("woff");}.ffb8_c00001{font-family:ffb8_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb9_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffb9_c00001{font-family:ffb9_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffba_c00001;src:url('chunks/assets/font_70eb15856ffff186b75b1e6f.woff2')format("woff");}.ffba_c00001{font-family:ffba_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbb_c00001;src:url('chunks/assets/font_cd88e851dd645abdd195af4c.woff2')format("woff");}.ffbb_c00001{font-family:ffbb_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbc_c00001;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ffbc_c00001{font-family:ffbc_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbd_c00001;src:url('chunks/assets/font_1aa7c4f104301b034c568ce6.woff2')format("woff");}.ffbd_c00001{font-family:ffbd_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbe_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffbe_c00001{font-family:ffbe_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffbf_c00001;src:url('chunks/assets/font_d0e256e1717fe24ffcffa962.woff2')format("woff");}.ffbf_c00001{font-family:ffbf_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc0_c00001;src:url('chunks/assets/font_1bb5bc1bf0b75f7f5bdce7cc.woff2')format("woff");}.ffc0_c00001{font-family:ffc0_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc1_c00001;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ffc1_c00001{font-family:ffc1_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc2_c00001;src:url('chunks/assets/font_be6dad674f7a8acf9d8520a3.woff2')format("woff");}.ffc2_c00001{font-family:ffc2_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc3_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffc3_c00001{font-family:ffc3_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc4_c00001;src:url('chunks/assets/font_36c014804b293c3367e4560c.woff2')format("woff");}.ffc4_c00001{font-family:ffc4_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc5_c00001;src:url('chunks/assets/font_90c529772b0cf230e69a22f5.woff2')format("woff");}.ffc5_c00001{font-family:ffc5_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc6_c00001;src:url('chunks/assets/font_b80cc580602f2875382357fa.woff2')format("woff");}.ffc6_c00001{font-family:ffc6_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc7_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffc7_c00001{font-family:ffc7_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc8_c00001;src:url('chunks/assets/font_459e3af4656d69718cb3d056.woff2')format("woff");}.ffc8_c00001{font-family:ffc8_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc9_c00001;src:url('chunks/assets/font_d535048675180e84f7f334e3.woff2')format("woff");}.ffc9_c00001{font-family:ffc9_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffca_c00001;src:url('chunks/assets/font_709d1c9fa8fc11f17a8fa3fa.woff2')format("woff");}.ffca_c00001{font-family:ffca_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcb_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffcb_c00001{font-family:ffcb_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcc_c00001;src:url('chunks/assets/font_c5444c0cfb11869c33445f51.woff2')format("woff");}.ffcc_c00001{font-family:ffcc_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcd_c00001;src:url('chunks/assets/font_3f21b29b4efa216a2c9804f1.woff2')format("woff");}.ffcd_c00001{font-family:ffcd_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffce_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffce_c00001{font-family:ffce_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffcf_c00001;src:url('chunks/assets/font_a8519234e2e59079cdee1733.woff2')format("woff");}.ffcf_c00001{font-family:ffcf_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd0_c00001;src:url('chunks/assets/font_d29422bf8e1bb5a3b3fb2a7c.woff2')format("woff");}.ffd0_c00001{font-family:ffd0_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd1_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffd1_c00001{font-family:ffd1_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd2_c00001;src:url('chunks/assets/font_3098bcab361dcfffa60f040f.woff2')format("woff");}.ffd2_c00001{font-family:ffd2_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd3_c00001;src:url('chunks/assets/font_3f2bd676261c8fb0aafbd039.woff2')format("woff");}.ffd3_c00001{font-family:ffd3_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd4_c00001;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ffd4_c00001{font-family:ffd4_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd5_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffd5_c00001{font-family:ffd5_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd6_c00001;src:url('chunks/assets/font_c3f101deffaf7042699a5966.woff2')format("woff");}.ffd6_c00001{font-family:ffd6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd7_c00001;src:url('chunks/assets/font_3f2bd676261c8fb0aafbd039.woff2')format("woff");}.ffd7_c00001{font-family:ffd7_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd8_c00001;src:url('chunks/assets/font_b7b5bc8fad102b9d4392f9eb.woff2')format("woff");}.ffd8_c00001{font-family:ffd8_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd9_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffd9_c00001{font-family:ffd9_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffda_c00001;src:url('chunks/assets/font_d05501c444e08ed7141fe201.woff2')format("woff");}.ffda_c00001{font-family:ffda_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdb_c00001;src:url('chunks/assets/font_bd381afd29426673c8046fe0.woff2')format("woff");}.ffdb_c00001{font-family:ffdb_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdc_c00001;src:url('chunks/assets/font_d0f574339ecb8bbdc03d1315.woff2')format("woff");}.ffdc_c00001{font-family:ffdc_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdd_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffdd_c00001{font-family:ffdd_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffde_c00001;src:url('chunks/assets/font_5f192d048f34820f63a9f704.woff2')format("woff");}.ffde_c00001{font-family:ffde_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffdf_c00001;src:url('chunks/assets/font_bd381afd29426673c8046fe0.woff2')format("woff");}.ffdf_c00001{font-family:ffdf_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe0_c00001;src:url('chunks/assets/font_1f6fdc877ef801e3c1d2be51.woff2')format("woff");}.ffe0_c00001{font-family:ffe0_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe1_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffe1_c00001{font-family:ffe1_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe2_c00001;src:url('chunks/assets/font_47f817b714255ef1754b3e4a.woff2')format("woff");}.ffe2_c00001{font-family:ffe2_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe3_c00001;src:url('chunks/assets/font_d0115a9cef18210a58948721.woff2')format("woff");}.ffe3_c00001{font-family:ffe3_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe4_c00001;src:url('chunks/assets/font_4ab2a2eb711a19364b5a3fa9.woff2')format("woff");}.ffe4_c00001{font-family:ffe4_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe5_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffe5_c00001{font-family:ffe5_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe6_c00001;src:url('chunks/assets/font_62d221615b7af7560f6d40b6.woff2')format("woff");}.ffe6_c00001{font-family:ffe6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe7_c00001;src:url('chunks/assets/font_7a24bf2891142f2a0156c57e.woff2')format("woff");}.ffe7_c00001{font-family:ffe7_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe8_c00001;src:url('chunks/assets/font_1144c1f6677cd389c64e3246.woff2')format("woff");}.ffe8_c00001{font-family:ffe8_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe9_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffe9_c00001{font-family:ffe9_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffea_c00001;src:url('chunks/assets/font_ca919005f22b50c1123ec84e.woff2')format("woff");}.ffea_c00001{font-family:ffea_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffeb_c00001;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ffeb_c00001{font-family:ffeb_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffec_c00001;src:url('chunks/assets/font_71eb685be82571a03c41afe7.woff2')format("woff");}.ffec_c00001{font-family:ffec_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffed_c00001;src:url('chunks/assets/font_709d1c9fa8fc11f17a8fa3fa.woff2')format("woff");}.ffed_c00001{font-family:ffed_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffee_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffee_c00001{font-family:ffee_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffef_c00001;src:url('chunks/assets/font_d509a3985d4ffd729eae7969.woff2')format("woff");}.ffef_c00001{font-family:ffef_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff0_c00001;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.fff0_c00001{font-family:fff0_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff1_c00001;src:url('chunks/assets/font_a2429103d2b7017d32457ec9.woff2')format("woff");}.fff1_c00001{font-family:fff1_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff2_c00001;src:url('chunks/assets/font_709d1c9fa8fc11f17a8fa3fa.woff2')format("woff");}.fff2_c00001{font-family:fff2_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff3_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.fff3_c00001{font-family:fff3_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff4_c00001;src:url('chunks/assets/font_53fc39ec385d49e2a13b6f5a.woff2')format("woff");}.fff4_c00001{font-family:fff4_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff5_c00001;src:url('chunks/assets/font_71ffd54321f1e81e9f7fe45c.woff2')format("woff");}.fff5_c00001{font-family:fff5_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff6_c00001;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.fff6_c00001{font-family:fff6_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff7_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.fff7_c00001{font-family:fff7_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff8_c00001;src:url('chunks/assets/font_3e7eb9dda14af192c66fb97b.woff2')format("woff");}.fff8_c00001{font-family:fff8_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff9_c00001;src:url('chunks/assets/font_71ffd54321f1e81e9f7fe45c.woff2')format("woff");}.fff9_c00001{font-family:fff9_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffa_c00001;src:url('chunks/assets/font_123b175c4effe4f92c76f4bb.woff2')format("woff");}.fffa_c00001{font-family:fffa_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffb_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.fffb_c00001{font-family:fffb_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffc_c00001;src:url('chunks/assets/font_c8fdf9a74d308f0775757a28.woff2')format("woff");}.fffc_c00001{font-family:fffc_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffd_c00001;src:url('chunks/assets/font_d3b563edcce3633d5b35b173.woff2')format("woff");}.fffd_c00001{font-family:fffd_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fffe_c00001;src:url('chunks/assets/font_56ac8f3b38d57335dee4f736.woff2')format("woff");}.fffe_c00001{font-family:fffe_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffff_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ffff_c00001{font-family:ffff_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff100_c00001;src:url('chunks/assets/font_58d68cacaee1bea6a426e0bb.woff2')format("woff");}.ff100_c00001{font-family:ff100_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff101_c00001;src:url('chunks/assets/font_0cdb8f95882f8f692c4c143d.woff2')format("woff");}.ff101_c00001{font-family:ff101_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff102_c00001;src:url('chunks/assets/font_42d623deed34d3d190e64243.woff2')format("woff");}.ff102_c00001{font-family:ff102_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff103_c00001;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff103_c00001{font-family:ff103_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff104_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff104_c00001{font-family:ff104_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff105_c00001;src:url('chunks/assets/font_1caf5389989b938049f01bc0.woff2')format("woff");}.ff105_c00001{font-family:ff105_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff106_c00001;src:url('chunks/assets/font_e4c470cfacb6d264c3b134b0.woff2')format("woff");}.ff106_c00001{font-family:ff106_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff107_c00001;src:url('chunks/assets/font_2c1c3fae63996fa2e48e29a3.woff2')format("woff");}.ff107_c00001{font-family:ff107_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff108_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff108_c00001{font-family:ff108_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff109_c00001;src:url('chunks/assets/font_f5e814547403766e420d0a93.woff2')format("woff");}.ff109_c00001{font-family:ff109_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10a_c00001;src:url('chunks/assets/font_73ab533d53277e171bc2eb29.woff2')format("woff");}.ff10a_c00001{font-family:ff10a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10b_c00001;src:url('chunks/assets/font_be6dad674f7a8acf9d8520a3.woff2')format("woff");}.ff10b_c00001{font-family:ff10b_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff10c_c00001{font-family:ff10c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10d_c00001;src:url('chunks/assets/font_fcacad4b19257e4a362e4567.woff2')format("woff");}.ff10d_c00001{font-family:ff10d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10e_c00001;src:url('chunks/assets/font_0492a7ed57710f963c1461dc.woff2')format("woff");}.ff10e_c00001{font-family:ff10e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10f_c00001;src:url('chunks/assets/font_709d1c9fa8fc11f17a8fa3fa.woff2')format("woff");}.ff10f_c00001{font-family:ff10f_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff110_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff110_c00001{font-family:ff110_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff111_c00001;src:url('chunks/assets/font_a087b49d1121c5ffc2893560.woff2')format("woff");}.ff111_c00001{font-family:ff111_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff112_c00001;src:url('chunks/assets/font_6d14118a0939cbef6ccec54a.woff2')format("woff");}.ff112_c00001{font-family:ff112_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff113_c00001;src:url('chunks/assets/font_709d1c9fa8fc11f17a8fa3fa.woff2')format("woff");}.ff113_c00001{font-family:ff113_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff114_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff114_c00001{font-family:ff114_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff115_c00001;src:url('chunks/assets/font_41a653066c01a9ba5c034214.woff2')format("woff");}.ff115_c00001{font-family:ff115_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff116_c00001;src:url('chunks/assets/font_694f72b170d918454dfd8f8f.woff2')format("woff");}.ff116_c00001{font-family:ff116_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff117_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff117_c00001{font-family:ff117_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff118_c00001;src:url('chunks/assets/font_ff1641e5ba4c9f293999316a.woff2')format("woff");}.ff118_c00001{font-family:ff118_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff119_c00001;src:url('chunks/assets/font_5124affc5cb84e179012de06.woff2')format("woff");}.ff119_c00001{font-family:ff119_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11a_c00001;src:url('chunks/assets/font_4a4a740576ba2d6b1718d869.woff2')format("woff");}.ff11a_c00001{font-family:ff11a_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11b_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff11b_c00001{font-family:ff11b_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11c_c00001;src:url('chunks/assets/font_3ca507f12f0939d0e1230310.woff2')format("woff");}.ff11c_c00001{font-family:ff11c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11d_c00001;src:url('chunks/assets/font_22fa981968119125db45fef5.woff2')format("woff");}.ff11d_c00001{font-family:ff11d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff11e_c00001{font-family:ff11e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11f_c00001;src:url('chunks/assets/font_0ec39e0ac41873b9d99b0ae3.woff2')format("woff");}.ff11f_c00001{font-family:ff11f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff120_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff120_c00001{font-family:ff120_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff121_c00001;src:url('chunks/assets/font_239670a97cc3dac4b4e41c1f.woff2')format("woff");}.ff121_c00001{font-family:ff121_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff122_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff122_c00001{font-family:ff122_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff123_c00001;src:url('chunks/assets/font_6851b106cbb7dee432d136ff.woff2')format("woff");}.ff123_c00001{font-family:ff123_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff124_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff124_c00001{font-family:ff124_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff125_c00001;src:url('chunks/assets/font_239670a97cc3dac4b4e41c1f.woff2')format("woff");}.ff125_c00001{font-family:ff125_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff126_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff126_c00001{font-family:ff126_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff127_c00001;src:url('chunks/assets/font_9838825622d18b2bbe2bc88c.woff2')format("woff");}.ff127_c00001{font-family:ff127_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff128_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff128_c00001{font-family:ff128_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff129_c00001;src:url('chunks/assets/font_62e07df94307357150268e44.woff2')format("woff");}.ff129_c00001{font-family:ff129_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff12a_c00001{font-family:ff12a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12b_c00001;src:url('chunks/assets/font_efbf027798b997ce4c9a54b7.woff2')format("woff");}.ff12b_c00001{font-family:ff12b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff12c_c00001{font-family:ff12c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12d_c00001;src:url('chunks/assets/font_efec0959815d8bc50354fa1c.woff2')format("woff");}.ff12d_c00001{font-family:ff12d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff12e_c00001{font-family:ff12e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12f_c00001;src:url('chunks/assets/font_efbf027798b997ce4c9a54b7.woff2')format("woff");}.ff12f_c00001{font-family:ff12f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff130_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff130_c00001{font-family:ff130_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff131_c00001;src:url('chunks/assets/font_21ec070a8d4384193d3939a0.woff2')format("woff");}.ff131_c00001{font-family:ff131_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff132_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff132_c00001{font-family:ff132_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff133_c00001;src:url('chunks/assets/font_9838825622d18b2bbe2bc88c.woff2')format("woff");}.ff133_c00001{font-family:ff133_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff134_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff134_c00001{font-family:ff134_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff135_c00001;src:url('chunks/assets/font_62e07df94307357150268e44.woff2')format("woff");}.ff135_c00001{font-family:ff135_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff136_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff136_c00001{font-family:ff136_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff137_c00001;src:url('chunks/assets/font_9838825622d18b2bbe2bc88c.woff2')format("woff");}.ff137_c00001{font-family:ff137_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff138_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff138_c00001{font-family:ff138_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff139_c00001;src:url('chunks/assets/font_62e07df94307357150268e44.woff2')format("woff");}.ff139_c00001{font-family:ff139_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff13a_c00001{font-family:ff13a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13b_c00001;src:url('chunks/assets/font_efbf027798b997ce4c9a54b7.woff2')format("woff");}.ff13b_c00001{font-family:ff13b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff13c_c00001{font-family:ff13c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13d_c00001;src:url('chunks/assets/font_efec0959815d8bc50354fa1c.woff2')format("woff");}.ff13d_c00001{font-family:ff13d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff13e_c00001{font-family:ff13e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13f_c00001;src:url('chunks/assets/font_efbf027798b997ce4c9a54b7.woff2')format("woff");}.ff13f_c00001{font-family:ff13f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff140_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff140_c00001{font-family:ff140_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff141_c00001;src:url('chunks/assets/font_b07a6c447484a7c9a86dcaa1.woff2')format("woff");}.ff141_c00001{font-family:ff141_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff142_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff142_c00001{font-family:ff142_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff143_c00001;src:url('chunks/assets/font_fb2de61ff7e2b80432aeb0f3.woff2')format("woff");}.ff143_c00001{font-family:ff143_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff144_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff144_c00001{font-family:ff144_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff145_c00001;src:url('chunks/assets/font_e1b44cd54976faaa81083778.woff2')format("woff");}.ff145_c00001{font-family:ff145_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff146_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff146_c00001{font-family:ff146_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff147_c00001;src:url('chunks/assets/font_fb2de61ff7e2b80432aeb0f3.woff2')format("woff");}.ff147_c00001{font-family:ff147_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff148_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff148_c00001{font-family:ff148_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff149_c00001;src:url('chunks/assets/font_e1b44cd54976faaa81083778.woff2')format("woff");}.ff149_c00001{font-family:ff149_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff14a_c00001{font-family:ff14a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14b_c00001;src:url('chunks/assets/font_811a396478db2433bf60e3a5.woff2')format("woff");}.ff14b_c00001{font-family:ff14b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff14c_c00001{font-family:ff14c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14d_c00001;src:url('chunks/assets/font_0992073828ca09b06a8df392.woff2')format("woff");}.ff14d_c00001{font-family:ff14d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14e_c00001;src:url('chunks/assets/font_0992073828ca09b06a8df392.woff2')format("woff");}.ff14e_c00001{font-family:ff14e_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14f_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff14f_c00001{font-family:ff14f_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff150_c00001;src:url('chunks/assets/font_4519ebd55c8a4c00c1448e7a.woff2')format("woff");}.ff150_c00001{font-family:ff150_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff151_c00001;src:url('chunks/assets/font_452e0b3da5831af0ea78d330.woff2')format("woff");}.ff151_c00001{font-family:ff151_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff152_c00001;src:url('chunks/assets/font_5398d3e9d8a301938c870b02.woff2')format("woff");}.ff152_c00001{font-family:ff152_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff153_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff153_c00001{font-family:ff153_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff154_c00001;src:url('chunks/assets/font_3ea9ba737d491d734fc78d44.woff2')format("woff");}.ff154_c00001{font-family:ff154_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff155_c00001;src:url('chunks/assets/font_b7b7af0bd4c1c7dea5d3cb87.woff2')format("woff");}.ff155_c00001{font-family:ff155_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff156_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff156_c00001{font-family:ff156_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff157_c00001;src:url('chunks/assets/font_a606ceb49842ab26b5d1bd74.woff2')format("woff");}.ff157_c00001{font-family:ff157_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff158_c00001;src:url('chunks/assets/font_28c308f99043f84e258381f7.woff2')format("woff");}.ff158_c00001{font-family:ff158_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff159_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff159_c00001{font-family:ff159_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15a_c00001;src:url('chunks/assets/font_75a551eab650f81c74ed5611.woff2')format("woff");}.ff15a_c00001{font-family:ff15a_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15b_c00001;src:url('chunks/assets/font_eb68c4202e2098dbb56ef10e.woff2')format("woff");}.ff15b_c00001{font-family:ff15b_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff15c_c00001{font-family:ff15c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15d_c00001;src:url('chunks/assets/font_a606ceb49842ab26b5d1bd74.woff2')format("woff");}.ff15d_c00001{font-family:ff15d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15e_c00001;src:url('chunks/assets/font_31422b4469be45c23055a909.woff2')format("woff");}.ff15e_c00001{font-family:ff15e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15f_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff15f_c00001{font-family:ff15f_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff160_c00001;src:url('chunks/assets/font_0d1f18916db28cb2367602c3.woff2')format("woff");}.ff160_c00001{font-family:ff160_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff161_c00001;src:url('chunks/assets/font_614dfe5535db63721915a560.woff2')format("woff");}.ff161_c00001{font-family:ff161_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff162_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff162_c00001{font-family:ff162_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff163_c00001;src:url('chunks/assets/font_4bb461492dcd713ee3ef9aee.woff2')format("woff");}.ff163_c00001{font-family:ff163_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff164_c00001;src:url('chunks/assets/font_dfb9fd42276de55b630d2fcc.woff2')format("woff");}.ff164_c00001{font-family:ff164_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff165_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff165_c00001{font-family:ff165_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff166_c00001;src:url('chunks/assets/font_0d1f18916db28cb2367602c3.woff2')format("woff");}.ff166_c00001{font-family:ff166_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff167_c00001;src:url('chunks/assets/font_518705e5dba9b178dc86e5e5.woff2')format("woff");}.ff167_c00001{font-family:ff167_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff168_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff168_c00001{font-family:ff168_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff169_c00001;src:url('chunks/assets/font_4bb461492dcd713ee3ef9aee.woff2')format("woff");}.ff169_c00001{font-family:ff169_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16a_c00001;src:url('chunks/assets/font_daca079c23502d9fe5fbfd5c.woff2')format("woff");}.ff16a_c00001{font-family:ff16a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16b_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff16b_c00001{font-family:ff16b_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16c_c00001;src:url('chunks/assets/font_efe50cf7fca4b960c4b57533.woff2')format("woff");}.ff16c_c00001{font-family:ff16c_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16d_c00001;src:url('chunks/assets/font_255e353c6aab17862013a75e.woff2')format("woff");}.ff16d_c00001{font-family:ff16d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff16e_c00001{font-family:ff16e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16f_c00001;src:url('chunks/assets/font_b2727df0e7bf45d5d45dfba2.woff2')format("woff");}.ff16f_c00001{font-family:ff16f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff170_c00001;src:url('chunks/assets/font_061d46607d9195c2c13844a7.woff2')format("woff");}.ff170_c00001{font-family:ff170_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff171_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff171_c00001{font-family:ff171_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff172_c00001;src:url('chunks/assets/font_efe50cf7fca4b960c4b57533.woff2')format("woff");}.ff172_c00001{font-family:ff172_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff173_c00001;src:url('chunks/assets/font_4dff82136712447d58685278.woff2')format("woff");}.ff173_c00001{font-family:ff173_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff174_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff174_c00001{font-family:ff174_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff175_c00001;src:url('chunks/assets/font_6bad33c0bb60e8c834249d39.woff2')format("woff");}.ff175_c00001{font-family:ff175_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff176_c00001;src:url('chunks/assets/font_cfb7aa5319a9cce2d574e0bc.woff2')format("woff");}.ff176_c00001{font-family:ff176_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff177_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff177_c00001{font-family:ff177_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff178_c00001;src:url('chunks/assets/font_a3b20aa4f6e51b02bd8ac2c2.woff2')format("woff");}.ff178_c00001{font-family:ff178_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff179_c00001;src:url('chunks/assets/font_007d2cf636632220e7d6926e.woff2')format("woff");}.ff179_c00001{font-family:ff179_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff17a_c00001{font-family:ff17a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17b_c00001;src:url('chunks/assets/font_6bad33c0bb60e8c834249d39.woff2')format("woff");}.ff17b_c00001{font-family:ff17b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17c_c00001;src:url('chunks/assets/font_d7cbd014192799db84cf12ef.woff2')format("woff");}.ff17c_c00001{font-family:ff17c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17d_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff17d_c00001{font-family:ff17d_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17e_c00001;src:url('chunks/assets/font_c6c43518691dd5e4c6afde6b.woff2')format("woff");}.ff17e_c00001{font-family:ff17e_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17f_c00001;src:url('chunks/assets/font_395bee84258a312c947b9c9a.woff2')format("woff");}.ff17f_c00001{font-family:ff17f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff180_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff180_c00001{font-family:ff180_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff181_c00001;src:url('chunks/assets/font_c302963330c63a1a8a233061.woff2')format("woff");}.ff181_c00001{font-family:ff181_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff182_c00001;src:url('chunks/assets/font_a4eee8ec20f33211a2b0a8ed.woff2')format("woff");}.ff182_c00001{font-family:ff182_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff183_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff183_c00001{font-family:ff183_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff184_c00001;src:url('chunks/assets/font_c6c43518691dd5e4c6afde6b.woff2')format("woff");}.ff184_c00001{font-family:ff184_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff185_c00001;src:url('chunks/assets/font_cdb19a5c527034e3a3e390ed.woff2')format("woff");}.ff185_c00001{font-family:ff185_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff186_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff186_c00001{font-family:ff186_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff187_c00001;src:url('chunks/assets/font_c302963330c63a1a8a233061.woff2')format("woff");}.ff187_c00001{font-family:ff187_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff188_c00001;src:url('chunks/assets/font_83e7e15593d22d3293640f89.woff2')format("woff");}.ff188_c00001{font-family:ff188_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff189_c00001;src:url('chunks/assets/font_3d3ae66caebb6ed754f9268e.woff2')format("woff");}.ff189_c00001{font-family:ff189_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff18a_c00001{font-family:ff18a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18b_c00001;src:url('chunks/assets/font_e2a01b14aff5d3a94939d5d3.woff2')format("woff");}.ff18b_c00001{font-family:ff18b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18c_c00001;src:url('chunks/assets/font_a2424a1930f010003daf4dce.woff2')format("woff");}.ff18c_c00001{font-family:ff18c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18d_c00001;src:url('chunks/assets/font_568e65d218039cc350e6f62e.woff2')format("woff");}.ff18d_c00001{font-family:ff18d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff18e_c00001{font-family:ff18e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18f_c00001;src:url('chunks/assets/font_83ec91ebb42308de8bc73983.woff2')format("woff");}.ff18f_c00001{font-family:ff18f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff190_c00001;src:url('chunks/assets/font_8e75645beac19f931a3a358b.woff2')format("woff");}.ff190_c00001{font-family:ff190_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff191_c00001;src:url('chunks/assets/font_446b8b222a0389fe569049cb.woff2')format("woff");}.ff191_c00001{font-family:ff191_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff192_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff192_c00001{font-family:ff192_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff193_c00001;src:url('chunks/assets/font_a89fd3168c4af6d0148780bc.woff2')format("woff");}.ff193_c00001{font-family:ff193_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff194_c00001;src:url('chunks/assets/font_446b8b222a0389fe569049cb.woff2')format("woff");}.ff194_c00001{font-family:ff194_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff195_c00001;src:url('chunks/assets/font_c15730197b158177c5e40584.woff2')format("woff");}.ff195_c00001{font-family:ff195_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff196_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff196_c00001{font-family:ff196_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff197_c00001;src:url('chunks/assets/font_02fd6ae89911c6464a2c37ba.woff2')format("woff");}.ff197_c00001{font-family:ff197_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff198_c00001;src:url('chunks/assets/font_11efa0b1a3d4b56707265f19.woff2')format("woff");}.ff198_c00001{font-family:ff198_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff199_c00001;src:url('chunks/assets/font_d1e2c72ce42904f6cac31e9b.woff2')format("woff");}.ff199_c00001{font-family:ff199_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19a_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff19a_c00001{font-family:ff19a_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19b_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff19b_c00001{font-family:ff19b_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19c_c00001;src:url('chunks/assets/font_5cd38d9dc6ab334ccff04fd7.woff2')format("woff");}.ff19c_c00001{font-family:ff19c_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19d_c00001;src:url('chunks/assets/font_2be5c42beac65e8448f55370.woff2')format("woff");}.ff19d_c00001{font-family:ff19d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19e_c00001;src:url('chunks/assets/font_4e528ad6a1b963e701d47b63.woff2')format("woff");}.ff19e_c00001{font-family:ff19e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19f_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff19f_c00001{font-family:ff19f_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a0_c00001;src:url('chunks/assets/font_7b186f6bd0950d5a201e1c38.woff2')format("woff");}.ff1a0_c00001{font-family:ff1a0_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a1_c00001;src:url('chunks/assets/font_f4da0031773d667dba44776f.woff2')format("woff");}.ff1a1_c00001{font-family:ff1a1_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a2_c00001;src:url('chunks/assets/font_0b47bf8ed758e6ba2f62b35a.woff2')format("woff");}.ff1a2_c00001{font-family:ff1a2_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a3_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1a3_c00001{font-family:ff1a3_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a4_c00001;src:url('chunks/assets/font_a12379ce0b585a3f1a10b3e0.woff2')format("woff");}.ff1a4_c00001{font-family:ff1a4_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a5_c00001;src:url('chunks/assets/font_daf614ad0d8f18d7144abffb.woff2')format("woff");}.ff1a5_c00001{font-family:ff1a5_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a6_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1a6_c00001{font-family:ff1a6_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a7_c00001;src:url('chunks/assets/font_e6797771b892cfb606895f45.woff2')format("woff");}.ff1a7_c00001{font-family:ff1a7_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a8_c00001;src:url('chunks/assets/font_ebb56f2fcf3667d83201113c.woff2')format("woff");}.ff1a8_c00001{font-family:ff1a8_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a9_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1a9_c00001{font-family:ff1a9_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1aa_c00001;src:url('chunks/assets/font_4c9555f3a75a54078077292b.woff2')format("woff");}.ff1aa_c00001{font-family:ff1aa_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ab_c00001;src:url('chunks/assets/font_1f0a7e1d126d462db4526e00.woff2')format("woff");}.ff1ab_c00001{font-family:ff1ab_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ac_c00001;src:url('chunks/assets/font_4b95de78216e9e009975b5f1.woff2')format("woff");}.ff1ac_c00001{font-family:ff1ac_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ad_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1ad_c00001{font-family:ff1ad_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ae_c00001;src:url('chunks/assets/font_15d9b9df05c544d750388920.woff2')format("woff");}.ff1ae_c00001{font-family:ff1ae_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1af_c00001;src:url('chunks/assets/font_0ffb737ac8a21fcc0aa2e847.woff2')format("woff");}.ff1af_c00001{font-family:ff1af_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b0_c00001;src:url('chunks/assets/font_4b95de78216e9e009975b5f1.woff2')format("woff");}.ff1b0_c00001{font-family:ff1b0_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b1_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1b1_c00001{font-family:ff1b1_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b2_c00001;src:url('chunks/assets/font_b5e533472bf189c57c17f051.woff2')format("woff");}.ff1b2_c00001{font-family:ff1b2_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b3_c00001;src:url('chunks/assets/font_ef21270f79df1f62dc2027ed.woff2')format("woff");}.ff1b3_c00001{font-family:ff1b3_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b4_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1b4_c00001{font-family:ff1b4_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b5_c00001;src:url('chunks/assets/font_9c4bf3acda12b947fde5b080.woff2')format("woff");}.ff1b5_c00001{font-family:ff1b5_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b6_c00001;src:url('chunks/assets/font_ef21270f79df1f62dc2027ed.woff2')format("woff");}.ff1b6_c00001{font-family:ff1b6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b7_c00001;src:url('chunks/assets/font_965cc7bf536ca202f30ad0ee.woff2')format("woff");}.ff1b7_c00001{font-family:ff1b7_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b8_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1b8_c00001{font-family:ff1b8_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b9_c00001;src:url('chunks/assets/font_1f2076e2e79b91a4696b2eef.woff2')format("woff");}.ff1b9_c00001{font-family:ff1b9_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ba_c00001;src:url('chunks/assets/font_860df8e5a52a8c16cbd0b73e.woff2')format("woff");}.ff1ba_c00001{font-family:ff1ba_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bb_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1bb_c00001{font-family:ff1bb_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bc_c00001;src:url('chunks/assets/font_4b0c7f17560facece5ca9742.woff2')format("woff");}.ff1bc_c00001{font-family:ff1bc_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bd_c00001;src:url('chunks/assets/font_cec67a43cb3111a89f61b85b.woff2')format("woff");}.ff1bd_c00001{font-family:ff1bd_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1be_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1be_c00001{font-family:ff1be_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1bf_c00001;src:url('chunks/assets/font_68411b6529b58fd78855b67a.woff2')format("woff");}.ff1bf_c00001{font-family:ff1bf_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c0_c00001;src:url('chunks/assets/font_ce173c35ab82e170c9c9a972.woff2')format("woff");}.ff1c0_c00001{font-family:ff1c0_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c1_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1c1_c00001{font-family:ff1c1_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c2_c00001;src:url('chunks/assets/font_76ba58ff4323338963a18518.woff2')format("woff");}.ff1c2_c00001{font-family:ff1c2_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c3_c00001;src:url('chunks/assets/font_6e7ba84e3ecb984149c3a1d7.woff2')format("woff");}.ff1c3_c00001{font-family:ff1c3_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c4_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1c4_c00001{font-family:ff1c4_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c5_c00001;src:url('chunks/assets/font_042e35500b7d13f3ef96ca95.woff2')format("woff");}.ff1c5_c00001{font-family:ff1c5_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c6_c00001;src:url('chunks/assets/font_0a7cdce64590efa04bfd68bc.woff2')format("woff");}.ff1c6_c00001{font-family:ff1c6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c7_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1c7_c00001{font-family:ff1c7_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c8_c00001;src:url('chunks/assets/font_f89e4b2e64283e2052d22ac9.woff2')format("woff");}.ff1c8_c00001{font-family:ff1c8_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c9_c00001;src:url('chunks/assets/font_302a53f9b1005772eac1a915.woff2')format("woff");}.ff1c9_c00001{font-family:ff1c9_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ca_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1ca_c00001{font-family:ff1ca_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1cb_c00001;src:url('chunks/assets/font_95bc76732052dac9cd035b2e.woff2')format("woff");}.ff1cb_c00001{font-family:ff1cb_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1cc_c00001;src:url('chunks/assets/font_d73cfabf53bf82923cd68d1e.woff2')format("woff");}.ff1cc_c00001{font-family:ff1cc_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1cd_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1cd_c00001{font-family:ff1cd_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ce_c00001;src:url('chunks/assets/font_2039412f1ff606a4cc734352.woff2')format("woff");}.ff1ce_c00001{font-family:ff1ce_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1cf_c00001;src:url('chunks/assets/font_207999449a790926e6e01aa7.woff2')format("woff");}.ff1cf_c00001{font-family:ff1cf_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d0_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1d0_c00001{font-family:ff1d0_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d1_c00001;src:url('chunks/assets/font_27347bcf1da28def9a47eef5.woff2')format("woff");}.ff1d1_c00001{font-family:ff1d1_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d2_c00001;src:url('chunks/assets/font_f7b3b61ff3392ee4335ef193.woff2')format("woff");}.ff1d2_c00001{font-family:ff1d2_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d3_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1d3_c00001{font-family:ff1d3_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d4_c00001;src:url('chunks/assets/font_ec341c62872dbf5d4260604b.woff2')format("woff");}.ff1d4_c00001{font-family:ff1d4_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d5_c00001;src:url('chunks/assets/font_8093e0966b0664584580ff48.woff2')format("woff");}.ff1d5_c00001{font-family:ff1d5_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d6_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1d6_c00001{font-family:ff1d6_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d7_c00001;src:url('chunks/assets/font_b4ac36419858528e77b0ec66.woff2')format("woff");}.ff1d7_c00001{font-family:ff1d7_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d8_c00001;src:url('chunks/assets/font_2f658e6a387c8f98143d1341.woff2')format("woff");}.ff1d8_c00001{font-family:ff1d8_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d9_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1d9_c00001{font-family:ff1d9_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1da_c00001;src:url('chunks/assets/font_a0d418fc3f7094b0cec88efe.woff2')format("woff");}.ff1da_c00001{font-family:ff1da_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1db_c00001;src:url('chunks/assets/font_7ca9283294c8a4936abc3f3d.woff2')format("woff");}.ff1db_c00001{font-family:ff1db_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1dc_c00001;src:url('chunks/assets/font_f33a32939fc0d7b23afe72e1.woff2')format("woff");}.ff1dc_c00001{font-family:ff1dc_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1dd_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1dd_c00001{font-family:ff1dd_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1de_c00001;src:url('chunks/assets/font_b4ac36419858528e77b0ec66.woff2')format("woff");}.ff1de_c00001{font-family:ff1de_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1df_c00001;src:url('chunks/assets/font_ffbdc598e2420b37d55e8f7c.woff2')format("woff");}.ff1df_c00001{font-family:ff1df_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e0_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1e0_c00001{font-family:ff1e0_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e1_c00001;src:url('chunks/assets/font_baae635d496a59fbdc2537bd.woff2')format("woff");}.ff1e1_c00001{font-family:ff1e1_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e2_c00001;src:url('chunks/assets/font_61fcf325699e21a7446e70b4.woff2')format("woff");}.ff1e2_c00001{font-family:ff1e2_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e3_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1e3_c00001{font-family:ff1e3_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e4_c00001;src:url('chunks/assets/font_ef4cd249adfdd78e85718937.woff2')format("woff");}.ff1e4_c00001{font-family:ff1e4_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e5_c00001;src:url('chunks/assets/font_506741f2d0caa78c5f01d02e.woff2')format("woff");}.ff1e5_c00001{font-family:ff1e5_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e6_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1e6_c00001{font-family:ff1e6_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e7_c00001;src:url('chunks/assets/font_3d9ece1159e16cd4775dafd8.woff2')format("woff");}.ff1e7_c00001{font-family:ff1e7_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e8_c00001;src:url('chunks/assets/font_352b36bfeaae73bcdfa69e36.woff2')format("woff");}.ff1e8_c00001{font-family:ff1e8_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e9_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff1e9_c00001{font-family:ff1e9_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ea_c00001;src:url('chunks/assets/font_7ee887bb209dd728c068ea3c.woff2')format("woff");}.ff1ea_c00001{font-family:ff1ea_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1eb_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1eb_c00001{font-family:ff1eb_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ec_c00001;src:url('chunks/assets/font_c2a3c417ef404c82845ab683.woff2')format("woff");}.ff1ec_c00001{font-family:ff1ec_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ed_c00001;src:url('chunks/assets/font_34740f7624c26382114cb6cc.woff2')format("woff");}.ff1ed_c00001{font-family:ff1ed_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ee_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1ee_c00001{font-family:ff1ee_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ef_c00001;src:url('chunks/assets/font_45152b2b8c415302df45aac0.woff2')format("woff");}.ff1ef_c00001{font-family:ff1ef_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f0_c00001;src:url('chunks/assets/font_7bde1958fa0450370399656e.woff2')format("woff");}.ff1f0_c00001{font-family:ff1f0_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f1_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1f1_c00001{font-family:ff1f1_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f2_c00001;src:url('chunks/assets/font_37cca6d788266f326473eaac.woff2')format("woff");}.ff1f2_c00001{font-family:ff1f2_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f3_c00001;src:url('chunks/assets/font_91b6e4bd3d1eabebdf08c968.woff2')format("woff");}.ff1f3_c00001{font-family:ff1f3_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f4_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1f4_c00001{font-family:ff1f4_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f5_c00001;src:url('chunks/assets/font_6bfac0b93aba2babecacfa27.woff2')format("woff");}.ff1f5_c00001{font-family:ff1f5_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f6_c00001;src:url('chunks/assets/font_e6451f20f19708beb1cb2e34.woff2')format("woff");}.ff1f6_c00001{font-family:ff1f6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f7_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1f7_c00001{font-family:ff1f7_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f8_c00001;src:url('chunks/assets/font_48d89744ecaab0fade9b06b2.woff2')format("woff");}.ff1f8_c00001{font-family:ff1f8_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f9_c00001;src:url('chunks/assets/font_2ffe9fe146872b260e4c6de6.woff2')format("woff");}.ff1f9_c00001{font-family:ff1f9_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1fa_c00001;src:url('chunks/assets/font_cf83462f43105a01c2c4bef9.woff2')format("woff");}.ff1fa_c00001{font-family:ff1fa_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1fb_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1fb_c00001{font-family:ff1fb_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1fc_c00001;src:url('chunks/assets/font_c2357c5b204bdd1640d32431.woff2')format("woff");}.ff1fc_c00001{font-family:ff1fc_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1fd_c00001;src:url('chunks/assets/font_e6731ca7a7cbdac6d7d1968b.woff2')format("woff");}.ff1fd_c00001{font-family:ff1fd_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1fe_c00001;src:url('chunks/assets/font_ac3c376f936ed6971fd3d4f8.woff2')format("woff");}.ff1fe_c00001{font-family:ff1fe_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1ff_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff1ff_c00001{font-family:ff1ff_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff200_c00001;src:url('chunks/assets/font_c09b8344865fe01c07b114b8.woff2')format("woff");}.ff200_c00001{font-family:ff200_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff201_c00001;src:url('chunks/assets/font_756371e15725ac974b798f74.woff2')format("woff");}.ff201_c00001{font-family:ff201_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff202_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff202_c00001{font-family:ff202_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff203_c00001;src:url('chunks/assets/font_0465d3ae58213a0733827760.woff2')format("woff");}.ff203_c00001{font-family:ff203_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff204_c00001;src:url('chunks/assets/font_756371e15725ac974b798f74.woff2')format("woff");}.ff204_c00001{font-family:ff204_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff205_c00001;src:url('chunks/assets/font_67207f909c95cd008228e229.woff2')format("woff");}.ff205_c00001{font-family:ff205_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff206_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff206_c00001{font-family:ff206_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff207_c00001;src:url('chunks/assets/font_cf33890004f38dc7bc689aaa.woff2')format("woff");}.ff207_c00001{font-family:ff207_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff208_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff208_c00001{font-family:ff208_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff209_c00001;src:url('chunks/assets/font_7a8c754aa169de4d019e11cf.woff2')format("woff");}.ff209_c00001{font-family:ff209_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff20a_c00001{font-family:ff20a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20b_c00001;src:url('chunks/assets/font_db4db050a3afb7805bc3cabe.woff2')format("woff");}.ff20b_c00001{font-family:ff20b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff20c_c00001{font-family:ff20c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20d_c00001;src:url('chunks/assets/font_db4db050a3afb7805bc3cabe.woff2')format("woff");}.ff20d_c00001{font-family:ff20d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20e_c00001;src:url('chunks/assets/font_ede91b50235e24c18e0acd97.woff2')format("woff");}.ff20e_c00001{font-family:ff20e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20f_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff20f_c00001{font-family:ff20f_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff210_c00001;src:url('chunks/assets/font_5becf7c117eb5ec09dd2a180.woff2')format("woff");}.ff210_c00001{font-family:ff210_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff211_c00001;src:url('chunks/assets/font_92366dc8777c7481a546e88c.woff2')format("woff");}.ff211_c00001{font-family:ff211_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff212_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff212_c00001{font-family:ff212_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff213_c00001;src:url('chunks/assets/font_b0d009d9067bb23900ffc958.woff2')format("woff");}.ff213_c00001{font-family:ff213_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff214_c00001;src:url('chunks/assets/font_b1a40b599f08ec70aa7f01a4.woff2')format("woff");}.ff214_c00001{font-family:ff214_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff215_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff215_c00001{font-family:ff215_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff216_c00001;src:url('chunks/assets/font_2caa958dbb977a6ab0d8ecaa.woff2')format("woff");}.ff216_c00001{font-family:ff216_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff217_c00001;src:url('chunks/assets/font_b07094421eb2176a0e72add5.woff2')format("woff");}.ff217_c00001{font-family:ff217_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff218_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff218_c00001{font-family:ff218_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff219_c00001;src:url('chunks/assets/font_b0d009d9067bb23900ffc958.woff2')format("woff");}.ff219_c00001{font-family:ff219_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21a_c00001;src:url('chunks/assets/font_58a7a9da4fa42641398bc28f.woff2')format("woff");}.ff21a_c00001{font-family:ff21a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21b_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff21b_c00001{font-family:ff21b_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21c_c00001;src:url('chunks/assets/font_18642f69db628d2c91d0871a.woff2')format("woff");}.ff21c_c00001{font-family:ff21c_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21d_c00001;src:url('chunks/assets/font_feb5c19bba88a30b3fb3bfb8.woff2')format("woff");}.ff21d_c00001{font-family:ff21d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff21e_c00001{font-family:ff21e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21f_c00001;src:url('chunks/assets/font_cb82faacb4522f8b3a7a61ea.woff2')format("woff");}.ff21f_c00001{font-family:ff21f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff220_c00001;src:url('chunks/assets/font_abc37f6f7b63035f1257946b.woff2')format("woff");}.ff220_c00001{font-family:ff220_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff221_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff221_c00001{font-family:ff221_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff222_c00001;src:url('chunks/assets/font_18642f69db628d2c91d0871a.woff2')format("woff");}.ff222_c00001{font-family:ff222_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff223_c00001;src:url('chunks/assets/font_d8e58be3fec82bee0c73afef.woff2')format("woff");}.ff223_c00001{font-family:ff223_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff224_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff224_c00001{font-family:ff224_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff225_c00001;src:url('chunks/assets/font_308dc2952239a47b5b365aba.woff2')format("woff");}.ff225_c00001{font-family:ff225_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff226_c00001;src:url('chunks/assets/font_04998771c6c07a021ac3bdfb.woff2')format("woff");}.ff226_c00001{font-family:ff226_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff227_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff227_c00001{font-family:ff227_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff228_c00001;src:url('chunks/assets/font_b21fb0859dba416c59354ea2.woff2')format("woff");}.ff228_c00001{font-family:ff228_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff229_c00001;src:url('chunks/assets/font_6753e5822ca381b268f4e0d8.woff2')format("woff");}.ff229_c00001{font-family:ff229_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff22a_c00001{font-family:ff22a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22b_c00001;src:url('chunks/assets/font_308dc2952239a47b5b365aba.woff2')format("woff");}.ff22b_c00001{font-family:ff22b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22c_c00001;src:url('chunks/assets/font_6753e5822ca381b268f4e0d8.woff2')format("woff");}.ff22c_c00001{font-family:ff22c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22d_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff22d_c00001{font-family:ff22d_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22e_c00001;src:url('chunks/assets/font_1339b4c926155d0b1a41fa4e.woff2')format("woff");}.ff22e_c00001{font-family:ff22e_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22f_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff22f_c00001{font-family:ff22f_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff230_c00001;src:url('chunks/assets/font_c088890b8f457c8f2b269500.woff2')format("woff");}.ff230_c00001{font-family:ff230_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff231_c00001;src:url('chunks/assets/font_285560d8cb953786d574bbdd.woff2')format("woff");}.ff231_c00001{font-family:ff231_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff232_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff232_c00001{font-family:ff232_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff233_c00001;src:url('chunks/assets/font_85feac03a46a208ec5b6a5db.woff2')format("woff");}.ff233_c00001{font-family:ff233_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff234_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff234_c00001{font-family:ff234_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff235_c00001;src:url('chunks/assets/font_9d5eff5e47f5889490a498cf.woff2')format("woff");}.ff235_c00001{font-family:ff235_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff236_c00001;src:url('chunks/assets/font_285560d8cb953786d574bbdd.woff2')format("woff");}.ff236_c00001{font-family:ff236_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff237_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff237_c00001{font-family:ff237_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff238_c00001;src:url('chunks/assets/font_6be8d3741a9e12519af86e4a.woff2')format("woff");}.ff238_c00001{font-family:ff238_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff239_c00001;src:url('chunks/assets/font_0238369373ff462f7c8af34e.woff2')format("woff");}.ff239_c00001{font-family:ff239_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff23a_c00001{font-family:ff23a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23b_c00001;src:url('chunks/assets/font_9fb11920f62199202c80a204.woff2')format("woff");}.ff23b_c00001{font-family:ff23b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23c_c00001;src:url('chunks/assets/font_674f21caa4a4b6736ff72259.woff2')format("woff");}.ff23c_c00001{font-family:ff23c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23d_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff23d_c00001{font-family:ff23d_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23e_c00001;src:url('chunks/assets/font_39c526153aa1e6b2a680a0a8.woff2')format("woff");}.ff23e_c00001{font-family:ff23e_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23f_c00001;src:url('chunks/assets/font_86737bb3ed907237e2ea09b6.woff2')format("woff");}.ff23f_c00001{font-family:ff23f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff240_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff240_c00001{font-family:ff240_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff241_c00001;src:url('chunks/assets/font_da49bf7642db68a942045d0d.woff2')format("woff");}.ff241_c00001{font-family:ff241_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff242_c00001;src:url('chunks/assets/font_7e7ad23f9b1ed536f2ded810.woff2')format("woff");}.ff242_c00001{font-family:ff242_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff243_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff243_c00001{font-family:ff243_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff244_c00001;src:url('chunks/assets/font_64ab088f611d802309d2b1d2.woff2')format("woff");}.ff244_c00001{font-family:ff244_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff245_c00001;src:url('chunks/assets/font_4f8bbd17890f9161811b5e63.woff2')format("woff");}.ff245_c00001{font-family:ff245_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff246_c00001;src:url('chunks/assets/font_2403dcfd1a9f129d1616bde9.woff2')format("woff");}.ff246_c00001{font-family:ff246_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff247_c00001;src:url('chunks/assets/font_dfc4c6266c17eaf3b4826154.woff2')format("woff");}.ff247_c00001{font-family:ff247_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff248_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff248_c00001{font-family:ff248_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff249_c00001;src:url('chunks/assets/font_d64e800847fface87f9109c6.woff2')format("woff");}.ff249_c00001{font-family:ff249_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24a_c00001;src:url('chunks/assets/font_e6d69c09720331a78efe9f47.woff2')format("woff");}.ff24a_c00001{font-family:ff24a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24b_c00001;src:url('chunks/assets/font_2403dcfd1a9f129d1616bde9.woff2')format("woff");}.ff24b_c00001{font-family:ff24b_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24c_c00001;src:url('chunks/assets/font_fa5a5effa6dad5e14d59bb34.woff2')format("woff");}.ff24c_c00001{font-family:ff24c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24d_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff24d_c00001{font-family:ff24d_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24e_c00001;src:url('chunks/assets/font_acd428cbec183ac82349f1d0.woff2')format("woff");}.ff24e_c00001{font-family:ff24e_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24f_c00001;src:url('chunks/assets/font_824ec55d2acf0c4df17f8bb6.woff2')format("woff");}.ff24f_c00001{font-family:ff24f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff250_c00001;src:url('chunks/assets/font_df6b158608de9ce1214230aa.woff2')format("woff");}.ff250_c00001{font-family:ff250_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff251_c00001;src:url('chunks/assets/font_aef468c8146a56f118153337.woff2')format("woff");}.ff251_c00001{font-family:ff251_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff252_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff252_c00001{font-family:ff252_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff253_c00001;src:url('chunks/assets/font_b3f725b092ab5dbd329c74cb.woff2')format("woff");}.ff253_c00001{font-family:ff253_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff254_c00001;src:url('chunks/assets/font_72e2359530dc524dec9fa5ca.woff2')format("woff");}.ff254_c00001{font-family:ff254_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff255_c00001;src:url('chunks/assets/font_d0fcd46a52345758d8d7ab88.woff2')format("woff");}.ff255_c00001{font-family:ff255_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff256_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff256_c00001{font-family:ff256_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff257_c00001;src:url('chunks/assets/font_fa61c9e7fa2b3ea1c7d326d1.woff2')format("woff");}.ff257_c00001{font-family:ff257_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff258_c00001;src:url('chunks/assets/font_6901b56641672ff0579a13a7.woff2')format("woff");}.ff258_c00001{font-family:ff258_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff259_c00001;src:url('chunks/assets/font_3ff08a25cd8c15ae953324ea.woff2')format("woff");}.ff259_c00001{font-family:ff259_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff25a_c00001{font-family:ff25a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25b_c00001;src:url('chunks/assets/font_1754d1d977ba8be47f918bb2.woff2')format("woff");}.ff25b_c00001{font-family:ff25b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25c_c00001;src:url('chunks/assets/font_9f2eed7dd136a2a118d78754.woff2')format("woff");}.ff25c_c00001{font-family:ff25c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25d_c00001;src:url('chunks/assets/font_b52ab127adfb0b4d659a3d84.woff2')format("woff");}.ff25d_c00001{font-family:ff25d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff25e_c00001{font-family:ff25e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25f_c00001;src:url('chunks/assets/font_086203d339fae6cde4484fd4.woff2')format("woff");}.ff25f_c00001{font-family:ff25f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff260_c00001;src:url('chunks/assets/font_747536a5eaba54055497d58a.woff2')format("woff");}.ff260_c00001{font-family:ff260_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff261_c00001;src:url('chunks/assets/font_996156828bf7db1143c974ee.woff2')format("woff");}.ff261_c00001{font-family:ff261_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff262_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff262_c00001{font-family:ff262_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff263_c00001;src:url('chunks/assets/font_462fe731dbd4943e68b1db9f.woff2')format("woff");}.ff263_c00001{font-family:ff263_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff264_c00001;src:url('chunks/assets/font_6d310bdff200580ef3286dc0.woff2')format("woff");}.ff264_c00001{font-family:ff264_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff265_c00001;src:url('chunks/assets/font_c655fb792898b834d1216980.woff2')format("woff");}.ff265_c00001{font-family:ff265_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff266_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff266_c00001{font-family:ff266_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff267_c00001;src:url('chunks/assets/font_c2699611898a315b53ab29ec.woff2')format("woff");}.ff267_c00001{font-family:ff267_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff268_c00001;src:url('chunks/assets/font_37a82009b66cfff758b6b5fb.woff2')format("woff");}.ff268_c00001{font-family:ff268_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff269_c00001;src:url('chunks/assets/font_bed550195b3219f1d09e5006.woff2')format("woff");}.ff269_c00001{font-family:ff269_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff26a_c00001{font-family:ff26a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26b_c00001;src:url('chunks/assets/font_071d087b361efa3980c0ed9d.woff2')format("woff");}.ff26b_c00001{font-family:ff26b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26c_c00001;src:url('chunks/assets/font_0bbb076b4f102449e032ef9f.woff2')format("woff");}.ff26c_c00001{font-family:ff26c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26d_c00001;src:url('chunks/assets/font_20fd47ed62f6ddb411d48cda.woff2')format("woff");}.ff26d_c00001{font-family:ff26d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff26e_c00001{font-family:ff26e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26f_c00001;src:url('chunks/assets/font_2431ae018680aac698f19c96.woff2')format("woff");}.ff26f_c00001{font-family:ff26f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff270_c00001;src:url('chunks/assets/font_d66f0b12cec433c73dbd530a.woff2')format("woff");}.ff270_c00001{font-family:ff270_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff271_c00001;src:url('chunks/assets/font_ebc7af032a66db9ed16accf6.woff2')format("woff");}.ff271_c00001{font-family:ff271_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff272_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff272_c00001{font-family:ff272_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff273_c00001;src:url('chunks/assets/font_1f59edd94768e7437c4e183a.woff2')format("woff");}.ff273_c00001{font-family:ff273_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff274_c00001;src:url('chunks/assets/font_69ddebf4eed13093e1a7619a.woff2')format("woff");}.ff274_c00001{font-family:ff274_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff275_c00001;src:url('chunks/assets/font_ebc7af032a66db9ed16accf6.woff2')format("woff");}.ff275_c00001{font-family:ff275_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff276_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff276_c00001{font-family:ff276_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff277_c00001;src:url('chunks/assets/font_6e09bbf18a0b910817875b1f.woff2')format("woff");}.ff277_c00001{font-family:ff277_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff278_c00001;src:url('chunks/assets/font_2d4bfbe9d6e90a51d9e9f283.woff2')format("woff");}.ff278_c00001{font-family:ff278_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff279_c00001;src:url('chunks/assets/font_21e130b5b7ff08bebe24e275.woff2')format("woff");}.ff279_c00001{font-family:ff279_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff27a_c00001{font-family:ff27a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27b_c00001;src:url('chunks/assets/font_9ddfc047a72c021d3f4ddc53.woff2')format("woff");}.ff27b_c00001{font-family:ff27b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27c_c00001;src:url('chunks/assets/font_2d4bfbe9d6e90a51d9e9f283.woff2')format("woff");}.ff27c_c00001{font-family:ff27c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27d_c00001;src:url('chunks/assets/font_03a5fa8bbf1b0acc1dd58f6a.woff2')format("woff");}.ff27d_c00001{font-family:ff27d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff27e_c00001{font-family:ff27e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27f_c00001;src:url('chunks/assets/font_8cb0f2e5f91b576f6cf04ce7.woff2')format("woff");}.ff27f_c00001{font-family:ff27f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff280_c00001;src:url('chunks/assets/font_72917140aaa6cbeb0c51e228.woff2')format("woff");}.ff280_c00001{font-family:ff280_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff281_c00001;src:url('chunks/assets/font_131d06c0fc5f1162425fcd5d.woff2')format("woff");}.ff281_c00001{font-family:ff281_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff282_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff282_c00001{font-family:ff282_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff283_c00001;src:url('chunks/assets/font_9061dae8b8677494dcac2e2c.woff2')format("woff");}.ff283_c00001{font-family:ff283_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff284_c00001;src:url('chunks/assets/font_172daa9287498a72b385ff77.woff2')format("woff");}.ff284_c00001{font-family:ff284_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff285_c00001;src:url('chunks/assets/font_131d06c0fc5f1162425fcd5d.woff2')format("woff");}.ff285_c00001{font-family:ff285_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff286_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff286_c00001{font-family:ff286_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff287_c00001;src:url('chunks/assets/font_7a0933a544dd7cc8b49d11e0.woff2')format("woff");}.ff287_c00001{font-family:ff287_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff288_c00001;src:url('chunks/assets/font_bf5972385b633dfa3d5f13fc.woff2')format("woff");}.ff288_c00001{font-family:ff288_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff289_c00001;src:url('chunks/assets/font_ea92a1f1417231d1fe5db420.woff2')format("woff");}.ff289_c00001{font-family:ff289_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28a_c00001;src:url('chunks/assets/font_9954bc4155761acaa4754e82.woff2')format("woff");}.ff28a_c00001{font-family:ff28a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28b_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff28b_c00001{font-family:ff28b_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28c_c00001;src:url('chunks/assets/font_6be25bc029b2ef9a244d8a8f.woff2')format("woff");}.ff28c_c00001{font-family:ff28c_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28d_c00001;src:url('chunks/assets/font_bf5972385b633dfa3d5f13fc.woff2')format("woff");}.ff28d_c00001{font-family:ff28d_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28e_c00001;src:url('chunks/assets/font_72bdec5602851be31e988a45.woff2')format("woff");}.ff28e_c00001{font-family:ff28e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28f_c00001;src:url('chunks/assets/font_4f5029e90dba8b134638a078.woff2')format("woff");}.ff28f_c00001{font-family:ff28f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff290_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff290_c00001{font-family:ff290_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff291_c00001;src:url('chunks/assets/font_8cd4010aa983880e1dbbed44.woff2')format("woff");}.ff291_c00001{font-family:ff291_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff292_c00001;src:url('chunks/assets/font_6585a105635f1ce9c79dd33d.woff2')format("woff");}.ff292_c00001{font-family:ff292_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff293_c00001;src:url('chunks/assets/font_0372a19a5ae11437a9a9df71.woff2')format("woff");}.ff293_c00001{font-family:ff293_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff294_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff294_c00001{font-family:ff294_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff295_c00001;src:url('chunks/assets/font_c8c0b576929dea665ee53568.woff2')format("woff");}.ff295_c00001{font-family:ff295_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff296_c00001;src:url('chunks/assets/font_fb2acbdc8ec257fb82863119.woff2')format("woff");}.ff296_c00001{font-family:ff296_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff297_c00001;src:url('chunks/assets/font_199e2b8ede7d205f5e86b0c0.woff2')format("woff");}.ff297_c00001{font-family:ff297_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff298_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff298_c00001{font-family:ff298_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff299_c00001;src:url('chunks/assets/font_322ef38f722d31c09b7ee470.woff2')format("woff");}.ff299_c00001{font-family:ff299_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29a_c00001;src:url('chunks/assets/font_68843e1c44a621f413374b73.woff2')format("woff");}.ff29a_c00001{font-family:ff29a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29b_c00001;src:url('chunks/assets/font_e975e8d37e6c894a70086d14.woff2')format("woff");}.ff29b_c00001{font-family:ff29b_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff29c_c00001{font-family:ff29c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29d_c00001;src:url('chunks/assets/font_12d75ed817132b79280a62ea.woff2')format("woff");}.ff29d_c00001{font-family:ff29d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29e_c00001;src:url('chunks/assets/font_c2575af9df191f713b511f13.woff2')format("woff");}.ff29e_c00001{font-family:ff29e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29f_c00001;src:url('chunks/assets/font_e5506db71cdb30d61c5f388d.woff2')format("woff");}.ff29f_c00001{font-family:ff29f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a0_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2a0_c00001{font-family:ff2a0_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a1_c00001;src:url('chunks/assets/font_61812d7bb7336a0303f4eead.woff2')format("woff");}.ff2a1_c00001{font-family:ff2a1_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a2_c00001;src:url('chunks/assets/font_f7963cb99d1be949d0632da7.woff2')format("woff");}.ff2a2_c00001{font-family:ff2a2_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a3_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2a3_c00001{font-family:ff2a3_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a4_c00001;src:url('chunks/assets/font_12d75ed817132b79280a62ea.woff2')format("woff");}.ff2a4_c00001{font-family:ff2a4_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a5_c00001;src:url('chunks/assets/font_b50cfadc449cafbb5ca87d9f.woff2')format("woff");}.ff2a5_c00001{font-family:ff2a5_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a6_c00001;src:url('chunks/assets/font_a1478af09e15da7fe445d4a2.woff2')format("woff");}.ff2a6_c00001{font-family:ff2a6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a7_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2a7_c00001{font-family:ff2a7_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a8_c00001;src:url('chunks/assets/font_15e35b9d6e9243df0c58d613.woff2')format("woff");}.ff2a8_c00001{font-family:ff2a8_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a9_c00001;src:url('chunks/assets/font_c18e3e18759bd2a81593bacd.woff2')format("woff");}.ff2a9_c00001{font-family:ff2a9_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2aa_c00001;src:url('chunks/assets/font_a1478af09e15da7fe445d4a2.woff2')format("woff");}.ff2aa_c00001{font-family:ff2aa_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ab_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2ab_c00001{font-family:ff2ab_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ac_c00001;src:url('chunks/assets/font_77db26b421e3c473ecd70d8a.woff2')format("woff");}.ff2ac_c00001{font-family:ff2ac_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ad_c00001;src:url('chunks/assets/font_37e5833c72e360e9cef6d7cc.woff2')format("woff");}.ff2ad_c00001{font-family:ff2ad_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ae_c00001;src:url('chunks/assets/font_b9ee3bb1dd4dda075c9b433b.woff2')format("woff");}.ff2ae_c00001{font-family:ff2ae_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2af_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2af_c00001{font-family:ff2af_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b0_c00001;src:url('chunks/assets/font_c56a4396a51407c080b4493d.woff2')format("woff");}.ff2b0_c00001{font-family:ff2b0_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b1_c00001;src:url('chunks/assets/font_59e6d397634e32e9ce253531.woff2')format("woff");}.ff2b1_c00001{font-family:ff2b1_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b2_c00001;src:url('chunks/assets/font_d54d1b8bf32c87dac4c42d56.woff2')format("woff");}.ff2b2_c00001{font-family:ff2b2_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b3_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2b3_c00001{font-family:ff2b3_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b4_c00001;src:url('chunks/assets/font_2a32514a2d99d9d82e8a9314.woff2')format("woff");}.ff2b4_c00001{font-family:ff2b4_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b5_c00001;src:url('chunks/assets/font_4319efc974b098e6ab024427.woff2')format("woff");}.ff2b5_c00001{font-family:ff2b5_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b6_c00001;src:url('chunks/assets/font_4d27d0d711b18494490426e7.woff2')format("woff");}.ff2b6_c00001{font-family:ff2b6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b7_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2b7_c00001{font-family:ff2b7_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b8_c00001;src:url('chunks/assets/font_5bc86f2ff10a623aa2ddb2f3.woff2')format("woff");}.ff2b8_c00001{font-family:ff2b8_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b9_c00001;src:url('chunks/assets/font_520dd2632cb47b0846b05688.woff2')format("woff");}.ff2b9_c00001{font-family:ff2b9_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ba_c00001;src:url('chunks/assets/font_4d27d0d711b18494490426e7.woff2')format("woff");}.ff2ba_c00001{font-family:ff2ba_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2bb_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2bb_c00001{font-family:ff2bb_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2bc_c00001;src:url('chunks/assets/font_dc8bd0e9e25464b63d2428ee.woff2')format("woff");}.ff2bc_c00001{font-family:ff2bc_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2bd_c00001;src:url('chunks/assets/font_05362f0f28df3fb732aee31e.woff2')format("woff");}.ff2bd_c00001{font-family:ff2bd_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2be_c00001;src:url('chunks/assets/font_6c73086a042f968f19165480.woff2')format("woff");}.ff2be_c00001{font-family:ff2be_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2bf_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2bf_c00001{font-family:ff2bf_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c0_c00001;src:url('chunks/assets/font_fcec26462ba416a5ad458629.woff2')format("woff");}.ff2c0_c00001{font-family:ff2c0_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c1_c00001;src:url('chunks/assets/font_1bdd1e54f03cbce4a155865d.woff2')format("woff");}.ff2c1_c00001{font-family:ff2c1_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c2_c00001;src:url('chunks/assets/font_10a7859a0c385e15542d0a75.woff2')format("woff");}.ff2c2_c00001{font-family:ff2c2_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c3_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2c3_c00001{font-family:ff2c3_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c4_c00001;src:url('chunks/assets/font_2ab1b10d7c7536fdbb18fadf.woff2')format("woff");}.ff2c4_c00001{font-family:ff2c4_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c5_c00001;src:url('chunks/assets/font_8524f6d0f7262fd557664028.woff2')format("woff");}.ff2c5_c00001{font-family:ff2c5_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c6_c00001;src:url('chunks/assets/font_bd8ff880a9dc22c550a07af0.woff2')format("woff");}.ff2c6_c00001{font-family:ff2c6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c7_c00001;src:url('chunks/assets/font_bf5972385b633dfa3d5f13fc.woff2')format("woff");}.ff2c7_c00001{font-family:ff2c7_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c8_c00001;src:url('chunks/assets/font_3119f60c980baee9370080fe.woff2')format("woff");}.ff2c8_c00001{font-family:ff2c8_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c9_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2c9_c00001{font-family:ff2c9_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ca_c00001;src:url('chunks/assets/font_b33eff75f0bb66a18885524f.woff2')format("woff");}.ff2ca_c00001{font-family:ff2ca_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2cb_c00001;src:url('chunks/assets/font_f6fbb369302976973cc8ed16.woff2')format("woff");}.ff2cb_c00001{font-family:ff2cb_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2cc_c00001;src:url('chunks/assets/font_515a08ac6b03ca5e6cbf8e6a.woff2')format("woff");}.ff2cc_c00001{font-family:ff2cc_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2cd_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2cd_c00001{font-family:ff2cd_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ce_c00001;src:url('chunks/assets/font_11f0f85ab7e0116389c5a670.woff2')format("woff");}.ff2ce_c00001{font-family:ff2ce_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2cf_c00001;src:url('chunks/assets/font_f327e9f9f83fa9d609c658c4.woff2')format("woff");}.ff2cf_c00001{font-family:ff2cf_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d0_c00001;src:url('chunks/assets/font_fc5ac260f12265aa6171180c.woff2')format("woff");}.ff2d0_c00001{font-family:ff2d0_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d1_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2d1_c00001{font-family:ff2d1_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d2_c00001;src:url('chunks/assets/font_4a7024269141a443e13fbb71.woff2')format("woff");}.ff2d2_c00001{font-family:ff2d2_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d3_c00001;src:url('chunks/assets/font_8062fdb33a24b4ce8fede721.woff2')format("woff");}.ff2d3_c00001{font-family:ff2d3_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d4_c00001;src:url('chunks/assets/font_b1f934cd362a13574bbe8529.woff2')format("woff");}.ff2d4_c00001{font-family:ff2d4_c00001;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d5_c00001;src:url('chunks/assets/font_4a7024269141a443e13fbb71.woff2')format("woff");}.ff2d5_c00001{font-family:ff2d5_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d6_c00001;src:url('chunks/assets/font_8062fdb33a24b4ce8fede721.woff2')format("woff");}.ff2d6_c00001{font-family:ff2d6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d7_c00001;src:url('chunks/assets/font_b1f934cd362a13574bbe8529.woff2')format("woff");}.ff2d7_c00001{font-family:ff2d7_c00001;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d8_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2d8_c00001{font-family:ff2d8_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d9_c00001;src:url('chunks/assets/font_2c385df61668268035aeebf2.woff2')format("woff");}.ff2d9_c00001{font-family:ff2d9_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2da_c00001;src:url('chunks/assets/font_d409e1fae7ee6eed3dbbe298.woff2')format("woff");}.ff2da_c00001{font-family:ff2da_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2db_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2db_c00001{font-family:ff2db_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2dc_c00001;src:url('chunks/assets/font_3db1ace5fd142cdbaec9878c.woff2')format("woff");}.ff2dc_c00001{font-family:ff2dc_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2dd_c00001;src:url('chunks/assets/font_f82218013d01313c9e30b5f1.woff2')format("woff");}.ff2dd_c00001{font-family:ff2dd_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2de_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2de_c00001{font-family:ff2de_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2df_c00001;src:url('chunks/assets/font_b712476ff10d06ecfccb947f.woff2')format("woff");}.ff2df_c00001{font-family:ff2df_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e0_c00001;src:url('chunks/assets/font_7756b5c7c98fad1d4ade78d6.woff2')format("woff");}.ff2e0_c00001{font-family:ff2e0_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e1_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2e1_c00001{font-family:ff2e1_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e2_c00001;src:url('chunks/assets/font_eaeb10fdce29e09c2bc1afe6.woff2')format("woff");}.ff2e2_c00001{font-family:ff2e2_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e3_c00001;src:url('chunks/assets/font_6ef851251ec09ab36df9ee4c.woff2')format("woff");}.ff2e3_c00001{font-family:ff2e3_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e4_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2e4_c00001{font-family:ff2e4_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e5_c00001;src:url('chunks/assets/font_b712476ff10d06ecfccb947f.woff2')format("woff");}.ff2e5_c00001{font-family:ff2e5_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e6_c00001;src:url('chunks/assets/font_2258056acae8bc6a835da55c.woff2')format("woff");}.ff2e6_c00001{font-family:ff2e6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e7_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2e7_c00001{font-family:ff2e7_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e8_c00001;src:url('chunks/assets/font_d667fe0db9fe84a1c750fc1f.woff2')format("woff");}.ff2e8_c00001{font-family:ff2e8_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e9_c00001;src:url('chunks/assets/font_8d1588a74363358509082a55.woff2')format("woff");}.ff2e9_c00001{font-family:ff2e9_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ea_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2ea_c00001{font-family:ff2ea_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2eb_c00001;src:url('chunks/assets/font_e6d12b5098332c68ad3538e7.woff2')format("woff");}.ff2eb_c00001{font-family:ff2eb_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ec_c00001;src:url('chunks/assets/font_7f2d3fb74b3a7bf3486cc9fb.woff2')format("woff");}.ff2ec_c00001{font-family:ff2ec_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ed_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2ed_c00001{font-family:ff2ed_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ee_c00001;src:url('chunks/assets/font_d667fe0db9fe84a1c750fc1f.woff2')format("woff");}.ff2ee_c00001{font-family:ff2ee_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ef_c00001;src:url('chunks/assets/font_58b08472b8448fbced9dfc50.woff2')format("woff");}.ff2ef_c00001{font-family:ff2ef_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f0_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2f0_c00001{font-family:ff2f0_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f1_c00001;src:url('chunks/assets/font_e6d12b5098332c68ad3538e7.woff2')format("woff");}.ff2f1_c00001{font-family:ff2f1_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f2_c00001;src:url('chunks/assets/font_7234196c69a9c1a526e85260.woff2')format("woff");}.ff2f2_c00001{font-family:ff2f2_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f3_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2f3_c00001{font-family:ff2f3_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f4_c00001;src:url('chunks/assets/font_2d590ed18461bea79110b304.woff2')format("woff");}.ff2f4_c00001{font-family:ff2f4_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f5_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff2f5_c00001{font-family:ff2f5_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f6_c00001;src:url('chunks/assets/font_c18a8fed6e500f2c98bd0f05.woff2')format("woff");}.ff2f6_c00001{font-family:ff2f6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f7_c00001;src:url('chunks/assets/font_560ee97f00e5daa01b3a54fe.woff2')format("woff");}.ff2f7_c00001{font-family:ff2f7_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f8_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2f8_c00001{font-family:ff2f8_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f9_c00001;src:url('chunks/assets/font_9ca353a7ff242d9c8dfb5a7b.woff2')format("woff");}.ff2f9_c00001{font-family:ff2f9_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2fa_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff2fa_c00001{font-family:ff2fa_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2fb_c00001;src:url('chunks/assets/font_48e45f864747182dbf084a56.woff2')format("woff");}.ff2fb_c00001{font-family:ff2fb_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2fc_c00001;src:url('chunks/assets/font_a12031ead3eeaedd845c0453.woff2')format("woff");}.ff2fc_c00001{font-family:ff2fc_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2fd_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff2fd_c00001{font-family:ff2fd_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2fe_c00001;src:url('chunks/assets/font_7952d53c6551e8fd631c9559.woff2')format("woff");}.ff2fe_c00001{font-family:ff2fe_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2ff_c00001;src:url('chunks/assets/font_7140d7b0ce3cf3ce1fa79dc6.woff2')format("woff");}.ff2ff_c00001{font-family:ff2ff_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff300_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff300_c00001{font-family:ff300_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff301_c00001;src:url('chunks/assets/font_fa18aa82348d297f30d72ed7.woff2')format("woff");}.ff301_c00001{font-family:ff301_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff302_c00001;src:url('chunks/assets/font_3cc8c5e0455d7dfbc58a94ee.woff2')format("woff");}.ff302_c00001{font-family:ff302_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff303_c00001;src:url('chunks/assets/font_9fe7d89edbfd914d1e0ec172.woff2')format("woff");}.ff303_c00001{font-family:ff303_c00001;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff304_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff304_c00001{font-family:ff304_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff305_c00001;src:url('chunks/assets/font_82e126ebe424157dd4001ff9.woff2')format("woff");}.ff305_c00001{font-family:ff305_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff306_c00001;src:url('chunks/assets/font_17c1621d16c751fb55b7cdac.woff2')format("woff");}.ff306_c00001{font-family:ff306_c00001;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff307_c00001;src:url('chunks/assets/font_948783369b7c6b112cf61577.woff2')format("woff");}.ff307_c00001{font-family:ff307_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff308_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff308_c00001{font-family:ff308_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff309_c00001;src:url('chunks/assets/font_d9b4d49db2508967739e4cc5.woff2')format("woff");}.ff309_c00001{font-family:ff309_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30a_c00001;src:url('chunks/assets/font_17c1621d16c751fb55b7cdac.woff2')format("woff");}.ff30a_c00001{font-family:ff30a_c00001;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30b_c00001;src:url('chunks/assets/font_948783369b7c6b112cf61577.woff2')format("woff");}.ff30b_c00001{font-family:ff30b_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30c_c00001;src:url('chunks/assets/font_dd882a50b2ccbb0d0ef9103d.woff2')format("woff");}.ff30c_c00001{font-family:ff30c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30d_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff30d_c00001{font-family:ff30d_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30e_c00001;src:url('chunks/assets/font_d59ebf72e8b5a03c237662a4.woff2')format("woff");}.ff30e_c00001{font-family:ff30e_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30f_c00001;src:url('chunks/assets/font_7139fd39758a8b17d18b71cb.woff2')format("woff");}.ff30f_c00001{font-family:ff30f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff310_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff310_c00001{font-family:ff310_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff311_c00001;src:url('chunks/assets/font_0b62daf5104447f92032e689.woff2')format("woff");}.ff311_c00001{font-family:ff311_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff312_c00001;src:url('chunks/assets/font_a1d86b78bbffc83fe65172c4.woff2')format("woff");}.ff312_c00001{font-family:ff312_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff313_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff313_c00001{font-family:ff313_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff314_c00001;src:url('chunks/assets/font_d59ebf72e8b5a03c237662a4.woff2')format("woff");}.ff314_c00001{font-family:ff314_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff315_c00001;src:url('chunks/assets/font_5725311348420988973b7c2a.woff2')format("woff");}.ff315_c00001{font-family:ff315_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff316_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff316_c00001{font-family:ff316_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff317_c00001;src:url('chunks/assets/font_2525889b02624b7b6a684147.woff2')format("woff");}.ff317_c00001{font-family:ff317_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff318_c00001;src:url('chunks/assets/font_6393add908e74c74cd307fcd.woff2')format("woff");}.ff318_c00001{font-family:ff318_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff319_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff319_c00001{font-family:ff319_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31a_c00001;src:url('chunks/assets/font_b7021f8fd5d9e3dc733895f3.woff2')format("woff");}.ff31a_c00001{font-family:ff31a_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31b_c00001;src:url('chunks/assets/font_bc7b4336446d306d9879de29.woff2')format("woff");}.ff31b_c00001{font-family:ff31b_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff31c_c00001{font-family:ff31c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31d_c00001;src:url('chunks/assets/font_2525889b02624b7b6a684147.woff2')format("woff");}.ff31d_c00001{font-family:ff31d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31e_c00001;src:url('chunks/assets/font_173ead6c2b6338e7b16eb947.woff2')format("woff");}.ff31e_c00001{font-family:ff31e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31f_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff31f_c00001{font-family:ff31f_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff320_c00001;src:url('chunks/assets/font_bbbd6265850582bc993f3833.woff2')format("woff");}.ff320_c00001{font-family:ff320_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff321_c00001;src:url('chunks/assets/font_3f19e9a3bdfee4728c7a2c37.woff2')format("woff");}.ff321_c00001{font-family:ff321_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff322_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff322_c00001{font-family:ff322_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff323_c00001;src:url('chunks/assets/font_59274a58f03af09e7d043f20.woff2')format("woff");}.ff323_c00001{font-family:ff323_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff324_c00001;src:url('chunks/assets/font_b7b8b9f8b7cede97582800a6.woff2')format("woff");}.ff324_c00001{font-family:ff324_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff325_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff325_c00001{font-family:ff325_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff326_c00001;src:url('chunks/assets/font_050e6154e178c60356cc46a2.woff2')format("woff");}.ff326_c00001{font-family:ff326_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff327_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff327_c00001{font-family:ff327_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff328_c00001;src:url('chunks/assets/font_b00ad11316369848f0e7da51.woff2')format("woff");}.ff328_c00001{font-family:ff328_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff329_c00001;src:url('chunks/assets/font_5acf2e61f894c38c94327fbc.woff2')format("woff");}.ff329_c00001{font-family:ff329_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32a_c00001;src:url('chunks/assets/font_f55c867a8c3d70fa25a34eb1.woff2')format("woff");}.ff32a_c00001{font-family:ff32a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32b_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff32b_c00001{font-family:ff32b_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32c_c00001;src:url('chunks/assets/font_9d066faea519a525c9b5eeb8.woff2')format("woff");}.ff32c_c00001{font-family:ff32c_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32d_c00001;src:url('chunks/assets/font_3f882014252cc4d2e5f916c8.woff2')format("woff");}.ff32d_c00001{font-family:ff32d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32e_c00001;src:url('chunks/assets/font_d88151938026a6ebc0b210f4.woff2')format("woff");}.ff32e_c00001{font-family:ff32e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32f_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff32f_c00001{font-family:ff32f_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff330_c00001;src:url('chunks/assets/font_b354a15bd1b895daf4ee14b1.woff2')format("woff");}.ff330_c00001{font-family:ff330_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff331_c00001;src:url('chunks/assets/font_9d5c5ddd3d827c8186b3551d.woff2')format("woff");}.ff331_c00001{font-family:ff331_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff332_c00001;src:url('chunks/assets/font_6d0067241feaf2d0f8b15626.woff2')format("woff");}.ff332_c00001{font-family:ff332_c00001;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff333_c00001;src:url('chunks/assets/font_b354a15bd1b895daf4ee14b1.woff2')format("woff");}.ff333_c00001{font-family:ff333_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff334_c00001;src:url('chunks/assets/font_c661b26fed1d9eb407acff5c.woff2')format("woff");}.ff334_c00001{font-family:ff334_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff335_c00001;src:url('chunks/assets/font_4d85b40b198cea76dac19ac3.woff2')format("woff");}.ff335_c00001{font-family:ff335_c00001;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff336_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff336_c00001{font-family:ff336_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff337_c00001;src:url('chunks/assets/font_243c50308e744b37206110f9.woff2')format("woff");}.ff337_c00001{font-family:ff337_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff338_c00001;src:url('chunks/assets/font_aa8f84c7ea785864ae6d815c.woff2')format("woff");}.ff338_c00001{font-family:ff338_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff339_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff339_c00001{font-family:ff339_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33a_c00001;src:url('chunks/assets/font_300c360f7f44e3c087987a79.woff2')format("woff");}.ff33a_c00001{font-family:ff33a_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33b_c00001;src:url('chunks/assets/font_57acc848073ab4b2febf585a.woff2')format("woff");}.ff33b_c00001{font-family:ff33b_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff33c_c00001{font-family:ff33c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33d_c00001;src:url('chunks/assets/font_3688a9e4c009d3cf8740021e.woff2')format("woff");}.ff33d_c00001{font-family:ff33d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33e_c00001;src:url('chunks/assets/font_2e1fa95134e7090bb827d3c2.woff2')format("woff");}.ff33e_c00001{font-family:ff33e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33f_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff33f_c00001{font-family:ff33f_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff340_c00001;src:url('chunks/assets/font_89481922588a2bd47d639831.woff2')format("woff");}.ff340_c00001{font-family:ff340_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff341_c00001;src:url('chunks/assets/font_8cc543a10aa98eece1f0434d.woff2')format("woff");}.ff341_c00001{font-family:ff341_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff342_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff342_c00001{font-family:ff342_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff343_c00001;src:url('chunks/assets/font_e13ad01cddb75d94decb8cac.woff2')format("woff");}.ff343_c00001{font-family:ff343_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff344_c00001;src:url('chunks/assets/font_39a03cac688f9db1343601a4.woff2')format("woff");}.ff344_c00001{font-family:ff344_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff345_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff345_c00001{font-family:ff345_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff346_c00001;src:url('chunks/assets/font_89481922588a2bd47d639831.woff2')format("woff");}.ff346_c00001{font-family:ff346_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff347_c00001;src:url('chunks/assets/font_740158b4bae1e220dd21ffa5.woff2')format("woff");}.ff347_c00001{font-family:ff347_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff348_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff348_c00001{font-family:ff348_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff349_c00001;src:url('chunks/assets/font_6afea11ff7eb202623818781.woff2')format("woff");}.ff349_c00001{font-family:ff349_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34a_c00001;src:url('chunks/assets/font_7b2e8af8d3915e291f8ddff5.woff2')format("woff");}.ff34a_c00001{font-family:ff34a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34b_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff34b_c00001{font-family:ff34b_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34c_c00001;src:url('chunks/assets/font_c20b47139842356db15f682c.woff2')format("woff");}.ff34c_c00001{font-family:ff34c_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34d_c00001;src:url('chunks/assets/font_9332293905a0b72914a411f1.woff2')format("woff");}.ff34d_c00001{font-family:ff34d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff34e_c00001{font-family:ff34e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34f_c00001;src:url('chunks/assets/font_6afea11ff7eb202623818781.woff2')format("woff");}.ff34f_c00001{font-family:ff34f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff350_c00001;src:url('chunks/assets/font_83262b92d97288fd3a24f915.woff2')format("woff");}.ff350_c00001{font-family:ff350_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff351_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff351_c00001{font-family:ff351_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff352_c00001;src:url('chunks/assets/font_abb7b833491e236581768916.woff2')format("woff");}.ff352_c00001{font-family:ff352_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff353_c00001;src:url('chunks/assets/font_daf43a34b7ed4a20c5c7cc99.woff2')format("woff");}.ff353_c00001{font-family:ff353_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff354_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff354_c00001{font-family:ff354_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff355_c00001;src:url('chunks/assets/font_0ef4f0a1a1b47eb3fa9f9289.woff2')format("woff");}.ff355_c00001{font-family:ff355_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff356_c00001;src:url('chunks/assets/font_52d4f3780b20c2dea1c35227.woff2')format("woff");}.ff356_c00001{font-family:ff356_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff357_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff357_c00001{font-family:ff357_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff358_c00001;src:url('chunks/assets/font_abb7b833491e236581768916.woff2')format("woff");}.ff358_c00001{font-family:ff358_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff359_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff359_c00001{font-family:ff359_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35a_c00001;src:url('chunks/assets/font_03bf7cea78655b18bef71bc7.woff2')format("woff");}.ff35a_c00001{font-family:ff35a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35b_c00001;src:url('chunks/assets/font_90e0d4b8f2c0d1c9f3681edb.woff2')format("woff");}.ff35b_c00001{font-family:ff35b_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff35c_c00001{font-family:ff35c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35d_c00001;src:url('chunks/assets/font_703c9f132bb85b527a9d376a.woff2')format("woff");}.ff35d_c00001{font-family:ff35d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35e_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff35e_c00001{font-family:ff35e_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35f_c00001;src:url('chunks/assets/font_437a46e9aabd906be047e750.woff2')format("woff");}.ff35f_c00001{font-family:ff35f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff360_c00001;src:url('chunks/assets/font_b084709263f4251093f81359.woff2')format("woff");}.ff360_c00001{font-family:ff360_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff361_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff361_c00001{font-family:ff361_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff362_c00001;src:url('chunks/assets/font_af687ca0cc0e38cc92391b6f.woff2')format("woff");}.ff362_c00001{font-family:ff362_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff363_c00001;src:url('chunks/assets/font_67b2eb952648644121a5f057.woff2')format("woff");}.ff363_c00001{font-family:ff363_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff364_c00001;src:url('chunks/assets/font_7c9a35168424690685b60204.woff2')format("woff");}.ff364_c00001{font-family:ff364_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff365_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff365_c00001{font-family:ff365_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff366_c00001;src:url('chunks/assets/font_2133adc4910399670d502af6.woff2')format("woff");}.ff366_c00001{font-family:ff366_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff367_c00001;src:url('chunks/assets/font_0d08c7b0ed703f421a1820e7.woff2')format("woff");}.ff367_c00001{font-family:ff367_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff368_c00001;src:url('chunks/assets/font_6eceb2edd52172c455e6ce02.woff2')format("woff");}.ff368_c00001{font-family:ff368_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff369_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff369_c00001{font-family:ff369_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36a_c00001;src:url('chunks/assets/font_7f9625773de29b8d9c7fa44b.woff2')format("woff");}.ff36a_c00001{font-family:ff36a_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36b_c00001;src:url('chunks/assets/font_661c7721a9b98b723b5feebe.woff2')format("woff");}.ff36b_c00001{font-family:ff36b_c00001;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36c_c00001;src:url('chunks/assets/font_b4e0fe724767cbb35f03ee46.woff2')format("woff");}.ff36c_c00001{font-family:ff36c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36d_c00001;src:url('chunks/assets/font_b0347ec82f5fce1c98d80333.woff2')format("woff");}.ff36d_c00001{font-family:ff36d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff36e_c00001{font-family:ff36e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36f_c00001;src:url('chunks/assets/font_97ae06707365671d0982604f.woff2')format("woff");}.ff36f_c00001{font-family:ff36f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff370_c00001;src:url('chunks/assets/font_1d942463f99988f5f3abead0.woff2')format("woff");}.ff370_c00001{font-family:ff370_c00001;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff371_c00001;src:url('chunks/assets/font_5ae42f84924462a5d8e60379.woff2')format("woff");}.ff371_c00001{font-family:ff371_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff372_c00001;src:url('chunks/assets/font_e5055ef7b17ab23c80954845.woff2')format("woff");}.ff372_c00001{font-family:ff372_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff373_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff373_c00001{font-family:ff373_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff374_c00001;src:url('chunks/assets/font_10683760cf906703b6300cb3.woff2')format("woff");}.ff374_c00001{font-family:ff374_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff375_c00001;src:url('chunks/assets/font_36db47cce01bc0964c468a46.woff2')format("woff");}.ff375_c00001{font-family:ff375_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff376_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff376_c00001{font-family:ff376_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff377_c00001;src:url('chunks/assets/font_875801fa1aa73e50345bfdac.woff2')format("woff");}.ff377_c00001{font-family:ff377_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff378_c00001;src:url('chunks/assets/font_9b370ebffdd923cbc3fbe4d2.woff2')format("woff");}.ff378_c00001{font-family:ff378_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff379_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff379_c00001{font-family:ff379_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37a_c00001;src:url('chunks/assets/font_8acfda093a2f6efcb20c9ae1.woff2')format("woff");}.ff37a_c00001{font-family:ff37a_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37b_c00001;src:url('chunks/assets/font_3d2488ee3b814e4d61ab4a1e.woff2')format("woff");}.ff37b_c00001{font-family:ff37b_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff37c_c00001{font-family:ff37c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37d_c00001;src:url('chunks/assets/font_875801fa1aa73e50345bfdac.woff2')format("woff");}.ff37d_c00001{font-family:ff37d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37e_c00001;src:url('chunks/assets/font_af13a75adfec5b82936687a9.woff2')format("woff");}.ff37e_c00001{font-family:ff37e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37f_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff37f_c00001{font-family:ff37f_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff380_c00001;src:url('chunks/assets/font_8acfda093a2f6efcb20c9ae1.woff2')format("woff");}.ff380_c00001{font-family:ff380_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff381_c00001;src:url('chunks/assets/font_d86a2297a5ed80a6ad9c3897.woff2')format("woff");}.ff381_c00001{font-family:ff381_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff382_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff382_c00001{font-family:ff382_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff383_c00001;src:url('chunks/assets/font_ea8d31211ab642449e9ee02d.woff2')format("woff");}.ff383_c00001{font-family:ff383_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff384_c00001;src:url('chunks/assets/font_f2252cc6e31f4f08a6c89909.woff2')format("woff");}.ff384_c00001{font-family:ff384_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff385_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff385_c00001{font-family:ff385_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff386_c00001;src:url('chunks/assets/font_579dbaeb2e8dd854ebc0f13e.woff2')format("woff");}.ff386_c00001{font-family:ff386_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff387_c00001;src:url('chunks/assets/font_7fbc69b640675e1383fdd195.woff2')format("woff");}.ff387_c00001{font-family:ff387_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff388_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff388_c00001{font-family:ff388_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff389_c00001;src:url('chunks/assets/font_ea8d31211ab642449e9ee02d.woff2')format("woff");}.ff389_c00001{font-family:ff389_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38a_c00001;src:url('chunks/assets/font_3212ffd3e6e61d6af405cdbf.woff2')format("woff");}.ff38a_c00001{font-family:ff38a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38b_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff38b_c00001{font-family:ff38b_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38c_c00001;src:url('chunks/assets/font_c3f3e5a77a3893da022d51ac.woff2')format("woff");}.ff38c_c00001{font-family:ff38c_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38d_c00001;src:url('chunks/assets/font_44bc3880c4a32ed38d552d47.woff2')format("woff");}.ff38d_c00001{font-family:ff38d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff38e_c00001{font-family:ff38e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38f_c00001;src:url('chunks/assets/font_36e952dacf5617654c703501.woff2')format("woff");}.ff38f_c00001{font-family:ff38f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff390_c00001;src:url('chunks/assets/font_256877b25b3ea2ffb3cedc05.woff2')format("woff");}.ff390_c00001{font-family:ff390_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff391_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff391_c00001{font-family:ff391_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff392_c00001;src:url('chunks/assets/font_c3f3e5a77a3893da022d51ac.woff2')format("woff");}.ff392_c00001{font-family:ff392_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff393_c00001;src:url('chunks/assets/font_fe6654f3b3c41507025dfaa5.woff2')format("woff");}.ff393_c00001{font-family:ff393_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff394_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff394_c00001{font-family:ff394_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff395_c00001;src:url('chunks/assets/font_2fb6560583b58aa2c39df026.woff2')format("woff");}.ff395_c00001{font-family:ff395_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff396_c00001;src:url('chunks/assets/font_b2ce8d8864b970a4b17b1eeb.woff2')format("woff");}.ff396_c00001{font-family:ff396_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff397_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff397_c00001{font-family:ff397_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff398_c00001;src:url('chunks/assets/font_a6585bcc2bf3dd58a82c1bef.woff2')format("woff");}.ff398_c00001{font-family:ff398_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff399_c00001;src:url('chunks/assets/font_352101b7699a3bc5ed1613e7.woff2')format("woff");}.ff399_c00001{font-family:ff399_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff39a_c00001{font-family:ff39a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39b_c00001;src:url('chunks/assets/font_2fb6560583b58aa2c39df026.woff2')format("woff");}.ff39b_c00001{font-family:ff39b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39c_c00001;src:url('chunks/assets/font_71edc3c1ec13c0b2ea225d86.woff2')format("woff");}.ff39c_c00001{font-family:ff39c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39d_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff39d_c00001{font-family:ff39d_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39e_c00001;src:url('chunks/assets/font_9b55a1ebb46fdb4df8134ea9.woff2')format("woff");}.ff39e_c00001{font-family:ff39e_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39f_c00001;src:url('chunks/assets/font_6749b964c54de52b44fd9a42.woff2')format("woff");}.ff39f_c00001{font-family:ff39f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a0_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3a0_c00001{font-family:ff3a0_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a1_c00001;src:url('chunks/assets/font_a867369ce8aa44797a8443b9.woff2')format("woff");}.ff3a1_c00001{font-family:ff3a1_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a2_c00001;src:url('chunks/assets/font_6bafdc7904fb35654820b441.woff2')format("woff");}.ff3a2_c00001{font-family:ff3a2_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a3_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff3a3_c00001{font-family:ff3a3_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a4_c00001;src:url('chunks/assets/font_f6bcfe5d8fbf75cd669a9858.woff2')format("woff");}.ff3a4_c00001{font-family:ff3a4_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a5_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3a5_c00001{font-family:ff3a5_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a6_c00001;src:url('chunks/assets/font_ce2c9ea298d947631c410974.woff2')format("woff");}.ff3a6_c00001{font-family:ff3a6_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a7_c00001;src:url('chunks/assets/font_be7be3d76bfdd0857e1f51fa.woff2')format("woff");}.ff3a7_c00001{font-family:ff3a7_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a8_c00001;src:url('chunks/assets/font_68f5622360a18686ab3d92c7.woff2')format("woff");}.ff3a8_c00001{font-family:ff3a8_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a9_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3a9_c00001{font-family:ff3a9_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3aa_c00001;src:url('chunks/assets/font_880e42004714b7121d9603f4.woff2')format("woff");}.ff3aa_c00001{font-family:ff3aa_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3ab_c00001;src:url('chunks/assets/font_20987a19cd9aaf25febf7434.woff2')format("woff");}.ff3ab_c00001{font-family:ff3ab_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3ac_c00001;src:url('chunks/assets/font_812447340da0a64ae448cfa8.woff2')format("woff");}.ff3ac_c00001{font-family:ff3ac_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3ad_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3ad_c00001{font-family:ff3ad_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3ae_c00001;src:url('chunks/assets/font_88c10a328c5a3f1b9bdcc19e.woff2')format("woff");}.ff3ae_c00001{font-family:ff3ae_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3af_c00001;src:url('chunks/assets/font_8411750c22284afb9d08665d.woff2')format("woff");}.ff3af_c00001{font-family:ff3af_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b0_c00001;src:url('chunks/assets/font_664263457385b4cca1e768b4.woff2')format("woff");}.ff3b0_c00001{font-family:ff3b0_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b1_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3b1_c00001{font-family:ff3b1_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b2_c00001;src:url('chunks/assets/font_f44ad7ba35470995c8f6cd71.woff2')format("woff");}.ff3b2_c00001{font-family:ff3b2_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b3_c00001;src:url('chunks/assets/font_4325b10833a94bcf6e917f69.woff2')format("woff");}.ff3b3_c00001{font-family:ff3b3_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b4_c00001;src:url('chunks/assets/font_047af011f54435e9f0b58b03.woff2')format("woff");}.ff3b4_c00001{font-family:ff3b4_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b5_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3b5_c00001{font-family:ff3b5_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b6_c00001;src:url('chunks/assets/font_9ea8cb310ec94163c2605662.woff2')format("woff");}.ff3b6_c00001{font-family:ff3b6_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b7_c00001;src:url('chunks/assets/font_8e78d69f3c0bc0ac207410ca.woff2')format("woff");}.ff3b7_c00001{font-family:ff3b7_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b8_c00001;src:url('chunks/assets/font_00b96f267ed4dc1157af5fe7.woff2')format("woff");}.ff3b8_c00001{font-family:ff3b8_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b9_c00001;src:url('chunks/assets/font_6eb86da9ca11b7fc956deeb9.woff2')format("woff");}.ff3b9_c00001{font-family:ff3b9_c00001;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3ba_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3ba_c00001{font-family:ff3ba_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3bb_c00001;src:url('chunks/assets/font_c06e9edac7699f85aaaf4ba2.woff2')format("woff");}.ff3bb_c00001{font-family:ff3bb_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3bc_c00001;src:url('chunks/assets/font_770424c8c9e447b846de2bcc.woff2')format("woff");}.ff3bc_c00001{font-family:ff3bc_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3bd_c00001;src:url('chunks/assets/font_774bded3f4988615403f9291.woff2')format("woff");}.ff3bd_c00001{font-family:ff3bd_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3be_c00001;src:url('chunks/assets/font_f1818a7712eefda8458466b4.woff2')format("woff");}.ff3be_c00001{font-family:ff3be_c00001;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3bf_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3bf_c00001{font-family:ff3bf_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c0_c00001;src:url('chunks/assets/font_0c29b88196a10bdc09e71157.woff2')format("woff");}.ff3c0_c00001{font-family:ff3c0_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c1_c00001;src:url('chunks/assets/font_ba0222799105846811a96c1c.woff2')format("woff");}.ff3c1_c00001{font-family:ff3c1_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c2_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3c2_c00001{font-family:ff3c2_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c3_c00001;src:url('chunks/assets/font_8956cda29cbffecd5442f8f2.woff2')format("woff");}.ff3c3_c00001{font-family:ff3c3_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c4_c00001;src:url('chunks/assets/font_98091bfcd666aa907a5f014b.woff2')format("woff");}.ff3c4_c00001{font-family:ff3c4_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c5_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3c5_c00001{font-family:ff3c5_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c6_c00001;src:url('chunks/assets/font_3293a01a3972f9baa273a03a.woff2')format("woff");}.ff3c6_c00001{font-family:ff3c6_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c7_c00001;src:url('chunks/assets/font_e3c585f63e22ef80ebefd035.woff2')format("woff");}.ff3c7_c00001{font-family:ff3c7_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c8_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3c8_c00001{font-family:ff3c8_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c9_c00001;src:url('chunks/assets/font_8956cda29cbffecd5442f8f2.woff2')format("woff");}.ff3c9_c00001{font-family:ff3c9_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3ca_c00001;src:url('chunks/assets/font_6fa4c026408f159c98707f21.woff2')format("woff");}.ff3ca_c00001{font-family:ff3ca_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3cb_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3cb_c00001{font-family:ff3cb_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3cc_c00001;src:url('chunks/assets/font_ba3337d55e6579deb88a19f4.woff2')format("woff");}.ff3cc_c00001{font-family:ff3cc_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3cd_c00001;src:url('chunks/assets/font_193c3073f9fe2eeeeadbdf6e.woff2')format("woff");}.ff3cd_c00001{font-family:ff3cd_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3ce_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3ce_c00001{font-family:ff3ce_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3cf_c00001;src:url('chunks/assets/font_8eb8d3a7f6eb4ee7f1b1c473.woff2')format("woff");}.ff3cf_c00001{font-family:ff3cf_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d0_c00001;src:url('chunks/assets/font_a99dd2316606d9539879d33d.woff2')format("woff");}.ff3d0_c00001{font-family:ff3d0_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d1_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3d1_c00001{font-family:ff3d1_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d2_c00001;src:url('chunks/assets/font_ba3337d55e6579deb88a19f4.woff2')format("woff");}.ff3d2_c00001{font-family:ff3d2_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d3_c00001;src:url('chunks/assets/font_46fd4d3cd810f27f96c7874f.woff2')format("woff");}.ff3d3_c00001{font-family:ff3d3_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d4_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3d4_c00001{font-family:ff3d4_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d5_c00001;src:url('chunks/assets/font_8eb8d3a7f6eb4ee7f1b1c473.woff2')format("woff");}.ff3d5_c00001{font-family:ff3d5_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d6_c00001;src:url('chunks/assets/font_604b8d9e73a3c95f7ff69ed8.woff2')format("woff");}.ff3d6_c00001{font-family:ff3d6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d7_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3d7_c00001{font-family:ff3d7_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d8_c00001;src:url('chunks/assets/font_1eca723cde4a37a8a7eed8c4.woff2')format("woff");}.ff3d8_c00001{font-family:ff3d8_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d9_c00001;src:url('chunks/assets/font_a99c668a248c6371ce89bdcc.woff2')format("woff");}.ff3d9_c00001{font-family:ff3d9_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3da_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3da_c00001{font-family:ff3da_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3db_c00001;src:url('chunks/assets/font_f125a134e844ce8e21b027cc.woff2')format("woff");}.ff3db_c00001{font-family:ff3db_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3dc_c00001;src:url('chunks/assets/font_063d9ec9c2d98434aad398b2.woff2')format("woff");}.ff3dc_c00001{font-family:ff3dc_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3dd_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff3dd_c00001{font-family:ff3dd_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3de_c00001;src:url('chunks/assets/font_426e7c61f5b536bf09f7d7f9.woff2')format("woff");}.ff3de_c00001{font-family:ff3de_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3df_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3df_c00001{font-family:ff3df_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e0_c00001;src:url('chunks/assets/font_e1a64bf02c7ad9ace717eb77.woff2')format("woff");}.ff3e0_c00001{font-family:ff3e0_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e1_c00001;src:url('chunks/assets/font_cd09847a62a06b8e19fd475b.woff2')format("woff");}.ff3e1_c00001{font-family:ff3e1_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e2_c00001;src:url('chunks/assets/font_d7137105aca6d5f5ad7b7dc3.woff2')format("woff");}.ff3e2_c00001{font-family:ff3e2_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e3_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3e3_c00001{font-family:ff3e3_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e4_c00001;src:url('chunks/assets/font_24ecbb39eabc5137b2e2dc3a.woff2')format("woff");}.ff3e4_c00001{font-family:ff3e4_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e5_c00001;src:url('chunks/assets/font_195bd1e73f7fecfb7878d147.woff2')format("woff");}.ff3e5_c00001{font-family:ff3e5_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e6_c00001;src:url('chunks/assets/font_ae0611772d20c9b8fd9bcf09.woff2')format("woff");}.ff3e6_c00001{font-family:ff3e6_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e7_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3e7_c00001{font-family:ff3e7_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e8_c00001;src:url('chunks/assets/font_22cf9c9040493a87a1e205f1.woff2')format("woff");}.ff3e8_c00001{font-family:ff3e8_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e9_c00001;src:url('chunks/assets/font_f69a8dcbd167b97181f94556.woff2')format("woff");}.ff3e9_c00001{font-family:ff3e9_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3ea_c00001;src:url('chunks/assets/font_934a9f84362703479d29dd9e.woff2')format("woff");}.ff3ea_c00001{font-family:ff3ea_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3eb_c00001;src:url('chunks/assets/font_8aa3223f11591623b0c87e25.woff2')format("woff");}.ff3eb_c00001{font-family:ff3eb_c00001;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3ec_c00001;src:url('chunks/assets/font_d2de315700a448bab6d89295.woff2')format("woff");}.ff3ec_c00001{font-family:ff3ec_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3ed_c00001;src:url('chunks/assets/font_7bf1124dd13554b88536aa77.woff2')format("woff");}.ff3ed_c00001{font-family:ff3ed_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3ee_c00001;src:url('chunks/assets/font_cefd894144431d63ea31184e.woff2')format("woff");}.ff3ee_c00001{font-family:ff3ee_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3ef_c00001;src:url('chunks/assets/font_089012a7b3dd9bfa8777d62f.woff2')format("woff");}.ff3ef_c00001{font-family:ff3ef_c00001;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f0_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3f0_c00001{font-family:ff3f0_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f1_c00001;src:url('chunks/assets/font_85a9945a4b4e0d06444f47f8.woff2')format("woff");}.ff3f1_c00001{font-family:ff3f1_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f2_c00001;src:url('chunks/assets/font_533fc40931ff3cb5bef4a474.woff2')format("woff");}.ff3f2_c00001{font-family:ff3f2_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f3_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3f3_c00001{font-family:ff3f3_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f4_c00001;src:url('chunks/assets/font_de61eee52aeee0ddc2a0c8c7.woff2')format("woff");}.ff3f4_c00001{font-family:ff3f4_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f5_c00001;src:url('chunks/assets/font_4ce36a5e9f9b6a29fa7193cf.woff2')format("woff");}.ff3f5_c00001{font-family:ff3f5_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f6_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3f6_c00001{font-family:ff3f6_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f7_c00001;src:url('chunks/assets/font_d46478f46a67bad586b42772.woff2')format("woff");}.ff3f7_c00001{font-family:ff3f7_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f8_c00001;src:url('chunks/assets/font_a0ca7edff46b8e7cd0c140cd.woff2')format("woff");}.ff3f8_c00001{font-family:ff3f8_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f9_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3f9_c00001{font-family:ff3f9_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3fa_c00001;src:url('chunks/assets/font_de61eee52aeee0ddc2a0c8c7.woff2')format("woff");}.ff3fa_c00001{font-family:ff3fa_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3fb_c00001;src:url('chunks/assets/font_feedf8794335ef699adeb5a1.woff2')format("woff");}.ff3fb_c00001{font-family:ff3fb_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3fc_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3fc_c00001{font-family:ff3fc_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3fd_c00001;src:url('chunks/assets/font_d46478f46a67bad586b42772.woff2')format("woff");}.ff3fd_c00001{font-family:ff3fd_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3fe_c00001;src:url('chunks/assets/font_532981a527d31bf581da8023.woff2')format("woff");}.ff3fe_c00001{font-family:ff3fe_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3ff_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff3ff_c00001{font-family:ff3ff_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff400_c00001;src:url('chunks/assets/font_85d92db2dada7e78abb73913.woff2')format("woff");}.ff400_c00001{font-family:ff400_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff401_c00001;src:url('chunks/assets/font_1714f51a9058393da7ded110.woff2')format("woff");}.ff401_c00001{font-family:ff401_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff402_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff402_c00001{font-family:ff402_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff403_c00001;src:url('chunks/assets/font_c930785639f944eb80d0feea.woff2')format("woff");}.ff403_c00001{font-family:ff403_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff404_c00001;src:url('chunks/assets/font_0beab71d0e89caf3d0b0c5fb.woff2')format("woff");}.ff404_c00001{font-family:ff404_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff405_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff405_c00001{font-family:ff405_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff406_c00001;src:url('chunks/assets/font_85d92db2dada7e78abb73913.woff2')format("woff");}.ff406_c00001{font-family:ff406_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff407_c00001;src:url('chunks/assets/font_441dbfe087647b07f688d4b3.woff2')format("woff");}.ff407_c00001{font-family:ff407_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff408_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff408_c00001{font-family:ff408_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff409_c00001;src:url('chunks/assets/font_82a8ed0af2d5e923168e560b.woff2')format("woff");}.ff409_c00001{font-family:ff409_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40a_c00001;src:url('chunks/assets/font_354328501eb444ed4dc88c83.woff2')format("woff");}.ff40a_c00001{font-family:ff40a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40b_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff40b_c00001{font-family:ff40b_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40c_c00001;src:url('chunks/assets/font_879bab16af1d98c6c36f4f29.woff2')format("woff");}.ff40c_c00001{font-family:ff40c_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40d_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff40d_c00001{font-family:ff40d_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40e_c00001;src:url('chunks/assets/font_d67a7852b09d75a405ed928a.woff2')format("woff");}.ff40e_c00001{font-family:ff40e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40f_c00001;src:url('chunks/assets/font_f8ec775c0fa46fd2216d7fe4.woff2')format("woff");}.ff40f_c00001{font-family:ff40f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff410_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff410_c00001{font-family:ff410_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff411_c00001;src:url('chunks/assets/font_24b67f9024a1682b1e282198.woff2')format("woff");}.ff411_c00001{font-family:ff411_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff412_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff412_c00001{font-family:ff412_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff413_c00001;src:url('chunks/assets/font_8e4b960e9ede29b3a019559e.woff2')format("woff");}.ff413_c00001{font-family:ff413_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff414_c00001;src:url('chunks/assets/font_6a16e70961dd11e093f9463c.woff2')format("woff");}.ff414_c00001{font-family:ff414_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff415_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff415_c00001{font-family:ff415_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff416_c00001;src:url('chunks/assets/font_72a34d856cecbd5244f063e8.woff2')format("woff");}.ff416_c00001{font-family:ff416_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff417_c00001;src:url('chunks/assets/font_1a096e39c632d7e9e17cde36.woff2')format("woff");}.ff417_c00001{font-family:ff417_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff418_c00001;src:url('chunks/assets/font_a24fdd549d89bf8e214e537c.woff2')format("woff");}.ff418_c00001{font-family:ff418_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff419_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff419_c00001{font-family:ff419_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41a_c00001;src:url('chunks/assets/font_20a85392173c01a07d05e38b.woff2')format("woff");}.ff41a_c00001{font-family:ff41a_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41b_c00001;src:url('chunks/assets/font_19fdabb0cf65c3d023cf8188.woff2')format("woff");}.ff41b_c00001{font-family:ff41b_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41c_c00001;src:url('chunks/assets/font_a24fdd549d89bf8e214e537c.woff2')format("woff");}.ff41c_c00001{font-family:ff41c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41d_c00001;src:url('chunks/assets/font_9dd56d03ea10664852eefe80.woff2')format("woff");}.ff41d_c00001{font-family:ff41d_c00001;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff41e_c00001{font-family:ff41e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41f_c00001;src:url('chunks/assets/font_3717a1af3b77f6cdc0f50c52.woff2')format("woff");}.ff41f_c00001{font-family:ff41f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff420_c00001;src:url('chunks/assets/font_a8c7f633008738d3c631c363.woff2')format("woff");}.ff420_c00001{font-family:ff420_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff421_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff421_c00001{font-family:ff421_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff422_c00001;src:url('chunks/assets/font_fd4c3068b200049bb4b00b1a.woff2')format("woff");}.ff422_c00001{font-family:ff422_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff423_c00001;src:url('chunks/assets/font_b55f27958817df6b626d129a.woff2')format("woff");}.ff423_c00001{font-family:ff423_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff424_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff424_c00001{font-family:ff424_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff425_c00001;src:url('chunks/assets/font_3717a1af3b77f6cdc0f50c52.woff2')format("woff");}.ff425_c00001{font-family:ff425_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff426_c00001;src:url('chunks/assets/font_360405602ee8045e18865d83.woff2')format("woff");}.ff426_c00001{font-family:ff426_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff427_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff427_c00001{font-family:ff427_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff428_c00001;src:url('chunks/assets/font_d2fe477540bce0744a582a8a.woff2')format("woff");}.ff428_c00001{font-family:ff428_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff429_c00001;src:url('chunks/assets/font_48faae60623d89e870848991.woff2')format("woff");}.ff429_c00001{font-family:ff429_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff42a_c00001{font-family:ff42a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42b_c00001;src:url('chunks/assets/font_ce107b62c076650df18a552b.woff2')format("woff");}.ff42b_c00001{font-family:ff42b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42c_c00001;src:url('chunks/assets/font_90eac4c41a0af8b6290bc79d.woff2')format("woff");}.ff42c_c00001{font-family:ff42c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42d_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff42d_c00001{font-family:ff42d_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42e_c00001;src:url('chunks/assets/font_d2fe477540bce0744a582a8a.woff2')format("woff");}.ff42e_c00001{font-family:ff42e_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42f_c00001;src:url('chunks/assets/font_37c1722cccc748b51929aef9.woff2')format("woff");}.ff42f_c00001{font-family:ff42f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff430_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff430_c00001{font-family:ff430_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff431_c00001;src:url('chunks/assets/font_229b4d7116d38711c4250556.woff2')format("woff");}.ff431_c00001{font-family:ff431_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff432_c00001;src:url('chunks/assets/font_b4197002d1ed9723663f81ab.woff2')format("woff");}.ff432_c00001{font-family:ff432_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff433_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff433_c00001{font-family:ff433_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff434_c00001;src:url('chunks/assets/font_7f12fcd81d18e2fe5d0e613c.woff2')format("woff");}.ff434_c00001{font-family:ff434_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff435_c00001;src:url('chunks/assets/font_7987b0026fc6fea7d92d7a9c.woff2')format("woff");}.ff435_c00001{font-family:ff435_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff436_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff436_c00001{font-family:ff436_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff437_c00001;src:url('chunks/assets/font_229b4d7116d38711c4250556.woff2')format("woff");}.ff437_c00001{font-family:ff437_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff438_c00001;src:url('chunks/assets/font_333d773a5f5daf81def8cd94.woff2')format("woff");}.ff438_c00001{font-family:ff438_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff439_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff439_c00001{font-family:ff439_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43a_c00001;src:url('chunks/assets/font_db62af9adf0082301f51f415.woff2')format("woff");}.ff43a_c00001{font-family:ff43a_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43b_c00001;src:url('chunks/assets/font_5cacf8b777b45c579b019688.woff2')format("woff");}.ff43b_c00001{font-family:ff43b_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43c_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff43c_c00001{font-family:ff43c_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43d_c00001;src:url('chunks/assets/font_67fd4b3a27632da3f0fc1368.woff2')format("woff");}.ff43d_c00001{font-family:ff43d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff43e_c00001{font-family:ff43e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43f_c00001;src:url('chunks/assets/font_497d830bd553ff8591846de4.woff2')format("woff");}.ff43f_c00001{font-family:ff43f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff440_c00001;src:url('chunks/assets/font_3abe266ef2ea4e823e67c50c.woff2')format("woff");}.ff440_c00001{font-family:ff440_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff441_c00001;src:url('chunks/assets/font_50137ae9dc142fed4408f98a.woff2')format("woff");}.ff441_c00001{font-family:ff441_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff442_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff442_c00001{font-family:ff442_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff443_c00001;src:url('chunks/assets/font_4b57af1bebd0fc3f874fb325.woff2')format("woff");}.ff443_c00001{font-family:ff443_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff444_c00001;src:url('chunks/assets/font_236152e09845f529ff952039.woff2')format("woff");}.ff444_c00001{font-family:ff444_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff445_c00001;src:url('chunks/assets/font_91091a03010e65bc4b0f6225.woff2')format("woff");}.ff445_c00001{font-family:ff445_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff446_c00001;src:url('chunks/assets/font_5e9a7f69dc05d228593c4c59.woff2')format("woff");}.ff446_c00001{font-family:ff446_c00001;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff447_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff447_c00001{font-family:ff447_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff448_c00001;src:url('chunks/assets/font_20f4ce38abe21d3e9e7d87d5.woff2')format("woff");}.ff448_c00001{font-family:ff448_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff449_c00001;src:url('chunks/assets/font_a97c693616e4946e78813b3f.woff2')format("woff");}.ff449_c00001{font-family:ff449_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff44a_c00001{font-family:ff44a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44b_c00001;src:url('chunks/assets/font_e06cc397950cb426f892a1d4.woff2')format("woff");}.ff44b_c00001{font-family:ff44b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44c_c00001;src:url('chunks/assets/font_a97c693616e4946e78813b3f.woff2')format("woff");}.ff44c_c00001{font-family:ff44c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44d_c00001;src:url('chunks/assets/font_b2cee32b192f75db90f05c51.woff2')format("woff");}.ff44d_c00001{font-family:ff44d_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44e_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff44e_c00001{font-family:ff44e_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44f_c00001;src:url('chunks/assets/font_184be9f5e598ae00c44fe929.woff2')format("woff");}.ff44f_c00001{font-family:ff44f_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff450_c00001;src:url('chunks/assets/font_1f0da90d69a249da34acb4be.woff2')format("woff");}.ff450_c00001{font-family:ff450_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff451_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff451_c00001{font-family:ff451_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff452_c00001;src:url('chunks/assets/font_bfe9c35e20babe359c908d84.woff2')format("woff");}.ff452_c00001{font-family:ff452_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff453_c00001;src:url('chunks/assets/font_b2cf3e04fc993707f745482c.woff2')format("woff");}.ff453_c00001{font-family:ff453_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff454_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff454_c00001{font-family:ff454_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff455_c00001;src:url('chunks/assets/font_86caf9219e4d86d7e3c7acf3.woff2')format("woff");}.ff455_c00001{font-family:ff455_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff456_c00001;src:url('chunks/assets/font_ded6efbb59926fded8e13198.woff2')format("woff");}.ff456_c00001{font-family:ff456_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff457_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff457_c00001{font-family:ff457_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff458_c00001;src:url('chunks/assets/font_bfe9c35e20babe359c908d84.woff2')format("woff");}.ff458_c00001{font-family:ff458_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff459_c00001;src:url('chunks/assets/font_23b5367e3ff6025543643edf.woff2')format("woff");}.ff459_c00001{font-family:ff459_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45a_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff45a_c00001{font-family:ff45a_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45b_c00001;src:url('chunks/assets/font_fc149778aa97b7e6cc7d199d.woff2')format("woff");}.ff45b_c00001{font-family:ff45b_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45c_c00001;src:url('chunks/assets/font_ed77a254a2858d7f5f2d5ddf.woff2')format("woff");}.ff45c_c00001{font-family:ff45c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45d_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff45d_c00001{font-family:ff45d_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45e_c00001;src:url('chunks/assets/font_dcc3923992fcd4fcb6417aff.woff2')format("woff");}.ff45e_c00001{font-family:ff45e_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45f_c00001;src:url('chunks/assets/font_9f35600357226a52761d0db8.woff2')format("woff");}.ff45f_c00001{font-family:ff45f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff460_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff460_c00001{font-family:ff460_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff461_c00001;src:url('chunks/assets/font_fc149778aa97b7e6cc7d199d.woff2')format("woff");}.ff461_c00001{font-family:ff461_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff462_c00001;src:url('chunks/assets/font_fbe1e92a888eccd89d3c3a24.woff2')format("woff");}.ff462_c00001{font-family:ff462_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff463_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff463_c00001{font-family:ff463_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff464_c00001;src:url('chunks/assets/font_d82cedb6a759cdbda577118b.woff2')format("woff");}.ff464_c00001{font-family:ff464_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff465_c00001;src:url('chunks/assets/font_196cdbaf101640f2e76063bc.woff2')format("woff");}.ff465_c00001{font-family:ff465_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff466_c00001;src:url('chunks/assets/font_39694e3fe9945c6a49c0bcbb.woff2')format("woff");}.ff466_c00001{font-family:ff466_c00001;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff467_c00001;src:url('chunks/assets/font_34aeeb2b781ba555dee202b2.woff2')format("woff");}.ff467_c00001{font-family:ff467_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff468_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff468_c00001{font-family:ff468_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff469_c00001;src:url('chunks/assets/font_d2a373199cbaeff53cbe26dd.woff2')format("woff");}.ff469_c00001{font-family:ff469_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46a_c00001;src:url('chunks/assets/font_3c2aae53ecfbe50144741915.woff2')format("woff");}.ff46a_c00001{font-family:ff46a_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46b_c00001;src:url('chunks/assets/font_3dbc6aba2f92f2264f23d0e8.woff2')format("woff");}.ff46b_c00001{font-family:ff46b_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff46c_c00001{font-family:ff46c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46d_c00001;src:url('chunks/assets/font_afc89d7b85abcba5bc104885.woff2')format("woff");}.ff46d_c00001{font-family:ff46d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46e_c00001;src:url('chunks/assets/font_5acfd1d7dc3b38cd4f7af53c.woff2')format("woff");}.ff46e_c00001{font-family:ff46e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46f_c00001;src:url('chunks/assets/font_3dbc6aba2f92f2264f23d0e8.woff2')format("woff");}.ff46f_c00001{font-family:ff46f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff470_c00001;src:url('chunks/assets/font_5865e8c086d7bc5cb7eeb640.woff2')format("woff");}.ff470_c00001{font-family:ff470_c00001;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff471_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff471_c00001{font-family:ff471_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff472_c00001;src:url('chunks/assets/font_c92fc040965a219250e50196.woff2')format("woff");}.ff472_c00001{font-family:ff472_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff473_c00001;src:url('chunks/assets/font_b2273db5cdcea0e4fa8fc45a.woff2')format("woff");}.ff473_c00001{font-family:ff473_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff474_c00001;src:url('chunks/assets/font_19e0b76cb164e98647d10e22.woff2')format("woff");}.ff474_c00001{font-family:ff474_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff475_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff475_c00001{font-family:ff475_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff476_c00001;src:url('chunks/assets/font_13a4122790373789b21668d5.woff2')format("woff");}.ff476_c00001{font-family:ff476_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff477_c00001;src:url('chunks/assets/font_302492b8a3655e4b389730bc.woff2')format("woff");}.ff477_c00001{font-family:ff477_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff478_c00001;src:url('chunks/assets/font_bfe9302193773becfff4d4a6.woff2')format("woff");}.ff478_c00001{font-family:ff478_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff479_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff479_c00001{font-family:ff479_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47a_c00001;src:url('chunks/assets/font_445f8b4249c6a923df11378c.woff2')format("woff");}.ff47a_c00001{font-family:ff47a_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47b_c00001;src:url('chunks/assets/font_cf6011488b4cd2d6a7bfd574.woff2')format("woff");}.ff47b_c00001{font-family:ff47b_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47c_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff47c_c00001{font-family:ff47c_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47d_c00001;src:url('chunks/assets/font_c922a999eaa4e9fe6f896bd3.woff2')format("woff");}.ff47d_c00001{font-family:ff47d_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47e_c00001;src:url('chunks/assets/font_ad848c71c615e155c304ab4c.woff2')format("woff");}.ff47e_c00001{font-family:ff47e_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47f_c00001;src:url('chunks/assets/font_528a2e8e1362bd5ec95d4680.woff2')format("woff");}.ff47f_c00001{font-family:ff47f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff480_c00001;src:url('chunks/assets/font_c922a999eaa4e9fe6f896bd3.woff2')format("woff");}.ff480_c00001{font-family:ff480_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff481_c00001;src:url('chunks/assets/font_ad848c71c615e155c304ab4c.woff2')format("woff");}.ff481_c00001{font-family:ff481_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff482_c00001;src:url('chunks/assets/font_528a2e8e1362bd5ec95d4680.woff2')format("woff");}.ff482_c00001{font-family:ff482_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff483_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff483_c00001{font-family:ff483_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff484_c00001;src:url('chunks/assets/font_6621a21f96e29f8c9d06f27e.woff2')format("woff");}.ff484_c00001{font-family:ff484_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff485_c00001;src:url('chunks/assets/font_ad9424f71a56512e826d949d.woff2')format("woff");}.ff485_c00001{font-family:ff485_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff486_c00001;src:url('chunks/assets/font_63a58e33cf49565ed3bcc4fc.woff2')format("woff");}.ff486_c00001{font-family:ff486_c00001;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff487_c00001;src:url('chunks/assets/font_1484d1ba40cdc18e8898e648.woff2')format("woff");}.ff487_c00001{font-family:ff487_c00001;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff488_c00001;src:url('chunks/assets/font_bb2332c25b339e71189e3a9b.woff2')format("woff");}.ff488_c00001{font-family:ff488_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff489_c00001;src:url('chunks/assets/font_40d79671390ed1bb7c1f4301.woff2')format("woff");}.ff489_c00001{font-family:ff489_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48a_c00001;src:url('chunks/assets/font_c434c9281aeff4ab9d73debb.woff2')format("woff");}.ff48a_c00001{font-family:ff48a_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:ff48b_c00001;src:url('chunks/assets/font_59ddb768e5508f5c96d52b3f.woff2')format("woff");}.ff48b_c00001{font-family:ff48b_c00001;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48c_c00001;src:url('chunks/assets/font_1ba5b4e4b84183c82f66049c.woff2')format("woff");}.ff48c_c00001{font-family:ff48c_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48d_c00001;src:url('chunks/assets/font_874e834579597c183b29ebca.woff2')format("woff");}.ff48d_c00001{font-family:ff48d_c00001;line-height:1.200000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48e_c00001;src:url('chunks/assets/font_190a8f4c1c0033654846e571.woff2')format("woff");}.ff48e_c00001{font-family:ff48e_c00001;line-height:0.838000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48f_c00001;src:url('chunks/assets/font_b7541556eaee907d8d4acbba.woff2')format("woff");}.ff48f_c00001{font-family:ff48f_c00001;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00001{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1_c00001{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0_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);}
.v28_c00001{vertical-align:-60.478800px;}
.v7_c00001{vertical-align:-59.423760px;}
.va_c00001{vertical-align:-54.746280px;}
.v29_c00001{vertical-align:-34.200600px;}
.v8_c00001{vertical-align:-31.688280px;}
.v1e_c00001{vertical-align:-27.360000px;}
.v5_c00001{vertical-align:-24.836760px;}
.v1_c00001{vertical-align:-16.183440px;}
.v22_c00001{vertical-align:-12.960000px;}
.v9_c00001{vertical-align:-11.858400px;}
.v13_c00001{vertical-align:-9.360000px;}
.v23_c00001{vertical-align:-4.320600px;}
.v27_c00001{vertical-align:-2.879400px;}
.v0_c00001{vertical-align:0.000000px;}
.v21_c00001{vertical-align:2.148120px;}
.v31_c00001{vertical-align:4.320000px;}
.v20_c00001{vertical-align:5.391360px;}
.v18_c00001{vertical-align:7.187400px;}
.v14_c00001{vertical-align:8.299200px;}
.v1c_c00001{vertical-align:10.800000px;}
.v26_c00001{vertical-align:12.239400px;}
.vf_c00001{vertical-align:15.840600px;}
.v1b_c00001{vertical-align:21.246480px;}
.v2_c00001{vertical-align:27.722520px;}
.v2f_c00001{vertical-align:28.799400px;}
.v6_c00001{vertical-align:30.240000px;}
.v2b_c00001{vertical-align:31.320000px;}
.v2a_c00001{vertical-align:34.201200px;}
.v19_c00001{vertical-align:35.622600px;}
.v17_c00001{vertical-align:38.867400px;}
.v10_c00001{vertical-align:42.134760px;}
.v11_c00001{vertical-align:43.560000px;}
.vb_c00001{vertical-align:44.650800px;}
.vc_c00001{vertical-align:45.723960px;}
.v24_c00001{vertical-align:47.530800px;}
.v2d_c00001{vertical-align:48.587880px;}
.v1f_c00001{vertical-align:51.470640px;}
.v2c_c00001{vertical-align:52.926480px;}
.v4_c00001{vertical-align:55.062000px;}
.v3_c00001{vertical-align:60.120000px;}
.ve_c00001{vertical-align:62.290800px;}
.v12_c00001{vertical-align:63.344400px;}
.vd_c00001{vertical-align:66.987960px;}
.v16_c00001{vertical-align:68.055600px;}
.v1a_c00001{vertical-align:70.919400px;}
.v30_c00001{vertical-align:71.994600px;}
.v25_c00001{vertical-align:73.794000px;}
.v1d_c00001{vertical-align:75.227160px;}
.v15_c00001{vertical-align:77.400600px;}
.v2e_c00001{vertical-align:110.161200px;}
.ls15b_c00001{letter-spacing:-8.865660px;}
.ls15c_c00001{letter-spacing:-5.910450px;}
.ls30_c00001{letter-spacing:-1.101240px;}
.ls31_c00001{letter-spacing:-0.718200px;}
.ls157_c00001{letter-spacing:-0.702000px;}
.lsd_c00001{letter-spacing:-0.648000px;}
.ls9_c00001{letter-spacing:-0.576000px;}
.ls33_c00001{letter-spacing:-0.526680px;}
.ls28_c00001{letter-spacing:-0.478800px;}
.ls127_c00001{letter-spacing:-0.379080px;}
.ls153_c00001{letter-spacing:-0.378000px;}
.lse_c00001{letter-spacing:-0.360000px;}
.ls11e_c00001{letter-spacing:-0.336960px;}
.lsa_c00001{letter-spacing:-0.288000px;}
.ls50_c00001{letter-spacing:-0.239400px;}
.ls101_c00001{letter-spacing:-0.216000px;}
.ls48_c00001{letter-spacing:-0.197640px;}
.ls35_c00001{letter-spacing:-0.191520px;}
.ls137_c00001{letter-spacing:-0.168480px;}
.ls1f_c00001{letter-spacing:-0.162000px;}
.ls5_c00001{letter-spacing:-0.144000px;}
.ls154_c00001{letter-spacing:-0.143640px;}
.ls46_c00001{letter-spacing:-0.131760px;}
.ls21_c00001{letter-spacing:-0.108000px;}
.ls29_c00001{letter-spacing:-0.095760px;}
.lse1_c00001{letter-spacing:-0.075895px;}
.ls4_c00001{letter-spacing:-0.072000px;}
.ls47_c00001{letter-spacing:-0.065880px;}
.ls155_c00001{letter-spacing:-0.047880px;}
.lse8_c00001{letter-spacing:-0.042120px;}
.ls3_c00001{letter-spacing:0.000000px;}
.lse9_c00001{letter-spacing:0.000120px;}
.lse3_c00001{letter-spacing:0.000720px;}
.ls2e_c00001{letter-spacing:0.047880px;}
.lsf0_c00001{letter-spacing:0.054000px;}
.ls40_c00001{letter-spacing:0.065880px;}
.ls0_c00001{letter-spacing:0.072000px;}
.ls93_c00001{letter-spacing:0.078840px;}
.ls27_c00001{letter-spacing:0.095760px;}
.ls152_c00001{letter-spacing:0.108000px;}
.ls42_c00001{letter-spacing:0.131760px;}
.ls2_c00001{letter-spacing:0.144000px;}
.ls151_c00001{letter-spacing:0.162000px;}
.lse5_c00001{letter-spacing:0.168480px;}
.lsc_c00001{letter-spacing:0.180000px;}
.ls20_c00001{letter-spacing:0.191520px;}
.ls62_c00001{letter-spacing:0.197640px;}
.ls135_c00001{letter-spacing:0.198360px;}
.lsf9_c00001{letter-spacing:0.231120px;}
.ls2c_c00001{letter-spacing:0.239400px;}
.ls3d_c00001{letter-spacing:0.255960px;}
.ls141_c00001{letter-spacing:0.263520px;}
.ls2d_c00001{letter-spacing:0.287280px;}
.ls49_c00001{letter-spacing:0.329400px;}
.ls16_c00001{letter-spacing:0.360000px;}
.ls3c_c00001{letter-spacing:0.383040px;}
.ls94_c00001{letter-spacing:0.395280px;}
.ls13e_c00001{letter-spacing:0.432000px;}
.lsde_c00001{letter-spacing:0.504000px;}
.lsba_c00001{letter-spacing:0.527040px;}
.ls134_c00001{letter-spacing:4.545720px;}
.ls13c_c00001{letter-spacing:4.941000px;}
.ls144_c00001{letter-spacing:6.719760px;}
.ls12a_c00001{letter-spacing:7.071120px;}
.ls22_c00001{letter-spacing:13.214880px;}
.ls4f_c00001{letter-spacing:13.215960px;}
.ls4a_c00001{letter-spacing:13.575960px;}
.ls4e_c00001{letter-spacing:13.576560px;}
.ls4d_c00001{letter-spacing:13.597920px;}
.ls156_c00001{letter-spacing:13.716000px;}
.ls4c_c00001{letter-spacing:14.411880px;}
.ls3b_c00001{letter-spacing:14.418720px;}
.ls4b_c00001{letter-spacing:14.651280px;}
.ls3a_c00001{letter-spacing:14.655960px;}
.ls1e_c00001{letter-spacing:15.120000px;}
.ls34_c00001{letter-spacing:15.130080px;}
.ls1d_c00001{letter-spacing:15.138000px;}
.ls2b_c00001{letter-spacing:15.738156px;}
.ls26_c00001{letter-spacing:15.742944px;}
.ls1c_c00001{letter-spacing:15.896160px;}
.ls25_c00001{letter-spacing:16.087680px;}
.ls37_c00001{letter-spacing:16.470720px;}
.ls36_c00001{letter-spacing:16.614360px;}
.ls24_c00001{letter-spacing:17.332560px;}
.ls39_c00001{letter-spacing:17.476200px;}
.ls146_c00001{letter-spacing:17.708544px;}
.lsb_c00001{letter-spacing:17.784000px;}
.ls14_c00001{letter-spacing:17.798400px;}
.ls12_c00001{letter-spacing:17.812800px;}
.ls125_c00001{letter-spacing:18.000000px;}
.ls1_c00001{letter-spacing:18.144000px;}
.ls1a_c00001{letter-spacing:18.158400px;}
.ls3e_c00001{letter-spacing:18.255960px;}
.ls6_c00001{letter-spacing:18.504000px;}
.ls11_c00001{letter-spacing:18.864000px;}
.ls32_c00001{letter-spacing:19.496736px;}
.lse0_c00001{letter-spacing:19.944000px;}
.lsdf_c00001{letter-spacing:20.304000px;}
.ls13_c00001{letter-spacing:20.664000px;}
.ls18_c00001{letter-spacing:21.024000px;}
.ls2f_c00001{letter-spacing:21.210840px;}
.ls17_c00001{letter-spacing:21.384000px;}
.ls15_c00001{letter-spacing:21.744000px;}
.ls15a_c00001{letter-spacing:21.865572px;}
.ls54_c00001{letter-spacing:21.881160px;}
.ls55_c00001{letter-spacing:22.216320px;}
.ls56_c00001{letter-spacing:22.455720px;}
.ls38_c00001{letter-spacing:22.743000px;}
.ls8_c00001{letter-spacing:26.064000px;}
.ls102_c00001{letter-spacing:26.784000px;}
.ls58_c00001{letter-spacing:26.879040px;}
.ls41_c00001{letter-spacing:27.208440px;}
.ls51_c00001{letter-spacing:27.615960px;}
.ls133_c00001{letter-spacing:28.440000px;}
.ls19_c00001{letter-spacing:28.584000px;}
.ls159_c00001{letter-spacing:32.760000px;}
.ls86_c00001{letter-spacing:35.838720px;}
.ls7_c00001{letter-spacing:36.144000px;}
.ls158_c00001{letter-spacing:37.440000px;}
.ls1b_c00001{letter-spacing:39.384000px;}
.ls100_c00001{letter-spacing:40.464000px;}
.ls10_c00001{letter-spacing:40.824000px;}
.lsf_c00001{letter-spacing:41.184000px;}
.ls14a_c00001{letter-spacing:43.109640px;}
.ls13b_c00001{letter-spacing:44.469972px;}
.ls57_c00001{letter-spacing:46.643040px;}
.lsbb_c00001{letter-spacing:57.117960px;}
.ls12c_c00001{letter-spacing:58.929480px;}
.ls12e_c00001{letter-spacing:58.930080px;}
.ls8d_c00001{letter-spacing:72.270360px;}
.ls97_c00001{letter-spacing:91.309680px;}
.ls98_c00001{letter-spacing:93.813120px;}
.ls3f_c00001{letter-spacing:99.215280px;}
.ls99_c00001{letter-spacing:102.443400px;}
.ls6a_c00001{letter-spacing:102.838680px;}
.ls88_c00001{letter-spacing:105.737400px;}
.ls69_c00001{letter-spacing:114.367680px;}
.ls10d_c00001{letter-spacing:125.502840px;}
.ls14e_c00001{letter-spacing:133.760520px;}
.lsaf_c00001{letter-spacing:134.197560px;}
.ls68_c00001{letter-spacing:139.533840px;}
.ls8e_c00001{letter-spacing:142.827840px;}
.lsaa_c00001{letter-spacing:147.439440px;}
.lsa8_c00001{letter-spacing:148.559400px;}
.ls11d_c00001{letter-spacing:149.653080px;}
.lsdc_c00001{letter-spacing:155.740320px;}
.ls66_c00001{letter-spacing:156.860280px;}
.ls7f_c00001{letter-spacing:160.813080px;}
.lsa9_c00001{letter-spacing:161.142480px;}
.lse4_c00001{letter-spacing:162.558720px;}
.ls53_c00001{letter-spacing:166.544640px;}
.ls59_c00001{letter-spacing:166.939920px;}
.lsae_c00001{letter-spacing:173.066760px;}
.lsdb_c00001{letter-spacing:175.174920px;}
.ls89_c00001{letter-spacing:176.294880px;}
.ls80_c00001{letter-spacing:182.421720px;}
.lsac_c00001{letter-spacing:190.327320px;}
.ls9e_c00001{letter-spacing:206.138520px;}
.lsda_c00001{letter-spacing:215.888760px;}
.ls5a_c00001{letter-spacing:217.667520px;}
.ls43_c00001{letter-spacing:219.116880px;}
.ls78_c00001{letter-spacing:222.740280px;}
.ls132_c00001{letter-spacing:226.322640px;}
.lsd2_c00001{letter-spacing:227.417760px;}
.ls9f_c00001{letter-spacing:231.370560px;}
.ls60_c00001{letter-spacing:233.874000px;}
.ls5d_c00001{letter-spacing:234.269280px;}
.ls67_c00001{letter-spacing:234.598680px;}
.ls126_c00001{letter-spacing:237.134880px;}
.ls129_c00001{letter-spacing:237.135480px;}
.ls9c_c00001{letter-spacing:237.497400px;}
.lsab_c00001{letter-spacing:243.558360px;}
.lsd3_c00001{letter-spacing:245.403000px;}
.lscc_c00001{letter-spacing:248.301720px;}
.lsdd_c00001{letter-spacing:249.355800px;}
.ls7b_c00001{letter-spacing:251.859240px;}
.ls7a_c00001{letter-spacing:254.362680px;}
.ls75_c00001{letter-spacing:256.207320px;}
.ls45_c00001{letter-spacing:260.555400px;}
.ls65_c00001{letter-spacing:267.736320px;}
.ls96_c00001{letter-spacing:270.239760px;}
.lsbc_c00001{letter-spacing:278.540640px;}
.lsc9_c00001{letter-spacing:281.768760px;}
.lsd1_c00001{letter-spacing:282.822840px;}
.lsc5_c00001{letter-spacing:297.975240px;}
.lsb6_c00001{letter-spacing:301.203360px;}
.ls131_c00001{letter-spacing:301.565520px;}
.lsca_c00001{letter-spacing:302.982120px;}
.ls71_c00001{letter-spacing:305.880840px;}
.lsa7_c00001{letter-spacing:314.840520px;}
.ls64_c00001{letter-spacing:316.355760px;}
.lsd0_c00001{letter-spacing:323.141400px;}
.lsad_c00001{letter-spacing:327.818880px;}
.lsc2_c00001{letter-spacing:331.442280px;}
.ls5b_c00001{letter-spacing:332.166960px;}
.ls91_c00001{letter-spacing:341.126640px;}
.ls8a_c00001{letter-spacing:341.192520px;}
.ls44_c00001{letter-spacing:343.300680px;}
.ls73_c00001{letter-spacing:348.373440px;}
.ls52_c00001{letter-spacing:355.883760px;}
.lscb_c00001{letter-spacing:356.608440px;}
.lsb5_c00001{letter-spacing:361.285920px;}
.ls79_c00001{letter-spacing:361.681200px;}
.lsa4_c00001{letter-spacing:362.010600px;}
.ls90_c00001{letter-spacing:364.579920px;}
.lscd_c00001{letter-spacing:376.043040px;}
.ls7e_c00001{letter-spacing:381.840480px;}
.ls84_c00001{letter-spacing:381.906360px;}
.ls77_c00001{letter-spacing:383.289840px;}
.ls138_c00001{letter-spacing:383.631120px;}
.lsbe_c00001{letter-spacing:386.122680px;}
.ls124_c00001{letter-spacing:386.616600px;}
.ls128_c00001{letter-spacing:386.617200px;}
.lsc7_c00001{letter-spacing:390.141360px;}
.ls82_c00001{letter-spacing:395.148240px;}
.ls9a_c00001{letter-spacing:395.543520px;}
.ls6f_c00001{letter-spacing:398.046960px;}
.ls139_c00001{letter-spacing:404.844480px;}
.lsc4_c00001{letter-spacing:406.347840px;}
.lsbd_c00001{letter-spacing:409.114800px;}
.lsc6_c00001{letter-spacing:409.575960px;}
.lsa1_c00001{letter-spacing:411.750000px;}
.ls72_c00001{letter-spacing:416.756880px;}
.lsd5_c00001{letter-spacing:425.782440px;}
.ls6c_c00001{letter-spacing:431.514000px;}
.ls9d_c00001{letter-spacing:432.568080px;}
.lsc0_c00001{letter-spacing:439.814880px;}
.ls95_c00001{letter-spacing:445.217040px;}
.ls83_c00001{letter-spacing:449.894520px;}
.lsce_c00001{letter-spacing:450.223920px;}
.lsb3_c00001{letter-spacing:457.852824px;}
.lsbf_c00001{letter-spacing:459.249480px;}
.ls6b_c00001{letter-spacing:466.430400px;}
.ls6e_c00001{letter-spacing:466.496280px;}
.ls9b_c00001{letter-spacing:477.959400px;}
.ls74_c00001{letter-spacing:480.133440px;}
.lsfb_c00001{letter-spacing:481.549680px;}
.lsc8_c00001{letter-spacing:483.690960px;}
.lsb8_c00001{letter-spacing:491.319864px;}
.lsf8_c00001{letter-spacing:508.210920px;}
.ls85_c00001{letter-spacing:513.205200px;}
.lsf6_c00001{letter-spacing:518.276880px;}
.lsb4_c00001{letter-spacing:519.002640px;}
.ls70_c00001{letter-spacing:529.806960px;}
.lsc1_c00001{letter-spacing:533.430360px;}
.lsa6_c00001{letter-spacing:535.538520px;}
.lscf_c00001{letter-spacing:535.933800px;}
.ls13a_c00001{letter-spacing:536.270760px;}
.ls149_c00001{letter-spacing:541.684080px;}
.lsf2_c00001{letter-spacing:543.476880px;}
.ls150_c00001{letter-spacing:545.247000px;}
.ls76_c00001{letter-spacing:547.792200px;}
.lsa5_c00001{letter-spacing:548.846280px;}
.lsb9_c00001{letter-spacing:552.469680px;}
.lsa3_c00001{letter-spacing:564.328080px;}
.lsd9_c00001{letter-spacing:569.400840px;}
.ls87_c00001{letter-spacing:573.024240px;}
.ls10f_c00001{letter-spacing:580.901400px;}
.lsd8_c00001{letter-spacing:582.708600px;}
.ls7d_c00001{letter-spacing:594.567000px;}
.ls112_c00001{letter-spacing:596.098080px;}
.ls6d_c00001{letter-spacing:597.465720px;}
.ls130_c00001{letter-spacing:603.961920px;}
.ls147_c00001{letter-spacing:604.670760px;}
.ls7c_c00001{letter-spacing:610.048800px;}
.lsa0_c00001{letter-spacing:614.001600px;}
.lsed_c00001{letter-spacing:614.080080px;}
.lsff_c00001{letter-spacing:614.395800px;}
.lsb2_c00001{letter-spacing:617.229720px;}
.lsc3_c00001{letter-spacing:619.074360px;}
.lsd6_c00001{letter-spacing:631.657440px;}
.lsa2_c00001{letter-spacing:632.052720px;}
.lsd4_c00001{letter-spacing:632.382120px;}
.ls136_c00001{letter-spacing:637.419120px;}
.lsb1_c00001{letter-spacing:642.132360px;}
.ls103_c00001{letter-spacing:645.727320px;}
.lse7_c00001{letter-spacing:653.232960px;}
.ls81_c00001{letter-spacing:659.722320px;}
.ls13f_c00001{letter-spacing:660.513852px;}
.ls8f_c00001{letter-spacing:669.525264px;}
.lsd7_c00001{letter-spacing:681.330960px;}
.ls11b_c00001{letter-spacing:682.424640px;}
.lsb0_c00001{letter-spacing:683.109720px;}
.ls111_c00001{letter-spacing:699.090120px;}
.ls106_c00001{letter-spacing:701.527680px;}
.ls63_c00001{letter-spacing:702.610200px;}
.ls92_c00001{letter-spacing:703.058184px;}
.ls5f_c00001{letter-spacing:710.515800px;}
.lsb7_c00001{letter-spacing:716.576760px;}
.ls14f_c00001{letter-spacing:732.148560px;}
.ls13d_c00001{letter-spacing:767.377800px;}
.lsf1_c00001{letter-spacing:798.003360px;}
.ls108_c00001{letter-spacing:799.425360px;}
.ls14d_c00001{letter-spacing:812.061000px;}
.ls8b_c00001{letter-spacing:860.985720px;}
.ls14c_c00001{letter-spacing:875.766960px;}
.ls5c_c00001{letter-spacing:900.250200px;}
.ls8c_c00001{letter-spacing:928.315080px;}
.ls14b_c00001{letter-spacing:928.668600px;}
.ls12b_c00001{letter-spacing:939.481560px;}
.ls10b_c00001{letter-spacing:939.911400px;}
.ls140_c00001{letter-spacing:961.065000px;}
.ls148_c00001{letter-spacing:988.811640px;}
.lsef_c00001{letter-spacing:1022.654160px;}
.ls105_c00001{letter-spacing:1035.934560px;}
.ls10e_c00001{letter-spacing:1145.471400px;}
.ls61_c00001{letter-spacing:1156.194000px;}
.lsfc_c00001{letter-spacing:1169.777880px;}
.lsfd_c00001{letter-spacing:1175.245920px;}
.ls5e_c00001{letter-spacing:1188.211680px;}
.lsfa_c00001{letter-spacing:1203.784632px;}
.ls114_c00001{letter-spacing:1226.423520px;}
.ls107_c00001{letter-spacing:1230.390720px;}
.ls143_c00001{letter-spacing:1263.454200px;}
.ls104_c00001{letter-spacing:1270.335600px;}
.lsee_c00001{letter-spacing:1273.934160px;}
.ls113_c00001{letter-spacing:1286.868600px;}
.lsfe_c00001{letter-spacing:1353.846600px;}
.ls12d_c00001{letter-spacing:1356.370200px;}
.ls12f_c00001{letter-spacing:1356.370800px;}
.ls110_c00001{letter-spacing:1367.867880px;}
.lsf3_c00001{letter-spacing:1371.094920px;}
.ls23_c00001{letter-spacing:1388.395320px;}
.ls2a_c00001{letter-spacing:1388.395920px;}
.ls142_c00001{letter-spacing:1406.743200px;}
.ls123_c00001{letter-spacing:1408.532400px;}
.lsf4_c00001{letter-spacing:1410.753240px;}
.ls116_c00001{letter-spacing:1472.606640px;}
.ls119_c00001{letter-spacing:1498.919760px;}
.ls10a_c00001{letter-spacing:1503.646560px;}
.ls10c_c00001{letter-spacing:1549.334520px;}
.lsf7_c00001{letter-spacing:1569.096720px;}
.ls11f_c00001{letter-spacing:1570.882320px;}
.ls145_c00001{letter-spacing:1588.193280px;}
.lseb_c00001{letter-spacing:1598.973840px;}
.lsea_c00001{letter-spacing:1612.359720px;}
.lsec_c00001{letter-spacing:1622.327760px;}
.ls11a_c00001{letter-spacing:1629.960120px;}
.lse6_c00001{letter-spacing:1643.672880px;}
.ls11c_c00001{letter-spacing:1647.610920px;}
.ls109_c00001{letter-spacing:1667.062080px;}
.ls117_c00001{letter-spacing:1739.782080px;}
.ls121_c00001{letter-spacing:1770.384240px;}
.ls118_c00001{letter-spacing:1808.885160px;}
.lsf5_c00001{letter-spacing:1817.562240px;}
.ls122_c00001{letter-spacing:1818.245160px;}
.ls120_c00001{letter-spacing:1825.421040px;}
.lse2_c00001{letter-spacing:1842.762240px;}
.ls115_c00001{letter-spacing:1843.445160px;}
.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;}
}
.ws2d7_c00001{word-spacing:-23.928794px;}
.ws15b_c00001{word-spacing:-21.022822px;}
.ws158_c00001{word-spacing:-20.016000px;}
.wsd2_c00001{word-spacing:-19.944000px;}
.ws159_c00001{word-spacing:-19.872000px;}
.ws16e_c00001{word-spacing:-19.800000px;}
.ws255_c00001{word-spacing:-18.446400px;}
.ws179_c00001{word-spacing:-18.380520px;}
.ws89_c00001{word-spacing:-18.360000px;}
.ws15c_c00001{word-spacing:-18.248760px;}
.ws25_c00001{word-spacing:-18.144000px;}
.ws0_c00001{word-spacing:-18.072000px;}
.ws24_c00001{word-spacing:-18.000000px;}
.ws2_c00001{word-spacing:-17.928000px;}
.ws3_c00001{word-spacing:-17.856000px;}
.ws99_c00001{word-spacing:-17.712000px;}
.ws68_c00001{word-spacing:-17.640000px;}
.ws3a_c00001{word-spacing:-17.424000px;}
.ws55_c00001{word-spacing:-17.352000px;}
.ws2c1_c00001{word-spacing:-16.667640px;}
.ws2bf_c00001{word-spacing:-16.535880px;}
.ws2bd_c00001{word-spacing:-16.470000px;}
.ws16c_c00001{word-spacing:-16.416000px;}
.ws2c2_c00001{word-spacing:-16.404120px;}
.ws2c3_c00001{word-spacing:-16.272360px;}
.ws16b_c00001{word-spacing:-16.272000px;}
.ws156_c00001{word-spacing:-15.415920px;}
.ws155_c00001{word-spacing:-15.284160px;}
.ws154_c00001{word-spacing:-15.218280px;}
.ws153_c00001{word-spacing:-15.086520px;}
.ws11c_c00001{word-spacing:-15.020640px;}
.wsd8_c00001{word-spacing:-15.012000px;}
.ws119_c00001{word-spacing:-14.954760px;}
.wsd9_c00001{word-spacing:-14.904000px;}
.ws157_c00001{word-spacing:-14.888880px;}
.wsd5_c00001{word-spacing:-14.850000px;}
.ws11a_c00001{word-spacing:-14.823000px;}
.ws118_c00001{word-spacing:-14.757120px;}
.ws11b_c00001{word-spacing:-14.691240px;}
.ws2a1_c00001{word-spacing:-13.662000px;}
.ws29a_c00001{word-spacing:-13.608000px;}
.wsd6_c00001{word-spacing:-13.502160px;}
.ws288_c00001{word-spacing:-13.500000px;}
.wse3_c00001{word-spacing:-13.406400px;}
.ws216_c00001{word-spacing:-13.392000px;}
.wsd4_c00001{word-spacing:-13.310640px;}
.wsf8_c00001{word-spacing:-13.214880px;}
.ws147_c00001{word-spacing:-13.119120px;}
.ws12a_c00001{word-spacing:-13.071240px;}
.wse6_c00001{word-spacing:-12.831840px;}
.ws2b4_c00001{word-spacing:-12.798000px;}
.ws171_c00001{word-spacing:-12.258000px;}
.ws23b_c00001{word-spacing:-11.988000px;}
.ws1d8_c00001{word-spacing:-11.877840px;}
.ws15e_c00001{word-spacing:-11.709360px;}
.ws172_c00001{word-spacing:-11.667240px;}
.ws1cb_c00001{word-spacing:-11.540880px;}
.ws17c_c00001{word-spacing:-11.330280px;}
.ws2b3_c00001{word-spacing:-11.012400px;}
.ws2a2_c00001{word-spacing:-10.868760px;}
.wsa8_c00001{word-spacing:-0.648000px;}
.ws63_c00001{word-spacing:-0.576000px;}
.ws30_c00001{word-spacing:-0.504000px;}
.ws120_c00001{word-spacing:-0.461160px;}
.ws14_c00001{word-spacing:-0.432000px;}
.ws15_c00001{word-spacing:-0.360000px;}
.ws14e_c00001{word-spacing:-0.335160px;}
.ws151_c00001{word-spacing:-0.329400px;}
.ws28c_c00001{word-spacing:-0.324000px;}
.ws1a3_c00001{word-spacing:-0.288000px;}
.ws2ba_c00001{word-spacing:-0.273600px;}
.ws2ae_c00001{word-spacing:-0.270000px;}
.ws13d_c00001{word-spacing:-0.263520px;}
.ws2ad_c00001{word-spacing:-0.239400px;}
.ws164_c00001{word-spacing:-0.210600px;}
.ws161_c00001{word-spacing:-0.197640px;}
.ws114_c00001{word-spacing:-0.191520px;}
.ws1a0_c00001{word-spacing:-0.168480px;}
.ws28b_c00001{word-spacing:-0.162000px;}
.ws18_c00001{word-spacing:-0.144000px;}
.ws175_c00001{word-spacing:-0.143640px;}
.ws6_c00001{word-spacing:-0.131760px;}
.ws29c_c00001{word-spacing:-0.108000px;}
.wse8_c00001{word-spacing:-0.095760px;}
.ws12b_c00001{word-spacing:-0.094680px;}
.ws8_c00001{word-spacing:-0.072000px;}
.ws11d_c00001{word-spacing:-0.065880px;}
.ws105_c00001{word-spacing:-0.047880px;}
.ws16a_c00001{word-spacing:-0.042120px;}
.ws5_c00001{word-spacing:0.000000px;}
.ws2a7_c00001{word-spacing:0.047880px;}
.ws170_c00001{word-spacing:0.054000px;}
.ws11e_c00001{word-spacing:0.065880px;}
.wse_c00001{word-spacing:0.072000px;}
.wsf3_c00001{word-spacing:0.095760px;}
.wsff_c00001{word-spacing:0.108000px;}
.ws121_c00001{word-spacing:0.131760px;}
.ws2a8_c00001{word-spacing:0.143640px;}
.ws1_c00001{word-spacing:0.144000px;}
.wsdc_c00001{word-spacing:0.162000px;}
.ws162_c00001{word-spacing:0.168480px;}
.ws111_c00001{word-spacing:0.191520px;}
.ws19_c00001{word-spacing:0.197640px;}
.ws287_c00001{word-spacing:0.198000px;}
.ws160_c00001{word-spacing:0.210600px;}
.ws15a_c00001{word-spacing:0.216000px;}
.ws11f_c00001{word-spacing:0.263520px;}
.wsf9_c00001{word-spacing:0.265320px;}
.wse2_c00001{word-spacing:0.270000px;}
.wse5_c00001{word-spacing:0.287280px;}
.ws31_c00001{word-spacing:0.288000px;}
.ws152_c00001{word-spacing:0.329400px;}
.ws14a_c00001{word-spacing:0.335160px;}
.ws176_c00001{word-spacing:0.336960px;}
.ws2d_c00001{word-spacing:0.360000px;}
.ws1d1_c00001{word-spacing:0.379080px;}
.wsdb_c00001{word-spacing:0.383040px;}
.ws2be_c00001{word-spacing:0.395280px;}
.ws35_c00001{word-spacing:0.432000px;}
.ws1a1_c00001{word-spacing:0.461160px;}
.ws4_c00001{word-spacing:0.504000px;}
.ws10b_c00001{word-spacing:0.526680px;}
.ws2ca_c00001{word-spacing:0.527040px;}
.ws2a3_c00001{word-spacing:0.540000px;}
.wsad_c00001{word-spacing:0.576000px;}
.ws21b_c00001{word-spacing:0.592920px;}
.ws1a5_c00001{word-spacing:0.631800px;}
.wsf_c00001{word-spacing:0.648000px;}
.wsdd_c00001{word-spacing:0.718200px;}
.ws53_c00001{word-spacing:0.720000px;}
.ws240_c00001{word-spacing:0.790560px;}
.ws12d_c00001{word-spacing:0.861840px;}
.ws12e_c00001{word-spacing:0.909720px;}
.ws1b8_c00001{word-spacing:0.922320px;}
.ws8d_c00001{word-spacing:0.936000px;}
.ws65_c00001{word-spacing:1.008000px;}
.ws64_c00001{word-spacing:1.080000px;}
.wsdf_c00001{word-spacing:1.101240px;}
.ws185_c00001{word-spacing:1.152000px;}
.ws5b_c00001{word-spacing:1.224000px;}
.ws1ea_c00001{word-spacing:1.251720px;}
.ws1b4_c00001{word-spacing:1.296000px;}
.ws25a_c00001{word-spacing:1.317600px;}
.ws7_c00001{word-spacing:1.368000px;}
.wsed_c00001{word-spacing:1.436400px;}
.ws37_c00001{word-spacing:1.440000px;}
.wscf_c00001{word-spacing:1.584000px;}
.ws167_c00001{word-spacing:1.647000px;}
.ws16d_c00001{word-spacing:1.656000px;}
.ws27e_c00001{word-spacing:1.712880px;}
.ws43_c00001{word-spacing:1.728000px;}
.ws3d_c00001{word-spacing:1.800000px;}
.wsf0_c00001{word-spacing:1.819440px;}
.ws282_c00001{word-spacing:1.872000px;}
.ws268_c00001{word-spacing:1.910520px;}
.ws107_c00001{word-spacing:1.915200px;}
.wsbe_c00001{word-spacing:1.944000px;}
.ws95_c00001{word-spacing:2.016000px;}
.ws1bb_c00001{word-spacing:2.042280px;}
.ws14c_c00001{word-spacing:2.058840px;}
.ws1e_c00001{word-spacing:2.088000px;}
.ws1c0_c00001{word-spacing:2.108160px;}
.ws10d_c00001{word-spacing:2.154600px;}
.ws12_c00001{word-spacing:2.160000px;}
.ws1c1_c00001{word-spacing:2.239920px;}
.ws3f_c00001{word-spacing:2.304000px;}
.ws294_c00001{word-spacing:2.322000px;}
.ws24d_c00001{word-spacing:2.371680px;}
.ws22c_c00001{word-spacing:2.376000px;}
.ws18c_c00001{word-spacing:2.437560px;}
.wsd7_c00001{word-spacing:2.441880px;}
.ws21_c00001{word-spacing:2.448000px;}
.ws1f_c00001{word-spacing:2.520000px;}
.wse1_c00001{word-spacing:2.537640px;}
.ws1a6_c00001{word-spacing:2.592000px;}
.ws69_c00001{word-spacing:2.664000px;}
.ws52_c00001{word-spacing:2.736000px;}
.ws1dd_c00001{word-spacing:2.766960px;}
.ws14b_c00001{word-spacing:2.777040px;}
.wsc_c00001{word-spacing:2.808000px;}
.ws264_c00001{word-spacing:2.832840px;}
.wse0_c00001{word-spacing:2.872800px;}
.wsb_c00001{word-spacing:2.880000px;}
.ws283_c00001{word-spacing:2.952000px;}
.ws6a_c00001{word-spacing:3.024000px;}
.ws228_c00001{word-spacing:3.096000px;}
.ws1c4_c00001{word-spacing:3.096360px;}
.ws17_c00001{word-spacing:3.168000px;}
.ws16_c00001{word-spacing:3.240000px;}
.wsef_c00001{word-spacing:3.255840px;}
.ws2c5_c00001{word-spacing:3.359880px;}
.ws10c_c00001{word-spacing:3.399480px;}
.ws2a6_c00001{word-spacing:3.402000px;}
.ws2c4_c00001{word-spacing:3.425760px;}
.ws80_c00001{word-spacing:3.456000px;}
.ws1e8_c00001{word-spacing:3.491640px;}
.ws13f_c00001{word-spacing:3.495240px;}
.ws136_c00001{word-spacing:3.505320px;}
.ws2a_c00001{word-spacing:3.528000px;}
.wsfd_c00001{word-spacing:3.591000px;}
.ws2e_c00001{word-spacing:3.600000px;}
.ws87_c00001{word-spacing:3.744000px;}
.ws292_c00001{word-spacing:3.780000px;}
.ws285_c00001{word-spacing:3.816000px;}
.ws1bd_c00001{word-spacing:3.821040px;}
.wse7_c00001{word-spacing:3.878280px;}
.ws187_c00001{word-spacing:3.886920px;}
.ws2c_c00001{word-spacing:3.888000px;}
.ws34_c00001{word-spacing:3.960000px;}
.wsec_c00001{word-spacing:3.974040px;}
.ws234_c00001{word-spacing:4.032000px;}
.ws2cb_c00001{word-spacing:4.084560px;}
.ws5c_c00001{word-spacing:4.104000px;}
.wsbc_c00001{word-spacing:4.176000px;}
.ws1ba_c00001{word-spacing:4.216320px;}
.ws150_c00001{word-spacing:4.225320px;}
.ws4c_c00001{word-spacing:4.248000px;}
.wsda_c00001{word-spacing:4.309200px;}
.ws38_c00001{word-spacing:4.320000px;}
.ws88_c00001{word-spacing:4.464000px;}
.ws1d3_c00001{word-spacing:4.536000px;}
.ws1de_c00001{word-spacing:4.545720px;}
.ws117_c00001{word-spacing:4.585320px;}
.ws29_c00001{word-spacing:4.608000px;}
.ws1df_c00001{word-spacing:4.611600px;}
.ws2b_c00001{word-spacing:4.680000px;}
.ws109_c00001{word-spacing:4.692240px;}
.ws1b2_c00001{word-spacing:4.752000px;}
.ws295_c00001{word-spacing:4.860000px;}
.ws276_c00001{word-spacing:4.875120px;}
.wsc6_c00001{word-spacing:4.896000px;}
.ws24e_c00001{word-spacing:4.941000px;}
.ws131_c00001{word-spacing:4.945320px;}
.ws3b_c00001{word-spacing:4.968000px;}
.ws21e_c00001{word-spacing:5.006880px;}
.wseb_c00001{word-spacing:5.027400px;}
.ws40_c00001{word-spacing:5.040000px;}
.ws90_c00001{word-spacing:5.256000px;}
.ws1c6_c00001{word-spacing:5.270400px;}
.ws7d_c00001{word-spacing:5.328000px;}
.ws8f_c00001{word-spacing:5.400000px;}
.ws108_c00001{word-spacing:5.410440px;}
.ws20f_c00001{word-spacing:5.472000px;}
.ws2bc_c00001{word-spacing:5.533920px;}
.wsa2_c00001{word-spacing:5.544000px;}
.ws1be_c00001{word-spacing:5.599800px;}
.ws9_c00001{word-spacing:5.616000px;}
.wsa_c00001{word-spacing:5.688000px;}
.wsf1_c00001{word-spacing:5.745600px;}
.ws32_c00001{word-spacing:5.760000px;}
.wsd0_c00001{word-spacing:5.976000px;}
.ws1b9_c00001{word-spacing:5.995080px;}
.ws74_c00001{word-spacing:6.048000px;}
.ws1e5_c00001{word-spacing:6.060960px;}
.ws2f_c00001{word-spacing:6.120000px;}
.ws100_c00001{word-spacing:6.128640px;}
.ws85_c00001{word-spacing:6.264000px;}
.ws2b6_c00001{word-spacing:6.318000px;}
.ws200_c00001{word-spacing:6.336000px;}
.ws78_c00001{word-spacing:6.408000px;}
.wsde_c00001{word-spacing:6.463800px;}
.ws77_c00001{word-spacing:6.480000px;}
.ws141_c00001{word-spacing:6.511680px;}
.ws8e_c00001{word-spacing:6.624000px;}
.ws1dc_c00001{word-spacing:6.719760px;}
.ws132_c00001{word-spacing:6.751080px;}
.ws13_c00001{word-spacing:6.768000px;}
.ws188_c00001{word-spacing:6.785640px;}
.ws22_c00001{word-spacing:6.840000px;}
.wsf6_c00001{word-spacing:6.846840px;}
.ws1bf_c00001{word-spacing:6.917400px;}
.wsc8_c00001{word-spacing:6.984000px;}
.ws24c_c00001{word-spacing:7.049160px;}
.ws75_c00001{word-spacing:7.056000px;}
.ws189_c00001{word-spacing:7.115040px;}
.ws1c_c00001{word-spacing:7.128000px;}
.ws60_c00001{word-spacing:7.200000px;}
.wsf5_c00001{word-spacing:7.229880px;}
.ws23f_c00001{word-spacing:7.272000px;}
.ws67_c00001{word-spacing:7.344000px;}
.ws2ab_c00001{word-spacing:7.398000px;}
.ws83_c00001{word-spacing:7.416000px;}
.ws18a_c00001{word-spacing:7.444440px;}
.ws42_c00001{word-spacing:7.488000px;}
.ws18b_c00001{word-spacing:7.510320px;}
.wsa4_c00001{word-spacing:7.560000px;}
.ws113_c00001{word-spacing:7.565040px;}
.ws1c3_c00001{word-spacing:7.642080px;}
.wsb4_c00001{word-spacing:7.704000px;}
.ws1c2_c00001{word-spacing:7.773840px;}
.ws17f_c00001{word-spacing:7.776000px;}
.ws7c_c00001{word-spacing:7.848000px;}
.wsfa_c00001{word-spacing:7.852320px;}
.ws3e_c00001{word-spacing:7.920000px;}
.ws102_c00001{word-spacing:7.948080px;}
.ws2cc_c00001{word-spacing:7.971480px;}
.wsb2_c00001{word-spacing:8.064000px;}
.ws9c_c00001{word-spacing:8.136000px;}
.ws1c5_c00001{word-spacing:8.169120px;}
.ws1d_c00001{word-spacing:8.208000px;}
.ws86_c00001{word-spacing:8.280000px;}
.wsf2_c00001{word-spacing:8.283240px;}
.ws2cd_c00001{word-spacing:8.432640px;}
.ws1bc_c00001{word-spacing:8.498520px;}
.ws58_c00001{word-spacing:8.568000px;}
.ws54_c00001{word-spacing:8.640000px;}
.wsfc_c00001{word-spacing:8.666280px;}
.ws184_c00001{word-spacing:8.712000px;}
.ws27b_c00001{word-spacing:8.762040px;}
.ws231_c00001{word-spacing:8.856000px;}
.ws266_c00001{word-spacing:8.893800px;}
.ws14f_c00001{word-spacing:8.905680px;}
.ws76_c00001{word-spacing:8.928000px;}
.ws56_c00001{word-spacing:9.000000px;}
.ws115_c00001{word-spacing:9.001440px;}
.ws291_c00001{word-spacing:9.018000px;}
.ws22e_c00001{word-spacing:9.216000px;}
.ws1b6_c00001{word-spacing:9.223200px;}
.ws50_c00001{word-spacing:9.288000px;}
.ws1b7_c00001{word-spacing:9.289080px;}
.ws51_c00001{word-spacing:9.360000px;}
.ws112_c00001{word-spacing:9.384480px;}
.wsb5_c00001{word-spacing:9.504000px;}
.ws84_c00001{word-spacing:9.576000px;}
.ws24f_c00001{word-spacing:9.618480px;}
.ws4e_c00001{word-spacing:9.648000px;}
.ws12f_c00001{word-spacing:9.719640px;}
.wsd_c00001{word-spacing:9.720000px;}
.ws98_c00001{word-spacing:9.864000px;}
.ws225_c00001{word-spacing:9.936000px;}
.ws272_c00001{word-spacing:9.947880px;}
.ws3c_c00001{word-spacing:10.008000px;}
.ws6b_c00001{word-spacing:10.080000px;}
.wse9_c00001{word-spacing:10.102680px;}
.ws66_c00001{word-spacing:10.224000px;}
.wsd1_c00001{word-spacing:10.296000px;}
.ws125_c00001{word-spacing:10.342080px;}
.ws39_c00001{word-spacing:10.368000px;}
.ws128_c00001{word-spacing:10.437840px;}
.wsa5_c00001{word-spacing:10.440000px;}
.ws2b1_c00001{word-spacing:10.476000px;}
.wsb1_c00001{word-spacing:10.584000px;}
.ws2ac_c00001{word-spacing:10.638000px;}
.ws79_c00001{word-spacing:10.728000px;}
.ws24a_c00001{word-spacing:10.738440px;}
.ws6e_c00001{word-spacing:10.800000px;}
.wsea_c00001{word-spacing:10.820880px;}
.ws278_c00001{word-spacing:10.870200px;}
.ws277_c00001{word-spacing:11.001960px;}
.ws18e_c00001{word-spacing:11.016000px;}
.ws4b_c00001{word-spacing:11.088000px;}
.ws10a_c00001{word-spacing:11.156040px;}
.ws5a_c00001{word-spacing:11.160000px;}
.ws22f_c00001{word-spacing:11.376000px;}
.wsfb_c00001{word-spacing:11.443320px;}
.wsa1_c00001{word-spacing:11.448000px;}
.ws96_c00001{word-spacing:11.520000px;}
.ws103_c00001{word-spacing:11.539080px;}
.ws177_c00001{word-spacing:11.625120px;}
.ws45_c00001{word-spacing:11.736000px;}
.ws47_c00001{word-spacing:11.808000px;}
.ws10e_c00001{word-spacing:11.874240px;}
.ws46_c00001{word-spacing:11.880000px;}
.wsac_c00001{word-spacing:12.096000px;}
.ws235_c00001{word-spacing:12.121920px;}
.ws4a_c00001{word-spacing:12.168000px;}
.wsab_c00001{word-spacing:12.240000px;}
.ws1ec_c00001{word-spacing:12.451320px;}
.ws232_c00001{word-spacing:12.456000px;}
.ws62_c00001{word-spacing:12.528000px;}
.ws145_c00001{word-spacing:12.592440px;}
.wsc4_c00001{word-spacing:12.600000px;}
.ws29f_c00001{word-spacing:12.636000px;}
.ws223_c00001{word-spacing:12.816000px;}
.ws27d_c00001{word-spacing:12.846600px;}
.ws5f_c00001{word-spacing:12.888000px;}
.wsbb_c00001{word-spacing:12.960000px;}
.ws222_c00001{word-spacing:13.176000px;}
.wsb7_c00001{word-spacing:13.248000px;}
.ws4f_c00001{word-spacing:13.320000px;}
.ws49_c00001{word-spacing:13.464000px;}
.wsb0_c00001{word-spacing:13.536000px;}
.ws4d_c00001{word-spacing:13.608000px;}
.ws22b_c00001{word-spacing:13.680000px;}
.ws48_c00001{word-spacing:13.824000px;}
.ws251_c00001{word-spacing:13.896000px;}
.ws2b2_c00001{word-spacing:13.932000px;}
.ws1ad_c00001{word-spacing:13.968000px;}
.ws20_c00001{word-spacing:14.040000px;}
.ws230_c00001{word-spacing:14.256000px;}
.ws1ed_c00001{word-spacing:14.295960px;}
.wsa9_c00001{word-spacing:14.328000px;}
.wsc2_c00001{word-spacing:14.400000px;}
.ws101_c00001{word-spacing:14.411880px;}
.ws2b5_c00001{word-spacing:14.580000px;}
.ws7f_c00001{word-spacing:14.616000px;}
.ws1e9_c00001{word-spacing:14.625360px;}
.ws5d_c00001{word-spacing:14.688000px;}
.wsfe_c00001{word-spacing:14.747040px;}
.wsce_c00001{word-spacing:14.760000px;}
.ws241_c00001{word-spacing:14.904000px;}
.ws23_c00001{word-spacing:15.048000px;}
.ws1f5_c00001{word-spacing:15.120000px;}
.ws140_c00001{word-spacing:15.130080px;}
.ws26b_c00001{word-spacing:15.350040px;}
.ws26_c00001{word-spacing:15.408000px;}
.wsf4_c00001{word-spacing:15.465240px;}
.wsa0_c00001{word-spacing:15.480000px;}
.ws275_c00001{word-spacing:15.547680px;}
.ws1e6_c00001{word-spacing:15.679440px;}
.ws9f_c00001{word-spacing:15.768000px;}
.ws61_c00001{word-spacing:15.840000px;}
.ws221_c00001{word-spacing:16.056000px;}
.ws1eb_c00001{word-spacing:16.074720px;}
.ws27_c00001{word-spacing:16.128000px;}
.ws13b_c00001{word-spacing:16.183440px;}
.ws28_c00001{word-spacing:16.200000px;}
.ws1e7_c00001{word-spacing:16.272360px;}
.ws2b0_c00001{word-spacing:16.362000px;}
.ws57_c00001{word-spacing:16.488000px;}
.wsc9_c00001{word-spacing:16.560000px;}
.ws139_c00001{word-spacing:16.566480px;}
.ws2c9_c00001{word-spacing:16.733520px;}
.wsc1_c00001{word-spacing:16.848000px;}
.ws59_c00001{word-spacing:16.920000px;}
.wscc_c00001{word-spacing:16.992000px;}
.ws265_c00001{word-spacing:16.997040px;}
.ws21f_c00001{word-spacing:17.128800px;}
.ws93_c00001{word-spacing:17.208000px;}
.wsba_c00001{word-spacing:17.280000px;}
.ws218_c00001{word-spacing:17.524080px;}
.ws8c_c00001{word-spacing:17.568000px;}
.wscb_c00001{word-spacing:17.640000px;}
.ws219_c00001{word-spacing:17.721720px;}
.ws21a_c00001{word-spacing:17.853480px;}
.wsbd_c00001{word-spacing:17.856000px;}
.ws11_c00001{word-spacing:17.928000px;}
.ws10_c00001{word-spacing:18.000000px;}
.ws126_c00001{word-spacing:18.002880px;}
.ws8a_c00001{word-spacing:18.144000px;}
.ws279_c00001{word-spacing:18.248760px;}
.ws36_c00001{word-spacing:18.288000px;}
.ws1ab_c00001{word-spacing:18.360000px;}
.ws9e_c00001{word-spacing:18.504000px;}
.ws2bb_c00001{word-spacing:18.576000px;}
.ws26c_c00001{word-spacing:18.578160px;}
.ws82_c00001{word-spacing:18.648000px;}
.ws7e_c00001{word-spacing:18.720000px;}
.ws1b1_c00001{word-spacing:18.864000px;}
.ws7b_c00001{word-spacing:19.008000px;}
.ws81_c00001{word-spacing:19.080000px;}
.ws2c8_c00001{word-spacing:19.302840px;}
.ws91_c00001{word-spacing:19.368000px;}
.wsc5_c00001{word-spacing:19.440000px;}
.ws2c7_c00001{word-spacing:19.500480px;}
.ws2c6_c00001{word-spacing:19.566360px;}
.wsbf_c00001{word-spacing:19.728000px;}
.wsa3_c00001{word-spacing:19.800000px;}
.wsaf_c00001{word-spacing:20.016000px;}
.ws1e0_c00001{word-spacing:20.027520px;}
.ws1db_c00001{word-spacing:20.088000px;}
.ws2d4_c00001{word-spacing:20.159280px;}
.ws1ef_c00001{word-spacing:20.160000px;}
.wsae_c00001{word-spacing:20.448000px;}
.ws297_c00001{word-spacing:20.466000px;}
.ws18d_c00001{word-spacing:20.520000px;}
.ws130_c00001{word-spacing:20.540520px;}
.ws270_c00001{word-spacing:20.620440px;}
.ws271_c00001{word-spacing:20.752200px;}
.ws9b_c00001{word-spacing:20.808000px;}
.ws22d_c00001{word-spacing:20.880000px;}
.ws1fe_c00001{word-spacing:21.096000px;}
.ws2d2_c00001{word-spacing:21.147480px;}
.ws33_c00001{word-spacing:21.168000px;}
.ws9a_c00001{word-spacing:21.240000px;}
.ws127_c00001{word-spacing:21.258720px;}
.ws2d3_c00001{word-spacing:21.279240px;}
.wsc7_c00001{word-spacing:21.384000px;}
.ws6d_c00001{word-spacing:21.528000px;}
.ws116_c00001{word-spacing:21.593880px;}
.ws6c_c00001{word-spacing:21.600000px;}
.wsb3_c00001{word-spacing:21.744000px;}
.ws281_c00001{word-spacing:21.806280px;}
.ws6f_c00001{word-spacing:21.888000px;}
.ws70_c00001{word-spacing:21.960000px;}
.ws13a_c00001{word-spacing:21.976920px;}
.ws23e_c00001{word-spacing:22.176000px;}
.ws249_c00001{word-spacing:22.201560px;}
.ws97_c00001{word-spacing:22.248000px;}
.ws134_c00001{word-spacing:22.312080px;}
.ws1ff_c00001{word-spacing:22.320000px;}
.wscd_c00001{word-spacing:22.464000px;}
.ws1e2_c00001{word-spacing:22.596840px;}
.ws23d_c00001{word-spacing:22.608000px;}
.ws94_c00001{word-spacing:22.680000px;}
.ws73_c00001{word-spacing:22.968000px;}
.ws72_c00001{word-spacing:23.040000px;}
.ws267_c00001{word-spacing:23.255640px;}
.ws1f8_c00001{word-spacing:23.328000px;}
.ws252_c00001{word-spacing:23.400000px;}
.ws202_c00001{word-spacing:23.544000px;}
.ws293_c00001{word-spacing:23.598000px;}
.ws41_c00001{word-spacing:23.688000px;}
.ws1e1_c00001{word-spacing:23.716800px;}
.ws8b_c00001{word-spacing:23.760000px;}
.ws220_c00001{word-spacing:23.980320px;}
.ws1d0_c00001{word-spacing:24.048000px;}
.wsaa_c00001{word-spacing:24.120000px;}
.ws21d_c00001{word-spacing:24.375600px;}
.ws1f3_c00001{word-spacing:24.408000px;}
.ws5e_c00001{word-spacing:24.480000px;}
.ws29e_c00001{word-spacing:24.516000px;}
.ws1da_c00001{word-spacing:24.768000px;}
.wsb9_c00001{word-spacing:24.840000px;}
.ws239_c00001{word-spacing:25.100280px;}
.ws1ac_c00001{word-spacing:25.128000px;}
.wsee_c00001{word-spacing:25.184880px;}
.ws196_c00001{word-spacing:25.200000px;}
.ws299_c00001{word-spacing:25.218000px;}
.ws1ae_c00001{word-spacing:25.488000px;}
.ws254_c00001{word-spacing:25.560000px;}
.ws1f0_c00001{word-spacing:25.776000px;}
.ws226_c00001{word-spacing:25.848000px;}
.ws14d_c00001{word-spacing:25.903080px;}
.ws213_c00001{word-spacing:25.920000px;}
.ws26f_c00001{word-spacing:26.208000px;}
.ws224_c00001{word-spacing:26.280000px;}
.wsca_c00001{word-spacing:26.568000px;}
.ws229_c00001{word-spacing:26.640000px;}
.ws2d1_c00001{word-spacing:26.681400px;}
.ws2b7_c00001{word-spacing:26.712000px;}
.ws290_c00001{word-spacing:26.730000px;}
.ws2d0_c00001{word-spacing:26.813160px;}
.ws243_c00001{word-spacing:26.928000px;}
.ws9d_c00001{word-spacing:27.000000px;}
.ws144_c00001{word-spacing:27.004320px;}
.ws245_c00001{word-spacing:27.288000px;}
.ws22a_c00001{word-spacing:27.360000px;}
.ws195_c00001{word-spacing:27.576000px;}
.ws24b_c00001{word-spacing:27.720000px;}
.ws26a_c00001{word-spacing:27.801360px;}
.ws269_c00001{word-spacing:27.933120px;}
.ws19f_c00001{word-spacing:28.080000px;}
.ws44_c00001{word-spacing:28.368000px;}
.wsa7_c00001{word-spacing:28.440000px;}
.wsa6_c00001{word-spacing:28.584000px;}
.ws210_c00001{word-spacing:28.728000px;}
.ws212_c00001{word-spacing:28.800000px;}
.ws1fd_c00001{word-spacing:28.944000px;}
.ws197_c00001{word-spacing:29.088000px;}
.ws198_c00001{word-spacing:29.160000px;}
.ws2aa_c00001{word-spacing:29.322000px;}
.wsb8_c00001{word-spacing:29.448000px;}
.ws1d9_c00001{word-spacing:29.520000px;}
.ws1f4_c00001{word-spacing:29.880000px;}
.ws1b5_c00001{word-spacing:30.168000px;}
.ws248_c00001{word-spacing:30.304800px;}
.ws1b3_c00001{word-spacing:30.528000px;}
.ws259_c00001{word-spacing:30.888000px;}
.ws1f6_c00001{word-spacing:30.960000px;}
.ws2c0_c00001{word-spacing:31.240296px;}
.ws92_c00001{word-spacing:31.248000px;}
.ws1f7_c00001{word-spacing:31.320000px;}
.ws2cf_c00001{word-spacing:31.358880px;}
.ws2ce_c00001{word-spacing:31.490640px;}
.ws7a_c00001{word-spacing:31.536000px;}
.ws27a_c00001{word-spacing:31.608000px;}
.ws201_c00001{word-spacing:32.040000px;}
.ws17e_c00001{word-spacing:32.328000px;}
.ws1f2_c00001{word-spacing:32.400000px;}
.ws1cf_c00001{word-spacing:32.688000px;}
.ws1f1_c00001{word-spacing:33.120000px;}
.wsb6_c00001{word-spacing:33.408000px;}
.ws1d2_c00001{word-spacing:33.480000px;}
.ws227_c00001{word-spacing:34.200000px;}
.ws28f_c00001{word-spacing:34.398000px;}
.ws71_c00001{word-spacing:34.560000px;}
.ws25b_c00001{word-spacing:35.280000px;}
.ws247_c00001{word-spacing:37.080000px;}
.ws253_c00001{word-spacing:37.440000px;}
.ws2d5_c00001{word-spacing:38.078640px;}
.ws211_c00001{word-spacing:38.448000px;}
.ws1b_c00001{word-spacing:39.096000px;}
.ws1a_c00001{word-spacing:39.168000px;}
.ws169_c00001{word-spacing:39.857400px;}
.wsc3_c00001{word-spacing:39.888000px;}
.ws298_c00001{word-spacing:39.960000px;}
.wsc0_c00001{word-spacing:40.104000px;}
.ws217_c00001{word-spacing:40.582080px;}
.ws1f9_c00001{word-spacing:40.968000px;}
.ws1fa_c00001{word-spacing:41.400000px;}
.ws2d6_c00001{word-spacing:42.360840px;}
.ws237_c00001{word-spacing:44.208000px;}
.ws29b_c00001{word-spacing:44.946000px;}
.ws2a0_c00001{word-spacing:45.036000px;}
.ws1af_c00001{word-spacing:45.576000px;}
.ws242_c00001{word-spacing:47.448000px;}
.ws1a7_c00001{word-spacing:48.960000px;}
.ws26d_c00001{word-spacing:50.991120px;}
.ws28a_c00001{word-spacing:56.970000px;}
.ws1fc_c00001{word-spacing:57.528000px;}
.ws1fb_c00001{word-spacing:57.600000px;}
.ws2af_c00001{word-spacing:68.580000px;}
.ws2a9_c00001{word-spacing:84.996000px;}
.ws29d_c00001{word-spacing:89.100000px;}
.ws296_c00001{word-spacing:102.654000px;}
.ws129_c00001{word-spacing:115.902000px;}
.ws2a4_c00001{word-spacing:127.710000px;}
.ws19c_c00001{word-spacing:134.852160px;}
.ws192_c00001{word-spacing:134.852760px;}
.ws183_c00001{word-spacing:147.417480px;}
.ws28e_c00001{word-spacing:150.390000px;}
.ws233_c00001{word-spacing:152.097480px;}
.ws19e_c00001{word-spacing:154.997400px;}
.ws194_c00001{word-spacing:154.998000px;}
.ws204_c00001{word-spacing:158.961240px;}
.ws25c_c00001{word-spacing:158.976720px;}
.ws209_c00001{word-spacing:158.982480px;}
.ws19a_c00001{word-spacing:166.042200px;}
.ws190_c00001{word-spacing:166.042800px;}
.ws286_c00001{word-spacing:167.239080px;}
.ws284_c00001{word-spacing:167.257440px;}
.ws289_c00001{word-spacing:168.426000px;}
.wse4_c00001{word-spacing:169.182000px;}
.ws27c_c00001{word-spacing:174.399480px;}
.ws214_c00001{word-spacing:174.418920px;}
.ws1c9_c00001{word-spacing:174.441240px;}
.ws1d5_c00001{word-spacing:174.461880px;}
.ws206_c00001{word-spacing:180.201240px;}
.ws25e_c00001{word-spacing:180.212040px;}
.ws1cd_c00001{word-spacing:184.892760px;}
.ws1d7_c00001{word-spacing:184.902240px;}
.ws27f_c00001{word-spacing:189.711000px;}
.ws260_c00001{word-spacing:190.641600px;}
.ws261_c00001{word-spacing:190.642200px;}
.ws20c_c00001{word-spacing:190.652760px;}
.ws1a8_c00001{word-spacing:194.241240px;}
.ws1c8_c00001{word-spacing:197.457480px;}
.ws1d4_c00001{word-spacing:197.474400px;}
.ws205_c00001{word-spacing:203.217480px;}
.ws25d_c00001{word-spacing:203.219760px;}
.ws1aa_c00001{word-spacing:204.692760px;}
.ws1ee_c00001{word-spacing:205.038000px;}
.ws20d_c00001{word-spacing:210.798000px;}
.ws280_c00001{word-spacing:215.790120px;}
.ws1cc_c00001{word-spacing:216.082800px;}
.ws1d6_c00001{word-spacing:216.108360px;}
.ws25f_c00001{word-spacing:221.826600px;}
.ws208_c00001{word-spacing:221.842800px;}
.ws18f_c00001{word-spacing:283.751640px;}
.ws199_c00001{word-spacing:283.759920px;}
.ws28d_c00001{word-spacing:312.066000px;}
.ws236_c00001{word-spacing:324.077760px;}
.ws207_c00001{word-spacing:324.096120px;}
.ws20a_c00001{word-spacing:324.117240px;}
.ws2a5_c00001{word-spacing:324.648000px;}
.ws1ca_c00001{word-spacing:337.339080px;}
.ws257_c00001{word-spacing:353.892240px;}
.ws1a9_c00001{word-spacing:354.315600px;}
.ws1b0_c00001{word-spacing:354.321360px;}
.ws23a_c00001{word-spacing:371.600760px;}
.ws215_c00001{word-spacing:371.616120px;}
.ws21c_c00001{word-spacing:371.627040px;}
.ws15d_c00001{word-spacing:378.072720px;}
.ws17a_c00001{word-spacing:378.795840px;}
.ws182_c00001{word-spacing:378.796440px;}
.ws16f_c00001{word-spacing:382.032720px;}
.ws1a2_c00001{word-spacing:406.519800px;}
.ws1e3_c00001{word-spacing:433.119960px;}
.ws263_c00001{word-spacing:450.010080px;}
.ws273_c00001{word-spacing:460.224600px;}
.ws26e_c00001{word-spacing:460.225200px;}
.ws166_c00001{word-spacing:482.487120px;}
.ws168_c00001{word-spacing:482.491800px;}
.ws174_c00001{word-spacing:486.408600px;}
.ws178_c00001{word-spacing:486.420480px;}
.ws173_c00001{word-spacing:486.420840px;}
.ws110_c00001{word-spacing:562.111200px;}
.ws149_c00001{word-spacing:562.494240px;}
.ws138_c00001{word-spacing:562.829400px;}
.ws1ce_c00001{word-spacing:570.599640px;}
.ws258_c00001{word-spacing:587.531880px;}
.ws135_c00001{word-spacing:607.836600px;}
.ws10f_c00001{word-spacing:610.422120px;}
.ws15f_c00001{word-spacing:637.632720px;}
.ws163_c00001{word-spacing:637.655400px;}
.ws17b_c00001{word-spacing:638.351640px;}
.ws180_c00001{word-spacing:638.375520px;}
.ws1a4_c00001{word-spacing:666.075600px;}
.wsf7_c00001{word-spacing:686.216160px;}
.ws193_c00001{word-spacing:705.600000px;}
.ws19d_c00001{word-spacing:705.607800px;}
.ws1e4_c00001{word-spacing:708.458400px;}
.ws137_c00001{word-spacing:709.677360px;}
.ws274_c00001{word-spacing:725.432760px;}
.ws146_c00001{word-spacing:736.681680px;}
.ws142_c00001{word-spacing:752.529960px;}
.ws12c_c00001{word-spacing:764.021160px;}
.ws203_c00001{word-spacing:765.100320px;}
.ws20b_c00001{word-spacing:765.100920px;}
.ws1c7_c00001{word-spacing:765.741600px;}
.ws2b9_c00001{word-spacing:774.000000px;}
.ws256_c00001{word-spacing:782.294760px;}
.ws13e_c00001{word-spacing:801.846360px;}
.ws122_c00001{word-spacing:813.720600px;}
.wsd3_c00001{word-spacing:817.311600px;}
.ws133_c00001{word-spacing:833.495040px;}
.ws123_c00001{word-spacing:909.480600px;}
.ws191_c00001{word-spacing:943.272000px;}
.ws19b_c00001{word-spacing:943.272600px;}
.ws13c_c00001{word-spacing:978.810840px;}
.ws2b8_c00001{word-spacing:1008.000000px;}
.ws186_c00001{word-spacing:1379.520000px;}
.ws17d_c00001{word-spacing:1434.653400px;}
.ws181_c00001{word-spacing:1434.654000px;}
.ws20e_c00001{word-spacing:1447.270800px;}
.ws246_c00001{word-spacing:1487.312400px;}
.ws262_c00001{word-spacing:1563.547800px;}
.ws244_c00001{word-spacing:1593.088200px;}
.ws23c_c00001{word-spacing:1596.967800px;}
.ws124_c00001{word-spacing:1717.647120px;}
.ws148_c00001{word-spacing:1746.806040px;}
.ws238_c00001{word-spacing:1753.344000px;}
.ws104_c00001{word-spacing:1756.525680px;}
.ws143_c00001{word-spacing:1778.502600px;}
.ws165_c00001{word-spacing:1816.568640px;}
.ws106_c00001{word-spacing:2086.323120px;}
.ws250_c00001{word-spacing:2129.400000px;}
._13c_c00001{margin-left:-7.639114px;}
._13b_c00001{margin-left:-6.081843px;}
._7_c00001{margin-left:-4.464000px;}
._92_c00001{margin-left:-3.052872px;}
._0_c00001{margin-left:-1.231200px;}
._1_c00001{width:1.166400px;}
._17_c00001{width:2.790000px;}
._6_c00001{width:3.816000px;}
._100_c00001{width:4.968000px;}
._108_c00001{width:6.192720px;}
._2c_c00001{width:7.957440px;}
._8_c00001{width:9.936000px;}
._5_c00001{width:12.096000px;}
._16_c00001{width:14.364000px;}
._d_c00001{width:15.612480px;}
._2_c00001{width:16.984800px;}
._3_c00001{width:19.123200px;}
._105_c00001{width:21.312000px;}
._101_c00001{width:22.449600px;}
._5b_c00001{width:24.206400px;}
._19_c00001{width:26.138520px;}
._67_c00001{width:27.233640px;}
._73_c00001{width:28.789560px;}
._139_c00001{width:30.890160px;}
._13a_c00001{width:31.918104px;}
._129_c00001{width:33.206400px;}
._10a_c00001{width:35.056800px;}
._4_c00001{width:36.072000px;}
._f6_c00001{width:39.923280px;}
._138_c00001{width:45.072000px;}
._69_c00001{width:47.523600px;}
._39_c00001{width:61.043040px;}
._a7_c00001{width:64.628280px;}
._12a_c00001{width:66.299760px;}
._58_c00001{width:67.363200px;}
._136_c00001{width:78.161760px;}
._131_c00001{width:79.620840px;}
._5f_c00001{width:94.176000px;}
._107_c00001{width:102.264480px;}
._106_c00001{width:104.209200px;}
._c2_c00001{width:105.803280px;}
._10c_c00001{width:106.952400px;}
._113_c00001{width:112.712400px;}
._fa_c00001{width:117.795000px;}
._48_c00001{width:120.849948px;}
._10b_c00001{width:123.521760px;}
._11e_c00001{width:124.563600px;}
._5e_c00001{width:126.064080px;}
._3b_c00001{width:129.454200px;}
._23_c00001{width:131.983920px;}
._e3_c00001{width:134.348760px;}
._121_c00001{width:135.864000px;}
._c0_c00001{width:138.677400px;}
._2b_c00001{width:140.763240px;}
._11c_c00001{width:141.820200px;}
._3a_c00001{width:156.616200px;}
._be_c00001{width:158.639040px;}
._12b_c00001{width:162.460440px;}
._df_c00001{width:168.455160px;}
._103_c00001{width:172.686600px;}
._ce_c00001{width:175.592520px;}
._cc_c00001{width:176.953680px;}
._102_c00001{width:182.519280px;}
._122_c00001{width:183.744000px;}
._db_c00001{width:186.242760px;}
._64_c00001{width:195.394320px;}
._10d_c00001{width:197.767800px;}
._76_c00001{width:199.766160px;}
._11d_c00001{width:200.820000px;}
._104_c00001{width:204.542400px;}
._e2_c00001{width:206.599680px;}
._c3_c00001{width:209.761920px;}
._3d_c00001{width:215.644680px;}
._6e_c00001{width:223.038360px;}
._da_c00001{width:225.375480px;}
._bf_c00001{width:228.340080px;}
._5a_c00001{width:237.911760px;}
._82_c00001{width:239.302188px;}
._9a_c00001{width:243.380160px;}
._133_c00001{width:247.934280px;}
._3f_c00001{width:252.649800px;}
._7e_c00001{width:255.502080px;}
._111_c00001{width:257.761200px;}
._126_c00001{width:260.280000px;}
._a8_c00001{width:267.624000px;}
._75_c00001{width:283.284000px;}
._a6_c00001{width:286.578000px;}
._fd_c00001{width:290.060400px;}
._ab_c00001{width:301.315680px;}
._99_c00001{width:303.245640px;}
._57_c00001{width:305.185320px;}
._3c_c00001{width:310.426560px;}
._66_c00001{width:312.269400px;}
._ac_c00001{width:316.592280px;}
._56_c00001{width:317.631960px;}
._d7_c00001{width:320.703840px;}
._81_c00001{width:322.153200px;}
._98_c00001{width:326.436840px;}
._25_c00001{width:328.866480px;}
._ec_c00001{width:331.508160px;}
._4e_c00001{width:333.945720px;}
._cd_c00001{width:340.302816px;}
._ff_c00001{width:343.880400px;}
._ae_c00001{width:350.462160px;}
._78_c00001{width:352.279800px;}
._a9_c00001{width:353.446200px;}
._ef_c00001{width:357.003720px;}
._124_c00001{width:359.890680px;}
._33_c00001{width:362.847960px;}
._ca_c00001{width:364.448160px;}
._55_c00001{width:369.503280px;}
._c4_c00001{width:374.725440px;}
._b5_c00001{width:383.119200px;}
._20_c00001{width:396.586080px;}
._79_c00001{width:398.395800px;}
._12d_c00001{width:399.686400px;}
._46_c00001{width:405.030240px;}
._d2_c00001{width:407.138400px;}
._c8_c00001{width:408.851280px;}
._80_c00001{width:410.941440px;}
._11f_c00001{width:417.038400px;}
._c6_c00001{width:425.848320px;}
._c9_c00001{width:427.692960px;}
._ba_c00001{width:431.579880px;}
._ea_c00001{width:439.880760px;}
._e1_c00001{width:442.733040px;}
._9f_c00001{width:446.995800px;}
._2a_c00001{width:450.707760px;}
._fc_c00001{width:453.590400px;}
._50_c00001{width:457.009560px;}
._83_c00001{width:464.934600px;}
._85_c00001{width:467.484480px;}
._117_c00001{width:468.943200px;}
._d5_c00001{width:478.684080px;}
._7c_c00001{width:486.872640px;}
._4a_c00001{width:491.003640px;}
._e9_c00001{width:492.670080px;}
._49_c00001{width:496.992132px;}
._b9_c00001{width:499.963320px;}
._e5_c00001{width:505.733760px;}
._77_c00001{width:506.919600px;}
._11a_c00001{width:510.286920px;}
._135_c00001{width:514.368000px;}
._18_c00001{width:515.824560px;}
._de_c00001{width:519.661440px;}
._68_c00001{width:522.510480px;}
._4f_c00001{width:526.842360px;}
._4c_c00001{width:531.256320px;}
._8e_c00001{width:533.588040px;}
._45_c00001{width:535.604400px;}
._7b_c00001{width:538.569000px;}
._a1_c00001{width:543.792960px;}
._1e_c00001{width:545.797440px;}
._72_c00001{width:549.458640px;}
._e0_c00001{width:552.423240px;}
._4d_c00001{width:556.178400px;}
._d6_c00001{width:561.165840px;}
._bb_c00001{width:563.274000px;}
._eb_c00001{width:566.897400px;}
._41_c00001{width:570.474360px;}
._e6_c00001{width:576.713520px;}
._4b_c00001{width:582.247440px;}
._a3_c00001{width:586.332000px;}
._1f_c00001{width:596.502360px;}
._42_c00001{width:598.585680px;}
._8a_c00001{width:604.915560px;}
._109_c00001{width:607.093200px;}
._40_c00001{width:611.300520px;}
._1d_c00001{width:612.607320px;}
._63_c00001{width:614.761920px;}
._47_c00001{width:617.163840px;}
._43_c00001{width:622.104840px;}
._3e_c00001{width:624.674160px;}
._6f_c00001{width:626.457960px;}
._12_c00001{width:629.125920px;}
._5d_c00001{width:631.632600px;}
._ee_c00001{width:633.172680px;}
._a0_c00001{width:634.877640px;}
._ed_c00001{width:637.850160px;}
._e_c00001{width:643.712040px;}
._9d_c00001{width:645.379920px;}
._a4_c00001{width:647.402760px;}
._e7_c00001{width:651.638520px;}
._d9_c00001{width:653.727240px;}
._10e_c00001{width:657.526800px;}
._87_c00001{width:660.447000px;}
._7a_c00001{width:664.814520px;}
._bd_c00001{width:665.915040px;}
._dd_c00001{width:670.348440px;}
._7f_c00001{width:673.754760px;}
._d8_c00001{width:676.060560px;}
._86_c00001{width:677.114640px;}
._9_c00001{width:678.155040px;}
._51_c00001{width:680.309640px;}
._15_c00001{width:683.739720px;}
._bc_c00001{width:688.248360px;}
._32_c00001{width:698.151600px;}
._60_c00001{width:700.467120px;}
._44_c00001{width:711.306360px;}
._84_c00001{width:715.786200px;}
._e8_c00001{width:716.972040px;}
._12e_c00001{width:722.147400px;}
._112_c00001{width:730.347720px;}
._11_c00001{width:732.435840px;}
._9e_c00001{width:737.150760px;}
._a2_c00001{width:746.571600px;}
._b7_c00001{width:748.040400px;}
._7d_c00001{width:750.702600px;}
._74_c00001{width:755.860680px;}
._d4_c00001{width:759.201120px;}
._dc_c00001{width:769.610160px;}
._b8_c00001{width:771.454800px;}
._b_c00001{width:774.428040px;}
._53_c00001{width:775.638720px;}
._d0_c00001{width:788.385960px;}
._93_c00001{width:793.080360px;}
._10_c00001{width:798.220800px;}
._9c_c00001{width:801.693720px;}
._9b_c00001{width:812.715120px;}
._f9_c00001{width:815.974920px;}
._f5_c00001{width:818.523360px;}
._134_c00001{width:840.525600px;}
._af_c00001{width:845.128080px;}
._61_c00001{width:852.150960px;}
._fb_c00001{width:855.590400px;}
._34_c00001{width:860.416920px;}
._cb_c00001{width:863.310960px;}
._97_c00001{width:876.887640px;}
._65_c00001{width:881.802000px;}
._cf_c00001{width:888.062400px;}
._6a_c00001{width:895.160520px;}
._e4_c00001{width:899.393760px;}
._110_c00001{width:910.663200px;}
._8b_c00001{width:936.563400px;}
._11b_c00001{width:942.786000px;}
._119_c00001{width:952.855200px;}
._c1_c00001{width:957.961080px;}
._c_c00001{width:960.629760px;}
._d3_c00001{width:962.572680px;}
._d1_c00001{width:976.671000px;}
._f1_c00001{width:978.650760px;}
._c7_c00001{width:981.282600px;}
._a_c00001{width:982.959120px;}
._6c_c00001{width:985.353120px;}
._24_c00001{width:988.591680px;}
._118_c00001{width:1008.943200px;}
._127_c00001{width:1020.240000px;}
._f_c00001{width:1022.795280px;}
._12c_c00001{width:1062.134400px;}
._38_c00001{width:1063.972080px;}
._123_c00001{width:1066.957800px;}
._59_c00001{width:1074.679920px;}
._29_c00001{width:1082.597400px;}
._70_c00001{width:1089.109080px;}
._a5_c00001{width:1105.268760px;}
._94_c00001{width:1109.553840px;}
._c5_c00001{width:1111.066200px;}
._b6_c00001{width:1115.677800px;}
._10f_c00001{width:1123.135200px;}
._22_c00001{width:1129.598280px;}
._1a_c00001{width:1137.084840px;}
._8d_c00001{width:1152.119160px;}
._36_c00001{width:1154.178000px;}
._26_c00001{width:1160.641800px;}
._13_c00001{width:1174.670640px;}
._b4_c00001{width:1190.536920px;}
._137_c00001{width:1207.641960px;}
._ad_c00001{width:1209.246840px;}
._30_c00001{width:1213.070400px;}
._b3_c00001{width:1215.288360px;}
._b2_c00001{width:1221.829920px;}
._90_c00001{width:1226.716200px;}
._2d_c00001{width:1242.277200px;}
._115_c00001{width:1243.515600px;}
._125_c00001{width:1262.948400px;}
._12f_c00001{width:1278.004800px;}
._1b_c00001{width:1283.789160px;}
._aa_c00001{width:1285.187040px;}
._114_c00001{width:1311.480600px;}
._2e_c00001{width:1314.097200px;}
._89_c00001{width:1315.393560px;}
._96_c00001{width:1322.571960px;}
._8c_c00001{width:1341.149400px;}
._14_c00001{width:1350.342360px;}
._35_c00001{width:1386.108720px;}
._116_c00001{width:1388.469000px;}
._27_c00001{width:1405.421640px;}
._88_c00001{width:1412.969400px;}
._128_c00001{width:1414.487160px;}
._2f_c00001{width:1420.582320px;}
._5c_c00001{width:1436.304240px;}
._b0_c00001{width:1438.292160px;}
._132_c00001{width:1443.096000px;}
._120_c00001{width:1457.496000px;}
._130_c00001{width:1496.072400px;}
._95_c00001{width:1535.463720px;}
._1c_c00001{width:1537.666200px;}
._28_c00001{width:1541.592360px;}
._71_c00001{width:1574.677440px;}
._fe_c00001{width:1579.465800px;}
._8f_c00001{width:1583.326440px;}
._91_c00001{width:1613.651760px;}
._52_c00001{width:1635.820200px;}
._37_c00001{width:1666.607040px;}
._21_c00001{width:1702.834920px;}
._31_c00001{width:1706.491080px;}
._f0_c00001{width:1728.989640px;}
._f3_c00001{width:1734.389640px;}
._54_c00001{width:1742.305320px;}
._f2_c00001{width:1771.515360px;}
._f8_c00001{width:1779.895800px;}
._f4_c00001{width:1792.495800px;}
._f7_c00001{width:1794.799680px;}
._62_c00001{width:1803.448080px;}
._6d_c00001{width:1808.571240px;}
._6b_c00001{width:2032.218720px;}
._b1_c00001{width:2099.727360px;}
.fc4_c00001{color:rgb(33,56,93);}
.fc3_c00001{color:rgb(255,0,0);}
.fc2_c00001{color:transparent;}
.fc5_c00001{color:rgb(255,255,255);}
.fc1_c00001{color:rgb(0,0,0);}
.fc0_c00001{color:rgb(35,31,32);}
.fs5_c00001{font-size:42.120000px;}
.fs2_c00001{font-size:47.880000px;}
.fs3_c00001{font-size:54.000000px;}
.fs1_c00001{font-size:65.880000px;}
.fs0_c00001{font-size:72.000000px;}
.fs4_c00001{font-size:75.894664px;}
.fsc_c00001{font-size:82.712400px;}
.fse_c00001{font-size:86.074800px;}
.fsb_c00001{font-size:90.672600px;}
.fsd_c00001{font-size:101.182800px;}
.fs7_c00001{font-size:118.209000px;}
.fsa_c00001{font-size:140.419200px;}
.fs8_c00001{font-size:142.438800px;}
.fs6_c00001{font-size:177.313200px;}
.fsf_c00001{font-size:180.852600px;}
.fs9_c00001{font-size:270.249600px;}
.y8ee_c00001{bottom:-15.660900px;}
.y606_c00001{bottom:-15.660750px;}
.y5e7_c00001{bottom:-15.660600px;}
.y945_c00001{bottom:-15.659250px;}
.y948_c00001{bottom:-15.659100px;}
.y950_c00001{bottom:-15.657750px;}
.y937_c00001{bottom:-15.657600px;}
.y0_c00001{bottom:0.000000px;}
.y77_c00001{bottom:2.699250px;}
.y73_c00001{bottom:2.699400px;}
.y1ae_c00001{bottom:2.700750px;}
.yc6_c00001{bottom:2.700900px;}
.y5f_c00001{bottom:2.702250px;}
.y12a_c00001{bottom:2.702400px;}
.y6d_c00001{bottom:2.789250px;}
.y6a_c00001{bottom:2.789400px;}
.y110_c00001{bottom:2.790750px;}
.y1ab_c00001{bottom:2.790900px;}
.y83_c00001{bottom:2.792250px;}
.y113_c00001{bottom:2.792400px;}
.y47e_c00001{bottom:2.879400px;}
.y473_c00001{bottom:2.880900px;}
.y452_c00001{bottom:2.882400px;}
.y11c_c00001{bottom:2.969250px;}
.y91_c00001{bottom:2.969400px;}
.y8a_c00001{bottom:2.972400px;}
.y95_c00001{bottom:3.059400px;}
.y4a3_c00001{bottom:3.149400px;}
.y7cf_c00001{bottom:3.239250px;}
.y7ac_c00001{bottom:3.239400px;}
.y1c16_c00001{bottom:3.240900px;}
.y65f_c00001{bottom:3.329400px;}
.y53d_c00001{bottom:3.419250px;}
.y7f9_c00001{bottom:3.512250px;}
.y1a0_c00001{bottom:3.599400px;}
.y14c_c00001{bottom:3.689400px;}
.y1d2_c00001{bottom:3.870900px;}
.y62b_c00001{bottom:3.959250px;}
.y363_c00001{bottom:3.959400px;}
.y11a8_c00001{bottom:3.960900px;}
.y4b_c00001{bottom:3.962250px;}
.ye23_c00001{bottom:3.962400px;}
.y62c_c00001{bottom:4.049250px;}
.y364_c00001{bottom:4.049400px;}
.y11a9_c00001{bottom:4.050900px;}
.y4c_c00001{bottom:4.052250px;}
.ye24_c00001{bottom:4.052400px;}
.y131e_c00001{bottom:4.139400px;}
.y1324_c00001{bottom:4.140900px;}
.y312_c00001{bottom:4.409250px;}
.y328_c00001{bottom:4.409400px;}
.y928_c00001{bottom:4.410750px;}
.y31d_c00001{bottom:4.410900px;}
.y8e5_c00001{bottom:4.412250px;}
.y909_c00001{bottom:4.412400px;}
.y8c7_c00001{bottom:4.499100px;}
.y320_c00001{bottom:4.499250px;}
.y306_c00001{bottom:4.499400px;}
.y32f_c00001{bottom:4.500750px;}
.y5f5_c00001{bottom:4.500900px;}
.y5d4_c00001{bottom:4.502250px;}
.y310_c00001{bottom:4.502400px;}
.y1ac2_c00001{bottom:5.399400px;}
.y1cb6_c00001{bottom:5.667300px;}
.y7a_c00001{bottom:16.469250px;}
.y76_c00001{bottom:16.469400px;}
.y1b1_c00001{bottom:16.470750px;}
.y24f_c00001{bottom:16.470900px;}
.y61_c00001{bottom:16.472250px;}
.y22e_c00001{bottom:16.472400px;}
.y1ed_c00001{bottom:16.559250px;}
.y69_c00001{bottom:16.559400px;}
.y3ab_c00001{bottom:16.560750px;}
.y153_c00001{bottom:16.560900px;}
.y116_c00001{bottom:16.562250px;}
.y112_c00001{bottom:16.562400px;}
.y6c8_c00001{bottom:16.649400px;}
.y11b_c00001{bottom:16.739250px;}
.yb1_c00001{bottom:16.739400px;}
.y4cb_c00001{bottom:16.740900px;}
.ye8_c00001{bottom:16.829400px;}
.y535_c00001{bottom:16.919400px;}
.y51e_c00001{bottom:16.920900px;}
.y4ce_c00001{bottom:16.922400px;}
.y793_c00001{bottom:17.369250px;}
.y1d1_c00001{bottom:17.640900px;}
.y94_c00001{bottom:18.539400px;}
.y4a2_c00001{bottom:18.719400px;}
.y1bdc_c00001{bottom:18.809400px;}
.y67f_c00001{bottom:20.069250px;}
.y4e_c00001{bottom:20.069400px;}
.y66c_c00001{bottom:20.070750px;}
.y3a6_c00001{bottom:20.070900px;}
.y62e_c00001{bottom:20.072250px;}
.y366_c00001{bottom:20.072400px;}
.y4f_c00001{bottom:21.509250px;}
.y3c1_c00001{bottom:21.509400px;}
.y3a7_c00001{bottom:21.510900px;}
.y367_c00001{bottom:21.512400px;}
.y9c3_c00001{bottom:24.569250px;}
.y93e_c00001{bottom:24.569400px;}
.ya2a_c00001{bottom:24.570750px;}
.y31c_c00001{bottom:24.570900px;}
.ya1c_c00001{bottom:24.572250px;}
.y96b_c00001{bottom:24.572400px;}
.y5c8_c00001{bottom:24.659250px;}
.y93c_c00001{bottom:24.659400px;}
.y335_c00001{bottom:24.660750px;}
.y9e7_c00001{bottom:24.660900px;}
.ya03_c00001{bottom:24.662250px;}
.y337_c00001{bottom:24.662400px;}
.y1b44_c00001{bottom:25.199250px;}
.y138f_c00001{bottom:29.339250px;}
.y1636_c00001{bottom:29.339400px;}
.y1b3b_c00001{bottom:29.519250px;}
.y1287_c00001{bottom:29.519400px;}
.y1b33_c00001{bottom:29.520750px;}
.y1272_c00001{bottom:29.520900px;}
.y1b17_c00001{bottom:29.522250px;}
.y132a_c00001{bottom:29.789400px;}
.y1748_c00001{bottom:29.792400px;}
.y300_c00001{bottom:30.239250px;}
.y5c2_c00001{bottom:30.239400px;}
.y2ce_c00001{bottom:30.240750px;}
.y590_c00001{bottom:30.240900px;}
.y207_c00001{bottom:30.242400px;}
.y66_c00001{bottom:30.329250px;}
.ycd_c00001{bottom:30.329400px;}
.y1ad_c00001{bottom:30.330750px;}
.y10e_c00001{bottom:30.330900px;}
.y170_c00001{bottom:30.332250px;}
.y5d_c00001{bottom:30.332400px;}
.y833_c00001{bottom:30.419250px;}
.ye5_c00001{bottom:30.419400px;}
.y472_c00001{bottom:30.420900px;}
.y450_c00001{bottom:30.422400px;}
.y53b_c00001{bottom:30.959400px;}
.y4bc_c00001{bottom:30.960900px;}
.y652_c00001{bottom:30.962400px;}
.y98_c00001{bottom:34.019400px;}
.y369_c00001{bottom:38.519250px;}
.y51_c00001{bottom:38.519400px;}
.y1cb5_c00001{bottom:38.593500px;}
.y1a9b_c00001{bottom:40.859250px;}
.y158a_c00001{bottom:40.859400px;}
.y1a96_c00001{bottom:40.860750px;}
.y1a7d_c00001{bottom:40.862250px;}
.y1a9f_c00001{bottom:40.949250px;}
.y167d_c00001{bottom:40.949400px;}
.y1cbd_c00001{bottom:42.731400px;}
.y1781_c00001{bottom:43.829400px;}
.y1979_c00001{bottom:43.830900px;}
.y196e_c00001{bottom:43.832400px;}
.y1705_c00001{bottom:43.919250px;}
.y1901_c00001{bottom:43.919400px;}
.y1751_c00001{bottom:43.920900px;}
.y70_c00001{bottom:44.099250px;}
.ya2_c00001{bottom:44.099400px;}
.yc3_c00001{bottom:44.100750px;}
.ya7_c00001{bottom:44.100900px;}
.y13e_c00001{bottom:44.102250px;}
.y1d4_c00001{bottom:44.102400px;}
.yfd_c00001{bottom:44.189250px;}
.y55_c00001{bottom:44.189400px;}
.yf9_c00001{bottom:44.190750px;}
.y212_c00001{bottom:44.190900px;}
.ybd_c00001{bottom:44.192250px;}
.y235_c00001{bottom:44.192400px;}
.y878_c00001{bottom:44.639250px;}
.y7a9_c00001{bottom:44.639400px;}
.y86b_c00001{bottom:44.640750px;}
.y824_c00001{bottom:44.642250px;}
.ybd6_c00001{bottom:44.729250px;}
.ya40_c00001{bottom:44.729400px;}
.yc4f_c00001{bottom:44.730900px;}
.yc82_c00001{bottom:44.732400px;}
.yc93_c00001{bottom:44.819250px;}
.ybf4_c00001{bottom:44.819400px;}
.yc88_c00001{bottom:44.820750px;}
.ybc1_c00001{bottom:44.820900px;}
.yc66_c00001{bottom:44.822250px;}
.y7eb_c00001{bottom:45.179250px;}
.y131c_c00001{bottom:45.539250px;}
.y1336_c00001{bottom:45.539400px;}
.y1322_c00001{bottom:45.540900px;}
.y1381_c00001{bottom:45.629250px;}
.y1334_c00001{bottom:45.629400px;}
.y1b99_c00001{bottom:45.630750px;}
.y1072_c00001{bottom:45.630900px;}
.y1a3e_c00001{bottom:45.632250px;}
.y1308_c00001{bottom:45.632400px;}
.y13c8_c00001{bottom:45.719250px;}
.y156a_c00001{bottom:45.719400px;}
.y197b_c00001{bottom:45.720900px;}
.y1971_c00001{bottom:45.722400px;}
.y1b4b_c00001{bottom:51.389250px;}
.y11eb_c00001{bottom:54.989250px;}
.y105f_c00001{bottom:55.079250px;}
.yeba_c00001{bottom:55.079400px;}
.y1cb4_c00001{bottom:56.304750px;}
.y12f_c00001{bottom:57.869250px;}
.y144_c00001{bottom:57.869400px;}
.y1e3_c00001{bottom:57.870750px;}
.y546_c00001{bottom:57.870900px;}
.y126_c00001{bottom:57.872250px;}
.y21f_c00001{bottom:57.959250px;}
.y101_c00001{bottom:57.959400px;}
.yea_c00001{bottom:57.960900px;}
.y64c_c00001{bottom:57.962400px;}
.y3c3_c00001{bottom:58.229400px;}
.y3a9_c00001{bottom:58.230900px;}
.y374_c00001{bottom:58.232400px;}
.y398_c00001{bottom:58.319250px;}
.y642_c00001{bottom:58.319400px;}
.y3c7_c00001{bottom:58.859400px;}
.y3b5_c00001{bottom:58.860900px;}
.y38f_c00001{bottom:58.862400px;}
.y294_c00001{bottom:58.949250px;}
.ye75_c00001{bottom:60.659250px;}
.ye4a_c00001{bottom:60.659400px;}
.ye59_c00001{bottom:60.660750px;}
.yec7_c00001{bottom:60.660900px;}
.ye30_c00001{bottom:60.662400px;}
.yf22_c00001{bottom:60.749250px;}
.y1_c00001{bottom:61.748550px;}
.yb5f_c00001{bottom:64.889400px;}
.yaae_c00001{bottom:64.890900px;}
.yb9c_c00001{bottom:64.892400px;}
.ya5a_c00001{bottom:64.980900px;}
.yb70_c00001{bottom:64.982250px;}
.y8d_c00001{bottom:65.069400px;}
.y86_c00001{bottom:65.072400px;}
.y1314_c00001{bottom:68.759400px;}
.y15aa_c00001{bottom:68.849250px;}
.y104f_c00001{bottom:68.849400px;}
.y15a5_c00001{bottom:68.850750px;}
.y1053_c00001{bottom:68.850900px;}
.y157a_c00001{bottom:68.852250px;}
.y1339_c00001{bottom:68.852400px;}
.y479_c00001{bottom:70.289400px;}
.y46f_c00001{bottom:70.290900px;}
.y43d_c00001{bottom:70.292400px;}
.y1bee_c00001{bottom:70.559400px;}
.y1c05_c00001{bottom:70.562400px;}
.y218_c00001{bottom:71.729250px;}
.y103_c00001{bottom:71.729400px;}
.y685_c00001{bottom:71.730750px;}
.y837_c00001{bottom:71.730900px;}
.y6cb_c00001{bottom:71.732250px;}
.y3fd_c00001{bottom:71.732400px;}
.y633_c00001{bottom:71.909250px;}
.y57b_c00001{bottom:71.909400px;}
.y3c2_c00001{bottom:71.999250px;}
.y7ca_c00001{bottom:71.999400px;}
.y3a8_c00001{bottom:72.000750px;}
.y7b3_c00001{bottom:72.000900px;}
.y373_c00001{bottom:72.002250px;}
.yef2_c00001{bottom:73.349400px;}
.y1ab5_c00001{bottom:74.519250px;}
.ye4e_c00001{bottom:83.789250px;}
.ye77_c00001{bottom:83.789400px;}
.y1057_c00001{bottom:83.790750px;}
.ye73_c00001{bottom:83.790900px;}
.y1048_c00001{bottom:83.792250px;}
.ye6c_c00001{bottom:83.792400px;}
.ye79_c00001{bottom:83.879400px;}
.yf15_c00001{bottom:83.880900px;}
.yf03_c00001{bottom:83.882400px;}
.y5ef_c00001{bottom:85.049400px;}
.yb02_c00001{bottom:85.052400px;}
.y23a_c00001{bottom:85.499400px;}
.y86e_c00001{bottom:85.500900px;}
.y4b4_c00001{bottom:85.502400px;}
.y840_c00001{bottom:85.589250px;}
.y246_c00001{bottom:85.589400px;}
.y7d_c00001{bottom:85.592250px;}
.y273_c00001{bottom:85.592400px;}
.y1c11_c00001{bottom:85.769250px;}
.y1c12_c00001{bottom:86.039250px;}
.y891_c00001{bottom:86.129400px;}
.y11df_c00001{bottom:91.979250px;}
.y133e_c00001{bottom:91.979400px;}
.y1899_c00001{bottom:91.980750px;}
.y1640_c00001{bottom:91.980900px;}
.y186b_c00001{bottom:91.982250px;}
.y1562_c00001{bottom:91.982400px;}
.y182c_c00001{bottom:92.069400px;}
.y17f9_c00001{bottom:92.070900px;}
.y1ab3_c00001{bottom:97.649400px;}
.y1abb_c00001{bottom:97.739250px;}
.y1cb3_c00001{bottom:98.430750px;}
.y12a3_c00001{bottom:98.819400px;}
.y559_c00001{bottom:99.270900px;}
.y876_c00001{bottom:99.359400px;}
.y869_c00001{bottom:99.360900px;}
.y81d_c00001{bottom:99.362400px;}
.yb23_c00001{bottom:105.119400px;}
.y92c_c00001{bottom:105.210750px;}
.y61e_c00001{bottom:105.210900px;}
.y354_c00001{bottom:105.212250px;}
.y17a2_c00001{bottom:106.919250px;}
.y10bb_c00001{bottom:106.922400px;}
.y991_c00001{bottom:106.965000px;}
.ye7d_c00001{bottom:107.009250px;}
.y1094_c00001{bottom:107.009400px;}
.y1280_c00001{bottom:107.010750px;}
.y126d_c00001{bottom:107.012250px;}
.y1068_c00001{bottom:107.012400px;}
.yd8_c00001{bottom:108.493500px;}
.yff_c00001{bottom:108.495000px;}
.yc1c_c00001{bottom:108.855000px;}
.yad7_c00001{bottom:110.745000px;}
.y1bf8_c00001{bottom:111.959400px;}
.y7c0_c00001{bottom:112.095000px;}
.y167c_c00001{bottom:112.185000px;}
.y18a7_c00001{bottom:112.322400px;}
.y9d5_c00001{bottom:112.543500px;}
.y9f4_c00001{bottom:112.545000px;}
.y2e2_c00001{bottom:112.634400px;}
.y97_c00001{bottom:112.725000px;}
.y1c6a_c00001{bottom:112.859400px;}
.y1c67_c00001{bottom:113.129400px;}
.y6fb_c00001{bottom:113.219400px;}
.yc1d_c00001{bottom:113.354400px;}
.y8b7_c00001{bottom:113.623410px;}
.y1140_c00001{bottom:113.658870px;}
.y1162_c00001{bottom:113.675340px;}
.yc4a_c00001{bottom:113.892000px;}
.yc8b_c00001{bottom:113.893500px;}
.yc96_c00001{bottom:113.895000px;}
.y1c6f_c00001{bottom:114.029250px;}
.yb7e_c00001{bottom:114.525000px;}
.y95b_c00001{bottom:114.703500px;}
.y1790_c00001{bottom:115.109250px;}
.y1a53_c00001{bottom:115.109400px;}
.y1a3b_c00001{bottom:115.112400px;}
.y1a99_c00001{bottom:115.199250px;}
.y1568_c00001{bottom:115.199400px;}
.y1a92_c00001{bottom:115.200750px;}
.y1a73_c00001{bottom:115.202250px;}
.yadc_c00001{bottom:115.239630px;}
.y1403_c00001{bottom:115.244400px;}
.y19ec_c00001{bottom:115.424250px;}
.y24_c00001{bottom:115.424400px;}
.y157_c00001{bottom:115.783500px;}
.y111f_c00001{bottom:116.383440px;}
.yda0_c00001{bottom:116.414400px;}
.y587_c00001{bottom:117.045000px;}
.yfb9_c00001{bottom:117.399810px;}
.y5b5_c00001{bottom:118.036110px;}
.yc84_c00001{bottom:118.387470px;}
.ydfc_c00001{bottom:118.389810px;}
.yc4b_c00001{bottom:118.394400px;}
.ydd0_c00001{bottom:118.397460px;}
.y6b9_c00001{bottom:118.575000px;}
.yb80_c00001{bottom:119.017470px;}
.y963_c00001{bottom:119.111070px;}
.yff8_c00001{bottom:119.379810px;}
.y120a_c00001{bottom:122.039400px;}
.y19f_c00001{bottom:122.355000px;}
.y51b_c00001{bottom:122.445000px;}
.y4ca_c00001{bottom:122.533500px;}
.ycd2_c00001{bottom:122.618460px;}
.ycc8_c00001{bottom:122.622420px;}
.y861_c00001{bottom:122.895000px;}
.y13f9_c00001{bottom:123.074400px;}
.y12e0_c00001{bottom:123.254400px;}
.y167b_c00001{bottom:123.524400px;}
.ybeb_c00001{bottom:123.525000px;}
.y1567_c00001{bottom:124.335000px;}
.yf7d_c00001{bottom:124.514400px;}
.yed_c00001{bottom:125.063400px;}
.y16c9_c00001{bottom:125.144400px;}
.y341_c00001{bottom:125.279400px;}
.y779_c00001{bottom:125.325000px;}
.y158_c00001{bottom:125.414400px;}
.y4cc_c00001{bottom:125.504400px;}
.y866_c00001{bottom:125.696640px;}
.yd71_c00001{bottom:125.774250px;}
.yd5c_c00001{bottom:125.774400px;}
.yb01_c00001{bottom:126.312000px;}
.y19a6_c00001{bottom:127.394400px;}
.y7c3_c00001{bottom:128.663400px;}
.ycfd_c00001{bottom:128.925000px;}
.ya27_c00001{bottom:129.728460px;}
.y2a5_c00001{bottom:129.915000px;}
.y11f0_c00001{bottom:130.139250px;}
.y103b_c00001{bottom:130.139400px;}
.y121e_c00001{bottom:130.140900px;}
.y370_c00001{bottom:130.185000px;}
.y67c_c00001{bottom:130.278000px;}
.y669_c00001{bottom:130.282140px;}
.y20e_c00001{bottom:130.815000px;}
.y45_c00001{bottom:130.994400px;}
.y99_c00001{bottom:131.264400px;}
.y998_c00001{bottom:131.530350px;}
.y999_c00001{bottom:131.534400px;}
.yc1b_c00001{bottom:131.535000px;}
.y99b_c00001{bottom:131.535120px;}
.yfc_c00001{bottom:131.579400px;}
.yf8_c00001{bottom:131.580900px;}
.yb7_c00001{bottom:131.582400px;}
.y9a_c00001{bottom:131.804400px;}
.y1aee_c00001{bottom:132.434400px;}
.y3be_c00001{bottom:132.892590px;}
.y3a3_c00001{bottom:132.895380px;}
.ya8a_c00001{bottom:132.972150px;}
.y1177_c00001{bottom:133.040100px;}
.yf65_c00001{bottom:133.064250px;}
.yd04_c00001{bottom:133.421070px;}
.y588_c00001{bottom:133.604400px;}
.yef0_c00001{bottom:133.783410px;}
.ybb1_c00001{bottom:134.317320px;}
.y778_c00001{bottom:134.324400px;}
.y118e_c00001{bottom:134.654460px;}
.y77a_c00001{bottom:134.954400px;}
.y6c5_c00001{bottom:135.138900px;}
.y710_c00001{bottom:135.315000px;}
.yadb_c00001{bottom:135.398910px;}
.yed0_c00001{bottom:136.979250px;}
.ye53_c00001{bottom:136.979400px;}
.yec9_c00001{bottom:136.980750px;}
.yeb2_c00001{bottom:136.982250px;}
.ye3a_c00001{bottom:136.982400px;}
.y12cc_c00001{bottom:137.005620px;}
.ye40_c00001{bottom:137.069400px;}
.yee8_c00001{bottom:137.072400px;}
.yd9f_c00001{bottom:137.114400px;}
.ya11_c00001{bottom:137.188650px;}
.y9df_c00001{bottom:137.194860px;}
.y9e2_c00001{bottom:137.198190px;}
.ya15_c00001{bottom:137.199630px;}
.ya5c_c00001{bottom:137.205120px;}
.y1cae_c00001{bottom:137.662500px;}
.y1603_c00001{bottom:137.924400px;}
.ydfb_c00001{bottom:138.104400px;}
.ydcf_c00001{bottom:138.194400px;}
.y192f_c00001{bottom:138.329250px;}
.y15ad_c00001{bottom:138.329400px;}
.y18fd_c00001{bottom:138.330900px;}
.y15cf_c00001{bottom:138.332400px;}
.y1741_c00001{bottom:138.373140px;}
.yc83_c00001{bottom:138.464400px;}
.y19d_c00001{bottom:138.645000px;}
.yee_c00001{bottom:138.824400px;}
.yec_c00001{bottom:138.828900px;}
.y51c_c00001{bottom:139.004400px;}
.yb7f_c00001{bottom:139.094400px;}
.y962_c00001{bottom:139.270350px;}
.yb4c_c00001{bottom:139.270440px;}
.yb52_c00001{bottom:139.274130px;}
.yfe4_c00001{bottom:139.449810px;}
.y865_c00001{bottom:139.462140px;}
.y143e_c00001{bottom:139.635000px;}
.y11ef_c00001{bottom:140.175000px;}
.y1777_c00001{bottom:140.309400px;}
.y20f_c00001{bottom:140.444400px;}
.y1597_c00001{bottom:140.535000px;}
.y127c_c00001{bottom:140.892000px;}
.y1283_c00001{bottom:140.893500px;}
.y1288_c00001{bottom:140.895000px;}
.y1740_c00001{bottom:141.350520px;}
.yf12_c00001{bottom:141.972000px;}
.yf18_c00001{bottom:141.973500px;}
.y6c6_c00001{bottom:141.974400px;}
.yf1b_c00001{bottom:141.975000px;}
.y12a6_c00001{bottom:142.155000px;}
.y7c4_c00001{bottom:142.424400px;}
.y7c2_c00001{bottom:142.428900px;}
.yb3f_c00001{bottom:143.140200px;}
.yb22_c00001{bottom:143.144400px;}
.yb27_c00001{bottom:143.146560px;}
.y19a8_c00001{bottom:143.242650px;}
.y113f_c00001{bottom:143.815440px;}
.y1161_c00001{bottom:143.831910px;}
.y155_c00001{bottom:144.133500px;}
.y67b_c00001{bottom:144.139260px;}
.y668_c00001{bottom:144.143400px;}
.y1a5a_c00001{bottom:144.219630px;}
.y81a_c00001{bottom:144.505230px;}
.y167a_c00001{bottom:144.584400px;}
.y6ba_c00001{bottom:144.899400px;}
.y11ad_c00001{bottom:145.169400px;}
.yf8c_c00001{bottom:145.214400px;}
.y992_c00001{bottom:145.439400px;}
.y95c_c00001{bottom:145.440900px;}
.y16c8_c00001{bottom:145.844400px;}
.y1b96_c00001{bottom:145.847550px;}
.ybe9_c00001{bottom:146.115000px;}
.y12f5_c00001{bottom:146.294400px;}
.y2a7_c00001{bottom:146.383140px;}
.yd4c_c00001{bottom:146.474250px;}
.y23_c00001{bottom:146.474400px;}
.y111e_c00001{bottom:146.622360px;}
.y3bd_c00001{bottom:146.753850px;}
.y3a2_c00001{bottom:146.756640px;}
.y156b_c00001{bottom:146.834400px;}
.y19a5_c00001{bottom:148.094400px;}
.y19e_c00001{bottom:148.274400px;}
.y1701_c00001{bottom:148.364400px;}
.y6c4_c00001{bottom:148.904400px;}
.y1a8e_c00001{bottom:149.447550px;}
.y1af0_c00001{bottom:149.627550px;}
.ybea_c00001{bottom:150.614400px;}
.yb05_c00001{bottom:150.968190px;}
.y67d_c00001{bottom:150.974130px;}
.yf37_c00001{bottom:150.975000px;}
.y66a_c00001{bottom:150.978270px;}
.y16cb_c00001{bottom:151.338900px;}
.y4c7_c00001{bottom:151.423500px;}
.y997_c00001{bottom:151.689630px;}
.y99a_c00001{bottom:151.694400px;}
.y8b6_c00001{bottom:151.784400px;}
.y457_c00001{bottom:151.875000px;}
.y70f_c00001{bottom:151.877640px;}
.y725_c00001{bottom:151.878990px;}
.yeb_c00001{bottom:152.594400px;}
.y1441_c00001{bottom:152.687640px;}
.y1a8d_c00001{bottom:152.954400px;}
.y1aed_c00001{bottom:153.134400px;}
.y864_c00001{bottom:153.227640px;}
.y1034_c00001{bottom:153.269400px;}
.y2a8_c00001{bottom:153.314400px;}
.y10a8_c00001{bottom:153.359250px;}
.y11fc_c00001{bottom:153.359400px;}
.y10a2_c00001{bottom:153.360750px;}
.y11bb_c00001{bottom:153.360900px;}
.y1084_c00001{bottom:153.362250px;}
.yd03_c00001{bottom:153.580350px;}
.y156_c00001{bottom:153.764400px;}
.y684_c00001{bottom:153.809250px;}
.yc49_c00001{bottom:154.123500px;}
.y12df_c00001{bottom:154.124400px;}
.y4c9_c00001{bottom:154.128900px;}
.y17cd_c00001{bottom:154.304250px;}
.y13f8_c00001{bottom:154.304400px;}
.ye6b_c00001{bottom:154.392000px;}
.ye72_c00001{bottom:154.393500px;}
.ye76_c00001{bottom:154.395000px;}
.y25a_c00001{bottom:154.529400px;}
.y360_c00001{bottom:154.664400px;}
.yc1a_c00001{bottom:154.932000px;}
.yc24_c00001{bottom:154.933500px;}
.yc2e_c00001{bottom:154.935000px;}
.yada_c00001{bottom:155.475840px;}
.y7c1_c00001{bottom:156.194400px;}
.y5b4_c00001{bottom:156.197100px;}
.y1a26_c00001{bottom:156.460920px;}
.y1a1b_c00001{bottom:156.464400px;}
.y19a7_c00001{bottom:157.008150px;}
.ya10_c00001{bottom:157.265580px;}
.y9de_c00001{bottom:157.271790px;}
.y9e1_c00001{bottom:157.275120px;}
.ya14_c00001{bottom:157.276560px;}
.ya5b_c00001{bottom:157.364400px;}
.y1b95_c00001{bottom:157.904400px;}
.y67a_c00001{bottom:157.904760px;}
.y667_c00001{bottom:157.908900px;}
.y72b_c00001{bottom:157.949400px;}
.y71d_c00001{bottom:157.950900px;}
.y6ec_c00001{bottom:157.952400px;}
.y777_c00001{bottom:158.178900px;}
.yd9e_c00001{bottom:158.259810px;}
.y819_c00001{bottom:158.270730px;}
.y1bc8_c00001{bottom:158.535000px;}
.y1602_c00001{bottom:158.624400px;}
.y711_c00001{bottom:158.804400px;}
.y409_c00001{bottom:158.805000px;}
.yfe3_c00001{bottom:159.164400px;}
.y209_c00001{bottom:159.165000px;}
.ye20_c00001{bottom:159.249810px;}
.ydfa_c00001{bottom:159.257460px;}
.ydce_c00001{bottom:159.339810px;}
.y1b29_c00001{bottom:159.344400px;}
.y961_c00001{bottom:159.429630px;}
.y18f7_c00001{bottom:159.437820px;}
.y93_c00001{bottom:159.975000px;}
.yecd_c00001{bottom:160.109250px;}
.y1192_c00001{bottom:160.109400px;}
.yec5_c00001{bottom:160.110750px;}
.yea3_c00001{bottom:160.112250px;}
.yff7_c00001{bottom:160.149810px;}
.y867_c00001{bottom:160.170240px;}
.y10d6_c00001{bottom:160.199250px;}
.ye9c_c00001{bottom:160.199400px;}
.y1243_c00001{bottom:160.200750px;}
.y122b_c00001{bottom:160.202250px;}
.ye33_c00001{bottom:160.202400px;}
.y2a6_c00001{bottom:160.244400px;}
.y3bc_c00001{bottom:160.519350px;}
.y3a1_c00001{bottom:160.522140px;}
.ycd1_c00001{bottom:160.779450px;}
.ycc7_c00001{bottom:160.783410px;}
.y1903_c00001{bottom:161.459400px;}
.y15c5_c00001{bottom:161.460900px;}
.y150_c00001{bottom:161.508900px;}
.y40a_c00001{bottom:161.594400px;}
.y1aef_c00001{bottom:161.684400px;}
.y44_c00001{bottom:162.044400px;}
.y1052_c00001{bottom:162.493500px;}
.y1826_c00001{bottom:162.494400px;}
.y105b_c00001{bottom:162.495000px;}
.y11f4_c00001{bottom:162.676830px;}
.y159e_c00001{bottom:163.034850px;}
.y1176_c00001{bottom:163.196670px;}
.yb3e_c00001{bottom:163.299480px;}
.yb26_c00001{bottom:163.305840px;}
.y586_c00001{bottom:163.308900px;}
.y127d_c00001{bottom:163.394400px;}
.y1703_c00001{bottom:164.203140px;}
.yf13_c00001{bottom:164.474400px;}
.y519_c00001{bottom:164.565000px;}
.y12a9_c00001{bottom:164.650710px;}
.y118d_c00001{bottom:164.893380px;}
.y1814_c00001{bottom:164.969250px;}
.y16ca_c00001{bottom:165.104400px;}
.y1a59_c00001{bottom:165.374400px;}
.y123c_c00001{bottom:165.375000px;}
.y70e_c00001{bottom:165.643140px;}
.y724_c00001{bottom:165.644490px;}
.yf7c_c00001{bottom:165.914400px;}
.y1783_c00001{bottom:165.959400px;}
.y1b2a_c00001{bottom:166.188900px;}
.y16c7_c00001{bottom:166.544400px;}
.y1440_c00001{bottom:166.548900px;}
.y863_c00001{bottom:166.993140px;}
.y19b_c00001{bottom:166.995000px;}
.y12cb_c00001{bottom:167.162190px;}
.yd70_c00001{bottom:167.174250px;}
.yd5b_c00001{bottom:167.174400px;}
.y51a_c00001{bottom:167.354400px;}
.y3bf_c00001{bottom:167.366190px;}
.y3a4_c00001{bottom:167.368980px;}
.ya26_c00001{bottom:167.889450px;}
.y4c8_c00001{bottom:167.894400px;}
.y1827_c00001{bottom:167.988600px;}
.y17f3_c00001{bottom:168.164400px;}
.y458_c00001{bottom:168.434400px;}
.y19a4_c00001{bottom:168.794400px;}
.y1700_c00001{bottom:169.064400px;}
.y1bc7_c00001{bottom:169.874400px;}
.y35f_c00001{bottom:171.045000px;}
.yb04_c00001{bottom:171.127470px;}
.ya89_c00001{bottom:171.133140px;}
.y773_c00001{bottom:171.219900px;}
.y96_c00001{bottom:171.404400px;}
.y1262_c00001{bottom:171.495000px;}
.y679_c00001{bottom:171.670260px;}
.y666_c00001{bottom:171.674400px;}
.y996_c00001{bottom:171.848910px;}
.y776_c00001{bottom:171.944400px;}
.y19db_c00001{bottom:172.034400px;}
.y818_c00001{bottom:172.131990px;}
.y1b28_c00001{bottom:172.214400px;}
.y1b39_c00001{bottom:172.218000px;}
.ybb0_c00001{bottom:172.478310px;}
.y152_c00001{bottom:172.483500px;}
.y1677_c00001{bottom:172.754250px;}
.yf38_c00001{bottom:173.474400px;}
.yd02_c00001{bottom:173.657280px;}
.y1aec_c00001{bottom:173.834400px;}
.y113e_c00001{bottom:174.054360px;}
.y1160_c00001{bottom:174.070830px;}
.y3bb_c00001{bottom:174.284850px;}
.yc81_c00001{bottom:174.285000px;}
.y3a0_c00001{bottom:174.287640px;}
.yf64_c00001{bottom:174.464250px;}
.y11d8_c00001{bottom:175.139400px;}
.yad9_c00001{bottom:175.635120px;}
.y20c_c00001{bottom:175.637640px;}
.y18f9_c00001{bottom:175.641750px;}
.yb7d_c00001{bottom:175.722000px;}
.y1925_c00001{bottom:176.492250px;}
.y19c_c00001{bottom:176.624400px;}
.y111d_c00001{bottom:176.861280px;}
.ye6e_c00001{bottom:176.900370px;}
.y14f_c00001{bottom:177.074400px;}
.y1c93_c00001{bottom:177.164250px;}
.y1402_c00001{bottom:177.344400px;}
.ya0f_c00001{bottom:177.424860px;}
.y9dd_c00001{bottom:177.431070px;}
.yb4b_c00001{bottom:177.431430px;}
.y9e0_c00001{bottom:177.434400px;}
.y1b90_c00001{bottom:177.435000px;}
.yb51_c00001{bottom:177.435120px;}
.ya13_c00001{bottom:177.435840px;}
.y1a25_c00001{bottom:177.520920px;}
.y19eb_c00001{bottom:177.524250px;}
.y22_c00001{bottom:177.524400px;}
.yc18_c00001{bottom:177.525000px;}
.yd9d_c00001{bottom:177.974400px;}
.y1702_c00001{bottom:178.064400px;}
.y1377_c00001{bottom:178.154250px;}
.ye7_c00001{bottom:178.245000px;}
.y1525_c00001{bottom:178.874400px;}
.y152f_c00001{bottom:178.876680px;}
.ye1f_c00001{bottom:178.964400px;}
.y81b_c00001{bottom:178.978830px;}
.ydcd_c00001{bottom:179.054400px;}
.y1601_c00001{bottom:179.324400px;}
.y6c2_c00001{bottom:179.336640px;}
.y1b6b_c00001{bottom:179.412780px;}
.y1b6c_c00001{bottom:179.502900px;}
.y70d_c00001{bottom:179.504400px;}
.y723_c00001{bottom:179.505750px;}
.y960_c00001{bottom:179.588910px;}
.y1635_c00001{bottom:179.595000px;}
.yff6_c00001{bottom:179.864400px;}
.y1c3f_c00001{bottom:179.865000px;}
.y156d_c00001{bottom:180.047400px;}
.yfe2_c00001{bottom:180.309660px;}
.y143f_c00001{bottom:180.314400px;}
.y173b_c00001{bottom:180.852000px;}
.y1744_c00001{bottom:180.853500px;}
.y862_c00001{bottom:180.854400px;}
.y1745_c00001{bottom:180.855000px;}
.y1aea_c00001{bottom:181.124400px;}
.ye9_c00001{bottom:181.214400px;}
.y7bc_c00001{bottom:181.845000px;}
.yc19_c00001{bottom:182.024400px;}
.y154_c00001{bottom:182.114400px;}
.y6a9_c00001{bottom:182.162250px;}
.y18f6_c00001{bottom:182.660520px;}
.y13af_c00001{bottom:182.924400px;}
.yc1_c00001{bottom:182.969250px;}
.y143d_c00001{bottom:183.014400px;}
.y1486_c00001{bottom:183.113550px;}
.y1825_c00001{bottom:183.194400px;}
.ye5c_c00001{bottom:183.239400px;}
.yb3d_c00001{bottom:183.458760px;}
.yb25_c00001{bottom:183.465120px;}
.y1378_c00001{bottom:183.648600px;}
.y1483_c00001{bottom:184.454400px;}
.y1a52_c00001{bottom:184.815000px;}
.y1055_c00001{bottom:184.991700px;}
.y17cc_c00001{bottom:185.354250px;}
.y13f7_c00001{bottom:185.354400px;}
.y774_c00001{bottom:185.625000px;}
.y1862_c00001{bottom:185.627460px;}
.y2a0_c00001{bottom:185.805000px;}
.y817_c00001{bottom:185.897490px;}
.y11f3_c00001{bottom:185.899530px;}
.y1605_c00001{bottom:186.162300px;}
.y628_c00001{bottom:186.434400px;}
.ybe8_c00001{bottom:186.435000px;}
.yf8b_c00001{bottom:186.614400px;}
.y772_c00001{bottom:186.704400px;}
.y132f_c00001{bottom:186.883740px;}
.y11ca_c00001{bottom:187.060440px;}
.y18f4_c00001{bottom:187.064400px;}
.y3eb_c00001{bottom:187.155000px;}
.y16c6_c00001{bottom:187.244400px;}
.y706_c00001{bottom:187.428900px;}
.yd4b_c00001{bottom:187.874250px;}
.yd6b_c00001{bottom:187.874400px;}
.y123f_c00001{bottom:187.885650px;}
.y3ba_c00001{bottom:188.050350px;}
.y39f_c00001{bottom:188.053140px;}
.y1637_c00001{bottom:188.234400px;}
.yeee_c00001{bottom:188.325000px;}
.y13b0_c00001{bottom:188.418600px;}
.y775_c00001{bottom:188.594400px;}
.y678_c00001{bottom:188.595840px;}
.y665_c00001{bottom:188.597640px;}
.y2a3_c00001{bottom:188.603400px;}
.y17f2_c00001{bottom:188.864400px;}
.y15d7_c00001{bottom:189.179400px;}
.y1bf3_c00001{bottom:189.269250px;}
.y18f8_c00001{bottom:189.407250px;}
.y20d_c00001{bottom:189.494400px;}
.y20b_c00001{bottom:189.498900px;}
.y1c2f_c00001{bottom:189.539400px;}
.y16ff_c00001{bottom:189.764400px;}
.y408_c00001{bottom:189.948900px;}
.y581_c00001{bottom:190.302000px;}
.ye46_c00001{bottom:190.753410px;}
.y1bc6_c00001{bottom:190.934400px;}
.yb03_c00001{bottom:191.204400px;}
.y1b6a_c00001{bottom:191.564400px;}
.y8c_c00001{bottom:191.835000px;}
.y995_c00001{bottom:192.008190px;}
.y156c_c00001{bottom:192.104250px;}
.ye9a_c00001{bottom:192.283410px;}
.y1a8c_c00001{bottom:192.377550px;}
.y517_c00001{bottom:192.915000px;}
.y43_c00001{bottom:193.094400px;}
.y6c1_c00001{bottom:193.102140px;}
.y584_c00001{bottom:193.103400px;}
.y1569_c00001{bottom:193.184400px;}
.y1175_c00001{bottom:193.435590px;}
.y1676_c00001{bottom:193.454250px;}
.y4c6_c00001{bottom:193.542000px;}
.yd01_c00001{bottom:193.816560px;}
.ya59_c00001{bottom:193.905000px;}
.y1263_c00001{bottom:193.994400px;}
.y455_c00001{bottom:194.082000px;}
.y476_c00001{bottom:194.083500px;}
.y47f_c00001{bottom:194.085000px;}
.y353_c00001{bottom:194.352000px;}
.y17f5_c00001{bottom:194.354790px;}
.y5b3_c00001{bottom:194.358090px;}
.y10c9_c00001{bottom:194.445000px;}
.y1cad_c00001{bottom:194.549880px;}
.y1895_c00001{bottom:194.984400px;}
.y1638_c00001{bottom:195.077550px;}
.y118c_c00001{bottom:195.132300px;}
.y199_c00001{bottom:195.345000px;}
.yad8_c00001{bottom:195.794400px;}
.y1a8b_c00001{bottom:195.884400px;}
.y10fc_c00001{bottom:195.885000px;}
.y17b2_c00001{bottom:196.064400px;}
.yf36_c00001{bottom:196.517550px;}
.y1485_c00001{bottom:196.879050px;}
.y12ca_c00001{bottom:197.401110px;}
.ya0e_c00001{bottom:197.584140px;}
.y9dc_c00001{bottom:197.590350px;}
.ya12_c00001{bottom:197.595120px;}
.yc7f_c00001{bottom:197.685000px;}
.yeed_c00001{bottom:198.044400px;}
.y1604_c00001{bottom:198.219150px;}
.y11a5_c00001{bottom:198.316830px;}
.y7bf_c00001{bottom:198.413400px;}
.y132d_c00001{bottom:198.674400px;}
.y359_c00001{bottom:198.849630px;}
.y35e_c00001{bottom:198.854250px;}
.y729_c00001{bottom:198.899400px;}
.y716_c00001{bottom:198.900900px;}
.y6dc_c00001{bottom:198.902400px;}
.ycd0_c00001{bottom:198.940440px;}
.ycc6_c00001{bottom:198.944400px;}
.yfb8_c00001{bottom:199.119810px;}
.yd9c_c00001{bottom:199.127460px;}
.y19a1_c00001{bottom:199.214400px;}
.y12aa_c00001{bottom:199.304400px;}
.y1013_c00001{bottom:199.484400px;}
.y816_c00001{bottom:199.662990px;}
.y95f_c00001{bottom:199.748190px;}
.y1b92_c00001{bottom:199.933410px;}
.ye6f_c00001{bottom:199.934400px;}
.y152e_c00001{bottom:199.936680px;}
.ye6d_c00001{bottom:200.024250px;}
.y1600_c00001{bottom:200.024400px;}
.ydf9_c00001{bottom:200.109810px;}
.ydcc_c00001{bottom:200.117460px;}
.yc47_c00001{bottom:200.205000px;}
.y1970_c00001{bottom:200.562000px;}
.y197a_c00001{bottom:200.563500px;}
.y197d_c00001{bottom:200.565000px;}
.y132e_c00001{bottom:200.649240px;}
.yff5_c00001{bottom:201.009810px;}
.y159d_c00001{bottom:201.195840px;}
.yb7c_c00001{bottom:201.372000px;}
.y3b9_c00001{bottom:201.911610px;}
.y39e_c00001{bottom:201.914400px;}
.yc80_c00001{bottom:202.184400px;}
.y677_c00001{bottom:202.361340px;}
.y664_c00001{bottom:202.363140px;}
.y19d8_c00001{bottom:202.367820px;}
.y2a2_c00001{bottom:202.368900px;}
.y12a8_c00001{bottom:202.811700px;}
.y627_c00001{bottom:202.905000px;}
.y705_c00001{bottom:202.994400px;}
.y20a_c00001{bottom:203.264400px;}
.y173d_c00001{bottom:203.351700px;}
.yb3c_c00001{bottom:203.618040px;}
.yb24_c00001{bottom:203.624400px;}
.y407_c00001{bottom:203.714400px;}
.y113d_c00001{bottom:204.293280px;}
.y115f_c00001{bottom:204.309750px;}
.y70c_c00001{bottom:204.438900px;}
.y722_c00001{bottom:204.439260px;}
.yc48_c00001{bottom:204.704400px;}
.y1bf2_c00001{bottom:204.839400px;}
.y1bf5_c00001{bottom:205.109250px;}
.y1c08_c00001{bottom:205.109400px;}
.y1482_c00001{bottom:205.154400px;}
.y19a_c00001{bottom:205.244400px;}
.y1a18_c00001{bottom:205.604400px;}
.y18f5_c00001{bottom:205.784400px;}
.y9f5_c00001{bottom:205.919400px;}
.y9d6_c00001{bottom:205.920900px;}
.ya25_c00001{bottom:206.050440px;}
.y18c5_c00001{bottom:206.324250px;}
.y860_c00001{bottom:206.415000px;}
.y1598_c00001{bottom:206.459400px;}
.y6c0_c00001{bottom:206.867640px;}
.y583_c00001{bottom:206.868900px;}
.y6c3_c00001{bottom:206.879610px;}
.y111c_c00001{bottom:207.017850px;}
.y1aeb_c00001{bottom:207.047850px;}
.ye4_c00001{bottom:207.135000px;}
.yf7b_c00001{bottom:207.314400px;}
.y1a56_c00001{bottom:207.320520px;}
.y15ac_c00001{bottom:207.809400px;}
.y4c4_c00001{bottom:208.122000px;}
.y1054_c00001{bottom:208.214400px;}
.y17f4_c00001{bottom:208.216050px;}
.y13fa_c00001{bottom:208.394400px;}
.yd6f_c00001{bottom:208.574250px;}
.y21_c00001{bottom:208.574400px;}
.y11f5_c00001{bottom:208.934400px;}
.yf0f_c00001{bottom:208.937550px;}
.ybe7_c00001{bottom:209.115000px;}
.ya88_c00001{bottom:209.294130px;}
.y2a4_c00001{bottom:209.299530px;}
.y533_c00001{bottom:209.482320px;}
.y516_c00001{bottom:209.485380px;}
.y17f1_c00001{bottom:209.564400px;}
.y90_c00001{bottom:210.374400px;}
.y1bbf_c00001{bottom:210.465000px;}
.y475_c00001{bottom:210.552270px;}
.y454_c00001{bottom:210.553140px;}
.y456_c00001{bottom:210.554400px;}
.ybaf_c00001{bottom:210.639300px;}
.y1484_c00001{bottom:210.644550px;}
.yeef_c00001{bottom:210.824400px;}
.y1897_c00001{bottom:210.828900px;}
.y123e_c00001{bottom:211.009530px;}
.yad6_c00001{bottom:211.455000px;}
.y18c6_c00001{bottom:211.818540px;}
.y173f_c00001{bottom:212.088750px;}
.y994_c00001{bottom:212.167470px;}
.y198_c00001{bottom:212.174400px;}
.y7be_c00001{bottom:212.178900px;}
.y1bc_c00001{bottom:212.179890px;}
.y151_c00001{bottom:212.444400px;}
.y14c7_c00001{bottom:212.913330px;}
.y1b38_c00001{bottom:213.158640px;}
.y1b27_c00001{bottom:213.159480px;}
.y1251_c00001{bottom:213.299250px;}
.y1059_c00001{bottom:213.299400px;}
.y102c_c00001{bottom:213.300900px;}
.y1224_c00001{bottom:213.302400px;}
.y1199_c00001{bottom:213.389400px;}
.y815_c00001{bottom:213.524250px;}
.y1822_c00001{bottom:213.614400px;}
.y397_c00001{bottom:213.705000px;}
.y585_c00001{bottom:213.799530px;}
.yaac_c00001{bottom:213.975000px;}
.yd00_c00001{bottom:213.975840px;}
.y1675_c00001{bottom:214.154250px;}
.y143c_c00001{bottom:214.249650px;}
.y771_c00001{bottom:214.515000px;}
.ycc4_c00001{bottom:215.325000px;}
.yb4a_c00001{bottom:215.592420px;}
.y1863_c00001{bottom:215.594400px;}
.yb50_c00001{bottom:215.596110px;}
.y1894_c00001{bottom:215.684400px;}
.yf63_c00001{bottom:215.864250px;}
.y2a1_c00001{bottom:216.134400px;}
.y676_c00001{bottom:216.222600px;}
.y663_c00001{bottom:216.224400px;}
.y17cb_c00001{bottom:216.314250px;}
.y12de_c00001{bottom:216.314400px;}
.y1c43_c00001{bottom:216.629400px;}
.y17b1_c00001{bottom:216.764400px;}
.y39c_c00001{bottom:216.862140px;}
.y10ca_c00001{bottom:216.944400px;}
.y1b94_c00001{bottom:217.393200px;}
.y1b8f_c00001{bottom:217.397550px;}
.y199c_c00001{bottom:217.574400px;}
.ya0d_c00001{bottom:217.743420px;}
.y9db_c00001{bottom:217.749630px;}
.y4c5_c00001{bottom:217.754400px;}
.yc17_c00001{bottom:217.843500px;}
.yc2d_c00001{bottom:217.845000px;}
.ya58_c00001{bottom:217.935000px;}
.y1278_c00001{bottom:218.025000px;}
.y70b_c00001{bottom:218.204400px;}
.y721_c00001{bottom:218.204760px;}
.y10fd_c00001{bottom:218.384400px;}
.yaad_c00001{bottom:218.474400px;}
.y579_c00001{bottom:218.564250px;}
.y19da_c00001{bottom:218.568900px;}
.yfb7_c00001{bottom:218.834400px;}
.yd9b_c00001{bottom:218.924400px;}
.y358_c00001{bottom:218.926560px;}
.yf10_c00001{bottom:219.015000px;}
.y1277_c00001{bottom:219.467400px;}
.y19d6_c00001{bottom:219.822780px;}
.ycc5_c00001{bottom:219.824400px;}
.y95e_c00001{bottom:219.825120px;}
.ydcb_c00001{bottom:219.914400px;}
.yad4_c00001{bottom:220.003500px;}
.yaef_c00001{bottom:220.005000px;}
.y1973_c00001{bottom:220.188900px;}
.yc7d_c00001{bottom:220.365000px;}
.y1012_c00001{bottom:220.629810px;}
.y582_c00001{bottom:220.634400px;}
.y1373_c00001{bottom:220.635000px;}
.yff4_c00001{bottom:220.724400px;}
.y6bf_c00001{bottom:220.728900px;}
.yf0e_c00001{bottom:220.994400px;}
.yfe1_c00001{bottom:221.169810px;}
.y1c75_c00001{bottom:221.489400px;}
.y196f_c00001{bottom:221.537550px;}
.y16fd_c00001{bottom:222.614250px;}
.y10c8_c00001{bottom:222.887550px;}
.y85f_c00001{bottom:222.985380px;}
.y874_c00001{bottom:222.991050px;}
.y1972_c00001{bottom:223.064250px;}
.ye6a_c00001{bottom:223.067550px;}
.y1b69_c00001{bottom:223.076640px;}
.y532_c00001{bottom:223.247820px;}
.y515_c00001{bottom:223.250880px;}
.y1174_c00001{bottom:223.674510px;}
.yb3b_c00001{bottom:223.694970px;}
.ye6_c00001{bottom:223.784400px;}
.y16c5_c00001{bottom:223.968450px;}
.y11f2_c00001{bottom:224.060520px;}
.y42_c00001{bottom:224.144400px;}
.y196_c00001{bottom:224.235000px;}
.y474_c00001{bottom:224.413530px;}
.y453_c00001{bottom:224.414400px;}
.yad5_c00001{bottom:224.504400px;}
.y1896_c00001{bottom:224.594400px;}
.yc7e_c00001{bottom:224.864400px;}
.y11c9_c00001{bottom:225.221430px;}
.y1942_c00001{bottom:225.224400px;}
.y118b_c00001{bottom:225.288870px;}
.y13ab_c00001{bottom:225.402000px;}
.y13b3_c00001{bottom:225.403500px;}
.y13b4_c00001{bottom:225.405000px;}
.y19d7_c00001{bottom:225.491700px;}
.y1be5_c00001{bottom:225.539400px;}
.y1bfe_c00001{bottom:225.542400px;}
.y1be7_c00001{bottom:225.809400px;}
.y1c01_c00001{bottom:225.812400px;}
.y173e_c00001{bottom:225.854250px;}
.y8f_c00001{bottom:225.858900px;}
.y7bd_c00001{bottom:225.944400px;}
.y12a7_c00001{bottom:226.034400px;}
.y1a17_c00001{bottom:226.304400px;}
.y92_c00001{bottom:226.484400px;}
.y173c_c00001{bottom:226.574400px;}
.y61d_c00001{bottom:226.753500px;}
.yed1_c00001{bottom:226.755000px;}
.y18c4_c00001{bottom:227.024250px;}
.yb7b_c00001{bottom:227.115000px;}
.y811_c00001{bottom:227.205000px;}
.y35d_c00001{bottom:227.384400px;}
.y11a1_c00001{bottom:227.477550px;}
.y12c9_c00001{bottom:227.640030px;}
.yb00_c00001{bottom:227.832000px;}
.yf8a_c00001{bottom:228.014400px;}
.y143b_c00001{bottom:228.015150px;}
.yf31_c00001{bottom:228.102000px;}
.y1522_c00001{bottom:228.104400px;}
.y16fe_c00001{bottom:228.108600px;}
.y206_c00001{bottom:228.912000px;}
.ye45_c00001{bottom:228.914400px;}
.yd4a_c00001{bottom:229.274250px;}
.yd6a_c00001{bottom:229.274400px;}
.y1b93_c00001{bottom:229.450050px;}
.y1b8e_c00001{bottom:229.454400px;}
.y1824_c00001{bottom:229.462650px;}
.y661_c00001{bottom:229.815000px;}
.y17f0_c00001{bottom:230.264400px;}
.ye99_c00001{bottom:230.444400px;}
.y39b_c00001{bottom:230.627640px;}
.y1943_c00001{bottom:230.713140px;}
.y1276_c00001{bottom:231.524250px;}
.yb7a_c00001{bottom:231.614400px;}
.y15ff_c00001{bottom:231.707550px;}
.y19d5_c00001{bottom:231.974400px;}
.y10a0_c00001{bottom:232.150710px;}
.y993_c00001{bottom:232.244400px;}
.y19d9_c00001{bottom:232.334400px;}
.y5b2_c00001{bottom:232.519080px;}
.y17b4_c00001{bottom:232.608900px;}
.y1bc3_c00001{bottom:232.959180px;}
.y11a6_c00001{bottom:232.964400px;}
.y14d_c00001{bottom:233.055000px;}
.y2e0_c00001{bottom:233.503500px;}
.y303_c00001{bottom:233.505000px;}
.y406_c00001{bottom:233.594400px;}
.y1240_c00001{bottom:234.044400px;}
.ycff_c00001{bottom:234.135120px;}
.y1560_c00001{bottom:234.227550px;}
.y1b37_c00001{bottom:234.313410px;}
.y1b26_c00001{bottom:234.314250px;}
.y1821_c00001{bottom:234.314400px;}
.y113c_c00001{bottom:234.449850px;}
.y115e_c00001{bottom:234.466320px;}
.y6be_c00001{bottom:234.494400px;}
.y1674_c00001{bottom:234.854250px;}
.y10c7_c00001{bottom:234.944400px;}
.ye69_c00001{bottom:235.124400px;}
.y1a8a_c00001{bottom:235.217850px;}
.y1329_c00001{bottom:235.305000px;}
.y14c6_c00001{bottom:236.037210px;}
.y44f_c00001{bottom:236.202000px;}
.y471_c00001{bottom:236.203500px;}
.y47d_c00001{bottom:236.205000px;}
.y1893_c00001{bottom:236.384400px;}
.y1985_c00001{bottom:236.429400px;}
.y4c2_c00001{bottom:236.472000px;}
.y11a4_c00001{bottom:236.477820px;}
.y85e_c00001{bottom:236.750880px;}
.y873_c00001{bottom:236.756550px;}
.y518_c00001{bottom:237.104250px;}
.y531_c00001{bottom:237.109080px;}
.y514_c00001{bottom:237.112140px;}
.y111b_c00001{bottom:237.256770px;}
.y17b0_c00001{bottom:237.464400px;}
.ya0c_c00001{bottom:237.820350px;}
.y9da_c00001{bottom:237.826560px;}
.ycc2_c00001{bottom:238.005000px;}
.y1b91_c00001{bottom:238.094400px;}
.y1a89_c00001{bottom:238.724400px;}
.y18f3_c00001{bottom:238.989900px;}
.y357_c00001{bottom:239.085840px;}
.y16c4_c00001{bottom:239.174400px;}
.y1780_c00001{bottom:239.355000px;}
.y159c_c00001{bottom:239.356830px;}
.y662_c00001{bottom:239.444400px;}
.y11a0_c00001{bottom:239.534400px;}
.y19ef_c00001{bottom:239.624250px;}
.y20_c00001{bottom:239.624400px;}
.yfb6_c00001{bottom:239.979810px;}
.y95d_c00001{bottom:239.984400px;}
.yd9a_c00001{bottom:240.069810px;}
.y147e_c00001{bottom:240.164400px;}
.yad3_c00001{bottom:240.165000px;}
.y1011_c00001{bottom:240.344400px;}
.y707_c00001{bottom:240.435000px;}
.y1b66_c00001{bottom:240.437550px;}
.yc16_c00001{bottom:240.522000px;}
.y127a_c00001{bottom:240.523410px;}
.yc23_c00001{bottom:240.523500px;}
.yc2c_c00001{bottom:240.525000px;}
.y1a58_c00001{bottom:240.527550px;}
.y19a0_c00001{bottom:240.614400px;}
.y197_c00001{bottom:240.704400px;}
.yfe0_c00001{bottom:240.884400px;}
.ye1e_c00001{bottom:240.969810px;}
.ydf8_c00001{bottom:240.977310px;}
.y1861_c00001{bottom:240.978900px;}
.y1be4_c00001{bottom:241.019400px;}
.ydca_c00001{bottom:241.059660px;}
.y1bde_c00001{bottom:241.289400px;}
.y8e_c00001{bottom:241.424400px;}
.yf11_c00001{bottom:241.514400px;}
.y1679_c00001{bottom:241.697550px;}
.y29e_c00001{bottom:241.785000px;}
.yff3_c00001{bottom:241.869810px;}
.ya57_c00001{bottom:241.872000px;}
.y15a0_c00001{bottom:241.877550px;}
.y18ff_c00001{bottom:242.325480px;}
.y18f2_c00001{bottom:242.327460px;}
.ycc3_c00001{bottom:242.414400px;}
.y14e_c00001{bottom:242.684400px;}
.y76b_c00001{bottom:242.865000px;}
.y1374_c00001{bottom:243.131550px;}
.y1823_c00001{bottom:243.228150px;}
.y16fc_c00001{bottom:243.314250px;}
.y1a1a_c00001{bottom:243.501900px;}
.y15fe_c00001{bottom:243.764400px;}
.y813_c00001{bottom:243.768900px;}
.yb3a_c00001{bottom:243.854250px;}
.ya24_c00001{bottom:244.211430px;}
.y39a_c00001{bottom:244.393140px;}
.y39d_c00001{bottom:244.405110px;}
.y448_c00001{bottom:244.488900px;}
.y3c9_c00001{bottom:244.889400px;}
.ye3f_c00001{bottom:245.295000px;}
.y208_c00001{bottom:245.384400px;}
.y76f_c00001{bottom:245.576640px;}
.y1860_c00001{bottom:245.834400px;}
.y1941_c00001{bottom:245.924400px;}
.y4c3_c00001{bottom:246.104250px;}
.y19a3_c00001{bottom:246.112800px;}
.y35c_c00001{bottom:246.192000px;}
.y1b68_c00001{bottom:246.200520px;}
.y155f_c00001{bottom:246.284400px;}
.y57a_c00001{bottom:246.285000px;}
.y17b3_c00001{bottom:246.374400px;}
.y1219_c00001{bottom:246.385650px;}
.ye95_c00001{bottom:246.825000px;}
.y402_c00001{bottom:246.915000px;}
.y132c_c00001{bottom:247.003140px;}
.y1a16_c00001{bottom:247.004400px;}
.y11f1_c00001{bottom:247.184400px;}
.y17ca_c00001{bottom:247.364250px;}
.y12dd_c00001{bottom:247.364400px;}
.y3db_c00001{bottom:247.409400px;}
.ya87_c00001{bottom:247.455120px;}
.y104e_c00001{bottom:247.725000px;}
.y13ad_c00001{bottom:247.901700px;}
.yaff_c00001{bottom:247.905000px;}
.y6bc_c00001{bottom:248.352000px;}
.yf7a_c00001{bottom:248.714400px;}
.ybae_c00001{bottom:248.800290px;}
.y1521_c00001{bottom:248.804400px;}
.y15ce_c00001{bottom:249.162000px;}
.y123d_c00001{bottom:249.170520px;}
.yec2_c00001{bottom:249.260520px;}
.ybe6_c00001{bottom:249.345000px;}
.ye2_c00001{bottom:249.525000px;}
.y92f_c00001{bottom:249.703620px;}
.y90c_c00001{bottom:249.704250px;}
.y16f6_c00001{bottom:249.794400px;}
.yd6e_c00001{bottom:249.974250px;}
.yd5a_c00001{bottom:249.974400px;}
.y2e1_c00001{bottom:250.064250px;}
.y14a_c00001{bottom:250.334400px;}
.yf34_c00001{bottom:250.602420px;}
.y814_c00001{bottom:250.604250px;}
.y85d_c00001{bottom:250.612140px;}
.y872_c00001{bottom:250.617810px;}
.y530_c00001{bottom:250.874580px;}
.y513_c00001{bottom:250.877640px;}
.y622_c00001{bottom:251.326560px;}
.y1cac_c00001{bottom:251.519610px;}
.y7ba_c00001{bottom:251.593500px;}
.y7cb_c00001{bottom:251.595000px;}
.y1c2e_c00001{bottom:251.639250px;}
.y1376_c00001{bottom:251.868900px;}
.y1b65_c00001{bottom:252.494400px;}
.y1a57_c00001{bottom:252.584400px;}
.y451_c00001{bottom:252.854250px;}
.yb79_c00001{bottom:252.855000px;}
.y4c1_c00001{bottom:252.944400px;}
.y177f_c00001{bottom:253.217460px;}
.y1a55_c00001{bottom:253.670520px;}
.yb49_c00001{bottom:253.753410px;}
.y1678_c00001{bottom:253.754400px;}
.yb4f_c00001{bottom:253.757100px;}
.y1173_c00001{bottom:253.831080px;}
.y159f_c00001{bottom:253.934400px;}
.yaab_c00001{bottom:254.293500px;}
.ycfe_c00001{bottom:254.294400px;}
.y1c60_c00001{bottom:254.429400px;}
.y41_c00001{bottom:255.194400px;}
.y11ee_c00001{bottom:255.197550px;}
.y118a_c00001{bottom:255.527790px;}
.y1673_c00001{bottom:255.554250px;}
.y1a19_c00001{bottom:255.558750px;}
.y1561_c00001{bottom:255.912000px;}
.y100_c00001{bottom:255.959400px;}
.yd9_c00001{bottom:255.960900px;}
.y1080_c00001{bottom:256.005000px;}
.y1ae9_c00001{bottom:256.544250px;}
.y13ae_c00001{bottom:256.638900px;}
.y709_c00001{bottom:256.998900px;}
.yf62_c00001{bottom:257.174250px;}
.yb78_c00001{bottom:257.354250px;}
.y626_c00001{bottom:257.444400px;}
.y812_c00001{bottom:257.534400px;}
.y12c8_c00001{bottom:257.796600px;}
.y162f_c00001{bottom:257.804400px;}
.y1645_c00001{bottom:257.808120px;}
.ya0b_c00001{bottom:257.979630px;}
.y6bd_c00001{bottom:257.984400px;}
.y9d9_c00001{bottom:257.985840px;}
.y17af_c00001{bottom:258.164400px;}
.y65e_c00001{bottom:258.165000px;}
.y399_c00001{bottom:258.254400px;}
.y29f_c00001{bottom:258.434400px;}
.y1437_c00001{bottom:258.614400px;}
.ye3_c00001{bottom:259.154400px;}
.y14c5_c00001{bottom:259.161090px;}
.y356_c00001{bottom:259.245120px;}
.y76e_c00001{bottom:259.342140px;}
.y1481_c00001{bottom:259.424040px;}
.yfb5_c00001{bottom:259.694400px;}
.y11a3_c00001{bottom:259.700520px;}
.yd99_c00001{bottom:259.784400px;}
.y19a2_c00001{bottom:259.878300px;}
.y447_c00001{bottom:260.054400px;}
.y1632_c00001{bottom:260.144400px;}
.yb20_c00001{bottom:260.232000px;}
.yb2c_c00001{bottom:260.233500px;}
.yb32_c00001{bottom:260.235000px;}
.yc7c_c00001{bottom:260.595000px;}
.ye1d_c00001{bottom:260.684400px;}
.ydc9_c00001{bottom:260.774250px;}
.y132b_c00001{bottom:260.864400px;}
.y1cb1_c00001{bottom:261.259800px;}
.y199f_c00001{bottom:261.314400px;}
.y14b_c00001{bottom:261.405000px;}
.y1010_c00001{bottom:261.498630px;}
.yff2_c00001{bottom:261.584400px;}
.yfdf_c00001{bottom:262.029810px;}
.y196d_c00001{bottom:262.662000px;}
.y1978_c00001{bottom:262.663500px;}
.y197c_c00001{bottom:262.665000px;}
.y57f_c00001{bottom:263.032140px;}
.yc45_c00001{bottom:263.115000px;}
.y11c8_c00001{bottom:263.382420px;}
.y404_c00001{bottom:263.478900px;}
.y127b_c00001{bottom:263.564250px;}
.y2dd_c00001{bottom:263.654400px;}
.y70a_c00001{bottom:263.834400px;}
.y85c_c00001{bottom:264.377640px;}
.y871_c00001{bottom:264.383310px;}
.y52f_c00001{bottom:264.640080px;}
.y512_c00001{bottom:264.643140px;}
.y113b_c00001{bottom:264.688770px;}
.y115d_c00001{bottom:264.705240px;}
.yb21_c00001{bottom:264.734400px;}
.y4bf_c00001{bottom:264.822000px;}
.y6bb_c00001{bottom:264.914400px;}
.y18fe_c00001{bottom:265.092420px;}
.y18f1_c00001{bottom:265.094400px;}
.yc7b_c00001{bottom:265.095060px;}
.yee7_c00001{bottom:265.362000px;}
.y12a2_c00001{bottom:265.545000px;}
.y1375_c00001{bottom:265.634400px;}
.y1b23_c00001{bottom:265.733940px;}
.ya56_c00001{bottom:265.902000px;}
.y292_c00001{bottom:266.354250px;}
.y11ed_c00001{bottom:267.254400px;}
.y111a_c00001{bottom:267.495690px;}
.yc46_c00001{bottom:267.614400px;}
.y1a15_c00001{bottom:267.704400px;}
.ye43_c00001{bottom:267.800070px;}
.y990_c00001{bottom:268.062000px;}
.y9a2_c00001{bottom:268.063500px;}
.y9ac_c00001{bottom:268.065000px;}
.y7bb_c00001{bottom:268.154400px;}
.y14ca_c00001{bottom:268.423290px;}
.y1b67_c00001{bottom:269.324400px;}
.ye97_c00001{bottom:269.330520px;}
.yf89_c00001{bottom:269.414400px;}
.y1520_c00001{bottom:269.504400px;}
.y1218_c00001{bottom:269.509530px;}
.y16c1_c00001{bottom:269.594400px;}
.y1892_c00001{bottom:269.864490px;}
.y1051_c00001{bottom:270.221700px;}
.y85_c00001{bottom:270.222000px;}
.y109f_c00001{bottom:270.311700px;}
.y405_c00001{bottom:270.404400px;}
.y12fa_c00001{bottom:270.494400px;}
.y1bb_c00001{bottom:270.496200px;}
.y195_c00001{bottom:270.498900px;}
.y90b_c00001{bottom:270.584400px;}
.y92e_c00001{bottom:270.587580px;}
.yd49_c00001{bottom:270.674250px;}
.y1f_c00001{bottom:270.674400px;}
.y5b1_c00001{bottom:270.680070px;}
.y708_c00001{bottom:270.764400px;}
.y205_c00001{bottom:271.032000px;}
.y13ac_c00001{bottom:271.124400px;}
.y1260_c00001{bottom:271.129530px;}
.y1bc2_c00001{bottom:271.136640px;}
.y10c3_c00001{bottom:271.485000px;}
.y621_c00001{bottom:271.485840px;}
.y15d3_c00001{bottom:271.679910px;}
.y15fc_c00001{bottom:271.844250px;}
.ybe5_c00001{bottom:272.025000px;}
.yec3_c00001{bottom:272.294400px;}
.yec1_c00001{bottom:272.384400px;}
.y8b3_c00001{bottom:272.652000px;}
.y10f8_c00001{bottom:273.015000px;}
.y245_c00001{bottom:273.105000px;}
.y1480_c00001{bottom:273.189540px;}
.y76d_c00001{bottom:273.203400px;}
.y18c3_c00001{bottom:273.286890px;}
.y1bc5_c00001{bottom:273.647550px;}
.y35b_c00001{bottom:273.914400px;}
.y143a_c00001{bottom:274.367640px;}
.y4c0_c00001{bottom:274.454400px;}
.yaa9_c00001{bottom:274.455000px;}
.y1738_c00001{bottom:274.724400px;}
.ye71_c00001{bottom:274.900710px;}
.ye68_c00001{bottom:274.901700px;}
.y11cb_c00001{bottom:274.904400px;}
.y65d_c00001{bottom:275.371140px;}
.y675_c00001{bottom:275.375010px;}
.y1a87_c00001{bottom:275.444400px;}
.y2de_c00001{bottom:275.622000px;}
.y2fc_c00001{bottom:275.623500px;}
.y302_c00001{bottom:275.625000px;}
.y177e_c00001{bottom:275.984400px;}
.y16f9_c00001{bottom:276.074400px;}
.y1672_c00001{bottom:276.254250px;}
.y193e_c00001{bottom:276.434400px;}
.ybe4_c00001{bottom:276.524250px;}
.y95a_c00001{bottom:276.525000px;}
.y196c_c00001{bottom:276.527460px;}
.y1977_c00001{bottom:276.529620px;}
.y6a8_c00001{bottom:276.702000px;}
.y1a54_c00001{bottom:276.794400px;}
.y57e_c00001{bottom:276.797640px;}
.y403_c00001{bottom:277.244400px;}
.y1634_c00001{bottom:277.337550px;}
.y159b_c00001{bottom:277.517820px;}
.y1ae8_c00001{bottom:277.604250px;}
.ye0_c00001{bottom:277.875000px;}
.ya0a_c00001{bottom:278.138910px;}
.y85b_c00001{bottom:278.143140px;}
.y18c1_c00001{bottom:278.144400px;}
.y9d8_c00001{bottom:278.145120px;}
.y870_c00001{bottom:278.148810px;}
.y12dc_c00001{bottom:278.234400px;}
.ycc1_c00001{bottom:278.235000px;}
.y17c9_c00001{bottom:278.414250px;}
.y2df_c00001{bottom:278.414400px;}
.y1565_c00001{bottom:278.417820px;}
.y52e_c00001{bottom:278.501340px;}
.y511_c00001{bottom:278.504400px;}
.y44d_c00001{bottom:278.593500px;}
.y47c_c00001{bottom:278.595000px;}
.y1c40_c00001{bottom:278.639400px;}
.y1279_c00001{bottom:278.684400px;}
.y17ae_c00001{bottom:278.864400px;}
.yaaa_c00001{bottom:278.954400px;}
.y355_c00001{bottom:279.404400px;}
.y1c49_c00001{bottom:279.539400px;}
.y1cab_c00001{bottom:279.963300px;}
.y770_c00001{bottom:280.050240px;}
.yad2_c00001{bottom:280.395000px;}
.y123b_c00001{bottom:280.397550px;}
.y1c92_c00001{bottom:280.664250px;}
.yfb4_c00001{bottom:280.749810px;}
.yc15_c00001{bottom:280.753500px;}
.yc2b_c00001{bottom:280.755000px;}
.y1631_c00001{bottom:280.844400px;}
.yd98_c00001{bottom:280.847460px;}
.y121a_c00001{bottom:281.024250px;}
.y100f_c00001{bottom:281.114250px;}
.y625_c00001{bottom:281.294400px;}
.y17ed_c00001{bottom:281.474250px;}
.y147d_c00001{bottom:281.564400px;}
.yfde_c00001{bottom:281.744400px;}
.ye1c_c00001{bottom:281.837460px;}
.ydc8_c00001{bottom:281.919810px;}
.y199e_c00001{bottom:282.014400px;}
.y14c9_c00001{bottom:282.284550px;}
.y1a88_c00001{bottom:282.288900px;}
.ya23_c00001{bottom:282.372420px;}
.y14c4_c00001{bottom:282.383790px;}
.yff1_c00001{bottom:282.729810px;}
.ycc0_c00001{bottom:282.735210px;}
.y1298_c00001{bottom:282.779250px;}
.y1983_c00001{bottom:282.779400px;}
.y11a2_c00001{bottom:282.824400px;}
.yb77_c00001{bottom:283.094400px;}
.yc79_c00001{bottom:283.275000px;}
.y580_c00001{bottom:283.724400px;}
.y1172_c00001{bottom:284.070000px;}
.y29c_c00001{bottom:284.175000px;}
.y1ba_c00001{bottom:284.261700px;}
.y194_c00001{bottom:284.264400px;}
.y1a51_c00001{bottom:284.807550px;}
.y16c3_c00001{bottom:285.430740px;}
.y181f_c00001{bottom:285.434400px;}
.ya86_c00001{bottom:285.616110px;}
.y1bc4_c00001{bottom:285.704400px;}
.y10df_c00001{bottom:285.704700px;}
.y1189_c00001{bottom:285.766710px;}
.y18ef_c00001{bottom:285.975000px;}
.y40_c00001{bottom:286.244400px;}
.y1372_c00001{bottom:286.424400px;}
.y80f_c00001{bottom:286.432140px;}
.y1524_c00001{bottom:286.693350px;}
.y14c1_c00001{bottom:286.784400px;}
.y11ea_c00001{bottom:286.785000px;}
.ybad_c00001{bottom:286.961280px;}
.y76c_c00001{bottom:286.968900px;}
.y147f_c00001{bottom:287.050800px;}
.y18c2_c00001{bottom:287.148150px;}
.y185f_c00001{bottom:287.328900px;}
.ye1_c00001{bottom:287.504400px;}
.yc7a_c00001{bottom:287.774250px;}
.yeeb_c00001{bottom:287.869920px;}
.y12c7_c00001{bottom:288.035520px;}
.y12a5_c00001{bottom:288.043410px;}
.y1439_c00001{bottom:288.133140px;}
.y44e_c00001{bottom:288.224400px;}
.y98f_c00001{bottom:288.225000px;}
.y89_c00001{bottom:288.674400px;}
.yf33_c00001{bottom:288.763410px;}
.y1b8c_c00001{bottom:288.939630px;}
.y19d2_c00001{bottom:288.953940px;}
.y1b22_c00001{bottom:288.956640px;}
.y65c_c00001{bottom:289.136640px;}
.y674_c00001{bottom:289.140510px;}
.y8b5_c00001{bottom:289.218900px;}
.y1633_c00001{bottom:289.394400px;}
.y24b_c00001{bottom:289.676640px;}
.ya55_c00001{bottom:289.932000px;}
.yf79_c00001{bottom:290.114400px;}
.y151f_c00001{bottom:290.204400px;}
.y16c0_c00001{bottom:290.294400px;}
.y50b_c00001{bottom:290.295000px;}
.y57d_c00001{bottom:290.658900px;}
.y1a24_c00001{bottom:290.740410px;}
.y1027_c00001{bottom:290.742000px;}
.y1a14_c00001{bottom:290.744400px;}
.ycfc_c00001{bottom:290.835000px;}
.y1820_c00001{bottom:290.928690px;}
.yd6d_c00001{bottom:291.374250px;}
.yd59_c00001{bottom:291.374400px;}
.y620_c00001{bottom:291.645120px;}
.yb48_c00001{bottom:291.914400px;}
.yb4e_c00001{bottom:291.918090px;}
.y85a_c00001{bottom:292.004400px;}
.y86f_c00001{bottom:292.010070px;}
.y185e_c00001{bottom:292.184400px;}
.y1940_c00001{bottom:292.282650px;}
.ye98_c00001{bottom:292.364400px;}
.ye96_c00001{bottom:292.454400px;}
.y15fb_c00001{bottom:292.544250px;}
.y1217_c00001{bottom:292.633410px;}
.y35a_c00001{bottom:292.725000px;}
.y1cb8_c00001{bottom:292.766010px;}
.y1cb0_c00001{bottom:292.786200px;}
.y4bb_c00001{bottom:293.173500px;}
.y6b7_c00001{bottom:293.272140px;}
.y1328_c00001{bottom:293.353140px;}
.y8fb_c00001{bottom:293.442000px;}
.y92b_c00001{bottom:293.443500px;}
.y1050_c00001{bottom:293.444400px;}
.y109e_c00001{bottom:293.534400px;}
.y7b2_c00001{bottom:293.713500px;}
.y7c9_c00001{bottom:293.715000px;}
.y29d_c00001{bottom:293.804400px;}
.y10c5_c00001{bottom:293.983410px;}
.y1261_c00001{bottom:294.164400px;}
.y1bc1_c00001{bottom:294.260520px;}
.ybe2_c00001{bottom:294.615000px;}
.y15d2_c00001{bottom:294.803790px;}
.y1b25_c00001{bottom:294.892500px;}
.y113a_c00001{bottom:294.927690px;}
.y115c_c00001{bottom:294.944160px;}
.ycfb_c00001{bottom:295.334400px;}
.y1737_c00001{bottom:295.424400px;}
.y10fa_c00001{bottom:295.520520px;}
.y14c8_c00001{bottom:296.050050px;}
.y703_c00001{bottom:296.325000px;}
.y181e_c00001{bottom:296.417550px;}
.y4be_c00001{bottom:296.503140px;}
.y959_c00001{bottom:296.682000px;}
.y7b8_c00001{bottom:296.696490px;}
.y16f8_c00001{bottom:296.774400px;}
.y1671_c00001{bottom:296.864250px;}
.y1a50_c00001{bottom:296.864400px;}
.y1776_c00001{bottom:296.865000px;}
.y1ae6_c00001{bottom:297.045000px;}
.y193d_c00001{bottom:297.134400px;}
.y192_c00001{bottom:297.492000px;}
.y1b9_c00001{bottom:297.493500px;}
.y1c5_c00001{bottom:297.495000px;}
.y1119_c00001{bottom:297.734610px;}
.ye70_c00001{bottom:297.763410px;}
.ye67_c00001{bottom:297.764400px;}
.y905_c00001{bottom:297.923010px;}
.y900_c00001{bottom:297.939480px;}
.y90a_c00001{bottom:297.944250px;}
.y9c_c00001{bottom:298.169250px;}
.ya09_c00001{bottom:298.298190px;}
.y9d7_c00001{bottom:298.304400px;}
.y1a86_c00001{bottom:298.484400px;}
.y1a97_c00001{bottom:298.484790px;}
.yf61_c00001{bottom:298.574250px;}
.y1523_c00001{bottom:298.750200px;}
.ybe3_c00001{bottom:299.114400px;}
.y1198_c00001{bottom:299.205000px;}
.y16c2_c00001{bottom:299.292000px;}
.y1438_c00001{bottom:299.294400px;}
.y1976_c00001{bottom:299.296560px;}
.y1566_c00001{bottom:300.017550px;}
.yf35_c00001{bottom:300.194400px;}
.y80e_c00001{bottom:300.197640px;}
.yfb3_c00001{bottom:300.464400px;}
.yad0_c00001{bottom:300.555000px;}
.yd97_c00001{bottom:300.644400px;}
.y396_c00001{bottom:300.734400px;}
.y159a_c00001{bottom:300.740520px;}
.y173a_c00001{bottom:300.914790px;}
.ycbe_c00001{bottom:300.915000px;}
.y18c0_c00001{bottom:301.184400px;}
.y16bf_c00001{bottom:301.277550px;}
.y1564_c00001{bottom:301.541700px;}
.y11c7_c00001{bottom:301.543410px;}
.y1401_c00001{bottom:301.544400px;}
.y107f_c00001{bottom:301.547400px;}
.ydc7_c00001{bottom:301.634400px;}
.y19ea_c00001{bottom:301.724250px;}
.y1e_c00001{bottom:301.724400px;}
.y100e_c00001{bottom:301.814250px;}
.y17ec_c00001{bottom:302.174250px;}
.yff0_c00001{bottom:302.444400px;}
.y199d_c00001{bottom:302.714400px;}
.yfdd_c00001{bottom:302.799810px;}
.y3fc_c00001{bottom:302.892000px;}
.y660_c00001{bottom:302.894400px;}
.y65b_c00001{bottom:302.902140px;}
.y673_c00001{bottom:302.906010px;}
.y8b4_c00001{bottom:302.984400px;}
.yc14_c00001{bottom:303.432000px;}
.yc22_c00001{bottom:303.433500px;}
.yc2a_c00001{bottom:303.435000px;}
.y24a_c00001{bottom:303.442140px;}
.y858_c00001{bottom:303.795000px;}
.y2da_c00001{bottom:303.972000px;}
.y2fb_c00001{bottom:303.973500px;}
.y301_c00001{bottom:303.975000px;}
.y88_c00001{bottom:304.239900px;}
.y131a_c00001{bottom:304.337550px;}
.y57c_c00001{bottom:304.424400px;}
.y147c_c00001{bottom:304.604250px;}
.y8b_c00001{bottom:304.784400px;}
.yb76_c00001{bottom:305.052000px;}
.yad1_c00001{bottom:305.054400px;}
.y624_c00001{bottom:305.144400px;}
.ycbf_c00001{bottom:305.414400px;}
.y18f0_c00001{bottom:305.503140px;}
.y14c3_c00001{bottom:305.507670px;}
.yebe_c00001{bottom:305.948910px;}
.y704_c00001{bottom:305.954400px;}
.ye42_c00001{bottom:305.961060px;}
.y193f_c00001{bottom:306.048150px;}
.ydf_c00001{bottom:306.225000px;}
.y50f_c00001{bottom:306.862140px;}
.y449_c00001{bottom:306.942000px;}
.y470_c00001{bottom:306.943500px;}
.y47b_c00001{bottom:306.945000px;}
.y1b24_c00001{bottom:306.949350px;}
.y6b6_c00001{bottom:307.037640px;}
.y193_c00001{bottom:307.124400px;}
.y810_c00001{bottom:307.128270px;}
.y765_c00001{bottom:307.484400px;}
.y17ef_c00001{bottom:307.672800px;}
.y11ec_c00001{bottom:307.844400px;}
.yf0d_c00001{bottom:307.847460px;}
.yf17_c00001{bottom:307.848180px;}
.y11c3_c00001{bottom:307.937550px;}
.y1b8d_c00001{bottom:308.019990px;}
.y98e_c00001{bottom:308.385000px;}
.y1caa_c00001{bottom:308.406990px;}
.y181d_c00001{bottom:308.474400px;}
.y5b0_c00001{bottom:308.841060px;}
.y10de_c00001{bottom:308.927400px;}
.y125f_c00001{bottom:309.290520px;}
.y17c8_c00001{bottom:309.464250px;}
.y13f6_c00001{bottom:309.464400px;}
.yb75_c00001{bottom:309.554400px;}
.y109c_c00001{bottom:309.912000px;}
.y10a6_c00001{bottom:309.913500px;}
.y10aa_c00001{bottom:309.915000px;}
.y1b8b_c00001{bottom:310.094400px;}
.y4bd_c00001{bottom:310.364400px;}
.y7b7_c00001{bottom:310.461990px;}
.yf88_c00001{bottom:310.814400px;}
.y151e_c00001{bottom:310.904400px;}
.y1327_c00001{bottom:311.444400px;}
.y61f_c00001{bottom:311.804400px;}
.y11f7_c00001{bottom:311.805930px;}
.y11e9_c00001{bottom:311.807460px;}
.yd48_c00001{bottom:312.074250px;}
.yd58_c00001{bottom:312.074400px;}
.y1b21_c00001{bottom:312.080520px;}
.y19d1_c00001{bottom:312.176640px;}
.y29a_c00001{bottom:312.525000px;}
.y98d_c00001{bottom:312.884400px;}
.y1c52_c00001{bottom:312.938940px;}
.y1890_c00001{bottom:313.154250px;}
.y1029_c00001{bottom:313.241700px;}
.y15fa_c00001{bottom:313.244250px;}
.y16be_c00001{bottom:313.334400px;}
.y859_c00001{bottom:313.424400px;}
.y107e_c00001{bottom:313.604250px;}
.y16fb_c00001{bottom:313.696050px;}
.y6b8_c00001{bottom:313.964400px;}
.y80d_c00001{bottom:314.058900px;}
.y1171_c00001{bottom:314.308920px;}
.y3b8_c00001{bottom:314.494170px;}
.y395_c00001{bottom:314.504400px;}
.ya54_c00001{bottom:314.685000px;}
.y1739_c00001{bottom:314.776050px;}
.ye94_c00001{bottom:315.497550px;}
.y1188_c00001{bottom:315.923280px;}
.y340_c00001{bottom:315.945000px;}
.y1736_c00001{bottom:316.124400px;}
.y1a4d_c00001{bottom:316.392000px;}
.y1319_c00001{bottom:316.394400px;}
.y15d5_c00001{bottom:316.397550px;}
.y7a4_c00001{bottom:316.479900px;}
.y19d4_c00001{bottom:316.762650px;}
.y65a_c00001{bottom:316.763400px;}
.y672_c00001{bottom:316.767270px;}
.y958_c00001{bottom:316.845000px;}
.y204_c00001{bottom:316.934400px;}
.y10c6_c00001{bottom:317.024250px;}
.y3f_c00001{bottom:317.294400px;}
.y249_c00001{bottom:317.303400px;}
.y1bc0_c00001{bottom:317.384400px;}
.ye44_c00001{bottom:317.474400px;}
.y1670_c00001{bottom:317.564250px;}
.y1371_c00001{bottom:317.663400px;}
.y193c_c00001{bottom:317.744400px;}
.ycfa_c00001{bottom:317.925000px;}
.y19ce_c00001{bottom:318.017550px;}
.y15d1_c00001{bottom:318.026490px;}
.y904_c00001{bottom:318.082290px;}
.y8ff_c00001{bottom:318.098760px;}
.y12c6_c00001{bottom:318.274440px;}
.y17ab_c00001{bottom:318.284400px;}
.ya08_c00001{bottom:318.457470px;}
.y908_c00001{bottom:318.552000px;}
.y92d_c00001{bottom:318.553500px;}
.y10fb_c00001{bottom:318.554400px;}
.y10f9_c00001{bottom:318.644400px;}
.y1891_c00001{bottom:318.648900px;}
.y136e_c00001{bottom:319.004400px;}
.ya53_c00001{bottom:319.094400px;}
.y400_c00001{bottom:319.461990px;}
.y1ae7_c00001{bottom:319.544400px;}
.yebd_c00001{bottom:319.722150px;}
.y87_c00001{bottom:319.724400px;}
.y11c2_c00001{bottom:319.994400px;}
.y34d_c00001{bottom:320.423880px;}
.y347_c00001{bottom:320.440350px;}
.y352_c00001{bottom:320.444400px;}
.ya22_c00001{bottom:320.533410px;}
.y2dc_c00001{bottom:320.538900px;}
.y50e_c00001{bottom:320.627640px;}
.yb1e_c00001{bottom:320.713500px;}
.yb31_c00001{bottom:320.715000px;}
.y6b5_c00001{bottom:320.898900px;}
.y17ee_c00001{bottom:321.438300px;}
.yfb2_c00001{bottom:321.609810px;}
.y1a11_c00001{bottom:321.614400px;}
.y119e_c00001{bottom:321.708090px;}
.yd96_c00001{bottom:321.789810px;}
.y1c91_c00001{bottom:322.064250px;}
.y1630_c00001{bottom:322.244400px;}
.ycf9_c00001{bottom:322.334400px;}
.y29b_c00001{bottom:322.424400px;}
.y13aa_c00001{bottom:322.424550px;}
.yfdc_c00001{bottom:322.514400px;}
.y1b64_c00001{bottom:322.694400px;}
.ye1b_c00001{bottom:322.779810px;}
.y149_c00001{bottom:322.784400px;}
.ydf7_c00001{bottom:322.787460px;}
.y17eb_c00001{bottom:322.874250px;}
.y100d_c00001{bottom:322.959810px;}
.yfef_c00001{bottom:323.499810px;}
.y44b_c00001{bottom:323.508750px;}
.yc78_c00001{bottom:323.595000px;}
.ya85_c00001{bottom:323.777100px;}
.y1599_c00001{bottom:323.864400px;}
.ydd_c00001{bottom:323.961990px;}
.y7b6_c00001{bottom:324.323250px;}
.y623_c00001{bottom:324.492000px;}
.y1b20_c00001{bottom:324.587550px;}
.y1b36_c00001{bottom:324.592170px;}
.y6fa_c00001{bottom:324.675000px;}
.y1563_c00001{bottom:324.764400px;}
.y1139_c00001{bottom:325.084260px;}
.y115b_c00001{bottom:325.100730px;}
.ybac_c00001{bottom:325.122270px;}
.y13ea_c00001{bottom:325.124400px;}
.yb1f_c00001{bottom:325.214400px;}
.y13a9_c00001{bottom:325.487550px;}
.yc12_c00001{bottom:326.025000px;}
.yeea_c00001{bottom:326.030910px;}
.y12a4_c00001{bottom:326.204400px;}
.y1046_c00001{bottom:326.297400px;}
.y767_c00001{bottom:326.383500px;}
.yf32_c00001{bottom:326.924400px;}
.yebf_c00001{bottom:327.015000px;}
.y16fa_c00001{bottom:327.461550px;}
.y1ae5_c00001{bottom:327.552780px;}
.y510_c00001{bottom:327.554400px;}
.y1c51_c00001{bottom:327.614160px;}
.y80c_c00001{bottom:327.824400px;}
.y1118_c00001{bottom:327.891180px;}
.y1321_c00001{bottom:328.003500px;}
.yc77_c00001{bottom:328.004400px;}
.y1335_c00001{bottom:328.005000px;}
.y15d4_c00001{bottom:328.454400px;}
.y98c_c00001{bottom:328.543500px;}
.y9ab_c00001{bottom:328.545000px;}
.y14c2_c00001{bottom:328.631550px;}
.y8ad_c00001{bottom:328.635000px;}
.y299_c00001{bottom:329.264400px;}
.y1c19_c00001{bottom:329.309400px;}
.y18be_c00001{bottom:329.354400px;}
.y3b7_c00001{bottom:329.887590px;}
.y394_c00001{bottom:329.893140px;}
.y1275_c00001{bottom:329.987460px;}
.y1282_c00001{bottom:329.989800px;}
.y19cd_c00001{bottom:330.074400px;}
.y573_c00001{bottom:330.255000px;}
.y44c_c00001{bottom:330.344400px;}
.y15fd_c00001{bottom:330.432780px;}
.y1c4_c00001{bottom:330.522270px;}
.yc13_c00001{bottom:330.524250px;}
.y19d3_c00001{bottom:330.528150px;}
.y191_c00001{bottom:330.528900px;}
.y671_c00001{bottom:330.532770px;}
.y1b8_c00001{bottom:330.534240px;}
.y185c_c00001{bottom:330.614250px;}
.yf0c_c00001{bottom:330.614400px;}
.yf16_c00001{bottom:330.615120px;}
.y1216_c00001{bottom:330.794400px;}
.y1026_c00001{bottom:330.797400px;}
.y248_c00001{bottom:331.068900px;}
.y7b9_c00001{bottom:331.170090px;}
.y1370_c00001{bottom:331.428900px;}
.yb74_c00001{bottom:331.512000px;}
.yf78_c00001{bottom:331.514400px;}
.y151d_c00001{bottom:331.604400px;}
.y196b_c00001{bottom:331.878900px;}
.y7a3_c00001{bottom:331.964400px;}
.y10dd_c00001{bottom:332.051280px;}
.y10c4_c00001{bottom:332.144400px;}
.y854_c00001{bottom:332.145000px;}
.y109d_c00001{bottom:332.414400px;}
.y202_c00001{bottom:332.520990px;}
.y12ed_c00001{bottom:332.594400px;}
.yd6c_c00001{bottom:332.774250px;}
.y1d_c00001{bottom:332.774400px;}
.y104c_c00001{bottom:332.955000px;}
.y1079_c00001{bottom:333.045000px;}
.y3ff_c00001{bottom:333.227490px;}
.yebc_c00001{bottom:333.674400px;}
.y188f_c00001{bottom:333.854250px;}
.y15f9_c00001{bottom:333.944250px;}
.y2db_c00001{bottom:334.304400px;}
.y1239_c00001{bottom:334.390290px;}
.y50d_c00001{bottom:334.393140px;}
.y1436_c00001{bottom:334.487640px;}
.y11f6_c00001{bottom:334.572870px;}
.y11e8_c00001{bottom:334.574400px;}
.y6b4_c00001{bottom:334.664400px;}
.y9d4_c00001{bottom:334.845000px;}
.y18bf_c00001{bottom:334.848600px;}
.ybe1_c00001{bottom:334.935000px;}
.y1caf_c00001{bottom:335.276850px;}
.y19d0_c00001{bottom:335.300520px;}
.y147b_c00001{bottom:335.747940px;}
.y1434_c00001{bottom:335.924400px;}
.y185d_c00001{bottom:336.108900px;}
.y102a_c00001{bottom:336.374400px;}
.y1028_c00001{bottom:336.464400px;}
.y4b3_c00001{bottom:336.642000px;}
.y1b1f_c00001{bottom:336.644400px;}
.y1b35_c00001{bottom:336.649020px;}
.y196a_c00001{bottom:336.734400px;}
.y1735_c00001{bottom:336.824400px;}
.y956_c00001{bottom:337.005000px;}
.y1478_c00001{bottom:337.184400px;}
.y1a4f_c00001{bottom:337.272780px;}
.y44a_c00001{bottom:337.274250px;}
.y1bfd_c00001{bottom:337.452000px;}
.yeec_c00001{bottom:337.544400px;}
.ydc_c00001{bottom:337.823250px;}
.y7b5_c00001{bottom:338.088750px;}
.y903_c00001{bottom:338.159220px;}
.y16f7_c00001{bottom:338.174400px;}
.y8fe_c00001{bottom:338.175690px;}
.y1045_c00001{bottom:338.354250px;}
.ya07_c00001{bottom:338.534400px;}
.y1a4e_c00001{bottom:338.894400px;}
.y17aa_c00001{bottom:338.984400px;}
.y907_c00001{bottom:339.435000px;}
.y11c6_c00001{bottom:339.704400px;}
.y1999_c00001{bottom:339.884400px;}
.yf60_c00001{bottom:339.974250px;}
.y807_c00001{bottom:340.152000px;}
.y401_c00001{bottom:340.158120px;}
.y1a83_c00001{bottom:340.430520px;}
.y34c_c00001{bottom:340.500810px;}
.y17c7_c00001{bottom:340.514250px;}
.y12db_c00001{bottom:340.514400px;}
.y346_c00001{bottom:340.517280px;}
.yacf_c00001{bottom:340.875000px;}
.ye65_c00001{bottom:341.051280px;}
.y15d0_c00001{bottom:341.150370px;}
.ycbd_c00001{bottom:341.232000px;}
.yccf_c00001{bottom:341.233500px;}
.ycd8_c00001{bottom:341.235000px;}
.y702_c00001{bottom:341.238900px;}
.y720_c00001{bottom:341.243160px;}
.yfb1_c00001{bottom:341.324400px;}
.y293_c00001{bottom:341.325000px;}
.y957_c00001{bottom:341.504400px;}
.y10f7_c00001{bottom:341.687550px;}
.y1c50_c00001{bottom:342.193620px;}
.y1a10_c00001{bottom:342.314400px;}
.ye1a_c00001{bottom:342.494400px;}
.ydf6_c00001{bottom:342.584400px;}
.y100c_c00001{bottom:342.674400px;}
.y1025_c00001{bottom:342.854250px;}
.y80a_c00001{bottom:342.857640px;}
.y769_c00001{bottom:342.948900px;}
.ydc6_c00001{bottom:343.124400px;}
.yfdb_c00001{bottom:343.214400px;}
.y182a_c00001{bottom:343.570170px;}
.y181b_c00001{bottom:343.571700px;}
.y17ea_c00001{bottom:343.574250px;}
.y3b6_c00001{bottom:343.748850px;}
.y393_c00001{bottom:343.754400px;}
.y1596_c00001{bottom:343.934400px;}
.y15a8_c00001{bottom:343.934610px;}
.ye41_c00001{bottom:344.204400px;}
.y1c3_c00001{bottom:344.287770px;}
.y190_c00001{bottom:344.294400px;}
.y670_c00001{bottom:344.298270px;}
.y1b7_c00001{bottom:344.299740px;}
.y1170_c00001{bottom:344.547840px;}
.y177b_c00001{bottom:344.573790px;}
.yde_c00001{bottom:344.658120px;}
.y247_c00001{bottom:344.834400px;}
.y1c18_c00001{bottom:344.879400px;}
.ycf8_c00001{bottom:344.925000px;}
.y181c_c00001{bottom:345.009900px;}
.y1b8a_c00001{bottom:345.018900px;}
.y298_c00001{bottom:345.022140px;}
.y8b1_c00001{bottom:345.112140px;}
.y136f_c00001{bottom:345.194400px;}
.ycbc_c00001{bottom:345.644400px;}
.y1c22_c00001{bottom:345.779400px;}
.y351_c00001{bottom:345.914400px;}
.y1187_c00001{bottom:346.162200px;}
.yc76_c00001{bottom:346.185000px;}
.y201_c00001{bottom:346.286490px;}
.y578_c00001{bottom:346.826640px;}
.y3fe_c00001{bottom:346.992990px;}
.y5af_c00001{bottom:347.084400px;}
.ye92_c00001{bottom:347.085000px;}
.y1212_c00001{bottom:347.265000px;}
.y18e7_c00001{bottom:347.982000px;}
.y18fc_c00001{bottom:347.983500px;}
.y1904_c00001{bottom:347.985000px;}
.y1326_c00001{bottom:347.988900px;}
.y166d_c00001{bottom:348.074400px;}
.y50c_c00001{bottom:348.254400px;}
.y3e_c00001{bottom:348.344400px;}
.y60d_c00001{bottom:348.345000px;}
.y1435_c00001{bottom:348.348900px;}
.y16bc_c00001{bottom:348.431700px;}
.y143_c00001{bottom:348.435000px;}
.y16ce_c00001{bottom:348.435750px;}
.y12c5_c00001{bottom:348.513360px;}
.y7c_c00001{bottom:348.522000px;}
.yafe_c00001{bottom:348.615000px;}
.yc43_c00001{bottom:348.705000px;}
.y856_c00001{bottom:348.708900px;}
.y125c_c00001{bottom:348.793500px;}
.y1a13_c00001{bottom:349.160850px;}
.ycf7_c00001{bottom:349.424400px;}
.yec0_c00001{bottom:349.514400px;}
.y147a_c00001{bottom:349.609200px;}
.y76a_c00001{bottom:349.784400px;}
.y16bd_c00001{bottom:349.869750px;}
.y1c48_c00001{bottom:349.874400px;}
.yc75_c00001{bottom:350.684400px;}
.y1b89_c00001{bottom:351.044400px;}
.y185b_c00001{bottom:351.314250px;}
.y1433_c00001{bottom:351.407550px;}
.ydb_c00001{bottom:351.588750px;}
.y7b4_c00001{bottom:351.854250px;}
.yf87_c00001{bottom:352.214400px;}
.y18bd_c00001{bottom:352.394400px;}
.y1274_c00001{bottom:352.754400px;}
.y1281_c00001{bottom:352.756740px;}
.y1323_c00001{bottom:352.844400px;}
.yc44_c00001{bottom:353.204400px;}
.y4b9_c00001{bottom:353.216490px;}
.yd47_c00001{bottom:353.474250px;}
.yd57_c00001{bottom:353.474400px;}
.y1b63_c00001{bottom:353.477880px;}
.y13e6_c00001{bottom:353.576640px;}
.y10f6_c00001{bottom:353.744400px;}
.y193b_c00001{bottom:353.748600px;}
.y152d_c00001{bottom:354.640620px;}
.y15f8_c00001{bottom:354.644250px;}
.y151c_c00001{bottom:354.644400px;}
.y17ad_c00001{bottom:354.823140px;}
.ya06_c00001{bottom:355.003500px;}
.y701_c00001{bottom:355.004400px;}
.y71f_c00001{bottom:355.008660px;}
.y1138_c00001{bottom:355.323180px;}
.y115a_c00001{bottom:355.339650px;}
.y162e_c00001{bottom:355.364400px;}
.y11e4_c00001{bottom:355.365000px;}
.y1644_c00001{bottom:355.368570px;}
.y104d_c00001{bottom:355.454400px;}
.y107c_c00001{bottom:355.542270px;}
.y857_c00001{bottom:355.544400px;}
.y1b1c_c00001{bottom:356.175000px;}
.y38e_c00001{bottom:356.352000px;}
.y3b4_c00001{bottom:356.353500px;}
.y3c6_c00001{bottom:356.355000px;}
.y768_c00001{bottom:356.714400px;}
.y809_c00001{bottom:356.718900px;}
.y655_c00001{bottom:356.805000px;}
.y1c4f_c00001{bottom:356.868840px;}
.y1b62_c00001{bottom:356.984400px;}
.ybdf_c00001{bottom:357.615000px;}
.y1477_c00001{bottom:357.884400px;}
.yb6f_c00001{bottom:357.972000px;}
.y18e_c00001{bottom:358.065000px;}
.y1117_c00001{bottom:358.130100px;}
.y902_c00001{bottom:358.318500px;}
.y8fd_c00001{bottom:358.334970px;}
.y19cf_c00001{bottom:358.424400px;}
.y10e0_c00001{bottom:358.514400px;}
.ya21_c00001{bottom:358.694400px;}
.y297_c00001{bottom:358.883400px;}
.y8b0_c00001{bottom:358.973400px;}
.y193a_c00001{bottom:359.237550px;}
.y9d3_c00001{bottom:359.504400px;}
.y659_c00001{bottom:359.512140px;}
.y17a9_c00001{bottom:359.684400px;}
.y119d_c00001{bottom:359.951430px;}
.y2d6_c00001{bottom:359.955000px;}
.y16f0_c00001{bottom:360.045000px;}
.y200_c00001{bottom:360.051990px;}
.y1ef_c00001{bottom:360.314250px;}
.y6b2_c00001{bottom:360.315000px;}
.yf4e_c00001{bottom:360.584400px;}
.y577_c00001{bottom:360.592140px;}
.y34b_c00001{bottom:360.660090px;}
.y345_c00001{bottom:360.676560px;}
.y18f_c00001{bottom:360.854250px;}
.yace_c00001{bottom:360.942000px;}
.yae3_c00001{bottom:360.943500px;}
.yaee_c00001{bottom:360.945000px;}
.y1a12_c00001{bottom:361.217700px;}
.y1325_c00001{bottom:361.754400px;}
.ya84_c00001{bottom:362.020440px;}
.ybe0_c00001{bottom:362.114400px;}
.yfb0_c00001{bottom:362.469810px;}
.y855_c00001{bottom:362.474400px;}
.yb73_c00001{bottom:362.475690px;}
.yd95_c00001{bottom:362.657460px;}
.y445_c00001{bottom:362.833500px;}
.y47a_c00001{bottom:362.835000px;}
.y13e9_c00001{bottom:362.841000px;}
.y1a0f_c00001{bottom:363.014400px;}
.ybab_c00001{bottom:363.283260px;}
.y1479_c00001{bottom:363.374700px;}
.y1c90_c00001{bottom:363.464250px;}
.y1432_c00001{bottom:363.464400px;}
.ye19_c00001{bottom:363.549810px;}
.y80b_c00001{bottom:363.553770px;}
.y1a82_c00001{bottom:363.554400px;}
.ydf5_c00001{bottom:363.639660px;}
.y1400_c00001{bottom:363.644250px;}
.y12e7_c00001{bottom:363.644400px;}
.y100b_c00001{bottom:363.819810px;}
.y140d_c00001{bottom:363.824250px;}
.y1c_c00001{bottom:363.824400px;}
.ycbb_c00001{bottom:363.825000px;}
.y177d_c00001{bottom:363.828900px;}
.ya52_c00001{bottom:364.182000px;}
.yee9_c00001{bottom:364.274250px;}
.y188d_c00001{bottom:364.274400px;}
.ydc5_c00001{bottom:364.278630px;}
.yfda_c00001{bottom:364.359810px;}
.y350_c00001{bottom:364.635000px;}
.y1257_c00001{bottom:364.814250px;}
.y147_c00001{bottom:364.907490px;}
.y82_c00001{bottom:365.084670px;}
.yda_c00001{bottom:365.354250px;}
.y1ca9_c00001{bottom:365.376720px;}
.y1c45_c00001{bottom:365.439900px;}
.yacd_c00001{bottom:365.444400px;}
.y13a5_c00001{bottom:365.624250px;}
.y446_c00001{bottom:365.624400px;}
.y8b2_c00001{bottom:365.804400px;}
.yc11_c00001{bottom:366.343500px;}
.yc29_c00001{bottom:366.345000px;}
.y1829_c00001{bottom:366.432870px;}
.y181a_c00001{bottom:366.434400px;}
.y17e9_c00001{bottom:366.614400px;}
.y6fe_c00001{bottom:366.883500px;}
.y72e_c00001{bottom:366.885000px;}
.y4b8_c00001{bottom:366.981990px;}
.y203_c00001{bottom:366.994590px;}
.y1732_c00001{bottom:367.334400px;}
.y177a_c00001{bottom:367.697670px;}
.ycba_c00001{bottom:368.324400px;}
.ya51_c00001{bottom:368.584770px;}
.y17ac_c00001{bottom:368.684400px;}
.y98b_c00001{bottom:368.772000px;}
.y9a1_c00001{bottom:368.773500px;}
.y166c_c00001{bottom:368.774400px;}
.y9aa_c00001{bottom:368.775000px;}
.yc73_c00001{bottom:368.865000px;}
.y1851_c00001{bottom:368.954400px;}
.ye93_c00001{bottom:369.584400px;}
.y188e_c00001{bottom:369.768600px;}
.y1215_c00001{bottom:369.769530px;}
.y10dc_c00001{bottom:370.212270px;}
.y808_c00001{bottom:370.484400px;}
.y240_c00001{bottom:370.485000px;}
.y18ec_c00001{bottom:370.491240px;}
.y125d_c00001{bottom:371.293260px;}
.y16bb_c00001{bottom:371.294400px;}
.y16cd_c00001{bottom:371.298450px;}
.y12da_c00001{bottom:371.384400px;}
.y1c4e_c00001{bottom:371.544060px;}
.y17c6_c00001{bottom:371.564250px;}
.y13f5_c00001{bottom:371.564400px;}
.ycf6_c00001{bottom:372.012000px;}
.y64_c00001{bottom:372.108900px;}
.y61c_c00001{bottom:372.195000px;}
.y1238_c00001{bottom:372.551280px;}
.y296_c00001{bottom:372.648900px;}
.y8af_c00001{bottom:372.738900px;}
.yf77_c00001{bottom:372.914400px;}
.y613_c00001{bottom:372.994410px;}
.y618_c00001{bottom:372.999630px;}
.y60c_c00001{bottom:373.000350px;}
.y10f1_c00001{bottom:373.185000px;}
.y658_c00001{bottom:373.277640px;}
.yc74_c00001{bottom:373.364400px;}
.y1271_c00001{bottom:373.633500px;}
.y1286_c00001{bottom:373.635000px;}
.y1a85_c00001{bottom:373.637400px;}
.y509_c00001{bottom:373.815000px;}
.y391_c00001{bottom:373.817490px;}
.y1ff_c00001{bottom:373.913250px;}
.yf0a_c00001{bottom:373.991430px;}
.y13e3_c00001{bottom:374.171010px;}
.yd69_c00001{bottom:374.174400px;}
.y17a0_c00001{bottom:374.351010px;}
.y576_c00001{bottom:374.357640px;}
.y13a8_c00001{bottom:374.637750px;}
.y116f_c00001{bottom:374.704410px;}
.y136c_c00001{bottom:374.714400px;}
.y1967_c00001{bottom:375.164400px;}
.y9d2_c00001{bottom:375.165000px;}
.y15f7_c00001{bottom:375.344250px;}
.y155d_c00001{bottom:375.704400px;}
.yd2e_c00001{bottom:375.794400px;}
.y1186_c00001{bottom:376.401120px;}
.y162d_c00001{bottom:376.424400px;}
.y1643_c00001{bottom:376.428570px;}
.y2d8_c00001{bottom:376.518750px;}
.y13e8_c00001{bottom:376.606500px;}
.y13e5_c00001{bottom:376.700520px;}
.y1a0e_c00001{bottom:376.787550px;}
.y6b1_c00001{bottom:376.787640px;}
.y1a23_c00001{bottom:376.791780px;}
.y1c06_c00001{bottom:376.968750px;}
.y1b1e_c00001{bottom:377.052630px;}
.y955_c00001{bottom:377.235000px;}
.y177c_c00001{bottom:377.594400px;}
.yd6_c00001{bottom:377.775000px;}
.y11e6_c00001{bottom:377.861700px;}
.y1ae3_c00001{bottom:377.864400px;}
.y1a4b_c00001{bottom:378.405000px;}
.y906_c00001{bottom:378.477780px;}
.y8fc_c00001{bottom:378.494250px;}
.y12c4_c00001{bottom:378.669930px;}
.y1b1d_c00001{bottom:378.674400px;}
.y1ae4_c00001{bottom:378.675210px;}
.y148_c00001{bottom:378.764400px;}
.y146_c00001{bottom:378.768750px;}
.y81_c00001{bottom:378.862140px;}
.ye64_c00001{bottom:379.212270px;}
.y3d_c00001{bottom:379.394400px;}
.y136d_c00001{bottom:380.208900px;}
.y17a8_c00001{bottom:380.384400px;}
.y18ba_c00001{bottom:380.474400px;}
.y7b0_c00001{bottom:380.477490px;}
.y1cb2_c00001{bottom:380.638650px;}
.y4ba_c00001{bottom:380.744400px;}
.y4b7_c00001{bottom:380.747490px;}
.y34a_c00001{bottom:380.819370px;}
.y1297_c00001{bottom:380.835000px;}
.y344_c00001{bottom:380.835840px;}
.y1c44_c00001{bottom:380.924400px;}
.yacc_c00001{bottom:381.105000px;}
.y1998_c00001{bottom:381.284400px;}
.yf5f_c00001{bottom:381.374250px;}
.yf2d_c00001{bottom:381.463500px;}
.y1858_c00001{bottom:381.734400px;}
.yfaf_c00001{bottom:382.184400px;}
.y766_c00001{bottom:382.272000px;}
.yd94_c00001{bottom:382.454400px;}
.y16f3_c00001{bottom:382.547820px;}
.yb72_c00001{bottom:382.634970px;}
.y1519_c00001{bottom:382.724400px;}
.y1bbe_c00001{bottom:382.819800px;}
.ye18_c00001{bottom:383.264400px;}
.y700_c00001{bottom:383.353140px;}
.y2d9_c00001{bottom:383.354250px;}
.y100a_c00001{bottom:383.534400px;}
.y6b3_c00001{bottom:383.714400px;}
.ydc4_c00001{bottom:383.894400px;}
.yfd9_c00001{bottom:384.074400px;}
.y1c8f_c00001{bottom:384.164250px;}
.y14c0_c00001{bottom:384.437640px;}
.y188c_c00001{bottom:384.974400px;}
.y13c_c00001{bottom:385.064400px;}
.y1137_c00001{bottom:385.562100px;}
.y1159_c00001{bottom:385.578570px;}
.y1a84_c00001{bottom:385.694250px;}
.y14bd_c00001{bottom:385.874400px;}
.y1593_c00001{bottom:385.973790px;}
.y1c4d_c00001{bottom:386.219280px;}
.y13a4_c00001{bottom:386.324250px;}
.y295_c00001{bottom:386.414400px;}
.y18c_c00001{bottom:386.415000px;}
.y8ae_c00001{bottom:386.504400px;}
.ycb8_c00001{bottom:386.505000px;}
.y1a81_c00001{bottom:386.774250px;}
.y199b_c00001{bottom:386.782800px;}
.y109a_c00001{bottom:386.955000px;}
.y243_c00001{bottom:386.957640px;}
.y657_c00001{bottom:387.138900px;}
.y1813_c00001{bottom:387.225000px;}
.y390_c00001{bottom:387.582990px;}
.y392_c00001{bottom:387.594960px;}
.y63_c00001{bottom:387.674400px;}
.y1fe_c00001{bottom:387.678750px;}
.y13e2_c00001{bottom:387.944250px;}
.y1731_c00001{bottom:388.034400px;}
.y179f_c00001{bottom:388.124250px;}
.y850_c00001{bottom:388.125000px;}
.y575_c00001{bottom:388.218900px;}
.y1116_c00001{bottom:388.369020px;}
.y13a7_c00001{bottom:388.403250px;}
.ya50_c00001{bottom:388.744050px;}
.y1a0d_c00001{bottom:388.844400px;}
.y1a22_c00001{bottom:388.848630px;}
.y98a_c00001{bottom:388.935000px;}
.yc0f_c00001{bottom:389.022000px;}
.yc21_c00001{bottom:389.023500px;}
.yc28_c00001{bottom:389.025000px;}
.y1b86_c00001{bottom:389.294250px;}
.y166b_c00001{bottom:389.474400px;}
.y2d7_c00001{bottom:390.284250px;}
.y52d_c00001{bottom:390.368820px;}
.y13e7_c00001{bottom:390.372000px;}
.y508_c00001{bottom:390.377640px;}
.y6b0_c00001{bottom:390.648900px;}
.ye66_c00001{bottom:390.734400px;}
.y131b_c00001{bottom:390.825000px;}
.y1779_c00001{bottom:390.920370px;}
.ycb9_c00001{bottom:391.004400px;}
.y101f_c00001{bottom:391.005000px;}
.y1969_c00001{bottom:391.012650px;}
.y43c_c00001{bottom:391.182000px;}
.y46e_c00001{bottom:391.183500px;}
.y478_c00001{bottom:391.185000px;}
.y142e_c00001{bottom:391.544250px;}
.y1273_c00001{bottom:391.994400px;}
.y901_c00001{bottom:392.164350px;}
.yd2d_c00001{bottom:392.175000px;}
.y34f_c00001{bottom:392.444250px;}
.y145_c00001{bottom:392.534250px;}
.y84_c00001{bottom:392.714400px;}
.y80_c00001{bottom:392.723400px;}
.y1473_c00001{bottom:392.804400px;}
.y612_c00001{bottom:393.071340px;}
.y617_c00001{bottom:393.076560px;}
.y60b_c00001{bottom:393.077280px;}
.yc42_c00001{bottom:393.517410px;}
.yc10_c00001{bottom:393.524250px;}
.yf86_c00001{bottom:393.614400px;}
.y107b_c00001{bottom:393.703260px;}
.y1b60_c00001{bottom:393.704400px;}
.y18eb_c00001{bottom:393.713940px;}
.y1ca8_c00001{bottom:393.820410px;}
.y443_c00001{bottom:393.991140px;}
.y7af_c00001{bottom:394.242990px;}
.yd7_c00001{bottom:394.244400px;}
.y10c1_c00001{bottom:394.247400px;}
.y11c4_c00001{bottom:394.335000px;}
.y125e_c00001{bottom:394.424400px;}
.y4b6_c00001{bottom:394.608750px;}
.y155e_c00001{bottom:394.689990px;}
.y12fb_c00001{bottom:394.694400px;}
.yd46_c00001{bottom:394.874250px;}
.y1b_c00001{bottom:394.874400px;}
.y1bbd_c00001{bottom:394.876650px;}
.y9d0_c00001{bottom:395.232000px;}
.y9ea_c00001{bottom:395.233500px;}
.y9f3_c00001{bottom:395.235000px;}
.yaa8_c00001{bottom:395.325000px;}
.y136b_c00001{bottom:395.414400px;}
.y10f4_c00001{bottom:395.779530px;}
.y1966_c00001{bottom:395.864400px;}
.y61b_c00001{bottom:396.043500px;}
.y18d_c00001{bottom:396.044250px;}
.y805_c00001{bottom:396.135000px;}
.y19cb_c00001{bottom:396.497460px;}
.y19e0_c00001{bottom:396.499470px;}
.yd2c_c00001{bottom:396.674400px;}
.y155c_c00001{bottom:396.764400px;}
.y6ff_c00001{bottom:397.214400px;}
.y50a_c00001{bottom:397.304400px;}
.y954_c00001{bottom:397.392000px;}
.y185a_c00001{bottom:397.578900px;}
.ybde_c00001{bottom:397.845000px;}
.y119c_c00001{bottom:398.112420px;}
.y14bf_c00001{bottom:398.298900px;}
.y15f6_c00001{bottom:398.384400px;}
.ye39_c00001{bottom:398.742000px;}
.y1ae2_c00001{bottom:398.924400px;}
.ycf5_c00001{bottom:399.105000px;}
.yf4c_c00001{bottom:399.468930px;}
.y9d1_c00001{bottom:399.734400px;}
.y13e4_c00001{bottom:399.824400px;}
.ya83_c00001{bottom:400.181430px;}
.y199a_c00001{bottom:400.548300px;}
.y1b61_c00001{bottom:400.548900px;}
.y1c4c_c00001{bottom:400.798740px;}
.y244_c00001{bottom:400.814400px;}
.y242_c00001{bottom:400.818900px;}
.y656_c00001{bottom:400.904400px;}
.y349_c00001{bottom:400.978650px;}
.y11e7_c00001{bottom:400.994400px;}
.y343_c00001{bottom:400.995120px;}
.y11e5_c00001{bottom:401.084400px;}
.y7b1_c00001{bottom:401.173620px;}
.y18b9_c00001{bottom:401.174400px;}
.yb1c_c00001{bottom:401.265000px;}
.y1fd_c00001{bottom:401.444250px;}
.y574_c00001{bottom:401.984400px;}
.y13a6_c00001{bottom:402.168750px;}
.y1857_c00001{bottom:402.434400px;}
.y17c5_c00001{bottom:402.614250px;}
.y13f4_c00001{bottom:402.614400px;}
.yb71_c00001{bottom:402.794250px;}
.y1431_c00001{bottom:402.808200px;}
.y1b6_c00001{bottom:402.973440px;}
.y18b_c00001{bottom:402.974400px;}
.y3fa_c00001{bottom:402.977490px;}
.y123a_c00001{bottom:403.154400px;}
.yfae_c00001{bottom:403.329660px;}
.y12a0_c00001{bottom:403.332870px;}
.y1518_c00001{bottom:403.424400px;}
.yd93_c00001{bottom:403.509810px;}
.y15c4_c00001{bottom:403.873500px;}
.y1734_c00001{bottom:403.878600px;}
.yf2f_c00001{bottom:403.963260px;}
.ye17_c00001{bottom:404.054400px;}
.yeb9_c00001{bottom:404.055000px;}
.y52c_c00001{bottom:404.134320px;}
.y507_c00001{bottom:404.143140px;}
.y6af_c00001{bottom:404.414400px;}
.ydf4_c00001{bottom:404.507460px;}
.y853_c00001{bottom:404.597640px;}
.y1009_c00001{bottom:404.679810px;}
.y1968_c00001{bottom:404.778150px;}
.y116e_c00001{bottom:404.943330px;}
.ydc3_c00001{bottom:405.047460px;}
.y16ba_c00001{bottom:405.053850px;}
.yfd8_c00001{bottom:405.219810px;}
.y107d_c00001{bottom:405.224400px;}
.y16f2_c00001{bottom:405.671700px;}
.yb1d_c00001{bottom:405.764400px;}
.y1938_c00001{bottom:406.397460px;}
.y1b88_c00001{bottom:406.487400px;}
.y7f_c00001{bottom:406.488900px;}
.y1185_c00001{bottom:406.557690px;}
.y14bc_c00001{bottom:406.574400px;}
.y13a3_c00001{bottom:407.024250px;}
.y162c_c00001{bottom:407.297400px;}
.y1642_c00001{bottom:407.302530px;}
.y1595_c00001{bottom:407.567400px;}
.y1939_c00001{bottom:407.748900px;}
.y442_c00001{bottom:407.756640px;}
.y1214_c00001{bottom:407.930520px;}
.y7ae_c00001{bottom:408.104250px;}
.y10db_c00001{bottom:408.373260px;}
.y4b5_c00001{bottom:408.374250px;}
.y1730_c00001{bottom:408.734400px;}
.ya4f_c00001{bottom:408.903330px;}
.y12c3_c00001{bottom:408.908850px;}
.y3ec_c00001{bottom:409.049250px;}
.y988_c00001{bottom:409.095000px;}
.y1592_c00001{bottom:409.097670px;}
.yc72_c00001{bottom:409.185000px;}
.y1bbc_c00001{bottom:409.364250px;}
.y1818_c00001{bottom:409.364400px;}
.y1bd2_c00001{bottom:409.368930px;}
.y109b_c00001{bottom:409.454250px;}
.y119f_c00001{bottom:409.544250px;}
.y1b85_c00001{bottom:409.994250px;}
.y1047_c00001{bottom:410.082000px;}
.y1056_c00001{bottom:410.083500px;}
.y105a_c00001{bottom:410.085000px;}
.y166a_c00001{bottom:410.174400px;}
.y3c_c00001{bottom:410.354400px;}
.y763_c00001{bottom:410.623500px;}
.y1237_c00001{bottom:410.712270px;}
.y1320_c00001{bottom:410.803140px;}
.y1a4c_c00001{bottom:410.987400px;}
.y1abf_c00001{bottom:411.074400px;}
.y34e_c00001{bottom:411.162000px;}
.y1859_c00001{bottom:411.344400px;}
.yc40_c00001{bottom:411.615000px;}
.y1c42_c00001{bottom:411.974250px;}
.y1c47_c00001{bottom:411.974400px;}
.y14be_c00001{bottom:412.064400px;}
.yf09_c00001{bottom:412.152420px;}
.y8a8_c00001{bottom:412.155000px;}
.y142d_c00001{bottom:412.244250px;}
.y806_c00001{bottom:412.604250px;}
.y28e_c00001{bottom:412.965000px;}
.y611_c00001{bottom:413.230620px;}
.y616_c00001{bottom:413.235840px;}
.y60a_c00001{bottom:413.236560px;}
.y1f8_c00001{bottom:413.322000px;}
.y764_c00001{bottom:413.414400px;}
.y1023_c00001{bottom:413.501430px;}
.y1472_c00001{bottom:413.504400px;}
.y989_c00001{bottom:413.594400px;}
.yc71_c00001{bottom:413.595060px;}
.y18ee_c00001{bottom:413.958900px;}
.y1778_c00001{bottom:414.044250px;}
.y16f5_c00001{bottom:414.133140px;}
.yf76_c00001{bottom:414.314400px;}
.y1b5f_c00001{bottom:414.404400px;}
.y241_c00001{bottom:414.584400px;}
.y8ab_c00001{bottom:414.857640px;}
.y1092_c00001{bottom:415.039440px;}
.y1960_c00001{bottom:415.124250px;}
.y15c3_c00001{bottom:415.394400px;}
.ya04_c00001{bottom:415.395000px;}
.y1c4b_c00001{bottom:415.473960px;}
.yd68_c00001{bottom:415.574400px;}
.y131d_c00001{bottom:415.664400px;}
.y1136_c00001{bottom:415.801020px;}
.y1158_c00001{bottom:415.817490px;}
.y2d4_c00001{bottom:415.935000px;}
.yc41_c00001{bottom:416.114250px;}
.y19cc_c00001{bottom:416.204250px;}
.y6ab_c00001{bottom:416.205000px;}
.y1965_c00001{bottom:416.564400px;}
.y1430_c00001{bottom:416.573700px;}
.y3f9_c00001{bottom:416.742990px;}
.y3fb_c00001{bottom:416.744400px;}
.y11c5_c00001{bottom:416.834400px;}
.y18ea_c00001{bottom:416.837820px;}
.ye63_c00001{bottom:417.373260px;}
.y952_c00001{bottom:417.555000px;}
.y1733_c00001{bottom:417.644100px;}
.ybaa_c00001{bottom:417.825000px;}
.y1a7f_c00001{bottom:417.917550px;}
.y52b_c00001{bottom:417.995580px;}
.y506_c00001{bottom:418.004400px;}
.y13d_c00001{bottom:418.182000px;}
.y1b5_c00001{bottom:418.450650px;}
.y18a_c00001{bottom:418.454250px;}
.y852_c00001{bottom:418.458900px;}
.y1115_c00001{bottom:418.525590px;}
.y1b87_c00001{bottom:418.544250px;}
.yee2_c00001{bottom:418.815000px;}
.y16b9_c00001{bottom:418.994400px;}
.yd2b_c00001{bottom:419.262000px;}
.yd31_c00001{bottom:419.263500px;}
.y19ca_c00001{bottom:419.264400px;}
.yd38_c00001{bottom:419.265000px;}
.y19df_c00001{bottom:419.266410px;}
.y162b_c00001{bottom:419.354250px;}
.y1641_c00001{bottom:419.359380px;}
.y8f4_c00001{bottom:419.530200px;}
.y126c_c00001{bottom:419.532000px;}
.y127f_c00001{bottom:419.533500px;}
.y8fa_c00001{bottom:419.534250px;}
.y1285_c00001{bottom:419.535000px;}
.y1594_c00001{bottom:419.624250px;}
.ya05_c00001{bottom:419.894400px;}
.yd3_c00001{bottom:419.895000px;}
.y7e_c00001{bottom:420.254400px;}
.y141_c00001{bottom:420.887640px;}
.y342_c00001{bottom:421.154400px;}
.ye3d_c00001{bottom:421.242420px;}
.yacb_c00001{bottom:421.422000px;}
.yae2_c00001{bottom:421.423500px;}
.yaed_c00001{bottom:421.425000px;}
.y441_c00001{bottom:421.522140px;}
.yd2_c00001{bottom:421.694250px;}
.y18b8_c00001{bottom:421.874400px;}
.y953_c00001{bottom:422.054400px;}
.yba9_c00001{bottom:422.324400px;}
.ybdd_c00001{bottom:422.504400px;}
.y1997_c00001{bottom:422.684400px;}
.y6fc_c00001{bottom:422.772000px;}
.y71e_c00001{bottom:422.773500px;}
.yf5e_c00001{bottom:422.774250px;}
.y72d_c00001{bottom:422.775000px;}
.yfad_c00001{bottom:423.044250px;}
.y1856_c00001{bottom:423.134400px;}
.yd92_c00001{bottom:423.224400px;}
.yf0b_c00001{bottom:423.669900px;}
.yd2a_c00001{bottom:423.764400px;}
.ye90_c00001{bottom:424.123500px;}
.y1517_c00001{bottom:424.124400px;}
.ydf3_c00001{bottom:424.304400px;}
.y61a_c00001{bottom:424.394400px;}
.y131f_c00001{bottom:424.664400px;}
.ydc2_c00001{bottom:424.844400px;}
.yfd7_c00001{bottom:424.934400px;}
.yebb_c00001{bottom:425.114250px;}
.ye16_c00001{bottom:425.199810px;}
.y1c8e_c00001{bottom:425.564250px;}
.y6fd_c00001{bottom:425.564400px;}
.y12ec_c00001{bottom:425.744400px;}
.y140c_c00001{bottom:425.924250px;}
.y1a_c00001{bottom:425.924400px;}
.y15cb_c00001{bottom:426.387210px;}
.y651_c00001{bottom:426.552000px;}
.y66f_c00001{bottom:426.553500px;}
.y15f3_c00001{bottom:426.554400px;}
.y682_c00001{bottom:426.555000px;}
.ycb7_c00001{bottom:426.735000px;}
.y1367_c00001{bottom:426.824400px;}
.ycf4_c00001{bottom:426.915000px;}
.y1a0b_c00001{bottom:427.004400px;}
.y1a20_c00001{bottom:427.009350px;}
.yf30_c00001{bottom:427.094400px;}
.y18bc_c00001{bottom:427.368900px;}
.y17a1_c00001{bottom:427.455000px;}
.y1c46_c00001{bottom:427.458900px;}
.y56f_c00001{bottom:427.633500px;}
.y18ed_c00001{bottom:427.724400px;}
.y1a0c_c00001{bottom:427.815210px;}
.y1a21_c00001{bottom:427.820160px;}
.y16f4_c00001{bottom:427.994400px;}
.y38c_c00001{bottom:427.995000px;}
.y444_c00001{bottom:428.464740px;}
.y8aa_c00001{bottom:428.718900px;}
.y16f1_c00001{bottom:428.894400px;}
.y1091_c00001{bottom:428.896920px;}
.yecb_c00001{bottom:429.070710px;}
.yeb8_c00001{bottom:429.071700px;}
.y1937_c00001{bottom:429.164400px;}
.yafd_c00001{bottom:429.252000px;}
.yb4d_c00001{bottom:429.253500px;}
.yb53_c00001{bottom:429.255000px;}
.y172f_c00001{bottom:429.434400px;}
.y290_c00001{bottom:429.528750px;}
.ya4e_c00001{bottom:429.787290px;}
.y1fb_c00001{bottom:429.797640px;}
.y654_c00001{bottom:429.883140px;}
.y1a7e_c00001{bottom:429.974400px;}
.y1c4a_c00001{bottom:430.149180px;}
.y142f_c00001{bottom:430.339200px;}
.y10f5_c00001{bottom:430.424400px;}
.y3f8_c00001{bottom:430.604250px;}
.y1b84_c00001{bottom:430.694250px;}
.y1669_c00001{bottom:430.874400px;}
.y1213_c00001{bottom:431.054400px;}
.ycb6_c00001{bottom:431.235210px;}
.y17e8_c00001{bottom:431.238900px;}
.y188_c00001{bottom:431.325000px;}
.ycf3_c00001{bottom:431.414400px;}
.yc6f_c00001{bottom:431.775000px;}
.y107a_c00001{bottom:431.864250px;}
.y851_c00001{bottom:432.224400px;}
.y1591_c00001{bottom:432.320370px;}
.y2d5_c00001{bottom:432.404400px;}
.y10c0_c00001{bottom:432.408390px;}
.y104a_c00001{bottom:432.583410px;}
.y6ad_c00001{bottom:432.768750px;}
.y1476_c00001{bottom:432.867900px;}
.y1a80_c00001{bottom:433.034250px;}
.y1817_c00001{bottom:433.214400px;}
.y610_c00001{bottom:433.389900px;}
.y615_c00001{bottom:433.395120px;}
.y609_c00001{bottom:433.395840px;}
.y13f3_c00001{bottom:433.484400px;}
.y17c4_c00001{bottom:433.664250px;}
.y12d9_c00001{bottom:433.664400px;}
.y7a8_c00001{bottom:433.665000px;}
.y10f3_c00001{bottom:433.940520px;}
.y4b1_c00001{bottom:434.025000px;}
.y1471_c00001{bottom:434.204400px;}
.y13e1_c00001{bottom:434.567490px;}
.y140_c00001{bottom:434.653140px;}
.yf85_c00001{bottom:435.014400px;}
.y116d_c00001{bottom:435.182250px;}
.y440_c00001{bottom:435.383400px;}
.y8ac_c00001{bottom:435.553770px;}
.y9cf_c00001{bottom:435.555000px;}
.y16ec_c00001{bottom:435.734400px;}
.y136a_c00001{bottom:435.833250px;}
.y13de_c00001{bottom:436.004250px;}
.y17e6_c00001{bottom:436.094400px;}
.y52a_c00001{bottom:436.178010px;}
.y505_c00001{bottom:436.182990px;}
.y119b_c00001{bottom:436.273410px;}
.yc70_c00001{bottom:436.274250px;}
.yd56_c00001{bottom:436.274400px;}
.y291_c00001{bottom:436.454250px;}
.yd5_c00001{bottom:436.458900px;}
.y1184_c00001{bottom:436.796610px;}
.y1cb9_c00001{bottom:437.317950px;}
.y142c_c00001{bottom:437.444250px;}
.y1bb9_c00001{bottom:437.444400px;}
.y13a1_c00001{bottom:437.534400px;}
.y38d_c00001{bottom:437.624250px;}
.yf4b_c00001{bottom:437.629920px;}
.y1b80_c00001{bottom:438.074400px;}
.ybdc_c00001{bottom:438.162000px;}
.y803_c00001{bottom:438.255000px;}
.ya82_c00001{bottom:438.342420px;}
.y1626_c00001{bottom:438.795000px;}
.y348_c00001{bottom:438.876120px;}
.y75d_c00001{bottom:438.972000px;}
.y12c2_c00001{bottom:439.147770px;}
.y6ae_c00001{bottom:439.604250px;}
.y8f3_c00001{bottom:439.689480px;}
.y18e9_c00001{bottom:439.961700px;}
.ya20_c00001{bottom:440.054400px;}
.y239_c00001{bottom:440.235000px;}
.y1b19_c00001{bottom:440.687670px;}
.y1adf_c00001{bottom:440.874660px;}
.y189_c00001{bottom:440.954250px;}
.y18bb_c00001{bottom:441.134400px;}
.yee5_c00001{bottom:441.312420px;}
.y151b_c00001{bottom:441.313050px;}
.y3b_c00001{bottom:441.404400px;}
.y129f_c00001{bottom:441.493860px;}
.y14b8_c00001{bottom:441.494400px;}
.y142_c00001{bottom:441.583770px;}
.y188b_c00001{bottom:441.584640px;}
.yaca_c00001{bottom:441.585000px;}
.y126f_c00001{bottom:442.030710px;}
.yf2e_c00001{bottom:442.124250px;}
.y8f9_c00001{bottom:442.395000px;}
.y8a9_c00001{bottom:442.484400px;}
.y18b7_c00001{bottom:442.574400px;}
.y1090_c00001{bottom:442.754400px;}
.y1c41_c00001{bottom:443.024250px;}
.y13a2_c00001{bottom:443.028600px;}
.y28f_c00001{bottom:443.294250px;}
.y6aa_c00001{bottom:443.384400px;}
.yba8_c00001{bottom:443.562000px;}
.ybb6_c00001{bottom:443.563500px;}
.ybbd_c00001{bottom:443.565000px;}
.y1fc_c00001{bottom:443.654400px;}
.y1fa_c00001{bottom:443.658900px;}
.y653_c00001{bottom:443.744400px;}
.y4b2_c00001{bottom:443.834400px;}
.y571_c00001{bottom:444.103140px;}
.yfac_c00001{bottom:444.189810px;}
.y1a4a_c00001{bottom:444.194250px;}
.yd91_c00001{bottom:444.377460px;}
.y1b5d_c00001{bottom:444.824250px;}
.y1516_c00001{bottom:444.824400px;}
.ye15_c00001{bottom:444.914400px;}
.y17e7_c00001{bottom:445.004400px;}
.ydf2_c00001{bottom:445.449810px;}
.y1008_c00001{bottom:445.539810px;}
.y1559_c00001{bottom:445.544400px;}
.y79_c00001{bottom:445.905000px;}
.y1135_c00001{bottom:445.957590px;}
.y1157_c00001{bottom:445.974060px;}
.ydc1_c00001{bottom:445.989660px;}
.yfd6_c00001{bottom:446.079660px;}
.y1c8d_c00001{bottom:446.264250px;}
.yd29_c00001{bottom:446.355000px;}
.y6ac_c00001{bottom:446.534250px;}
.ye91_c00001{bottom:446.624250px;}
.y1475_c00001{bottom:446.633400px;}
.y1962_c00001{bottom:446.984400px;}
.y15f2_c00001{bottom:447.254400px;}
.y1366_c00001{bottom:447.524400px;}
.yba7_c00001{bottom:448.064400px;}
.y1a1f_c00001{bottom:448.069350px;}
.y126b_c00001{bottom:448.157550px;}
.y619_c00001{bottom:448.244400px;}
.y13e0_c00001{bottom:448.428750px;}
.y13f_c00001{bottom:448.514400px;}
.y1114_c00001{bottom:448.764510px;}
.y1236_c00001{bottom:448.873260px;}
.y1258_c00001{bottom:449.055000px;}
.yf4d_c00001{bottom:449.144400px;}
.y43f_c00001{bottom:449.148900px;}
.y987_c00001{bottom:449.325000px;}
.ycb5_c00001{bottom:449.415000px;}
.y1a7c_c00001{bottom:449.502000px;}
.y1a95_c00001{bottom:449.503500px;}
.y16b7_c00001{bottom:449.504250px;}
.y1a9a_c00001{bottom:449.505000px;}
.y15ca_c00001{bottom:449.511090px;}
.y1369_c00001{bottom:449.598750px;}
.y4ec_c00001{bottom:449.684400px;}
.y192e_c00001{bottom:449.955000px;}
.y17a5_c00001{bottom:449.959530px;}
.y529_c00001{bottom:450.039270px;}
.y504_c00001{bottom:450.044250px;}
.y172e_c00001{bottom:450.134400px;}
.yd4_c00001{bottom:450.224400px;}
.yf08_c00001{bottom:450.313410px;}
.y4b0_c00001{bottom:450.764400px;}
.y7ab_c00001{bottom:450.768750px;}
.y1b1b_c00001{bottom:450.772050px;}
.yd28_c00001{bottom:450.854250px;}
.y572_c00001{bottom:451.034250px;}
.y6f8_c00001{bottom:451.123500px;}
.y72c_c00001{bottom:451.125000px;}
.y1211_c00001{bottom:451.214400px;}
.y1668_c00001{bottom:451.574400px;}
.y1022_c00001{bottom:451.662420px;}
.y1b5e_c00001{bottom:451.668900px;}
.y19c9_c00001{bottom:451.848750px;}
.yc3f_c00001{bottom:451.932000px;}
.yeca_c00001{bottom:451.933410px;}
.yeb7_c00001{bottom:451.934400px;}
.y151a_c00001{bottom:453.369900px;}
.y60f_c00001{bottom:453.549180px;}
.y1853_c00001{bottom:453.554250px;}
.y614_c00001{bottom:453.554400px;}
.y608_c00001{bottom:453.555120px;}
.y1313_c00001{bottom:453.735000px;}
.ya4d_c00001{bottom:453.817020px;}
.y986_c00001{bottom:453.824400px;}
.y6f9_c00001{bottom:453.914400px;}
.y15f5_c00001{bottom:454.100850px;}
.y1c04_c00001{bottom:454.634250px;}
.y1bbb_c00001{bottom:454.637400px;}
.ycf2_c00001{bottom:454.725000px;}
.y804_c00001{bottom:454.814400px;}
.y1470_c00001{bottom:454.904400px;}
.y16b8_c00001{bottom:454.998600px;}
.y10c2_c00001{bottom:455.444250px;}
.y188a_c00001{bottom:455.445900px;}
.y7b_c00001{bottom:455.534250px;}
.y761_c00001{bottom:455.542140px;}
.y11de_c00001{bottom:455.625000px;}
.y104b_c00001{bottom:455.626650px;}
.y9ce_c00001{bottom:455.713500px;}
.yf75_c00001{bottom:455.714400px;}
.y9f2_c00001{bottom:455.715000px;}
.y3f1_c00001{bottom:456.165000px;}
.y38a_c00001{bottom:456.345000px;}
.y13dd_c00001{bottom:456.704250px;}
.y23f_c00001{bottom:456.710880px;}
.y12f2_c00001{bottom:456.794400px;}
.y140b_c00001{bottom:456.974250px;}
.y19_c00001{bottom:456.974400px;}
.y10f2_c00001{bottom:457.064400px;}
.y1f9_c00001{bottom:457.424400px;}
.y1698_c00001{bottom:457.430610px;}
.y7ad_c00001{bottom:457.604250px;}
.y33f_c00001{bottom:457.695000px;}
.y84e_c00001{bottom:457.873500px;}
.y87c_c00001{bottom:457.875000px;}
.y570_c00001{bottom:457.964400px;}
.y2d0_c00001{bottom:458.055000px;}
.y1bb8_c00001{bottom:458.144400px;}
.y13a0_c00001{bottom:458.234400px;}
.ye3c_c00001{bottom:459.403410px;}
.y186_c00001{bottom:459.675000px;}
.y8f2_c00001{bottom:459.848760px;}
.yaa7_c00001{bottom:460.214400px;}
.y1474_c00001{bottom:460.398900px;}
.y7e8_c00001{bottom:460.574400px;}
.y1a7b_c00001{bottom:460.844400px;}
.y1a94_c00001{bottom:460.844790px;}
.y14bb_c00001{bottom:460.849800px;}
.y1b82_c00001{bottom:461.114400px;}
.y198f_c00001{bottom:461.294250px;}
.y1628_c00001{bottom:461.297820px;}
.yb1a_c00001{bottom:461.652000px;}
.yb2b_c00001{bottom:461.653500px;}
.yb30_c00001{bottom:461.655000px;}
.y13df_c00001{bottom:462.194250px;}
.y14b7_c00001{bottom:462.194400px;}
.y1773_c00001{bottom:462.284400px;}
.y4af_c00001{bottom:462.825000px;}
.y1b1a_c00001{bottom:462.828900px;}
.y1964_c00001{bottom:462.832650px;}
.y43e_c00001{bottom:462.914400px;}
.y10d5_c00001{bottom:462.915000px;}
.y18e8_c00001{bottom:463.184400px;}
.y8f8_c00001{bottom:463.272000px;}
.y92a_c00001{bottom:463.273500px;}
.y18b6_c00001{bottom:463.274400px;}
.y1368_c00001{bottom:463.364250px;}
.y1a45_c00001{bottom:463.725000px;}
.y289_c00001{bottom:463.814400px;}
.yfab_c00001{bottom:463.904400px;}
.y1b18_c00001{bottom:463.910370px;}
.y1098_c00001{bottom:464.082000px;}
.y10a5_c00001{bottom:464.083500px;}
.y10a9_c00001{bottom:464.085000px;}
.y1ade_c00001{bottom:464.097360px;}
.yf5d_c00001{bottom:464.174250px;}
.yd90_c00001{bottom:464.174400px;}
.y7aa_c00001{bottom:464.534250px;}
.y12d8_c00001{bottom:464.534400px;}
.y129e_c00001{bottom:464.617740px;}
.y13f2_c00001{bottom:464.714400px;}
.yb6e_c00001{bottom:465.075000px;}
.ydf1_c00001{bottom:465.164400px;}
.y1007_c00001{bottom:465.254400px;}
.y116c_c00001{bottom:465.338820px;}
.y1515_c00001{bottom:465.524400px;}
.y4fe_c00001{bottom:465.525000px;}
.ydc0_c00001{bottom:465.704250px;}
.yfee_c00001{bottom:465.794250px;}
.yfd5_c00001{bottom:465.794400px;}
.y1ca7_c00001{bottom:465.827250px;}
.y38b_c00001{bottom:465.974400px;}
.ye14_c00001{bottom:466.067310px;}
.yb1b_c00001{bottom:466.154400px;}
.y15f4_c00001{bottom:466.157700px;}
.y1558_c00001{bottom:466.244400px;}
.y1bba_c00001{bottom:466.694250px;}
.y1c8c_c00001{bottom:466.964250px;}
.y1819_c00001{bottom:466.968900px;}
.y1183_c00001{bottom:467.035530px;}
.y1961_c00001{bottom:467.684400px;}
.y1b5c_c00001{bottom:467.864250px;}
.y75c_c00001{bottom:467.868900px;}
.y1b83_c00001{bottom:467.948430px;}
.y15f1_c00001{bottom:467.954400px;}
.y5aa_c00001{bottom:467.955000px;}
.y8a6_c00001{bottom:468.133500px;}
.y1365_c00001{bottom:468.224400px;}
.y28a_c00001{bottom:468.942000px;}
.y12c1_c00001{bottom:469.304340px;}
.yba6_c00001{bottom:469.305000px;}
.y760_c00001{bottom:469.307640px;}
.y1855_c00001{bottom:469.390740px;}
.y985_c00001{bottom:469.482000px;}
.y9a0_c00001{bottom:469.483500px;}
.y9a9_c00001{bottom:469.485000px;}
.yc0e_c00001{bottom:469.575000px;}
.y64b_c00001{bottom:470.022000px;}
.y66e_c00001{bottom:470.023500px;}
.y681_c00001{bottom:470.025000px;}
.y10bf_c00001{bottom:470.569380px;}
.y23e_c00001{bottom:470.572140px;}
.y120f_c00001{bottom:470.655000px;}
.y562_c00001{bottom:470.658900px;}
.y1049_c00001{bottom:470.744400px;}
.ye3e_c00001{bottom:470.924400px;}
.y142b_c00001{bottom:471.017790px;}
.y11ba_c00001{bottom:471.373500px;}
.y125a_c00001{bottom:471.553410px;}
.y1c2d_c00001{bottom:471.555000px;}
.y158d_c00001{bottom:471.825000px;}
.ye5b_c00001{bottom:472.005000px;}
.y60e_c00001{bottom:472.094400px;}
.yc6d_c00001{bottom:472.095000px;}
.y1667_c00001{bottom:472.274400px;}
.y3a_c00001{bottom:472.454400px;}
.y1934_c00001{bottom:472.461240px;}
.y16b6_c00001{bottom:472.544250px;}
.yeb1_c00001{bottom:472.722000px;}
.yec8_c00001{bottom:472.723500px;}
.yecf_c00001{bottom:472.725000px;}
.y15c9_c00001{bottom:472.733790px;}
.y3f6_c00001{bottom:472.736640px;}
.y17a4_c00001{bottom:473.083410px;}
.y155b_c00001{bottom:473.087550px;}
.yedd_c00001{bottom:473.354250px;}
.ya4b_c00001{bottom:473.355000px;}
.yd27_c00001{bottom:473.445000px;}
.y607_c00001{bottom:473.714400px;}
.yba5_c00001{bottom:473.804400px;}
.y1852_c00001{bottom:474.254250px;}
.y75_c00001{bottom:474.255000px;}
.y84f_c00001{bottom:474.344400px;}
.y119a_c00001{bottom:474.434400px;}
.y1abe_c00001{bottom:474.439800px;}
.y14ba_c00001{bottom:474.615300px;}
.y2d2_c00001{bottom:474.618900px;}
.y1024_c00001{bottom:474.704250px;}
.y413_c00001{bottom:474.795000px;}
.y146f_c00001{bottom:475.604400px;}
.yd0_c00001{bottom:475.785000px;}
.yf4a_c00001{bottom:475.873260px;}
.y9cd_c00001{bottom:475.875000px;}
.y1b4_c00001{bottom:476.141970px;}
.y185_c00001{bottom:476.143140px;}
.y187_c00001{bottom:476.144400px;}
.y1134_c00001{bottom:476.196510px;}
.y1156_c00001{bottom:476.212980px;}
.y762_c00001{bottom:476.234400px;}
.y1316_c00001{bottom:476.240370px;}
.yf84_c00001{bottom:476.414400px;}
.ya81_c00001{bottom:476.503410px;}
.yc6e_c00001{bottom:476.594400px;}
.y1963_c00001{bottom:476.598150px;}
.y1270_c00001{bottom:476.684400px;}
.y16ee_c00001{bottom:477.044400px;}
.y4a9_c00001{bottom:477.405000px;}
.y17e5_c00001{bottom:477.494400px;}
.yd45_c00001{bottom:477.674250px;}
.yd55_c00001{bottom:477.674400px;}
.y17a7_c00001{bottom:477.678750px;}
.ya4c_c00001{bottom:477.764400px;}
.yd26_c00001{bottom:477.854250px;}
.y11e2_c00001{bottom:478.127820px;}
.y1775_c00001{bottom:478.128900px;}
.ybdb_c00001{bottom:478.392000px;}
.y1bb7_c00001{bottom:478.844400px;}
.y1abd_c00001{bottom:478.850520px;}
.y1113_c00001{bottom:479.003430px;}
.y6eb_c00001{bottom:479.472000px;}
.yee4_c00001{bottom:479.473410px;}
.y71c_c00001{bottom:479.473500px;}
.y72a_c00001{bottom:479.475000px;}
.y13b_c00001{bottom:479.568900px;}
.y8f1_c00001{bottom:479.925690px;}
.y126e_c00001{bottom:480.191700px;}
.y7ff_c00001{bottom:480.375000px;}
.y1994_c00001{bottom:480.554250px;}
.y172b_c00001{bottom:480.554400px;}
.y1816_c00001{bottom:480.734400px;}
.y2d3_c00001{bottom:481.454250px;}
.yf28_c00001{bottom:481.725000px;}
.y1b81_c00001{bottom:481.814400px;}
.yac9_c00001{bottom:481.815000px;}
.y1a7a_c00001{bottom:481.904400px;}
.y1a93_c00001{bottom:481.904790px;}
.y502_c00001{bottom:482.367900px;}
.y951_c00001{bottom:482.444250px;}
.y16ef_c00001{bottom:482.533140px;}
.ycf1_c00001{bottom:482.625000px;}
.y15cd_c00001{bottom:482.717400px;}
.ybda_c00001{bottom:482.894400px;}
.y162a_c00001{bottom:482.897400px;}
.y1772_c00001{bottom:482.984400px;}
.y75f_c00001{bottom:483.168900px;}
.y1854_c00001{bottom:483.252000px;}
.y75b_c00001{bottom:483.434400px;}
.y568_c00001{bottom:483.522000px;}
.y78_c00001{bottom:483.884400px;}
.y18b5_c00001{bottom:483.974400px;}
.y1b34_c00001{bottom:483.976740px;}
.y8f7_c00001{bottom:484.245000px;}
.y23d_c00001{bottom:484.337640px;}
.y1627_c00001{bottom:484.520520px;}
.y5ad_c00001{bottom:484.523400px;}
.y8a5_c00001{bottom:484.612140px;}
.y142a_c00001{bottom:484.783290px;}
.y1318_c00001{bottom:484.878900px;}
.yfaa_c00001{bottom:484.959810px;}
.y14af_c00001{bottom:484.964400px;}
.y155a_c00001{bottom:485.144400px;}
.yd8f_c00001{bottom:485.319660px;}
.y10da_c00001{bottom:485.409570px;}
.yd1_c00001{bottom:485.414400px;}
.y28c_c00001{bottom:485.508750px;}
.ye13_c00001{bottom:485.864250px;}
.y1a47_c00001{bottom:486.223410px;}
.y561_c00001{bottom:486.224400px;}
.y1312_c00001{bottom:486.227400px;}
.ydf0_c00001{bottom:486.309660px;}
.yfd4_c00001{bottom:486.494400px;}
.y3f5_c00001{bottom:486.502140px;}
.y1099_c00001{bottom:486.584400px;}
.y64f_c00001{bottom:486.593250px;}
.ydbf_c00001{bottom:486.857460px;}
.yfed_c00001{bottom:486.939810px;}
.y1557_c00001{bottom:486.944400px;}
.ycf0_c00001{bottom:487.024950px;}
.y1235_c00001{bottom:487.034250px;}
.y1add_c00001{bottom:487.221240px;}
.y1f7_c00001{bottom:487.304400px;}
.y1428_c00001{bottom:487.842780px;}
.y12f9_c00001{bottom:487.844400px;}
.y1409_c00001{bottom:488.024250px;}
.y18_c00001{bottom:488.024400px;}
.y14b9_c00001{bottom:488.380800px;}
.y2d1_c00001{bottom:488.384400px;}
.yf07_c00001{bottom:488.474400px;}
.y388_c00001{bottom:488.481990px;}
.y3b2_c00001{bottom:488.485230px;}
.y139e_c00001{bottom:488.654250px;}
.y15f0_c00001{bottom:488.654400px;}
.y6a6_c00001{bottom:488.660880px;}
.y13d6_c00001{bottom:488.834400px;}
.y983_c00001{bottom:489.645000px;}
.ycb3_c00001{bottom:489.732000px;}
.ycce_c00001{bottom:489.733500px;}
.ycd7_c00001{bottom:489.735000px;}
.y1021_c00001{bottom:489.823410px;}
.y1b3_c00001{bottom:490.003230px;}
.y184_c00001{bottom:490.004400px;}
.y1a08_c00001{bottom:490.106490px;}
.y7a5_c00001{bottom:490.725000px;}
.yb6d_c00001{bottom:490.812000px;}
.yee6_c00001{bottom:490.994400px;}
.y43b_c00001{bottom:491.262990px;}
.y17a6_c00001{bottom:491.444250px;}
.y605_c00001{bottom:491.445000px;}
.y1774_c00001{bottom:491.894400px;}
.y1aba_c00001{bottom:491.981160px;}
.yc3e_c00001{bottom:492.255000px;}
.y28d_c00001{bottom:492.344400px;}
.y1666_c00001{bottom:492.974400px;}
.y1210_c00001{bottom:493.154400px;}
.y13a_c00001{bottom:493.334400px;}
.y13d9_c00001{bottom:493.694400px;}
.y11c0_c00001{bottom:493.882950px;}
.y4ad_c00001{bottom:493.971990px;}
.y1ca6_c00001{bottom:494.089770px;}
.y984_c00001{bottom:494.144400px;}
.y139f_c00001{bottom:494.148900px;}
.ycb4_c00001{bottom:494.234400px;}
.y158f_c00001{bottom:494.327820px;}
.ye61_c00001{bottom:494.514660px;}
.y125b_c00001{bottom:494.594400px;}
.y15cc_c00001{bottom:494.774250px;}
.y1629_c00001{bottom:494.954250px;}
.yba4_c00001{bottom:495.045000px;}
.y19c7_c00001{bottom:495.134400px;}
.yeb5_c00001{bottom:495.222270px;}
.y116b_c00001{bottom:495.577740px;}
.y13f1_c00001{bottom:495.584400px;}
.y1933_c00001{bottom:495.683940px;}
.y17c3_c00001{bottom:495.764250px;}
.y15e0_c00001{bottom:495.764400px;}
.y15c8_c00001{bottom:495.857670px;}
.ya02_c00001{bottom:495.942000px;}
.ya2c_c00001{bottom:495.943500px;}
.y604_c00001{bottom:495.944250px;}
.y1b5a_c00001{bottom:495.944400px;}
.ya31_c00001{bottom:495.945000px;}
.yaa6_c00001{bottom:496.035000px;}
.y6f7_c00001{bottom:496.038900px;}
.y501_c00001{bottom:496.133400px;}
.y10ea_c00001{bottom:496.665000px;}
.y75e_c00001{bottom:496.934400px;}
.y801_c00001{bottom:496.938750px;}
.yf74_c00001{bottom:497.114400px;}
.y1ae1_c00001{bottom:497.202630px;}
.y152c_c00001{bottom:497.204610px;}
.y1514_c00001{bottom:497.207550px;}
.y1182_c00001{bottom:497.274450px;}
.ye3b_c00001{bottom:497.564400px;}
.y16ed_c00001{bottom:497.744400px;}
.y94f_c00001{bottom:498.102000px;}
.y23c_c00001{bottom:498.103140px;}
.y1311_c00001{bottom:498.284250px;}
.y5ac_c00001{bottom:498.288900px;}
.yd67_c00001{bottom:498.374400px;}
.y8a7_c00001{bottom:498.464400px;}
.y8a4_c00001{bottom:498.473400px;}
.y1317_c00001{bottom:498.644400px;}
.y1429_c00001{bottom:498.644550px;}
.y28b_c00001{bottom:499.274250px;}
.y1315_c00001{bottom:499.364250px;}
.y12c0_c00001{bottom:499.543260px;}
.y847_c00001{bottom:499.992000px;}
.y86d_c00001{bottom:499.993500px;}
.y1427_c00001{bottom:499.994400px;}
.y87b_c00001{bottom:499.995000px;}
.y8f0_c00001{bottom:500.084970px;}
.y1a0a_c00001{bottom:500.087550px;}
.y56d_c00001{bottom:500.096640px;}
.y3f7_c00001{bottom:500.264400px;}
.y3f4_c00001{bottom:500.267640px;}
.y650_c00001{bottom:500.354250px;}
.y64e_c00001{bottom:500.358750px;}
.y9cc_c00001{bottom:500.444250px;}
.yd25_c00001{bottom:500.445000px;}
.y16b3_c00001{bottom:500.624250px;}
.y1f5_c00001{bottom:500.625000px;}
.y19c8_c00001{bottom:500.628900px;}
.ybd9_c00001{bottom:501.072000px;}
.y1c03_c00001{bottom:501.168750px;}
.y1993_c00001{bottom:501.254250px;}
.y172a_c00001{bottom:501.254400px;}
.y1a72_c00001{bottom:501.342000px;}
.y1a91_c00001{bottom:501.343500px;}
.y1a98_c00001{bottom:501.345000px;}
.y11e1_c00001{bottom:501.350520px;}
.y182_c00001{bottom:501.795000px;}
.y1abc_c00001{bottom:501.974400px;}
.yb19_c00001{bottom:501.975000px;}
.y387_c00001{bottom:502.343250px;}
.y3b1_c00001{bottom:502.346490px;}
.y6a5_c00001{bottom:502.522140px;}
.y6f_c00001{bottom:502.605000px;}
.y13dc_c00001{bottom:502.607640px;}
.y1b5b_c00001{bottom:502.778430px;}
.y129d_c00001{bottom:502.778730px;}
.y1364_c00001{bottom:502.787790px;}
.y503_c00001{bottom:503.054400px;}
.y631_c00001{bottom:503.234400px;}
.y1f6_c00001{bottom:503.414400px;}
.y1b16_c00001{bottom:503.502000px;}
.y1b32_c00001{bottom:503.503500px;}
.y39_c00001{bottom:503.504400px;}
.y1b3a_c00001{bottom:503.505000px;}
.y14b6_c00001{bottom:503.594400px;}
.y1a49_c00001{bottom:503.683050px;}
.y1771_c00001{bottom:503.684400px;}
.y1a44_c00001{bottom:503.687550px;}
.y802_c00001{bottom:503.864250px;}
.yc0_c00001{bottom:504.135000px;}
.yf2b_c00001{bottom:504.222270px;}
.y1361_c00001{bottom:504.224400px;}
.y1815_c00001{bottom:504.584400px;}
.yfa9_c00001{bottom:504.674400px;}
.yf02_c00001{bottom:504.852000px;}
.yf14_c00001{bottom:504.853500px;}
.yf1a_c00001{bottom:504.855000px;}
.yd24_c00001{bottom:504.944250px;}
.yd8e_c00001{bottom:505.034250px;}
.y8f6_c00001{bottom:505.123500px;}
.y43a_c00001{bottom:505.124250px;}
.y5ae_c00001{bottom:505.214400px;}
.y11e3_c00001{bottom:505.304400px;}
.yf5c_c00001{bottom:505.574250px;}
.y1ab9_c00001{bottom:505.754400px;}
.ydef_c00001{bottom:506.024250px;}
.y1133_c00001{bottom:506.435430px;}
.y1155_c00001{bottom:506.451900px;}
.yac8_c00001{bottom:506.474400px;}
.ydbe_c00001{bottom:506.654400px;}
.y172d_c00001{bottom:506.744550px;}
.ye12_c00001{bottom:507.018630px;}
.ycef_c00001{bottom:507.184230px;}
.y7a7_c00001{bottom:507.198900px;}
.yfd3_c00001{bottom:507.639660px;}
.y1556_c00001{bottom:507.644400px;}
.y4ac_c00001{bottom:507.737490px;}
.y17e2_c00001{bottom:507.914400px;}
.y136_c00001{bottom:507.915000px;}
.y1882_c00001{bottom:508.094400px;}
.y1c8b_c00001{bottom:508.364250px;}
.y10d9_c00001{bottom:508.632270px;}
.y10be_c00001{bottom:508.730370px;}
.y6a1_c00001{bottom:508.814400px;}
.y1077_c00001{bottom:508.998390px;}
.y1112_c00001{bottom:509.160000px;}
.y389_c00001{bottom:509.178120px;}
.y3b3_c00001{bottom:509.181360px;}
.y152b_c00001{bottom:509.261460px;}
.y1513_c00001{bottom:509.264400px;}
.y1ae0_c00001{bottom:509.354250px;}
.y6a7_c00001{bottom:509.358000px;}
.y1259_c00001{bottom:509.714400px;}
.y6f6_c00001{bottom:509.804400px;}
.yb47_c00001{bottom:509.805000px;}
.yc0d_c00001{bottom:509.895000px;}
.y500_c00001{bottom:509.898900px;}
.y195a_c00001{bottom:510.165000px;}
.y1041_c00001{bottom:510.345000px;}
.y1adc_c00001{bottom:510.345120px;}
.y800_c00001{bottom:510.704250px;}
.y1889_c00001{bottom:511.064550px;}
.y17a3_c00001{bottom:511.244400px;}
.y139d_c00001{bottom:511.694250px;}
.y23b_c00001{bottom:511.964400px;}
.y5ab_c00001{bottom:512.054400px;}
.y1a09_c00001{bottom:512.144400px;}
.y8a3_c00001{bottom:512.238900px;}
.yc6c_c00001{bottom:512.325000px;}
.y1a07_c00001{bottom:513.230370px;}
.ya49_c00001{bottom:513.585000px;}
.y1665_c00001{bottom:513.674400px;}
.y56c_c00001{bottom:513.862140px;}
.y2cd_c00001{bottom:514.033500px;}
.yf49_c00001{bottom:514.034250px;}
.y2ff_c00001{bottom:514.035000px;}
.y64d_c00001{bottom:514.124250px;}
.y3f3_c00001{bottom:514.128900px;}
.yc0c_c00001{bottom:514.304400px;}
.y13d8_c00001{bottom:514.394400px;}
.y4ae_c00001{bottom:514.664400px;}
.yb6c_c00001{bottom:515.384400px;}
.ye2c_c00001{bottom:515.477400px;}
.y1b7e_c00001{bottom:515.651550px;}
.y1a48_c00001{bottom:515.739900px;}
.y1a43_c00001{bottom:515.744400px;}
.y19c6_c00001{bottom:515.834400px;}
.y1888_c00001{bottom:515.924400px;}
.y1590_c00001{bottom:515.927550px;}
.y1936_c00001{bottom:515.928750px;}
.y9cb_c00001{bottom:516.105000px;}
.y386_c00001{bottom:516.108750px;}
.y3b0_c00001{bottom:516.111990px;}
.y6a4_c00001{bottom:516.287640px;}
.y1b31_c00001{bottom:516.373140px;}
.y1b15_c00001{bottom:516.377550px;}
.y13db_c00001{bottom:516.468900px;}
.y84c_c00001{bottom:516.470880px;}
.y1363_c00001{bottom:516.553290px;}
.y1b59_c00001{bottom:516.644400px;}
.y603_c00001{bottom:516.824400px;}
.y184b_c00001{bottom:516.825000px;}
.y1996_c00001{bottom:517.098840px;}
.y11bf_c00001{bottom:517.105650px;}
.y158e_c00001{bottom:517.550520px;}
.yee3_c00001{bottom:517.634400px;}
.yf83_c00001{bottom:517.814400px;}
.ya4a_c00001{bottom:518.084400px;}
.y183_c00001{bottom:518.264400px;}
.y1932_c00001{bottom:518.807820px;}
.y12e6_c00001{bottom:518.894400px;}
.y72_c00001{bottom:519.073140px;}
.yd44_c00001{bottom:519.074250px;}
.y17_c00001{bottom:519.074400px;}
.y15c7_c00001{bottom:519.080370px;}
.y10b5_c00001{bottom:519.166770px;}
.y10ef_c00001{bottom:519.167400px;}
.y8ef_c00001{bottom:520.244250px;}
.y172c_c00001{bottom:520.510050px;}
.y166f_c00001{bottom:520.517550px;}
.ycf_c00001{bottom:520.694250px;}
.yba3_c00001{bottom:520.695000px;}
.y7a6_c00001{bottom:520.964400px;}
.y16b2_c00001{bottom:521.324250px;}
.y4ab_c00001{bottom:521.502990px;}
.y1b7f_c00001{bottom:521.593350px;}
.y1bb6_c00001{bottom:521.862750px;}
.y1992_c00001{bottom:521.954250px;}
.y1729_c00001{bottom:521.954400px;}
.yac7_c00001{bottom:522.133500px;}
.yaec_c00001{bottom:522.135000px;}
.y18e6_c00001{bottom:522.313140px;}
.y756_c00001{bottom:522.585000px;}
.y1ca5_c00001{bottom:522.714630px;}
.y1bb5_c00001{bottom:523.490370px;}
.y4ff_c00001{bottom:523.664400px;}
.ye8f_c00001{bottom:523.753410px;}
.y17e4_c00001{bottom:523.758750px;}
.y1a77_c00001{bottom:523.845120px;}
.y1a46_c00001{bottom:524.384400px;}
.y11e0_c00001{bottom:524.474400px;}
.y138_c00001{bottom:524.478900px;}
.y1360_c00001{bottom:524.924400px;}
.y281_c00001{bottom:524.925000px;}
.y18e5_c00001{bottom:525.290520px;}
.y116a_c00001{bottom:525.816660px;}
.yfa8_c00001{bottom:525.819660px;}
.y12a1_c00001{bottom:525.919200px;}
.y74_c00001{bottom:526.004400px;}
.y8f5_c00001{bottom:526.005000px;}
.y1233_c00001{bottom:526.009380px;}
.yd8d_c00001{bottom:526.187460px;}
.ye11_c00001{bottom:526.634400px;}
.y17c2_c00001{bottom:526.814250px;}
.y12d7_c00001{bottom:526.814400px;}
.ydee_c00001{bottom:527.169810px;}
.ycee_c00001{bottom:527.343510px;}
.yf05_c00001{bottom:527.353410px;}
.yfd2_c00001{bottom:527.354250px;}
.y1181_c00001{bottom:527.431020px;}
.ye2b_c00001{bottom:527.534250px;}
.y287_c00001{bottom:527.624250px;}
.ydbd_c00001{bottom:527.709810px;}
.y56e_c00001{bottom:527.714400px;}
.y56b_c00001{bottom:527.723400px;}
.y3f2_c00001{bottom:527.894400px;}
.y1020_c00001{bottom:527.984400px;}
.yd23_c00001{bottom:528.342000px;}
.yd30_c00001{bottom:528.343500px;}
.y1555_c00001{bottom:528.344400px;}
.yd37_c00001{bottom:528.345000px;}
.y1b30_c00001{bottom:528.429990px;}
.y1b14_c00001{bottom:528.434400px;}
.y17e1_c00001{bottom:528.614400px;}
.y1f3_c00001{bottom:528.975000px;}
.y1935_c00001{bottom:529.694250px;}
.y385_c00001{bottom:529.874250px;}
.y3af_c00001{bottom:529.877490px;}
.y982_c00001{bottom:529.963500px;}
.y9a8_c00001{bottom:529.965000px;}
.y146d_c00001{bottom:529.967460px;}
.y1488_c00001{bottom:529.970640px;}
.y6a3_c00001{bottom:530.053140px;}
.y13da_c00001{bottom:530.234400px;}
.y84b_c00001{bottom:530.332140px;}
.y1362_c00001{bottom:530.414550px;}
.yf47_c00001{bottom:530.415000px;}
.y2cf_c00001{bottom:530.504400px;}
.y1995_c00001{bottom:530.960100px;}
.ya80_c00001{bottom:531.043500px;}
.ya9b_c00001{bottom:531.045000px;}
.y1426_c00001{bottom:531.131700px;}
.y1398_c00001{bottom:531.135000px;}
.y139_c00001{bottom:531.314400px;}
.y1b7d_c00001{bottom:531.674400px;}
.y10bd_c00001{bottom:531.854250px;}
.y33a_c00001{bottom:531.937470px;}
.y33e_c00001{bottom:531.944250px;}
.y1c00_c00001{bottom:531.948900px;}
.y1f4_c00001{bottom:532.034250px;}
.yc0b_c00001{bottom:532.485000px;}
.y166e_c00001{bottom:532.574400px;}
.y195d_c00001{bottom:532.667820px;}
.ye60_c00001{bottom:532.675650px;}
.y1043_c00001{bottom:532.843410px;}
.y71_c00001{bottom:532.934400px;}
.y10b4_c00001{bottom:533.024250px;}
.y146e_c00001{bottom:533.208750px;}
.yeb4_c00001{bottom:533.383260px;}
.y1adb_c00001{bottom:533.567820px;}
.y176e_c00001{bottom:534.104250px;}
.y14b2_c00001{bottom:534.104400px;}
.y1664_c00001{bottom:534.374400px;}
.y38_c00001{bottom:534.554400px;}
.y13d7_c00001{bottom:535.094400px;}
.y46c_c00001{bottom:535.098630px;}
.y438_c00001{bottom:535.102140px;}
.y4aa_c00001{bottom:535.364250px;}
.y6f2_c00001{bottom:535.455000px;}
.y14f5_c00001{bottom:535.994400px;}
.y9ca_c00001{bottom:536.265000px;}
.y1a06_c00001{bottom:536.354250px;}
.y7fb_c00001{bottom:536.355000px;}
.y1132_c00001{bottom:536.592000px;}
.y1154_c00001{bottom:536.608470px;}
.y234_c00001{bottom:537.522000px;}
.y253_c00001{bottom:537.523500px;}
.y17e3_c00001{bottom:537.524250px;}
.y258_c00001{bottom:537.525000px;}
.y12bf_c00001{bottom:537.704250px;}
.y137_c00001{bottom:538.244400px;}
.y94d_c00001{bottom:538.425000px;}
.yf73_c00001{bottom:538.514400px;}
.y16eb_c00001{bottom:538.784250px;}
.y759_c00001{bottom:539.057640px;}
.y184e_c00001{bottom:539.336640px;}
.y1111_c00001{bottom:539.398920px;}
.yd66_c00001{bottom:539.774400px;}
.y647_c00001{bottom:539.775000px;}
.y11be_c00001{bottom:540.229530px;}
.y18b4_c00001{bottom:540.582990px;}
.y602_c00001{bottom:540.674400px;}
.y129c_c00001{bottom:540.939720px;}
.y1093_c00001{bottom:541.125000px;}
.y8a1_c00001{bottom:541.131990px;}
.y286_c00001{bottom:541.394670px;}
.ybd5_c00001{bottom:541.395000px;}
.y56a_c00001{bottom:541.488900px;}
.y414_c00001{bottom:541.529400px;}
.y16b1_c00001{bottom:542.024250px;}
.y1931_c00001{bottom:542.030520px;}
.y15c6_c00001{bottom:542.204250px;}
.y10ee_c00001{bottom:542.291280px;}
.yb17_c00001{bottom:542.295000px;}
.yf2a_c00001{bottom:542.383260px;}
.y64a_c00001{bottom:542.481990px;}
.y1991_c00001{bottom:542.654250px;}
.y1728_c00001{bottom:542.654400px;}
.y383_c00001{bottom:542.835000px;}
.y1269_c00001{bottom:542.922000px;}
.y127e_c00001{bottom:542.923500px;}
.y94e_c00001{bottom:542.924400px;}
.y1284_c00001{bottom:542.925000px;}
.y14b5_c00001{bottom:543.021990px;}
.y1bb4_c00001{bottom:543.824400px;}
.y6a2_c00001{bottom:543.914400px;}
.y180_c00001{bottom:543.915000px;}
.y84d_c00001{bottom:544.094400px;}
.y84a_c00001{bottom:544.097640px;}
.yeb6_c00001{bottom:544.904400px;}
.yefd_c00001{bottom:545.267550px;}
.y384_c00001{bottom:545.534250px;}
.yfa7_c00001{bottom:545.534400px;}
.ybd8_c00001{bottom:545.887470px;}
.ybd4_c00001{bottom:545.894400px;}
.yd8c_c00001{bottom:545.984400px;}
.y19c3_c00001{bottom:546.254250px;}
.ycc_c00001{bottom:546.345000px;}
.y79e_c00001{bottom:546.615000px;}
.yb18_c00001{bottom:546.704250px;}
.y10d8_c00001{bottom:546.793260px;}
.yded_c00001{bottom:546.884400px;}
.y8ed_c00001{bottom:546.885000px;}
.yf5b_c00001{bottom:546.974250px;}
.y1a76_c00001{bottom:547.067820px;}
.y1076_c00001{bottom:547.159380px;}
.yba2_c00001{bottom:547.242000px;}
.ybb5_c00001{bottom:547.243500px;}
.ybbc_c00001{bottom:547.245000px;}
.y1529_c00001{bottom:547.422180px;}
.ydbc_c00001{bottom:547.424400px;}
.y1bff_c00001{bottom:547.514400px;}
.y16b5_c00001{bottom:547.522800px;}
.y1209_c00001{bottom:547.695000px;}
.y1c02_c00001{bottom:547.784250px;}
.ye10_c00001{bottom:547.787460px;}
.yced_c00001{bottom:548.227470px;}
.y152a_c00001{bottom:548.232990px;}
.y1512_c00001{bottom:548.235210px;}
.y1c3e_c00001{bottom:548.279040px;}
.y10ba_c00001{bottom:548.322000px;}
.yfd1_c00001{bottom:548.409660px;}
.y18e4_c00001{bottom:548.414400px;}
.y158c_c00001{bottom:548.687550px;}
.y46b_c00001{bottom:548.864130px;}
.y437_c00001{bottom:548.867640px;}
.y1234_c00001{bottom:549.044250px;}
.y17e0_c00001{bottom:549.314400px;}
.y1250_c00001{bottom:549.315000px;}
.y4f9_c00001{bottom:549.585000px;}
.y1c8a_c00001{bottom:549.764250px;}
.y1b58_c00001{bottom:549.857700px;}
.y12f1_c00001{bottom:549.944400px;}
.y13fe_c00001{bottom:550.124250px;}
.y16_c00001{bottom:550.124400px;}
.yf06_c00001{bottom:550.484400px;}
.y33d_c00001{bottom:550.665000px;}
.y1310_c00001{bottom:550.667460px;}
.y1332_c00001{bottom:550.669380px;}
.y1078_c00001{bottom:551.114250px;}
.y1ca4_c00001{bottom:551.158320px;}
.y8ec_c00001{bottom:551.384400px;}
.y1196_c00001{bottom:551.473410px;}
.y5a8_c00001{bottom:551.475000px;}
.yba1_c00001{bottom:551.654400px;}
.y11c1_c00001{bottom:551.744400px;}
.y339_c00001{bottom:552.014400px;}
.y6f4_c00001{bottom:552.018750px;}
.ye32_c00001{bottom:552.102000px;}
.yc6b_c00001{bottom:552.642000px;}
.yc8a_c00001{bottom:552.643500px;}
.yc95_c00001{bottom:552.645000px;}
.y146c_c00001{bottom:552.734400px;}
.y1487_c00001{bottom:552.737580px;}
.y1a03_c00001{bottom:552.825000px;}
.y195f_c00001{bottom:552.912990px;}
.y75a_c00001{bottom:552.914400px;}
.y758_c00001{bottom:552.918900px;}
.y7fe_c00001{bottom:552.923250px;}
.y181_c00001{bottom:553.544250px;}
.y3ed_c00001{bottom:553.545000px;}
.y139b_c00001{bottom:553.637820px;}
.yf2c_c00001{bottom:553.904400px;}
.ya48_c00001{bottom:553.905000px;}
.y1425_c00001{bottom:553.994400px;}
.y12ba_c00001{bottom:554.085000px;}
.y237_c00001{bottom:554.088750px;}
.y1885_c00001{bottom:554.354400px;}
.y18b3_c00001{bottom:554.444250px;}
.y981_c00001{bottom:554.534250px;}
.y176d_c00001{bottom:554.804250px;}
.y14b1_c00001{bottom:554.804400px;}
.y8a0_c00001{bottom:554.897490px;}
.ya7f_c00001{bottom:555.072000px;}
.ya91_c00001{bottom:555.073500px;}
.y1663_c00001{bottom:555.074400px;}
.ya9a_c00001{bottom:555.075000px;}
.yc3d_c00001{bottom:555.165000px;}
.y569_c00001{bottom:555.254400px;}
.y285_c00001{bottom:555.267900px;}
.y69f_c00001{bottom:555.705000px;}
.y18b2_c00001{bottom:555.794400px;}
.y46d_c00001{bottom:555.794760px;}
.y439_c00001{bottom:555.798270px;}
.y1044_c00001{bottom:555.886650px;}
.y195c_c00001{bottom:555.890520px;}
.y1169_c00001{bottom:555.973230px;}
.y2ca_c00001{bottom:556.152000px;}
.y2fa_c00001{bottom:556.153500px;}
.y2fe_c00001{bottom:556.155000px;}
.y649_c00001{bottom:556.343250px;}
.y9c8_c00001{bottom:556.422000px;}
.y9e9_c00001{bottom:556.423500px;}
.y9f1_c00001{bottom:556.425000px;}
.y1ada_c00001{bottom:556.691700px;}
.y12d_c00001{bottom:556.779900px;}
.y14b4_c00001{bottom:556.787490px;}
.y1a79_c00001{bottom:557.057400px;}
.yc6a_c00001{bottom:557.144400px;}
.yefc_c00001{bottom:557.324400px;}
.y135e_c00001{bottom:557.414250px;}
.y1180_c00001{bottom:557.669940px;}
.y849_c00001{bottom:557.863140px;}
.y17c1_c00001{bottom:557.864250px;}
.y12d6_c00001{bottom:557.864400px;}
.y1f0_c00001{bottom:557.865000px;}
.y16e6_c00001{bottom:558.225000px;}
.y6c_c00001{bottom:558.495000px;}
.y1552_c00001{bottom:558.764400px;}
.y6f5_c00001{bottom:558.854250px;}
.yf82_c00001{bottom:559.214400px;}
.y1850_c00001{bottom:559.578900px;}
.y1770_c00001{bottom:560.294700px;}
.yd43_c00001{bottom:560.474250px;}
.y17f_c00001{bottom:560.474400px;}
.y1b2_c00001{bottom:560.475480px;}
.y1f2_c00001{bottom:560.563140px;}
.y1b2e_c00001{bottom:560.736030px;}
.y1b12_c00001{bottom:560.739630px;}
.y158b_c00001{bottom:560.744400px;}
.y9c9_c00001{bottom:560.924400px;}
.y4a7_c00001{bottom:560.925000px;}
.y238_c00001{bottom:561.014400px;}
.y5a9_c00001{bottom:561.104250px;}
.y16b4_c00001{bottom:561.288300px;}
.y8a2_c00001{bottom:561.828120px;}
.ye8e_c00001{bottom:561.914400px;}
.yac6_c00001{bottom:562.363500px;}
.yaeb_c00001{bottom:562.365000px;}
.y184d_c00001{bottom:562.460520px;}
.y16b0_c00001{bottom:562.724250px;}
.y46a_c00001{bottom:562.725390px;}
.y436_c00001{bottom:562.728900px;}
.yce_c00001{bottom:562.814400px;}
.y135f_c00001{bottom:562.903140px;}
.y1c3d_c00001{bottom:562.954260px;}
.y1a90_c00001{bottom:563.082960px;}
.y1a71_c00001{bottom:563.084400px;}
.y179e_c00001{bottom:563.088900px;}
.y7a2_c00001{bottom:563.182140px;}
.y1bb3_c00001{bottom:563.265000px;}
.y11bd_c00001{bottom:563.353410px;}
.y1990_c00001{bottom:563.354250px;}
.y1096_c00001{bottom:563.620710px;}
.y4a8_c00001{bottom:563.714400px;}
.y11d7_c00001{bottom:564.075000px;}
.y129b_c00001{bottom:564.162420px;}
.y1232_c00001{bottom:564.170370px;}
.y5ff_c00001{bottom:564.502440px;}
.y5fb_c00001{bottom:564.518910px;}
.y601_c00001{bottom:564.524250px;}
.y18dc_c00001{bottom:564.793500px;}
.y1902_c00001{bottom:564.795000px;}
.y1930_c00001{bottom:565.154400px;}
.y6a0_c00001{bottom:565.334400px;}
.y126a_c00001{bottom:565.424400px;}
.yf04_c00001{bottom:565.514400px;}
.y37_c00001{bottom:565.604400px;}
.y6f3_c00001{bottom:565.784250px;}
.ybd7_c00001{bottom:565.964400px;}
.y4fc_c00001{bottom:566.057640px;}
.yfa6_c00001{bottom:566.234400px;}
.y179d_c00001{bottom:566.411550px;}
.y17b6_c00001{bottom:566.414580px;}
.y757_c00001{bottom:566.684400px;}
.y7fd_c00001{bottom:566.688750px;}
.y195e_c00001{bottom:566.774250px;}
.y1131_c00001{bottom:566.830920px;}
.y1153_c00001{bottom:566.847390px;}
.y19c2_c00001{bottom:566.954250px;}
.yd8b_c00001{bottom:567.039810px;}
.ye62_c00001{bottom:567.314400px;}
.y15ef_c00001{bottom:567.317400px;}
.ye0f_c00001{bottom:567.584400px;}
.y101a_c00001{bottom:567.585000px;}
.y236_c00001{bottom:567.854250px;}
.y1006_c00001{bottom:568.029810px;}
.ydec_c00001{bottom:568.037460px;}
.y6e_c00001{bottom:568.124250px;}
.y135_c00001{bottom:568.218900px;}
.y1b7b_c00001{bottom:568.394400px;}
.y1528_c00001{bottom:568.482180px;}
.y1511_c00001{bottom:568.484400px;}
.yfec_c00001{bottom:568.569660px;}
.ydbb_c00001{bottom:568.577310px;}
.y89f_c00001{bottom:568.662990px;}
.y8eb_c00001{bottom:568.665000px;}
.y288_c00001{bottom:569.028480px;}
.y284_c00001{bottom:569.033400px;}
.y1a78_c00001{bottom:569.114250px;}
.yd22_c00001{bottom:569.383500px;}
.yd36_c00001{bottom:569.385000px;}
.y1110_c00001{bottom:569.637840px;}
.y1623_c00001{bottom:569.756640px;}
.y3ef_c00001{bottom:570.012990px;}
.y648_c00001{bottom:570.108750px;}
.y1a75_c00001{bottom:570.191700px;}
.y980_c00001{bottom:570.192000px;}
.y120d_c00001{bottom:570.192420px;}
.y99f_c00001{bottom:570.193500px;}
.y9a7_c00001{bottom:570.195000px;}
.y1887_c00001{bottom:570.202500px;}
.y1075_c00001{bottom:570.283260px;}
.ycb2_c00001{bottom:570.285000px;}
.y1c89_c00001{bottom:570.464250px;}
.y14b3_c00001{bottom:570.648750px;}
.ye5f_c00001{bottom:570.836640px;}
.y1042_c00001{bottom:571.004400px;}
.yb6a_c00001{bottom:571.365000px;}
.yeb3_c00001{bottom:571.544250px;}
.y848_c00001{bottom:571.724400px;}
.y1255_c00001{bottom:571.810290px;}
.y33c_c00001{bottom:572.173680px;}
.yede_c00001{bottom:572.175000px;}
.y14f4_c00001{bottom:572.261790px;}
.y12c_c00001{bottom:572.264400px;}
.y19c5_c00001{bottom:572.444700px;}
.y750_c00001{bottom:572.529900px;}
.y2cc_c00001{bottom:572.623140px;}
.yc0a_c00001{bottom:572.805000px;}
.y184f_c00001{bottom:573.344400px;}
.y130f_c00001{bottom:573.434400px;}
.y1331_c00001{bottom:573.436320px;}
.yd21_c00001{bottom:573.794250px;}
.y1a05_c00001{bottom:573.797400px;}
.y139c_c00001{bottom:573.883140px;}
.y1ab8_c00001{bottom:573.974400px;}
.y176f_c00001{bottom:574.060200px;}
.y1f1_c00001{bottom:574.424400px;}
.y1197_c00001{bottom:574.516500px;}
.ye37_c00001{bottom:574.601430px;}
.y1bb2_c00001{bottom:574.694400px;}
.y1bd1_c00001{bottom:574.699380px;}
.y1884_c00001{bottom:575.054400px;}
.y3ae_c00001{bottom:575.228100px;}
.y1a41_c00001{bottom:575.229630px;}
.y382_c00001{bottom:575.233140px;}
.y1b7c_c00001{bottom:575.237400px;}
.ycec_c00001{bottom:575.320620px;}
.yc68_c00001{bottom:575.322000px;}
.yc89_c00001{bottom:575.323500px;}
.y1a04_c00001{bottom:575.324400px;}
.yc94_c00001{bottom:575.325000px;}
.y176c_c00001{bottom:575.504250px;}
.y14b0_c00001{bottom:575.504400px;}
.y1bf1_c00001{bottom:575.505000px;}
.yf48_c00001{bottom:575.774250px;}
.y1662_c00001{bottom:575.774400px;}
.yb6b_c00001{bottom:575.864250px;}
.y17e_c00001{bottom:575.868900px;}
.y1743_c00001{bottom:576.129840px;}
.y1726_c00001{bottom:576.131700px;}
.y469_c00001{bottom:576.490890px;}
.y435_c00001{bottom:576.494400px;}
.y12bd_c00001{bottom:576.582420px;}
.ya01_c00001{bottom:576.585000px;}
.y139a_c00001{bottom:576.860520px;}
.y3f0_c00001{bottom:576.944250px;}
.y7a1_c00001{bottom:576.947640px;}
.yc07_c00001{bottom:577.304400px;}
.y1c3c_c00001{bottom:577.533720px;}
.y135d_c00001{bottom:578.114250px;}
.y1811_c00001{bottom:578.204250px;}
.ye8a_c00001{bottom:578.293500px;}
.y33b_c00001{bottom:578.382870px;}
.ya47_c00001{bottom:578.474400px;}
.y94c_c00001{bottom:578.655000px;}
.y1bfc_c00001{bottom:578.834400px;}
.y195b_c00001{bottom:579.014400px;}
.ya7e_c00001{bottom:579.015000px;}
.y15ee_c00001{bottom:579.374250px;}
.y13d3_c00001{bottom:579.374970px;}
.y1551_c00001{bottom:579.464400px;}
.y1727_c00001{bottom:579.468750px;}
.y1ca3_c00001{bottom:579.602010px;}
.yc69_c00001{bottom:579.734400px;}
.y1b2f_c00001{bottom:579.816390px;}
.y1b13_c00001{bottom:579.819990px;}
.y5a4_c00001{bottom:579.825000px;}
.y4fd_c00001{bottom:579.914400px;}
.y4fb_c00001{bottom:579.918900px;}
.y1589_c00001{bottom:580.275000px;}
.y10ed_c00001{bottom:580.452270px;}
.y7fc_c00001{bottom:580.454250px;}
.yf29_c00001{bottom:580.544250px;}
.y16e8_c00001{bottom:580.730370px;}
.y566_c00001{bottom:580.905000px;}
.y13ff_c00001{bottom:580.994250px;}
.y12f8_c00001{bottom:580.994400px;}
.y1190_c00001{bottom:580.997550px;}
.y1408_c00001{bottom:581.174250px;}
.y15_c00001{bottom:581.174400px;}
.y1b53_c00001{bottom:581.355000px;}
.y1b2d_c00001{bottom:581.890800px;}
.y1b11_c00001{bottom:581.894400px;}
.y134_c00001{bottom:581.984400px;}
.y1468_c00001{bottom:582.164400px;}
.y89e_c00001{bottom:582.524250px;}
.yac4_c00001{bottom:582.525000px;}
.y283_c00001{bottom:582.798900px;}
.y16af_c00001{bottom:583.424250px;}
.y1422_c00001{bottom:583.424400px;}
.y3ee_c00001{bottom:583.874250px;}
.y1886_c00001{bottom:583.968000px;}
.y699_c00001{bottom:584.055000px;}
.y5fe_c00001{bottom:584.661720px;}
.y5fa_c00001{bottom:584.678190px;}
.y14f2_c00001{bottom:584.780520px;}
.y10d7_c00001{bottom:584.954250px;}
.y184c_c00001{bottom:585.584400px;}
.y14f3_c00001{bottom:586.027290px;}
.y19c4_c00001{bottom:586.210200px;}
.y1168_c00001{bottom:586.212150px;}
.y2cb_c00001{bottom:586.484400px;}
.y11dc_c00001{bottom:586.571430px;}
.y1921_c00001{bottom:586.664400px;}
.yd8a_c00001{bottom:586.754400px;}
.y1095_c00001{bottom:586.843410px;}
.y68_c00001{bottom:586.845000px;}
.yac5_c00001{bottom:587.024250px;}
.y1231_c00001{bottom:587.294250px;}
.y18e1_c00001{bottom:587.307210px;}
.yfa5_c00001{bottom:587.379810px;}
.y19c1_c00001{bottom:587.654250px;}
.y1005_c00001{bottom:587.744400px;}
.ydeb_c00001{bottom:587.834400px;}
.y117f_c00001{bottom:587.908860px;}
.y74f_c00001{bottom:588.014400px;}
.yba0_c00001{bottom:588.283500px;}
.yfeb_c00001{bottom:588.284250px;}
.ybbb_c00001{bottom:588.285000px;}
.ydba_c00001{bottom:588.374250px;}
.yc8_c00001{bottom:588.465000px;}
.ye0e_c00001{bottom:588.729660px;}
.y12d5_c00001{bottom:588.914400px;}
.y3ad_c00001{bottom:589.089360px;}
.y381_c00001{bottom:589.094400px;}
.yfd0_c00001{bottom:589.269810px;}
.y179c_c00001{bottom:589.274250px;}
.y4a6_c00001{bottom:589.275000px;}
.y17b5_c00001{bottom:589.277280px;}
.y16ea_c00001{bottom:589.368900px;}
.y8ea_c00001{bottom:589.545000px;}
.y17d_c00001{bottom:589.634400px;}
.y431_c00001{bottom:589.995000px;}
.y101d_c00001{bottom:590.082420px;}
.y97f_c00001{bottom:590.355000px;}
.y7a0_c00001{bottom:590.713140px;}
.y1c88_c00001{bottom:591.164250px;}
.y146b_c00001{bottom:591.173250px;}
.y1625_c00001{bottom:591.347550px;}
.y15a7_c00001{bottom:591.613410px;}
.y1588_c00001{bottom:591.614400px;}
.y10f0_c00001{bottom:591.974400px;}
.y1c3b_c00001{bottom:592.208940px;}
.y751_c00001{bottom:592.332000px;}
.y1424_c00001{bottom:592.337640px;}
.y13d5_c00001{bottom:592.793400px;}
.y1622_c00001{bottom:592.880520px;}
.ycb1_c00001{bottom:592.965000px;}
.y118f_c00001{bottom:593.054400px;}
.y15c2_c00001{bottom:593.144250px;}
.y1a74_c00001{bottom:593.414400px;}
.y1ab2_c00001{bottom:593.505000px;}
.y4fa_c00001{bottom:593.684400px;}
.ye5e_c00001{bottom:593.960520px;}
.ya46_c00001{bottom:594.135000px;}
.y1a42_c00001{bottom:594.309990px;}
.yee0_c00001{bottom:594.673410px;}
.y97e_c00001{bottom:594.854250px;}
.y89c_c00001{bottom:594.855000px;}
.y754_c00001{bottom:595.037640px;}
.yc3a_c00001{bottom:595.395000px;}
.y12e_c00001{bottom:595.485000px;}
.y1883_c00001{bottom:595.754400px;}
.y1bd0_c00001{bottom:595.759380px;}
.y6f0_c00001{bottom:595.762140px;}
.y176b_c00001{bottom:596.204250px;}
.y1a40_c00001{bottom:596.384400px;}
.y5a6_c00001{bottom:596.388900px;}
.y6b_c00001{bottom:596.474400px;}
.y282_c00001{bottom:596.564400px;}
.y9c6_c00001{bottom:596.652000px;}
.y9e8_c00001{bottom:596.653500px;}
.y150e_c00001{bottom:596.654250px;}
.y36_c00001{bottom:596.654400px;}
.y9f0_c00001{bottom:596.655000px;}
.yaa5_c00001{bottom:596.745000px;}
.y198d_c00001{bottom:596.927310px;}
.y1130_c00001{bottom:597.069840px;}
.y1152_c00001{bottom:597.086310px;}
.y32e_c00001{bottom:597.193500px;}
.yd35_c00001{bottom:597.195000px;}
.y83f_c00001{bottom:597.285000px;}
.yc09_c00001{bottom:597.381330px;}
.y565_c00001{bottom:597.473400px;}
.y252_c00001{bottom:598.005060px;}
.y233_c00001{bottom:598.007640px;}
.y600_c00001{bottom:598.094400px;}
.y1097_c00001{bottom:598.274250px;}
.y94b_c00001{bottom:598.812000px;}
.y1810_c00001{bottom:598.904250px;}
.y1742_c00001{bottom:598.992540px;}
.y1725_c00001{bottom:598.994400px;}
.y1c32_c00001{bottom:598.998900px;}
.y110f_c00001{bottom:599.794410px;}
.yc39_c00001{bottom:599.894400px;}
.yc3c_c00001{bottom:599.895120px;}
.y1399_c00001{bottom:599.984400px;}
.y1ec_c00001{bottom:599.985000px;}
.y1550_c00001{bottom:600.164400px;}
.y198e_c00001{bottom:600.249900px;}
.y17dd_c00001{bottom:600.434400px;}
.yf81_c00001{bottom:600.614400px;}
.y69d_c00001{bottom:600.622140px;}
.y16e5_c00001{bottom:600.794250px;}
.ye8c_c00001{bottom:600.800520px;}
.y9c7_c00001{bottom:601.154400px;}
.y11bc_c00001{bottom:601.514400px;}
.ybd3_c00001{bottom:601.783500px;}
.yd42_c00001{bottom:601.874250px;}
.yd54_c00001{bottom:601.874400px;}
.y17c_c00001{bottom:602.235000px;}
.y37c_c00001{bottom:602.322000px;}
.y129a_c00001{bottom:602.323410px;}
.y3ac_c00001{bottom:602.323500px;}
.y3c5_c00001{bottom:602.325000px;}
.yceb_c00001{bottom:602.413770px;}
.y13d2_c00001{bottom:602.597670px;}
.yb15_c00001{bottom:602.685000px;}
.y1467_c00001{bottom:602.864400px;}
.y130c_c00001{bottom:602.954400px;}
.ya7d_c00001{bottom:603.045000px;}
.y16e9_c00001{bottom:603.134400px;}
.y5a7_c00001{bottom:603.314400px;}
.y1624_c00001{bottom:603.404400px;}
.y122a_c00001{bottom:603.672000px;}
.y1242_c00001{bottom:603.673500px;}
.y1246_c00001{bottom:603.675000px;}
.y1b55_c00001{bottom:603.851700px;}
.y16e7_c00001{bottom:603.854250px;}
.y4a1_c00001{bottom:603.855000px;}
.y16ae_c00001{bottom:604.124250px;}
.y1421_c00001{bottom:604.124400px;}
.y567_c00001{bottom:604.304400px;}
.y1695_c00001{bottom:604.311240px;}
.y89d_c00001{bottom:604.484400px;}
.y79f_c00001{bottom:604.574400px;}
.y5fd_c00001{bottom:604.738650px;}
.y1924_c00001{bottom:604.752000px;}
.y5f9_c00001{bottom:604.755120px;}
.y1ad7_c00001{bottom:604.934400px;}
.y146a_c00001{bottom:604.938750px;}
.yca_c00001{bottom:605.028750px;}
.yf00_c00001{bottom:605.115000px;}
.y10bc_c00001{bottom:605.474400px;}
.y7f8_c00001{bottom:606.102000px;}
.y1423_c00001{bottom:606.198900px;}
.y433_c00001{bottom:606.463140px;}
.y13d4_c00001{bottom:606.558900px;}
.y1b79_c00001{bottom:606.734400px;}
.y1c3a_c00001{bottom:606.884160px;}
.y18b0_c00001{bottom:607.004250px;}
.yfa4_c00001{bottom:607.094400px;}
.yb16_c00001{bottom:607.184400px;}
.yf45_c00001{bottom:607.453500px;}
.yf4f_c00001{bottom:607.455000px;}
.y14f1_c00001{bottom:607.904400px;}
.yd89_c00001{bottom:607.907310px;}
.y1ca2_c00001{bottom:608.045700px;}
.y4a5_c00001{bottom:608.084400px;}
.y120c_c00001{bottom:608.353410px;}
.y19c0_c00001{bottom:608.354250px;}
.ye0d_c00001{bottom:608.444250px;}
.y753_c00001{bottom:608.803140px;}
.y1004_c00001{bottom:608.889660px;}
.ydea_c00001{bottom:608.979660px;}
.yfcf_c00001{bottom:608.984400px;}
.y135c_c00001{bottom:609.257790px;}
.yfea_c00001{bottom:609.429810px;}
.y3da_c00001{bottom:609.435000px;}
.ydb9_c00001{bottom:609.519810px;}
.y641_c00001{bottom:609.525000px;}
.y1ee_c00001{bottom:609.614250px;}
.y6ef_c00001{bottom:609.623400px;}
.y1bfb_c00001{bottom:609.884400px;}
.y1254_c00001{bottom:609.971280px;}
.y1b0e_c00001{bottom:609.974250px;}
.y5a5_c00001{bottom:610.154400px;}
.y8e8_c00001{bottom:610.422000px;}
.y929_c00001{bottom:610.423500px;}
.y97d_c00001{bottom:610.515000px;}
.y18e0_c00001{bottom:610.529910px;}
.y564_c00001{bottom:611.238900px;}
.y1c74_c00001{bottom:611.324400px;}
.y89b_c00001{bottom:611.414400px;}
.yb68_c00001{bottom:611.595000px;}
.y1c87_c00001{bottom:611.774250px;}
.ycb_c00001{bottom:611.864250px;}
.y251_c00001{bottom:611.866320px;}
.y232_c00001{bottom:611.868900px;}
.y132_c00001{bottom:611.957640px;}
.y2c8_c00001{bottom:612.043500px;}
.y12e5_c00001{bottom:612.044400px;}
.y2fd_c00001{bottom:612.045000px;}
.y1407_c00001{bottom:612.224250px;}
.y14_c00001{bottom:612.224400px;}
.y120e_c00001{bottom:612.404400px;}
.y18b1_c00001{bottom:612.498900px;}
.y15a6_c00001{bottom:612.673410px;}
.y1587_c00001{bottom:612.674400px;}
.ye36_c00001{bottom:612.762420px;}
.y15ed_c00001{bottom:612.857550px;}
.y1844_c00001{bottom:613.214400px;}
.y434_c00001{bottom:613.394400px;}
.y845_c00001{bottom:613.856640px;}
.y1b57_c00001{bottom:613.937550px;}
.y15c1_c00001{bottom:614.204250px;}
.y69c_c00001{bottom:614.387640px;}
.yb9b_c00001{bottom:614.742000px;}
.y12bc_c00001{bottom:614.743410px;}
.ybb4_c00001{bottom:614.743500px;}
.ybba_c00001{bottom:614.745000px;}
.y65_c00001{bottom:615.195000px;}
.yc65_c00001{bottom:615.552000px;}
.yc87_c00001{bottom:615.553500px;}
.yc92_c00001{bottom:615.555000px;}
.y755_c00001{bottom:615.733770px;}
.y1a3a_c00001{bottom:615.822000px;}
.y1621_c00001{bottom:616.004400px;}
.yb69_c00001{bottom:616.094400px;}
.y191e_c00001{bottom:616.184400px;}
.y1167_c00001{bottom:616.451070px;}
.y6f1_c00001{bottom:616.458270px;}
.y17b_c00001{bottom:616.815000px;}
.y1953_c00001{bottom:616.994400px;}
.ye5d_c00001{bottom:617.084400px;}
.y1661_c00001{bottom:617.174400px;}
.y150d_c00001{bottom:617.264250px;}
.y1554_c00001{bottom:617.357550px;}
.ycb0_c00001{bottom:617.534250px;}
.yc08_c00001{bottom:617.540610px;}
.yee1_c00001{bottom:617.800350px;}
.y117e_c00001{bottom:618.065430px;}
.y799_c00001{bottom:618.164400px;}
.y14ae_c00001{bottom:618.344400px;}
.y10ec_c00001{bottom:618.613260px;}
.y1469_c00001{bottom:618.704250px;}
.y11d0_c00001{bottom:618.707550px;}
.yc9_c00001{bottom:618.794250px;}
.y37f_c00001{bottom:618.797640px;}
.y94a_c00001{bottom:618.975000px;}
.yb9f_c00001{bottom:619.238190px;}
.y4f6_c00001{bottom:619.332000px;}
.y528_c00001{bottom:619.333500px;}
.y539_c00001{bottom:619.335000px;}
.y180f_c00001{bottom:619.604250px;}
.y198c_c00001{bottom:619.694250px;}
.y12d4_c00001{bottom:619.784400px;}
.y17c0_c00001{bottom:619.964250px;}
.y13f0_c00001{bottom:619.964400px;}
.yc3b_c00001{bottom:620.054400px;}
.yc67_c00001{bottom:620.055120px;}
.y432_c00001{bottom:620.324400px;}
.y336_c00001{bottom:620.412000px;}
.y154f_c00001{bottom:620.864400px;}
.y135b_c00001{bottom:621.044250px;}
.y17dc_c00001{bottom:621.134400px;}
.yf72_c00001{bottom:621.224400px;}
.y69e_c00001{bottom:621.318270px;}
.y4a4_c00001{bottom:621.492000px;}
.y1c39_c00001{bottom:621.559380px;}
.yd20_c00001{bottom:621.765120px;}
.y333_c00001{bottom:621.765840px;}
.y32d_c00001{bottom:621.766560px;}
.y5fc_c00001{bottom:621.933330px;}
.y4f8_c00001{bottom:622.038900px;}
.y1b7a_c00001{bottom:622.217850px;}
.y14ad_c00001{bottom:622.307460px;}
.yd65_c00001{bottom:622.574400px;}
.y752_c00001{bottom:622.664400px;}
.yac2_c00001{bottom:622.842000px;}
.yae1_c00001{bottom:622.843500px;}
.yaea_c00001{bottom:622.845000px;}
.y899_c00001{bottom:623.205000px;}
.y6ee_c00001{bottom:623.388900px;}
.y7f7_c00001{bottom:623.390880px;}
.y949_c00001{bottom:623.474400px;}
.y1466_c00001{bottom:623.564400px;}
.y130b_c00001{bottom:623.654400px;}
.ye8d_c00001{bottom:623.834400px;}
.ye8b_c00001{bottom:623.924400px;}
.ybd2_c00001{bottom:624.463500px;}
.y11db_c00001{bottom:624.732420px;}
.y1420_c00001{bottom:624.824400px;}
.y338_c00001{bottom:624.914400px;}
.y1074_c00001{bottom:624.915000px;}
.y27f_c00001{bottom:624.925230px;}
.y563_c00001{bottom:625.004400px;}
.y1812_c00001{bottom:625.098750px;}
.y250_c00001{bottom:625.631820px;}
.y231_c00001{bottom:625.634400px;}
.y13d1_c00001{bottom:625.721550px;}
.y133_c00001{bottom:625.814400px;}
.y131_c00001{bottom:625.818900px;}
.y1b56_c00001{bottom:625.994400px;}
.y3e9_c00001{bottom:626.002140px;}
.yeaf_c00001{bottom:626.082000px;}
.yec6_c00001{bottom:626.083500px;}
.yece_c00001{bottom:626.085000px;}
.y122f_c00001{bottom:626.171430px;}
.y12be_c00001{bottom:626.259900px;}
.y1a02_c00001{bottom:626.267700px;}
.y645_c00001{bottom:626.453400px;}
.y1768_c00001{bottom:626.624400px;}
.y12b9_c00001{bottom:626.714400px;}
.y1015_c00001{bottom:626.807400px;}
.y1b54_c00001{bottom:627.074400px;}
.ya7c_c00001{bottom:627.075000px;}
.y1b10_c00001{bottom:627.169800px;}
.y112f_c00001{bottom:627.226410px;}
.y1151_c00001{bottom:627.242880px;}
.y1957_c00001{bottom:627.254400px;}
.y192b_c00001{bottom:627.268920px;}
.y1694_c00001{bottom:627.533940px;}
.yf01_c00001{bottom:627.614250px;}
.y844_c00001{bottom:627.622140px;}
.yd88_c00001{bottom:627.704250px;}
.y35_c00001{bottom:627.704400px;}
.y69b_c00001{bottom:628.153140px;}
.yfa3_c00001{bottom:628.239660px;}
.y101c_c00001{bottom:628.243410px;}
.y1e8_c00001{bottom:628.335000px;}
.y2c9_c00001{bottom:628.604250px;}
.yde9_c00001{bottom:628.694250px;}
.yfe9_c00001{bottom:629.144400px;}
.y130e_c00001{bottom:629.144700px;}
.y189b_c00001{bottom:629.229840px;}
.y1880_c00001{bottom:629.231700px;}
.ydb8_c00001{bottom:629.234400px;}
.y1191_c00001{bottom:629.235000px;}
.y1553_c00001{bottom:629.414400px;}
.ycea_c00001{bottom:629.506920px;}
.ye0c_c00001{bottom:629.597460px;}
.yf5a_c00001{bottom:629.774250px;}
.yf46_c00001{bottom:629.954250px;}
.y110e_c00001{bottom:630.033330px;}
.y1c30_c00001{bottom:630.048750px;}
.yfce_c00001{bottom:630.129810px;}
.y79a_c00001{bottom:630.133500px;}
.y7c8_c00001{bottom:630.135000px;}
.yafc_c00001{bottom:630.585000px;}
.y1b0d_c00001{bottom:630.674250px;}
.y11cf_c00001{bottom:630.764400px;}
.y178_c00001{bottom:631.395000px;}
.y1723_c00001{bottom:631.751700px;}
.y67_c00001{bottom:631.754400px;}
.y1584_c00001{bottom:632.115000px;}
.y880_c00001{bottom:632.474400px;}
.y37e_c00001{bottom:632.563140px;}
.y380_c00001{bottom:632.564400px;}
.y1799_c00001{bottom:632.567820px;}
.y1881_c00001{bottom:632.568900px;}
.yedf_c00001{bottom:632.834400px;}
.y103f_c00001{bottom:633.016680px;}
.yc06_c00001{bottom:633.195000px;}
.y15bd_c00001{bottom:633.642000px;}
.y18df_c00001{bottom:633.653790px;}
.y1848_c00001{bottom:633.824400px;}
.y17a_c00001{bottom:634.098750px;}
.y1510_c00001{bottom:634.452630px;}
.ya45_c00001{bottom:634.453500px;}
.y16ab_c00001{bottom:634.544250px;}
.y8e7_c00001{bottom:635.077320px;}
.yafb_c00001{bottom:635.084400px;}
.yf24_c00001{bottom:635.085000px;}
.y1b52_c00001{bottom:635.087550px;}
.y5a1_c00001{bottom:635.802000px;}
.y5c0_c00001{bottom:635.803500px;}
.y4f7_c00001{bottom:635.804400px;}
.y5c5_c00001{bottom:635.805000px;}
.ye38_c00001{bottom:635.890800px;}
.y49f_c00001{bottom:635.985000px;}
.y1c38_c00001{bottom:636.138840px;}
.y1620_c00001{bottom:636.164400px;}
.y163f_c00001{bottom:636.169530px;}
.y1724_c00001{bottom:636.338940px;}
.y558_c00001{bottom:636.883500px;}
.y191d_c00001{bottom:636.884400px;}
.y17df_c00001{bottom:636.973140px;}
.y9c5_c00001{bottom:636.975000px;}
.y6ed_c00001{bottom:637.154400px;}
.y7f6_c00001{bottom:637.252140px;}
.y1697_c00001{bottom:637.517550px;}
.y1baf_c00001{bottom:637.697670px;}
.y1660_c00001{bottom:637.874400px;}
.y150c_c00001{bottom:637.964250px;}
.y1a01_c00001{bottom:638.324400px;}
.y1a1e_c00001{bottom:638.329080px;}
.y5a3_c00001{bottom:638.592990px;}
.y27e_c00001{bottom:638.786490px;}
.y1014_c00001{bottom:638.864250px;}
.y22f_c00001{bottom:639.225000px;}
.y1b0f_c00001{bottom:639.226650px;}
.yb9e_c00001{bottom:639.315120px;}
.y10d3_c00001{bottom:639.495000px;}
.y130_c00001{bottom:639.584400px;}
.y101e_c00001{bottom:639.674400px;}
.y3e8_c00001{bottom:639.767640px;}
.y89a_c00001{bottom:639.854250px;}
.y646_c00001{bottom:640.214400px;}
.y644_c00001{bottom:640.218900px;}
.y180e_c00001{bottom:640.304250px;}
.y1299_c00001{bottom:640.484400px;}
.y1ab7_c00001{bottom:640.489950px;}
.y1982_c00001{bottom:640.575000px;}
.y14ed_c00001{bottom:640.847670px;}
.y371_c00001{bottom:640.889400px;}
.y179b_c00001{bottom:641.203140px;}
.y5ee_c00001{bottom:641.385000px;}
.y846_c00001{bottom:641.474400px;}
.y843_c00001{bottom:641.483400px;}
.y154e_c00001{bottom:641.564400px;}
.y17db_c00001{bottom:641.834400px;}
.yd1f_c00001{bottom:641.924400px;}
.y332_c00001{bottom:641.925120px;}
.y32c_c00001{bottom:641.925840px;}
.y69a_c00001{bottom:642.014400px;}
.y18e3_c00001{bottom:642.283140px;}
.y1267_c00001{bottom:642.549450px;}
.y1ad9_c00001{bottom:642.831900px;}
.y130d_c00001{bottom:642.910200px;}
.yb14_c00001{bottom:643.005000px;}
.y12eb_c00001{bottom:643.094400px;}
.yd41_c00001{bottom:643.274250px;}
.y13_c00001{bottom:643.274400px;}
.y7fa_c00001{bottom:644.084400px;}
.y130a_c00001{bottom:644.354400px;}
.yc2_c00001{bottom:644.443500px;}
.yfe_c00001{bottom:644.445000px;}
.y1ab6_c00001{bottom:644.894400px;}
.y14ac_c00001{bottom:645.074400px;}
.y4a0_c00001{bottom:645.614250px;}
.y5f8_c00001{bottom:645.794250px;}
.y5f3_c00001{bottom:645.796410px;}
.y42d_c00001{bottom:645.885000px;}
.y1ad6_c00001{bottom:646.334400px;}
.y37d_c00001{bottom:646.424400px;}
.y120b_c00001{bottom:646.514400px;}
.y150f_c00001{bottom:646.604250px;}
.y1166_c00001{bottom:646.607640px;}
.y3ea_c00001{bottom:646.694250px;}
.y79c_c00001{bottom:646.697640px;}
.ye89_c00001{bottom:646.967400px;}
.y1b51_c00001{bottom:647.144400px;}
.yf26_c00001{bottom:647.150370px;}
.y1767_c00001{bottom:647.324400px;}
.yac3_c00001{bottom:647.414400px;}
.y179_c00001{bottom:647.864250px;}
.yfa2_c00001{bottom:647.954250px;}
.y1956_c00001{bottom:647.954400px;}
.y1253_c00001{bottom:648.132270px;}
.y74d_c00001{bottom:648.222000px;}
.y1394_c00001{bottom:648.224400px;}
.y117d_c00001{bottom:648.304350px;}
.y1a70_c00001{bottom:648.407550px;}
.y1296_c00001{bottom:648.497550px;}
.yeb0_c00001{bottom:648.584400px;}
.yd87_c00001{bottom:648.849810px;}
.y13d0_c00001{bottom:648.944250px;}
.ybd1_c00001{bottom:649.034250px;}
.ye0b_c00001{bottom:649.394400px;}
.y18aa_c00001{bottom:649.485000px;}
.y1696_c00001{bottom:649.574400px;}
.y1003_c00001{bottom:649.659660px;}
.yde8_c00001{bottom:649.757460px;}
.yfcd_c00001{bottom:649.844400px;}
.y14f0_c00001{bottom:650.121150px;}
.yfe8_c00001{bottom:650.289810px;}
.ydb7_c00001{bottom:650.379810px;}
.y16ad_c00001{bottom:650.392650px;}
.y192a_c00001{bottom:650.392800px;}
.y6db_c00001{bottom:650.652000px;}
.y715_c00001{bottom:650.653500px;}
.y728_c00001{bottom:650.655000px;}
.y1693_c00001{bottom:650.657820px;}
.y97c_c00001{bottom:650.745000px;}
.y1c37_c00001{bottom:650.814060px;}
.y17de_c00001{bottom:650.834400px;}
.ye35_c00001{bottom:650.923410px;}
.y17bf_c00001{bottom:651.014250px;}
.y13ef_c00001{bottom:651.014400px;}
.y7f5_c00001{bottom:651.017640px;}
.y1b0c_c00001{bottom:651.374250px;}
.y1195_c00001{bottom:651.738540px;}
.ya7b_c00001{bottom:651.825000px;}
.yb66_c00001{bottom:651.915000px;}
.y189a_c00001{bottom:652.092540px;}
.y187f_c00001{bottom:652.094400px;}
.y5a2_c00001{bottom:652.454250px;}
.y1358_c00001{bottom:652.544250px;}
.y27d_c00001{bottom:652.551990px;}
.y19bd_c00001{bottom:652.631550px;}
.y176a_c00001{bottom:652.814550px;}
.y12bb_c00001{bottom:652.904400px;}
.y1586_c00001{bottom:653.087550px;}
.y1c86_c00001{bottom:653.174250px;}
.y6e9_c00001{bottom:653.357640px;}
.y55f_c00001{bottom:653.365380px;}
.y3e7_c00001{bottom:653.628900px;}
.y643_c00001{bottom:653.984400px;}
.y1462_c00001{bottom:654.074250px;}
.y2c6_c00001{bottom:654.255000px;}
.y1847_c00001{bottom:654.524400px;}
.y1585_c00001{bottom:654.614250px;}
.y1208_c00001{bottom:654.617550px;}
.y1ad8_c00001{bottom:654.888750px;}
.y1722_c00001{bottom:654.974400px;}
.y179a_c00001{bottom:655.064400px;}
.y8e6_c00001{bottom:655.154250px;}
.y16aa_c00001{bottom:655.244250px;}
.y11dd_c00001{bottom:655.244400px;}
.y842_c00001{bottom:655.248900px;}
.y161d_c00001{bottom:655.605000px;}
.y1798_c00001{bottom:655.691700px;}
.y230_c00001{bottom:655.784250px;}
.yc05_c00001{bottom:655.875000px;}
.y15be_c00001{bottom:656.140560px;}
.y18e2_c00001{bottom:656.144400px;}
.ya7a_c00001{bottom:656.234400px;}
.y103e_c00001{bottom:656.239380px;}
.yb67_c00001{bottom:656.414400px;}
.y1bfa_c00001{bottom:656.418900px;}
.yce9_c00001{bottom:656.501250px;}
.y10eb_c00001{bottom:656.774250px;}
.y18de_c00001{bottom:656.777670px;}
.y9c4_c00001{bottom:657.133500px;}
.y9ef_c00001{bottom:657.135000px;}
.y60_c00001{bottom:657.402000px;}
.y112e_c00001{bottom:657.465330px;}
.y1150_c00001{bottom:657.481800px;}
.y191c_c00001{bottom:657.584400px;}
.ycaf_c00001{bottom:657.854250px;}
.y1c73_c00001{bottom:657.858900px;}
.y165f_c00001{bottom:658.484400px;}
.y150b_c00001{bottom:658.664250px;}
.y8e9_c00001{bottom:658.665000px;}
.y1eb_c00001{bottom:658.667490px;}
.y34_c00001{bottom:658.754400px;}
.ye88_c00001{bottom:659.024250px;}
.y947_c00001{bottom:659.293500px;}
.y1bb1_c00001{bottom:659.297400px;}
.yb9d_c00001{bottom:659.474400px;}
.y280_c00001{bottom:659.482620px;}
.y1256_c00001{bottom:659.654400px;}
.y184a_c00001{bottom:660.018750px;}
.y110d_c00001{bottom:660.272250px;}
.y79b_c00001{bottom:660.463140px;}
.y79d_c00001{bottom:660.464400px;}
.y1295_c00001{bottom:660.554400px;}
.y1bae_c00001{bottom:660.821550px;}
.yc5_c00001{bottom:660.912990px;}
.y180d_c00001{bottom:661.004250px;}
.y19bf_c00001{bottom:661.368900px;}
.y1306_c00001{bottom:661.452630px;}
.y334_c00001{bottom:661.453500px;}
.y538_c00001{bottom:661.455000px;}
.y1a3d_c00001{bottom:661.457820px;}
.y10d4_c00001{bottom:661.994400px;}
.y331_c00001{bottom:662.084400px;}
.y32b_c00001{bottom:662.085120px;}
.y154d_c00001{bottom:662.264400px;}
.y42f_c00001{bottom:662.447640px;}
.y17da_c00001{bottom:662.534400px;}
.yf71_c00001{bottom:662.624400px;}
.y11da_c00001{bottom:662.893410px;}
.y198a_c00001{bottom:663.069450px;}
.yac1_c00001{bottom:663.072000px;}
.yae0_c00001{bottom:663.073500px;}
.y15eb_c00001{bottom:663.074400px;}
.yae9_c00001{bottom:663.075000px;}
.y1920_c00001{bottom:663.078900px;}
.y11b9_c00001{bottom:663.614850px;}
.y1959_c00001{bottom:663.798900px;}
.y2c7_c00001{bottom:663.884400px;}
.y15ec_c00001{bottom:663.885210px;}
.y14ef_c00001{bottom:663.886650px;}
.y14ec_c00001{bottom:663.971550px;}
.yd40_c00001{bottom:663.974250px;}
.yd64_c00001{bottom:663.974400px;}
.y16ac_c00001{bottom:664.158150px;}
.y122e_c00001{bottom:664.332420px;}
.y49b_c00001{bottom:664.335000px;}
.y16e4_c00001{bottom:664.518750px;}
.ybd0_c00001{bottom:664.693500px;}
.y7f4_c00001{bottom:664.783140px;}
.y74e_c00001{bottom:664.784250px;}
.y1ca1_c00001{bottom:665.015430px;}
.yf44_c00001{bottom:665.054400px;}
.y125_c00001{bottom:665.232000px;}
.y1bac_c00001{bottom:665.324400px;}
.y1bcf_c00001{bottom:665.328870px;}
.y1c36_c00001{bottom:665.489280px;}
.y890_c00001{bottom:665.595000px;}
.y5f2_c00001{bottom:665.955690px;}
.y27c_c00001{bottom:666.317490px;}
.y101b_c00001{bottom:666.404400px;}
.y1769_c00001{bottom:666.580050px;}
.y1207_c00001{bottom:666.674400px;}
.y1b50_c00001{bottom:666.675000px;}
.y62_c00001{bottom:667.034250px;}
.y1ad5_c00001{bottom:667.034400px;}
.y6e8_c00001{bottom:667.218900px;}
.y55e_c00001{bottom:667.226640px;}
.y3e6_c00001{bottom:667.394400px;}
.y1397_c00001{bottom:667.484040px;}
.y693_c00001{bottom:667.575000px;}
.yc7_c00001{bottom:667.844400px;}
.y1ab4_c00001{bottom:668.024250px;}
.y1766_c00001{bottom:668.024400px;}
.y135a_c00001{bottom:668.392650px;}
.y16e2_c00001{bottom:668.477460px;}
.yd86_c00001{bottom:668.564400px;}
.y1955_c00001{bottom:668.654400px;}
.y1393_c00001{bottom:668.924400px;}
.y897_c00001{bottom:668.935230px;}
.yfa1_c00001{bottom:669.009810px;}
.y841_c00001{bottom:669.014400px;}
.y1002_c00001{bottom:669.374400px;}
.yde7_c00001{bottom:669.554400px;}
.yfe7_c00001{bottom:670.004400px;}
.ydb6_c00001{bottom:670.094400px;}
.yf25_c00001{bottom:670.274250px;}
.ye0a_c00001{bottom:670.449810px;}
.y97b_c00001{bottom:670.902000px;}
.y99e_c00001{bottom:670.903500px;}
.y9a6_c00001{bottom:670.905000px;}
.yfcc_c00001{bottom:670.989660px;}
.yf59_c00001{bottom:671.174250px;}
.y1bb0_c00001{bottom:671.354250px;}
.y1a3f_c00001{bottom:671.537550px;}
.ye58_c00001{bottom:671.713500px;}
.ye74_c00001{bottom:671.715000px;}
.y1b78_c00001{bottom:671.804250px;}
.y37a_c00001{bottom:671.982000px;}
.y3aa_c00001{bottom:671.983500px;}
.y1bf9_c00001{bottom:671.984400px;}
.y3c4_c00001{bottom:671.985000px;}
.y18ad_c00001{bottom:671.987820px;}
.y1ea_c00001{bottom:672.528750px;}
.y1357_c00001{bottom:673.244250px;}
.y1c72_c00001{bottom:673.424400px;}
.y176_c00001{bottom:673.515000px;}
.y1929_c00001{bottom:673.516680px;}
.y1305_c00001{bottom:673.604250px;}
.y1692_c00001{bottom:673.781700px;}
.y1849_c00001{bottom:673.784250px;}
.y1c85_c00001{bottom:673.874250px;}
.y13cd_c00001{bottom:673.964250px;}
.y6ea_c00001{bottom:674.053770px;}
.y12f4_c00001{bottom:674.144400px;}
.y1406_c00001{bottom:674.324250px;}
.y12_c00001{bottom:674.324400px;}
.y141f_c00001{bottom:674.504040px;}
.y14a8_c00001{bottom:674.594400px;}
.yc4_c00001{bottom:674.774250px;}
.y1194_c00001{bottom:674.862420px;}
.y19be_c00001{bottom:675.134400px;}
.y1846_c00001{bottom:675.224400px;}
.yf27_c00001{bottom:675.405600px;}
.ya44_c00001{bottom:675.492000px;}
.y5f7_c00001{bottom:675.764400px;}
.y19bc_c00001{bottom:675.854250px;}
.y141c_c00001{bottom:675.944400px;}
.yc64_c00001{bottom:676.033500px;}
.yc91_c00001{bottom:676.035000px;}
.y42e_c00001{bottom:676.213140px;}
.y430_c00001{bottom:676.214400px;}
.y1c31_c00001{bottom:676.664400px;}
.y191f_c00001{bottom:676.844400px;}
.y1165_c00001{bottom:676.846560px;}
.y9c2_c00001{bottom:677.295000px;}
.y1958_c00001{bottom:677.564400px;}
.y14ee_c00001{bottom:677.652150px;}
.y1b4f_c00001{bottom:678.014400px;}
.y527_c00001{bottom:678.020190px;}
.y4f4_c00001{bottom:678.022140px;}
.y161f_c00001{bottom:678.107670px;}
.y5a0_c00001{bottom:678.193500px;}
.y5c4_c00001{bottom:678.195000px;}
.y16a9_c00001{bottom:678.284250px;}
.y191b_c00001{bottom:678.284400px;}
.yd1e_c00001{bottom:678.463500px;}
.yd34_c00001{bottom:678.465000px;}
.y117c_c00001{bottom:678.543270px;}
.yc38_c00001{bottom:678.555000px;}
.y7f3_c00001{bottom:678.644400px;}
.y1797_c00001{bottom:678.914400px;}
.y165e_c00001{bottom:679.184400px;}
.y1040_c00001{bottom:679.274250px;}
.y103d_c00001{bottom:679.363260px;}
.y150a_c00001{bottom:679.364250px;}
.y946_c00001{bottom:679.365000px;}
.y8e1_c00001{bottom:679.543500px;}
.y63d_c00001{bottom:679.995000px;}
.y18dd_c00001{bottom:680.000370px;}
.y1c35_c00001{bottom:680.164500px;}
.y27b_c00001{bottom:680.178750px;}
.yc04_c00001{bottom:680.444250px;}
.yc63_c00001{bottom:680.445060px;}
.y1266_c00001{bottom:680.710440px;}
.y49e_c00001{bottom:680.897490px;}
.y6e7_c00001{bottom:680.984400px;}
.y55d_c00001{bottom:680.992140px;}
.y1396_c00001{bottom:681.249540px;}
.y22c_c00001{bottom:681.432000px;}
.y24e_c00001{bottom:681.433500px;}
.y257_c00001{bottom:681.435000px;}
.y37b_c00001{bottom:681.614250px;}
.y9c1_c00001{bottom:681.704250px;}
.y129_c00001{bottom:681.707640px;}
.yaa4_c00001{bottom:681.794250px;}
.y1b09_c00001{bottom:681.794400px;}
.y12d3_c00001{bottom:682.064400px;}
.yefe_c00001{bottom:682.155000px;}
.y1359_c00001{bottom:682.158150px;}
.y32a_c00001{bottom:682.244400px;}
.y2c4_c00001{bottom:682.605000px;}
.y896_c00001{bottom:682.700730px;}
.y154c_c00001{bottom:682.964400px;}
.y17d9_c00001{bottom:683.234400px;}
.yabf_c00001{bottom:683.235000px;}
.yf80_c00001{bottom:683.324400px;}
.y14ab_c00001{bottom:683.507640px;}
.yce8_c00001{bottom:683.594400px;}
.y1a00_c00001{bottom:683.597550px;}
.y1465_c00001{bottom:683.687640px;}
.y1bad_c00001{bottom:684.044250px;}
.y15ea_c00001{bottom:684.134400px;}
.y697_c00001{bottom:684.141990px;}
.yf3f_c00001{bottom:684.585000px;}
.yd53_c00001{bottom:684.674400px;}
.y1a3c_c00001{bottom:684.680520px;}
.y187d_c00001{bottom:684.851700px;}
.y15c0_c00001{bottom:685.312350px;}
.y108f_c00001{bottom:685.668900px;}
.y5c_c00001{bottom:685.752000px;}
.y5f1_c00001{bottom:686.114970px;}
.y1205_c00001{bottom:686.115000px;}
.y1252_c00001{bottom:686.293260px;}
.y1e9_c00001{bottom:686.294250px;}
.y11b8_c00001{bottom:686.738730px;}
.y1307_c00001{bottom:686.832000px;}
.y1330_c00001{bottom:686.833500px;}
.y1333_c00001{bottom:686.835000px;}
.y19fe_c00001{bottom:687.104400px;}
.y14eb_c00001{bottom:687.194250px;}
.ybcf_c00001{bottom:687.373500px;}
.y1230_c00001{bottom:687.464400px;}
.y112d_c00001{bottom:687.704250px;}
.y114f_c00001{bottom:687.720720px;}
.yac0_c00001{bottom:687.734400px;}
.y560_c00001{bottom:687.824400px;}
.y171f_c00001{bottom:687.825120px;}
.y141e_c00001{bottom:688.365300px;}
.yfa0_c00001{bottom:688.724400px;}
.y1c70_c00001{bottom:688.908900px;}
.y1265_c00001{bottom:689.073960px;}
.ye34_c00001{bottom:689.084400px;}
.y1954_c00001{bottom:689.354400px;}
.y187e_c00001{bottom:689.438940px;}
.y10a4_c00001{bottom:689.530920px;}
.y108d_c00001{bottom:689.531700px;}
.y1392_c00001{bottom:689.624400px;}
.yd85_c00001{bottom:689.709810px;}
.y192d_c00001{bottom:689.718900px;}
.y33_c00001{bottom:689.804400px;}
.y13cf_c00001{bottom:689.812650px;}
.y177_c00001{bottom:690.074400px;}
.ye09_c00001{bottom:690.164400px;}
.y749_c00001{bottom:690.435000px;}
.y110c_c00001{bottom:690.511170px;}
.yde6_c00001{bottom:690.699810px;}
.yfcb_c00001{bottom:690.704250px;}
.yfe6_c00001{bottom:691.059660px;}
.y1765_c00001{bottom:691.064400px;}
.y97a_c00001{bottom:691.065000px;}
.ydb5_c00001{bottom:691.239660px;}
.y15bc_c00001{bottom:691.244400px;}
.y7f0_c00001{bottom:691.245000px;}
.y4f5_c00001{bottom:691.784250px;}
.y526_c00001{bottom:691.785690px;}
.y4f3_c00001{bottom:691.787640px;}
.y18af_c00001{bottom:692.238900px;}
.y1a6e_c00001{bottom:692.774400px;}
.y1b77_c00001{bottom:692.864250px;}
.ya79_c00001{bottom:692.865000px;}
.yb65_c00001{bottom:692.955000px;}
.y3e4_c00001{bottom:693.043500px;}
.y1ca0_c00001{bottom:693.459120px;}
.ycae_c00001{bottom:693.675000px;}
.y27a_c00001{bottom:693.944250px;}
.y7f2_c00001{bottom:693.948900px;}
.ye5a_c00001{bottom:694.214400px;}
.y157f_c00001{bottom:694.215000px;}
.y10b8_c00001{bottom:694.219530px;}
.y1c84_c00001{bottom:694.574250px;}
.y83d_c00001{bottom:694.662000px;}
.y49d_c00001{bottom:694.662990px;}
.y86c_c00001{bottom:694.663500px;}
.y13cc_c00001{bottom:694.664250px;}
.y87a_c00001{bottom:694.665000px;}
.y55c_c00001{bottom:694.757640px;}
.y1c34_c00001{bottom:694.839720px;}
.yedb_c00001{bottom:694.931430px;}
.y1395_c00001{bottom:695.110800px;}
.y18ac_c00001{bottom:695.111700px;}
.y14a7_c00001{bottom:695.294400px;}
.y178f_c00001{bottom:695.295000px;}
.y128_c00001{bottom:695.473140px;}
.y1461_c00001{bottom:695.474250px;}
.y12b_c00001{bottom:695.474400px;}
.yafa_c00001{bottom:695.564400px;}
.y19ff_c00001{bottom:695.654400px;}
.y1845_c00001{bottom:695.924400px;}
.yb9a_c00001{bottom:696.012000px;}
.ybb3_c00001{bottom:696.013500px;}
.ybb9_c00001{bottom:696.015000px;}
.yc03_c00001{bottom:696.105000px;}
.y1356_c00001{bottom:696.284250px;}
.y895_c00001{bottom:696.561990px;}
.y63f_c00001{bottom:696.563400px;}
.y141b_c00001{bottom:696.644400px;}
.y1691_c00001{bottom:697.004400px;}
.y14aa_c00001{bottom:697.273140px;}
.ya78_c00001{bottom:697.274250px;}
.ya00_c00001{bottom:697.363500px;}
.y124d_c00001{bottom:697.363680px;}
.ya30_c00001{bottom:697.365000px;}
.y15bf_c00001{bottom:697.369200px;}
.y1464_c00001{bottom:697.453140px;}
.yb64_c00001{bottom:697.454250px;}
.yaa3_c00001{bottom:697.455000px;}
.y22d_c00001{bottom:697.904400px;}
.y696_c00001{bottom:697.907490px;}
.ycad_c00001{bottom:698.085210px;}
.y16e3_c00001{bottom:698.444250px;}
.yc61_c00001{bottom:698.625000px;}
.y191a_c00001{bottom:698.984400px;}
.y1b4e_c00001{bottom:699.074400px;}
.y2f9_c00001{bottom:699.074580px;}
.y2c3_c00001{bottom:699.082140px;}
.y944_c00001{bottom:699.523500px;}
.y5f6_c00001{bottom:699.614250px;}
.y163e_c00001{bottom:699.704880px;}
.y161c_c00001{bottom:699.707550px;}
.y1e1_c00001{bottom:699.884400px;}
.y797_c00001{bottom:699.885000px;}
.yb6_c00001{bottom:700.332000px;}
.yf7_c00001{bottom:700.333500px;}
.yfb_c00001{bottom:700.335000px;}
.y8e4_c00001{bottom:700.602000px;}
.y927_c00001{bottom:700.603500px;}
.y11d9_c00001{bottom:701.054400px;}
.ye87_c00001{bottom:701.060520px;}
.y13c4_c00001{bottom:701.144400px;}
.y1989_c00001{bottom:701.230440px;}
.y161e_c00001{bottom:701.231550px;}
.y9ff_c00001{bottom:701.864250px;}
.y1071_c00001{bottom:701.953500px;}
.y141d_c00001{bottom:702.130800px;}
.y5e_c00001{bottom:702.224400px;}
.y330_c00001{bottom:702.492000px;}
.y122d_c00001{bottom:702.493410px;}
.y1b08_c00001{bottom:702.494400px;}
.y1293_c00001{bottom:702.494850px;}
.y3e5_c00001{bottom:702.674400px;}
.y1264_c00001{bottom:702.847200px;}
.yc62_c00001{bottom:703.124250px;}
.y378_c00001{bottom:703.311990px;}
.yb12_c00001{bottom:703.395000px;}
.y192c_c00001{bottom:703.484400px;}
.y13ce_c00001{bottom:703.578150px;}
.y17d8_c00001{bottom:703.934400px;}
.yf70_c00001{bottom:704.024400px;}
.y8e0_c00001{bottom:704.205690px;}
.yeff_c00001{bottom:704.654400px;}
.y698_c00001{bottom:704.834400px;}
.y12e4_c00001{bottom:705.194400px;}
.yd3f_c00001{bottom:705.374250px;}
.y11_c00001{bottom:705.374400px;}
.y525_c00001{bottom:705.551190px;}
.y4f2_c00001{bottom:705.553140px;}
.yd1d_c00001{bottom:705.555000px;}
.y272_c00001{bottom:705.732000px;}
.y18ae_c00001{bottom:706.004400px;}
.y5f0_c00001{bottom:706.274250px;}
.y16a6_c00001{bottom:706.364250px;}
.y1309_c00001{bottom:706.458900px;}
.y59e_c00001{bottom:706.543500px;}
.y5c3_c00001{bottom:706.545000px;}
.y74b_c00001{bottom:706.903140px;}
.yf42_c00001{bottom:707.082270px;}
.y1164_c00001{bottom:707.085480px;}
.y12b3_c00001{bottom:707.535000px;}
.y1aaf_c00001{bottom:707.623500px;}
.y7f1_c00001{bottom:707.714400px;}
.y19fd_c00001{bottom:707.804400px;}
.yb13_c00001{bottom:707.894400px;}
.y187c_c00001{bottom:708.074400px;}
.y14e3_c00001{bottom:708.075000px;}
.y55b_c00001{bottom:708.523140px;}
.y49c_c00001{bottom:708.524250px;}
.y1206_c00001{bottom:708.614250px;}
.y117b_c00001{bottom:708.699840px;}
.y127_c00001{bottom:709.334400px;}
.y1b0b_c00001{bottom:709.340850px;}
.y1c33_c00001{bottom:709.419180px;}
.yd84_c00001{bottom:709.424400px;}
.y798_c00001{bottom:709.514400px;}
.yf9f_c00001{bottom:709.869810px;}
.y1507_c00001{bottom:709.874400px;}
.y11b7_c00001{bottom:709.961430px;}
.y1a6f_c00001{bottom:709.967400px;}
.ybcd_c00001{bottom:710.052000px;}
.yd1c_c00001{bottom:710.054400px;}
.y640_c00001{bottom:710.324400px;}
.y894_c00001{bottom:710.327490px;}
.y63e_c00001{bottom:710.328900px;}
.y898_c00001{bottom:710.339460px;}
.yde5_c00001{bottom:710.414250px;}
.yce7_c00001{bottom:710.684400px;}
.yfe5_c00001{bottom:710.774400px;}
.ydb4_c00001{bottom:710.954250px;}
.y171e_c00001{bottom:711.047820px;}
.y14a9_c00001{bottom:711.134400px;}
.y124c_c00001{bottom:711.136920px;}
.y1001_c00001{bottom:711.219810px;}
.y83e_c00001{bottom:711.224400px;}
.y979_c00001{bottom:711.225000px;}
.y1463_c00001{bottom:711.314400px;}
.ye08_c00001{bottom:711.317310px;}
.y1928_c00001{bottom:711.677670px;}
.yfca_c00001{bottom:711.759810px;}
.y163d_c00001{bottom:711.761730px;}
.y161b_c00001{bottom:711.764400px;}
.y695_c00001{bottom:711.768750px;}
.y1e2_c00001{bottom:711.943500px;}
.y180a_c00001{bottom:712.124250px;}
.y15e7_c00001{bottom:712.214250px;}
.y10a3_c00001{bottom:712.393620px;}
.y108c_c00001{bottom:712.394400px;}
.yf58_c00001{bottom:712.574250px;}
.y2c5_c00001{bottom:712.934400px;}
.y2f8_c00001{bottom:712.935840px;}
.y2c2_c00001{bottom:712.943400px;}
.y1193_c00001{bottom:713.023410px;}
.y17be_c00001{bottom:713.114250px;}
.y13ee_c00001{bottom:713.114400px;}
.y168a_c00001{bottom:713.385000px;}
.y1549_c00001{bottom:713.474250px;}
.y1a6d_c00001{bottom:713.474400px;}
.y74c_c00001{bottom:713.834400px;}
.ybce_c00001{bottom:714.554400px;}
.y1c83_c00001{bottom:715.274250px;}
.y13cb_c00001{bottom:715.364250px;}
.y174_c00001{bottom:715.635000px;}
.y1721_c00001{bottom:715.638900px;}
.y14a6_c00001{bottom:715.994400px;}
.y1460_c00001{bottom:716.084250px;}
.ycac_c00001{bottom:716.262000px;}
.yccd_c00001{bottom:716.263500px;}
.ycd6_c00001{bottom:716.265000px;}
.y796_c00001{bottom:716.444250px;}
.y7c6_c00001{bottom:716.449920px;}
.ya43_c00001{bottom:716.533500px;}
.y10d1_c00001{bottom:716.625000px;}
.y1581_c00001{bottom:716.720520px;}
.ybf_c00001{bottom:716.898900px;}
.y377_c00001{bottom:717.173250px;}
.y10b9_c00001{bottom:717.254400px;}
.y10b7_c00001{bottom:717.343410px;}
.y141a_c00001{bottom:717.344400px;}
.y103c_c00001{bottom:717.524250px;}
.y9c0_c00001{bottom:717.525000px;}
.ya77_c00001{bottom:717.613500px;}
.ya99_c00001{bottom:717.615000px;}
.y1794_c00001{bottom:717.803790px;}
.y112c_c00001{bottom:717.860820px;}
.y114e_c00001{bottom:717.877290px;}
.y1ad2_c00001{bottom:718.154250px;}
.y18ab_c00001{bottom:718.334400px;}
.y1b4a_c00001{bottom:718.515000px;}
.y1410_c00001{bottom:718.697550px;}
.yc02_c00001{bottom:718.785000px;}
.y10e9_c00001{bottom:718.871430px;}
.y1032_c00001{bottom:718.962630px;}
.y5f4_c00001{bottom:718.963500px;}
.y1762_c00001{bottom:719.144250px;}
.y524_c00001{bottom:719.412450px;}
.y4f1_c00001{bottom:719.414400px;}
.y108e_c00001{bottom:719.594400px;}
.y1919_c00001{bottom:719.684400px;}
.y943_c00001{bottom:719.685000px;}
.y1c71_c00001{bottom:719.958900px;}
.y110b_c00001{bottom:720.667740px;}
.y74a_c00001{bottom:720.764400px;}
.y32_c00001{bottom:720.854400px;}
.y1b74_c00001{bottom:720.944400px;}
.y1019_c00001{bottom:720.945000px;}
.ya42_c00001{bottom:721.034250px;}
.y3e2_c00001{bottom:721.392000px;}
.y1b0a_c00001{bottom:721.397700px;}
.y8e3_c00001{bottom:721.485000px;}
.yb99_c00001{bottom:721.755000px;}
.y1c9f_c00001{bottom:721.902810px;}
.ya1f_c00001{bottom:722.024250px;}
.y278_c00001{bottom:722.306640px;}
.y55a_c00001{bottom:722.384400px;}
.y5bf_c00001{bottom:723.019080px;}
.y59d_c00001{bottom:723.022140px;}
.y6e5_c00001{bottom:723.108750px;}
.y1b07_c00001{bottom:723.194400px;}
.y228_c00001{bottom:723.552000px;}
.y24d_c00001{bottom:723.553500px;}
.y256_c00001{bottom:723.555000px;}
.y19ba_c00001{bottom:724.004250px;}
.y893_c00001{bottom:724.092990px;}
.y3e3_c00001{bottom:724.094400px;}
.ye86_c00001{bottom:724.184400px;}
.y1352_c00001{bottom:724.364400px;}
.y8df_c00001{bottom:724.364970px;}
.y1073_c00001{bottom:724.454250px;}
.yf7f_c00001{bottom:724.724400px;}
.yf21_c00001{bottom:724.815000px;}
.y124b_c00001{bottom:724.994400px;}
.y694_c00001{bottom:725.534250px;}
.y1b2c_c00001{bottom:725.712780px;}
.y1b00_c00001{bottom:725.714400px;}
.y1292_c00001{bottom:725.717550px;}
.yead_c00001{bottom:725.719530px;}
.yd52_c00001{bottom:726.074400px;}
.y16e1_c00001{bottom:726.258600px;}
.y1a8f_c00001{bottom:726.342810px;}
.y1841_c00001{bottom:726.344400px;}
.y18a9_c00001{bottom:726.347550px;}
.y2f7_c00001{bottom:726.701340px;}
.y1583_c00001{bottom:726.702630px;}
.y2c1_c00001{bottom:726.708900px;}
.y16a5_c00001{bottom:727.064250px;}
.ye48_c00001{bottom:727.422780px;}
.y180c_c00001{bottom:727.963140px;}
.y794_c00001{bottom:728.235000px;}
.y1e6_c00001{bottom:728.417490px;}
.y1aae_c00001{bottom:728.502780px;}
.y1ab1_c00001{bottom:728.597550px;}
.ye2f_c00001{bottom:728.682000px;}
.y1720_c00001{bottom:729.404400px;}
.y19bb_c00001{bottom:729.498540px;}
.yf9e_c00001{bottom:729.584400px;}
.y6e6_c00001{bottom:730.034250px;}
.y12b7_c00001{bottom:730.043940px;}
.y1ab0_c00001{bottom:730.124250px;}
.y329_c00001{bottom:730.214400px;}
.y325_c00001{bottom:730.215840px;}
.y1268_c00001{bottom:730.304400px;}
.yd83_c00001{bottom:730.569660px;}
.y1506_c00001{bottom:730.574400px;}
.y14e7_c00001{bottom:730.583940px;}
.ybe_c00001{bottom:730.664400px;}
.y140f_c00001{bottom:730.754400px;}
.y1c10_c00001{bottom:730.755000px;}
.y1000_c00001{bottom:730.934400px;}
.y376_c00001{bottom:730.938750px;}
.yde4_c00001{bottom:731.114250px;}
.y4ed_c00001{bottom:731.205000px;}
.y165b_c00001{bottom:731.294400px;}
.y977_c00001{bottom:731.295000px;}
.yfc9_c00001{bottom:731.474400px;}
.y1204_c00001{bottom:731.657550px;}
.y16e0_c00001{bottom:731.747550px;}
.y138e_c00001{bottom:732.105000px;}
.ydb3_c00001{bottom:732.107460px;}
.y42b_c00001{bottom:732.191430px;}
.y175_c00001{bottom:732.194250px;}
.y1ba9_c00001{bottom:732.194400px;}
.y1689_c00001{bottom:732.376920px;}
.y169d_c00001{bottom:732.383130px;}
.y1070_c00001{bottom:732.467400px;}
.y5b_c00001{bottom:732.558900px;}
.yd1b_c00001{bottom:732.645000px;}
.y1809_c00001{bottom:732.824250px;}
.y15e6_c00001{bottom:732.914250px;}
.yeda_c00001{bottom:733.092420px;}
.y108a_c00001{bottom:733.185000px;}
.y7ea_c00001{bottom:733.365000px;}
.y1355_c00001{bottom:733.373400px;}
.yb63_c00001{bottom:733.995000px;}
.y1bf7_c00001{bottom:734.075250px;}
.y497_c00001{bottom:734.082000px;}
.y1548_c00001{bottom:734.084250px;}
.y1a6c_c00001{bottom:734.084400px;}
.y171d_c00001{bottom:734.171700px;}
.y17d5_c00001{bottom:734.444400px;}
.y122_c00001{bottom:734.892000px;}
.y1927_c00001{bottom:734.900370px;}
.y978_c00001{bottom:735.794250px;}
.y168f_c00001{bottom:735.891090px;}
.y1c82_c00001{bottom:735.974250px;}
.y277_c00001{bottom:736.072140px;}
.y14dc_c00001{bottom:736.151160px;}
.y1c17_c00001{bottom:736.155000px;}
.y140a_c00001{bottom:736.244250px;}
.y12f7_c00001{bottom:736.244400px;}
.y19e9_c00001{bottom:736.424250px;}
.y10_c00001{bottom:736.424400px;}
.y836_c00001{bottom:736.783500px;}
.y145f_c00001{bottom:736.784250px;}
.y879_c00001{bottom:736.785000px;}
.y59f_c00001{bottom:736.874250px;}
.y5be_c00001{bottom:736.880340px;}
.y59c_c00001{bottom:736.883400px;}
.yd1a_c00001{bottom:737.144400px;}
.y13c7_c00001{bottom:737.145000px;}
.y7ee_c00001{bottom:737.147490px;}
.y1163_c00001{bottom:737.324400px;}
.y9bf_c00001{bottom:737.685000px;}
.y124_c00001{bottom:737.688750px;}
.y795_c00001{bottom:737.864250px;}
.y379_c00001{bottom:737.869380px;}
.y892_c00001{bottom:737.954250px;}
.y1b76_c00001{bottom:738.139650px;}
.y19fa_c00001{bottom:738.224400px;}
.y18a8_c00001{bottom:738.404400px;}
.y1582_c00001{bottom:738.854250px;}
.y117a_c00001{bottom:738.938760px;}
.yc60_c00001{bottom:738.943500px;}
.yc90_c00001{bottom:738.945000px;}
.y10d2_c00001{bottom:739.124250px;}
.y1988_c00001{bottom:739.391430px;}
.y68e_c00001{bottom:739.484400px;}
.ye47_c00001{bottom:739.574400px;}
.yed7_c00001{bottom:739.669440px;}
.y1761_c00001{bottom:739.844250px;}
.y1580_c00001{bottom:739.844400px;}
.y942_c00001{bottom:739.845000px;}
.y22a_c00001{bottom:740.118900px;}
.y2f6_c00001{bottom:740.466840px;}
.y2c0_c00001{bottom:740.474400px;}
.y122c_c00001{bottom:740.654400px;}
.y1390_c00001{bottom:740.744400px;}
.y1793_c00001{bottom:740.927670px;}
.y1879_c00001{bottom:740.933790px;}
.ya3f_c00001{bottom:741.285000px;}
.yc01_c00001{bottom:741.465000px;}
.y1b73_c00001{bottom:741.644400px;}
.y180b_c00001{bottom:741.824400px;}
.yaa2_c00001{bottom:742.184400px;}
.y1e7_c00001{bottom:742.274250px;}
.y1e5_c00001{bottom:742.278750px;}
.y8e2_c00001{bottom:742.365000px;}
.y1b4d_c00001{bottom:742.365450px;}
.y5ea_c00001{bottom:742.815000px;}
.yc5f_c00001{bottom:743.444250px;}
.y1203_c00001{bottom:743.714400px;}
.yabe_c00001{bottom:743.715000px;}
.y16df_c00001{bottom:743.804400px;}
.y1b06_c00001{bottom:743.894400px;}
.y17bd_c00001{bottom:744.164250px;}
.y13ed_c00001{bottom:744.164400px;}
.y8de_c00001{bottom:744.524250px;}
.yedc_c00001{bottom:744.614250px;}
.y263_c00001{bottom:744.699900px;}
.y375_c00001{bottom:744.704250px;}
.y1351_c00001{bottom:745.064400px;}
.y10ce_c00001{bottom:745.067400px;}
.yf41_c00001{bottom:745.243260px;}
.y1764_c00001{bottom:745.334640px;}
.yf6f_c00001{bottom:745.424400px;}
.y53_c00001{bottom:745.784250px;}
.y42c_c00001{bottom:745.964400px;}
.y42a_c00001{bottom:745.968900px;}
.y1688_c00001{bottom:746.234400px;}
.y1391_c00001{bottom:746.238900px;}
.y169c_c00001{bottom:746.240610px;}
.y5a_c00001{bottom:746.324400px;}
.y743_c00001{bottom:746.325000px;}
.y14a3_c00001{bottom:746.414400px;}
.y171c_c00001{bottom:746.682780px;}
.ya76_c00001{bottom:746.774250px;}
.yd63_c00001{bottom:746.774400px;}
.y22b_c00001{bottom:746.954250px;}
.y19b9_c00001{bottom:747.044250px;}
.y1840_c00001{bottom:747.044400px;}
.y1354_c00001{bottom:747.138900px;}
.yf23_c00001{bottom:747.314400px;}
.yb98_c00001{bottom:747.495000px;}
.y4ef_c00001{bottom:747.672990px;}
.y16a4_c00001{bottom:747.764250px;}
.y1416_c00001{bottom:747.764400px;}
.y1509_c00001{bottom:747.771900px;}
.y557_c00001{bottom:747.945000px;}
.y112b_c00001{bottom:748.099740px;}
.y114d_c00001{bottom:748.116210px;}
.y11b6_c00001{bottom:748.122420px;}
.yb39_c00001{bottom:748.124250px;}
.y165d_c00001{bottom:748.489800px;}
.yeae_c00001{bottom:748.754400px;}
.ye52_c00001{bottom:748.755000px;}
.y327_c00001{bottom:749.025000px;}
.y1bf4_c00001{bottom:749.294250px;}
.y1bab_c00001{bottom:749.379330px;}
.y1796_c00001{bottom:749.658900px;}
.y3e0_c00001{bottom:749.742000px;}
.y66d_c00001{bottom:749.743500px;}
.y680_c00001{bottom:749.745000px;}
.y279_c00001{bottom:749.924400px;}
.y276_c00001{bottom:749.933400px;}
.y1b75_c00001{bottom:750.196500px;}
.ybcc_c00001{bottom:750.283500px;}
.yd82_c00001{bottom:750.284250px;}
.y17d7_c00001{bottom:750.292650px;}
.y324_c00001{bottom:750.375120px;}
.y5bd_c00001{bottom:750.645840px;}
.y499_c00001{bottom:750.648900px;}
.yf9d_c00001{bottom:750.729810px;}
.y110a_c00001{bottom:750.906660px;}
.y7ed_c00001{bottom:751.008750px;}
.ye31_c00001{bottom:751.184400px;}
.y690_c00001{bottom:751.185000px;}
.y1505_c00001{bottom:751.274400px;}
.y123_c00001{bottom:751.454250px;}
.yaf9_c00001{bottom:751.455000px;}
.yfff_c00001{bottom:751.634400px;}
.y1c9e_c00001{bottom:751.779390px;}
.y31_c00001{bottom:751.904400px;}
.y165a_c00001{bottom:751.994400px;}
.ye07_c00001{bottom:752.259660px;}
.yde3_c00001{bottom:752.267310px;}
.y3e1_c00001{bottom:752.444250px;}
.y63b_c00001{bottom:752.447640px;}
.yfc8_c00001{bottom:752.619660px;}
.y1b72_c00001{bottom:752.627550px;}
.y1ba8_c00001{bottom:752.894400px;}
.y12b6_c00001{bottom:753.167820px;}
.y16a8_c00001{bottom:753.252990px;}
.y83b_c00001{bottom:753.351990px;}
.y1808_c00001{bottom:753.524250px;}
.yed6_c00001{bottom:753.526920px;}
.y15e5_c00001{bottom:753.614250px;}
.y14e6_c00001{bottom:753.707820px;}
.y229_c00001{bottom:753.884400px;}
.y692_c00001{bottom:753.888900px;}
.yf57_c00001{bottom:753.974250px;}
.y1b4c_c00001{bottom:754.422300px;}
.y4f0_c00001{bottom:754.604250px;}
.y18d9_c00001{bottom:754.697670px;}
.y1547_c00001{bottom:754.784250px;}
.y17d4_c00001{bottom:755.144400px;}
.y19fc_c00001{bottom:755.409180px;}
.y1bce_c00001{bottom:755.500290px;}
.y10b6_c00001{bottom:755.504400px;}
.y372_c00001{bottom:755.594400px;}
.y11d1_c00001{bottom:755.595000px;}
.y2f4_c00001{bottom:755.596920px;}
.y2be_c00001{bottom:755.601990px;}
.y108b_c00001{bottom:755.684400px;}
.y1e4_c00001{bottom:756.044250px;}
.y1ad4_c00001{bottom:756.051600px;}
.ybb_c00001{bottom:756.315000px;}
.y792_c00001{bottom:756.585000px;}
.y1c81_c00001{bottom:756.674250px;}
.yf43_c00001{bottom:756.674400px;}
.y13ca_c00001{bottom:756.768900px;}
.y1419_c00001{bottom:756.777600px;}
.y10e8_c00001{bottom:757.032420px;}
.y10cd_c00001{bottom:757.124250px;}
.y1033_c00001{bottom:757.125000px;}
.y491_c00001{bottom:757.304400px;}
.y49a_c00001{bottom:757.574400px;}
.y173_c00001{bottom:757.842000px;}
.y1b0_c00001{bottom:757.843500px;}
.y7ef_c00001{bottom:757.843620px;}
.y1c2_c00001{bottom:757.845000px;}
.y1926_c00001{bottom:758.024250px;}
.y171b_c00001{bottom:758.834400px;}
.y19f9_c00001{bottom:758.924400px;}
.y1916_c00001{bottom:759.104400px;}
.y168e_c00001{bottom:759.113790px;}
.y1763_c00001{bottom:759.195900px;}
.yef7_c00001{bottom:759.285000px;}
.y1ad1_c00001{bottom:759.554250px;}
.y13c9_c00001{bottom:759.644400px;}
.yd19_c00001{bottom:759.732000px;}
.yd2f_c00001{bottom:759.733500px;}
.y429_c00001{bottom:759.734400px;}
.yd33_c00001{bottom:759.735000px;}
.y1508_c00001{bottom:759.828750px;}
.y54_c00001{bottom:760.095000px;}
.y262_c00001{bottom:760.184400px;}
.yb5e_c00001{bottom:760.455000px;}
.y1760_c00001{bottom:760.544250px;}
.y165c_c00001{bottom:760.546650px;}
.y1353_c00001{bottom:760.904400px;}
.ycab_c00001{bottom:761.084400px;}
.y1952_c00001{bottom:761.174400px;}
.y138d_c00001{bottom:761.444250px;}
.y1baa_c00001{bottom:761.530950px;}
.y4ee_c00001{bottom:761.534250px;}
.y154b_c00001{bottom:761.617530px;}
.yc5e_c00001{bottom:761.623500px;}
.yc8f_c00001{bottom:761.625000px;}
.y748_c00001{bottom:762.884670px;}
.y1a39_c00001{bottom:762.888750px;}
.y1843_c00001{bottom:762.888840px;}
.y58_c00001{bottom:762.893400px;}
.y14ea_c00001{bottom:762.977190px;}
.y11fb_c00001{bottom:763.155000px;}
.y8dd_c00001{bottom:763.242000px;}
.y926_c00001{bottom:763.243500px;}
.y1795_c00001{bottom:763.424400px;}
.y275_c00001{bottom:763.698900px;}
.yabd_c00001{bottom:763.783500px;}
.yae8_c00001{bottom:763.785000px;}
.y1291_c00001{bottom:763.878540px;}
.yeac_c00001{bottom:763.880520px;}
.y1c66_c00001{bottom:763.965000px;}
.yc36_c00001{bottom:764.052000px;}
.y17d6_c00001{bottom:764.058150px;}
.y1792_c00001{bottom:764.150370px;}
.y1878_c00001{bottom:764.156490px;}
.yd18_c00001{bottom:764.234400px;}
.y88e_c00001{bottom:764.235000px;}
.y5bc_c00001{bottom:764.411340px;}
.y498_c00001{bottom:764.414400px;}
.y556_c00001{bottom:764.504400px;}
.y1a69_c00001{bottom:764.594250px;}
.y1b71_c00001{bottom:764.684400px;}
.y7ec_c00001{bottom:764.774250px;}
.yb62_c00001{bottom:764.948190px;}
.y1c14_c00001{bottom:765.039750px;}
.y1bf6_c00001{bottom:765.044250px;}
.y1350_c00001{bottom:765.764400px;}
.ya41_c00001{bottom:765.854250px;}
.ybc_c00001{bottom:765.944250px;}
.yc00_c00001{bottom:766.034250px;}
.yf7e_c00001{bottom:766.124400px;}
.ya75_c00001{bottom:766.305000px;}
.y63a_c00001{bottom:766.308900px;}
.y6e3_c00001{bottom:766.407750px;}
.y71a_c00001{bottom:766.409730px;}
.y5ed_c00001{bottom:766.665000px;}
.y16a7_c00001{bottom:767.114250px;}
.y14a2_c00001{bottom:767.114400px;}
.y83a_c00001{bottom:767.117490px;}
.y12ea_c00001{bottom:767.294400px;}
.y5ec_c00001{bottom:767.384400px;}
.y5e9_c00001{bottom:767.384970px;}
.y19ee_c00001{bottom:767.474250px;}
.yf_c00001{bottom:767.474400px;}
.y19fb_c00001{bottom:767.560800px;}
.y691_c00001{bottom:767.654400px;}
.y925_c00001{bottom:767.732370px;}
.y8da_c00001{bottom:767.738040px;}
.y183f_c00001{bottom:767.744400px;}
.y1ad3_c00001{bottom:768.108450px;}
.y16a3_c00001{bottom:768.464250px;}
.y1415_c00001{bottom:768.464400px;}
.yc37_c00001{bottom:768.554400px;}
.y187b_c00001{bottom:768.742650px;}
.y1179_c00001{bottom:769.177680px;}
.y2f3_c00001{bottom:769.362420px;}
.y2bd_c00001{bottom:769.367490px;}
.y1aa8_c00001{bottom:769.722000px;}
.yf9c_c00001{bottom:770.444400px;}
.y323_c00001{bottom:770.534400px;}
.y1418_c00001{bottom:770.543100px;}
.ya74_c00001{bottom:770.804400px;}
.y18db_c00001{bottom:770.901750px;}
.ye56_c00001{bottom:771.252420px;}
.yed9_c00001{bottom:771.253410px;}
.yd81_c00001{bottom:771.437460px;}
.y119_c00001{bottom:771.528900px;}
.y976_c00001{bottom:771.613500px;}
.y9a5_c00001{bottom:771.615000px;}
.yeaa_c00001{bottom:771.887550px;}
.ye06_c00001{bottom:771.974250px;}
.y1504_c00001{bottom:771.974400px;}
.y10b3_c00001{bottom:771.975000px;}
.yde2_c00001{bottom:772.064250px;}
.yfc7_c00001{bottom:772.334250px;}
.yffe_c00001{bottom:772.779660px;}
.ybcb_c00001{bottom:772.962000px;}
.ydb2_c00001{bottom:773.049810px;}
.y63c_c00001{bottom:773.143770px;}
.yb97_c00001{bottom:773.232000px;}
.ybb2_c00001{bottom:773.233500px;}
.ybb8_c00001{bottom:773.235000px;}
.y154a_c00001{bottom:773.769150px;}
.y83c_c00001{bottom:774.044250px;}
.y198b_c00001{bottom:774.227310px;}
.y15e4_c00001{bottom:774.314250px;}
.y1b03_c00001{bottom:774.314400px;}
.yce6_c00001{bottom:775.035000px;}
.y19b6_c00001{bottom:775.214250px;}
.y12d2_c00001{bottom:775.214400px;}
.y1294_c00001{bottom:775.304400px;}
.y1803_c00001{bottom:775.392000px;}
.y1828_c00001{bottom:775.393500px;}
.y1619_c00001{bottom:775.394250px;}
.y163b_c00001{bottom:775.394520px;}
.y182d_c00001{bottom:775.395000px;}
.y1546_c00001{bottom:775.484250px;}
.y17d3_c00001{bottom:775.844400px;}
.y1659_c00001{bottom:775.934400px;}
.yaf8_c00001{bottom:776.114250px;}
.y2f5_c00001{bottom:776.293050px;}
.y12b8_c00001{bottom:776.294250px;}
.y554_c00001{bottom:776.295000px;}
.y2bf_c00001{bottom:776.298120px;}
.y12b5_c00001{bottom:776.390520px;}
.y57_c00001{bottom:776.658900px;}
.y747_c00001{bottom:776.662140px;}
.y326_c00001{bottom:776.743590px;}
.y1a38_c00001{bottom:776.744250px;}
.y1842_c00001{bottom:776.750100px;}
.y14e9_c00001{bottom:776.838450px;}
.y14e5_c00001{bottom:776.930520px;}
.y120_c00001{bottom:777.105000px;}
.y274_c00001{bottom:777.464400px;}
.y1987_c00001{bottom:777.552420px;}
.yb96_c00001{bottom:777.734400px;}
.y18d8_c00001{bottom:777.920370px;}
.y9be_c00001{bottom:778.005000px;}
.y3de_c00001{bottom:778.092000px;}
.y11d5_c00001{bottom:778.096830px;}
.y1923_c00001{bottom:778.184400px;}
.y1301_c00001{bottom:778.274400px;}
.y112a_c00001{bottom:778.338660px;}
.y114c_c00001{bottom:778.355130px;}
.y7e9_c00001{bottom:778.544250px;}
.y124e_c00001{bottom:778.995000px;}
.ycaa_c00001{bottom:779.172000px;}
.yccc_c00001{bottom:779.173500px;}
.ycd5_c00001{bottom:779.175000px;}
.y1579_c00001{bottom:779.442000px;}
.y15a4_c00001{bottom:779.443500px;}
.y1b47_c00001{bottom:779.444400px;}
.y15a9_c00001{bottom:779.445000px;}
.yce5_c00001{bottom:779.534400px;}
.y224_c00001{bottom:779.535000px;}
.y19f8_c00001{bottom:779.624400px;}
.y1039_c00001{bottom:779.632950px;}
.y1915_c00001{bottom:779.804400px;}
.y639_c00001{bottom:780.074400px;}
.y941_c00001{bottom:780.075000px;}
.y6e2_c00001{bottom:780.173250px;}
.y719_c00001{bottom:780.175230px;}
.y1223_c00001{bottom:780.252000px;}
.y1241_c00001{bottom:780.253500px;}
.y1ad0_c00001{bottom:780.254250px;}
.y1245_c00001{bottom:780.255000px;}
.y1c9d_c00001{bottom:780.585420px;}
.y88f_c00001{bottom:780.704250px;}
.y1690_c00001{bottom:780.707550px;}
.y88d_c00001{bottom:780.708750px;}
.y839_c00001{bottom:780.978750px;}
.y1109_c00001{bottom:781.145580px;}
.y15e9_c00001{bottom:781.154250px;}
.ybff_c00001{bottom:781.695000px;}
.yefa_c00001{bottom:781.782420px;}
.y1a6b_c00001{bottom:781.789800px;}
.y168d_c00001{bottom:782.237670px;}
.y9bd_c00001{bottom:782.414400px;}
.yaa1_c00001{bottom:782.504400px;}
.y187a_c00001{bottom:782.508150px;}
.y30_c00001{bottom:782.954400px;}
.y2f2_c00001{bottom:783.127920px;}
.y2bc_c00001{bottom:783.132990px;}
.yf40_c00001{bottom:783.404250px;}
.y175f_c00001{bottom:783.584250px;}
.y59_c00001{bottom:783.589530px;}
.yca9_c00001{bottom:783.674400px;}
.yea9_c00001{bottom:783.944400px;}
.yb11_c00001{bottom:783.945000px;}
.y1c6e_c00001{bottom:783.948750px;}
.y8dc_c00001{bottom:784.125000px;}
.yc5c_c00001{bottom:784.215000px;}
.y1417_c00001{bottom:784.308600px;}
.y36f_c00001{bottom:784.395000px;}
.yb9_c00001{bottom:784.665000px;}
.y18da_c00001{bottom:784.667250px;}
.yb61_c00001{bottom:785.107470px;}
.y1a68_c00001{bottom:785.294250px;}
.y1201_c00001{bottom:785.653980px;}
.y16dc_c00001{bottom:785.750520px;}
.y11b5_c00001{bottom:786.283410px;}
.y14a5_c00001{bottom:786.377640px;}
.y106e_c00001{bottom:786.553410px;}
.y791_c00001{bottom:786.645000px;}
.y121_c00001{bottom:786.734400px;}
.yf6e_c00001{bottom:786.824400px;}
.yd17_c00001{bottom:786.825000px;}
.yeab_c00001{bottom:787.004400px;}
.y118_c00001{bottom:787.094400px;}
.y4ea_c00001{bottom:787.095000px;}
.y6e4_c00001{bottom:787.103880px;}
.y15b9_c00001{bottom:787.103940px;}
.y71b_c00001{bottom:787.105860px;}
.y1791_c00001{bottom:787.274250px;}
.y1877_c00001{bottom:787.280370px;}
.y5e8_c00001{bottom:787.544250px;}
.y134d_c00001{bottom:787.635000px;}
.y14a1_c00001{bottom:787.814400px;}
.y924_c00001{bottom:787.891650px;}
.y8d9_c00001{bottom:787.897320px;}
.y145b_c00001{bottom:787.994400px;}
.yd62_c00001{bottom:788.084400px;}
.yd3e_c00001{bottom:788.174250px;}
.yabc_c00001{bottom:788.444400px;}
.yc5d_c00001{bottom:788.714400px;}
.y428_c00001{bottom:788.988900px;}
.y468_c00001{bottom:788.990610px;}
.y16a2_c00001{bottom:789.164250px;}
.y1414_c00001{bottom:789.164400px;}
.y4eb_c00001{bottom:789.884250px;}
.y1718_c00001{bottom:790.247820px;}
.ya73_c00001{bottom:790.335000px;}
.y56_c00001{bottom:790.424400px;}
.y746_c00001{bottom:790.427640px;}
.y5eb_c00001{bottom:790.512000px;}
.y14e8_c00001{bottom:790.603950px;}
.yd16_c00001{bottom:791.234400px;}
.y7e6_c00001{bottom:791.505000px;}
.yf9b_c00001{bottom:791.589810px;}
.y194f_c00001{bottom:791.594250px;}
.y975_c00001{bottom:791.775000px;}
.y138a_c00001{bottom:791.864400px;}
.y1aab_c00001{bottom:792.236640px;}
.yffd_c00001{bottom:792.494250px;}
.ydb1_c00001{bottom:792.764400px;}
.y59a_c00001{bottom:792.772140px;}
.y555_c00001{bottom:792.854400px;}
.y1bdd_c00001{bottom:792.855000px;}
.yde1_c00001{bottom:793.119660px;}
.y496_c00001{bottom:793.130730px;}
.y15e8_c00001{bottom:793.211100px;}
.y68f_c00001{bottom:793.305000px;}
.yfc6_c00001{bottom:793.479810px;}
.y1a6a_c00001{bottom:793.846650px;}
.y6e1_c00001{bottom:793.938750px;}
.y718_c00001{bottom:793.940730px;}
.y161a_c00001{bottom:794.379840px;}
.y163c_c00001{bottom:794.380110px;}
.y16de_c00001{bottom:794.382990px;}
.y88c_c00001{bottom:794.474250px;}
.y3df_c00001{bottom:794.564250px;}
.y838_c00001{bottom:794.744250px;}
.ya72_c00001{bottom:794.834250px;}
.y1527_c00001{bottom:795.010800px;}
.y15e3_c00001{bottom:795.014250px;}
.y1503_c00001{bottom:795.014400px;}
.y10e7_c00001{bottom:795.193410px;}
.y18d4_c00001{bottom:795.282780px;}
.yf56_c00001{bottom:795.374250px;}
.y322_c00001{bottom:795.465000px;}
.y1df_c00001{bottom:795.651990px;}
.y19b5_c00001{bottom:795.914250px;}
.y226_c00001{bottom:796.008750px;}
.y1545_c00001{bottom:796.184250px;}
.y1618_c00001{bottom:796.454250px;}
.y163a_c00001{bottom:796.454520px;}
.y145e_c00001{bottom:796.908090px;}
.y2f1_c00001{bottom:796.989180px;}
.y2bb_c00001{bottom:796.994250px;}
.y1304_c00001{bottom:797.542290px;}
.y17cf_c00001{bottom:797.625000px;}
.y1806_c00001{bottom:797.906490px;}
.y9bc_c00001{bottom:798.072000px;}
.y9e6_c00001{bottom:798.073500px;}
.y1c80_c00001{bottom:798.074250px;}
.y9ee_c00001{bottom:798.075000px;}
.yaa0_c00001{bottom:798.165000px;}
.y12f0_c00001{bottom:798.254400px;}
.y19e8_c00001{bottom:798.434250px;}
.ye_c00001{bottom:798.434400px;}
.y169e_c00001{bottom:798.524400px;}
.y1300_c00001{bottom:798.974400px;}
.yb95_c00001{bottom:798.975000px;}
.y1178_c00001{bottom:799.334250px;}
.y1c6d_c00001{bottom:799.514250px;}
.y12b4_c00001{bottom:799.514400px;}
.y14e4_c00001{bottom:800.054400px;}
.y940_c00001{bottom:800.232000px;}
.y14a4_c00001{bottom:800.238900px;}
.y1914_c00001{bottom:800.504400px;}
.y18d7_c00001{bottom:801.044250px;}
.y7e7_c00001{bottom:801.134250px;}
.y78f_c00001{bottom:801.135000px;}
.yba_c00001{bottom:801.224250px;}
.ye85_c00001{bottom:801.313260px;}
.y1c13_c00001{bottom:801.314250px;}
.y11d4_c00001{bottom:801.319530px;}
.y19b8_c00001{bottom:801.408900px;}
.y124f_c00001{bottom:801.491700px;}
.yca7_c00001{bottom:801.852000px;}
.yccb_c00001{bottom:801.853500px;}
.ycd4_c00001{bottom:801.855000px;}
.y1b05_c00001{bottom:801.860850px;}
.y157c_c00001{bottom:801.941700px;}
.yf1e_c00001{bottom:801.945000px;}
.y1290_c00001{bottom:802.039530px;}
.ya3e_c00001{bottom:802.485000px;}
.y1229_c00001{bottom:802.750440px;}
.y427_c00001{bottom:802.754400px;}
.y467_c00001{bottom:802.756110px;}
.y1038_c00001{bottom:802.756830px;}
.y1b6f_c00001{bottom:802.844250px;}
.yce4_c00001{bottom:802.932000px;}
.y227_c00001{bottom:802.934400px;}
.y270_c00001{bottom:803.115000px;}
.y1acf_c00001{bottom:803.294250px;}
.yb94_c00001{bottom:803.384250px;}
.yea2_c00001{bottom:803.472000px;}
.yec4_c00001{bottom:803.473500px;}
.yecc_c00001{bottom:803.475000px;}
.y1b70_c00001{bottom:803.655060px;}
.y172_c00001{bottom:803.742000px;}
.y1af_c00001{bottom:803.743500px;}
.y1c1_c00001{bottom:803.745000px;}
.y1656_c00001{bottom:804.014400px;}
.yabb_c00001{bottom:804.105000px;}
.y745_c00001{bottom:804.288900px;}
.ybfe_c00001{bottom:804.375000px;}
.y8db_c00001{bottom:805.005000px;}
.yb60_c00001{bottom:805.184400px;}
.y168c_c00001{bottom:805.361550px;}
.y632_c00001{bottom:805.725000px;}
.y12fd_c00001{bottom:805.817550px;}
.y1918_c00001{bottom:805.993140px;}
.y1a67_c00001{bottom:805.994250px;}
.y17bc_c00001{bottom:806.264250px;}
.y12d1_c00001{bottom:806.264400px;}
.yca8_c00001{bottom:806.354400px;}
.y888_c00001{bottom:806.355000px;}
.y171a_c00001{bottom:806.451750px;}
.y599_c00001{bottom:806.633400px;}
.y1017_c00001{bottom:806.714400px;}
.y495_c00001{bottom:806.991990px;}
.y134f_c00001{bottom:807.162990px;}
.y1b49_c00001{bottom:807.252900px;}
.y1951_c00001{bottom:807.430740px;}
.y18d3_c00001{bottom:807.434400px;}
.y6e0_c00001{bottom:807.704250px;}
.y717_c00001{bottom:807.706230px;}
.y923_c00001{bottom:807.968580px;}
.y7e5_c00001{bottom:807.974250px;}
.y16dd_c00001{bottom:808.244250px;}
.y14a0_c00001{bottom:808.514400px;}
.y1129_c00001{bottom:808.577580px;}
.y114b_c00001{bottom:808.594050px;}
.y145a_c00001{bottom:808.694400px;}
.y15bb_c00001{bottom:808.697550px;}
.yd51_c00001{bottom:808.784400px;}
.y16db_c00001{bottom:808.874400px;}
.y1200_c00001{bottom:808.876680px;}
.y1b48_c00001{bottom:808.880520px;}
.y1c9c_c00001{bottom:809.029110px;}
.y183e_c00001{bottom:809.144400px;}
.ye55_c00001{bottom:809.413410px;}
.yed8_c00001{bottom:809.414400px;}
.y1de_c00001{bottom:809.417490px;}
.y106f_c00001{bottom:809.594400px;}
.y225_c00001{bottom:809.774250px;}
.y16a1_c00001{bottom:809.864250px;}
.y134e_c00001{bottom:810.134250px;}
.y19f5_c00001{bottom:810.134400px;}
.y15a3_c00001{bottom:810.136200px;}
.y1083_c00001{bottom:810.222000px;}
.y10a1_c00001{bottom:810.223500px;}
.y10a7_c00001{bottom:810.225000px;}
.y15b8_c00001{bottom:810.227820px;}
.y1876_c00001{bottom:810.404250px;}
.y145d_c00001{bottom:810.673590px;}
.y790_c00001{bottom:810.764400px;}
.y13c6_c00001{bottom:810.944490px;}
.y1108_c00001{bottom:811.302150px;}
.yf9a_c00001{bottom:811.304400px;}
.y1303_c00001{bottom:811.307790px;}
.y5e6_c00001{bottom:811.395000px;}
.y175c_c00001{bottom:811.754400px;}
.y974_c00001{bottom:811.935000px;}
.y157e_c00001{bottom:812.027400px;}
.y194e_c00001{bottom:812.294250px;}
.yd80_c00001{bottom:812.379810px;}
.y1389_c00001{bottom:812.564400px;}
.y36c_c00001{bottom:812.745000px;}
.yde0_c00001{bottom:812.834250px;}
.yfc5_c00001{bottom:813.194400px;}
.ybca_c00001{bottom:813.285000px;}
.y2f0_c00001{bottom:813.459900px;}
.y59b_c00001{bottom:813.464400px;}
.y2ba_c00001{bottom:813.468900px;}
.y1717_c00001{bottom:813.470520px;}
.yffc_c00001{bottom:813.639810px;}
.y1aad_c00001{bottom:813.827400px;}
.ydb0_c00001{bottom:813.827460px;}
.y1b04_c00001{bottom:813.917700px;}
.y2f_c00001{bottom:814.004400px;}
.ya71_c00001{bottom:814.365000px;}
.y15b5_c00001{bottom:814.634250px;}
.yd15_c00001{bottom:814.635000px;}
.y10b2_c00001{bottom:814.904250px;}
.y1c6c_c00001{bottom:814.998750px;}
.y19b7_c00001{bottom:815.174400px;}
.y425_c00001{bottom:815.352000px;}
.y466_c00001{bottom:815.353500px;}
.y477_c00001{bottom:815.355000px;}
.y1aaa_c00001{bottom:815.360520px;}
.y4e8_c00001{bottom:815.445000px;}
.y36e_c00001{bottom:815.448900px;}
.y1986_c00001{bottom:815.713410px;}
.y15e2_c00001{bottom:815.714250px;}
.y1b02_c00001{bottom:815.714400px;}
.y13c5_c00001{bottom:815.804400px;}
.y5e5_c00001{bottom:815.894400px;}
.y50_c00001{bottom:816.075000px;}
.y10d0_c00001{bottom:816.163410px;}
.y1ba7_c00001{bottom:816.342630px;}
.y1e0_c00001{bottom:816.348120px;}
.yb8_c00001{bottom:816.434400px;}
.y19b4_c00001{bottom:816.614250px;}
.y1544_c00001{bottom:816.884250px;}
.y1c21_c00001{bottom:817.064400px;}
.y12fc_c00001{bottom:817.874400px;}
.y1ba6_c00001{bottom:817.964400px;}
.y744_c00001{bottom:818.054400px;}
.y1807_c00001{bottom:818.148900px;}
.y9fd_c00001{bottom:818.235000px;}
.y16f_c00001{bottom:818.322000px;}
.y1ac_c00001{bottom:818.323500px;}
.y1c0_c00001{bottom:818.325000px;}
.ya70_c00001{bottom:818.774250px;}
.y271_c00001{bottom:819.674400px;}
.y26f_c00001{bottom:819.678900px;}
.y1917_c00001{bottom:819.854400px;}
.y7e2_c00001{bottom:819.855000px;}
.yef9_c00001{bottom:819.943410px;}
.y17d0_c00001{bottom:820.124400px;}
.y1922_c00001{bottom:820.127670px;}
.y1719_c00001{bottom:820.217250px;}
.y832_c00001{bottom:820.395000px;}
.y598_c00001{bottom:820.398900px;}
.y6de_c00001{bottom:820.665000px;}
.y15ba_c00001{bottom:820.754400px;}
.y494_c00001{bottom:820.757490px;}
.ye57_c00001{bottom:820.934400px;}
.y1805_c00001{bottom:821.030370px;}
.y1a35_c00001{bottom:821.033940px;}
.y1913_c00001{bottom:821.204400px;}
.y1950_c00001{bottom:821.292000px;}
.y552_c00001{bottom:821.752140px;}
.y637_c00001{bottom:822.471990px;}
.y9fe_c00001{bottom:822.734400px;}
.y88a_c00001{bottom:822.823140px;}
.y1500_c00001{bottom:823.094250px;}
.y319_c00001{bottom:823.180350px;}
.y321_c00001{bottom:823.184400px;}
.y835_c00001{bottom:823.188750px;}
.y1dd_c00001{bottom:823.278750px;}
.y3dd_c00001{bottom:823.904250px;}
.y157d_c00001{bottom:824.084250px;}
.yab9_c00001{bottom:824.262000px;}
.yadf_c00001{bottom:824.263500px;}
.yae7_c00001{bottom:824.265000px;}
.y11d6_c00001{bottom:824.358450px;}
.y11d3_c00001{bottom:824.443410px;}
.y11b4_c00001{bottom:824.444400px;}
.yf1f_c00001{bottom:824.450520px;}
.yc5b_c00001{bottom:824.532000px;}
.yc86_c00001{bottom:824.533500px;}
.y145c_c00001{bottom:824.534850px;}
.yc8e_c00001{bottom:824.535000px;}
.y106d_c00001{bottom:824.714400px;}
.y93f_c00001{bottom:824.894400px;}
.y426_c00001{bottom:824.984400px;}
.y157b_c00001{bottom:825.164400px;}
.y1302_c00001{bottom:825.169050px;}
.yb92_c00001{bottom:825.435000px;}
.yed5_c00001{bottom:825.883500px;}
.y1aac_c00001{bottom:825.884250px;}
.yea7_c00001{bottom:825.971280px;}
.y1037_c00001{bottom:825.979530px;}
.y178a_c00001{bottom:826.875000px;}
.yc35_c00001{bottom:827.055000px;}
.y2ef_c00001{bottom:827.225400px;}
.y2b9_c00001{bottom:827.234400px;}
.y19f7_c00001{bottom:827.329800px;}
.y1016_c00001{bottom:827.414400px;}
.yce3_c00001{bottom:827.494800px;}
.yf6d_c00001{bottom:828.224400px;}
.ye2e_c00001{bottom:828.313260px;}
.y138c_c00001{bottom:828.408540px;}
.y168b_c00001{bottom:828.584250px;}
.y1413_c00001{bottom:828.591840px;}
.y36b_c00001{bottom:828.674400px;}
.y11f_c00001{bottom:828.678900px;}
.y17d2_c00001{bottom:828.763140px;}
.yaba_c00001{bottom:828.764400px;}
.yc5a_c00001{bottom:829.027560px;}
.ybfd_c00001{bottom:829.034400px;}
.y1c07_c00001{bottom:829.035000px;}
.y36d_c00001{bottom:829.214400px;}
.y12e3_c00001{bottom:829.304400px;}
.y1459_c00001{bottom:829.394400px;}
.y19e7_c00001{bottom:829.484250px;}
.yd_c00001{bottom:829.484400px;}
.yd3d_c00001{bottom:829.574250px;}
.y14fb_c00001{bottom:829.574400px;}
.y88b_c00001{bottom:829.754400px;}
.y8d8_c00001{bottom:830.384250px;}
.y1c6b_c00001{bottom:830.564250px;}
.y19f4_c00001{bottom:830.834400px;}
.ya3d_c00001{bottom:830.924400px;}
.y1acc_c00001{bottom:831.374400px;}
.y1872_c00001{bottom:831.375000px;}
.yefb_c00001{bottom:831.464400px;}
.y465_c00001{bottom:831.913770px;}
.y424_c00001{bottom:831.914400px;}
.y11ff_c00001{bottom:832.000560px;}
.y4e9_c00001{bottom:832.004400px;}
.yaf7_c00001{bottom:832.005000px;}
.yd7f_c00001{bottom:832.094400px;}
.y1bf0_c00001{bottom:832.359900px;}
.y175b_c00001{bottom:832.454400px;}
.y1c20_c00001{bottom:832.629900px;}
.y1088_c00001{bottom:832.822800px;}
.y194d_c00001{bottom:832.994250px;}
.y1388_c00001{bottom:833.264400px;}
.y15b7_c00001{bottom:833.351700px;}
.yffb_c00001{bottom:833.354400px;}
.y78d_c00001{bottom:833.362140px;}
.y26e_c00001{bottom:833.444400px;}
.ydaf_c00001{bottom:833.624400px;}
.y18d6_c00001{bottom:833.718900px;}
.ye05_c00001{bottom:833.979810px;}
.y6dd_c00001{bottom:833.984400px;}
.yddf_c00001{bottom:833.987460px;}
.y597_c00001{bottom:834.164400px;}
.yfc4_c00001{bottom:834.339810px;}
.y493_c00001{bottom:834.522990px;}
.y171_c00001{bottom:834.884250px;}
.y21e_c00001{bottom:835.425000px;}
.y551_c00001{bottom:835.517640px;}
.y1018_c00001{bottom:835.873200px;}
.y636_c00001{bottom:836.237490px;}
.y7e4_c00001{bottom:836.323140px;}
.y15e1_c00001{bottom:836.414250px;}
.y1b01_c00001{bottom:836.414400px;}
.y973_c00001{bottom:836.504400px;}
.y1716_c00001{bottom:836.594400px;}
.y889_c00001{bottom:836.684400px;}
.yf55_c00001{bottom:836.774250px;}
.y834_c00001{bottom:836.954250px;}
.y1dc_c00001{bottom:837.044250px;}
.y12d0_c00001{bottom:837.134400px;}
.y6df_c00001{bottom:837.224250px;}
.y17bb_c00001{bottom:837.314250px;}
.y1ac0_c00001{bottom:837.314400px;}
.y103a_c00001{bottom:837.404250px;}
.y1c9b_c00001{bottom:837.472800px;}
.ybc9_c00001{bottom:837.854400px;}
.yf3d_c00001{bottom:837.945000px;}
.y175e_c00001{bottom:837.948900px;}
.y223_c00001{bottom:838.131990px;}
.ya6f_c00001{bottom:838.302000px;}
.ya90_c00001{bottom:838.303500px;}
.ya98_c00001{bottom:838.305000px;}
.y9bb_c00001{bottom:838.395000px;}
.y1aa9_c00001{bottom:838.484400px;}
.y1128_c00001{bottom:838.734150px;}
.y114a_c00001{bottom:838.750620px;}
.y19f6_c00001{bottom:839.386650px;}
.ye84_c00001{bottom:839.474250px;}
.y183b_c00001{bottom:839.654250px;}
.y5df_c00001{bottom:839.723010px;}
.y5da_c00001{bottom:839.739480px;}
.y5e4_c00001{bottom:839.744250px;}
.y18a6_c00001{bottom:840.197460px;}
.y128f_c00001{bottom:840.200520px;}
.y1502_c00001{bottom:840.289800px;}
.y12ff_c00001{bottom:840.374400px;}
.y52_c00001{bottom:840.734400px;}
.y11b2_c00001{bottom:840.825000px;}
.y1228_c00001{bottom:840.911430px;}
.y3dc_c00001{bottom:841.274250px;}
.y1107_c00001{bottom:841.541070px;}
.yb5d_c00001{bottom:841.725000px;}
.y1912_c00001{bottom:841.904400px;}
.y31f_c00001{bottom:841.995000px;}
.yca6_c00001{bottom:842.175000px;}
.y138b_c00001{bottom:842.269800px;}
.y1412_c00001{bottom:842.357340px;}
.y11e_c00001{bottom:842.444400px;}
.y553_c00001{bottom:842.448270px;}
.y17d1_c00001{bottom:842.624400px;}
.y1a37_c00001{bottom:842.627550px;}
.ya6e_c00001{bottom:842.804400px;}
.ya1e_c00001{bottom:842.894400px;}
.y638_c00001{bottom:843.164400px;}
.y17ce_c00001{bottom:843.251550px;}
.y1a66_c00001{bottom:843.257400px;}
.y318_c00001{bottom:843.339630px;}
.y1202_c00001{bottom:843.524250px;}
.y73f_c00001{bottom:843.703500px;}
.y14ff_c00001{bottom:843.794250px;}
.y1804_c00001{bottom:844.154250px;}
.y1a34_c00001{bottom:844.157820px;}
.yb0f_c00001{bottom:844.425000px;}
.ybfc_c00001{bottom:844.695000px;}
.y2e_c00001{bottom:845.054400px;}
.y9b_c00001{bottom:845.145000px;}
.y26a_c00001{bottom:845.235000px;}
.y1655_c00001{bottom:845.414400px;}
.y2ee_c00001{bottom:845.683140px;}
.y2b8_c00001{bottom:845.688750px;}
.y16a0_c00001{bottom:845.868750px;}
.y1c69_c00001{bottom:846.048750px;}
.yca5_c00001{bottom:846.667560px;}
.y422_c00001{bottom:847.042140px;}
.y463_c00001{bottom:847.043850px;}
.yc58_c00001{bottom:847.125000px;}
.y78c_c00001{bottom:847.127640px;}
.y1542_c00001{bottom:847.394400px;}
.yf20_c00001{bottom:847.486500px;}
.ye54_c00001{bottom:847.574400px;}
.yce2_c00001{bottom:847.654080px;}
.y1bef_c00001{bottom:847.844400px;}
.y18d5_c00001{bottom:848.204250px;}
.y492_c00001{bottom:848.384250px;}
.y1b43_c00001{bottom:848.385000px;}
.yb10_c00001{bottom:848.834250px;}
.y10b0_c00001{bottom:849.015000px;}
.y550_c00001{bottom:849.378900px;}
.y178c_c00001{bottom:849.380520px;}
.y1616_c00001{bottom:849.734250px;}
.y10e5_c00001{bottom:849.735000px;}
.y149f_c00001{bottom:849.914400px;}
.yb93_c00001{bottom:850.004400px;}
.y1458_c00001{bottom:850.094400px;}
.y635_c00001{bottom:850.098750px;}
.y7e3_c00001{bottom:850.184400px;}
.ya3c_c00001{bottom:850.453500px;}
.yc59_c00001{bottom:851.624400px;}
.y175d_c00001{bottom:851.714400px;}
.y222_c00001{bottom:851.993250px;}
.y1acb_c00001{bottom:852.074400px;}
.y972_c00001{bottom:852.165000px;}
.y1501_c00001{bottom:852.346650px;}
.y175a_c00001{bottom:853.154400px;}
.yd7e_c00001{bottom:853.157310px;}
.yf99_c00001{bottom:853.158480px;}
.y8d7_c00001{bottom:853.335000px;}
.ybc8_c00001{bottom:853.515000px;}
.ye04_c00001{bottom:853.694400px;}
.ydde_c00001{bottom:853.784400px;}
.y1a1d_c00001{bottom:853.870740px;}
.y1873_c00001{bottom:853.874400px;}
.y1387_c00001{bottom:853.964400px;}
.yfc3_c00001{bottom:854.054400px;}
.y12af_c00001{bottom:854.055000px;}
.y78e_c00001{bottom:854.058270px;}
.y1543_c00001{bottom:854.238900px;}
.y10cf_c00001{bottom:854.324400px;}
.y1617_c00001{bottom:854.327400px;}
.yffa_c00001{bottom:854.499810px;}
.y1a36_c00001{bottom:854.684400px;}
.ydae_c00001{bottom:854.769810px;}
.y1b6e_c00001{bottom:854.777850px;}
.y368_c00001{bottom:854.865000px;}
.yd14_c00001{bottom:855.675000px;}
.ye82_c00001{bottom:855.852000px;}
.y1087_c00001{bottom:855.946680px;}
.y1411_c00001{bottom:856.218600px;}
.y15b6_c00001{bottom:856.574400px;}
.y1a65_c00001{bottom:857.114250px;}
.y16d8_c00001{bottom:857.114400px;}
.y4e5_c00001{bottom:857.655000px;}
.y8cd_c00001{bottom:857.747130px;}
.y91a_c00001{bottom:857.748420px;}
.y8d2_c00001{bottom:857.763600px;}
.y91f_c00001{bottom:857.764890px;}
.y178e_c00001{bottom:858.018900px;}
.yef8_c00001{bottom:858.104400px;}
.y1349_c00001{bottom:858.284250px;}
.y9ba_c00001{bottom:858.552000px;}
.y9e5_c00001{bottom:858.553500px;}
.y9ed_c00001{bottom:858.555000px;}
.y19ae_c00001{bottom:859.092000px;}
.y19de_c00001{bottom:859.093500px;}
.y19e1_c00001{bottom:859.095000px;}
.y2ed_c00001{bottom:859.448640px;}
.y2b7_c00001{bottom:859.454250px;}
.y1b46_c00001{bottom:859.722780px;}
.y595_c00001{bottom:859.815000px;}
.y5de_c00001{bottom:859.882290px;}
.y5d9_c00001{bottom:859.898760px;}
.yd13_c00001{bottom:860.084250px;}
.y1d8_c00001{bottom:860.085000px;}
.y741_c00001{bottom:860.173140px;}
.y1c7f_c00001{bottom:860.174250px;}
.y183a_c00001{bottom:860.354250px;}
.y12f6_c00001{bottom:860.354400px;}
.y4e7_c00001{bottom:860.358900px;}
.y16d_c00001{bottom:860.442000px;}
.y1aa_c00001{bottom:860.443500px;}
.yf3e_c00001{bottom:860.444400px;}
.y1bf_c00001{bottom:860.445000px;}
.y19e6_c00001{bottom:860.534250px;}
.yc_c00001{bottom:860.534400px;}
.y48f_c00001{bottom:860.535000px;}
.y14fa_c00001{bottom:860.624400px;}
.y93b_c00001{bottom:860.625000px;}
.y421_c00001{bottom:860.807640px;}
.y462_c00001{bottom:860.809350px;}
.y78b_c00001{bottom:860.893140px;}
.y12fe_c00001{bottom:861.074400px;}
.y1c68_c00001{bottom:861.614250px;}
.yf6_c00001{bottom:861.703500px;}
.yb5_c00001{bottom:861.704250px;}
.yb4_c00001{bottom:861.708750px;}
.y26c_c00001{bottom:861.798750px;}
.y883_c00001{bottom:862.245000px;}
.y1875_c00001{bottom:862.518900px;}
.y1658_c00001{bottom:862.603050px;}
.y11d2_c00001{bottom:862.604400px;}
.y82e_c00001{bottom:862.695000px;}
.y6d7_c00001{bottom:862.785000px;}
.y18a5_c00001{bottom:862.964400px;}
.y54f_c00001{bottom:863.144400px;}
.y11b3_c00001{bottom:863.324400px;}
.y169f_c00001{bottom:863.414400px;}
.y16cc_c00001{bottom:863.419350px;}
.y317_c00001{bottom:863.498910px;}
.y5e3_c00001{bottom:863.594400px;}
.y634_c00001{bottom:863.864250px;}
.yea6_c00001{bottom:864.132270px;}
.y1036_c00001{bottom:864.140520px;}
.y1067_c00001{bottom:864.222000px;}
.yab8_c00001{bottom:864.492000px;}
.yade_c00001{bottom:864.493500px;}
.yae6_c00001{bottom:864.495000px;}
.y1572_c00001{bottom:864.675000px;}
.yca3_c00001{bottom:864.762000px;}
.ycca_c00001{bottom:864.763500px;}
.ycd3_c00001{bottom:864.765000px;}
.y1386_c00001{bottom:864.947550px;}
.y886_c00001{bottom:865.043400px;}
.y93d_c00001{bottom:865.124400px;}
.y221_c00001{bottom:865.758750px;}
.y1c9a_c00001{bottom:865.998840px;}
.y1ba4_c00001{bottom:866.114250px;}
.y1654_c00001{bottom:866.114400px;}
.ye2d_c00001{bottom:866.474250px;}
.yb91_c00001{bottom:866.475000px;}
.y13c3_c00001{bottom:866.658750px;}
.y14df_c00001{bottom:866.666640px;}
.y1526_c00001{bottom:866.830440px;}
.y14fe_c00001{bottom:866.834250px;}
.y1afd_c00001{bottom:866.924250px;}
.y742_c00001{bottom:867.104400px;}
.yc34_c00001{bottom:867.285000px;}
.y1a33_c00001{bottom:867.380520px;}
.yb5c_c00001{bottom:867.462000px;}
.y423_c00001{bottom:867.738270px;}
.y464_c00001{bottom:867.739980px;}
.yce1_c00001{bottom:867.813360px;}
.y1541_c00001{bottom:868.094400px;}
.y18d2_c00001{bottom:868.273500px;}
.y1900_c00001{bottom:868.275000px;}
.y13ec_c00001{bottom:868.364400px;}
.y26d_c00001{bottom:868.724250px;}
.y1127_c00001{bottom:868.973070px;}
.y1149_c00001{bottom:868.989540px;}
.yca4_c00001{bottom:869.264400px;}
.y1713_c00001{bottom:869.546490px;}
.yf6c_c00001{bottom:869.624400px;}
.y31e_c00001{bottom:869.714400px;}
.y16e_c00001{bottom:870.074400px;}
.y3c8_c00001{bottom:870.075000px;}
.y11fe_c00001{bottom:870.161550px;}
.y1615_c00001{bottom:870.434250px;}
.y13c1_c00001{bottom:870.617310px;}
.yb90_c00001{bottom:870.884250px;}
.yd61_c00001{bottom:870.884400px;}
.yd3c_c00001{bottom:870.974250px;}
.y10b1_c00001{bottom:871.514400px;}
.y1106_c00001{bottom:871.779990px;}
.ya6c_c00001{bottom:871.782000px;}
.ya8f_c00001{bottom:871.783500px;}
.y178d_c00001{bottom:871.784400px;}
.ya97_c00001{bottom:871.785000px;}
.y1b45_c00001{bottom:871.874400px;}
.y10e6_c00001{bottom:872.234400px;}
.yaf6_c00001{bottom:872.322000px;}
.y178b_c00001{bottom:872.504400px;}
.y4df_c00001{bottom:872.688900px;}
.yf98_c00001{bottom:872.774250px;}
.y1aca_c00001{bottom:872.774400px;}
.y1ba5_c00001{bottom:872.952780px;}
.yd7d_c00001{bottom:872.954250px;}
.y16da_c00001{bottom:872.958750px;}
.y1c0f_c00001{bottom:873.768900px;}
.y1759_c00001{bottom:873.854400px;}
.y2b5_c00001{bottom:873.855000px;}
.y740_c00001{bottom:874.034400px;}
.y4e6_c00001{bottom:874.124400px;}
.y8d6_c00001{bottom:874.212000px;}
.y922_c00001{bottom:874.213500px;}
.yff9_c00001{bottom:874.214400px;}
.ydad_c00001{bottom:874.484400px;}
.y420_c00001{bottom:874.573140px;}
.y461_c00001{bottom:874.574850px;}
.y1657_c00001{bottom:874.659900px;}
.y78a_c00001{bottom:874.754400px;}
.y11a_c00001{bottom:874.845000px;}
.ye03_c00001{bottom:874.847460px;}
.yddd_c00001{bottom:874.929810px;}
.yfc2_c00001{bottom:875.199810px;}
.yf5_c00001{bottom:875.469000px;}
.yb3_c00001{bottom:875.474250px;}
.y54b_c00001{bottom:875.475000px;}
.y26b_c00001{bottom:875.564250px;}
.y7dc_c00001{bottom:875.745000px;}
.y194c_c00001{bottom:875.928900px;}
.y14e2_c00001{bottom:875.931000px;}
.y2d_c00001{bottom:876.104400px;}
.y183d_c00001{bottom:876.198900px;}
.y1874_c00001{bottom:876.284400px;}
.y594_c00001{bottom:876.383400px;}
.y5bb_c00001{bottom:876.388440px;}
.y12b1_c00001{bottom:876.551550px;}
.y1da_c00001{bottom:876.648900px;}
.y971_c00001{bottom:876.824400px;}
.y16c_c00001{bottom:877.004400px;}
.y490_c00001{bottom:877.094400px;}
.y16d7_c00001{bottom:877.814400px;}
.y8cc_c00001{bottom:877.906410px;}
.y919_c00001{bottom:877.907700px;}
.y8d1_c00001{bottom:877.922880px;}
.y91e_c00001{bottom:877.924170px;}
.y1aa3_c00001{bottom:878.085000px;}
.yf54_c00001{bottom:878.174250px;}
.ye83_c00001{bottom:878.354400px;}
.y7e0_c00001{bottom:878.542140px;}
.y9b8_c00001{bottom:878.625000px;}
.ya9f_c00001{bottom:878.715000px;}
.y885_c00001{bottom:878.808900px;}
.y1348_c00001{bottom:878.984250px;}
.y1086_c00001{bottom:879.070560px;}
.y1227_c00001{bottom:879.072420px;}
.y1cf_c00001{bottom:879.168900px;}
.y830_c00001{bottom:879.258750px;}
.y6d9_c00001{bottom:879.348750px;}
.y1687_c00001{bottom:879.429480px;}
.y169b_c00001{bottom:879.434580px;}
.y220_c00001{bottom:879.524250px;}
.y1ace_c00001{bottom:879.612450px;}
.y36a_c00001{bottom:879.614250px;}
.y128a_c00001{bottom:879.795000px;}
.y1975_c00001{bottom:879.885810px;}
.y194a_c00001{bottom:879.887310px;}
.y5dd_c00001{bottom:879.959220px;}
.y5d8_c00001{bottom:879.975690px;}
.y1454_c00001{bottom:880.514250px;}
.y1839_c00001{bottom:881.054250px;}
.y19b1_c00001{bottom:881.597820px;}
.y19f2_c00001{bottom:881.954250px;}
.y18d1_c00001{bottom:882.131550px;}
.y18fb_c00001{bottom:882.132960px;}
.y10e3_c00001{bottom:882.496830px;}
.y10cc_c00001{bottom:882.497460px;}
.y9b9_c00001{bottom:883.124400px;}
.y596_c00001{bottom:883.214400px;}
.y2b6_c00001{bottom:883.484400px;}
.yd10_c00001{bottom:883.485000px;}
.y149e_c00001{bottom:883.493550px;}
.y1db_c00001{bottom:883.574400px;}
.y316_c00001{bottom:883.658190px;}
.y1b9e_c00001{bottom:883.934400px;}
.y1bcd_c00001{bottom:883.937730px;}
.y11d_c00001{bottom:884.654250px;}
.yb0d_c00001{bottom:884.655000px;}
.y149b_c00001{bottom:884.834400px;}
.ybfa_c00001{bottom:884.925000px;}
.y1715_c00001{bottom:885.645840px;}
.y887_c00001{bottom:885.739530px;}
.y831_c00001{bottom:886.184400px;}
.y6da_c00001{bottom:886.274250px;}
.y1101_c00001{bottom:886.544250px;}
.y3d9_c00001{bottom:886.634250px;}
.y106b_c00001{bottom:886.720710px;}
.y16d9_c00001{bottom:886.724250px;}
.y1ba3_c00001{bottom:886.814250px;}
.y1653_c00001{bottom:886.814400px;}
.yea8_c00001{bottom:887.174400px;}
.y1576_c00001{bottom:887.183790px;}
.y1906_c00001{bottom:887.261160px;}
.y1035_c00001{bottom:887.264400px;}
.yb0_c00001{bottom:887.355000px;}
.yc57_c00001{bottom:887.442000px;}
.yc85_c00001{bottom:887.443500px;}
.y5e2_c00001{bottom:887.444400px;}
.yc8d_c00001{bottom:887.445000px;}
.y1a63_c00001{bottom:887.534250px;}
.y1afc_c00001{bottom:887.624250px;}
.y789_c00001{bottom:887.625000px;}
.y134c_c00001{bottom:887.993850px;}
.y4de_c00001{bottom:888.254400px;}
.y41f_c00001{bottom:888.434400px;}
.y460_c00001{bottom:888.436110px;}
.y31b_c00001{bottom:888.523500px;}
.yce0_c00001{bottom:888.697320px;}
.y16b_c00001{bottom:888.793500px;}
.y1be_c00001{bottom:888.795000px;}
.y19f3_c00001{bottom:888.798750px;}
.yb0e_c00001{bottom:889.154250px;}
.ybfb_c00001{bottom:889.424400px;}
.y62f_c00001{bottom:889.695000px;}
.y14e1_c00001{bottom:889.696500px;}
.y14de_c00001{bottom:889.790520px;}
.y183c_c00001{bottom:889.964400px;}
.y1c5f_c00001{bottom:890.055000px;}
.y593_c00001{bottom:890.148900px;}
.y5ba_c00001{bottom:890.153940px;}
.y1d9_c00001{bottom:890.414400px;}
.y1a32_c00001{bottom:890.504400px;}
.y1089_c00001{bottom:890.594400px;}
.ya3a_c00001{bottom:890.775000px;}
.y1aa1_c00001{bottom:891.047550px;}
.y48b_c00001{bottom:891.048750px;}
.y1614_c00001{bottom:891.134250px;}
.y13fd_c00001{bottom:891.404400px;}
.y19e5_c00001{bottom:891.584250px;}
.yb_c00001{bottom:891.584400px;}
.y1acd_c00001{bottom:891.669300px;}
.yd3b_c00001{bottom:891.674250px;}
.y14f9_c00001{bottom:891.674400px;}
.y15b3_c00001{bottom:891.759630px;}
.yc33_c00001{bottom:891.944400px;}
.y54d_c00001{bottom:892.038900px;}
.y7df_c00001{bottom:892.307640px;}
.y1800_c00001{bottom:892.394250px;}
.y970_c00001{bottom:892.485000px;}
.y884_c00001{bottom:892.574400px;}
.y1712_c00001{bottom:892.670370px;}
.yb8f_c00001{bottom:892.935000px;}
.y82f_c00001{bottom:893.024250px;}
.y6d8_c00001{bottom:893.114250px;}
.yb5a_c00001{bottom:893.205000px;}
.y11fd_c00001{bottom:893.384250px;}
.y1ac9_c00001{bottom:893.474400px;}
.ybc7_c00001{bottom:893.835000px;}
.yf97_c00001{bottom:893.919660px;}
.yd7c_c00001{bottom:894.099660px;}
.y1c99_c00001{bottom:894.442530px;}
.ye2a_c00001{bottom:894.551700px;}
.yddc_c00001{bottom:894.644400px;}
.y1ce_c00001{bottom:894.734400px;}
.yfc1_c00001{bottom:894.914400px;}
.y8d5_c00001{bottom:895.095000px;}
.ya3b_c00001{bottom:895.184400px;}
.y1754_c00001{bottom:895.635000px;}
.ydac_c00001{bottom:895.637460px;}
.ya6d_c00001{bottom:896.354400px;}
.y1871_c00001{bottom:897.164400px;}
.yb2_c00001{bottom:897.254400px;}
.y149d_c00001{bottom:897.259050px;}
.y14fd_c00001{bottom:897.609630px;}
.yb5b_c00001{bottom:897.704250px;}
.y8cb_c00001{bottom:898.065690px;}
.y918_c00001{bottom:898.066980px;}
.y8d0_c00001{bottom:898.082160px;}
.y91d_c00001{bottom:898.083450px;}
.ybc6_c00001{bottom:898.334250px;}
.y153e_c00001{bottom:898.514400px;}
.y9fc_c00001{bottom:898.782000px;}
.ya2b_c00001{bottom:898.783500px;}
.ya2f_c00001{bottom:898.785000px;}
.y54e_c00001{bottom:898.874400px;}
.y1126_c00001{bottom:899.211990px;}
.y1148_c00001{bottom:899.228460px;}
.y1b41_c00001{bottom:899.234400px;}
.y17ba_c00001{bottom:899.414250px;}
.y12cf_c00001{bottom:899.414400px;}
.y1714_c00001{bottom:899.507100px;}
.y739_c00001{bottom:899.592000px;}
.y1347_c00001{bottom:899.684250px;}
.y12b2_c00001{bottom:899.684400px;}
.y1457_c00001{bottom:899.774040px;}
.y12b0_c00001{bottom:899.774250px;}
.y4e0_c00001{bottom:899.775000px;}
.y5dc_c00001{bottom:900.118500px;}
.y5d7_c00001{bottom:900.134970px;}
.y1984_c00001{bottom:900.224250px;}
.y13c2_c00001{bottom:900.584250px;}
.y169a_c00001{bottom:900.589350px;}
.y1aa5_c00001{bottom:900.590520px;}
.y41d_c00001{bottom:900.765000px;}
.y93a_c00001{bottom:900.942000px;}
.y1905_c00001{bottom:901.034400px;}
.y267_c00001{bottom:901.212000px;}
.y1453_c00001{bottom:901.214250px;}
.y1c7e_c00001{bottom:901.574250px;}
.y1838_c00001{bottom:901.664250px;}
.y134b_c00001{bottom:901.759350px;}
.y19b3_c00001{bottom:901.848750px;}
.y1105_c00001{bottom:901.936560px;}
.y190f_c00001{bottom:902.114400px;}
.y2b3_c00001{bottom:902.205000px;}
.yea5_c00001{bottom:902.293260px;}
.y128d_c00001{bottom:902.298390px;}
.y73d_c00001{bottom:902.392140px;}
.y4e3_c00001{bottom:902.477640px;}
.y1974_c00001{bottom:902.652750px;}
.y1949_c00001{bottom:902.654250px;}
.yed3_c00001{bottom:902.925000px;}
.y1aa0_c00001{bottom:903.104400px;}
.y169_c00001{bottom:903.372000px;}
.y1a9_c00001{bottom:903.373500px;}
.y1bd_c00001{bottom:903.375000px;}
.y14e0_c00001{bottom:903.462000px;}
.y4d_c00001{bottom:903.465000px;}
.y115_c00001{bottom:903.642000px;}
.y315_c00001{bottom:903.817470px;}
.y269_c00001{bottom:903.912990px;}
.y592_c00001{bottom:903.914400px;}
.y5b9_c00001{bottom:903.919440px;}
.y19b0_c00001{bottom:904.721700px;}
.yab7_c00001{bottom:904.815000px;}
.y1aff_c00001{bottom:904.817550px;}
.y1c0e_c00001{bottom:904.818900px;}
.y1a1c_c00001{bottom:904.990440px;}
.y18d0_c00001{bottom:904.994250px;}
.y18fa_c00001{bottom:904.995660px;}
.yca1_c00001{bottom:905.085000px;}
.y217_c00001{bottom:905.175000px;}
.y10e2_c00001{bottom:905.263770px;}
.y10cb_c00001{bottom:905.264400px;}
.y939_c00001{bottom:905.444400px;}
.y149a_c00001{bottom:905.534400px;}
.y54c_c00001{bottom:905.804400px;}
.y7de_c00001{bottom:906.073140px;}
.y1b42_c00001{bottom:906.077400px;}
.y7e1_c00001{bottom:906.085110px;}
.y48a_c00001{bottom:906.614250px;}
.y48e_c00001{bottom:906.713250px;}
.y714_c00001{bottom:906.972600px;}
.y6d6_c00001{bottom:906.974250px;}
.y2c_c00001{bottom:907.154400px;}
.y1652_c00001{bottom:907.514400px;}
.yc32_c00001{bottom:907.605000px;}
.yd12_c00001{bottom:908.055120px;}
.y1a62_c00001{bottom:908.234250px;}
.y18a4_c00001{bottom:908.238900px;}
.y1afb_c00001{bottom:908.324250px;}
.yca2_c00001{bottom:909.584250px;}
.y194b_c00001{bottom:909.854400px;}
.y106a_c00001{bottom:909.943410px;}
.y1bed_c00001{bottom:909.944400px;}
.y1c1f_c00001{bottom:910.214400px;}
.y1575_c00001{bottom:910.406490px;}
.y41e_c00001{bottom:910.664400px;}
.yf6b_c00001{bottom:911.024400px;}
.y149c_c00001{bottom:911.024550px;}
.y5e1_c00001{bottom:911.294250px;}
.y2b4_c00001{bottom:911.834250px;}
.y1788_c00001{bottom:912.105000px;}
.y3d7_c00001{bottom:912.195000px;}
.yd60_c00001{bottom:912.284400px;}
.y96f_c00001{bottom:912.645000px;}
.ya6b_c00001{bottom:912.822000px;}
.ya8e_c00001{bottom:912.823500px;}
.ya96_c00001{bottom:912.825000px;}
.y14dd_c00001{bottom:912.914400px;}
.y17ff_c00001{bottom:913.094250px;}
.y1834_c00001{bottom:913.094400px;}
.y117_c00001{bottom:913.274250px;}
.yf96_c00001{bottom:913.634250px;}
.y1456_c00001{bottom:913.635300px;}
.yd7b_c00001{bottom:913.814400px;}
.y1ac8_c00001{bottom:914.174400px;}
.y13bd_c00001{bottom:914.265000px;}
.y630_c00001{bottom:914.444400px;}
.y68d_c00001{bottom:914.804400px;}
.yf3b_c00001{bottom:915.075000px;}
.ydab_c00001{bottom:915.434400px;}
.y134a_c00001{bottom:915.524850px;}
.y19b2_c00001{bottom:915.614250px;}
.y1540_c00001{bottom:915.707550px;}
.ye02_c00001{bottom:915.789810px;}
.ycdf_c00001{bottom:915.790470px;}
.y58f_c00001{bottom:915.793500px;}
.y1711_c00001{bottom:915.794250px;}
.y5c1_c00001{bottom:915.795000px;}
.yddb_c00001{bottom:915.797460px;}
.yfc0_c00001{bottom:915.969810px;}
.y1d3_c00001{bottom:916.062000px;}
.y73c_c00001{bottom:916.157640px;}
.y4e2_c00001{bottom:916.338900px;}
.ybc4_c00001{bottom:916.425000px;}
.y186a_c00001{bottom:916.602000px;}
.y1898_c00001{bottom:916.603500px;}
.y189c_c00001{bottom:916.605000px;}
.y1385_c00001{bottom:916.869900px;}
.y1afe_c00001{bottom:916.874400px;}
.yaf5_c00001{bottom:917.054400px;}
.y1085_c00001{bottom:917.231550px;}
.y1226_c00001{bottom:917.233410px;}
.y1ba0_c00001{bottom:917.324250px;}
.ya6a_c00001{bottom:917.324400px;}
.ye29_c00001{bottom:917.414400px;}
.y45f_c00001{bottom:917.504160px;}
.y41c_c00001{bottom:917.504400px;}
.yb8e_c00001{bottom:917.505840px;}
.y268_c00001{bottom:917.774250px;}
.y11b1_c00001{bottom:917.953500px;}
.y1911_c00001{bottom:917.958750px;}
.y1756_c00001{bottom:918.140520px;}
.y881_c00001{bottom:918.222000px;}
.y8ca_c00001{bottom:918.224970px;}
.y917_c00001{bottom:918.226260px;}
.y8cf_c00001{bottom:918.241440px;}
.y91c_c00001{bottom:918.242730px;}
.y1802_c00001{bottom:918.588900px;}
.y788_c00001{bottom:918.674400px;}
.y829_c00001{bottom:918.675000px;}
.y1384_c00001{bottom:918.761700px;}
.y6d2_c00001{bottom:918.762000px;}
.y713_c00001{bottom:918.763500px;}
.y14fc_c00001{bottom:918.764400px;}
.y727_c00001{bottom:918.765000px;}
.y13b2_c00001{bottom:918.765480px;}
.y9b6_c00001{bottom:918.945000px;}
.y153d_c00001{bottom:919.214400px;}
.yf53_c00001{bottom:919.574250px;}
.y168_c00001{bottom:919.931280px;}
.y7dd_c00001{bottom:919.934400px;}
.y1a8_c00001{bottom:919.935840px;}
.y1682_c00001{bottom:920.025000px;}
.y5e0_c00001{bottom:920.277780px;}
.y5d6_c00001{bottom:920.294250px;}
.y1346_c00001{bottom:920.384250px;}
.y1578_c00001{bottom:920.387550px;}
.y8d4_c00001{bottom:920.474250px;}
.y48d_c00001{bottom:920.478750px;}
.y921_c00001{bottom:920.482650px;}
.y1c2c_c00001{bottom:920.703720px;}
.yf4_c00001{bottom:920.831700px;}
.yaf_c00001{bottom:920.833140px;}
.ybc5_c00001{bottom:920.924400px;}
.y938_c00001{bottom:921.105000px;}
.y15b4_c00001{bottom:921.369990px;}
.y124a_c00001{bottom:921.461100px;}
.y106c_c00001{bottom:921.464400px;}
.y1611_c00001{bottom:921.554250px;}
.y21c_c00001{bottom:921.741990px;}
.y1452_c00001{bottom:921.914250px;}
.y18a3_c00001{bottom:922.004400px;}
.y1c7d_c00001{bottom:922.274250px;}
.y1837_c00001{bottom:922.364250px;}
.y12ef_c00001{bottom:922.454400px;}
.y1a31_c00001{bottom:922.458750px;}
.y13fb_c00001{bottom:922.634250px;}
.ya_c00001{bottom:922.634400px;}
.y190e_c00001{bottom:922.814400px;}
.y1c98_c00001{bottom:922.886220px;}
.y4e4_c00001{bottom:923.173770px;}
.y9b7_c00001{bottom:923.444400px;}
.y1aa4_c00001{bottom:923.714400px;}
.y314_c00001{bottom:923.894400px;}
.y11ce_c00001{bottom:924.704250px;}
.ye50_c00001{bottom:924.710370px;}
.yb0c_c00001{bottom:924.972000px;}
.yb2a_c00001{bottom:924.973500px;}
.yb2f_c00001{bottom:924.975000px;}
.ybf9_c00001{bottom:925.242000px;}
.yc20_c00001{bottom:925.243500px;}
.yc27_c00001{bottom:925.245000px;}
.y128c_c00001{bottom:925.422270px;}
.y1a64_c00001{bottom:925.422780px;}
.y10ff_c00001{bottom:925.423260px;}
.yed4_c00001{bottom:925.424400px;}
.y1bec_c00001{bottom:925.509900px;}
.y1c1e_c00001{bottom:925.779900px;}
.y10ae_c00001{bottom:926.052000px;}
.y10e1_c00001{bottom:926.053500px;}
.y10e4_c00001{bottom:926.055000px;}
.y1b3e_c00001{bottom:926.594400px;}
.y1758_c00001{bottom:926.772990px;}
.y16a_c00001{bottom:926.774250px;}
.y102b_c00001{bottom:926.863500px;}
.y1058_c00001{bottom:926.865000px;}
.y13c0_c00001{bottom:926.963250px;}
.y1455_c00001{bottom:927.400800px;}
.y153f_c00001{bottom:927.764400px;}
.yc55_c00001{bottom:927.765000px;}
.y19af_c00001{bottom:927.944400px;}
.yd11_c00001{bottom:928.214400px;}
.y3d6_c00001{bottom:928.757490px;}
.y1a61_c00001{bottom:928.934250px;}
.y16d4_c00001{bottom:928.934400px;}
.y1afa_c00001{bottom:929.024250px;}
.y1125_c00001{bottom:929.368560px;}
.y1147_c00001{bottom:929.385030px;}
.yab6_c00001{bottom:929.474250px;}
.ybf8_c00001{bottom:929.744250px;}
.y73b_c00001{bottom:929.923140px;}
.y73e_c00001{bottom:929.935110px;}
.y4e1_c00001{bottom:930.104400px;}
.y13eb_c00001{bottom:930.284400px;}
.y17b9_c00001{bottom:930.464250px;}
.y12ce_c00001{bottom:930.464400px;}
.y1651_c00001{bottom:930.554400px;}
.ya38_c00001{bottom:931.005000px;}
.y545_c00001{bottom:931.453500px;}
.y1910_c00001{bottom:931.724250px;}
.y1789_c00001{bottom:931.728750px;}
.y111_c00001{bottom:931.992000px;}
.y1337_c00001{bottom:932.084250px;}
.yc56_c00001{bottom:932.174400px;}
.y1104_c00001{bottom:932.175480px;}
.y591_c00001{bottom:932.264400px;}
.y1801_c00001{bottom:932.354400px;}
.y15ab_c00001{bottom:932.355000px;}
.y1577_c00001{bottom:932.444400px;}
.y1d6_c00001{bottom:932.533140px;}
.ye7c_c00001{bottom:932.895000px;}
.y1787_c00001{bottom:932.982630px;}
.yd50_c00001{bottom:932.984400px;}
.y45e_c00001{bottom:933.256680px;}
.y41b_c00001{bottom:933.260880px;}
.y683_c00001{bottom:933.525000px;}
.y1574_c00001{bottom:933.530370px;}
.y167_c00001{bottom:933.708750px;}
.y1a7_c00001{bottom:933.713310px;}
.y17fe_c00001{bottom:933.794250px;}
.y31a_c00001{bottom:933.974040px;}
.y48c_c00001{bottom:934.244250px;}
.y2eb_c00001{bottom:934.337310px;}
.y2b1_c00001{bottom:934.342140px;}
.yd7a_c00001{bottom:934.514400px;}
.y1ba2_c00001{bottom:934.517550px;}
.y15df_c00001{bottom:934.604400px;}
.yf3_c00001{bottom:934.692960px;}
.yae_c00001{bottom:934.694400px;}
.yf95_c00001{bottom:934.779660px;}
.y882_c00001{bottom:934.784400px;}
.y5db_c00001{bottom:935.133720px;}
.yef6_c00001{bottom:935.144400px;}
.y82c_c00001{bottom:935.231280px;}
.y6d4_c00001{bottom:935.233140px;}
.y1c2b_c00001{bottom:935.378940px;}
.ya39_c00001{bottom:935.504400px;}
.y21b_c00001{bottom:935.507490px;}
.ydda_c00001{bottom:935.594400px;}
.y3d8_c00001{bottom:935.684400px;}
.y19f1_c00001{bottom:935.769630px;}
.y19ad_c00001{bottom:935.957550px;}
.y1a30_c00001{bottom:936.314250px;}
.ydaa_c00001{bottom:936.579660px;}
.y18cd_c00001{bottom:936.584250px;}
.y13be_c00001{bottom:936.764400px;}
.y170e_c00001{bottom:936.765000px;}
.y1ac7_c00001{bottom:937.214400px;}
.yf3c_c00001{bottom:937.574400px;}
.ya69_c00001{bottom:937.575000px;}
.yb8d_c00001{bottom:937.665120px;}
.yb59_c00001{bottom:938.024250px;}
.y2b_c00001{bottom:938.204400px;}
.y8c9_c00001{bottom:938.384250px;}
.y916_c00001{bottom:938.385540px;}
.y8d3_c00001{bottom:938.400720px;}
.y920_c00001{bottom:938.402010px;}
.y1613_c00001{bottom:938.742780px;}
.y9fb_c00001{bottom:939.105000px;}
.y186e_c00001{bottom:939.107670px;}
.y1d7_c00001{bottom:939.464400px;}
.y197e_c00001{bottom:939.735000px;}
.y153c_c00001{bottom:939.914400px;}
.yea4_c00001{bottom:940.454250px;}
.y1496_c00001{bottom:940.544400px;}
.y1757_c00001{bottom:940.634250px;}
.y13bf_c00001{bottom:940.728750px;}
.y1beb_c00001{bottom:940.994400px;}
.y1c0d_c00001{bottom:940.998900px;}
.y1345_c00001{bottom:941.084250px;}
.y1755_c00001{bottom:941.264400px;}
.y8ce_c00001{bottom:941.365320px;}
.y91b_c00001{bottom:941.366610px;}
.y4a_c00001{bottom:941.442000px;}
.y114_c00001{bottom:941.624400px;}
.y13b1_c00001{bottom:941.628180px;}
.y1c5e_c00001{bottom:941.795400px;}
.y936_c00001{bottom:941.982000px;}
.y6d5_c00001{bottom:942.164400px;}
.y365_c00001{bottom:942.252000px;}
.y3a5_c00001{bottom:942.253500px;}
.y1610_c00001{bottom:942.254250px;}
.y3c0_c00001{bottom:942.255000px;}
.y21d_c00001{bottom:942.434400px;}
.y3d5_c00001{bottom:942.522990px;}
.y1684_c00001{bottom:942.530370px;}
.ycde_c00001{bottom:942.883620px;}
.y1c7c_c00001{bottom:942.974250px;}
.y190d_c00001{bottom:943.424400px;}
.y73a_c00001{bottom:943.784400px;}
.y786_c00001{bottom:944.325000px;}
.y1451_c00001{bottom:944.954250px;}
.y1786_c00001{bottom:945.134250px;}
.yab5_c00001{bottom:945.135000px;}
.y1aa7_c00001{bottom:945.312780px;}
.yca0_c00001{bottom:945.405000px;}
.y7d8_c00001{bottom:945.492000px;}
.y14db_c00001{bottom:945.587640px;}
.y1d5_c00001{bottom:946.394400px;}
.y1ba1_c00001{bottom:946.574400px;}
.y45d_c00001{bottom:947.117940px;}
.y41a_c00001{bottom:947.122140px;}
.y484_c00001{bottom:947.295000px;}
.y166_c00001{bottom:947.474250px;}
.y1a6_c00001{bottom:947.478810px;}
.yf1d_c00001{bottom:947.744250px;}
.ye51_c00001{bottom:947.746650px;}
.ye4f_c00001{bottom:947.834250px;}
.ybf6_c00001{bottom:947.835000px;}
.y549_c00001{bottom:947.927640px;}
.y14d8_c00001{bottom:947.930520px;}
.y19ac_c00001{bottom:948.014400px;}
.y2ea_c00001{bottom:948.102810px;}
.y1069_c00001{bottom:948.104400px;}
.y2b0_c00001{bottom:948.107640px;}
.y1100_c00001{bottom:948.466500px;}
.y1082_c00001{bottom:948.467400px;}
.y266_c00001{bottom:948.473400px;}
.y10af_c00001{bottom:948.554400px;}
.y82d_c00001{bottom:949.004400px;}
.y82b_c00001{bottom:949.008750px;}
.y6d3_c00001{bottom:949.094400px;}
.y21a_c00001{bottom:949.272990px;}
.y1030_c00001{bottom:949.360440px;}
.y1753_c00001{bottom:949.367550px;}
.y1499_c00001{bottom:949.461990px;}
.y1a60_c00001{bottom:949.634250px;}
.y16d3_c00001{bottom:949.634400px;}
.y1af9_c00001{bottom:949.724250px;}
.y1c2a_c00001{bottom:950.054160px;}
.y68b_c00001{bottom:950.092140px;}
.y1612_c00001{bottom:950.894400px;}
.y15d6_c00001{bottom:950.985000px;}
.ybf7_c00001{bottom:952.334250px;}
.yf6a_c00001{bottom:952.424400px;}
.y1686_c00001{bottom:952.512780px;}
.y30f_c00001{bottom:952.782000px;}
.y1639_c00001{bottom:952.871520px;}
.y1607_c00001{bottom:952.874400px;}
.yaf4_c00001{bottom:952.875000px;}
.y1646_c00001{bottom:952.882050px;}
.y13fc_c00001{bottom:953.504250px;}
.y12e9_c00001{bottom:953.504400px;}
.y19e4_c00001{bottom:953.684250px;}
.y9_c00001{bottom:953.684400px;}
.y14f8_c00001{bottom:953.774400px;}
.y787_c00001{bottom:953.954250px;}
.y96d_c00001{bottom:954.402000px;}
.y99d_c00001{bottom:954.403500px;}
.y9a4_c00001{bottom:954.405000px;}
.yf94_c00001{bottom:954.494250px;}
.y5d2_c00001{bottom:954.495000px;}
.y15b0_c00001{bottom:954.854400px;}
.y2ec_c00001{bottom:955.033440px;}
.y2b2_c00001{bottom:955.038270px;}
.y1225_c00001{bottom:955.394400px;}
.ye80_c00001{bottom:955.397670px;}
.yad_c00001{bottom:955.398900px;}
.yf2_c00001{bottom:955.401060px;}
.y11f9_c00001{bottom:955.402950px;}
.y189e_c00001{bottom:955.575000px;}
.yd79_c00001{bottom:955.664400px;}
.y4dc_c00001{bottom:955.752000px;}
.y523_c00001{bottom:955.753500px;}
.y537_c00001{bottom:955.755000px;}
.y1710_c00001{bottom:956.292990px;}
.yda9_c00001{bottom:956.294250px;}
.y3d4_c00001{bottom:956.384250px;}
.y1be3_c00001{bottom:956.564400px;}
.ye01_c00001{bottom:956.567310px;}
.ydd9_c00001{bottom:956.649660px;}
.y1573_c00001{bottom:956.654250px;}
.yfbf_c00001{bottom:956.829660px;}
.y19f0_c00001{bottom:956.924400px;}
.y1c5d_c00001{bottom:957.279900px;}
.y18cc_c00001{bottom:957.284250px;}
.y1aa6_c00001{bottom:957.464400px;}
.ybc3_c00001{bottom:957.465000px;}
.yb8c_c00001{bottom:957.824400px;}
.y1836_c00001{bottom:958.368750px;}
.y1681_c00001{bottom:958.544250px;}
.y1699_c00001{bottom:958.545510px;}
.y1b9f_c00001{bottom:958.724250px;}
.y9b5_c00001{bottom:959.262000px;}
.y9e4_c00001{bottom:959.263500px;}
.y170f_c00001{bottom:959.264400px;}
.y9ec_c00001{bottom:959.265000px;}
.y14da_c00001{bottom:959.353140px;}
.y162_c00001{bottom:959.355000px;}
.y1870_c00001{bottom:959.358900px;}
.y1124_c00001{bottom:959.607480px;}
.y1146_c00001{bottom:959.623950px;}
.y10d_c00001{bottom:960.343500px;}
.y1081_c00001{bottom:960.524250px;}
.ye28_c00001{bottom:960.703260px;}
.y45c_c00001{bottom:960.883440px;}
.y419_c00001{bottom:960.887640px;}
.yf52_c00001{bottom:960.974250px;}
.y1495_c00001{bottom:961.244400px;}
.y164f_c00001{bottom:961.329630px;}
.y12cd_c00001{bottom:961.334400px;}
.y1752_c00001{bottom:961.424400px;}
.y54a_c00001{bottom:961.784400px;}
.y548_c00001{bottom:961.788900px;}
.y58e_c00001{bottom:961.877640px;}
.y5b8_c00001{bottom:961.879470px;}
.y2e9_c00001{bottom:961.964070px;}
.y2af_c00001{bottom:961.968900px;}
.y7da_c00001{bottom:962.058900px;}
.y914_c00001{bottom:962.231250px;}
.y186d_c00001{bottom:962.231550px;}
.y8c8_c00001{bottom:962.234100px;}
.y8c4_c00001{bottom:962.235840px;}
.y197f_c00001{bottom:962.237670px;}
.y265_c00001{bottom:962.238900px;}
.ya68_c00001{bottom:962.325000px;}
.y1103_c00001{bottom:962.414400px;}
.y1380_c00001{bottom:962.415000px;}
.y82a_c00001{bottom:962.774250px;}
.y934_c00001{bottom:962.865000px;}
.y160f_c00001{bottom:962.954250px;}
.y133d_c00001{bottom:962.955000px;}
.y15dc_c00001{bottom:963.063480px;}
.y219_c00001{bottom:963.134250px;}
.y1498_c00001{bottom:963.227490px;}
.y128e_c00001{bottom:963.494250px;}
.y128b_c00001{bottom:963.583260px;}
.y10fe_c00001{bottom:963.584250px;}
.y1c7b_c00001{bottom:963.674250px;}
.ya1d_c00001{bottom:963.674400px;}
.y68a_c00001{bottom:963.857640px;}
.y488_c00001{bottom:963.862140px;}
.yd3a_c00001{bottom:964.124250px;}
.y1c29_c00001{bottom:964.633620px;}
.y1685_c00001{bottom:964.664400px;}
.yd0f_c00001{bottom:964.755000px;}
.yab3_c00001{bottom:965.203500px;}
.yae5_c00001{bottom:965.205000px;}
.y4dd_c00001{bottom:965.384250px;}
.y16d6_c00001{bottom:965.478840px;}
.y1683_c00001{bottom:965.654250px;}
.y1249_c00001{bottom:966.643530px;}
.ya67_c00001{bottom:966.824400px;}
.y1b40_c00001{bottom:966.829800px;}
.y935_c00001{bottom:967.364250px;}
.y19ab_c00001{bottom:967.455000px;}
.yc54_c00001{bottom:967.995000px;}
.y1ac6_c00001{bottom:968.084400px;}
.y7db_c00001{bottom:968.984400px;}
.yac_c00001{bottom:969.164400px;}
.yf1_c00001{bottom:969.166560px;}
.y2a_c00001{bottom:969.254400px;}
.y734_c00001{bottom:969.345000px;}
.yab4_c00001{bottom:969.704250px;}
.y189d_c00001{bottom:969.794250px;}
.ycdd_c00001{bottom:969.877950px;}
.yc9f_c00001{bottom:969.974250px;}
.y1a5f_c00001{bottom:970.334250px;}
.y153a_c00001{bottom:970.334400px;}
.yc31_c00001{bottom:970.515000px;}
.y68c_c00001{bottom:970.784400px;}
.y14d7_c00001{bottom:971.054400px;}
.ya37_c00001{bottom:971.325000px;}
.y1c0c_c00001{bottom:971.778900px;}
.y1d0_c00001{bottom:971.953500px;}
.y1948_c00001{bottom:971.959050px;}
.y1bea_c00001{bottom:972.044400px;}
.y1be2_c00001{bottom:972.048900px;}
.y1af4_c00001{bottom:972.314250px;}
.y1b2b_c00001{bottom:972.314700px;}
.y3d3_c00001{bottom:972.404250px;}
.y782_c00001{bottom:972.675000px;}
.y1c5c_c00001{bottom:972.764400px;}
.yaf2_c00001{bottom:973.032000px;}
.y144d_c00001{bottom:973.034400px;}
.y186f_c00001{bottom:973.124400px;}
.y18cf_c00001{bottom:973.128900px;}
.y14d9_c00001{bottom:973.214400px;}
.y1835_c00001{bottom:973.574400px;}
.yb58_c00001{bottom:973.755000px;}
.yb8b_c00001{bottom:974.205000px;}
.yd4f_c00001{bottom:974.384400px;}
.y45b_c00001{bottom:974.648940px;}
.y6ca_c00001{bottom:974.652000px;}
.y418_c00001{bottom:974.653140px;}
.y712_c00001{bottom:974.653500px;}
.y726_c00001{bottom:974.655000px;}
.yd78_c00001{bottom:975.374400px;}
.y5d5_c00001{bottom:975.375000px;}
.y547_c00001{bottom:975.554400px;}
.yf93_c00001{bottom:975.639810px;}
.y58d_c00001{bottom:975.643140px;}
.y5b7_c00001{bottom:975.644970px;}
.y2e8_c00001{bottom:975.729570px;}
.y2ae_c00001{bottom:975.734400px;}
.y164_c00001{bottom:975.823140px;}
.y7d9_c00001{bottom:975.824400px;}
.y264_c00001{bottom:976.004400px;}
.y17f8_c00001{bottom:976.273500px;}
.y182b_c00001{bottom:976.275000px;}
.ydd8_c00001{bottom:976.364250px;}
.yfbe_c00001{bottom:976.544250px;}
.y10f_c00001{bottom:976.904250px;}
.y62d_c00001{bottom:977.082000px;}
.y66b_c00001{bottom:977.083500px;}
.y67e_c00001{bottom:977.085000px;}
.y1497_c00001{bottom:977.088750px;}
.y153b_c00001{bottom:977.177550px;}
.y49_c00001{bottom:977.354250px;}
.y30e_c00001{bottom:977.355120px;}
.yda8_c00001{bottom:977.357310px;}
.y6d0_c00001{bottom:977.456490px;}
.yaf3_c00001{bottom:977.534400px;}
.y689_c00001{bottom:977.623140px;}
.y487_c00001{bottom:977.627640px;}
.y12ad_c00001{bottom:977.719530px;}
.y1bda_c00001{bottom:977.804400px;}
.y18cb_c00001{bottom:977.984250px;}
.y18a1_c00001{bottom:978.077820px;}
.ye7f_c00001{bottom:978.620370px;}
.y11f8_c00001{bottom:978.625650px;}
.yb8a_c00001{bottom:978.704250px;}
.y1b3f_c00001{bottom:978.886650px;}
.y96e_c00001{bottom:978.974250px;}
.y5d1_c00001{bottom:979.147320px;}
.y1c28_c00001{bottom:979.308840px;}
.y170d_c00001{bottom:979.334250px;}
.y9b4_c00001{bottom:979.335000px;}
.y16d5_c00001{bottom:979.340100px;}
.y1c97_c00001{bottom:979.855950px;}
.ye9b_c00001{bottom:979.965000px;}
.y1af6_c00001{bottom:980.144250px;}
.ya9e_c00001{bottom:980.145000px;}
.y362_c00001{bottom:980.235000px;}
.y1248_c00001{bottom:980.416770px;}
.y313_c00001{bottom:980.504400px;}
.y1a2d_c00001{bottom:980.597820px;}
.ybc0_c00001{bottom:980.863500px;}
.y19dd_c00001{bottom:981.402330px;}
.y19aa_c00001{bottom:981.407460px;}
.y1494_c00001{bottom:981.944400px;}
.y1383_c00001{bottom:982.038900px;}
.y1450_c00001{bottom:982.043400px;}
.y913_c00001{bottom:982.390530px;}
.y8c3_c00001{bottom:982.395120px;}
.y1981_c00001{bottom:982.483140px;}
.y164e_c00001{bottom:982.484400px;}
.y165_c00001{bottom:982.754400px;}
.yf1c_c00001{bottom:982.934400px;}
.y4db_c00001{bottom:984.102000px;}
.y522_c00001{bottom:984.103500px;}
.y536_c00001{bottom:984.105000px;}
.y140e_c00001{bottom:984.554400px;}
.y489_c00001{bottom:984.558270px;}
.y19e3_c00001{bottom:984.734250px;}
.y8_c00001{bottom:984.734400px;}
.yd39_c00001{bottom:984.824250px;}
.y14f7_c00001{bottom:984.824400px;}
.y13ba_c00001{bottom:984.914250px;}
.y1382_c00001{bottom:984.914400px;}
.y8c6_c00001{bottom:985.095000px;}
.ya6_c00001{bottom:985.183500px;}
.yfa_c00001{bottom:985.185000px;}
.ybc2_c00001{bottom:985.364970px;}
.yb0a_c00001{bottom:985.365000px;}
.ybbf_c00001{bottom:985.366560px;}
.y186c_c00001{bottom:985.454250px;}
.y1341_c00001{bottom:985.460370px;}
.yc9e_c00001{bottom:985.635000px;}
.y3d1_c00001{bottom:985.815000px;}
.y737_c00001{bottom:985.907640px;}
.y15db_c00001{bottom:986.187360px;}
.ya66_c00001{bottom:986.262000px;}
.ya8d_c00001{bottom:986.263500px;}
.ya95_c00001{bottom:986.265000px;}
.y18ce_c00001{bottom:986.894400px;}
.y1c0b_c00001{bottom:987.344400px;}
.y102f_c00001{bottom:987.521430px;}
.y1be9_c00001{bottom:987.609900px;}
.y1be1_c00001{bottom:987.614400px;}
.y1063_c00001{bottom:987.705000px;}
.yaa_c00001{bottom:987.887640px;}
.y1a5b_c00001{bottom:988.154250px;}
.y1c5b_c00001{bottom:988.329900px;}
.y823_c00001{bottom:988.422000px;}
.y86a_c00001{bottom:988.423500px;}
.y877_c00001{bottom:988.425000px;}
.y45a_c00001{bottom:988.510200px;}
.y417_c00001{bottom:988.514400px;}
.y215_c00001{bottom:988.692000px;}
.y24c_c00001{bottom:988.693500px;}
.y255_c00001{bottom:988.695000px;}
.ybf5_c00001{bottom:988.875000px;}
.y1ac5_c00001{bottom:989.144400px;}
.y784_c00001{bottom:989.238900px;}
.y58c_c00001{bottom:989.504400px;}
.y5b6_c00001{bottom:989.506230px;}
.y163_c00001{bottom:989.684400px;}
.yef4_c00001{bottom:989.773500px;}
.yf19_c00001{bottom:989.775000px;}
.y1123_c00001{bottom:989.846400px;}
.y1145_c00001{bottom:989.862870px;}
.yb0b_c00001{bottom:989.864250px;}
.ye81_c00001{bottom:990.044250px;}
.y259_c00001{bottom:990.225000px;}
.y1a2f_c00001{bottom:990.587550px;}
.yc52_c00001{bottom:990.675000px;}
.ya65_c00001{bottom:990.764400px;}
.y1650_c00001{bottom:990.939990px;}
.y1539_c00001{bottom:991.034400px;}
.y6cf_c00001{bottom:991.221990px;}
.y688_c00001{bottom:991.484400px;}
.y486_c00001{bottom:991.488900px;}
.y827_c00001{bottom:991.667490px;}
.y1b9d_c00001{bottom:991.844250px;}
.yd0e_c00001{bottom:991.845000px;}
.y1bcc_c00001{bottom:991.849170px;}
.y17b8_c00001{bottom:992.564250px;}
.y1102_c00001{bottom:992.564400px;}
.y1aa2_c00001{bottom:993.191700px;}
.yb46_c00001{bottom:993.195000px;}
.y160c_c00001{bottom:993.464400px;}
.y144c_c00001{bottom:993.734400px;}
.yf69_c00001{bottom:993.824400px;}
.y1c27_c00001{bottom:993.984060px;}
.y1247_c00001{bottom:994.274250px;}
.y1bd6_c00001{bottom:994.275000px;}
.y1750_c00001{bottom:994.721550px;}
.y11ac_c00001{bottom:994.995000px;}
.yd5f_c00001{bottom:995.084400px;}
.yc53_c00001{bottom:995.174400px;}
.yf92_c00001{bottom:995.354400px;}
.y1832_c00001{bottom:995.355000px;}
.y96a_c00001{bottom:995.442000px;}
.y99c_c00001{bottom:995.443500px;}
.y9a3_c00001{bottom:995.445000px;}
.y2e7_c00001{bottom:995.527950px;}
.y2ad_c00001{bottom:995.533140px;}
.y144f_c00001{bottom:995.808900px;}
.y785_c00001{bottom:996.074400px;}
.yd77_c00001{bottom:996.164400px;}
.y1980_c00001{bottom:996.344400px;}
.ycdc_c00001{bottom:996.971100px;}
.yda7_c00001{bottom:997.154250px;}
.y1af8_c00001{bottom:997.339950px;}
.ye00_c00001{bottom:997.509660px;}
.y30d_c00001{bottom:997.514400px;}
.ydd7_c00001{bottom:997.517310px;}
.yfbd_c00001{bottom:997.689660px;}
.y216_c00001{bottom:998.324400px;}
.yb57_c00001{bottom:998.414400px;}
.y18a2_c00001{bottom:998.418900px;}
.y4d9_c00001{bottom:998.595000px;}
.y18ca_c00001{bottom:998.684250px;}
.y1344_c00001{bottom:998.777490px;}
.y17fc_c00001{bottom:998.777820px;}
.ye27_c00001{bottom:998.864250px;}
.y1708_c00001{bottom:998.865000px;}
.y5d3_c00001{bottom:999.222000px;}
.y5d0_c00001{bottom:999.224250px;}
.y311_c00001{bottom:999.315000px;}
.y9fa_c00001{bottom:999.492000px;}
.ya29_c00001{bottom:999.493500px;}
.ya2e_c00001{bottom:999.495000px;}
.y736_c00001{bottom:999.673140px;}
.y738_c00001{bottom:999.674400px;}
.y96c_c00001{bottom:999.944400px;}
.yb89_c00001{bottom:999.945000px;}
.y9b3_c00001{bottom:1000.302000px;}
.y9e3_c00001{bottom:1000.303500px;}
.y29_c00001{bottom:1000.304400px;}
.y9eb_c00001{bottom:1000.305000px;}
.y1a2a_c00001{bottom:1000.664400px;}
.y13bc_c00001{bottom:1000.750740px;}
.y12ae_c00001{bottom:1000.754400px;}
.y12ac_c00001{bottom:1000.843410px;}
.y1947_c00001{bottom:1000.844250px;}
.y1a5c_c00001{bottom:1000.844400px;}
.ya9c_c00001{bottom:1001.025000px;}
.y15af_c00001{bottom:1001.204250px;}
.y415_c00001{bottom:1001.205000px;}
.y18a0_c00001{bottom:1001.300520px;}
.y4da_c00001{bottom:1001.384250px;}
.y7d4_c00001{bottom:1001.475000px;}
.y11fa_c00001{bottom:1001.654250px;}
.ye7e_c00001{bottom:1001.744250px;}
.ya9_c00001{bottom:1001.748900px;}
.y11cc_c00001{bottom:1001.749530px;}
.y3d2_c00001{bottom:1002.284400px;}
.yea0_c00001{bottom:1002.461430px;}
.y912_c00001{bottom:1002.549810px;}
.y8c2_c00001{bottom:1002.554400px;}
.y10b_c00001{bottom:1002.555000px;}
.y1a2e_c00001{bottom:1002.644400px;}
.yf51_c00001{bottom:1002.734400px;}
.y1be6_c00001{bottom:1002.824400px;}
.y1c0a_c00001{bottom:1002.828900px;}
.y783_c00001{bottom:1003.004400px;}
.y1be8_c00001{bottom:1003.094400px;}
.y1be0_c00001{bottom:1003.098900px;}
.y10ac_c00001{bottom:1003.185000px;}
.y1c1d_c00001{bottom:1003.364400px;}
.y1c5a_c00001{bottom:1003.544400px;}
.y190a_c00001{bottom:1003.634400px;}
.y1a2c_c00001{bottom:1003.721700px;}
.y19dc_c00001{bottom:1004.169270px;}
.y19a9_c00001{bottom:1004.174400px;}
.yb88_c00001{bottom:1004.444400px;}
.y6ce_c00001{bottom:1004.987490px;}
.y1c7a_c00001{bottom:1005.074250px;}
.y485_c00001{bottom:1005.254400px;}
.y826_c00001{bottom:1005.432990px;}
.ya9d_c00001{bottom:1005.524250px;}
.yb38_c00001{bottom:1005.525000px;}
.ybbe_c00001{bottom:1005.525840px;}
.y13b9_c00001{bottom:1005.614250px;}
.y14d6_c00001{bottom:1005.707490px;}
.yab2_c00001{bottom:1006.242000px;}
.yadd_c00001{bottom:1006.243500px;}
.yae4_c00001{bottom:1006.245000px;}
.y260_c00001{bottom:1006.807620px;}
.y10ab_c00001{bottom:1007.234400px;}
.y1571_c00001{bottom:1007.594250px;}
.y15a2_c00001{bottom:1007.594760px;}
.y14d3_c00001{bottom:1008.050520px;}
.yc9d_c00001{bottom:1008.315000px;}
.yab_c00001{bottom:1008.583770px;}
.y1340_c00001{bottom:1008.584250px;}
.y1c26_c00001{bottom:1008.659280px;}
.y190c_c00001{bottom:1009.128900px;}
.y15da_c00001{bottom:1009.311240px;}
.y2e6_c00001{bottom:1009.389210px;}
.y2ac_c00001{bottom:1009.394400px;}
.y1af7_c00001{bottom:1009.396800px;}
.y144e_c00001{bottom:1009.574400px;}
.y121d_c00001{bottom:1010.023500px;}
.y1244_c00001{bottom:1010.025000px;}
.y1065_c00001{bottom:1010.203260px;}
.ya64_c00001{bottom:1010.293500px;}
.ya94_c00001{bottom:1010.295000px;}
.y915_c00001{bottom:1010.471880px;}
.y8c5_c00001{bottom:1010.476470px;}
.y164b_c00001{bottom:1010.564400px;}
.y416_c00001{bottom:1010.834250px;}
.ya35_c00001{bottom:1011.555000px;}
.y16d2_c00001{bottom:1011.734400px;}
.y6d1_c00001{bottom:1011.930090px;}
.y10c_c00001{bottom:1012.184400px;}
.yef5_c00001{bottom:1012.274250px;}
.ybf3_c00001{bottom:1012.275000px;}
.y828_c00001{bottom:1012.363620px;}
.y1343_c00001{bottom:1012.542990px;}
.y1b9c_c00001{bottom:1012.904250px;}
.y1bcb_c00001{bottom:1012.909170px;}
.y735_c00001{bottom:1013.534400px;}
.yaf1_c00001{bottom:1014.072000px;}
.y160b_c00001{bottom:1014.164400px;}
.y144b_c00001{bottom:1014.434400px;}
.y13bb_c00001{bottom:1014.612000px;}
.ya63_c00001{bottom:1014.794250px;}
.y62a_c00001{bottom:1015.065000px;}
.y1493_c00001{bottom:1015.428090px;}
.ya8_c00001{bottom:1015.514400px;}
.y12e2_c00001{bottom:1015.604400px;}
.y19ed_c00001{bottom:1015.784250px;}
.y7_c00001{bottom:1015.784400px;}
.ya36_c00001{bottom:1016.054400px;}
.y361_c00001{bottom:1016.144400px;}
.y1833_c00001{bottom:1016.414400px;}
.yf91_c00001{bottom:1016.499810px;}
.y1680_c00001{bottom:1016.597400px;}
.y1bd7_c00001{bottom:1016.773410px;}
.ye26_c00001{bottom:1016.773500px;}
.y11ab_c00001{bottom:1016.775000px;}
.ybf2_c00001{bottom:1016.775120px;}
.y1490_c00001{bottom:1016.864250px;}
.y211_c00001{bottom:1017.043500px;}
.y254_c00001{bottom:1017.045000px;}
.yd76_c00001{bottom:1017.219810px;}
.ydff_c00001{bottom:1017.224250px;}
.ydd6_c00001{bottom:1017.314250px;}
.yfbc_c00001{bottom:1017.404250px;}
.y11af_c00001{bottom:1017.498540px;}
.y174f_c00001{bottom:1017.584250px;}
.y543_c00001{bottom:1017.682140px;}
.y7d6_c00001{bottom:1018.038900px;}
.yda6_c00001{bottom:1018.299810px;}
.y1c09_c00001{bottom:1018.394400px;}
.y1a4_c00001{bottom:1018.486410px;}
.y160_c00001{bottom:1018.491990px;}
.y1bdf_c00001{bottom:1018.664400px;}
.y6cd_c00001{bottom:1018.848750px;}
.yd0d_c00001{bottom:1018.933500px;}
.yd32_c00001{bottom:1018.935000px;}
.y17fd_c00001{bottom:1019.022990px;}
.y58b_c00001{bottom:1019.024250px;}
.y1cc_c00001{bottom:1019.032140px;}
.y825_c00001{bottom:1019.294250px;}
.y18c9_c00001{bottom:1019.384250px;}
.y14d5_c00001{bottom:1019.568750px;}
.ya1b_c00001{bottom:1019.655000px;}
.yf3a_c00001{bottom:1019.743260px;}
.y1122_c00001{bottom:1020.002970px;}
.y1144_c00001{bottom:1020.019440px;}
.y1831_c00001{bottom:1020.371700px;}
.y9f9_c00001{bottom:1020.375000px;}
.y25f_c00001{bottom:1020.573120px;}
.y9b2_c00001{bottom:1021.185000px;}
.y170a_c00001{bottom:1021.363260px;}
.y1946_c00001{bottom:1021.544250px;}
.y1536_c00001{bottom:1021.544400px;}
.y17fb_c00001{bottom:1022.000520px;}
.y190b_c00001{bottom:1022.894400px;}
.y5cc_c00001{bottom:1023.075000px;}
.y1530_c00001{bottom:1023.164400px;}
.y1c25_c00001{bottom:1023.238740px;}
.y17b7_c00001{bottom:1023.614250px;}
.yf50_c00001{bottom:1023.614400px;}
.ycdb_c00001{bottom:1024.064250px;}
.y1909_c00001{bottom:1024.334400px;}
.y189f_c00001{bottom:1024.424400px;}
.y11cd_c00001{bottom:1024.784400px;}
.ye4d_c00001{bottom:1024.873410px;}
.y7d7_c00001{bottom:1024.874400px;}
.y1866_c00001{bottom:1024.965000px;}
.y102e_c00001{bottom:1025.682420px;}
.yb36_c00001{bottom:1025.683500px;}
.y9b1_c00001{bottom:1025.684400px;}
.ybb7_c00001{bottom:1025.685000px;}
.y13b8_c00001{bottom:1026.314250px;}
.y1342_c00001{bottom:1026.404250px;}
.yb09_c00001{bottom:1026.405000px;}
.y933_c00001{bottom:1026.409800px;}
.y1865_c00001{bottom:1026.497550px;}
.y1a2b_c00001{bottom:1026.944400px;}
.y4d7_c00001{bottom:1026.945000px;}
.y309_c00001{bottom:1027.028190px;}
.y30c_c00001{bottom:1027.034400px;}
.yab1_c00001{bottom:1027.125000px;}
.y3cf_c00001{bottom:1027.935000px;}
.y1a5e_c00001{bottom:1028.390850px;}
.y781_c00001{bottom:1028.652000px;}
.y7c5_c00001{bottom:1028.653500px;}
.y1570_c00001{bottom:1028.654250px;}
.y15a1_c00001{bottom:1028.654760px;}
.y7c7_c00001{bottom:1028.655000px;}
.y1492_c00001{bottom:1029.289350px;}
.y411_c00001{bottom:1029.555000px;}
.y167f_c00001{bottom:1029.734400px;}
.yb37_c00001{bottom:1030.184400px;}
.y2e5_c00001{bottom:1030.456410px;}
.y2ab_c00001{bottom:1030.457490px;}
.y109_c00001{bottom:1030.905000px;}
.y1ac4_c00001{bottom:1031.084250px;}
.y14d2_c00001{bottom:1031.174400px;}
.y164a_c00001{bottom:1031.264400px;}
.y910_c00001{bottom:1031.350020px;}
.y8c1_c00001{bottom:1031.354400px;}
.y8be_c00001{bottom:1031.355840px;}
.y160e_c00001{bottom:1031.361750px;}
.y542_c00001{bottom:1031.543400px;}
.yab0_c00001{bottom:1031.624400px;}
.y133f_c00001{bottom:1031.714400px;}
.yc50_c00001{bottom:1031.715000px;}
.y7d5_c00001{bottom:1031.804400px;}
.y1a3_c00001{bottom:1032.347670px;}
.y15f_c00001{bottom:1032.353250px;}
.y1b98_c00001{bottom:1032.433500px;}
.y1bd3_c00001{bottom:1032.435000px;}
.y1221_c00001{bottom:1032.519180px;}
.y15d9_c00001{bottom:1032.533940px;}
.y6cc_c00001{bottom:1032.614250px;}
.y1a9e_c00001{bottom:1032.795000px;}
.yc9c_c00001{bottom:1032.884250px;}
.ycc9_c00001{bottom:1032.888090px;}
.y1cb_c00001{bottom:1032.893400px;}
.y1066_c00001{bottom:1033.244250px;}
.y14d4_c00001{bottom:1033.334250px;}
.yb45_c00001{bottom:1033.425000px;}
.y213_c00001{bottom:1033.608900px;}
.y686_c00001{bottom:1033.612140px;}
.y1bd9_c00001{bottom:1034.232630px;}
.ya62_c00001{bottom:1034.322000px;}
.y15b2_c00001{bottom:1034.322630px;}
.ya8c_c00001{bottom:1034.323500px;}
.ya93_c00001{bottom:1034.325000px;}
.y25e_c00001{bottom:1034.338620px;}
.y1c1c_c00001{bottom:1034.414400px;}
.y160a_c00001{bottom:1034.864400px;}
.yaf0_c00001{bottom:1034.955000px;}
.yf68_c00001{bottom:1035.224400px;}
.yc51_c00001{bottom:1036.214400px;}
.yd5e_c00001{bottom:1036.484400px;}
.y4d8_c00001{bottom:1036.574400px;}
.y1c96_c00001{bottom:1036.743330px;}
.y1289_c00001{bottom:1036.844400px;}
.yd75_c00001{bottom:1036.934250px;}
.ybf1_c00001{bottom:1036.934400px;}
.y1031_c00001{bottom:1037.114250px;}
.y170c_c00001{bottom:1037.472990px;}
.y1c24_c00001{bottom:1037.913960px;}
.yda5_c00001{bottom:1038.014400px;}
.y544_c00001{bottom:1038.374400px;}
.ydfe_c00001{bottom:1038.377460px;}
.ydd5_c00001{bottom:1038.459810px;}
.yfbb_c00001{bottom:1038.549810px;}
.y1864_c00001{bottom:1038.554400px;}
.y1538_c00001{bottom:1038.737400px;}
.ya61_c00001{bottom:1038.824400px;}
.y1707_c00001{bottom:1038.827400px;}
.y12ab_c00001{bottom:1039.004400px;}
.y1a5_c00001{bottom:1039.182540px;}
.y161_c00001{bottom:1039.188120px;}
.y1cd_c00001{bottom:1039.724250px;}
.y969_c00001{bottom:1040.162250px;}
.y1a5d_c00001{bottom:1040.447700px;}
.ya19_c00001{bottom:1040.532000px;}
.ya28_c00001{bottom:1040.533500px;}
.y214_c00001{bottom:1040.534400px;}
.ya2d_c00001{bottom:1040.535000px;}
.ye9f_c00001{bottom:1040.622420px;}
.ya1_c00001{bottom:1041.165000px;}
.y9f7_c00001{bottom:1041.343500px;}
.y1535_c00001{bottom:1042.244400px;}
.y1491_c00001{bottom:1043.054850px;}
.y77f_c00001{bottom:1043.145000px;}
.y1830_c00001{bottom:1043.234400px;}
.y160d_c00001{bottom:1043.418600px;}
.y4d6_c00001{bottom:1043.504400px;}
.y521_c00001{bottom:1043.509440px;}
.y15de_c00001{bottom:1043.687400px;}
.y1a9d_c00001{bottom:1044.134400px;}
.y137f_c00001{bottom:1044.313140px;}
.y2e4_c00001{bottom:1044.317670px;}
.y2aa_c00001{bottom:1044.318750px;}
.y148f_c00001{bottom:1044.404250px;}
.y3d0_c00001{bottom:1044.494250px;}
.y732_c00001{bottom:1044.592140px;}
.y589_c00001{bottom:1044.675000px;}
.ya1a_c00001{bottom:1045.034400px;}
.y17fa_c00001{bottom:1045.124400px;}
.y541_c00001{bottom:1045.308900px;}
.y81c_c00001{bottom:1045.392000px;}
.y868_c00001{bottom:1045.393500px;}
.y875_c00001{bottom:1045.395000px;}
.y30b_c00001{bottom:1045.755000px;}
.yd0c_c00001{bottom:1046.025000px;}
.y1a2_c00001{bottom:1046.113170px;}
.y412_c00001{bottom:1046.114250px;}
.y15e_c00001{bottom:1046.118750px;}
.y1bd8_c00001{bottom:1046.384250px;}
.y15b1_c00001{bottom:1046.474250px;}
.y12ee_c00001{bottom:1046.654400px;}
.y1ca_c00001{bottom:1046.658900px;}
.y1404_c00001{bottom:1046.834250px;}
.y6_c00001{bottom:1046.834400px;}
.y174c_c00001{bottom:1047.014400px;}
.y308_c00001{bottom:1047.105120px;}
.y1bdb_c00001{bottom:1047.195000px;}
.yb07_c00001{bottom:1047.282000px;}
.yb29_c00001{bottom:1047.283500px;}
.yb2e_c00001{bottom:1047.285000px;}
.y137e_c00001{bottom:1047.290520px;}
.y10a_c00001{bottom:1047.374400px;}
.y482_c00001{bottom:1047.377640px;}
.y15ae_c00001{bottom:1047.464400px;}
.y1867_c00001{bottom:1047.473940px;}
.y5ce_c00001{bottom:1047.734400px;}
.y5cb_c00001{bottom:1047.735120px;}
.y144a_c00001{bottom:1048.007940px;}
.y13b5_c00001{bottom:1048.185000px;}
.y821_c00001{bottom:1048.191990px;}
.y25d_c00001{bottom:1048.199880px;}
.y1064_c00001{bottom:1048.364250px;}
.y1ac3_c00001{bottom:1048.995000px;}
.yc9a_c00001{bottom:1049.355000px;}
.y1447_c00001{bottom:1049.444400px;}
.y1c1a_c00001{bottom:1049.984400px;}
.y1121_c00001{bottom:1050.241890px;}
.y1143_c00001{bottom:1050.258360px;}
.y1c57_c00001{bottom:1050.429900px;}
.yd0b_c00001{bottom:1050.524250px;}
.y1537_c00001{bottom:1050.794250px;}
.y1706_c00001{bottom:1050.884250px;}
.y629_c00001{bottom:1050.974400px;}
.ycda_c00001{bottom:1051.154250px;}
.y170b_c00001{bottom:1051.334250px;}
.y5cf_c00001{bottom:1051.424400px;}
.yb87_c00001{bottom:1051.425000px;}
.y90f_c00001{bottom:1051.509300px;}
.y8bd_c00001{bottom:1051.515120px;}
.y1649_c00001{bottom:1051.964400px;}
.y911_c00001{bottom:1052.322150px;}
.y8c0_c00001{bottom:1052.324100px;}
.y1c23_c00001{bottom:1052.589180px;}
.ya34_c00001{bottom:1052.595000px;}
.y780_c00001{bottom:1052.774250px;}
.y1b9b_c00001{bottom:1053.312780px;}
.yb44_c00001{bottom:1053.585000px;}
.yc9b_c00001{bottom:1053.854400px;}
.y687_c00001{bottom:1054.304400px;}
.yb55_c00001{bottom:1054.395000px;}
.ye25_c00001{bottom:1054.755000px;}
.y1b9a_c00001{bottom:1054.934400px;}
.yc4e_c00001{bottom:1055.113500px;}
.yc8c_c00001{bottom:1055.115000px;}
.y1782_c00001{bottom:1055.207550px;}
.y4d4_c00001{bottom:1055.295000px;}
.y1609_c00001{bottom:1055.564400px;}
.y15d8_c00001{bottom:1055.657820px;}
.y11ae_c00001{bottom:1055.659530px;}
.y15dd_c00001{bottom:1055.744250px;}
.yb86_c00001{bottom:1055.924400px;}
.ye78_c00001{bottom:1056.285000px;}
.y1062_c00001{bottom:1056.377550px;}
.ya33_c00001{bottom:1057.094400px;}
.yd4e_c00001{bottom:1057.184400px;}
.yf90_c00001{bottom:1057.269810px;}
.y7d1_c00001{bottom:1057.455000px;}
.ya4_c00001{bottom:1057.632990px;}
.yd74_c00001{bottom:1057.634250px;}
.yf39_c00001{bottom:1057.904250px;}
.y2e3_c00001{bottom:1058.083170px;}
.y2a9_c00001{bottom:1058.084250px;}
.y16d1_c00001{bottom:1058.092650px;}
.ydd4_c00001{bottom:1058.174400px;}
.yfba_c00001{bottom:1058.264400px;}
.y6c7_c00001{bottom:1058.265000px;}
.y731_c00001{bottom:1058.453400px;}
.yb56_c00001{bottom:1058.804400px;}
.y1af5_c00001{bottom:1058.808900px;}
.y540_c00001{bottom:1059.074400px;}
.yda4_c00001{bottom:1059.167460px;}
.y1709_c00001{bottom:1059.524250px;}
.yc4d_c00001{bottom:1059.607470px;}
.yc2f_c00001{bottom:1059.613320px;}
.yc30_c00001{bottom:1059.614250px;}
.y1a1_c00001{bottom:1059.878670px;}
.y15d_c00001{bottom:1059.884250px;}
.y7d3_c00001{bottom:1060.158900px;}
.y1c6_c00001{bottom:1060.244250px;}
.y968_c00001{bottom:1060.321530px;}
.y1c9_c00001{bottom:1060.424400px;}
.y483_c00001{bottom:1061.234400px;}
.y481_c00001{bottom:1061.238900px;}
.y58a_c00001{bottom:1061.243250px;}
.ya18_c00001{bottom:1061.415000px;}
.y1449_c00001{bottom:1061.773440px;}
.y820_c00001{bottom:1061.957490px;}
.y25c_c00001{bottom:1061.965380px;}
.y9b0_c00001{bottom:1062.225000px;}
.y48_c00001{bottom:1062.314250px;}
.y14f6_c00001{bottom:1062.314400px;}
.y28_c00001{bottom:1062.404400px;}
.ya60_c00001{bottom:1062.764400px;}
.y174e_c00001{bottom:1062.862650px;}
.y1534_c00001{bottom:1062.944400px;}
.y1bca_c00001{bottom:1062.946410px;}
.y1b97_c00001{bottom:1062.947550px;}
.ye4c_c00001{bottom:1063.034400px;}
.yed2_c00001{bottom:1063.750800px;}
.yea1_c00001{bottom:1063.754400px;}
.y102d_c00001{bottom:1063.843410px;}
.y1cbb_c00001{bottom:1064.415227px;}
.ya5_c00001{bottom:1064.564250px;}
.y932_c00001{bottom:1064.570790px;}
.y1c95_c00001{bottom:1065.187020px;}
.y1a9c_c00001{bottom:1065.194400px;}
.y1bd5_c00001{bottom:1065.197550px;}
.y1785_c00001{bottom:1065.283140px;}
.y733_c00001{bottom:1065.288270px;}
.y1c1b_c00001{bottom:1065.464400px;}
.y9f8_c00001{bottom:1065.914400px;}
.y14ce_c00001{bottom:1066.201320px;}
.y87e_c00001{bottom:1066.638750px;}
.yb35_c00001{bottom:1066.722000px;}
.yef1_c00001{bottom:1066.815000px;}
.y1c79_c00001{bottom:1067.174250px;}
.y307_c00001{bottom:1067.264400px;}
.y174b_c00001{bottom:1067.714400px;}
.y5ca_c00001{bottom:1067.894400px;}
.y87f_c00001{bottom:1068.074400px;}
.yaaf_c00001{bottom:1068.165000px;}
.y1061_c00001{bottom:1068.434400px;}
.y8bf_c00001{bottom:1068.705000px;}
.y261_c00001{bottom:1068.884040px;}
.y164d_c00001{bottom:1069.153050px;}
.y1446_c00001{bottom:1070.144400px;}
.y137d_c00001{bottom:1070.414400px;}
.y167e_c00001{bottom:1070.688540px;}
.y1220_c00001{bottom:1070.696640px;}
.y5cd_c00001{bottom:1070.773500px;}
.y1ac1_c00001{bottom:1070.865000px;}
.y1c65_c00001{bottom:1071.209130px;}
.y11b0_c00001{bottom:1071.224250px;}
.y1338_c00001{bottom:1071.312000px;}
.ya3_c00001{bottom:1071.494250px;}
.y77d_c00001{bottom:1071.495000px;}
.y90e_c00001{bottom:1071.668580px;}
.y8bc_c00001{bottom:1071.674400px;}
.y40f_c00001{bottom:1071.765000px;}
.y4d5_c00001{bottom:1071.854400px;}
.y16d0_c00001{bottom:1071.858150px;}
.yb08_c00001{bottom:1071.944400px;}
.y730_c00001{bottom:1072.218900px;}
.y15a_c00001{bottom:1072.305000px;}
.y1648_c00001{bottom:1072.664400px;}
.yc98_c00001{bottom:1072.755000px;}
.y102_c00001{bottom:1073.025000px;}
.yd0a_c00001{bottom:1073.115000px;}
.ybf0_c00001{bottom:1073.472000px;}
.yc1f_c00001{bottom:1073.473500px;}
.y30a_c00001{bottom:1073.473590px;}
.yc26_c00001{bottom:1073.475000px;}
.y7d2_c00001{bottom:1073.924400px;}
.y3cd_c00001{bottom:1073.932140px;}
.ycd9_c00001{bottom:1074.465000px;}
.y6c9_c00001{bottom:1074.914400px;}
.y1bc9_c00001{bottom:1075.003260px;}
.y480_c00001{bottom:1075.004400px;}
.y15c_c00001{bottom:1075.008750px;}
.y1647_c00001{bottom:1075.184400px;}
.y10ad_c00001{bottom:1075.274250px;}
.y1448_c00001{bottom:1075.634700px;}
.y81f_c00001{bottom:1075.722990px;}
.y25b_c00001{bottom:1075.730880px;}
.y9af_c00001{bottom:1075.995000px;}
.y1608_c00001{bottom:1076.264400px;}
.yf67_c00001{bottom:1076.624400px;}
.y174d_c00001{bottom:1076.628150px;}
.yf8f_c00001{bottom:1076.984400px;}
.yb85_c00001{bottom:1077.165000px;}
.y1bd4_c00001{bottom:1077.254400px;}
.yd09_c00001{bottom:1077.524250px;}
.y1405_c00001{bottom:1077.704250px;}
.y12e8_c00001{bottom:1077.704400px;}
.y19e2_c00001{bottom:1077.884250px;}
.y5_c00001{bottom:1077.884400px;}
.yd73_c00001{bottom:1078.334250px;}
.y1222_c00001{bottom:1078.694400px;}
.ye7a_c00001{bottom:1078.781700px;}
.ye9e_c00001{bottom:1078.783410px;}
.yda3_c00001{bottom:1078.964400px;}
.y1784_c00001{bottom:1079.144400px;}
.ydd3_c00001{bottom:1079.319810px;}
.y1869_c00001{bottom:1079.328900px;}
.ye49_c00001{bottom:1079.505000px;}
.yc4c_c00001{bottom:1079.684400px;}
.y967_c00001{bottom:1080.480810px;}
.y1142_c00001{bottom:1080.497280px;}
.y77e_c00001{bottom:1081.124400px;}
.y164c_c00001{bottom:1081.209900px;}
.y1c56_c00001{bottom:1081.479900px;}
.y410_c00001{bottom:1081.664400px;}
.y87d_c00001{bottom:1082.204250px;}
.y9f6_c00001{bottom:1082.295000px;}
.y148b_c00001{bottom:1082.924400px;}
.ya5f_c00001{bottom:1083.015000px;}
.y53e_c00001{bottom:1084.725000px;}
.y1cb7_c00001{bottom:1084.956000px;}
.y1c64_c00001{bottom:1085.884350px;}
.y72f_c00001{bottom:1085.984400px;}
.y1c7_c00001{bottom:1086.075000px;}
.y14d1_c00001{bottom:1086.976290px;}
.yb34_c00001{bottom:1087.605000px;}
.y3cc_c00001{bottom:1087.697640px;}
.y105e_c00001{bottom:1087.875000px;}
.y40b_c00001{bottom:1087.964400px;}
.yb06_c00001{bottom:1088.322000px;}
.yb28_c00001{bottom:1088.323500px;}
.yb2d_c00001{bottom:1088.325000px;}
.y174a_c00001{bottom:1088.414400px;}
.y459_c00001{bottom:1088.502870px;}
.y40e_c00001{bottom:1088.504400px;}
.y1945_c00001{bottom:1088.508600px;}
.y18c8_c00001{bottom:1088.508750px;}
.y15b_c00001{bottom:1088.774250px;}
.y14cd_c00001{bottom:1089.325200px;}
.y1cba_c00001{bottom:1089.527550px;}
.y210_c00001{bottom:1089.580170px;}
.y81e_c00001{bottom:1089.584250px;}
.y8bb_c00001{bottom:1089.585000px;}
.y107_c00001{bottom:1089.592140px;}
.y1a29_c00001{bottom:1089.861750px;}
.y13b7_c00001{bottom:1090.938750px;}
.y5c7_c00001{bottom:1091.655000px;}
.y148e_c00001{bottom:1091.841840px;}
.y305_c00001{bottom:1092.285000px;}
.y156f_c00001{bottom:1092.287550px;}
.ye22_c00001{bottom:1092.642000px;}
.y11a7_c00001{bottom:1092.643500px;}
.y11aa_c00001{bottom:1092.645000px;}
.y1868_c00001{bottom:1093.094400px;}
.y1746_c00001{bottom:1093.364250px;}
.y1531_c00001{bottom:1093.364400px;}
.ya32_c00001{bottom:1093.635000px;}
.y121f_c00001{bottom:1093.820520px;}
.y90d_c00001{bottom:1094.081160px;}
.y8ba_c00001{bottom:1094.084250px;}
.y53f_c00001{bottom:1094.354400px;}
.y1af2_c00001{bottom:1094.445000px;}
.yb43_c00001{bottom:1094.625000px;}
.y3ce_c00001{bottom:1094.628270px;}
.yb54_c00001{bottom:1095.343500px;}
.y133c_c00001{bottom:1095.623250px;}
.ybec_c00001{bottom:1096.152000px;}
.yc1e_c00001{bottom:1096.153500px;}
.y5c9_c00001{bottom:1096.154250px;}
.yc25_c00001{bottom:1096.155000px;}
.y822_c00001{bottom:1096.431090px;}
.y1c55_c00001{bottom:1096.964400px;}
.yc99_c00001{bottom:1097.324400px;}
.yc97_c00001{bottom:1097.329620px;}
.y4d2_c00001{bottom:1097.415000px;}
.y1c15_c00001{bottom:1097.773500px;}
.yf8e_c00001{bottom:1098.134250px;}
.y1b6d_c00001{bottom:1098.314250px;}
.yd4d_c00001{bottom:1098.584400px;}
.y182f_c00001{bottom:1098.858900px;}
.ydd2_c00001{bottom:1099.034400px;}
.y1704_c00001{bottom:1099.035000px;}
.yd72_c00001{bottom:1099.484400px;}
.y7cc_c00001{bottom:1099.575000px;}
.y1cbc_c00001{bottom:1099.662858px;}
.y1a27_c00001{bottom:1099.844400px;}
.y77b_c00001{bottom:1099.845000px;}
.yda2_c00001{bottom:1100.019810px;}
.y1c63_c00001{bottom:1100.559570px;}
.y966_c00001{bottom:1100.640090px;}
.ybef_c00001{bottom:1100.648040px;}
.y40c_c00001{bottom:1100.655000px;}
.y9ae_c00001{bottom:1100.656560px;}
.y14d0_c00001{bottom:1100.837550px;}
.yd08_c00001{bottom:1100.925000px;}
.y520_c00001{bottom:1101.016380px;}
.y4d1_c00001{bottom:1101.018900px;}
.y27_c00001{bottom:1101.104400px;}
.yf0_c00001{bottom:1101.196200px;}
.ya0_c00001{bottom:1101.198900px;}
.y3cb_c00001{bottom:1101.463140px;}
.ye7b_c00001{bottom:1101.914400px;}
.y1a28_c00001{bottom:1101.918600px;}
.ye4b_c00001{bottom:1102.004400px;}
.y1944_c00001{bottom:1102.274100px;}
.y18c7_c00001{bottom:1102.274250px;}
.y1908_c00001{bottom:1102.452990px;}
.ya17_c00001{bottom:1102.455000px;}
.y1c8_c00001{bottom:1102.634250px;}
.y931_c00001{bottom:1102.731780px;}
.y106_c00001{bottom:1103.357640px;}
.y137c_c00001{bottom:1103.547300px;}
.y148a_c00001{bottom:1103.624400px;}
.yb84_c00001{bottom:1103.625000px;}
.y156e_c00001{bottom:1104.344400px;}
.y13b6_c00001{bottom:1104.704250px;}
.yd07_c00001{bottom:1105.424400px;}
.y148d_c00001{bottom:1105.703100px;}
.yef3_c00001{bottom:1107.134250px;}
.ya5e_c00001{bottom:1107.762000px;}
.ya8b_c00001{bottom:1107.763500px;}
.ya92_c00001{bottom:1107.765000px;}
.y4d3_c00001{bottom:1107.944400px;}
.yb83_c00001{bottom:1108.124400px;}
.y1445_c00001{bottom:1108.127790px;}
.y1c78_c00001{bottom:1108.574250px;}
.y12e1_c00001{bottom:1108.754400px;}
.y4_c00001{bottom:1108.934400px;}
.y1060_c00001{bottom:1109.024250px;}
.y17f7_c00001{bottom:1109.208750px;}
.y133b_c00001{bottom:1109.388750px;}
.y77c_c00001{bottom:1109.474250px;}
.y1442_c00001{bottom:1109.564400px;}
.y1747_c00001{bottom:1110.192000px;}
.y108_c00001{bottom:1110.284400px;}
.y1b3d_c00001{bottom:1110.557400px;}
.y1533_c00001{bottom:1110.559800px;}
.y1120_c00001{bottom:1110.637380px;}
.y1141_c00001{bottom:1110.653850px;}
.ya5d_c00001{bottom:1112.251440px;}
.y1c59_c00001{bottom:1112.259900px;}
.y14cc_c00001{bottom:1112.449080px;}
.y1c54_c00001{bottom:1112.529900px;}
.y182e_c00001{bottom:1112.624400px;}
.y105d_c00001{bottom:1112.987460px;}
.y53a_c00001{bottom:1113.075000px;}
.y137a_c00001{bottom:1114.064400px;}
.y159_c00001{bottom:1114.425000px;}
.y14cf_c00001{bottom:1114.603050px;}
.y51f_c00001{bottom:1114.781880px;}
.y4d0_c00001{bottom:1114.784400px;}
.yef_c00001{bottom:1114.961700px;}
.y9f_c00001{bottom:1114.964400px;}
.y1c62_c00001{bottom:1115.139030px;}
.y3ca_c00001{bottom:1115.324400px;}
.y1af3_c00001{bottom:1115.417400px;}
.yb41_c00001{bottom:1115.505000px;}
.y1606_c00001{bottom:1116.044400px;}
.y1907_c00001{bottom:1116.314250px;}
.ya16_c00001{bottom:1116.315000px;}
.y7ce_c00001{bottom:1116.583140px;}
.y304_c00001{bottom:1116.854400px;}
.ye9d_c00001{bottom:1116.944400px;}
.y105_c00001{bottom:1117.123140px;}
.y137b_c00001{bottom:1117.312800px;}
.yf8d_c00001{bottom:1118.654250px;}
.yf66_c00001{bottom:1118.744400px;}
.yd5d_c00001{bottom:1119.284400px;}
.y148c_c00001{bottom:1119.468600px;}
.y16cf_c00001{bottom:1119.558900px;}
.yda1_c00001{bottom:1119.734400px;}
.yb42_c00001{bottom:1120.004400px;}
.yb40_c00001{bottom:1120.008810px;}
.ydfd_c00001{bottom:1120.097460px;}
.ydd1_c00001{bottom:1120.179810px;}
.y965_c00001{bottom:1120.717020px;}
.ybee_c00001{bottom:1120.724970px;}
.y9ad_c00001{bottom:1120.733490px;}
.y1749_c00001{bottom:1121.988900px;}
.y1444_c00001{bottom:1121.989050px;}
.y1c94_c00001{bottom:1122.074400px;}
.y1b3c_c00001{bottom:1122.614250px;}
.y1532_c00001{bottom:1122.616650px;}
.y17f6_c00001{bottom:1122.974250px;}
.y133a_c00001{bottom:1123.154250px;}
.y7d0_c00001{bottom:1123.514400px;}
.y40d_c00001{bottom:1124.053770px;}
.y1489_c00001{bottom:1124.324400px;}
.y121c_c00001{bottom:1125.047550px;}
.y1af1_c00001{bottom:1125.494250px;}
.y4cd_c00001{bottom:1127.472000px;}
.y51d_c00001{bottom:1127.473500px;}
.y534_c00001{bottom:1127.475000px;}
.y1c58_c00001{bottom:1127.744400px;}
.y1c53_c00001{bottom:1128.014400px;}
.y9d_c00001{bottom:1128.195000px;}
.ye21_c00001{bottom:1128.554400px;}
.yb33_c00001{bottom:1128.645000px;}
.yd06_c00001{bottom:1128.735000px;}
.y1c77_c00001{bottom:1129.274250px;}
.y1c61_c00001{bottom:1129.814250px;}
.yb82_c00001{bottom:1130.085000px;}
.y53c_c00001{bottom:1130.264400px;}
.y7cd_c00001{bottom:1130.444400px;}
.y4cf_c00001{bottom:1130.534400px;}
.y104_c00001{bottom:1130.984400px;}
.y5c6_c00001{bottom:1132.695000px;}
.yd05_c00001{bottom:1133.234220px;}
.yb81_c00001{bottom:1134.584760px;}
.y1379_c00001{bottom:1134.764400px;}
.y8b9_c00001{bottom:1135.124400px;}
.y14cb_c00001{bottom:1135.671780px;}
.y105c_c00001{bottom:1135.754400px;}
.y1443_c00001{bottom:1135.754550px;}
.y121b_c00001{bottom:1137.104400px;}
.y9e_c00001{bottom:1137.824400px;}
.y47_c00001{bottom:1139.714400px;}
.y12f3_c00001{bottom:1139.804400px;}
.y26_c00001{bottom:1139.894400px;}
.y3_c00001{bottom:1139.984400px;}
.y964_c00001{bottom:1140.876300px;}
.ybed_c00001{bottom:1140.884250px;}
.y930_c00001{bottom:1140.892770px;}
.y1c76_c00001{bottom:1153.755840px;}
.y25_c00001{bottom:1173.915120px;}
.y46_c00001{bottom:1193.174400px;}
.y2_c00001{bottom:1194.074400px;}
.y8b8_c00001{bottom:1194.614250px;}
.h9c_c00001{height:7.740000px;}
.h9a_c00001{height:7.830000px;}
.h25_c00001{height:13.770000px;}
.h36_c00001{height:13.857000px;}
.h39_c00001{height:13.858500px;}
.h34_c00001{height:13.860000px;}
.h184_c00001{height:15.480000px;}
.h38_c00001{height:15.570000px;}
.h32_c00001{height:15.748500px;}
.h8e_c00001{height:20.067000px;}
.h84_c00001{height:20.068500px;}
.h86_c00001{height:20.070000px;}
.h6e_c00001{height:20.160000px;}
.h6b_c00001{height:20.161500px;}
.h6f_c00001{height:20.163000px;}
.h87_c00001{height:20.250000px;}
.hea_c00001{height:20.700000px;}
.h4b_c00001{height:20.701500px;}
.h6_c00001{height:20.703000px;}
.h89_c00001{height:20.970000px;}
.h4a_c00001{height:22.497000px;}
.h44_c00001{height:22.498500px;}
.h45_c00001{height:22.500000px;}
.ha7_c00001{height:22.590000px;}
.ha5_c00001{height:22.591500px;}
.ha6_c00001{height:22.593000px;}
.ha4_c00001{height:22.680000px;}
.h73_c00001{height:23.038500px;}
.h68_c00001{height:23.130000px;}
.h6d_c00001{height:23.131500px;}
.h6c_c00001{height:23.133000px;}
.h93_c00001{height:23.940000px;}
.h95_c00001{height:23.941500px;}
.h96_c00001{height:23.943000px;}
.h92_c00001{height:24.030000px;}
.h72_c00001{height:25.470000px;}
.ha0_c00001{height:25.650000px;}
.ha2_c00001{height:25.737000px;}
.h9e_c00001{height:25.738500px;}
.h9d_c00001{height:25.740000px;}
.h8a_c00001{height:26.640000px;}
.hac_c00001{height:27.000000px;}
.ha9_c00001{height:27.087000px;}
.haa_c00001{height:27.088500px;}
.hab_c00001{height:27.090000px;}
.hf_c00001{height:27.540000px;}
.h19_c00001{height:27.627000px;}
.h11_c00001{height:27.628500px;}
.h2a_c00001{height:27.630000px;}
.h1d_c00001{height:28.080000px;}
.h37_c00001{height:28.168500px;}
.h3a_c00001{height:28.170000px;}
.h60_c00001{height:28.350000px;}
.h61_c00001{height:29.247000px;}
.h63_c00001{height:29.248500px;}
.h64_c00001{height:29.250000px;}
.h3b_c00001{height:29.790000px;}
.h16_c00001{height:31.050000px;}
.h5d_c00001{height:31.407000px;}
.h98_c00001{height:32.760000px;}
.h7_c00001{height:36.808500px;}
.h4c_c00001{height:36.810000px;}
.h185_c00001{height:39.486973px;}
.h43_c00001{height:40.230000px;}
.h83_c00001{height:40.317000px;}
.h69_c00001{height:40.318500px;}
.h47_c00001{height:40.320000px;}
.h3d_c00001{height:41.310000px;}
.h10_c00001{height:41.397000px;}
.h1e_c00001{height:41.398500px;}
.he_c00001{height:41.400000px;}
.h26_c00001{height:41.580000px;}
.h5b_c00001{height:41.670000px;}
.h16e_c00001{height:42.208500px;}
.h65_c00001{height:42.747000px;}
.h5f_c00001{height:42.750000px;}
.h191_c00001{height:43.909277px;}
.hcb_c00001{height:44.534180px;}
.hb0_c00001{height:44.942040px;}
.h154_c00001{height:44.942640px;}
.h175_c00001{height:44.943840px;}
.hef_c00001{height:45.180000px;}
.hf6_c00001{height:45.630000px;}
.h129_c00001{height:45.646348px;}
.h124_c00001{height:45.658080px;}
.h17_c00001{height:46.527000px;}
.h125_c00001{height:47.090160px;}
.h12f_c00001{height:47.469240px;}
.h112_c00001{height:49.464000px;}
.h4d_c00001{height:49.590000px;}
.h9_c00001{height:49.591500px;}
.h35_c00001{height:49.937344px;}
.h12c_c00001{height:49.996440px;}
.h116_c00001{height:50.333400px;}
.h2_c00001{height:50.400000px;}
.h101_c00001{height:50.401500px;}
.ha_c00001{height:51.087960px;}
.h121_c00001{height:51.118500px;}
.h15e_c00001{height:51.120000px;}
.h17c_c00001{height:51.210000px;}
.h67_c00001{height:54.300739px;}
.h77_c00001{height:54.305779px;}
.h3_c00001{height:54.331699px;}
.h12_c00001{height:55.167000px;}
.h1a_c00001{height:55.168500px;}
.h1b_c00001{height:55.170000px;}
.hc_c00001{height:55.260000px;}
.h29_c00001{height:55.261500px;}
.h21_c00001{height:55.263000px;}
.h7e_c00001{height:56.247000px;}
.h7d_c00001{height:56.248500px;}
.h82_c00001{height:56.250000px;}
.h140_c00001{height:56.700000px;}
.h137_c00001{height:56.787000px;}
.h13c_c00001{height:56.788500px;}
.h13e_c00001{height:56.790000px;}
.h7f_c00001{height:57.328500px;}
.hb_c00001{height:57.618000px;}
.h179_c00001{height:58.651699px;}
.ha1_c00001{height:60.390000px;}
.h94_c00001{height:60.391500px;}
.ha8_c00001{height:60.393000px;}
.ha3_c00001{height:60.480000px;}
.hdf_c00001{height:61.290000px;}
.h167_c00001{height:61.377000px;}
.h109_c00001{height:61.378500px;}
.h150_c00001{height:61.380000px;}
.h10d_c00001{height:61.887960px;}
.hf5_c00001{height:62.100000px;}
.h12e_c00001{height:63.864000px;}
.h17d_c00001{height:65.491099px;}
.h16a_c00001{height:66.561739px;}
.h143_c00001{height:66.571099px;}
.he0_c00001{height:66.928560px;}
.h170_c00001{height:67.048500px;}
.h134_c00001{height:67.444200px;}
.h17f_c00001{height:67.445280px;}
.h162_c00001{height:67.462440px;}
.h12b_c00001{height:67.463400px;}
.hf9_c00001{height:67.464000px;}
.h110_c00001{height:67.464600px;}
.h118_c00001{height:67.478400px;}
.h158_c00001{height:67.478640px;}
.h11a_c00001{height:67.479120px;}
.h117_c00001{height:67.479240px;}
.h15a_c00001{height:67.479960px;}
.h6a_c00001{height:67.858500px;}
.hdd_c00001{height:67.950000px;}
.hca_c00001{height:67.951500px;}
.h88_c00001{height:68.400000px;}
.h19a_c00001{height:68.403155px;}
.h30_c00001{height:68.937000px;}
.h31_c00001{height:68.938500px;}
.h2f_c00001{height:68.940000px;}
.h2c_c00001{height:69.030000px;}
.h27_c00001{height:69.031500px;}
.h74_c00001{height:69.033000px;}
.h51_c00001{height:69.747000px;}
.h53_c00001{height:69.748500px;}
.h54_c00001{height:69.750000px;}
.h8_c00001{height:70.293960px;}
.h42_c00001{height:70.920000px;}
.h52_c00001{height:70.921500px;}
.h50_c00001{height:70.923000px;}
.h192_c00001{height:71.413920px;}
.h12a_c00001{height:72.657000px;}
.h199_c00001{height:74.986240px;}
.h5_c00001{height:75.093750px;}
.h166_c00001{height:75.526560px;}
.h164_c00001{height:75.551640px;}
.hb8_c00001{height:76.320000px;}
.hc1_c00001{height:76.321500px;}
.hb2_c00001{height:76.323000px;}
.hd4_c00001{height:76.410000px;}
.h4_c00001{height:76.824000px;}
.h15_c00001{height:77.577000px;}
.h14_c00001{height:77.580000px;}
.h1c_c00001{height:78.427440px;}
.h22_c00001{height:78.774360px;}
.hd_c00001{height:78.810480px;}
.h3c_c00001{height:78.858360px;}
.h161_c00001{height:79.142040px;}
.h160_c00001{height:79.143240px;}
.h173_c00001{height:79.522440px;}
.h9f_c00001{height:80.547000px;}
.h8d_c00001{height:80.548500px;}
.h99_c00001{height:80.550000px;}
.h97_c00001{height:80.643000px;}
.hae_c00001{height:80.979606px;}
.h57_c00001{height:81.327960px;}
.h2d_c00001{height:82.800000px;}
.h3e_c00001{height:82.801500px;}
.h59_c00001{height:82.803000px;}
.h85_c00001{height:82.980000px;}
.h177_c00001{height:83.131099px;}
.h62_c00001{height:83.248500px;}
.h4f_c00001{height:83.250000px;}
.h80_c00001{height:84.330000px;}
.hf4_c00001{height:84.421500px;}
.hda_c00001{height:84.510000px;}
.hbf_c00001{height:84.988800px;}
.hc2_c00001{height:84.992760px;}
.h16f_c00001{height:86.658960px;}
.h14b_c00001{height:86.710560px;}
.h148_c00001{height:86.727960px;}
.h155_c00001{height:87.061440px;}
.h11f_c00001{height:87.062040px;}
.h120_c00001{height:87.062640px;}
.h108_c00001{height:87.093360px;}
.h114_c00001{height:87.441120px;}
.hce_c00001{height:89.010000px;}
.h19c_c00001{height:91.841812px;}
.h131_c00001{height:92.472840px;}
.he3_c00001{height:93.222720px;}
.h105_c00001{height:93.897960px;}
.hfe_c00001{height:94.623480px;}
.h138_c00001{height:94.647360px;}
.hf3_c00001{height:94.647960px;}
.h151_c00001{height:94.648560px;}
.h115_c00001{height:96.412680px;}
.h41_c00001{height:96.570000px;}
.h3f_c00001{height:96.571500px;}
.h5e_c00001{height:96.573000px;}
.h13_c00001{height:96.660000px;}
.h16b_c00001{height:96.780619px;}
.h156_c00001{height:96.791760px;}
.h168_c00001{height:96.799099px;}
.hb9_c00001{height:96.807960px;}
.he6_c00001{height:96.808560px;}
.hb1_c00001{height:96.811920px;}
.hbd_c00001{height:96.813360px;}
.hc7_c00001{height:96.817320px;}
.hd6_c00001{height:97.148160px;}
.hd3_c00001{height:97.152120px;}
.hb3_c00001{height:97.167360px;}
.hc5_c00001{height:97.167960px;}
.hc6_c00001{height:97.168560px;}
.hb7_c00001{height:97.171320px;}
.hba_c00001{height:97.171920px;}
.hd5_c00001{height:97.172520px;}
.h139_c00001{height:97.178179px;}
.h10c_c00001{height:97.691400px;}
.h75_c00001{height:97.828500px;}
.h10b_c00001{height:98.070480px;}
.h183_c00001{height:98.280000px;}
.h15c_c00001{height:99.447000px;}
.hbb_c00001{height:99.448500px;}
.hc0_c00001{height:99.450000px;}
.hc3_c00001{height:99.540000px;}
.hd1_c00001{height:99.541500px;}
.hcf_c00001{height:99.543000px;}
.h70_c00001{height:100.710000px;}
.hf0_c00001{height:101.876400px;}
.hf8_c00001{height:101.878080px;}
.hd2_c00001{height:101.882880px;}
.he5_c00001{height:101.885160px;}
.hd0_c00001{height:101.885760px;}
.he7_c00001{height:101.887680px;}
.h10a_c00001{height:101.908200px;}
.haf_c00001{height:102.268800px;}
.h159_c00001{height:104.514480px;}
.h157_c00001{height:104.531400px;}
.h2e_c00001{height:106.149960px;}
.h5c_c00001{height:106.197840px;}
.h33_c00001{height:106.533000px;}
.h174_c00001{height:107.258179px;}
.h102_c00001{height:107.640000px;}
.hed_c00001{height:107.641500px;}
.h11d_c00001{height:107.643000px;}
.h144_c00001{height:107.730000px;}
.h19b_c00001{height:107.962048px;}
.h16c_c00001{height:108.129600px;}
.h169_c00001{height:108.144000px;}
.h66_c00001{height:110.341500px;}
.h81_c00001{height:110.430000px;}
.h20_c00001{height:111.207960px;}
.h113_c00001{height:111.520080px;}
.h12d_c00001{height:111.542040px;}
.h106_c00001{height:111.973680px;}
.hff_c00001{height:111.988800px;}
.h163_c00001{height:113.310000px;}
.hdc_c00001{height:113.378160px;}
.hdb_c00001{height:113.378760px;}
.h165_c00001{height:113.400000px;}
.hf7_c00001{height:114.432360px;}
.h10e_c00001{height:114.432960px;}
.hf2_c00001{height:114.480000px;}
.h100_c00001{height:115.691400px;}
.h119_c00001{height:115.703160px;}
.h178_c00001{height:116.936640px;}
.hcd_c00001{height:118.075920px;}
.hfd_c00001{height:119.143560px;}
.h16d_c00001{height:120.541440px;}
.h11b_c00001{height:120.542040px;}
.h11c_c00001{height:120.547440px;}
.h172_c00001{height:120.548040px;}
.h9b_c00001{height:120.778500px;}
.h49_c00001{height:120.871500px;}
.h171_c00001{height:120.884640px;}
.h17a_c00001{height:120.902640px;}
.h198_c00001{height:121.455000px;}
.h107_c00001{height:122.007360px;}
.he4_c00001{height:122.580000px;}
.hc4_c00001{height:122.668500px;}
.hde_c00001{height:122.670000px;}
.h13a_c00001{height:124.881960px;}
.h14d_c00001{height:125.193000px;}
.h14f_c00001{height:125.285760px;}
.h135_c00001{height:125.292000px;}
.h132_c00001{height:125.308200px;}
.h145_c00001{height:125.308800px;}
.h147_c00001{height:125.314920px;}
.h18a_c00001{height:125.367000px;}
.h18d_c00001{height:125.368500px;}
.h18f_c00001{height:125.370000px;}
.h7c_c00001{height:125.731500px;}
.h194_c00001{height:126.129003px;}
.h46_c00001{height:127.800000px;}
.h133_c00001{height:128.126160px;}
.h104_c00001{height:128.126760px;}
.hfc_c00001{height:128.127360px;}
.hfb_c00001{height:128.127960px;}
.h103_c00001{height:128.128560px;}
.h136_c00001{height:128.487960px;}
.hfa_c00001{height:128.488560px;}
.h146_c00001{height:128.510160px;}
.h15f_c00001{height:130.767000px;}
.h142_c00001{height:130.768500px;}
.h15b_c00001{height:130.770000px;}
.h149_c00001{height:130.860000px;}
.h11e_c00001{height:130.861500px;}
.h15d_c00001{height:130.863000px;}
.h111_c00001{height:132.832440px;}
.h10f_c00001{height:132.845160px;}
.h153_c00001{height:132.846360px;}
.h13b_c00001{height:133.228200px;}
.h14a_c00001{height:133.228800px;}
.h13d_c00001{height:133.235640px;}
.h14c_c00001{height:133.236240px;}
.h197_c00001{height:136.768301px;}
.hee_c00001{height:137.700000px;}
.h48_c00001{height:140.940000px;}
.h71_c00001{height:142.378500px;}
.h2b_c00001{height:144.090000px;}
.h28_c00001{height:144.091500px;}
.h1f_c00001{height:144.093000px;}
.hd9_c00001{height:145.800000px;}
.h17b_c00001{height:149.184000px;}
.h17e_c00001{height:149.200440px;}
.h195_c00001{height:151.982200px;}
.he1_c00001{height:152.637000px;}
.hbc_c00001{height:152.638500px;}
.hb5_c00001{height:152.640000px;}
.hb6_c00001{height:152.731500px;}
.h130_c00001{height:153.988500px;}
.h127_c00001{height:153.990000px;}
.h176_c00001{height:155.103240px;}
.h13f_c00001{height:155.971500px;}
.h79_c00001{height:157.410000px;}
.heb_c00001{height:160.830000px;}
.h8c_c00001{height:161.100000px;}
.had_c00001{height:161.101500px;}
.h8b_c00001{height:161.103000px;}
.h40_c00001{height:165.597000px;}
.h76_c00001{height:166.320000px;}
.hd8_c00001{height:168.930000px;}
.he2_c00001{height:169.020000px;}
.h7b_c00001{height:170.460000px;}
.hc9_c00001{height:175.770000px;}
.hc8_c00001{height:175.857000px;}
.hcc_c00001{height:175.858500px;}
.hb4_c00001{height:175.860000px;}
.h19d_c00001{height:176.150432px;}
.h126_c00001{height:177.120000px;}
.h141_c00001{height:181.620000px;}
.h193_c00001{height:189.193184px;}
.hec_c00001{height:190.800000px;}
.h14e_c00001{height:192.151500px;}
.h78_c00001{height:194.670000px;}
.h23_c00001{height:195.480000px;}
.hbe_c00001{height:198.900000px;}
.he8_c00001{height:198.901500px;}
.h128_c00001{height:204.840000px;}
.h7a_c00001{height:211.410000px;}
.h181_c00001{height:217.350000px;}
.h90_c00001{height:221.580000px;}
.h8f_c00001{height:221.581500px;}
.h122_c00001{height:222.121500px;}
.h123_c00001{height:223.470000px;}
.hd7_c00001{height:228.960000px;}
.he9_c00001{height:229.048500px;}
.h18b_c00001{height:232.828500px;}
.h190_c00001{height:232.830000px;}
.h182_c00001{height:238.051500px;}
.h91_c00001{height:241.650000px;}
.h180_c00001{height:253.530000px;}
.h55_c00001{height:257.398500px;}
.h56_c00001{height:259.920000px;}
.h196_c00001{height:263.223110px;}
.h187_c00001{height:263.877000px;}
.h189_c00001{height:265.767000px;}
.h18c_c00001{height:265.768500px;}
.h18e_c00001{height:265.770000px;}
.h24_c00001{height:268.470000px;}
.h188_c00001{height:290.878500px;}
.h152_c00001{height:298.437000px;}
.hf1_c00001{height:298.438500px;}
.h18_c00001{height:310.680000px;}
.h186_c00001{height:357.121500px;}
.h58_c00001{height:421.558500px;}
.h5a_c00001{height:554.040000px;}
.h4e_c00001{height:653.400000px;}
.h0_c00001{height:1262.835000px;}
.h1_c00001{height:1263.000000px;}
.w20_c00001{width:-665.125500px;}
.wf_c00001{width:-665.034000px;}
.w9_c00001{width:-664.315500px;}
.w5c_c00001{width:-656.124000px;}
.w43_c00001{width:-654.433500px;}
.w7a_c00001{width:-647.664000px;}
.w78_c00001{width:-647.304000px;}
.w96_c00001{width:-644.152500px;}
.w94_c00001{width:-644.151000px;}
.wad_c00001{width:-627.234000px;}
.w87_c00001{width:-627.142500px;}
.w81_c00001{width:-627.141000px;}
.w6a_c00001{width:-619.042500px;}
.w65_c00001{width:-619.041000px;}
.w49_c00001{width:-584.124000px;}
.w73_c00001{width:-538.134000px;}
.w57_c00001{width:-534.984000px;}
.w8f_c00001{width:-529.674000px;}
.w82_c00001{width:-520.764000px;}
.w1e_c00001{width:-476.664000px;}
.w66_c00001{width:-467.844000px;}
.w83_c00001{width:-457.044000px;}
.w40_c00001{width:-455.983500px;}
.w67_c00001{width:-420.954000px;}
.w74_c00001{width:-406.284000px;}
.w84_c00001{width:-403.044000px;}
.w58_c00001{width:-398.004000px;}
.w90_c00001{width:-394.404000px;}
.w4a_c00001{width:-385.944000px;}
.w41_c00001{width:-372.733500px;}
.w64_c00001{width:-356.424000px;}
.w85_c00001{width:-307.284000px;}
.w4b_c00001{width:-307.014000px;}
.w44_c00001{width:-289.755000px;}
.w42_c00001{width:-289.753500px;}
.w75_c00001{width:-277.945500px;}
.w59_c00001{width:-269.574000px;}
.w91_c00001{width:-263.994000px;}
.w68_c00001{width:-242.214000px;}
.wae_c00001{width:-232.315500px;}
.w4c_c00001{width:-227.994000px;}
.wa1_c00001{width:-188.035500px;}
.w30_c00001{width:-184.527000px;}
.w31_c00001{width:-184.525500px;}
.w98_c00001{width:-182.544000px;}
.w9c_c00001{width:-179.034000px;}
.w21_c00001{width:-178.674000px;}
.w9a_c00001{width:-178.494000px;}
.wa_c00001{width:-177.864000px;}
.w11_c00001{width:-177.862500px;}
.w10_c00001{width:-177.861000px;}
.w3e_c00001{width:-176.622000px;}
.w9e_c00001{width:-174.537000px;}
.w9f_c00001{width:-174.535500px;}
.w86_c00001{width:-148.704000px;}
.w4d_c00001{width:-132.324000px;}
.w76_c00001{width:-125.665500px;}
.w34_c00001{width:-122.697000px;}
.w35_c00001{width:-122.695500px;}
.wb_c00001{width:-122.694000px;}
.w69_c00001{width:-122.244000px;}
.w1f_c00001{width:-120.534000px;}
.w5a_c00001{width:-116.664000px;}
.w92_c00001{width:-110.184000px;}
.w3f_c00001{width:-64.753500px;}
.wac_c00001{width:-42.414000px;}
.w79_c00001{width:-25.312500px;}
.w77_c00001{width:-24.954000px;}
.w4e_c00001{width:-24.324000px;}
.w5d_c00001{width:-11.724000px;}
.w5b_c00001{width:-11.364000px;}
.w95_c00001{width:-7.134000px;}
.w93_c00001{width:-6.774000px;}
.w2_c00001{width:0.000000px;}
.w3_c00001{width:0.066000px;}
.w60_c00001{width:46.890000px;}
.w7e_c00001{width:54.000000px;}
.w8_c00001{width:54.450000px;}
.w22_c00001{width:55.260000px;}
.w32_c00001{width:61.107000px;}
.w7d_c00001{width:63.720000px;}
.w61_c00001{width:64.530000px;}
.w47_c00001{width:79.020000px;}
.w2c_c00001{width:82.530000px;}
.w3a_c00001{width:82.620000px;}
.w39_c00001{width:82.890000px;}
.w2b_c00001{width:83.160000px;}
.w15_c00001{width:84.690000px;}
.w16_c00001{width:95.580000px;}
.w48_c00001{width:95.670000px;}
.w7f_c00001{width:95.760000px;}
.wa8_c00001{width:97.920000px;}
.w72_c00001{width:100.351500px;}
.w70_c00001{width:100.710000px;}
.w8e_c00001{width:103.050000px;}
.w8c_c00001{width:103.410000px;}
.w12_c00001{width:103.590000px;}
.w56_c00001{width:104.940000px;}
.w1d_c00001{width:105.118500px;}
.wd_c00001{width:105.210000px;}
.w54_c00001{width:105.300000px;}
.w17_c00001{width:105.840000px;}
.w6_c00001{width:105.928500px;}
.w18_c00001{width:106.020000px;}
.w7b_c00001{width:106.380000px;}
.w46_c00001{width:108.000000px;}
.w6c_c00001{width:109.170000px;}
.w4f_c00001{width:110.340000px;}
.w55_c00001{width:111.060000px;}
.w37_c00001{width:111.420000px;}
.w36_c00001{width:112.771500px;}
.w29_c00001{width:113.040000px;}
.w62_c00001{width:114.210000px;}
.w28_c00001{width:114.480000px;}
.w71_c00001{width:119.160000px;}
.w6b_c00001{width:119.880000px;}
.w63_c00001{width:119.970000px;}
.w50_c00001{width:121.140000px;}
.w88_c00001{width:122.310000px;}
.w8d_c00001{width:123.033000px;}
.w1a_c00001{width:127.980000px;}
.w6e_c00001{width:128.338500px;}
.w52_c00001{width:128.430000px;}
.w8a_c00001{width:130.410000px;}
.w6d_c00001{width:131.850000px;}
.w89_c00001{width:135.270000px;}
.wa6_c00001{width:135.630000px;}
.w51_c00001{width:136.980000px;}
.w3b_c00001{width:138.510000px;}
.w7c_c00001{width:140.043000px;}
.w5e_c00001{width:148.143000px;}
.w19_c00001{width:148.680000px;}
.w5f_c00001{width:151.200000px;}
.w6f_c00001{width:152.368500px;}
.w53_c00001{width:152.910000px;}
.w8b_c00001{width:153.810000px;}
.w24_c00001{width:157.593000px;}
.w80_c00001{width:158.580000px;}
.wa3_c00001{width:162.000000px;}
.wa5_c00001{width:162.088500px;}
.wa4_c00001{width:162.090000px;}
.w3c_c00001{width:165.867000px;}
.w2d_c00001{width:166.137000px;}
.w2a_c00001{width:183.060000px;}
.w25_c00001{width:183.420000px;}
.wab_c00001{width:189.900000px;}
.w38_c00001{width:198.090000px;}
.w45_c00001{width:198.180000px;}
.wa9_c00001{width:201.960000px;}
.w3d_c00001{width:224.640000px;}
.w2e_c00001{width:227.880000px;}
.w14_c00001{width:277.020000px;}
.w4_c00001{width:295.650000px;}
.wa7_c00001{width:308.340000px;}
.w27_c00001{width:341.370000px;}
.w5_c00001{width:355.050000px;}
.w1c_c00001{width:392.937000px;}
.w1b_c00001{width:393.300000px;}
.w26_c00001{width:394.380000px;}
.waa_c00001{width:394.828500px;}
.wb0_c00001{width:425.838000px;}
.wa0_c00001{width:477.718500px;}
.w97_c00001{width:479.430000px;}
.w2f_c00001{width:479.877000px;}
.wa2_c00001{width:480.330000px;}
.w9d_c00001{width:481.497000px;}
.w99_c00001{width:485.640000px;}
.w7_c00001{width:485.730000px;}
.w9b_c00001{width:486.180000px;}
.we_c00001{width:486.453000px;}
.w13_c00001{width:487.980000px;}
.w33_c00001{width:585.717000px;}
.w23_c00001{width:591.570000px;}
.wc_c00001{width:592.380000px;}
.waf_c00001{width:892.912500px;}
.w0_c00001{width:892.914000px;}
.w1_c00001{width:893.250000px;}
.x1_c00001{left:-838.913400px;}
.x1cf_c00001{left:-821.093400px;}
.x9b_c00001{left:-792.222600px;}
.x9c_c00001{left:-788.082600px;}
.x2_c00001{left:-765.293400px;}
.x198_c00001{left:-763.043400px;}
.xbd_c00001{left:-761.963400px;}
.x43_c00001{left:-759.983400px;}
.x8c_c00001{left:-757.103400px;}
.x1bc_c00001{left:-756.023400px;}
.x36_c00001{left:-754.673400px;}
.x35_c00001{left:-752.513400px;}
.x18a_c00001{left:-750.623400px;}
.x5e_c00001{left:-748.467900px;}
.x18e_c00001{left:-747.023400px;}
.x5d_c00001{left:-745.403400px;}
.x20_c00001{left:-744.233400px;}
.x23_c00001{left:-742.343400px;}
.x1b3_c00001{left:-740.543400px;}
.x27_c00001{left:-739.013400px;}
.x182_c00001{left:-737.118180px;}
.x18c_c00001{left:-735.683400px;}
.x5c_c00001{left:-734.513400px;}
.x3_c00001{left:-733.343400px;}
.x18b_c00001{left:-731.901060px;}
.x1b4_c00001{left:-730.009620px;}
.x181_c00001{left:-719.394120px;}
.x5a_c00001{left:-715.433400px;}
.x19b_c00001{left:-710.124450px;}
.x192_c00001{left:-709.045920px;}
.x188_c00001{left:-706.884930px;}
.x1a9_c00001{left:-705.800700px;}
.x25_c00001{left:-704.543400px;}
.x1bd_c00001{left:-702.920700px;}
.x1a5_c00001{left:-700.944840px;}
.x58_c00001{left:-684.293400px;}
.x19c_c00001{left:-660.353550px;}
.x32_c00001{left:-658.643400px;}
.x17f_c00001{left:-657.129870px;}
.x3e_c00001{left:-656.125740px;}
.xee_c00001{left:-650.903400px;}
.x24_c00001{left:-648.473400px;}
.x21_c00001{left:-645.863400px;}
.x13b_c00001{left:-641.993400px;}
.x16f_c00001{left:-638.843400px;}
.xf7_c00001{left:-628.043400px;}
.x1a1_c00001{left:-624.713400px;}
.x175_c00001{left:-622.643400px;}
.x1d0_c00001{left:-619.038900px;}
.x161_c00001{left:-615.627450px;}
.x155_c00001{left:-608.423400px;}
.x156_c00001{left:-599.063400px;}
.x1ba_c00001{left:-594.203400px;}
.x120_c00001{left:-589.433400px;}
.x1b8_c00001{left:-586.643400px;}
.x13f_c00001{left:-580.883400px;}
.x57_c00001{left:-578.003400px;}
.x113_c00001{left:-574.853550px;}
.x114_c00001{left:-572.873400px;}
.xf6_c00001{left:-569.453400px;}
.x157_c00001{left:-568.280970px;}
.xd4_c00001{left:-567.113400px;}
.x1bb_c00001{left:-563.423400px;}
.x141_c00001{left:-560.093400px;}
.x1ac_c00001{left:-558.563400px;}
.x1c1_c00001{left:-554.333400px;}
.x158_c00001{left:-552.353550px;}
.xc2_c00001{left:-550.553400px;}
.x1ad_c00001{left:-549.202770px;}
.x1c5_c00001{left:-544.976610px;}
.x15d_c00001{left:-542.723400px;}
.x197_c00001{left:-540.473400px;}
.x15b_c00001{left:-534.353550px;}
.x13c_c00001{left:-532.913400px;}
.xef_c00001{left:-529.763400px;}
.x154_c00001{left:-525.983400px;}
.x170_c00001{left:-524.453400px;}
.x8b_c00001{left:-522.203400px;}
.x65_c00001{left:-519.233400px;}
.x193_c00001{left:-518.148900px;}
.x26_c00001{left:-516.083400px;}
.x1a6_c00001{left:-514.278900px;}
.x1a0_c00001{left:-510.507900px;}
.x81_c00001{left:-502.493400px;}
.x115_c00001{left:-499.433400px;}
.x124_c00001{left:-498.173400px;}
.xf8_c00001{left:-490.973400px;}
.x118_c00001{left:-489.803400px;}
.x176_c00001{left:-487.373400px;}
.x1c2_c00001{left:-485.753400px;}
.x1c6_c00001{left:-484.313400px;}
.x11a_c00001{left:-481.433400px;}
.x15e_c00001{left:-479.003400px;}
.x11c_c00001{left:-476.753400px;}
.x110_c00001{left:-473.063400px;}
.x15c_c00001{left:-470.633400px;}
.x8a_c00001{left:-465.503400px;}
.x89_c00001{left:-464.153400px;}
.x37_c00001{left:-462.083400px;}
.x33_c00001{left:-460.373400px;}
.x1be_c00001{left:-457.225920px;}
.x162_c00001{left:-451.733400px;}
.xa7_c00001{left:-450.312600px;}
.x159_c00001{left:-444.263400px;}
.x121_c00001{left:-442.913400px;}
.x140_c00001{left:-440.753400px;}
.x173_c00001{left:-437.153400px;}
.xc3_c00001{left:-433.553400px;}
.xf4_c00001{left:-432.383400px;}
.x11d_c00001{left:-429.863400px;}
.x145_c00001{left:-428.333400px;}
.x111_c00001{left:-426.173400px;}
.x15f_c00001{left:-425.003400px;}
.x189_c00001{left:-422.303400px;}
.x142_c00001{left:-419.963400px;}
.xc7_c00001{left:-417.623400px;}
.xd5_c00001{left:-416.363400px;}
.x160_c00001{left:-411.953400px;}
.xcc_c00001{left:-407.993400px;}
.x127_c00001{left:-405.113400px;}
.x13d_c00001{left:-401.063400px;}
.xd0_c00001{left:-399.623400px;}
.x116_c00001{left:-397.643400px;}
.x9f_c00001{left:-394.332600px;}
.xf0_c00001{left:-392.783400px;}
.xbe_c00001{left:-391.253400px;}
.x167_c00001{left:-388.193400px;}
.x59_c00001{left:-387.023400px;}
.xa5_c00001{left:-385.962450px;}
.x122_c00001{left:-378.383400px;}
.x119_c00001{left:-370.013400px;}
.x11e_c00001{left:-365.333400px;}
.xf9_c00001{left:-362.633400px;}
.x80_c00001{left:-356.153400px;}
.xc8_c00001{left:-348.503400px;}
.x163_c00001{left:-337.613400px;}
.x117_c00001{left:-332.753400px;}
.xd9_c00001{left:-328.973400px;}
.xa0_c00001{left:-323.772600px;}
.xcd_c00001{left:-320.603400px;}
.xc4_c00001{left:-315.923400px;}
.xbf_c00001{left:-312.233400px;}
.x143_c00001{left:-308.363400px;}
.x174_c00001{left:-306.743400px;}
.x64_c00001{left:-304.493400px;}
.xa6_c00001{left:-302.982600px;}
.x9d_c00001{left:-284.172600px;}
.xd8_c00001{left:-276.773400px;}
.x125_c00001{left:-272.633400px;}
.xc9_c00001{left:-269.303400px;}
.xf1_c00001{left:-264.353400px;}
.x168_c00001{left:-261.203400px;}
.x171_c00001{left:-258.683400px;}
.x11b_c00001{left:-255.893400px;}
.x11f_c00001{left:-251.213400px;}
.x112_c00001{left:-247.523400px;}
.x3f_c00001{left:-243.923400px;}
.xce_c00001{left:-241.673400px;}
.x15a_c00001{left:-239.153400px;}
.xc5_c00001{left:-236.993400px;}
.x12b_c00001{left:-234.833400px;}
.xbc_c00001{left:-233.295930px;}
.x1d1_c00001{left:-224.213400px;}
.xca_c00001{left:-222.773400px;}
.xc6_c00001{left:-213.233400px;}
.xa1_c00001{left:-198.215670px;}
.xa3_c00001{left:-189.865380px;}
.x1aa_c00001{left:-182.455950px;}
.x7b_c00001{left:-178.941060px;}
.x185_c00001{left:-176.963400px;}
.x7a_c00001{left:-175.613400px;}
.x187_c00001{left:-173.633400px;}
.x22_c00001{left:-172.283400px;}
.x9e_c00001{left:-170.952450px;}
.x34_c00001{left:-168.323400px;}
.x194_c00001{left:-167.243400px;}
.x186_c00001{left:-165.623400px;}
.x180_c00001{left:-164.267850px;}
.xd6_c00001{left:-162.653400px;}
.x148_c00001{left:-160.043400px;}
.x19d_c00001{left:-157.159350px;}
.x1b2_c00001{left:-155.642670px;}
.xcf_c00001{left:-154.283400px;}
.x126_c00001{left:-152.663400px;}
.xf5_c00001{left:-151.133400px;}
.x146_c00001{left:-147.623400px;}
.xd1_c00001{left:-145.913400px;}
.x123_c00001{left:-144.293400px;}
.xcb_c00001{left:-141.233400px;}
.x144_c00001{left:-139.253400px;}
.xc0_c00001{left:-137.543400px;}
.x12c_c00001{left:-135.923400px;}
.xfa_c00001{left:-130.343400px;}
.xc1_c00001{left:-127.103400px;}
.x13e_c00001{left:-120.443550px;}
.xf2_c00001{left:-111.443550px;}
.xa2_c00001{left:-107.153040px;}
.x172_c00001{left:-104.963550px;}
.xa4_c00001{left:-98.802750px;}
.xd7_c00001{left:-54.743400px;}
.xd2_c00001{left:-46.373400px;}
.xd3_c00001{left:-38.003700px;}
.x147_c00001{left:-30.263550px;}
.xf3_c00001{left:-16.673550px;}
.x177_c00001{left:-12.083550px;}
.x0_c00001{left:0.000000px;}
.x14_c00001{left:4.950000px;}
.x129_c00001{left:7.380000px;}
.x31_c00001{left:8.820000px;}
.x60_c00001{left:10.170000px;}
.x85_c00001{left:12.150000px;}
.x1b_c00001{left:15.120000px;}
.x104_c00001{left:16.560000px;}
.x10_c00001{left:17.730000px;}
.x14c_c00001{left:22.230000px;}
.xff_c00001{left:23.310000px;}
.x105_c00001{left:24.930000px;}
.x19_c00001{left:26.010000px;}
.x1a_c00001{left:27.900000px;}
.x102_c00001{left:29.430000px;}
.x1e_c00001{left:31.230000px;}
.xa8_c00001{left:33.570000px;}
.xed_c00001{left:35.370000px;}
.xad_c00001{left:37.530000px;}
.x75_c00001{left:40.140000px;}
.x5f_c00001{left:42.570000px;}
.xec_c00001{left:44.010000px;}
.x150_c00001{left:45.090000px;}
.x128_c00001{left:46.170000px;}
.x6e_c00001{left:48.510000px;}
.x106_c00001{left:50.940000px;}
.x7_c00001{left:54.000000px;}
.x103_c00001{left:55.620000px;}
.xb2_c00001{left:57.060000px;}
.x10b_c00001{left:59.310000px;}
.x50_c00001{left:61.560000px;}
.x38_c00001{left:63.450000px;}
.x13_c00001{left:65.700000px;}
.x14e_c00001{left:68.130000px;}
.x6c_c00001{left:70.020000px;}
.x4f_c00001{left:71.370000px;}
.xb4_c00001{left:73.710000px;}
.x135_c00001{left:74.790000px;}
.x56_c00001{left:75.870000px;}
.x9a_c00001{left:77.400150px;}
.x133_c00001{left:78.660000px;}
.x10a_c00001{left:81.180000px;}
.x77_c00001{left:83.070000px;}
.x76_c00001{left:84.510000px;}
.xe5_c00001{left:85.590000px;}
.xb0_c00001{left:86.760000px;}
.xb_c00001{left:88.020000px;}
.xb8_c00001{left:90.450000px;}
.x54_c00001{left:92.610000px;}
.xba_c00001{left:94.319700px;}
.x13a_c00001{left:95.400000px;}
.xe7_c00001{left:98.010000px;}
.xe1_c00001{left:99.090000px;}
.x55_c00001{left:100.260000px;}
.x136_c00001{left:101.430000px;}
.xe4_c00001{left:102.600000px;}
.x8f_c00001{left:104.830800px;}
.xe2_c00001{left:106.380000px;}
.xe9_c00001{left:107.460000px;}
.x10d_c00001{left:108.900000px;}
.xe3_c00001{left:110.880000px;}
.x1b6_c00001{left:112.770000px;}
.xe8_c00001{left:115.020000px;}
.xe6_c00001{left:118.440000px;}
.x1c7_c00001{left:119.520000px;}
.xa_c00001{left:120.600000px;}
.xd_c00001{left:122.670000px;}
.x66_c00001{left:126.540000px;}
.x5_c00001{left:127.620000px;}
.x108_c00001{left:129.240000px;}
.x134_c00001{left:130.410000px;}
.x44_c00001{left:131.670000px;}
.x2f_c00001{left:133.294500px;}
.x39_c00001{left:135.090000px;}
.x82_c00001{left:136.620000px;}
.x16_c00001{left:138.960000px;}
.x2c_c00001{left:140.400000px;}
.x1b0_c00001{left:141.570000px;}
.x2b_c00001{left:142.654500px;}
.x63_c00001{left:143.730000px;}
.x2a_c00001{left:144.895500px;}
.x109_c00001{left:145.980000px;}
.x29_c00001{left:147.960000px;}
.x17d_c00001{left:149.040000px;}
.x17_c00001{left:150.124500px;}
.xe_c00001{left:151.650000px;}
.x14f_c00001{left:153.360000px;}
.x40_c00001{left:155.070000px;}
.x17a_c00001{left:156.960900px;}
.x5b_c00001{left:158.400000px;}
.x6_c00001{left:159.570000px;}
.x184_c00001{left:161.012340px;}
.x1b1_c00001{left:162.903780px;}
.x8_c00001{left:164.070000px;}
.x2e_c00001{left:165.600000px;}
.xb1_c00001{left:167.760000px;}
.x179_c00001{left:173.524950px;}
.xb3_c00001{left:176.130000px;}
.x1ae_c00001{left:177.210000px;}
.x1c3_c00001{left:178.560000px;}
.x1d2_c00001{left:180.720000px;}
.x199_c00001{left:182.788950px;}
.xb5_c00001{left:184.500000px;}
.x183_c00001{left:186.030000px;}
.x87_c00001{left:187.560000px;}
.xaf_c00001{left:189.180000px;}
.xb6_c00001{left:192.870000px;}
.x86_c00001{left:198.900000px;}
.x83_c00001{left:200.250000px;}
.x61_c00001{left:201.780000px;}
.x30_c00001{left:203.220000px;}
.x3a_c00001{left:227.070000px;}
.xf_c00001{left:229.320000px;}
.x17b_c00001{left:230.940000px;}
.x19a_c00001{left:232.560000px;}
.x18_c00001{left:234.270000px;}
.x17e_c00001{left:235.783530px;}
.x3c_c00001{left:236.787660px;}
.x93_c00001{left:238.840500px;}
.x1b9_c00001{left:240.120000px;}
.x178_c00001{left:241.200000px;}
.x18f_c00001{left:242.820000px;}
.x1c_c00001{left:244.440000px;}
.x12d_c00001{left:245.610000px;}
.x11_c00001{left:247.050000px;}
.x169_c00001{left:248.760000px;}
.x137_c00001{left:250.920000px;}
.x16c_c00001{left:254.070000px;}
.x4e_c00001{left:255.150000px;}
.x1c4_c00001{left:258.120000px;}
.x4b_c00001{left:260.366580px;}
.x1cd_c00001{left:263.250000px;}
.x149_c00001{left:265.770000px;}
.x41_c00001{left:267.210000px;}
.xfb_c00001{left:273.870000px;}
.x151_c00001{left:277.290000px;}
.x1c8_c00001{left:281.520000px;}
.x67_c00001{left:284.490000px;}
.x71_c00001{left:289.710000px;}
.x14a_c00001{left:293.850000px;}
.x1b5_c00001{left:298.710000px;}
.x42_c00001{left:301.230000px;}
.x107_c00001{left:303.480000px;}
.x1b7_c00001{left:306.270000px;}
.x7e_c00001{left:308.250000px;}
.x1d5_c00001{left:311.130000px;}
.x9_c00001{left:314.910000px;}
.x10e_c00001{left:318.060000px;}
.xfc_c00001{left:320.040000px;}
.x14b_c00001{left:324.632430px;}
.x1a3_c00001{left:334.795500px;}
.x164_c00001{left:340.560000px;}
.xb9_c00001{left:342.360000px;}
.x1ab_c00001{left:343.712160px;}
.x1c0_c00001{left:347.940000px;}
.x190_c00001{left:352.440000px;}
.x12e_c00001{left:354.780000px;}
.xdc_c00001{left:357.930000px;}
.x8d_c00001{left:359.460000px;}
.x1cc_c00001{left:361.530000px;}
.x3b_c00001{left:362.880000px;}
.x7c_c00001{left:366.750000px;}
.x16d_c00001{left:368.460000px;}
.x1ce_c00001{left:369.630000px;}
.x88_c00001{left:370.710000px;}
.x2d_c00001{left:372.960000px;}
.x191_c00001{left:374.764500px;}
.x1d_c00001{left:376.830000px;}
.x1a4_c00001{left:378.634500px;}
.x19f_c00001{left:382.405500px;}
.x7f_c00001{left:390.420000px;}
.x28_c00001{left:394.200000px;}
.x19e_c00001{left:399.060000px;}
.x1bf_c00001{left:401.310000px;}
.x45_c00001{left:404.190000px;}
.x7d_c00001{left:409.410000px;}
.x15_c00001{left:413.190000px;}
.x8e_c00001{left:414.720000px;}
.xc_c00001{left:417.330000px;}
.x3d_c00001{left:420.390000px;}
.xfd_c00001{left:425.070000px;}
.x1a8_c00001{left:431.553420px;}
.x14d_c00001{left:435.870000px;}
.x94_c00001{left:437.290500px;}
.x165_c00001{left:441.180000px;}
.x1c9_c00001{left:443.610000px;}
.x1cb_c00001{left:451.710000px;}
.xa9_c00001{left:459.360000px;}
.x62_c00001{left:465.750000px;}
.x68_c00001{left:468.270000px;}
.x1a2_c00001{left:470.700000px;}
.xfe_c00001{left:471.960000px;}
.xdb_c00001{left:475.290000px;}
.x166_c00001{left:484.650000px;}
.x12f_c00001{left:486.630000px;}
.x10f_c00001{left:487.800000px;}
.x46_c00001{left:489.240000px;}
.x138_c00001{left:491.850000px;}
.xdd_c00001{left:494.910000px;}
.x16a_c00001{left:498.510000px;}
.xea_c00001{left:500.130000px;}
.xbb_c00001{left:501.660000px;}
.x16e_c00001{left:503.820000px;}
.xac_c00001{left:506.880000px;}
.x1d3_c00001{left:519.120000px;}
.x95_c00001{left:520.540500px;}
.x10c_c00001{left:531.270000px;}
.x100_c00001{left:536.490000px;}
.x6d_c00001{left:551.880000px;}
.x153_c00001{left:580.410000px;}
.x48_c00001{left:585.270000px;}
.x47_c00001{left:590.490000px;}
.x90_c00001{left:603.520500px;}
.x1ca_c00001{left:605.700000px;}
.x91_c00001{left:608.740800px;}
.x130_c00001{left:614.880000px;}
.xda_c00001{left:616.140000px;}
.x139_c00001{left:620.190000px;}
.xde_c00001{left:623.340000px;}
.xeb_c00001{left:628.560000px;}
.x69_c00001{left:634.770000px;}
.x6a_c00001{left:640.080000px;}
.x12a_c00001{left:645.390000px;}
.x101_c00001{left:650.700000px;}
.xb7_c00001{left:659.610000px;}
.xae_c00001{left:664.920000px;}
.x52_c00001{left:669.497850px;}
.x4c_c00001{left:677.848140px;}
.x4a_c00001{left:691.470000px;}
.x1d4_c00001{left:692.922420px;}
.x96_c00001{left:694.697730px;}
.x49_c00001{left:696.780000px;}
.x98_c00001{left:703.054140px;}
.x84_c00001{left:709.110000px;}
.x1a7_c00001{left:710.457450px;}
.x79_c00001{left:713.977470px;}
.x1f_c00001{left:715.770000px;}
.x78_c00001{left:717.300000px;}
.x17c_c00001{left:719.281800px;}
.x12_c00001{left:720.631080px;}
.x92_c00001{left:721.960950px;}
.x196_c00001{left:724.320000px;}
.x18d_c00001{left:726.304350px;}
.x73_c00001{left:727.646940px;}
.x195_c00001{left:730.620000px;}
.x6f_c00001{left:736.020000px;}
.x1af_c00001{left:737.270730px;}
.x152_c00001{left:738.990000px;}
.x6b_c00001{left:749.610000px;}
.x53_c00001{left:755.092440px;}
.xaa_c00001{left:760.590000px;}
.x4d_c00001{left:763.442730px;}
.xab_c00001{left:765.810000px;}
.x132_c00001{left:767.250000px;}
.x131_c00001{left:772.470000px;}
.xdf_c00001{left:776.250000px;}
.xe0_c00001{left:781.470000px;}
.x16b_c00001{left:782.730000px;}
.x51_c00001{left:784.252170px;}
.x97_c00001{left:785.760360px;}
.x99_c00001{left:794.116770px;}
.x4_c00001{left:804.366150px;}
.x74_c00001{left:820.257750px;}
.x70_c00001{left:828.630000px;}
.x72_c00001{left:849.424860px;}
.x1dc_c00001{left:934.685250px;}
.x1df_c00001{left:941.229900px;}
.x1dd_c00001{left:960.183316px;}
.x1e1_c00001{left:964.568700px;}
.x1e0_c00001{left:978.328139px;}
.x1de_c00001{left:985.681381px;}
.x1d6_c00001{left:1097.873700px;}
.x1d7_c00001{left:1152.963750px;}
.x1d8_c00001{left:1318.095450px;}
.x1da_c00001{left:1332.537450px;}
.x1db_c00001{left:1470.301500px;}
.x1d9_c00001{left:1510.854150px;}
@media print{
.v28_c00001{vertical-align:-53.758933pt;}
.v7_c00001{vertical-align:-52.821120pt;}
.va_c00001{vertical-align:-48.663360pt;}
.v29_c00001{vertical-align:-30.400533pt;}
.v8_c00001{vertical-align:-28.167360pt;}
.v1e_c00001{vertical-align:-24.320000pt;}
.v5_c00001{vertical-align:-22.077120pt;}
.v1_c00001{vertical-align:-14.385280pt;}
.v22_c00001{vertical-align:-11.520000pt;}
.v9_c00001{vertical-align:-10.540800pt;}
.v13_c00001{vertical-align:-8.320000pt;}
.v23_c00001{vertical-align:-3.840533pt;}
.v27_c00001{vertical-align:-2.559467pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v21_c00001{vertical-align:1.909440pt;}
.v31_c00001{vertical-align:3.840000pt;}
.v20_c00001{vertical-align:4.792320pt;}
.v18_c00001{vertical-align:6.388800pt;}
.v14_c00001{vertical-align:7.377067pt;}
.v1c_c00001{vertical-align:9.600000pt;}
.v26_c00001{vertical-align:10.879467pt;}
.vf_c00001{vertical-align:14.080533pt;}
.v1b_c00001{vertical-align:18.885760pt;}
.v2_c00001{vertical-align:24.642240pt;}
.v2f_c00001{vertical-align:25.599467pt;}
.v6_c00001{vertical-align:26.880000pt;}
.v2b_c00001{vertical-align:27.840000pt;}
.v2a_c00001{vertical-align:30.401067pt;}
.v19_c00001{vertical-align:31.664533pt;}
.v17_c00001{vertical-align:34.548800pt;}
.v10_c00001{vertical-align:37.453120pt;}
.v11_c00001{vertical-align:38.720000pt;}
.vb_c00001{vertical-align:39.689600pt;}
.vc_c00001{vertical-align:40.643520pt;}
.v24_c00001{vertical-align:42.249600pt;}
.v2d_c00001{vertical-align:43.189227pt;}
.v1f_c00001{vertical-align:45.751680pt;}
.v2c_c00001{vertical-align:47.045760pt;}
.v4_c00001{vertical-align:48.944000pt;}
.v3_c00001{vertical-align:53.440000pt;}
.ve_c00001{vertical-align:55.369600pt;}
.v12_c00001{vertical-align:56.306133pt;}
.vd_c00001{vertical-align:59.544853pt;}
.v16_c00001{vertical-align:60.493867pt;}
.v1a_c00001{vertical-align:63.039467pt;}
.v30_c00001{vertical-align:63.995200pt;}
.v25_c00001{vertical-align:65.594667pt;}
.v1d_c00001{vertical-align:66.868587pt;}
.v15_c00001{vertical-align:68.800533pt;}
.v2e_c00001{vertical-align:97.921067pt;}
.ls15b_c00001{letter-spacing:-7.880587pt;}
.ls15c_c00001{letter-spacing:-5.253733pt;}
.ls30_c00001{letter-spacing:-0.978880pt;}
.ls31_c00001{letter-spacing:-0.638400pt;}
.ls157_c00001{letter-spacing:-0.624000pt;}
.lsd_c00001{letter-spacing:-0.576000pt;}
.ls9_c00001{letter-spacing:-0.512000pt;}
.ls33_c00001{letter-spacing:-0.468160pt;}
.ls28_c00001{letter-spacing:-0.425600pt;}
.ls127_c00001{letter-spacing:-0.336960pt;}
.ls153_c00001{letter-spacing:-0.336000pt;}
.lse_c00001{letter-spacing:-0.320000pt;}
.ls11e_c00001{letter-spacing:-0.299520pt;}
.lsa_c00001{letter-spacing:-0.256000pt;}
.ls50_c00001{letter-spacing:-0.212800pt;}
.ls101_c00001{letter-spacing:-0.192000pt;}
.ls48_c00001{letter-spacing:-0.175680pt;}
.ls35_c00001{letter-spacing:-0.170240pt;}
.ls137_c00001{letter-spacing:-0.149760pt;}
.ls1f_c00001{letter-spacing:-0.144000pt;}
.ls5_c00001{letter-spacing:-0.128000pt;}
.ls154_c00001{letter-spacing:-0.127680pt;}
.ls46_c00001{letter-spacing:-0.117120pt;}
.ls21_c00001{letter-spacing:-0.096000pt;}
.ls29_c00001{letter-spacing:-0.085120pt;}
.lse1_c00001{letter-spacing:-0.067462pt;}
.ls4_c00001{letter-spacing:-0.064000pt;}
.ls47_c00001{letter-spacing:-0.058560pt;}
.ls155_c00001{letter-spacing:-0.042560pt;}
.lse8_c00001{letter-spacing:-0.037440pt;}
.ls3_c00001{letter-spacing:0.000000pt;}
.lse9_c00001{letter-spacing:0.000107pt;}
.lse3_c00001{letter-spacing:0.000640pt;}
.ls2e_c00001{letter-spacing:0.042560pt;}
.lsf0_c00001{letter-spacing:0.048000pt;}
.ls40_c00001{letter-spacing:0.058560pt;}
.ls0_c00001{letter-spacing:0.064000pt;}
.ls93_c00001{letter-spacing:0.070080pt;}
.ls27_c00001{letter-spacing:0.085120pt;}
.ls152_c00001{letter-spacing:0.096000pt;}
.ls42_c00001{letter-spacing:0.117120pt;}
.ls2_c00001{letter-spacing:0.128000pt;}
.ls151_c00001{letter-spacing:0.144000pt;}
.lse5_c00001{letter-spacing:0.149760pt;}
.lsc_c00001{letter-spacing:0.160000pt;}
.ls20_c00001{letter-spacing:0.170240pt;}
.ls62_c00001{letter-spacing:0.175680pt;}
.ls135_c00001{letter-spacing:0.176320pt;}
.lsf9_c00001{letter-spacing:0.205440pt;}
.ls2c_c00001{letter-spacing:0.212800pt;}
.ls3d_c00001{letter-spacing:0.227520pt;}
.ls141_c00001{letter-spacing:0.234240pt;}
.ls2d_c00001{letter-spacing:0.255360pt;}
.ls49_c00001{letter-spacing:0.292800pt;}
.ls16_c00001{letter-spacing:0.320000pt;}
.ls3c_c00001{letter-spacing:0.340480pt;}
.ls94_c00001{letter-spacing:0.351360pt;}
.ls13e_c00001{letter-spacing:0.384000pt;}
.lsde_c00001{letter-spacing:0.448000pt;}
.lsba_c00001{letter-spacing:0.468480pt;}
.ls134_c00001{letter-spacing:4.040640pt;}
.ls13c_c00001{letter-spacing:4.392000pt;}
.ls144_c00001{letter-spacing:5.973120pt;}
.ls12a_c00001{letter-spacing:6.285440pt;}
.ls22_c00001{letter-spacing:11.746560pt;}
.ls4f_c00001{letter-spacing:11.747520pt;}
.ls4a_c00001{letter-spacing:12.067520pt;}
.ls4e_c00001{letter-spacing:12.068053pt;}
.ls4d_c00001{letter-spacing:12.087040pt;}
.ls156_c00001{letter-spacing:12.192000pt;}
.ls4c_c00001{letter-spacing:12.810560pt;}
.ls3b_c00001{letter-spacing:12.816640pt;}
.ls4b_c00001{letter-spacing:13.023360pt;}
.ls3a_c00001{letter-spacing:13.027520pt;}
.ls1e_c00001{letter-spacing:13.440000pt;}
.ls34_c00001{letter-spacing:13.448960pt;}
.ls1d_c00001{letter-spacing:13.456000pt;}
.ls2b_c00001{letter-spacing:13.989472pt;}
.ls26_c00001{letter-spacing:13.993728pt;}
.ls1c_c00001{letter-spacing:14.129920pt;}
.ls25_c00001{letter-spacing:14.300160pt;}
.ls37_c00001{letter-spacing:14.640640pt;}
.ls36_c00001{letter-spacing:14.768320pt;}
.ls24_c00001{letter-spacing:15.406720pt;}
.ls39_c00001{letter-spacing:15.534400pt;}
.ls146_c00001{letter-spacing:15.740928pt;}
.lsb_c00001{letter-spacing:15.808000pt;}
.ls14_c00001{letter-spacing:15.820800pt;}
.ls12_c00001{letter-spacing:15.833600pt;}
.ls125_c00001{letter-spacing:16.000000pt;}
.ls1_c00001{letter-spacing:16.128000pt;}
.ls1a_c00001{letter-spacing:16.140800pt;}
.ls3e_c00001{letter-spacing:16.227520pt;}
.ls6_c00001{letter-spacing:16.448000pt;}
.ls11_c00001{letter-spacing:16.768000pt;}
.ls32_c00001{letter-spacing:17.330432pt;}
.lse0_c00001{letter-spacing:17.728000pt;}
.lsdf_c00001{letter-spacing:18.048000pt;}
.ls13_c00001{letter-spacing:18.368000pt;}
.ls18_c00001{letter-spacing:18.688000pt;}
.ls2f_c00001{letter-spacing:18.854080pt;}
.ls17_c00001{letter-spacing:19.008000pt;}
.ls15_c00001{letter-spacing:19.328000pt;}
.ls15a_c00001{letter-spacing:19.436064pt;}
.ls54_c00001{letter-spacing:19.449920pt;}
.ls55_c00001{letter-spacing:19.747840pt;}
.ls56_c00001{letter-spacing:19.960640pt;}
.ls38_c00001{letter-spacing:20.216000pt;}
.ls8_c00001{letter-spacing:23.168000pt;}
.ls102_c00001{letter-spacing:23.808000pt;}
.ls58_c00001{letter-spacing:23.892480pt;}
.ls41_c00001{letter-spacing:24.185280pt;}
.ls51_c00001{letter-spacing:24.547520pt;}
.ls133_c00001{letter-spacing:25.280000pt;}
.ls19_c00001{letter-spacing:25.408000pt;}
.ls159_c00001{letter-spacing:29.120000pt;}
.ls86_c00001{letter-spacing:31.856640pt;}
.ls7_c00001{letter-spacing:32.128000pt;}
.ls158_c00001{letter-spacing:33.280000pt;}
.ls1b_c00001{letter-spacing:35.008000pt;}
.ls100_c00001{letter-spacing:35.968000pt;}
.ls10_c00001{letter-spacing:36.288000pt;}
.lsf_c00001{letter-spacing:36.608000pt;}
.ls14a_c00001{letter-spacing:38.319680pt;}
.ls13b_c00001{letter-spacing:39.528864pt;}
.ls57_c00001{letter-spacing:41.460480pt;}
.lsbb_c00001{letter-spacing:50.771520pt;}
.ls12c_c00001{letter-spacing:52.381760pt;}
.ls12e_c00001{letter-spacing:52.382293pt;}
.ls8d_c00001{letter-spacing:64.240320pt;}
.ls97_c00001{letter-spacing:81.164160pt;}
.ls98_c00001{letter-spacing:83.389440pt;}
.ls3f_c00001{letter-spacing:88.191360pt;}
.ls99_c00001{letter-spacing:91.060800pt;}
.ls6a_c00001{letter-spacing:91.412160pt;}
.ls88_c00001{letter-spacing:93.988800pt;}
.ls69_c00001{letter-spacing:101.660160pt;}
.ls10d_c00001{letter-spacing:111.558080pt;}
.ls14e_c00001{letter-spacing:118.898240pt;}
.lsaf_c00001{letter-spacing:119.286720pt;}
.ls68_c00001{letter-spacing:124.030080pt;}
.ls8e_c00001{letter-spacing:126.958080pt;}
.lsaa_c00001{letter-spacing:131.057280pt;}
.lsa8_c00001{letter-spacing:132.052800pt;}
.ls11d_c00001{letter-spacing:133.024960pt;}
.lsdc_c00001{letter-spacing:138.435840pt;}
.ls66_c00001{letter-spacing:139.431360pt;}
.ls7f_c00001{letter-spacing:142.944960pt;}
.lsa9_c00001{letter-spacing:143.237760pt;}
.lse4_c00001{letter-spacing:144.496640pt;}
.ls53_c00001{letter-spacing:148.039680pt;}
.ls59_c00001{letter-spacing:148.391040pt;}
.lsae_c00001{letter-spacing:153.837120pt;}
.lsdb_c00001{letter-spacing:155.711040pt;}
.ls89_c00001{letter-spacing:156.706560pt;}
.ls80_c00001{letter-spacing:162.152640pt;}
.lsac_c00001{letter-spacing:169.179840pt;}
.ls9e_c00001{letter-spacing:183.234240pt;}
.lsda_c00001{letter-spacing:191.901120pt;}
.ls5a_c00001{letter-spacing:193.482240pt;}
.ls43_c00001{letter-spacing:194.770560pt;}
.ls78_c00001{letter-spacing:197.991360pt;}
.ls132_c00001{letter-spacing:201.175680pt;}
.lsd2_c00001{letter-spacing:202.149120pt;}
.ls9f_c00001{letter-spacing:205.662720pt;}
.ls60_c00001{letter-spacing:207.888000pt;}
.ls5d_c00001{letter-spacing:208.239360pt;}
.ls67_c00001{letter-spacing:208.532160pt;}
.ls126_c00001{letter-spacing:210.786560pt;}
.ls129_c00001{letter-spacing:210.787093pt;}
.ls9c_c00001{letter-spacing:211.108800pt;}
.lsab_c00001{letter-spacing:216.496320pt;}
.lsd3_c00001{letter-spacing:218.136000pt;}
.lscc_c00001{letter-spacing:220.712640pt;}
.lsdd_c00001{letter-spacing:221.649600pt;}
.ls7b_c00001{letter-spacing:223.874880pt;}
.ls7a_c00001{letter-spacing:226.100160pt;}
.ls75_c00001{letter-spacing:227.739840pt;}
.ls45_c00001{letter-spacing:231.604800pt;}
.ls65_c00001{letter-spacing:237.987840pt;}
.ls96_c00001{letter-spacing:240.213120pt;}
.lsbc_c00001{letter-spacing:247.591680pt;}
.lsc9_c00001{letter-spacing:250.461120pt;}
.lsd1_c00001{letter-spacing:251.398080pt;}
.lsc5_c00001{letter-spacing:264.866880pt;}
.lsb6_c00001{letter-spacing:267.736320pt;}
.ls131_c00001{letter-spacing:268.058240pt;}
.lsca_c00001{letter-spacing:269.317440pt;}
.ls71_c00001{letter-spacing:271.894080pt;}
.lsa7_c00001{letter-spacing:279.858240pt;}
.ls64_c00001{letter-spacing:281.205120pt;}
.lsd0_c00001{letter-spacing:287.236800pt;}
.lsad_c00001{letter-spacing:291.394560pt;}
.lsc2_c00001{letter-spacing:294.615360pt;}
.ls5b_c00001{letter-spacing:295.259520pt;}
.ls91_c00001{letter-spacing:303.223680pt;}
.ls8a_c00001{letter-spacing:303.282240pt;}
.ls44_c00001{letter-spacing:305.156160pt;}
.ls73_c00001{letter-spacing:309.665280pt;}
.ls52_c00001{letter-spacing:316.341120pt;}
.lscb_c00001{letter-spacing:316.985280pt;}
.lsb5_c00001{letter-spacing:321.143040pt;}
.ls79_c00001{letter-spacing:321.494400pt;}
.lsa4_c00001{letter-spacing:321.787200pt;}
.ls90_c00001{letter-spacing:324.071040pt;}
.lscd_c00001{letter-spacing:334.260480pt;}
.ls7e_c00001{letter-spacing:339.413760pt;}
.ls84_c00001{letter-spacing:339.472320pt;}
.ls77_c00001{letter-spacing:340.702080pt;}
.ls138_c00001{letter-spacing:341.005440pt;}
.lsbe_c00001{letter-spacing:343.220160pt;}
.ls124_c00001{letter-spacing:343.659200pt;}
.ls128_c00001{letter-spacing:343.659733pt;}
.lsc7_c00001{letter-spacing:346.792320pt;}
.ls82_c00001{letter-spacing:351.242880pt;}
.ls9a_c00001{letter-spacing:351.594240pt;}
.ls6f_c00001{letter-spacing:353.819520pt;}
.ls139_c00001{letter-spacing:359.861760pt;}
.lsc4_c00001{letter-spacing:361.198080pt;}
.lsbd_c00001{letter-spacing:363.657600pt;}
.lsc6_c00001{letter-spacing:364.067520pt;}
.lsa1_c00001{letter-spacing:366.000000pt;}
.ls72_c00001{letter-spacing:370.450560pt;}
.lsd5_c00001{letter-spacing:378.473280pt;}
.ls6c_c00001{letter-spacing:383.568000pt;}
.ls9d_c00001{letter-spacing:384.504960pt;}
.lsc0_c00001{letter-spacing:390.946560pt;}
.ls95_c00001{letter-spacing:395.748480pt;}
.ls83_c00001{letter-spacing:399.906240pt;}
.lsce_c00001{letter-spacing:400.199040pt;}
.lsb3_c00001{letter-spacing:406.980288pt;}
.lsbf_c00001{letter-spacing:408.221760pt;}
.ls6b_c00001{letter-spacing:414.604800pt;}
.ls6e_c00001{letter-spacing:414.663360pt;}
.ls9b_c00001{letter-spacing:424.852800pt;}
.ls74_c00001{letter-spacing:426.785280pt;}
.lsfb_c00001{letter-spacing:428.044160pt;}
.lsc8_c00001{letter-spacing:429.947520pt;}
.lsb8_c00001{letter-spacing:436.728768pt;}
.lsf8_c00001{letter-spacing:451.743040pt;}
.ls85_c00001{letter-spacing:456.182400pt;}
.lsf6_c00001{letter-spacing:460.690560pt;}
.lsb4_c00001{letter-spacing:461.335680pt;}
.ls70_c00001{letter-spacing:470.939520pt;}
.lsc1_c00001{letter-spacing:474.160320pt;}
.lsa6_c00001{letter-spacing:476.034240pt;}
.lscf_c00001{letter-spacing:476.385600pt;}
.ls13a_c00001{letter-spacing:476.685120pt;}
.ls149_c00001{letter-spacing:481.496960pt;}
.lsf2_c00001{letter-spacing:483.090560pt;}
.ls150_c00001{letter-spacing:484.664000pt;}
.ls76_c00001{letter-spacing:486.926400pt;}
.lsa5_c00001{letter-spacing:487.863360pt;}
.lsb9_c00001{letter-spacing:491.084160pt;}
.lsa3_c00001{letter-spacing:501.624960pt;}
.lsd9_c00001{letter-spacing:506.134080pt;}
.ls87_c00001{letter-spacing:509.354880pt;}
.ls10f_c00001{letter-spacing:516.356800pt;}
.lsd8_c00001{letter-spacing:517.963200pt;}
.ls7d_c00001{letter-spacing:528.504000pt;}
.ls112_c00001{letter-spacing:529.864960pt;}
.ls6d_c00001{letter-spacing:531.080640pt;}
.ls130_c00001{letter-spacing:536.855040pt;}
.ls147_c00001{letter-spacing:537.485120pt;}
.ls7c_c00001{letter-spacing:542.265600pt;}
.lsa0_c00001{letter-spacing:545.779200pt;}
.lsed_c00001{letter-spacing:545.848960pt;}
.lsff_c00001{letter-spacing:546.129600pt;}
.lsb2_c00001{letter-spacing:548.648640pt;}
.lsc3_c00001{letter-spacing:550.288320pt;}
.lsd6_c00001{letter-spacing:561.473280pt;}
.lsa2_c00001{letter-spacing:561.824640pt;}
.lsd4_c00001{letter-spacing:562.117440pt;}
.ls136_c00001{letter-spacing:566.594773pt;}
.lsb1_c00001{letter-spacing:570.784320pt;}
.ls103_c00001{letter-spacing:573.979840pt;}
.lse7_c00001{letter-spacing:580.651520pt;}
.ls81_c00001{letter-spacing:586.419840pt;}
.ls13f_c00001{letter-spacing:587.123424pt;}
.ls8f_c00001{letter-spacing:595.133568pt;}
.lsd7_c00001{letter-spacing:605.627520pt;}
.ls11b_c00001{letter-spacing:606.599680pt;}
.lsb0_c00001{letter-spacing:607.208640pt;}
.ls111_c00001{letter-spacing:621.413440pt;}
.ls106_c00001{letter-spacing:623.580160pt;}
.ls63_c00001{letter-spacing:624.542400pt;}
.ls92_c00001{letter-spacing:624.940608pt;}
.ls5f_c00001{letter-spacing:631.569600pt;}
.lsb7_c00001{letter-spacing:636.957120pt;}
.ls14f_c00001{letter-spacing:650.798720pt;}
.ls13d_c00001{letter-spacing:682.113600pt;}
.lsf1_c00001{letter-spacing:709.336320pt;}
.ls108_c00001{letter-spacing:710.600320pt;}
.ls14d_c00001{letter-spacing:721.832000pt;}
.ls8b_c00001{letter-spacing:765.320640pt;}
.ls14c_c00001{letter-spacing:778.459520pt;}
.ls5c_c00001{letter-spacing:800.222400pt;}
.ls8c_c00001{letter-spacing:825.168960pt;}
.ls14b_c00001{letter-spacing:825.483200pt;}
.ls12b_c00001{letter-spacing:835.094720pt;}
.ls10b_c00001{letter-spacing:835.476800pt;}
.ls140_c00001{letter-spacing:854.280000pt;}
.ls148_c00001{letter-spacing:878.943680pt;}
.lsef_c00001{letter-spacing:909.025920pt;}
.ls105_c00001{letter-spacing:920.830720pt;}
.ls10e_c00001{letter-spacing:1018.196800pt;}
.ls61_c00001{letter-spacing:1027.728000pt;}
.lsfc_c00001{letter-spacing:1039.802560pt;}
.lsfd_c00001{letter-spacing:1044.663040pt;}
.ls5e_c00001{letter-spacing:1056.188160pt;}
.lsfa_c00001{letter-spacing:1070.030784pt;}
.ls114_c00001{letter-spacing:1090.154240pt;}
.ls107_c00001{letter-spacing:1093.680640pt;}
.ls143_c00001{letter-spacing:1123.070400pt;}
.ls104_c00001{letter-spacing:1129.187200pt;}
.lsee_c00001{letter-spacing:1132.385920pt;}
.ls113_c00001{letter-spacing:1143.883200pt;}
.lsfe_c00001{letter-spacing:1203.419200pt;}
.ls12d_c00001{letter-spacing:1205.662400pt;}
.ls12f_c00001{letter-spacing:1205.662933pt;}
.ls110_c00001{letter-spacing:1215.882560pt;}
.lsf3_c00001{letter-spacing:1218.751040pt;}
.ls23_c00001{letter-spacing:1234.129173pt;}
.ls2a_c00001{letter-spacing:1234.129707pt;}
.ls142_c00001{letter-spacing:1250.438400pt;}
.ls123_c00001{letter-spacing:1252.028800pt;}
.lsf4_c00001{letter-spacing:1254.002880pt;}
.ls116_c00001{letter-spacing:1308.983680pt;}
.ls119_c00001{letter-spacing:1332.373120pt;}
.ls10a_c00001{letter-spacing:1336.574720pt;}
.ls10c_c00001{letter-spacing:1377.186240pt;}
.lsf7_c00001{letter-spacing:1394.752640pt;}
.ls11f_c00001{letter-spacing:1396.339840pt;}
.ls145_c00001{letter-spacing:1411.727360pt;}
.lseb_c00001{letter-spacing:1421.310080pt;}
.lsea_c00001{letter-spacing:1433.208640pt;}
.lsec_c00001{letter-spacing:1442.069120pt;}
.ls11a_c00001{letter-spacing:1448.853440pt;}
.lse6_c00001{letter-spacing:1461.042560pt;}
.ls11c_c00001{letter-spacing:1464.543040pt;}
.ls109_c00001{letter-spacing:1481.832960pt;}
.ls117_c00001{letter-spacing:1546.472960pt;}
.ls121_c00001{letter-spacing:1573.674880pt;}
.ls118_c00001{letter-spacing:1607.897920pt;}
.lsf5_c00001{letter-spacing:1615.610880pt;}
.ls122_c00001{letter-spacing:1616.217920pt;}
.ls120_c00001{letter-spacing:1622.596480pt;}
.lse2_c00001{letter-spacing:1638.010880pt;}
.ls115_c00001{letter-spacing:1638.617920pt;}
.ws2d7_c00001{word-spacing:-21.270039pt;}
.ws15b_c00001{word-spacing:-18.686953pt;}
.ws158_c00001{word-spacing:-17.792000pt;}
.wsd2_c00001{word-spacing:-17.728000pt;}
.ws159_c00001{word-spacing:-17.664000pt;}
.ws16e_c00001{word-spacing:-17.600000pt;}
.ws255_c00001{word-spacing:-16.396800pt;}
.ws179_c00001{word-spacing:-16.338240pt;}
.ws89_c00001{word-spacing:-16.320000pt;}
.ws15c_c00001{word-spacing:-16.221120pt;}
.ws25_c00001{word-spacing:-16.128000pt;}
.ws0_c00001{word-spacing:-16.064000pt;}
.ws24_c00001{word-spacing:-16.000000pt;}
.ws2_c00001{word-spacing:-15.936000pt;}
.ws3_c00001{word-spacing:-15.872000pt;}
.ws99_c00001{word-spacing:-15.744000pt;}
.ws68_c00001{word-spacing:-15.680000pt;}
.ws3a_c00001{word-spacing:-15.488000pt;}
.ws55_c00001{word-spacing:-15.424000pt;}
.ws2c1_c00001{word-spacing:-14.815680pt;}
.ws2bf_c00001{word-spacing:-14.698560pt;}
.ws2bd_c00001{word-spacing:-14.640000pt;}
.ws16c_c00001{word-spacing:-14.592000pt;}
.ws2c2_c00001{word-spacing:-14.581440pt;}
.ws2c3_c00001{word-spacing:-14.464320pt;}
.ws16b_c00001{word-spacing:-14.464000pt;}
.ws156_c00001{word-spacing:-13.703040pt;}
.ws155_c00001{word-spacing:-13.585920pt;}
.ws154_c00001{word-spacing:-13.527360pt;}
.ws153_c00001{word-spacing:-13.410240pt;}
.ws11c_c00001{word-spacing:-13.351680pt;}
.wsd8_c00001{word-spacing:-13.344000pt;}
.ws119_c00001{word-spacing:-13.293120pt;}
.wsd9_c00001{word-spacing:-13.248000pt;}
.ws157_c00001{word-spacing:-13.234560pt;}
.wsd5_c00001{word-spacing:-13.200000pt;}
.ws11a_c00001{word-spacing:-13.176000pt;}
.ws118_c00001{word-spacing:-13.117440pt;}
.ws11b_c00001{word-spacing:-13.058880pt;}
.ws2a1_c00001{word-spacing:-12.144000pt;}
.ws29a_c00001{word-spacing:-12.096000pt;}
.wsd6_c00001{word-spacing:-12.001920pt;}
.ws288_c00001{word-spacing:-12.000000pt;}
.wse3_c00001{word-spacing:-11.916800pt;}
.ws216_c00001{word-spacing:-11.904000pt;}
.wsd4_c00001{word-spacing:-11.831680pt;}
.wsf8_c00001{word-spacing:-11.746560pt;}
.ws147_c00001{word-spacing:-11.661440pt;}
.ws12a_c00001{word-spacing:-11.618880pt;}
.wse6_c00001{word-spacing:-11.406080pt;}
.ws2b4_c00001{word-spacing:-11.376000pt;}
.ws171_c00001{word-spacing:-10.896000pt;}
.ws23b_c00001{word-spacing:-10.656000pt;}
.ws1d8_c00001{word-spacing:-10.558080pt;}
.ws15e_c00001{word-spacing:-10.408320pt;}
.ws172_c00001{word-spacing:-10.370880pt;}
.ws1cb_c00001{word-spacing:-10.258560pt;}
.ws17c_c00001{word-spacing:-10.071360pt;}
.ws2b3_c00001{word-spacing:-9.788800pt;}
.ws2a2_c00001{word-spacing:-9.661120pt;}
.wsa8_c00001{word-spacing:-0.576000pt;}
.ws63_c00001{word-spacing:-0.512000pt;}
.ws30_c00001{word-spacing:-0.448000pt;}
.ws120_c00001{word-spacing:-0.409920pt;}
.ws14_c00001{word-spacing:-0.384000pt;}
.ws15_c00001{word-spacing:-0.320000pt;}
.ws14e_c00001{word-spacing:-0.297920pt;}
.ws151_c00001{word-spacing:-0.292800pt;}
.ws28c_c00001{word-spacing:-0.288000pt;}
.ws1a3_c00001{word-spacing:-0.256000pt;}
.ws2ba_c00001{word-spacing:-0.243200pt;}
.ws2ae_c00001{word-spacing:-0.240000pt;}
.ws13d_c00001{word-spacing:-0.234240pt;}
.ws2ad_c00001{word-spacing:-0.212800pt;}
.ws164_c00001{word-spacing:-0.187200pt;}
.ws161_c00001{word-spacing:-0.175680pt;}
.ws114_c00001{word-spacing:-0.170240pt;}
.ws1a0_c00001{word-spacing:-0.149760pt;}
.ws28b_c00001{word-spacing:-0.144000pt;}
.ws18_c00001{word-spacing:-0.128000pt;}
.ws175_c00001{word-spacing:-0.127680pt;}
.ws6_c00001{word-spacing:-0.117120pt;}
.ws29c_c00001{word-spacing:-0.096000pt;}
.wse8_c00001{word-spacing:-0.085120pt;}
.ws12b_c00001{word-spacing:-0.084160pt;}
.ws8_c00001{word-spacing:-0.064000pt;}
.ws11d_c00001{word-spacing:-0.058560pt;}
.ws105_c00001{word-spacing:-0.042560pt;}
.ws16a_c00001{word-spacing:-0.037440pt;}
.ws5_c00001{word-spacing:0.000000pt;}
.ws2a7_c00001{word-spacing:0.042560pt;}
.ws170_c00001{word-spacing:0.048000pt;}
.ws11e_c00001{word-spacing:0.058560pt;}
.wse_c00001{word-spacing:0.064000pt;}
.wsf3_c00001{word-spacing:0.085120pt;}
.wsff_c00001{word-spacing:0.096000pt;}
.ws121_c00001{word-spacing:0.117120pt;}
.ws2a8_c00001{word-spacing:0.127680pt;}
.ws1_c00001{word-spacing:0.128000pt;}
.wsdc_c00001{word-spacing:0.144000pt;}
.ws162_c00001{word-spacing:0.149760pt;}
.ws111_c00001{word-spacing:0.170240pt;}
.ws19_c00001{word-spacing:0.175680pt;}
.ws287_c00001{word-spacing:0.176000pt;}
.ws160_c00001{word-spacing:0.187200pt;}
.ws15a_c00001{word-spacing:0.192000pt;}
.ws11f_c00001{word-spacing:0.234240pt;}
.wsf9_c00001{word-spacing:0.235840pt;}
.wse2_c00001{word-spacing:0.240000pt;}
.wse5_c00001{word-spacing:0.255360pt;}
.ws31_c00001{word-spacing:0.256000pt;}
.ws152_c00001{word-spacing:0.292800pt;}
.ws14a_c00001{word-spacing:0.297920pt;}
.ws176_c00001{word-spacing:0.299520pt;}
.ws2d_c00001{word-spacing:0.320000pt;}
.ws1d1_c00001{word-spacing:0.336960pt;}
.wsdb_c00001{word-spacing:0.340480pt;}
.ws2be_c00001{word-spacing:0.351360pt;}
.ws35_c00001{word-spacing:0.384000pt;}
.ws1a1_c00001{word-spacing:0.409920pt;}
.ws4_c00001{word-spacing:0.448000pt;}
.ws10b_c00001{word-spacing:0.468160pt;}
.ws2ca_c00001{word-spacing:0.468480pt;}
.ws2a3_c00001{word-spacing:0.480000pt;}
.wsad_c00001{word-spacing:0.512000pt;}
.ws21b_c00001{word-spacing:0.527040pt;}
.ws1a5_c00001{word-spacing:0.561600pt;}
.wsf_c00001{word-spacing:0.576000pt;}
.wsdd_c00001{word-spacing:0.638400pt;}
.ws53_c00001{word-spacing:0.640000pt;}
.ws240_c00001{word-spacing:0.702720pt;}
.ws12d_c00001{word-spacing:0.766080pt;}
.ws12e_c00001{word-spacing:0.808640pt;}
.ws1b8_c00001{word-spacing:0.819840pt;}
.ws8d_c00001{word-spacing:0.832000pt;}
.ws65_c00001{word-spacing:0.896000pt;}
.ws64_c00001{word-spacing:0.960000pt;}
.wsdf_c00001{word-spacing:0.978880pt;}
.ws185_c00001{word-spacing:1.024000pt;}
.ws5b_c00001{word-spacing:1.088000pt;}
.ws1ea_c00001{word-spacing:1.112640pt;}
.ws1b4_c00001{word-spacing:1.152000pt;}
.ws25a_c00001{word-spacing:1.171200pt;}
.ws7_c00001{word-spacing:1.216000pt;}
.wsed_c00001{word-spacing:1.276800pt;}
.ws37_c00001{word-spacing:1.280000pt;}
.wscf_c00001{word-spacing:1.408000pt;}
.ws167_c00001{word-spacing:1.464000pt;}
.ws16d_c00001{word-spacing:1.472000pt;}
.ws27e_c00001{word-spacing:1.522560pt;}
.ws43_c00001{word-spacing:1.536000pt;}
.ws3d_c00001{word-spacing:1.600000pt;}
.wsf0_c00001{word-spacing:1.617280pt;}
.ws282_c00001{word-spacing:1.664000pt;}
.ws268_c00001{word-spacing:1.698240pt;}
.ws107_c00001{word-spacing:1.702400pt;}
.wsbe_c00001{word-spacing:1.728000pt;}
.ws95_c00001{word-spacing:1.792000pt;}
.ws1bb_c00001{word-spacing:1.815360pt;}
.ws14c_c00001{word-spacing:1.830080pt;}
.ws1e_c00001{word-spacing:1.856000pt;}
.ws1c0_c00001{word-spacing:1.873920pt;}
.ws10d_c00001{word-spacing:1.915200pt;}
.ws12_c00001{word-spacing:1.920000pt;}
.ws1c1_c00001{word-spacing:1.991040pt;}
.ws3f_c00001{word-spacing:2.048000pt;}
.ws294_c00001{word-spacing:2.064000pt;}
.ws24d_c00001{word-spacing:2.108160pt;}
.ws22c_c00001{word-spacing:2.112000pt;}
.ws18c_c00001{word-spacing:2.166720pt;}
.wsd7_c00001{word-spacing:2.170560pt;}
.ws21_c00001{word-spacing:2.176000pt;}
.ws1f_c00001{word-spacing:2.240000pt;}
.wse1_c00001{word-spacing:2.255680pt;}
.ws1a6_c00001{word-spacing:2.304000pt;}
.ws69_c00001{word-spacing:2.368000pt;}
.ws52_c00001{word-spacing:2.432000pt;}
.ws1dd_c00001{word-spacing:2.459520pt;}
.ws14b_c00001{word-spacing:2.468480pt;}
.wsc_c00001{word-spacing:2.496000pt;}
.ws264_c00001{word-spacing:2.518080pt;}
.wse0_c00001{word-spacing:2.553600pt;}
.wsb_c00001{word-spacing:2.560000pt;}
.ws283_c00001{word-spacing:2.624000pt;}
.ws6a_c00001{word-spacing:2.688000pt;}
.ws228_c00001{word-spacing:2.752000pt;}
.ws1c4_c00001{word-spacing:2.752320pt;}
.ws17_c00001{word-spacing:2.816000pt;}
.ws16_c00001{word-spacing:2.880000pt;}
.wsef_c00001{word-spacing:2.894080pt;}
.ws2c5_c00001{word-spacing:2.986560pt;}
.ws10c_c00001{word-spacing:3.021760pt;}
.ws2a6_c00001{word-spacing:3.024000pt;}
.ws2c4_c00001{word-spacing:3.045120pt;}
.ws80_c00001{word-spacing:3.072000pt;}
.ws1e8_c00001{word-spacing:3.103680pt;}
.ws13f_c00001{word-spacing:3.106880pt;}
.ws136_c00001{word-spacing:3.115840pt;}
.ws2a_c00001{word-spacing:3.136000pt;}
.wsfd_c00001{word-spacing:3.192000pt;}
.ws2e_c00001{word-spacing:3.200000pt;}
.ws87_c00001{word-spacing:3.328000pt;}
.ws292_c00001{word-spacing:3.360000pt;}
.ws285_c00001{word-spacing:3.392000pt;}
.ws1bd_c00001{word-spacing:3.396480pt;}
.wse7_c00001{word-spacing:3.447360pt;}
.ws187_c00001{word-spacing:3.455040pt;}
.ws2c_c00001{word-spacing:3.456000pt;}
.ws34_c00001{word-spacing:3.520000pt;}
.wsec_c00001{word-spacing:3.532480pt;}
.ws234_c00001{word-spacing:3.584000pt;}
.ws2cb_c00001{word-spacing:3.630720pt;}
.ws5c_c00001{word-spacing:3.648000pt;}
.wsbc_c00001{word-spacing:3.712000pt;}
.ws1ba_c00001{word-spacing:3.747840pt;}
.ws150_c00001{word-spacing:3.755840pt;}
.ws4c_c00001{word-spacing:3.776000pt;}
.wsda_c00001{word-spacing:3.830400pt;}
.ws38_c00001{word-spacing:3.840000pt;}
.ws88_c00001{word-spacing:3.968000pt;}
.ws1d3_c00001{word-spacing:4.032000pt;}
.ws1de_c00001{word-spacing:4.040640pt;}
.ws117_c00001{word-spacing:4.075840pt;}
.ws29_c00001{word-spacing:4.096000pt;}
.ws1df_c00001{word-spacing:4.099200pt;}
.ws2b_c00001{word-spacing:4.160000pt;}
.ws109_c00001{word-spacing:4.170880pt;}
.ws1b2_c00001{word-spacing:4.224000pt;}
.ws295_c00001{word-spacing:4.320000pt;}
.ws276_c00001{word-spacing:4.333440pt;}
.wsc6_c00001{word-spacing:4.352000pt;}
.ws24e_c00001{word-spacing:4.392000pt;}
.ws131_c00001{word-spacing:4.395840pt;}
.ws3b_c00001{word-spacing:4.416000pt;}
.ws21e_c00001{word-spacing:4.450560pt;}
.wseb_c00001{word-spacing:4.468800pt;}
.ws40_c00001{word-spacing:4.480000pt;}
.ws90_c00001{word-spacing:4.672000pt;}
.ws1c6_c00001{word-spacing:4.684800pt;}
.ws7d_c00001{word-spacing:4.736000pt;}
.ws8f_c00001{word-spacing:4.800000pt;}
.ws108_c00001{word-spacing:4.809280pt;}
.ws20f_c00001{word-spacing:4.864000pt;}
.ws2bc_c00001{word-spacing:4.919040pt;}
.wsa2_c00001{word-spacing:4.928000pt;}
.ws1be_c00001{word-spacing:4.977600pt;}
.ws9_c00001{word-spacing:4.992000pt;}
.wsa_c00001{word-spacing:5.056000pt;}
.wsf1_c00001{word-spacing:5.107200pt;}
.ws32_c00001{word-spacing:5.120000pt;}
.wsd0_c00001{word-spacing:5.312000pt;}
.ws1b9_c00001{word-spacing:5.328960pt;}
.ws74_c00001{word-spacing:5.376000pt;}
.ws1e5_c00001{word-spacing:5.387520pt;}
.ws2f_c00001{word-spacing:5.440000pt;}
.ws100_c00001{word-spacing:5.447680pt;}
.ws85_c00001{word-spacing:5.568000pt;}
.ws2b6_c00001{word-spacing:5.616000pt;}
.ws200_c00001{word-spacing:5.632000pt;}
.ws78_c00001{word-spacing:5.696000pt;}
.wsde_c00001{word-spacing:5.745600pt;}
.ws77_c00001{word-spacing:5.760000pt;}
.ws141_c00001{word-spacing:5.788160pt;}
.ws8e_c00001{word-spacing:5.888000pt;}
.ws1dc_c00001{word-spacing:5.973120pt;}
.ws132_c00001{word-spacing:6.000960pt;}
.ws13_c00001{word-spacing:6.016000pt;}
.ws188_c00001{word-spacing:6.031680pt;}
.ws22_c00001{word-spacing:6.080000pt;}
.wsf6_c00001{word-spacing:6.086080pt;}
.ws1bf_c00001{word-spacing:6.148800pt;}
.wsc8_c00001{word-spacing:6.208000pt;}
.ws24c_c00001{word-spacing:6.265920pt;}
.ws75_c00001{word-spacing:6.272000pt;}
.ws189_c00001{word-spacing:6.324480pt;}
.ws1c_c00001{word-spacing:6.336000pt;}
.ws60_c00001{word-spacing:6.400000pt;}
.wsf5_c00001{word-spacing:6.426560pt;}
.ws23f_c00001{word-spacing:6.464000pt;}
.ws67_c00001{word-spacing:6.528000pt;}
.ws2ab_c00001{word-spacing:6.576000pt;}
.ws83_c00001{word-spacing:6.592000pt;}
.ws18a_c00001{word-spacing:6.617280pt;}
.ws42_c00001{word-spacing:6.656000pt;}
.ws18b_c00001{word-spacing:6.675840pt;}
.wsa4_c00001{word-spacing:6.720000pt;}
.ws113_c00001{word-spacing:6.724480pt;}
.ws1c3_c00001{word-spacing:6.792960pt;}
.wsb4_c00001{word-spacing:6.848000pt;}
.ws1c2_c00001{word-spacing:6.910080pt;}
.ws17f_c00001{word-spacing:6.912000pt;}
.ws7c_c00001{word-spacing:6.976000pt;}
.wsfa_c00001{word-spacing:6.979840pt;}
.ws3e_c00001{word-spacing:7.040000pt;}
.ws102_c00001{word-spacing:7.064960pt;}
.ws2cc_c00001{word-spacing:7.085760pt;}
.wsb2_c00001{word-spacing:7.168000pt;}
.ws9c_c00001{word-spacing:7.232000pt;}
.ws1c5_c00001{word-spacing:7.261440pt;}
.ws1d_c00001{word-spacing:7.296000pt;}
.ws86_c00001{word-spacing:7.360000pt;}
.wsf2_c00001{word-spacing:7.362880pt;}
.ws2cd_c00001{word-spacing:7.495680pt;}
.ws1bc_c00001{word-spacing:7.554240pt;}
.ws58_c00001{word-spacing:7.616000pt;}
.ws54_c00001{word-spacing:7.680000pt;}
.wsfc_c00001{word-spacing:7.703360pt;}
.ws184_c00001{word-spacing:7.744000pt;}
.ws27b_c00001{word-spacing:7.788480pt;}
.ws231_c00001{word-spacing:7.872000pt;}
.ws266_c00001{word-spacing:7.905600pt;}
.ws14f_c00001{word-spacing:7.916160pt;}
.ws76_c00001{word-spacing:7.936000pt;}
.ws56_c00001{word-spacing:8.000000pt;}
.ws115_c00001{word-spacing:8.001280pt;}
.ws291_c00001{word-spacing:8.016000pt;}
.ws22e_c00001{word-spacing:8.192000pt;}
.ws1b6_c00001{word-spacing:8.198400pt;}
.ws50_c00001{word-spacing:8.256000pt;}
.ws1b7_c00001{word-spacing:8.256960pt;}
.ws51_c00001{word-spacing:8.320000pt;}
.ws112_c00001{word-spacing:8.341760pt;}
.wsb5_c00001{word-spacing:8.448000pt;}
.ws84_c00001{word-spacing:8.512000pt;}
.ws24f_c00001{word-spacing:8.549760pt;}
.ws4e_c00001{word-spacing:8.576000pt;}
.ws12f_c00001{word-spacing:8.639680pt;}
.wsd_c00001{word-spacing:8.640000pt;}
.ws98_c00001{word-spacing:8.768000pt;}
.ws225_c00001{word-spacing:8.832000pt;}
.ws272_c00001{word-spacing:8.842560pt;}
.ws3c_c00001{word-spacing:8.896000pt;}
.ws6b_c00001{word-spacing:8.960000pt;}
.wse9_c00001{word-spacing:8.980160pt;}
.ws66_c00001{word-spacing:9.088000pt;}
.wsd1_c00001{word-spacing:9.152000pt;}
.ws125_c00001{word-spacing:9.192960pt;}
.ws39_c00001{word-spacing:9.216000pt;}
.ws128_c00001{word-spacing:9.278080pt;}
.wsa5_c00001{word-spacing:9.280000pt;}
.ws2b1_c00001{word-spacing:9.312000pt;}
.wsb1_c00001{word-spacing:9.408000pt;}
.ws2ac_c00001{word-spacing:9.456000pt;}
.ws79_c00001{word-spacing:9.536000pt;}
.ws24a_c00001{word-spacing:9.545280pt;}
.ws6e_c00001{word-spacing:9.600000pt;}
.wsea_c00001{word-spacing:9.618560pt;}
.ws278_c00001{word-spacing:9.662400pt;}
.ws277_c00001{word-spacing:9.779520pt;}
.ws18e_c00001{word-spacing:9.792000pt;}
.ws4b_c00001{word-spacing:9.856000pt;}
.ws10a_c00001{word-spacing:9.916480pt;}
.ws5a_c00001{word-spacing:9.920000pt;}
.ws22f_c00001{word-spacing:10.112000pt;}
.wsfb_c00001{word-spacing:10.171840pt;}
.wsa1_c00001{word-spacing:10.176000pt;}
.ws96_c00001{word-spacing:10.240000pt;}
.ws103_c00001{word-spacing:10.256960pt;}
.ws177_c00001{word-spacing:10.333440pt;}
.ws45_c00001{word-spacing:10.432000pt;}
.ws47_c00001{word-spacing:10.496000pt;}
.ws10e_c00001{word-spacing:10.554880pt;}
.ws46_c00001{word-spacing:10.560000pt;}
.wsac_c00001{word-spacing:10.752000pt;}
.ws235_c00001{word-spacing:10.775040pt;}
.ws4a_c00001{word-spacing:10.816000pt;}
.wsab_c00001{word-spacing:10.880000pt;}
.ws1ec_c00001{word-spacing:11.067840pt;}
.ws232_c00001{word-spacing:11.072000pt;}
.ws62_c00001{word-spacing:11.136000pt;}
.ws145_c00001{word-spacing:11.193280pt;}
.wsc4_c00001{word-spacing:11.200000pt;}
.ws29f_c00001{word-spacing:11.232000pt;}
.ws223_c00001{word-spacing:11.392000pt;}
.ws27d_c00001{word-spacing:11.419200pt;}
.ws5f_c00001{word-spacing:11.456000pt;}
.wsbb_c00001{word-spacing:11.520000pt;}
.ws222_c00001{word-spacing:11.712000pt;}
.wsb7_c00001{word-spacing:11.776000pt;}
.ws4f_c00001{word-spacing:11.840000pt;}
.ws49_c00001{word-spacing:11.968000pt;}
.wsb0_c00001{word-spacing:12.032000pt;}
.ws4d_c00001{word-spacing:12.096000pt;}
.ws22b_c00001{word-spacing:12.160000pt;}
.ws48_c00001{word-spacing:12.288000pt;}
.ws251_c00001{word-spacing:12.352000pt;}
.ws2b2_c00001{word-spacing:12.384000pt;}
.ws1ad_c00001{word-spacing:12.416000pt;}
.ws20_c00001{word-spacing:12.480000pt;}
.ws230_c00001{word-spacing:12.672000pt;}
.ws1ed_c00001{word-spacing:12.707520pt;}
.wsa9_c00001{word-spacing:12.736000pt;}
.wsc2_c00001{word-spacing:12.800000pt;}
.ws101_c00001{word-spacing:12.810560pt;}
.ws2b5_c00001{word-spacing:12.960000pt;}
.ws7f_c00001{word-spacing:12.992000pt;}
.ws1e9_c00001{word-spacing:13.000320pt;}
.ws5d_c00001{word-spacing:13.056000pt;}
.wsfe_c00001{word-spacing:13.108480pt;}
.wsce_c00001{word-spacing:13.120000pt;}
.ws241_c00001{word-spacing:13.248000pt;}
.ws23_c00001{word-spacing:13.376000pt;}
.ws1f5_c00001{word-spacing:13.440000pt;}
.ws140_c00001{word-spacing:13.448960pt;}
.ws26b_c00001{word-spacing:13.644480pt;}
.ws26_c00001{word-spacing:13.696000pt;}
.wsf4_c00001{word-spacing:13.746880pt;}
.wsa0_c00001{word-spacing:13.760000pt;}
.ws275_c00001{word-spacing:13.820160pt;}
.ws1e6_c00001{word-spacing:13.937280pt;}
.ws9f_c00001{word-spacing:14.016000pt;}
.ws61_c00001{word-spacing:14.080000pt;}
.ws221_c00001{word-spacing:14.272000pt;}
.ws1eb_c00001{word-spacing:14.288640pt;}
.ws27_c00001{word-spacing:14.336000pt;}
.ws13b_c00001{word-spacing:14.385280pt;}
.ws28_c00001{word-spacing:14.400000pt;}
.ws1e7_c00001{word-spacing:14.464320pt;}
.ws2b0_c00001{word-spacing:14.544000pt;}
.ws57_c00001{word-spacing:14.656000pt;}
.wsc9_c00001{word-spacing:14.720000pt;}
.ws139_c00001{word-spacing:14.725760pt;}
.ws2c9_c00001{word-spacing:14.874240pt;}
.wsc1_c00001{word-spacing:14.976000pt;}
.ws59_c00001{word-spacing:15.040000pt;}
.wscc_c00001{word-spacing:15.104000pt;}
.ws265_c00001{word-spacing:15.108480pt;}
.ws21f_c00001{word-spacing:15.225600pt;}
.ws93_c00001{word-spacing:15.296000pt;}
.wsba_c00001{word-spacing:15.360000pt;}
.ws218_c00001{word-spacing:15.576960pt;}
.ws8c_c00001{word-spacing:15.616000pt;}
.wscb_c00001{word-spacing:15.680000pt;}
.ws219_c00001{word-spacing:15.752640pt;}
.ws21a_c00001{word-spacing:15.869760pt;}
.wsbd_c00001{word-spacing:15.872000pt;}
.ws11_c00001{word-spacing:15.936000pt;}
.ws10_c00001{word-spacing:16.000000pt;}
.ws126_c00001{word-spacing:16.002560pt;}
.ws8a_c00001{word-spacing:16.128000pt;}
.ws279_c00001{word-spacing:16.221120pt;}
.ws36_c00001{word-spacing:16.256000pt;}
.ws1ab_c00001{word-spacing:16.320000pt;}
.ws9e_c00001{word-spacing:16.448000pt;}
.ws2bb_c00001{word-spacing:16.512000pt;}
.ws26c_c00001{word-spacing:16.513920pt;}
.ws82_c00001{word-spacing:16.576000pt;}
.ws7e_c00001{word-spacing:16.640000pt;}
.ws1b1_c00001{word-spacing:16.768000pt;}
.ws7b_c00001{word-spacing:16.896000pt;}
.ws81_c00001{word-spacing:16.960000pt;}
.ws2c8_c00001{word-spacing:17.158080pt;}
.ws91_c00001{word-spacing:17.216000pt;}
.wsc5_c00001{word-spacing:17.280000pt;}
.ws2c7_c00001{word-spacing:17.333760pt;}
.ws2c6_c00001{word-spacing:17.392320pt;}
.wsbf_c00001{word-spacing:17.536000pt;}
.wsa3_c00001{word-spacing:17.600000pt;}
.wsaf_c00001{word-spacing:17.792000pt;}
.ws1e0_c00001{word-spacing:17.802240pt;}
.ws1db_c00001{word-spacing:17.856000pt;}
.ws2d4_c00001{word-spacing:17.919360pt;}
.ws1ef_c00001{word-spacing:17.920000pt;}
.wsae_c00001{word-spacing:18.176000pt;}
.ws297_c00001{word-spacing:18.192000pt;}
.ws18d_c00001{word-spacing:18.240000pt;}
.ws130_c00001{word-spacing:18.258240pt;}
.ws270_c00001{word-spacing:18.329280pt;}
.ws271_c00001{word-spacing:18.446400pt;}
.ws9b_c00001{word-spacing:18.496000pt;}
.ws22d_c00001{word-spacing:18.560000pt;}
.ws1fe_c00001{word-spacing:18.752000pt;}
.ws2d2_c00001{word-spacing:18.797760pt;}
.ws33_c00001{word-spacing:18.816000pt;}
.ws9a_c00001{word-spacing:18.880000pt;}
.ws127_c00001{word-spacing:18.896640pt;}
.ws2d3_c00001{word-spacing:18.914880pt;}
.wsc7_c00001{word-spacing:19.008000pt;}
.ws6d_c00001{word-spacing:19.136000pt;}
.ws116_c00001{word-spacing:19.194560pt;}
.ws6c_c00001{word-spacing:19.200000pt;}
.wsb3_c00001{word-spacing:19.328000pt;}
.ws281_c00001{word-spacing:19.383360pt;}
.ws6f_c00001{word-spacing:19.456000pt;}
.ws70_c00001{word-spacing:19.520000pt;}
.ws13a_c00001{word-spacing:19.535040pt;}
.ws23e_c00001{word-spacing:19.712000pt;}
.ws249_c00001{word-spacing:19.734720pt;}
.ws97_c00001{word-spacing:19.776000pt;}
.ws134_c00001{word-spacing:19.832960pt;}
.ws1ff_c00001{word-spacing:19.840000pt;}
.wscd_c00001{word-spacing:19.968000pt;}
.ws1e2_c00001{word-spacing:20.086080pt;}
.ws23d_c00001{word-spacing:20.096000pt;}
.ws94_c00001{word-spacing:20.160000pt;}
.ws73_c00001{word-spacing:20.416000pt;}
.ws72_c00001{word-spacing:20.480000pt;}
.ws267_c00001{word-spacing:20.671680pt;}
.ws1f8_c00001{word-spacing:20.736000pt;}
.ws252_c00001{word-spacing:20.800000pt;}
.ws202_c00001{word-spacing:20.928000pt;}
.ws293_c00001{word-spacing:20.976000pt;}
.ws41_c00001{word-spacing:21.056000pt;}
.ws1e1_c00001{word-spacing:21.081600pt;}
.ws8b_c00001{word-spacing:21.120000pt;}
.ws220_c00001{word-spacing:21.315840pt;}
.ws1d0_c00001{word-spacing:21.376000pt;}
.wsaa_c00001{word-spacing:21.440000pt;}
.ws21d_c00001{word-spacing:21.667200pt;}
.ws1f3_c00001{word-spacing:21.696000pt;}
.ws5e_c00001{word-spacing:21.760000pt;}
.ws29e_c00001{word-spacing:21.792000pt;}
.ws1da_c00001{word-spacing:22.016000pt;}
.wsb9_c00001{word-spacing:22.080000pt;}
.ws239_c00001{word-spacing:22.311360pt;}
.ws1ac_c00001{word-spacing:22.336000pt;}
.wsee_c00001{word-spacing:22.386560pt;}
.ws196_c00001{word-spacing:22.400000pt;}
.ws299_c00001{word-spacing:22.416000pt;}
.ws1ae_c00001{word-spacing:22.656000pt;}
.ws254_c00001{word-spacing:22.720000pt;}
.ws1f0_c00001{word-spacing:22.912000pt;}
.ws226_c00001{word-spacing:22.976000pt;}
.ws14d_c00001{word-spacing:23.024960pt;}
.ws213_c00001{word-spacing:23.040000pt;}
.ws26f_c00001{word-spacing:23.296000pt;}
.ws224_c00001{word-spacing:23.360000pt;}
.wsca_c00001{word-spacing:23.616000pt;}
.ws229_c00001{word-spacing:23.680000pt;}
.ws2d1_c00001{word-spacing:23.716800pt;}
.ws2b7_c00001{word-spacing:23.744000pt;}
.ws290_c00001{word-spacing:23.760000pt;}
.ws2d0_c00001{word-spacing:23.833920pt;}
.ws243_c00001{word-spacing:23.936000pt;}
.ws9d_c00001{word-spacing:24.000000pt;}
.ws144_c00001{word-spacing:24.003840pt;}
.ws245_c00001{word-spacing:24.256000pt;}
.ws22a_c00001{word-spacing:24.320000pt;}
.ws195_c00001{word-spacing:24.512000pt;}
.ws24b_c00001{word-spacing:24.640000pt;}
.ws26a_c00001{word-spacing:24.712320pt;}
.ws269_c00001{word-spacing:24.829440pt;}
.ws19f_c00001{word-spacing:24.960000pt;}
.ws44_c00001{word-spacing:25.216000pt;}
.wsa7_c00001{word-spacing:25.280000pt;}
.wsa6_c00001{word-spacing:25.408000pt;}
.ws210_c00001{word-spacing:25.536000pt;}
.ws212_c00001{word-spacing:25.600000pt;}
.ws1fd_c00001{word-spacing:25.728000pt;}
.ws197_c00001{word-spacing:25.856000pt;}
.ws198_c00001{word-spacing:25.920000pt;}
.ws2aa_c00001{word-spacing:26.064000pt;}
.wsb8_c00001{word-spacing:26.176000pt;}
.ws1d9_c00001{word-spacing:26.240000pt;}
.ws1f4_c00001{word-spacing:26.560000pt;}
.ws1b5_c00001{word-spacing:26.816000pt;}
.ws248_c00001{word-spacing:26.937600pt;}
.ws1b3_c00001{word-spacing:27.136000pt;}
.ws259_c00001{word-spacing:27.456000pt;}
.ws1f6_c00001{word-spacing:27.520000pt;}
.ws2c0_c00001{word-spacing:27.769152pt;}
.ws92_c00001{word-spacing:27.776000pt;}
.ws1f7_c00001{word-spacing:27.840000pt;}
.ws2cf_c00001{word-spacing:27.874560pt;}
.ws2ce_c00001{word-spacing:27.991680pt;}
.ws7a_c00001{word-spacing:28.032000pt;}
.ws27a_c00001{word-spacing:28.096000pt;}
.ws201_c00001{word-spacing:28.480000pt;}
.ws17e_c00001{word-spacing:28.736000pt;}
.ws1f2_c00001{word-spacing:28.800000pt;}
.ws1cf_c00001{word-spacing:29.056000pt;}
.ws1f1_c00001{word-spacing:29.440000pt;}
.wsb6_c00001{word-spacing:29.696000pt;}
.ws1d2_c00001{word-spacing:29.760000pt;}
.ws227_c00001{word-spacing:30.400000pt;}
.ws28f_c00001{word-spacing:30.576000pt;}
.ws71_c00001{word-spacing:30.720000pt;}
.ws25b_c00001{word-spacing:31.360000pt;}
.ws247_c00001{word-spacing:32.960000pt;}
.ws253_c00001{word-spacing:33.280000pt;}
.ws2d5_c00001{word-spacing:33.847680pt;}
.ws211_c00001{word-spacing:34.176000pt;}
.ws1b_c00001{word-spacing:34.752000pt;}
.ws1a_c00001{word-spacing:34.816000pt;}
.ws169_c00001{word-spacing:35.428800pt;}
.wsc3_c00001{word-spacing:35.456000pt;}
.ws298_c00001{word-spacing:35.520000pt;}
.wsc0_c00001{word-spacing:35.648000pt;}
.ws217_c00001{word-spacing:36.072960pt;}
.ws1f9_c00001{word-spacing:36.416000pt;}
.ws1fa_c00001{word-spacing:36.800000pt;}
.ws2d6_c00001{word-spacing:37.654080pt;}
.ws237_c00001{word-spacing:39.296000pt;}
.ws29b_c00001{word-spacing:39.952000pt;}
.ws2a0_c00001{word-spacing:40.032000pt;}
.ws1af_c00001{word-spacing:40.512000pt;}
.ws242_c00001{word-spacing:42.176000pt;}
.ws1a7_c00001{word-spacing:43.520000pt;}
.ws26d_c00001{word-spacing:45.325440pt;}
.ws28a_c00001{word-spacing:50.640000pt;}
.ws1fc_c00001{word-spacing:51.136000pt;}
.ws1fb_c00001{word-spacing:51.200000pt;}
.ws2af_c00001{word-spacing:60.960000pt;}
.ws2a9_c00001{word-spacing:75.552000pt;}
.ws29d_c00001{word-spacing:79.200000pt;}
.ws296_c00001{word-spacing:91.248000pt;}
.ws129_c00001{word-spacing:103.024000pt;}
.ws2a4_c00001{word-spacing:113.520000pt;}
.ws19c_c00001{word-spacing:119.868587pt;}
.ws192_c00001{word-spacing:119.869120pt;}
.ws183_c00001{word-spacing:131.037760pt;}
.ws28e_c00001{word-spacing:133.680000pt;}
.ws233_c00001{word-spacing:135.197760pt;}
.ws19e_c00001{word-spacing:137.775467pt;}
.ws194_c00001{word-spacing:137.776000pt;}
.ws204_c00001{word-spacing:141.298880pt;}
.ws25c_c00001{word-spacing:141.312640pt;}
.ws209_c00001{word-spacing:141.317760pt;}
.ws19a_c00001{word-spacing:147.593067pt;}
.ws190_c00001{word-spacing:147.593600pt;}
.ws286_c00001{word-spacing:148.656960pt;}
.ws284_c00001{word-spacing:148.673280pt;}
.ws289_c00001{word-spacing:149.712000pt;}
.wse4_c00001{word-spacing:150.384000pt;}
.ws27c_c00001{word-spacing:155.021760pt;}
.ws214_c00001{word-spacing:155.039040pt;}
.ws1c9_c00001{word-spacing:155.058880pt;}
.ws1d5_c00001{word-spacing:155.077227pt;}
.ws206_c00001{word-spacing:160.178880pt;}
.ws25e_c00001{word-spacing:160.188480pt;}
.ws1cd_c00001{word-spacing:164.349120pt;}
.ws1d7_c00001{word-spacing:164.357547pt;}
.ws27f_c00001{word-spacing:168.632000pt;}
.ws260_c00001{word-spacing:169.459200pt;}
.ws261_c00001{word-spacing:169.459733pt;}
.ws20c_c00001{word-spacing:169.469120pt;}
.ws1a8_c00001{word-spacing:172.658880pt;}
.ws1c8_c00001{word-spacing:175.517760pt;}
.ws1d4_c00001{word-spacing:175.532800pt;}
.ws205_c00001{word-spacing:180.637760pt;}
.ws25d_c00001{word-spacing:180.639787pt;}
.ws1aa_c00001{word-spacing:181.949120pt;}
.ws1ee_c00001{word-spacing:182.256000pt;}
.ws20d_c00001{word-spacing:187.376000pt;}
.ws280_c00001{word-spacing:191.813440pt;}
.ws1cc_c00001{word-spacing:192.073600pt;}
.ws1d6_c00001{word-spacing:192.096320pt;}
.ws25f_c00001{word-spacing:197.179200pt;}
.ws208_c00001{word-spacing:197.193600pt;}
.ws18f_c00001{word-spacing:252.223680pt;}
.ws199_c00001{word-spacing:252.231040pt;}
.ws28d_c00001{word-spacing:277.392000pt;}
.ws236_c00001{word-spacing:288.069120pt;}
.ws207_c00001{word-spacing:288.085440pt;}
.ws20a_c00001{word-spacing:288.104213pt;}
.ws2a5_c00001{word-spacing:288.576000pt;}
.ws1ca_c00001{word-spacing:299.856960pt;}
.ws257_c00001{word-spacing:314.570880pt;}
.ws1a9_c00001{word-spacing:314.947200pt;}
.ws1b0_c00001{word-spacing:314.952320pt;}
.ws23a_c00001{word-spacing:330.311787pt;}
.ws215_c00001{word-spacing:330.325440pt;}
.ws21c_c00001{word-spacing:330.335147pt;}
.ws15d_c00001{word-spacing:336.064640pt;}
.ws17a_c00001{word-spacing:336.707413pt;}
.ws182_c00001{word-spacing:336.707947pt;}
.ws16f_c00001{word-spacing:339.584640pt;}
.ws1a2_c00001{word-spacing:361.350933pt;}
.ws1e3_c00001{word-spacing:384.995520pt;}
.ws263_c00001{word-spacing:400.008960pt;}
.ws273_c00001{word-spacing:409.088533pt;}
.ws26e_c00001{word-spacing:409.089067pt;}
.ws166_c00001{word-spacing:428.877440pt;}
.ws168_c00001{word-spacing:428.881600pt;}
.ws174_c00001{word-spacing:432.363200pt;}
.ws178_c00001{word-spacing:432.373760pt;}
.ws173_c00001{word-spacing:432.374080pt;}
.ws110_c00001{word-spacing:499.654400pt;}
.ws149_c00001{word-spacing:499.994880pt;}
.ws138_c00001{word-spacing:500.292800pt;}
.ws1ce_c00001{word-spacing:507.199680pt;}
.ws258_c00001{word-spacing:522.250560pt;}
.ws135_c00001{word-spacing:540.299200pt;}
.ws10f_c00001{word-spacing:542.597440pt;}
.ws15f_c00001{word-spacing:566.784640pt;}
.ws163_c00001{word-spacing:566.804800pt;}
.ws17b_c00001{word-spacing:567.423680pt;}
.ws180_c00001{word-spacing:567.444907pt;}
.ws1a4_c00001{word-spacing:592.067200pt;}
.wsf7_c00001{word-spacing:609.969920pt;}
.ws193_c00001{word-spacing:627.200000pt;}
.ws19d_c00001{word-spacing:627.206933pt;}
.ws1e4_c00001{word-spacing:629.740800pt;}
.ws137_c00001{word-spacing:630.824320pt;}
.ws274_c00001{word-spacing:644.829120pt;}
.ws146_c00001{word-spacing:654.828160pt;}
.ws142_c00001{word-spacing:668.915520pt;}
.ws12c_c00001{word-spacing:679.129920pt;}
.ws203_c00001{word-spacing:680.089173pt;}
.ws20b_c00001{word-spacing:680.089707pt;}
.ws1c7_c00001{word-spacing:680.659200pt;}
.ws2b9_c00001{word-spacing:688.000000pt;}
.ws256_c00001{word-spacing:695.373120pt;}
.ws13e_c00001{word-spacing:712.752320pt;}
.ws122_c00001{word-spacing:723.307200pt;}
.wsd3_c00001{word-spacing:726.499200pt;}
.ws133_c00001{word-spacing:740.884480pt;}
.ws123_c00001{word-spacing:808.427200pt;}
.ws191_c00001{word-spacing:838.464000pt;}
.ws19b_c00001{word-spacing:838.464533pt;}
.ws13c_c00001{word-spacing:870.054080pt;}
.ws2b8_c00001{word-spacing:896.000000pt;}
.ws186_c00001{word-spacing:1226.240000pt;}
.ws17d_c00001{word-spacing:1275.247467pt;}
.ws181_c00001{word-spacing:1275.248000pt;}
.ws20e_c00001{word-spacing:1286.462933pt;}
.ws246_c00001{word-spacing:1322.055467pt;}
.ws262_c00001{word-spacing:1389.820267pt;}
.ws244_c00001{word-spacing:1416.078400pt;}
.ws23c_c00001{word-spacing:1419.526933pt;}
.ws124_c00001{word-spacing:1526.797440pt;}
.ws148_c00001{word-spacing:1552.716480pt;}
.ws238_c00001{word-spacing:1558.528000pt;}
.ws104_c00001{word-spacing:1561.356160pt;}
.ws143_c00001{word-spacing:1580.891200pt;}
.ws165_c00001{word-spacing:1614.727680pt;}
.ws106_c00001{word-spacing:1854.509440pt;}
.ws250_c00001{word-spacing:1892.800000pt;}
._13c_c00001{margin-left:-6.790324pt;}
._13b_c00001{margin-left:-5.406082pt;}
._7_c00001{margin-left:-3.968000pt;}
._92_c00001{margin-left:-2.713664pt;}
._0_c00001{margin-left:-1.094400pt;}
._1_c00001{width:1.036800pt;}
._17_c00001{width:2.480000pt;}
._6_c00001{width:3.392000pt;}
._100_c00001{width:4.416000pt;}
._108_c00001{width:5.504640pt;}
._2c_c00001{width:7.073280pt;}
._8_c00001{width:8.832000pt;}
._5_c00001{width:10.752000pt;}
._16_c00001{width:12.768000pt;}
._d_c00001{width:13.877760pt;}
._2_c00001{width:15.097600pt;}
._3_c00001{width:16.998400pt;}
._105_c00001{width:18.944000pt;}
._101_c00001{width:19.955200pt;}
._5b_c00001{width:21.516800pt;}
._19_c00001{width:23.234240pt;}
._67_c00001{width:24.207680pt;}
._73_c00001{width:25.590720pt;}
._139_c00001{width:27.457920pt;}
._13a_c00001{width:28.371648pt;}
._129_c00001{width:29.516800pt;}
._10a_c00001{width:31.161600pt;}
._4_c00001{width:32.064000pt;}
._f6_c00001{width:35.487360pt;}
._138_c00001{width:40.064000pt;}
._69_c00001{width:42.243200pt;}
._39_c00001{width:54.260480pt;}
._a7_c00001{width:57.447360pt;}
._12a_c00001{width:58.933120pt;}
._58_c00001{width:59.878400pt;}
._136_c00001{width:69.477120pt;}
._131_c00001{width:70.774080pt;}
._5f_c00001{width:83.712000pt;}
._107_c00001{width:90.901760pt;}
._106_c00001{width:92.630400pt;}
._c2_c00001{width:94.047360pt;}
._10c_c00001{width:95.068800pt;}
._113_c00001{width:100.188800pt;}
._fa_c00001{width:104.706667pt;}
._48_c00001{width:107.422176pt;}
._10b_c00001{width:109.797120pt;}
._11e_c00001{width:110.723200pt;}
._5e_c00001{width:112.056960pt;}
._3b_c00001{width:115.070400pt;}
._23_c00001{width:117.319040pt;}
._e3_c00001{width:119.421120pt;}
._121_c00001{width:120.768000pt;}
._c0_c00001{width:123.268800pt;}
._2b_c00001{width:125.122880pt;}
._11c_c00001{width:126.062400pt;}
._3a_c00001{width:139.214400pt;}
._be_c00001{width:141.012480pt;}
._12b_c00001{width:144.409280pt;}
._df_c00001{width:149.737920pt;}
._103_c00001{width:153.499200pt;}
._ce_c00001{width:156.082240pt;}
._cc_c00001{width:157.292160pt;}
._102_c00001{width:162.239360pt;}
._122_c00001{width:163.328000pt;}
._db_c00001{width:165.549120pt;}
._64_c00001{width:173.683840pt;}
._10d_c00001{width:175.793600pt;}
._76_c00001{width:177.569920pt;}
._11d_c00001{width:178.506667pt;}
._104_c00001{width:181.815467pt;}
._e2_c00001{width:183.644160pt;}
._c3_c00001{width:186.455040pt;}
._3d_c00001{width:191.684160pt;}
._6e_c00001{width:198.256320pt;}
._da_c00001{width:200.333760pt;}
._bf_c00001{width:202.968960pt;}
._5a_c00001{width:211.477120pt;}
._82_c00001{width:212.713056pt;}
._9a_c00001{width:216.337920pt;}
._133_c00001{width:220.386027pt;}
._3f_c00001{width:224.577600pt;}
._7e_c00001{width:227.112960pt;}
._111_c00001{width:229.121067pt;}
._126_c00001{width:231.360000pt;}
._a8_c00001{width:237.888000pt;}
._75_c00001{width:251.808000pt;}
._a6_c00001{width:254.736000pt;}
._fd_c00001{width:257.831467pt;}
._ab_c00001{width:267.836160pt;}
._99_c00001{width:269.551680pt;}
._57_c00001{width:271.275840pt;}
._3c_c00001{width:275.934720pt;}
._66_c00001{width:277.572800pt;}
._ac_c00001{width:281.415360pt;}
._56_c00001{width:282.339520pt;}
._d7_c00001{width:285.070080pt;}
._81_c00001{width:286.358400pt;}
._98_c00001{width:290.166080pt;}
._25_c00001{width:292.325760pt;}
._ec_c00001{width:294.673920pt;}
._4e_c00001{width:296.840640pt;}
._cd_c00001{width:302.491392pt;}
._ff_c00001{width:305.671467pt;}
._ae_c00001{width:311.521920pt;}
._78_c00001{width:313.137600pt;}
._a9_c00001{width:314.174400pt;}
._ef_c00001{width:317.336640pt;}
._124_c00001{width:319.902827pt;}
._33_c00001{width:322.531520pt;}
._ca_c00001{width:323.953920pt;}
._55_c00001{width:328.447360pt;}
._c4_c00001{width:333.089280pt;}
._b5_c00001{width:340.550400pt;}
._20_c00001{width:352.520960pt;}
._79_c00001{width:354.129600pt;}
._12d_c00001{width:355.276800pt;}
._46_c00001{width:360.026880pt;}
._d2_c00001{width:361.900800pt;}
._c8_c00001{width:363.423360pt;}
._80_c00001{width:365.281280pt;}
._11f_c00001{width:370.700800pt;}
._c6_c00001{width:378.531840pt;}
._c9_c00001{width:380.171520pt;}
._ba_c00001{width:383.626560pt;}
._ea_c00001{width:391.005120pt;}
._e1_c00001{width:393.540480pt;}
._9f_c00001{width:397.329600pt;}
._2a_c00001{width:400.629120pt;}
._fc_c00001{width:403.191467pt;}
._50_c00001{width:406.230720pt;}
._83_c00001{width:413.275200pt;}
._85_c00001{width:415.541760pt;}
._117_c00001{width:416.838400pt;}
._d5_c00001{width:425.496960pt;}
._7c_c00001{width:432.775680pt;}
._4a_c00001{width:436.447680pt;}
._e9_c00001{width:437.928960pt;}
._49_c00001{width:441.770784pt;}
._b9_c00001{width:444.411840pt;}
._e5_c00001{width:449.541120pt;}
._77_c00001{width:450.595200pt;}
._11a_c00001{width:453.588373pt;}
._135_c00001{width:457.216000pt;}
._18_c00001{width:458.510720pt;}
._de_c00001{width:461.921280pt;}
._68_c00001{width:464.453760pt;}
._4f_c00001{width:468.304320pt;}
._4c_c00001{width:472.227840pt;}
._8e_c00001{width:474.300480pt;}
._45_c00001{width:476.092800pt;}
._7b_c00001{width:478.728000pt;}
._a1_c00001{width:483.371520pt;}
._1e_c00001{width:485.153280pt;}
._72_c00001{width:488.407680pt;}
._e0_c00001{width:491.042880pt;}
._4d_c00001{width:494.380800pt;}
._d6_c00001{width:498.814080pt;}
._bb_c00001{width:500.688000pt;}
._eb_c00001{width:503.908800pt;}
._41_c00001{width:507.088320pt;}
._e6_c00001{width:512.634240pt;}
._4b_c00001{width:517.553280pt;}
._a3_c00001{width:521.184000pt;}
._1f_c00001{width:530.224320pt;}
._42_c00001{width:532.076160pt;}
._8a_c00001{width:537.702720pt;}
._109_c00001{width:539.638400pt;}
._40_c00001{width:543.378240pt;}
._1d_c00001{width:544.539840pt;}
._63_c00001{width:546.455040pt;}
._47_c00001{width:548.590080pt;}
._43_c00001{width:552.982080pt;}
._3e_c00001{width:555.265920pt;}
._6f_c00001{width:556.851520pt;}
._12_c00001{width:559.223040pt;}
._5d_c00001{width:561.451200pt;}
._ee_c00001{width:562.820160pt;}
._a0_c00001{width:564.335680pt;}
._ed_c00001{width:566.977920pt;}
._e_c00001{width:572.188480pt;}
._9d_c00001{width:573.671040pt;}
._a4_c00001{width:575.469120pt;}
._e7_c00001{width:579.234240pt;}
._d9_c00001{width:581.090880pt;}
._10e_c00001{width:584.468267pt;}
._87_c00001{width:587.064000pt;}
._7a_c00001{width:590.946240pt;}
._bd_c00001{width:591.924480pt;}
._dd_c00001{width:595.865280pt;}
._7f_c00001{width:598.893120pt;}
._d8_c00001{width:600.942720pt;}
._86_c00001{width:601.879680pt;}
._9_c00001{width:602.804480pt;}
._51_c00001{width:604.719680pt;}
._15_c00001{width:607.768640pt;}
._bc_c00001{width:611.776320pt;}
._32_c00001{width:620.579200pt;}
._60_c00001{width:622.637440pt;}
._44_c00001{width:632.272320pt;}
._84_c00001{width:636.254400pt;}
._e8_c00001{width:637.308480pt;}
._12e_c00001{width:641.908800pt;}
._112_c00001{width:649.197973pt;}
._11_c00001{width:651.054080pt;}
._9e_c00001{width:655.245120pt;}
._a2_c00001{width:663.619200pt;}
._b7_c00001{width:664.924800pt;}
._7d_c00001{width:667.291200pt;}
._74_c00001{width:671.876160pt;}
._d4_c00001{width:674.845440pt;}
._dc_c00001{width:684.097920pt;}
._b8_c00001{width:685.737600pt;}
._b_c00001{width:688.380480pt;}
._53_c00001{width:689.456640pt;}
._d0_c00001{width:700.787520pt;}
._93_c00001{width:704.960320pt;}
._10_c00001{width:709.529600pt;}
._9c_c00001{width:712.616640pt;}
._9b_c00001{width:722.413440pt;}
._f9_c00001{width:725.311040pt;}
._f5_c00001{width:727.576320pt;}
._134_c00001{width:747.133867pt;}
._af_c00001{width:751.224960pt;}
._61_c00001{width:757.467520pt;}
._fb_c00001{width:760.524800pt;}
._34_c00001{width:764.815040pt;}
._cb_c00001{width:767.387520pt;}
._97_c00001{width:779.455680pt;}
._65_c00001{width:783.824000pt;}
._cf_c00001{width:789.388800pt;}
._6a_c00001{width:795.698240pt;}
._e4_c00001{width:799.461120pt;}
._110_c00001{width:809.478400pt;}
._8b_c00001{width:832.500800pt;}
._11b_c00001{width:838.032000pt;}
._119_c00001{width:846.982400pt;}
._c1_c00001{width:851.520960pt;}
._c_c00001{width:853.893120pt;}
._d3_c00001{width:855.620160pt;}
._d1_c00001{width:868.152000pt;}
._f1_c00001{width:869.911787pt;}
._c7_c00001{width:872.251200pt;}
._a_c00001{width:873.741440pt;}
._6c_c00001{width:875.869440pt;}
._24_c00001{width:878.748160pt;}
._118_c00001{width:896.838400pt;}
._127_c00001{width:906.880000pt;}
._f_c00001{width:909.151360pt;}
._12c_c00001{width:944.119467pt;}
._38_c00001{width:945.752960pt;}
._123_c00001{width:948.406933pt;}
._59_c00001{width:955.271040pt;}
._29_c00001{width:962.308800pt;}
._70_c00001{width:968.096960pt;}
._a5_c00001{width:982.461120pt;}
._94_c00001{width:986.270080pt;}
._c5_c00001{width:987.614400pt;}
._b6_c00001{width:991.713600pt;}
._10f_c00001{width:998.342400pt;}
._22_c00001{width:1004.087360pt;}
._1a_c00001{width:1010.742080pt;}
._8d_c00001{width:1024.105920pt;}
._36_c00001{width:1025.936000pt;}
._26_c00001{width:1031.681600pt;}
._13_c00001{width:1044.151680pt;}
._b4_c00001{width:1058.255040pt;}
._137_c00001{width:1073.459520pt;}
._ad_c00001{width:1074.886080pt;}
._30_c00001{width:1078.284800pt;}
._b3_c00001{width:1080.256320pt;}
._b2_c00001{width:1086.071040pt;}
._90_c00001{width:1090.414400pt;}
._2d_c00001{width:1104.246400pt;}
._115_c00001{width:1105.347200pt;}
._125_c00001{width:1122.620800pt;}
._12f_c00001{width:1136.004267pt;}
._1b_c00001{width:1141.145920pt;}
._aa_c00001{width:1142.388480pt;}
._114_c00001{width:1165.760533pt;}
._2e_c00001{width:1168.086400pt;}
._89_c00001{width:1169.238720pt;}
._96_c00001{width:1175.619520pt;}
._8c_c00001{width:1192.132800pt;}
._14_c00001{width:1200.304320pt;}
._35_c00001{width:1232.096640pt;}
._116_c00001{width:1234.194667pt;}
._27_c00001{width:1249.263680pt;}
._88_c00001{width:1255.972800pt;}
._128_c00001{width:1257.321920pt;}
._2f_c00001{width:1262.739840pt;}
._5c_c00001{width:1276.714880pt;}
._b0_c00001{width:1278.481920pt;}
._132_c00001{width:1282.752000pt;}
._120_c00001{width:1295.552000pt;}
._130_c00001{width:1329.842133pt;}
._95_c00001{width:1364.856640pt;}
._1c_c00001{width:1366.814400pt;}
._28_c00001{width:1370.304320pt;}
._71_c00001{width:1399.713280pt;}
._fe_c00001{width:1403.969600pt;}
._8f_c00001{width:1407.401280pt;}
._91_c00001{width:1434.357120pt;}
._52_c00001{width:1454.062400pt;}
._37_c00001{width:1481.428480pt;}
._21_c00001{width:1513.631040pt;}
._31_c00001{width:1516.880960pt;}
._f0_c00001{width:1536.879680pt;}
._f3_c00001{width:1541.679680pt;}
._54_c00001{width:1548.715840pt;}
._f2_c00001{width:1574.680320pt;}
._f8_c00001{width:1582.129600pt;}
._f4_c00001{width:1593.329600pt;}
._f7_c00001{width:1595.377493pt;}
._62_c00001{width:1603.064960pt;}
._6d_c00001{width:1607.618880pt;}
._6b_c00001{width:1806.416640pt;}
._b1_c00001{width:1866.424320pt;}
.fs5_c00001{font-size:37.440000pt;}
.fs2_c00001{font-size:42.560000pt;}
.fs3_c00001{font-size:48.000000pt;}
.fs1_c00001{font-size:58.560000pt;}
.fs0_c00001{font-size:64.000000pt;}
.fs4_c00001{font-size:67.461923pt;}
.fsc_c00001{font-size:73.522133pt;}
.fse_c00001{font-size:76.510933pt;}
.fsb_c00001{font-size:80.597867pt;}
.fsd_c00001{font-size:89.940267pt;}
.fs7_c00001{font-size:105.074667pt;}
.fsa_c00001{font-size:124.817067pt;}
.fs8_c00001{font-size:126.612267pt;}
.fs6_c00001{font-size:157.611733pt;}
.fsf_c00001{font-size:160.757867pt;}
.fs9_c00001{font-size:240.221867pt;}
.y8ee_c00001{bottom:-13.920800pt;}
.y606_c00001{bottom:-13.920667pt;}
.y5e7_c00001{bottom:-13.920533pt;}
.y945_c00001{bottom:-13.919333pt;}
.y948_c00001{bottom:-13.919200pt;}
.y950_c00001{bottom:-13.918000pt;}
.y937_c00001{bottom:-13.917867pt;}
.y0_c00001{bottom:0.000000pt;}
.y77_c00001{bottom:2.399333pt;}
.y73_c00001{bottom:2.399467pt;}
.y1ae_c00001{bottom:2.400667pt;}
.yc6_c00001{bottom:2.400800pt;}
.y5f_c00001{bottom:2.402000pt;}
.y12a_c00001{bottom:2.402133pt;}
.y6d_c00001{bottom:2.479333pt;}
.y6a_c00001{bottom:2.479467pt;}
.y110_c00001{bottom:2.480667pt;}
.y1ab_c00001{bottom:2.480800pt;}
.y83_c00001{bottom:2.482000pt;}
.y113_c00001{bottom:2.482133pt;}
.y47e_c00001{bottom:2.559467pt;}
.y473_c00001{bottom:2.560800pt;}
.y452_c00001{bottom:2.562133pt;}
.y11c_c00001{bottom:2.639333pt;}
.y91_c00001{bottom:2.639467pt;}
.y8a_c00001{bottom:2.642133pt;}
.y95_c00001{bottom:2.719467pt;}
.y4a3_c00001{bottom:2.799467pt;}
.y7cf_c00001{bottom:2.879333pt;}
.y7ac_c00001{bottom:2.879467pt;}
.y1c16_c00001{bottom:2.880800pt;}
.y65f_c00001{bottom:2.959467pt;}
.y53d_c00001{bottom:3.039333pt;}
.y7f9_c00001{bottom:3.122000pt;}
.y1a0_c00001{bottom:3.199467pt;}
.y14c_c00001{bottom:3.279467pt;}
.y1d2_c00001{bottom:3.440800pt;}
.y62b_c00001{bottom:3.519333pt;}
.y363_c00001{bottom:3.519467pt;}
.y11a8_c00001{bottom:3.520800pt;}
.y4b_c00001{bottom:3.522000pt;}
.ye23_c00001{bottom:3.522133pt;}
.y62c_c00001{bottom:3.599333pt;}
.y364_c00001{bottom:3.599467pt;}
.y11a9_c00001{bottom:3.600800pt;}
.y4c_c00001{bottom:3.602000pt;}
.ye24_c00001{bottom:3.602133pt;}
.y131e_c00001{bottom:3.679467pt;}
.y1324_c00001{bottom:3.680800pt;}
.y312_c00001{bottom:3.919333pt;}
.y328_c00001{bottom:3.919467pt;}
.y928_c00001{bottom:3.920667pt;}
.y31d_c00001{bottom:3.920800pt;}
.y8e5_c00001{bottom:3.922000pt;}
.y909_c00001{bottom:3.922133pt;}
.y8c7_c00001{bottom:3.999200pt;}
.y320_c00001{bottom:3.999333pt;}
.y306_c00001{bottom:3.999467pt;}
.y32f_c00001{bottom:4.000667pt;}
.y5f5_c00001{bottom:4.000800pt;}
.y5d4_c00001{bottom:4.002000pt;}
.y310_c00001{bottom:4.002133pt;}
.y1ac2_c00001{bottom:4.799467pt;}
.y1cb6_c00001{bottom:5.037600pt;}
.y7a_c00001{bottom:14.639333pt;}
.y76_c00001{bottom:14.639467pt;}
.y1b1_c00001{bottom:14.640667pt;}
.y24f_c00001{bottom:14.640800pt;}
.y61_c00001{bottom:14.642000pt;}
.y22e_c00001{bottom:14.642133pt;}
.y1ed_c00001{bottom:14.719333pt;}
.y69_c00001{bottom:14.719467pt;}
.y3ab_c00001{bottom:14.720667pt;}
.y153_c00001{bottom:14.720800pt;}
.y116_c00001{bottom:14.722000pt;}
.y112_c00001{bottom:14.722133pt;}
.y6c8_c00001{bottom:14.799467pt;}
.y11b_c00001{bottom:14.879333pt;}
.yb1_c00001{bottom:14.879467pt;}
.y4cb_c00001{bottom:14.880800pt;}
.ye8_c00001{bottom:14.959467pt;}
.y535_c00001{bottom:15.039467pt;}
.y51e_c00001{bottom:15.040800pt;}
.y4ce_c00001{bottom:15.042133pt;}
.y793_c00001{bottom:15.439333pt;}
.y1d1_c00001{bottom:15.680800pt;}
.y94_c00001{bottom:16.479467pt;}
.y4a2_c00001{bottom:16.639467pt;}
.y1bdc_c00001{bottom:16.719467pt;}
.y67f_c00001{bottom:17.839333pt;}
.y4e_c00001{bottom:17.839467pt;}
.y66c_c00001{bottom:17.840667pt;}
.y3a6_c00001{bottom:17.840800pt;}
.y62e_c00001{bottom:17.842000pt;}
.y366_c00001{bottom:17.842133pt;}
.y4f_c00001{bottom:19.119333pt;}
.y3c1_c00001{bottom:19.119467pt;}
.y3a7_c00001{bottom:19.120800pt;}
.y367_c00001{bottom:19.122133pt;}
.y9c3_c00001{bottom:21.839333pt;}
.y93e_c00001{bottom:21.839467pt;}
.ya2a_c00001{bottom:21.840667pt;}
.y31c_c00001{bottom:21.840800pt;}
.ya1c_c00001{bottom:21.842000pt;}
.y96b_c00001{bottom:21.842133pt;}
.y5c8_c00001{bottom:21.919333pt;}
.y93c_c00001{bottom:21.919467pt;}
.y335_c00001{bottom:21.920667pt;}
.y9e7_c00001{bottom:21.920800pt;}
.ya03_c00001{bottom:21.922000pt;}
.y337_c00001{bottom:21.922133pt;}
.y1b44_c00001{bottom:22.399333pt;}
.y138f_c00001{bottom:26.079333pt;}
.y1636_c00001{bottom:26.079467pt;}
.y1b3b_c00001{bottom:26.239333pt;}
.y1287_c00001{bottom:26.239467pt;}
.y1b33_c00001{bottom:26.240667pt;}
.y1272_c00001{bottom:26.240800pt;}
.y1b17_c00001{bottom:26.242000pt;}
.y132a_c00001{bottom:26.479467pt;}
.y1748_c00001{bottom:26.482133pt;}
.y300_c00001{bottom:26.879333pt;}
.y5c2_c00001{bottom:26.879467pt;}
.y2ce_c00001{bottom:26.880667pt;}
.y590_c00001{bottom:26.880800pt;}
.y207_c00001{bottom:26.882133pt;}
.y66_c00001{bottom:26.959333pt;}
.ycd_c00001{bottom:26.959467pt;}
.y1ad_c00001{bottom:26.960667pt;}
.y10e_c00001{bottom:26.960800pt;}
.y170_c00001{bottom:26.962000pt;}
.y5d_c00001{bottom:26.962133pt;}
.y833_c00001{bottom:27.039333pt;}
.ye5_c00001{bottom:27.039467pt;}
.y472_c00001{bottom:27.040800pt;}
.y450_c00001{bottom:27.042133pt;}
.y53b_c00001{bottom:27.519467pt;}
.y4bc_c00001{bottom:27.520800pt;}
.y652_c00001{bottom:27.522133pt;}
.y98_c00001{bottom:30.239467pt;}
.y369_c00001{bottom:34.239333pt;}
.y51_c00001{bottom:34.239467pt;}
.y1cb5_c00001{bottom:34.305333pt;}
.y1a9b_c00001{bottom:36.319333pt;}
.y158a_c00001{bottom:36.319467pt;}
.y1a96_c00001{bottom:36.320667pt;}
.y1a7d_c00001{bottom:36.322000pt;}
.y1a9f_c00001{bottom:36.399333pt;}
.y167d_c00001{bottom:36.399467pt;}
.y1cbd_c00001{bottom:37.983467pt;}
.y1781_c00001{bottom:38.959467pt;}
.y1979_c00001{bottom:38.960800pt;}
.y196e_c00001{bottom:38.962133pt;}
.y1705_c00001{bottom:39.039333pt;}
.y1901_c00001{bottom:39.039467pt;}
.y1751_c00001{bottom:39.040800pt;}
.y70_c00001{bottom:39.199333pt;}
.ya2_c00001{bottom:39.199467pt;}
.yc3_c00001{bottom:39.200667pt;}
.ya7_c00001{bottom:39.200800pt;}
.y13e_c00001{bottom:39.202000pt;}
.y1d4_c00001{bottom:39.202133pt;}
.yfd_c00001{bottom:39.279333pt;}
.y55_c00001{bottom:39.279467pt;}
.yf9_c00001{bottom:39.280667pt;}
.y212_c00001{bottom:39.280800pt;}
.ybd_c00001{bottom:39.282000pt;}
.y235_c00001{bottom:39.282133pt;}
.y878_c00001{bottom:39.679333pt;}
.y7a9_c00001{bottom:39.679467pt;}
.y86b_c00001{bottom:39.680667pt;}
.y824_c00001{bottom:39.682000pt;}
.ybd6_c00001{bottom:39.759333pt;}
.ya40_c00001{bottom:39.759467pt;}
.yc4f_c00001{bottom:39.760800pt;}
.yc82_c00001{bottom:39.762133pt;}
.yc93_c00001{bottom:39.839333pt;}
.ybf4_c00001{bottom:39.839467pt;}
.yc88_c00001{bottom:39.840667pt;}
.ybc1_c00001{bottom:39.840800pt;}
.yc66_c00001{bottom:39.842000pt;}
.y7eb_c00001{bottom:40.159333pt;}
.y131c_c00001{bottom:40.479333pt;}
.y1336_c00001{bottom:40.479467pt;}
.y1322_c00001{bottom:40.480800pt;}
.y1381_c00001{bottom:40.559333pt;}
.y1334_c00001{bottom:40.559467pt;}
.y1b99_c00001{bottom:40.560667pt;}
.y1072_c00001{bottom:40.560800pt;}
.y1a3e_c00001{bottom:40.562000pt;}
.y1308_c00001{bottom:40.562133pt;}
.y13c8_c00001{bottom:40.639333pt;}
.y156a_c00001{bottom:40.639467pt;}
.y197b_c00001{bottom:40.640800pt;}
.y1971_c00001{bottom:40.642133pt;}
.y1b4b_c00001{bottom:45.679333pt;}
.y11eb_c00001{bottom:48.879333pt;}
.y105f_c00001{bottom:48.959333pt;}
.yeba_c00001{bottom:48.959467pt;}
.y1cb4_c00001{bottom:50.048667pt;}
.y12f_c00001{bottom:51.439333pt;}
.y144_c00001{bottom:51.439467pt;}
.y1e3_c00001{bottom:51.440667pt;}
.y546_c00001{bottom:51.440800pt;}
.y126_c00001{bottom:51.442000pt;}
.y21f_c00001{bottom:51.519333pt;}
.y101_c00001{bottom:51.519467pt;}
.yea_c00001{bottom:51.520800pt;}
.y64c_c00001{bottom:51.522133pt;}
.y3c3_c00001{bottom:51.759467pt;}
.y3a9_c00001{bottom:51.760800pt;}
.y374_c00001{bottom:51.762133pt;}
.y398_c00001{bottom:51.839333pt;}
.y642_c00001{bottom:51.839467pt;}
.y3c7_c00001{bottom:52.319467pt;}
.y3b5_c00001{bottom:52.320800pt;}
.y38f_c00001{bottom:52.322133pt;}
.y294_c00001{bottom:52.399333pt;}
.ye75_c00001{bottom:53.919333pt;}
.ye4a_c00001{bottom:53.919467pt;}
.ye59_c00001{bottom:53.920667pt;}
.yec7_c00001{bottom:53.920800pt;}
.ye30_c00001{bottom:53.922133pt;}
.yf22_c00001{bottom:53.999333pt;}
.y1_c00001{bottom:54.887600pt;}
.yb5f_c00001{bottom:57.679467pt;}
.yaae_c00001{bottom:57.680800pt;}
.yb9c_c00001{bottom:57.682133pt;}
.ya5a_c00001{bottom:57.760800pt;}
.yb70_c00001{bottom:57.762000pt;}
.y8d_c00001{bottom:57.839467pt;}
.y86_c00001{bottom:57.842133pt;}
.y1314_c00001{bottom:61.119467pt;}
.y15aa_c00001{bottom:61.199333pt;}
.y104f_c00001{bottom:61.199467pt;}
.y15a5_c00001{bottom:61.200667pt;}
.y1053_c00001{bottom:61.200800pt;}
.y157a_c00001{bottom:61.202000pt;}
.y1339_c00001{bottom:61.202133pt;}
.y479_c00001{bottom:62.479467pt;}
.y46f_c00001{bottom:62.480800pt;}
.y43d_c00001{bottom:62.482133pt;}
.y1bee_c00001{bottom:62.719467pt;}
.y1c05_c00001{bottom:62.722133pt;}
.y218_c00001{bottom:63.759333pt;}
.y103_c00001{bottom:63.759467pt;}
.y685_c00001{bottom:63.760667pt;}
.y837_c00001{bottom:63.760800pt;}
.y6cb_c00001{bottom:63.762000pt;}
.y3fd_c00001{bottom:63.762133pt;}
.y633_c00001{bottom:63.919333pt;}
.y57b_c00001{bottom:63.919467pt;}
.y3c2_c00001{bottom:63.999333pt;}
.y7ca_c00001{bottom:63.999467pt;}
.y3a8_c00001{bottom:64.000667pt;}
.y7b3_c00001{bottom:64.000800pt;}
.y373_c00001{bottom:64.002000pt;}
.yef2_c00001{bottom:65.199467pt;}
.y1ab5_c00001{bottom:66.239333pt;}
.ye4e_c00001{bottom:74.479333pt;}
.ye77_c00001{bottom:74.479467pt;}
.y1057_c00001{bottom:74.480667pt;}
.ye73_c00001{bottom:74.480800pt;}
.y1048_c00001{bottom:74.482000pt;}
.ye6c_c00001{bottom:74.482133pt;}
.ye79_c00001{bottom:74.559467pt;}
.yf15_c00001{bottom:74.560800pt;}
.yf03_c00001{bottom:74.562133pt;}
.y5ef_c00001{bottom:75.599467pt;}
.yb02_c00001{bottom:75.602133pt;}
.y23a_c00001{bottom:75.999467pt;}
.y86e_c00001{bottom:76.000800pt;}
.y4b4_c00001{bottom:76.002133pt;}
.y840_c00001{bottom:76.079333pt;}
.y246_c00001{bottom:76.079467pt;}
.y7d_c00001{bottom:76.082000pt;}
.y273_c00001{bottom:76.082133pt;}
.y1c11_c00001{bottom:76.239333pt;}
.y1c12_c00001{bottom:76.479333pt;}
.y891_c00001{bottom:76.559467pt;}
.y11df_c00001{bottom:81.759333pt;}
.y133e_c00001{bottom:81.759467pt;}
.y1899_c00001{bottom:81.760667pt;}
.y1640_c00001{bottom:81.760800pt;}
.y186b_c00001{bottom:81.762000pt;}
.y1562_c00001{bottom:81.762133pt;}
.y182c_c00001{bottom:81.839467pt;}
.y17f9_c00001{bottom:81.840800pt;}
.y1ab3_c00001{bottom:86.799467pt;}
.y1abb_c00001{bottom:86.879333pt;}
.y1cb3_c00001{bottom:87.494000pt;}
.y12a3_c00001{bottom:87.839467pt;}
.y559_c00001{bottom:88.240800pt;}
.y876_c00001{bottom:88.319467pt;}
.y869_c00001{bottom:88.320800pt;}
.y81d_c00001{bottom:88.322133pt;}
.yb23_c00001{bottom:93.439467pt;}
.y92c_c00001{bottom:93.520667pt;}
.y61e_c00001{bottom:93.520800pt;}
.y354_c00001{bottom:93.522000pt;}
.y17a2_c00001{bottom:95.039333pt;}
.y10bb_c00001{bottom:95.042133pt;}
.y991_c00001{bottom:95.080000pt;}
.ye7d_c00001{bottom:95.119333pt;}
.y1094_c00001{bottom:95.119467pt;}
.y1280_c00001{bottom:95.120667pt;}
.y126d_c00001{bottom:95.122000pt;}
.y1068_c00001{bottom:95.122133pt;}
.yd8_c00001{bottom:96.438667pt;}
.yff_c00001{bottom:96.440000pt;}
.yc1c_c00001{bottom:96.760000pt;}
.yad7_c00001{bottom:98.440000pt;}
.y1bf8_c00001{bottom:99.519467pt;}
.y7c0_c00001{bottom:99.640000pt;}
.y167c_c00001{bottom:99.720000pt;}
.y18a7_c00001{bottom:99.842133pt;}
.y9d5_c00001{bottom:100.038667pt;}
.y9f4_c00001{bottom:100.040000pt;}
.y2e2_c00001{bottom:100.119467pt;}
.y97_c00001{bottom:100.200000pt;}
.y1c6a_c00001{bottom:100.319467pt;}
.y1c67_c00001{bottom:100.559467pt;}
.y6fb_c00001{bottom:100.639467pt;}
.yc1d_c00001{bottom:100.759467pt;}
.y8b7_c00001{bottom:100.998587pt;}
.y1140_c00001{bottom:101.030107pt;}
.y1162_c00001{bottom:101.044747pt;}
.yc4a_c00001{bottom:101.237333pt;}
.yc8b_c00001{bottom:101.238667pt;}
.yc96_c00001{bottom:101.240000pt;}
.y1c6f_c00001{bottom:101.359333pt;}
.yb7e_c00001{bottom:101.800000pt;}
.y95b_c00001{bottom:101.958667pt;}
.y1790_c00001{bottom:102.319333pt;}
.y1a53_c00001{bottom:102.319467pt;}
.y1a3b_c00001{bottom:102.322133pt;}
.y1a99_c00001{bottom:102.399333pt;}
.y1568_c00001{bottom:102.399467pt;}
.y1a92_c00001{bottom:102.400667pt;}
.y1a73_c00001{bottom:102.402000pt;}
.yadc_c00001{bottom:102.435227pt;}
.y1403_c00001{bottom:102.439467pt;}
.y19ec_c00001{bottom:102.599333pt;}
.y24_c00001{bottom:102.599467pt;}
.y157_c00001{bottom:102.918667pt;}
.y111f_c00001{bottom:103.451947pt;}
.yda0_c00001{bottom:103.479467pt;}
.y587_c00001{bottom:104.040000pt;}
.yfb9_c00001{bottom:104.355387pt;}
.y5b5_c00001{bottom:104.920987pt;}
.yc84_c00001{bottom:105.233307pt;}
.ydfc_c00001{bottom:105.235387pt;}
.yc4b_c00001{bottom:105.239467pt;}
.ydd0_c00001{bottom:105.242187pt;}
.y6b9_c00001{bottom:105.400000pt;}
.yb80_c00001{bottom:105.793307pt;}
.y963_c00001{bottom:105.876507pt;}
.yff8_c00001{bottom:106.115387pt;}
.y120a_c00001{bottom:108.479467pt;}
.y19f_c00001{bottom:108.760000pt;}
.y51b_c00001{bottom:108.840000pt;}
.y4ca_c00001{bottom:108.918667pt;}
.ycd2_c00001{bottom:108.994187pt;}
.ycc8_c00001{bottom:108.997707pt;}
.y861_c00001{bottom:109.240000pt;}
.y13f9_c00001{bottom:109.399467pt;}
.y12e0_c00001{bottom:109.559467pt;}
.y167b_c00001{bottom:109.799467pt;}
.ybeb_c00001{bottom:109.800000pt;}
.y1567_c00001{bottom:110.520000pt;}
.yf7d_c00001{bottom:110.679467pt;}
.yed_c00001{bottom:111.167467pt;}
.y16c9_c00001{bottom:111.239467pt;}
.y341_c00001{bottom:111.359467pt;}
.y779_c00001{bottom:111.400000pt;}
.y158_c00001{bottom:111.479467pt;}
.y4cc_c00001{bottom:111.559467pt;}
.y866_c00001{bottom:111.730347pt;}
.yd71_c00001{bottom:111.799333pt;}
.yd5c_c00001{bottom:111.799467pt;}
.yb01_c00001{bottom:112.277333pt;}
.y19a6_c00001{bottom:113.239467pt;}
.y7c3_c00001{bottom:114.367467pt;}
.ycfd_c00001{bottom:114.600000pt;}
.ya27_c00001{bottom:115.314187pt;}
.y2a5_c00001{bottom:115.480000pt;}
.y11f0_c00001{bottom:115.679333pt;}
.y103b_c00001{bottom:115.679467pt;}
.y121e_c00001{bottom:115.680800pt;}
.y370_c00001{bottom:115.720000pt;}
.y67c_c00001{bottom:115.802667pt;}
.y669_c00001{bottom:115.806347pt;}
.y20e_c00001{bottom:116.280000pt;}
.y45_c00001{bottom:116.439467pt;}
.y99_c00001{bottom:116.679467pt;}
.y998_c00001{bottom:116.915867pt;}
.y999_c00001{bottom:116.919467pt;}
.yc1b_c00001{bottom:116.920000pt;}
.y99b_c00001{bottom:116.920107pt;}
.yfc_c00001{bottom:116.959467pt;}
.yf8_c00001{bottom:116.960800pt;}
.yb7_c00001{bottom:116.962133pt;}
.y9a_c00001{bottom:117.159467pt;}
.y1aee_c00001{bottom:117.719467pt;}
.y3be_c00001{bottom:118.126747pt;}
.y3a3_c00001{bottom:118.129227pt;}
.ya8a_c00001{bottom:118.197467pt;}
.y1177_c00001{bottom:118.257867pt;}
.yf65_c00001{bottom:118.279333pt;}
.yd04_c00001{bottom:118.596507pt;}
.y588_c00001{bottom:118.759467pt;}
.yef0_c00001{bottom:118.918587pt;}
.ybb1_c00001{bottom:119.393173pt;}
.y778_c00001{bottom:119.399467pt;}
.y118e_c00001{bottom:119.692853pt;}
.y77a_c00001{bottom:119.959467pt;}
.y6c5_c00001{bottom:120.123467pt;}
.y710_c00001{bottom:120.280000pt;}
.yadb_c00001{bottom:120.354587pt;}
.yed0_c00001{bottom:121.759333pt;}
.ye53_c00001{bottom:121.759467pt;}
.yec9_c00001{bottom:121.760667pt;}
.yeb2_c00001{bottom:121.762000pt;}
.ye3a_c00001{bottom:121.762133pt;}
.y12cc_c00001{bottom:121.782773pt;}
.ye40_c00001{bottom:121.839467pt;}
.yee8_c00001{bottom:121.842133pt;}
.yd9f_c00001{bottom:121.879467pt;}
.ya11_c00001{bottom:121.945467pt;}
.y9df_c00001{bottom:121.950987pt;}
.y9e2_c00001{bottom:121.953947pt;}
.ya15_c00001{bottom:121.955227pt;}
.ya5c_c00001{bottom:121.960107pt;}
.y1cae_c00001{bottom:122.366667pt;}
.y1603_c00001{bottom:122.599467pt;}
.ydfb_c00001{bottom:122.759467pt;}
.ydcf_c00001{bottom:122.839467pt;}
.y192f_c00001{bottom:122.959333pt;}
.y15ad_c00001{bottom:122.959467pt;}
.y18fd_c00001{bottom:122.960800pt;}
.y15cf_c00001{bottom:122.962133pt;}
.y1741_c00001{bottom:122.998347pt;}
.yc83_c00001{bottom:123.079467pt;}
.y19d_c00001{bottom:123.240000pt;}
.yee_c00001{bottom:123.399467pt;}
.yec_c00001{bottom:123.403467pt;}
.y51c_c00001{bottom:123.559467pt;}
.yb7f_c00001{bottom:123.639467pt;}
.y962_c00001{bottom:123.795867pt;}
.yb4c_c00001{bottom:123.795947pt;}
.yb52_c00001{bottom:123.799227pt;}
.yfe4_c00001{bottom:123.955387pt;}
.y865_c00001{bottom:123.966347pt;}
.y143e_c00001{bottom:124.120000pt;}
.y11ef_c00001{bottom:124.600000pt;}
.y1777_c00001{bottom:124.719467pt;}
.y20f_c00001{bottom:124.839467pt;}
.y1597_c00001{bottom:124.920000pt;}
.y127c_c00001{bottom:125.237333pt;}
.y1283_c00001{bottom:125.238667pt;}
.y1288_c00001{bottom:125.240000pt;}
.y1740_c00001{bottom:125.644907pt;}
.yf12_c00001{bottom:126.197333pt;}
.yf18_c00001{bottom:126.198667pt;}
.y6c6_c00001{bottom:126.199467pt;}
.yf1b_c00001{bottom:126.200000pt;}
.y12a6_c00001{bottom:126.360000pt;}
.y7c4_c00001{bottom:126.599467pt;}
.y7c2_c00001{bottom:126.603467pt;}
.yb3f_c00001{bottom:127.235733pt;}
.yb22_c00001{bottom:127.239467pt;}
.yb27_c00001{bottom:127.241387pt;}
.y19a8_c00001{bottom:127.326800pt;}
.y113f_c00001{bottom:127.835947pt;}
.y1161_c00001{bottom:127.850587pt;}
.y155_c00001{bottom:128.118667pt;}
.y67b_c00001{bottom:128.123787pt;}
.y668_c00001{bottom:128.127467pt;}
.y1a5a_c00001{bottom:128.195227pt;}
.y81a_c00001{bottom:128.449093pt;}
.y167a_c00001{bottom:128.519467pt;}
.y6ba_c00001{bottom:128.799467pt;}
.y11ad_c00001{bottom:129.039467pt;}
.yf8c_c00001{bottom:129.079467pt;}
.y992_c00001{bottom:129.279467pt;}
.y95c_c00001{bottom:129.280800pt;}
.y16c8_c00001{bottom:129.639467pt;}
.y1b96_c00001{bottom:129.642267pt;}
.ybe9_c00001{bottom:129.880000pt;}
.y12f5_c00001{bottom:130.039467pt;}
.y2a7_c00001{bottom:130.118347pt;}
.yd4c_c00001{bottom:130.199333pt;}
.y23_c00001{bottom:130.199467pt;}
.y111e_c00001{bottom:130.330987pt;}
.y3bd_c00001{bottom:130.447867pt;}
.y3a2_c00001{bottom:130.450347pt;}
.y156b_c00001{bottom:130.519467pt;}
.y19a5_c00001{bottom:131.639467pt;}
.y19e_c00001{bottom:131.799467pt;}
.y1701_c00001{bottom:131.879467pt;}
.y6c4_c00001{bottom:132.359467pt;}
.y1a8e_c00001{bottom:132.842267pt;}
.y1af0_c00001{bottom:133.002267pt;}
.ybea_c00001{bottom:133.879467pt;}
.yb05_c00001{bottom:134.193947pt;}
.y67d_c00001{bottom:134.199227pt;}
.yf37_c00001{bottom:134.200000pt;}
.y66a_c00001{bottom:134.202907pt;}
.y16cb_c00001{bottom:134.523467pt;}
.y4c7_c00001{bottom:134.598667pt;}
.y997_c00001{bottom:134.835227pt;}
.y99a_c00001{bottom:134.839467pt;}
.y8b6_c00001{bottom:134.919467pt;}
.y457_c00001{bottom:135.000000pt;}
.y70f_c00001{bottom:135.002347pt;}
.y725_c00001{bottom:135.003547pt;}
.yeb_c00001{bottom:135.639467pt;}
.y1441_c00001{bottom:135.722347pt;}
.y1a8d_c00001{bottom:135.959467pt;}
.y1aed_c00001{bottom:136.119467pt;}
.y864_c00001{bottom:136.202347pt;}
.y1034_c00001{bottom:136.239467pt;}
.y2a8_c00001{bottom:136.279467pt;}
.y10a8_c00001{bottom:136.319333pt;}
.y11fc_c00001{bottom:136.319467pt;}
.y10a2_c00001{bottom:136.320667pt;}
.y11bb_c00001{bottom:136.320800pt;}
.y1084_c00001{bottom:136.322000pt;}
.yd03_c00001{bottom:136.515867pt;}
.y156_c00001{bottom:136.679467pt;}
.y684_c00001{bottom:136.719333pt;}
.yc49_c00001{bottom:136.998667pt;}
.y12df_c00001{bottom:136.999467pt;}
.y4c9_c00001{bottom:137.003467pt;}
.y17cd_c00001{bottom:137.159333pt;}
.y13f8_c00001{bottom:137.159467pt;}
.ye6b_c00001{bottom:137.237333pt;}
.ye72_c00001{bottom:137.238667pt;}
.ye76_c00001{bottom:137.240000pt;}
.y25a_c00001{bottom:137.359467pt;}
.y360_c00001{bottom:137.479467pt;}
.yc1a_c00001{bottom:137.717333pt;}
.yc24_c00001{bottom:137.718667pt;}
.yc2e_c00001{bottom:137.720000pt;}
.yada_c00001{bottom:138.200747pt;}
.y7c1_c00001{bottom:138.839467pt;}
.y5b4_c00001{bottom:138.841867pt;}
.y1a26_c00001{bottom:139.076373pt;}
.y1a1b_c00001{bottom:139.079467pt;}
.y19a7_c00001{bottom:139.562800pt;}
.ya10_c00001{bottom:139.791627pt;}
.y9de_c00001{bottom:139.797147pt;}
.y9e1_c00001{bottom:139.800107pt;}
.ya14_c00001{bottom:139.801387pt;}
.ya5b_c00001{bottom:139.879467pt;}
.y1b95_c00001{bottom:140.359467pt;}
.y67a_c00001{bottom:140.359787pt;}
.y667_c00001{bottom:140.363467pt;}
.y72b_c00001{bottom:140.399467pt;}
.y71d_c00001{bottom:140.400800pt;}
.y6ec_c00001{bottom:140.402133pt;}
.y777_c00001{bottom:140.603467pt;}
.yd9e_c00001{bottom:140.675387pt;}
.y819_c00001{bottom:140.685093pt;}
.y1bc8_c00001{bottom:140.920000pt;}
.y1602_c00001{bottom:140.999467pt;}
.y711_c00001{bottom:141.159467pt;}
.y409_c00001{bottom:141.160000pt;}
.yfe3_c00001{bottom:141.479467pt;}
.y209_c00001{bottom:141.480000pt;}
.ye20_c00001{bottom:141.555387pt;}
.ydfa_c00001{bottom:141.562187pt;}
.ydce_c00001{bottom:141.635387pt;}
.y1b29_c00001{bottom:141.639467pt;}
.y961_c00001{bottom:141.715227pt;}
.y18f7_c00001{bottom:141.722507pt;}
.y93_c00001{bottom:142.200000pt;}
.yecd_c00001{bottom:142.319333pt;}
.y1192_c00001{bottom:142.319467pt;}
.yec5_c00001{bottom:142.320667pt;}
.yea3_c00001{bottom:142.322000pt;}
.yff7_c00001{bottom:142.355387pt;}
.y867_c00001{bottom:142.373547pt;}
.y10d6_c00001{bottom:142.399333pt;}
.ye9c_c00001{bottom:142.399467pt;}
.y1243_c00001{bottom:142.400667pt;}
.y122b_c00001{bottom:142.402000pt;}
.ye33_c00001{bottom:142.402133pt;}
.y2a6_c00001{bottom:142.439467pt;}
.y3bc_c00001{bottom:142.683867pt;}
.y3a1_c00001{bottom:142.686347pt;}
.ycd1_c00001{bottom:142.915067pt;}
.ycc7_c00001{bottom:142.918587pt;}
.y1903_c00001{bottom:143.519467pt;}
.y15c5_c00001{bottom:143.520800pt;}
.y150_c00001{bottom:143.563467pt;}
.y40a_c00001{bottom:143.639467pt;}
.y1aef_c00001{bottom:143.719467pt;}
.y44_c00001{bottom:144.039467pt;}
.y1052_c00001{bottom:144.438667pt;}
.y1826_c00001{bottom:144.439467pt;}
.y105b_c00001{bottom:144.440000pt;}
.y11f4_c00001{bottom:144.601627pt;}
.y159e_c00001{bottom:144.919867pt;}
.y1176_c00001{bottom:145.063707pt;}
.yb3e_c00001{bottom:145.155093pt;}
.yb26_c00001{bottom:145.160747pt;}
.y586_c00001{bottom:145.163467pt;}
.y127d_c00001{bottom:145.239467pt;}
.y1703_c00001{bottom:145.958347pt;}
.yf13_c00001{bottom:146.199467pt;}
.y519_c00001{bottom:146.280000pt;}
.y12a9_c00001{bottom:146.356187pt;}
.y118d_c00001{bottom:146.571893pt;}
.y1814_c00001{bottom:146.639333pt;}
.y16ca_c00001{bottom:146.759467pt;}
.y1a59_c00001{bottom:146.999467pt;}
.y123c_c00001{bottom:147.000000pt;}
.y70e_c00001{bottom:147.238347pt;}
.y724_c00001{bottom:147.239547pt;}
.yf7c_c00001{bottom:147.479467pt;}
.y1783_c00001{bottom:147.519467pt;}
.y1b2a_c00001{bottom:147.723467pt;}
.y16c7_c00001{bottom:148.039467pt;}
.y1440_c00001{bottom:148.043467pt;}
.y863_c00001{bottom:148.438347pt;}
.y19b_c00001{bottom:148.440000pt;}
.y12cb_c00001{bottom:148.588613pt;}
.yd70_c00001{bottom:148.599333pt;}
.yd5b_c00001{bottom:148.599467pt;}
.y51a_c00001{bottom:148.759467pt;}
.y3bf_c00001{bottom:148.769947pt;}
.y3a4_c00001{bottom:148.772427pt;}
.ya26_c00001{bottom:149.235067pt;}
.y4c8_c00001{bottom:149.239467pt;}
.y1827_c00001{bottom:149.323200pt;}
.y17f3_c00001{bottom:149.479467pt;}
.y458_c00001{bottom:149.719467pt;}
.y19a4_c00001{bottom:150.039467pt;}
.y1700_c00001{bottom:150.279467pt;}
.y1bc7_c00001{bottom:150.999467pt;}
.y35f_c00001{bottom:152.040000pt;}
.yb04_c00001{bottom:152.113307pt;}
.ya89_c00001{bottom:152.118347pt;}
.y773_c00001{bottom:152.195467pt;}
.y96_c00001{bottom:152.359467pt;}
.y1262_c00001{bottom:152.440000pt;}
.y679_c00001{bottom:152.595787pt;}
.y666_c00001{bottom:152.599467pt;}
.y996_c00001{bottom:152.754587pt;}
.y776_c00001{bottom:152.839467pt;}
.y19db_c00001{bottom:152.919467pt;}
.y818_c00001{bottom:153.006213pt;}
.y1b28_c00001{bottom:153.079467pt;}
.y1b39_c00001{bottom:153.082667pt;}
.ybb0_c00001{bottom:153.314053pt;}
.y152_c00001{bottom:153.318667pt;}
.y1677_c00001{bottom:153.559333pt;}
.yf38_c00001{bottom:154.199467pt;}
.yd02_c00001{bottom:154.362027pt;}
.y1aec_c00001{bottom:154.519467pt;}
.y113e_c00001{bottom:154.714987pt;}
.y1160_c00001{bottom:154.729627pt;}
.y3bb_c00001{bottom:154.919867pt;}
.yc81_c00001{bottom:154.920000pt;}
.y3a0_c00001{bottom:154.922347pt;}
.yf64_c00001{bottom:155.079333pt;}
.y11d8_c00001{bottom:155.679467pt;}
.yad9_c00001{bottom:156.120107pt;}
.y20c_c00001{bottom:156.122347pt;}
.y18f9_c00001{bottom:156.126000pt;}
.yb7d_c00001{bottom:156.197333pt;}
.y1925_c00001{bottom:156.882000pt;}
.y19c_c00001{bottom:156.999467pt;}
.y111d_c00001{bottom:157.210027pt;}
.ye6e_c00001{bottom:157.244773pt;}
.y14f_c00001{bottom:157.399467pt;}
.y1c93_c00001{bottom:157.479333pt;}
.y1402_c00001{bottom:157.639467pt;}
.ya0f_c00001{bottom:157.710987pt;}
.y9dd_c00001{bottom:157.716507pt;}
.yb4b_c00001{bottom:157.716827pt;}
.y9e0_c00001{bottom:157.719467pt;}
.y1b90_c00001{bottom:157.720000pt;}
.yb51_c00001{bottom:157.720107pt;}
.ya13_c00001{bottom:157.720747pt;}
.y1a25_c00001{bottom:157.796373pt;}
.y19eb_c00001{bottom:157.799333pt;}
.y22_c00001{bottom:157.799467pt;}
.yc18_c00001{bottom:157.800000pt;}
.yd9d_c00001{bottom:158.199467pt;}
.y1702_c00001{bottom:158.279467pt;}
.y1377_c00001{bottom:158.359333pt;}
.ye7_c00001{bottom:158.440000pt;}
.y1525_c00001{bottom:158.999467pt;}
.y152f_c00001{bottom:159.001493pt;}
.ye1f_c00001{bottom:159.079467pt;}
.y81b_c00001{bottom:159.092293pt;}
.ydcd_c00001{bottom:159.159467pt;}
.y1601_c00001{bottom:159.399467pt;}
.y6c2_c00001{bottom:159.410347pt;}
.y1b6b_c00001{bottom:159.478027pt;}
.y1b6c_c00001{bottom:159.558133pt;}
.y70d_c00001{bottom:159.559467pt;}
.y723_c00001{bottom:159.560667pt;}
.y960_c00001{bottom:159.634587pt;}
.y1635_c00001{bottom:159.640000pt;}
.yff6_c00001{bottom:159.879467pt;}
.y1c3f_c00001{bottom:159.880000pt;}
.y156d_c00001{bottom:160.042133pt;}
.yfe2_c00001{bottom:160.275253pt;}
.y143f_c00001{bottom:160.279467pt;}
.y173b_c00001{bottom:160.757333pt;}
.y1744_c00001{bottom:160.758667pt;}
.y862_c00001{bottom:160.759467pt;}
.y1745_c00001{bottom:160.760000pt;}
.y1aea_c00001{bottom:160.999467pt;}
.ye9_c00001{bottom:161.079467pt;}
.y7bc_c00001{bottom:161.640000pt;}
.yc19_c00001{bottom:161.799467pt;}
.y154_c00001{bottom:161.879467pt;}
.y6a9_c00001{bottom:161.922000pt;}
.y18f6_c00001{bottom:162.364907pt;}
.y13af_c00001{bottom:162.599467pt;}
.yc1_c00001{bottom:162.639333pt;}
.y143d_c00001{bottom:162.679467pt;}
.y1486_c00001{bottom:162.767600pt;}
.y1825_c00001{bottom:162.839467pt;}
.ye5c_c00001{bottom:162.879467pt;}
.yb3d_c00001{bottom:163.074453pt;}
.yb25_c00001{bottom:163.080107pt;}
.y1378_c00001{bottom:163.243200pt;}
.y1483_c00001{bottom:163.959467pt;}
.y1a52_c00001{bottom:164.280000pt;}
.y1055_c00001{bottom:164.437067pt;}
.y17cc_c00001{bottom:164.759333pt;}
.y13f7_c00001{bottom:164.759467pt;}
.y774_c00001{bottom:165.000000pt;}
.y1862_c00001{bottom:165.002187pt;}
.y2a0_c00001{bottom:165.160000pt;}
.y817_c00001{bottom:165.242213pt;}
.y11f3_c00001{bottom:165.244027pt;}
.y1605_c00001{bottom:165.477600pt;}
.y628_c00001{bottom:165.719467pt;}
.ybe8_c00001{bottom:165.720000pt;}
.yf8b_c00001{bottom:165.879467pt;}
.y772_c00001{bottom:165.959467pt;}
.y132f_c00001{bottom:166.118880pt;}
.y11ca_c00001{bottom:166.275947pt;}
.y18f4_c00001{bottom:166.279467pt;}
.y3eb_c00001{bottom:166.360000pt;}
.y16c6_c00001{bottom:166.439467pt;}
.y706_c00001{bottom:166.603467pt;}
.yd4b_c00001{bottom:166.999333pt;}
.yd6b_c00001{bottom:166.999467pt;}
.y123f_c00001{bottom:167.009467pt;}
.y3ba_c00001{bottom:167.155867pt;}
.y39f_c00001{bottom:167.158347pt;}
.y1637_c00001{bottom:167.319467pt;}
.yeee_c00001{bottom:167.400000pt;}
.y13b0_c00001{bottom:167.483200pt;}
.y775_c00001{bottom:167.639467pt;}
.y678_c00001{bottom:167.640747pt;}
.y665_c00001{bottom:167.642347pt;}
.y2a3_c00001{bottom:167.647467pt;}
.y17f2_c00001{bottom:167.879467pt;}
.y15d7_c00001{bottom:168.159467pt;}
.y1bf3_c00001{bottom:168.239333pt;}
.y18f8_c00001{bottom:168.362000pt;}
.y20d_c00001{bottom:168.439467pt;}
.y20b_c00001{bottom:168.443467pt;}
.y1c2f_c00001{bottom:168.479467pt;}
.y16ff_c00001{bottom:168.679467pt;}
.y408_c00001{bottom:168.843467pt;}
.y581_c00001{bottom:169.157333pt;}
.ye46_c00001{bottom:169.558587pt;}
.y1bc6_c00001{bottom:169.719467pt;}
.yb03_c00001{bottom:169.959467pt;}
.y1b6a_c00001{bottom:170.279467pt;}
.y8c_c00001{bottom:170.520000pt;}
.y995_c00001{bottom:170.673947pt;}
.y156c_c00001{bottom:170.759333pt;}
.ye9a_c00001{bottom:170.918587pt;}
.y1a8c_c00001{bottom:171.002267pt;}
.y517_c00001{bottom:171.480000pt;}
.y43_c00001{bottom:171.639467pt;}
.y6c1_c00001{bottom:171.646347pt;}
.y584_c00001{bottom:171.647467pt;}
.y1569_c00001{bottom:171.719467pt;}
.y1175_c00001{bottom:171.942747pt;}
.y1676_c00001{bottom:171.959333pt;}
.y4c6_c00001{bottom:172.037333pt;}
.yd01_c00001{bottom:172.281387pt;}
.ya59_c00001{bottom:172.360000pt;}
.y1263_c00001{bottom:172.439467pt;}
.y455_c00001{bottom:172.517333pt;}
.y476_c00001{bottom:172.518667pt;}
.y47f_c00001{bottom:172.520000pt;}
.y353_c00001{bottom:172.757333pt;}
.y17f5_c00001{bottom:172.759813pt;}
.y5b3_c00001{bottom:172.762747pt;}
.y10c9_c00001{bottom:172.840000pt;}
.y1cad_c00001{bottom:172.933227pt;}
.y1895_c00001{bottom:173.319467pt;}
.y1638_c00001{bottom:173.402267pt;}
.y118c_c00001{bottom:173.450933pt;}
.y199_c00001{bottom:173.640000pt;}
.yad8_c00001{bottom:174.039467pt;}
.y1a8b_c00001{bottom:174.119467pt;}
.y10fc_c00001{bottom:174.120000pt;}
.y17b2_c00001{bottom:174.279467pt;}
.yf36_c00001{bottom:174.682267pt;}
.y1485_c00001{bottom:175.003600pt;}
.y12ca_c00001{bottom:175.467653pt;}
.ya0e_c00001{bottom:175.630347pt;}
.y9dc_c00001{bottom:175.635867pt;}
.ya12_c00001{bottom:175.640107pt;}
.yc7f_c00001{bottom:175.720000pt;}
.yeed_c00001{bottom:176.039467pt;}
.y1604_c00001{bottom:176.194800pt;}
.y11a5_c00001{bottom:176.281627pt;}
.y7bf_c00001{bottom:176.367467pt;}
.y132d_c00001{bottom:176.599467pt;}
.y359_c00001{bottom:176.755227pt;}
.y35e_c00001{bottom:176.759333pt;}
.y729_c00001{bottom:176.799467pt;}
.y716_c00001{bottom:176.800800pt;}
.y6dc_c00001{bottom:176.802133pt;}
.ycd0_c00001{bottom:176.835947pt;}
.ycc6_c00001{bottom:176.839467pt;}
.yfb8_c00001{bottom:176.995387pt;}
.yd9c_c00001{bottom:177.002187pt;}
.y19a1_c00001{bottom:177.079467pt;}
.y12aa_c00001{bottom:177.159467pt;}
.y1013_c00001{bottom:177.319467pt;}
.y816_c00001{bottom:177.478213pt;}
.y95f_c00001{bottom:177.553947pt;}
.y1b92_c00001{bottom:177.718587pt;}
.ye6f_c00001{bottom:177.719467pt;}
.y152e_c00001{bottom:177.721493pt;}
.ye6d_c00001{bottom:177.799333pt;}
.y1600_c00001{bottom:177.799467pt;}
.ydf9_c00001{bottom:177.875387pt;}
.ydcc_c00001{bottom:177.882187pt;}
.yc47_c00001{bottom:177.960000pt;}
.y1970_c00001{bottom:178.277333pt;}
.y197a_c00001{bottom:178.278667pt;}
.y197d_c00001{bottom:178.280000pt;}
.y132e_c00001{bottom:178.354880pt;}
.yff5_c00001{bottom:178.675387pt;}
.y159d_c00001{bottom:178.840747pt;}
.yb7c_c00001{bottom:178.997333pt;}
.y3b9_c00001{bottom:179.476987pt;}
.y39e_c00001{bottom:179.479467pt;}
.yc80_c00001{bottom:179.719467pt;}
.y677_c00001{bottom:179.876747pt;}
.y664_c00001{bottom:179.878347pt;}
.y19d8_c00001{bottom:179.882507pt;}
.y2a2_c00001{bottom:179.883467pt;}
.y12a8_c00001{bottom:180.277067pt;}
.y627_c00001{bottom:180.360000pt;}
.y705_c00001{bottom:180.439467pt;}
.y20a_c00001{bottom:180.679467pt;}
.y173d_c00001{bottom:180.757067pt;}
.yb3c_c00001{bottom:180.993813pt;}
.yb24_c00001{bottom:180.999467pt;}
.y407_c00001{bottom:181.079467pt;}
.y113d_c00001{bottom:181.594027pt;}
.y115f_c00001{bottom:181.608667pt;}
.y70c_c00001{bottom:181.723467pt;}
.y722_c00001{bottom:181.723787pt;}
.yc48_c00001{bottom:181.959467pt;}
.y1bf2_c00001{bottom:182.079467pt;}
.y1bf5_c00001{bottom:182.319333pt;}
.y1c08_c00001{bottom:182.319467pt;}
.y1482_c00001{bottom:182.359467pt;}
.y19a_c00001{bottom:182.439467pt;}
.y1a18_c00001{bottom:182.759467pt;}
.y18f5_c00001{bottom:182.919467pt;}
.y9f5_c00001{bottom:183.039467pt;}
.y9d6_c00001{bottom:183.040800pt;}
.ya25_c00001{bottom:183.155947pt;}
.y18c5_c00001{bottom:183.399333pt;}
.y860_c00001{bottom:183.480000pt;}
.y1598_c00001{bottom:183.519467pt;}
.y6c0_c00001{bottom:183.882347pt;}
.y583_c00001{bottom:183.883467pt;}
.y6c3_c00001{bottom:183.892987pt;}
.y111c_c00001{bottom:184.015867pt;}
.y1aeb_c00001{bottom:184.042533pt;}
.ye4_c00001{bottom:184.120000pt;}
.yf7b_c00001{bottom:184.279467pt;}
.y1a56_c00001{bottom:184.284907pt;}
.y15ac_c00001{bottom:184.719467pt;}
.y4c4_c00001{bottom:184.997333pt;}
.y1054_c00001{bottom:185.079467pt;}
.y17f4_c00001{bottom:185.080933pt;}
.y13fa_c00001{bottom:185.239467pt;}
.yd6f_c00001{bottom:185.399333pt;}
.y21_c00001{bottom:185.399467pt;}
.y11f5_c00001{bottom:185.719467pt;}
.yf0f_c00001{bottom:185.722267pt;}
.ybe7_c00001{bottom:185.880000pt;}
.ya88_c00001{bottom:186.039227pt;}
.y2a4_c00001{bottom:186.044027pt;}
.y533_c00001{bottom:186.206507pt;}
.y516_c00001{bottom:186.209227pt;}
.y17f1_c00001{bottom:186.279467pt;}
.y90_c00001{bottom:186.999467pt;}
.y1bbf_c00001{bottom:187.080000pt;}
.y475_c00001{bottom:187.157573pt;}
.y454_c00001{bottom:187.158347pt;}
.y456_c00001{bottom:187.159467pt;}
.ybaf_c00001{bottom:187.234933pt;}
.y1484_c00001{bottom:187.239600pt;}
.yeef_c00001{bottom:187.399467pt;}
.y1897_c00001{bottom:187.403467pt;}
.y123e_c00001{bottom:187.564027pt;}
.yad6_c00001{bottom:187.960000pt;}
.y18c6_c00001{bottom:188.283147pt;}
.y173f_c00001{bottom:188.523333pt;}
.y994_c00001{bottom:188.593307pt;}
.y198_c00001{bottom:188.599467pt;}
.y7be_c00001{bottom:188.603467pt;}
.y1bc_c00001{bottom:188.604347pt;}
.y151_c00001{bottom:188.839467pt;}
.y14c7_c00001{bottom:189.256293pt;}
.y1b38_c00001{bottom:189.474347pt;}
.y1b27_c00001{bottom:189.475093pt;}
.y1251_c00001{bottom:189.599333pt;}
.y1059_c00001{bottom:189.599467pt;}
.y102c_c00001{bottom:189.600800pt;}
.y1224_c00001{bottom:189.602133pt;}
.y1199_c00001{bottom:189.679467pt;}
.y815_c00001{bottom:189.799333pt;}
.y1822_c00001{bottom:189.879467pt;}
.y397_c00001{bottom:189.960000pt;}
.y585_c00001{bottom:190.044027pt;}
.yaac_c00001{bottom:190.200000pt;}
.yd00_c00001{bottom:190.200747pt;}
.y1675_c00001{bottom:190.359333pt;}
.y143c_c00001{bottom:190.444133pt;}
.y771_c00001{bottom:190.680000pt;}
.ycc4_c00001{bottom:191.400000pt;}
.yb4a_c00001{bottom:191.637707pt;}
.y1863_c00001{bottom:191.639467pt;}
.yb50_c00001{bottom:191.640987pt;}
.y1894_c00001{bottom:191.719467pt;}
.yf63_c00001{bottom:191.879333pt;}
.y2a1_c00001{bottom:192.119467pt;}
.y676_c00001{bottom:192.197867pt;}
.y663_c00001{bottom:192.199467pt;}
.y17cb_c00001{bottom:192.279333pt;}
.y12de_c00001{bottom:192.279467pt;}
.y1c43_c00001{bottom:192.559467pt;}
.y17b1_c00001{bottom:192.679467pt;}
.y39c_c00001{bottom:192.766347pt;}
.y10ca_c00001{bottom:192.839467pt;}
.y1b94_c00001{bottom:193.238400pt;}
.y1b8f_c00001{bottom:193.242267pt;}
.y199c_c00001{bottom:193.399467pt;}
.ya0d_c00001{bottom:193.549707pt;}
.y9db_c00001{bottom:193.555227pt;}
.y4c5_c00001{bottom:193.559467pt;}
.yc17_c00001{bottom:193.638667pt;}
.yc2d_c00001{bottom:193.640000pt;}
.ya58_c00001{bottom:193.720000pt;}
.y1278_c00001{bottom:193.800000pt;}
.y70b_c00001{bottom:193.959467pt;}
.y721_c00001{bottom:193.959787pt;}
.y10fd_c00001{bottom:194.119467pt;}
.yaad_c00001{bottom:194.199467pt;}
.y579_c00001{bottom:194.279333pt;}
.y19da_c00001{bottom:194.283467pt;}
.yfb7_c00001{bottom:194.519467pt;}
.yd9b_c00001{bottom:194.599467pt;}
.y358_c00001{bottom:194.601387pt;}
.yf10_c00001{bottom:194.680000pt;}
.y1277_c00001{bottom:195.082133pt;}
.y19d6_c00001{bottom:195.398027pt;}
.ycc5_c00001{bottom:195.399467pt;}
.y95e_c00001{bottom:195.400107pt;}
.ydcb_c00001{bottom:195.479467pt;}
.yad4_c00001{bottom:195.558667pt;}
.yaef_c00001{bottom:195.560000pt;}
.y1973_c00001{bottom:195.723467pt;}
.yc7d_c00001{bottom:195.880000pt;}
.y1012_c00001{bottom:196.115387pt;}
.y582_c00001{bottom:196.119467pt;}
.y1373_c00001{bottom:196.120000pt;}
.yff4_c00001{bottom:196.199467pt;}
.y6bf_c00001{bottom:196.203467pt;}
.yf0e_c00001{bottom:196.439467pt;}
.yfe1_c00001{bottom:196.595387pt;}
.y1c75_c00001{bottom:196.879467pt;}
.y196f_c00001{bottom:196.922267pt;}
.y16fd_c00001{bottom:197.879333pt;}
.y10c8_c00001{bottom:198.122267pt;}
.y85f_c00001{bottom:198.209227pt;}
.y874_c00001{bottom:198.214267pt;}
.y1972_c00001{bottom:198.279333pt;}
.ye6a_c00001{bottom:198.282267pt;}
.y1b69_c00001{bottom:198.290347pt;}
.y532_c00001{bottom:198.442507pt;}
.y515_c00001{bottom:198.445227pt;}
.y1174_c00001{bottom:198.821787pt;}
.yb3b_c00001{bottom:198.839973pt;}
.ye6_c00001{bottom:198.919467pt;}
.y16c5_c00001{bottom:199.083067pt;}
.y11f2_c00001{bottom:199.164907pt;}
.y42_c00001{bottom:199.239467pt;}
.y196_c00001{bottom:199.320000pt;}
.y474_c00001{bottom:199.478693pt;}
.y453_c00001{bottom:199.479467pt;}
.yad5_c00001{bottom:199.559467pt;}
.y1896_c00001{bottom:199.639467pt;}
.yc7e_c00001{bottom:199.879467pt;}
.y11c9_c00001{bottom:200.196827pt;}
.y1942_c00001{bottom:200.199467pt;}
.y118b_c00001{bottom:200.256773pt;}
.y13ab_c00001{bottom:200.357333pt;}
.y13b3_c00001{bottom:200.358667pt;}
.y13b4_c00001{bottom:200.360000pt;}
.y19d7_c00001{bottom:200.437067pt;}
.y1be5_c00001{bottom:200.479467pt;}
.y1bfe_c00001{bottom:200.482133pt;}
.y1be7_c00001{bottom:200.719467pt;}
.y1c01_c00001{bottom:200.722133pt;}
.y173e_c00001{bottom:200.759333pt;}
.y8f_c00001{bottom:200.763467pt;}
.y7bd_c00001{bottom:200.839467pt;}
.y12a7_c00001{bottom:200.919467pt;}
.y1a17_c00001{bottom:201.159467pt;}
.y92_c00001{bottom:201.319467pt;}
.y173c_c00001{bottom:201.399467pt;}
.y61d_c00001{bottom:201.558667pt;}
.yed1_c00001{bottom:201.560000pt;}
.y18c4_c00001{bottom:201.799333pt;}
.yb7b_c00001{bottom:201.880000pt;}
.y811_c00001{bottom:201.960000pt;}
.y35d_c00001{bottom:202.119467pt;}
.y11a1_c00001{bottom:202.202267pt;}
.y12c9_c00001{bottom:202.346693pt;}
.yb00_c00001{bottom:202.517333pt;}
.yf8a_c00001{bottom:202.679467pt;}
.y143b_c00001{bottom:202.680133pt;}
.yf31_c00001{bottom:202.757333pt;}
.y1522_c00001{bottom:202.759467pt;}
.y16fe_c00001{bottom:202.763200pt;}
.y206_c00001{bottom:203.477333pt;}
.ye45_c00001{bottom:203.479467pt;}
.yd4a_c00001{bottom:203.799333pt;}
.yd6a_c00001{bottom:203.799467pt;}
.y1b93_c00001{bottom:203.955600pt;}
.y1b8e_c00001{bottom:203.959467pt;}
.y1824_c00001{bottom:203.966800pt;}
.y661_c00001{bottom:204.280000pt;}
.y17f0_c00001{bottom:204.679467pt;}
.ye99_c00001{bottom:204.839467pt;}
.y39b_c00001{bottom:205.002347pt;}
.y1943_c00001{bottom:205.078347pt;}
.y1276_c00001{bottom:205.799333pt;}
.yb7a_c00001{bottom:205.879467pt;}
.y15ff_c00001{bottom:205.962267pt;}
.y19d5_c00001{bottom:206.199467pt;}
.y10a0_c00001{bottom:206.356187pt;}
.y993_c00001{bottom:206.439467pt;}
.y19d9_c00001{bottom:206.519467pt;}
.y5b2_c00001{bottom:206.683627pt;}
.y17b4_c00001{bottom:206.763467pt;}
.y1bc3_c00001{bottom:207.074827pt;}
.y11a6_c00001{bottom:207.079467pt;}
.y14d_c00001{bottom:207.160000pt;}
.y2e0_c00001{bottom:207.558667pt;}
.y303_c00001{bottom:207.560000pt;}
.y406_c00001{bottom:207.639467pt;}
.y1240_c00001{bottom:208.039467pt;}
.ycff_c00001{bottom:208.120107pt;}
.y1560_c00001{bottom:208.202267pt;}
.y1b37_c00001{bottom:208.278587pt;}
.y1b26_c00001{bottom:208.279333pt;}
.y1821_c00001{bottom:208.279467pt;}
.y113c_c00001{bottom:208.399867pt;}
.y115e_c00001{bottom:208.414507pt;}
.y6be_c00001{bottom:208.439467pt;}
.y1674_c00001{bottom:208.759333pt;}
.y10c7_c00001{bottom:208.839467pt;}
.ye69_c00001{bottom:208.999467pt;}
.y1a8a_c00001{bottom:209.082533pt;}
.y1329_c00001{bottom:209.160000pt;}
.y14c6_c00001{bottom:209.810853pt;}
.y44f_c00001{bottom:209.957333pt;}
.y471_c00001{bottom:209.958667pt;}
.y47d_c00001{bottom:209.960000pt;}
.y1893_c00001{bottom:210.119467pt;}
.y1985_c00001{bottom:210.159467pt;}
.y4c2_c00001{bottom:210.197333pt;}
.y11a4_c00001{bottom:210.202507pt;}
.y85e_c00001{bottom:210.445227pt;}
.y873_c00001{bottom:210.450267pt;}
.y518_c00001{bottom:210.759333pt;}
.y531_c00001{bottom:210.763627pt;}
.y514_c00001{bottom:210.766347pt;}
.y111b_c00001{bottom:210.894907pt;}
.y17b0_c00001{bottom:211.079467pt;}
.ya0c_c00001{bottom:211.395867pt;}
.y9da_c00001{bottom:211.401387pt;}
.ycc2_c00001{bottom:211.560000pt;}
.y1b91_c00001{bottom:211.639467pt;}
.y1a89_c00001{bottom:212.199467pt;}
.y18f3_c00001{bottom:212.435467pt;}
.y357_c00001{bottom:212.520747pt;}
.y16c4_c00001{bottom:212.599467pt;}
.y1780_c00001{bottom:212.760000pt;}
.y159c_c00001{bottom:212.761627pt;}
.y662_c00001{bottom:212.839467pt;}
.y11a0_c00001{bottom:212.919467pt;}
.y19ef_c00001{bottom:212.999333pt;}
.y20_c00001{bottom:212.999467pt;}
.yfb6_c00001{bottom:213.315387pt;}
.y95d_c00001{bottom:213.319467pt;}
.yd9a_c00001{bottom:213.395387pt;}
.y147e_c00001{bottom:213.479467pt;}
.yad3_c00001{bottom:213.480000pt;}
.y1011_c00001{bottom:213.639467pt;}
.y707_c00001{bottom:213.720000pt;}
.y1b66_c00001{bottom:213.722267pt;}
.yc16_c00001{bottom:213.797333pt;}
.y127a_c00001{bottom:213.798587pt;}
.yc23_c00001{bottom:213.798667pt;}
.yc2c_c00001{bottom:213.800000pt;}
.y1a58_c00001{bottom:213.802267pt;}
.y19a0_c00001{bottom:213.879467pt;}
.y197_c00001{bottom:213.959467pt;}
.yfe0_c00001{bottom:214.119467pt;}
.ye1e_c00001{bottom:214.195387pt;}
.ydf8_c00001{bottom:214.202053pt;}
.y1861_c00001{bottom:214.203467pt;}
.y1be4_c00001{bottom:214.239467pt;}
.ydca_c00001{bottom:214.275253pt;}
.y1bde_c00001{bottom:214.479467pt;}
.y8e_c00001{bottom:214.599467pt;}
.yf11_c00001{bottom:214.679467pt;}
.y1679_c00001{bottom:214.842267pt;}
.y29e_c00001{bottom:214.920000pt;}
.yff3_c00001{bottom:214.995387pt;}
.ya57_c00001{bottom:214.997333pt;}
.y15a0_c00001{bottom:215.002267pt;}
.y18ff_c00001{bottom:215.400427pt;}
.y18f2_c00001{bottom:215.402187pt;}
.ycc3_c00001{bottom:215.479467pt;}
.y14e_c00001{bottom:215.719467pt;}
.y76b_c00001{bottom:215.880000pt;}
.y1374_c00001{bottom:216.116933pt;}
.y1823_c00001{bottom:216.202800pt;}
.y16fc_c00001{bottom:216.279333pt;}
.y1a1a_c00001{bottom:216.446133pt;}
.y15fe_c00001{bottom:216.679467pt;}
.y813_c00001{bottom:216.683467pt;}
.yb3a_c00001{bottom:216.759333pt;}
.ya24_c00001{bottom:217.076827pt;}
.y39a_c00001{bottom:217.238347pt;}
.y39d_c00001{bottom:217.248987pt;}
.y448_c00001{bottom:217.323467pt;}
.y3c9_c00001{bottom:217.679467pt;}
.ye3f_c00001{bottom:218.040000pt;}
.y208_c00001{bottom:218.119467pt;}
.y76f_c00001{bottom:218.290347pt;}
.y1860_c00001{bottom:218.519467pt;}
.y1941_c00001{bottom:218.599467pt;}
.y4c3_c00001{bottom:218.759333pt;}
.y19a3_c00001{bottom:218.766933pt;}
.y35c_c00001{bottom:218.837333pt;}
.y1b68_c00001{bottom:218.844907pt;}
.y155f_c00001{bottom:218.919467pt;}
.y57a_c00001{bottom:218.920000pt;}
.y17b3_c00001{bottom:218.999467pt;}
.y1219_c00001{bottom:219.009467pt;}
.ye95_c00001{bottom:219.400000pt;}
.y402_c00001{bottom:219.480000pt;}
.y132c_c00001{bottom:219.558347pt;}
.y1a16_c00001{bottom:219.559467pt;}
.y11f1_c00001{bottom:219.719467pt;}
.y17ca_c00001{bottom:219.879333pt;}
.y12dd_c00001{bottom:219.879467pt;}
.y3db_c00001{bottom:219.919467pt;}
.ya87_c00001{bottom:219.960107pt;}
.y104e_c00001{bottom:220.200000pt;}
.y13ad_c00001{bottom:220.357067pt;}
.yaff_c00001{bottom:220.360000pt;}
.y6bc_c00001{bottom:220.757333pt;}
.yf7a_c00001{bottom:221.079467pt;}
.ybae_c00001{bottom:221.155813pt;}
.y1521_c00001{bottom:221.159467pt;}
.y15ce_c00001{bottom:221.477333pt;}
.y123d_c00001{bottom:221.484907pt;}
.yec2_c00001{bottom:221.564907pt;}
.ybe6_c00001{bottom:221.640000pt;}
.ye2_c00001{bottom:221.800000pt;}
.y92f_c00001{bottom:221.958773pt;}
.y90c_c00001{bottom:221.959333pt;}
.y16f6_c00001{bottom:222.039467pt;}
.yd6e_c00001{bottom:222.199333pt;}
.yd5a_c00001{bottom:222.199467pt;}
.y2e1_c00001{bottom:222.279333pt;}
.y14a_c00001{bottom:222.519467pt;}
.yf34_c00001{bottom:222.757707pt;}
.y814_c00001{bottom:222.759333pt;}
.y85d_c00001{bottom:222.766347pt;}
.y872_c00001{bottom:222.771387pt;}
.y530_c00001{bottom:222.999627pt;}
.y513_c00001{bottom:223.002347pt;}
.y622_c00001{bottom:223.401387pt;}
.y1cac_c00001{bottom:223.572987pt;}
.y7ba_c00001{bottom:223.638667pt;}
.y7cb_c00001{bottom:223.640000pt;}
.y1c2e_c00001{bottom:223.679333pt;}
.y1376_c00001{bottom:223.883467pt;}
.y1b65_c00001{bottom:224.439467pt;}
.y1a57_c00001{bottom:224.519467pt;}
.y451_c00001{bottom:224.759333pt;}
.yb79_c00001{bottom:224.760000pt;}
.y4c1_c00001{bottom:224.839467pt;}
.y177f_c00001{bottom:225.082187pt;}
.y1a55_c00001{bottom:225.484907pt;}
.yb49_c00001{bottom:225.558587pt;}
.y1678_c00001{bottom:225.559467pt;}
.yb4f_c00001{bottom:225.561867pt;}
.y1173_c00001{bottom:225.627627pt;}
.y159f_c00001{bottom:225.719467pt;}
.yaab_c00001{bottom:226.038667pt;}
.ycfe_c00001{bottom:226.039467pt;}
.y1c60_c00001{bottom:226.159467pt;}
.y41_c00001{bottom:226.839467pt;}
.y11ee_c00001{bottom:226.842267pt;}
.y118a_c00001{bottom:227.135813pt;}
.y1673_c00001{bottom:227.159333pt;}
.y1a19_c00001{bottom:227.163333pt;}
.y1561_c00001{bottom:227.477333pt;}
.y100_c00001{bottom:227.519467pt;}
.yd9_c00001{bottom:227.520800pt;}
.y1080_c00001{bottom:227.560000pt;}
.y1ae9_c00001{bottom:228.039333pt;}
.y13ae_c00001{bottom:228.123467pt;}
.y709_c00001{bottom:228.443467pt;}
.yf62_c00001{bottom:228.599333pt;}
.yb78_c00001{bottom:228.759333pt;}
.y626_c00001{bottom:228.839467pt;}
.y812_c00001{bottom:228.919467pt;}
.y12c8_c00001{bottom:229.152533pt;}
.y162f_c00001{bottom:229.159467pt;}
.y1645_c00001{bottom:229.162773pt;}
.ya0b_c00001{bottom:229.315227pt;}
.y6bd_c00001{bottom:229.319467pt;}
.y9d9_c00001{bottom:229.320747pt;}
.y17af_c00001{bottom:229.479467pt;}
.y65e_c00001{bottom:229.480000pt;}
.y399_c00001{bottom:229.559467pt;}
.y29f_c00001{bottom:229.719467pt;}
.y1437_c00001{bottom:229.879467pt;}
.ye3_c00001{bottom:230.359467pt;}
.y14c5_c00001{bottom:230.365413pt;}
.y356_c00001{bottom:230.440107pt;}
.y76e_c00001{bottom:230.526347pt;}
.y1481_c00001{bottom:230.599147pt;}
.yfb5_c00001{bottom:230.839467pt;}
.y11a3_c00001{bottom:230.844907pt;}
.yd99_c00001{bottom:230.919467pt;}
.y19a2_c00001{bottom:231.002933pt;}
.y447_c00001{bottom:231.159467pt;}
.y1632_c00001{bottom:231.239467pt;}
.yb20_c00001{bottom:231.317333pt;}
.yb2c_c00001{bottom:231.318667pt;}
.yb32_c00001{bottom:231.320000pt;}
.yc7c_c00001{bottom:231.640000pt;}
.ye1d_c00001{bottom:231.719467pt;}
.ydc9_c00001{bottom:231.799333pt;}
.y132b_c00001{bottom:231.879467pt;}
.y1cb1_c00001{bottom:232.230933pt;}
.y199f_c00001{bottom:232.279467pt;}
.y14b_c00001{bottom:232.360000pt;}
.y1010_c00001{bottom:232.443227pt;}
.yff2_c00001{bottom:232.519467pt;}
.yfdf_c00001{bottom:232.915387pt;}
.y196d_c00001{bottom:233.477333pt;}
.y1978_c00001{bottom:233.478667pt;}
.y197c_c00001{bottom:233.480000pt;}
.y57f_c00001{bottom:233.806347pt;}
.yc45_c00001{bottom:233.880000pt;}
.y11c8_c00001{bottom:234.117707pt;}
.y404_c00001{bottom:234.203467pt;}
.y127b_c00001{bottom:234.279333pt;}
.y2dd_c00001{bottom:234.359467pt;}
.y70a_c00001{bottom:234.519467pt;}
.y85c_c00001{bottom:235.002347pt;}
.y871_c00001{bottom:235.007387pt;}
.y52f_c00001{bottom:235.235627pt;}
.y512_c00001{bottom:235.238347pt;}
.y113b_c00001{bottom:235.278907pt;}
.y115d_c00001{bottom:235.293547pt;}
.yb21_c00001{bottom:235.319467pt;}
.y4bf_c00001{bottom:235.397333pt;}
.y6bb_c00001{bottom:235.479467pt;}
.y18fe_c00001{bottom:235.637707pt;}
.y18f1_c00001{bottom:235.639467pt;}
.yc7b_c00001{bottom:235.640053pt;}
.yee7_c00001{bottom:235.877333pt;}
.y12a2_c00001{bottom:236.040000pt;}
.y1375_c00001{bottom:236.119467pt;}
.y1b23_c00001{bottom:236.207947pt;}
.ya56_c00001{bottom:236.357333pt;}
.y292_c00001{bottom:236.759333pt;}
.y11ed_c00001{bottom:237.559467pt;}
.y111a_c00001{bottom:237.773947pt;}
.yc46_c00001{bottom:237.879467pt;}
.y1a15_c00001{bottom:237.959467pt;}
.ye43_c00001{bottom:238.044507pt;}
.y990_c00001{bottom:238.277333pt;}
.y9a2_c00001{bottom:238.278667pt;}
.y9ac_c00001{bottom:238.280000pt;}
.y7bb_c00001{bottom:238.359467pt;}
.y14ca_c00001{bottom:238.598480pt;}
.y1b67_c00001{bottom:239.399467pt;}
.ye97_c00001{bottom:239.404907pt;}
.yf89_c00001{bottom:239.479467pt;}
.y1520_c00001{bottom:239.559467pt;}
.y1218_c00001{bottom:239.564027pt;}
.y16c1_c00001{bottom:239.639467pt;}
.y1892_c00001{bottom:239.879547pt;}
.y1051_c00001{bottom:240.197067pt;}
.y85_c00001{bottom:240.197333pt;}
.y109f_c00001{bottom:240.277067pt;}
.y405_c00001{bottom:240.359467pt;}
.y12fa_c00001{bottom:240.439467pt;}
.y1bb_c00001{bottom:240.441067pt;}
.y195_c00001{bottom:240.443467pt;}
.y90b_c00001{bottom:240.519467pt;}
.y92e_c00001{bottom:240.522293pt;}
.yd49_c00001{bottom:240.599333pt;}
.y1f_c00001{bottom:240.599467pt;}
.y5b1_c00001{bottom:240.604507pt;}
.y708_c00001{bottom:240.679467pt;}
.y205_c00001{bottom:240.917333pt;}
.y13ac_c00001{bottom:240.999467pt;}
.y1260_c00001{bottom:241.004027pt;}
.y1bc2_c00001{bottom:241.010347pt;}
.y10c3_c00001{bottom:241.320000pt;}
.y621_c00001{bottom:241.320747pt;}
.y15d3_c00001{bottom:241.493253pt;}
.y15fc_c00001{bottom:241.639333pt;}
.ybe5_c00001{bottom:241.800000pt;}
.yec3_c00001{bottom:242.039467pt;}
.yec1_c00001{bottom:242.119467pt;}
.y8b3_c00001{bottom:242.357333pt;}
.y10f8_c00001{bottom:242.680000pt;}
.y245_c00001{bottom:242.760000pt;}
.y1480_c00001{bottom:242.835147pt;}
.y76d_c00001{bottom:242.847467pt;}
.y18c3_c00001{bottom:242.921680pt;}
.y1bc5_c00001{bottom:243.242267pt;}
.y35b_c00001{bottom:243.479467pt;}
.y143a_c00001{bottom:243.882347pt;}
.y4c0_c00001{bottom:243.959467pt;}
.yaa9_c00001{bottom:243.960000pt;}
.y1738_c00001{bottom:244.199467pt;}
.ye71_c00001{bottom:244.356187pt;}
.ye68_c00001{bottom:244.357067pt;}
.y11cb_c00001{bottom:244.359467pt;}
.y65d_c00001{bottom:244.774347pt;}
.y675_c00001{bottom:244.777787pt;}
.y1a87_c00001{bottom:244.839467pt;}
.y2de_c00001{bottom:244.997333pt;}
.y2fc_c00001{bottom:244.998667pt;}
.y302_c00001{bottom:245.000000pt;}
.y177e_c00001{bottom:245.319467pt;}
.y16f9_c00001{bottom:245.399467pt;}
.y1672_c00001{bottom:245.559333pt;}
.y193e_c00001{bottom:245.719467pt;}
.ybe4_c00001{bottom:245.799333pt;}
.y95a_c00001{bottom:245.800000pt;}
.y196c_c00001{bottom:245.802187pt;}
.y1977_c00001{bottom:245.804107pt;}
.y6a8_c00001{bottom:245.957333pt;}
.y1a54_c00001{bottom:246.039467pt;}
.y57e_c00001{bottom:246.042347pt;}
.y403_c00001{bottom:246.439467pt;}
.y1634_c00001{bottom:246.522267pt;}
.y159b_c00001{bottom:246.682507pt;}
.y1ae8_c00001{bottom:246.759333pt;}
.ye0_c00001{bottom:247.000000pt;}
.ya0a_c00001{bottom:247.234587pt;}
.y85b_c00001{bottom:247.238347pt;}
.y18c1_c00001{bottom:247.239467pt;}
.y9d8_c00001{bottom:247.240107pt;}
.y870_c00001{bottom:247.243387pt;}
.y12dc_c00001{bottom:247.319467pt;}
.ycc1_c00001{bottom:247.320000pt;}
.y17c9_c00001{bottom:247.479333pt;}
.y2df_c00001{bottom:247.479467pt;}
.y1565_c00001{bottom:247.482507pt;}
.y52e_c00001{bottom:247.556747pt;}
.y511_c00001{bottom:247.559467pt;}
.y44d_c00001{bottom:247.638667pt;}
.y47c_c00001{bottom:247.640000pt;}
.y1c40_c00001{bottom:247.679467pt;}
.y1279_c00001{bottom:247.719467pt;}
.y17ae_c00001{bottom:247.879467pt;}
.yaaa_c00001{bottom:247.959467pt;}
.y355_c00001{bottom:248.359467pt;}
.y1c49_c00001{bottom:248.479467pt;}
.y1cab_c00001{bottom:248.856267pt;}
.y770_c00001{bottom:248.933547pt;}
.yad2_c00001{bottom:249.240000pt;}
.y123b_c00001{bottom:249.242267pt;}
.y1c92_c00001{bottom:249.479333pt;}
.yfb4_c00001{bottom:249.555387pt;}
.yc15_c00001{bottom:249.558667pt;}
.yc2b_c00001{bottom:249.560000pt;}
.y1631_c00001{bottom:249.639467pt;}
.yd98_c00001{bottom:249.642187pt;}
.y121a_c00001{bottom:249.799333pt;}
.y100f_c00001{bottom:249.879333pt;}
.y625_c00001{bottom:250.039467pt;}
.y17ed_c00001{bottom:250.199333pt;}
.y147d_c00001{bottom:250.279467pt;}
.yfde_c00001{bottom:250.439467pt;}
.ye1c_c00001{bottom:250.522187pt;}
.ydc8_c00001{bottom:250.595387pt;}
.y199e_c00001{bottom:250.679467pt;}
.y14c9_c00001{bottom:250.919600pt;}
.y1a88_c00001{bottom:250.923467pt;}
.ya23_c00001{bottom:250.997707pt;}
.y14c4_c00001{bottom:251.007813pt;}
.yff1_c00001{bottom:251.315387pt;}
.ycc0_c00001{bottom:251.320187pt;}
.y1298_c00001{bottom:251.359333pt;}
.y1983_c00001{bottom:251.359467pt;}
.y11a2_c00001{bottom:251.399467pt;}
.yb77_c00001{bottom:251.639467pt;}
.yc79_c00001{bottom:251.800000pt;}
.y580_c00001{bottom:252.199467pt;}
.y1172_c00001{bottom:252.506667pt;}
.y29c_c00001{bottom:252.600000pt;}
.y1ba_c00001{bottom:252.677067pt;}
.y194_c00001{bottom:252.679467pt;}
.y1a51_c00001{bottom:253.162267pt;}
.y16c3_c00001{bottom:253.716213pt;}
.y181f_c00001{bottom:253.719467pt;}
.ya86_c00001{bottom:253.880987pt;}
.y1bc4_c00001{bottom:253.959467pt;}
.y10df_c00001{bottom:253.959733pt;}
.y1189_c00001{bottom:254.014853pt;}
.y18ef_c00001{bottom:254.200000pt;}
.y40_c00001{bottom:254.439467pt;}
.y1372_c00001{bottom:254.599467pt;}
.y80f_c00001{bottom:254.606347pt;}
.y1524_c00001{bottom:254.838533pt;}
.y14c1_c00001{bottom:254.919467pt;}
.y11ea_c00001{bottom:254.920000pt;}
.ybad_c00001{bottom:255.076693pt;}
.y76c_c00001{bottom:255.083467pt;}
.y147f_c00001{bottom:255.156267pt;}
.y18c2_c00001{bottom:255.242800pt;}
.y185f_c00001{bottom:255.403467pt;}
.ye1_c00001{bottom:255.559467pt;}
.yc7a_c00001{bottom:255.799333pt;}
.yeeb_c00001{bottom:255.884373pt;}
.y12c7_c00001{bottom:256.031573pt;}
.y12a5_c00001{bottom:256.038587pt;}
.y1439_c00001{bottom:256.118347pt;}
.y44e_c00001{bottom:256.199467pt;}
.y98f_c00001{bottom:256.200000pt;}
.y89_c00001{bottom:256.599467pt;}
.yf33_c00001{bottom:256.678587pt;}
.y1b8c_c00001{bottom:256.835227pt;}
.y19d2_c00001{bottom:256.847947pt;}
.y1b22_c00001{bottom:256.850347pt;}
.y65c_c00001{bottom:257.010347pt;}
.y674_c00001{bottom:257.013787pt;}
.y8b5_c00001{bottom:257.083467pt;}
.y1633_c00001{bottom:257.239467pt;}
.y24b_c00001{bottom:257.490347pt;}
.ya55_c00001{bottom:257.717333pt;}
.yf79_c00001{bottom:257.879467pt;}
.y151f_c00001{bottom:257.959467pt;}
.y16c0_c00001{bottom:258.039467pt;}
.y50b_c00001{bottom:258.040000pt;}
.y57d_c00001{bottom:258.363467pt;}
.y1a24_c00001{bottom:258.435920pt;}
.y1027_c00001{bottom:258.437333pt;}
.y1a14_c00001{bottom:258.439467pt;}
.ycfc_c00001{bottom:258.520000pt;}
.y1820_c00001{bottom:258.603280pt;}
.yd6d_c00001{bottom:258.999333pt;}
.yd59_c00001{bottom:258.999467pt;}
.y620_c00001{bottom:259.240107pt;}
.yb48_c00001{bottom:259.479467pt;}
.yb4e_c00001{bottom:259.482747pt;}
.y85a_c00001{bottom:259.559467pt;}
.y86f_c00001{bottom:259.564507pt;}
.y185e_c00001{bottom:259.719467pt;}
.y1940_c00001{bottom:259.806800pt;}
.ye98_c00001{bottom:259.879467pt;}
.ye96_c00001{bottom:259.959467pt;}
.y15fb_c00001{bottom:260.039333pt;}
.y1217_c00001{bottom:260.118587pt;}
.y35a_c00001{bottom:260.200000pt;}
.y1cb8_c00001{bottom:260.236454pt;}
.y1cb0_c00001{bottom:260.254400pt;}
.y4bb_c00001{bottom:260.598667pt;}
.y6b7_c00001{bottom:260.686347pt;}
.y1328_c00001{bottom:260.758347pt;}
.y8fb_c00001{bottom:260.837333pt;}
.y92b_c00001{bottom:260.838667pt;}
.y1050_c00001{bottom:260.839467pt;}
.y109e_c00001{bottom:260.919467pt;}
.y7b2_c00001{bottom:261.078667pt;}
.y7c9_c00001{bottom:261.080000pt;}
.y29d_c00001{bottom:261.159467pt;}
.y10c5_c00001{bottom:261.318587pt;}
.y1261_c00001{bottom:261.479467pt;}
.y1bc1_c00001{bottom:261.564907pt;}
.ybe2_c00001{bottom:261.880000pt;}
.y15d2_c00001{bottom:262.047813pt;}
.y1b25_c00001{bottom:262.126667pt;}
.y113a_c00001{bottom:262.157947pt;}
.y115c_c00001{bottom:262.172587pt;}
.ycfb_c00001{bottom:262.519467pt;}
.y1737_c00001{bottom:262.599467pt;}
.y10fa_c00001{bottom:262.684907pt;}
.y14c8_c00001{bottom:263.155600pt;}
.y703_c00001{bottom:263.400000pt;}
.y181e_c00001{bottom:263.482267pt;}
.y4be_c00001{bottom:263.558347pt;}
.y959_c00001{bottom:263.717333pt;}
.y7b8_c00001{bottom:263.730213pt;}
.y16f8_c00001{bottom:263.799467pt;}
.y1671_c00001{bottom:263.879333pt;}
.y1a50_c00001{bottom:263.879467pt;}
.y1776_c00001{bottom:263.880000pt;}
.y1ae6_c00001{bottom:264.040000pt;}
.y193d_c00001{bottom:264.119467pt;}
.y192_c00001{bottom:264.437333pt;}
.y1b9_c00001{bottom:264.438667pt;}
.y1c5_c00001{bottom:264.440000pt;}
.y1119_c00001{bottom:264.652987pt;}
.ye70_c00001{bottom:264.678587pt;}
.ye67_c00001{bottom:264.679467pt;}
.y905_c00001{bottom:264.820453pt;}
.y900_c00001{bottom:264.835093pt;}
.y90a_c00001{bottom:264.839333pt;}
.y9c_c00001{bottom:265.039333pt;}
.ya09_c00001{bottom:265.153947pt;}
.y9d7_c00001{bottom:265.159467pt;}
.y1a86_c00001{bottom:265.319467pt;}
.y1a97_c00001{bottom:265.319813pt;}
.yf61_c00001{bottom:265.399333pt;}
.y1523_c00001{bottom:265.555733pt;}
.ybe3_c00001{bottom:265.879467pt;}
.y1198_c00001{bottom:265.960000pt;}
.y16c2_c00001{bottom:266.037333pt;}
.y1438_c00001{bottom:266.039467pt;}
.y1976_c00001{bottom:266.041387pt;}
.y1566_c00001{bottom:266.682267pt;}
.yf35_c00001{bottom:266.839467pt;}
.y80e_c00001{bottom:266.842347pt;}
.yfb3_c00001{bottom:267.079467pt;}
.yad0_c00001{bottom:267.160000pt;}
.yd97_c00001{bottom:267.239467pt;}
.y396_c00001{bottom:267.319467pt;}
.y159a_c00001{bottom:267.324907pt;}
.y173a_c00001{bottom:267.479813pt;}
.ycbe_c00001{bottom:267.480000pt;}
.y18c0_c00001{bottom:267.719467pt;}
.y16bf_c00001{bottom:267.802267pt;}
.y1564_c00001{bottom:268.037067pt;}
.y11c7_c00001{bottom:268.038587pt;}
.y1401_c00001{bottom:268.039467pt;}
.y107f_c00001{bottom:268.042133pt;}
.ydc7_c00001{bottom:268.119467pt;}
.y19ea_c00001{bottom:268.199333pt;}
.y1e_c00001{bottom:268.199467pt;}
.y100e_c00001{bottom:268.279333pt;}
.y17ec_c00001{bottom:268.599333pt;}
.yff0_c00001{bottom:268.839467pt;}
.y199d_c00001{bottom:269.079467pt;}
.yfdd_c00001{bottom:269.155387pt;}
.y3fc_c00001{bottom:269.237333pt;}
.y660_c00001{bottom:269.239467pt;}
.y65b_c00001{bottom:269.246347pt;}
.y673_c00001{bottom:269.249787pt;}
.y8b4_c00001{bottom:269.319467pt;}
.yc14_c00001{bottom:269.717333pt;}
.yc22_c00001{bottom:269.718667pt;}
.yc2a_c00001{bottom:269.720000pt;}
.y24a_c00001{bottom:269.726347pt;}
.y858_c00001{bottom:270.040000pt;}
.y2da_c00001{bottom:270.197333pt;}
.y2fb_c00001{bottom:270.198667pt;}
.y301_c00001{bottom:270.200000pt;}
.y88_c00001{bottom:270.435467pt;}
.y131a_c00001{bottom:270.522267pt;}
.y57c_c00001{bottom:270.599467pt;}
.y147c_c00001{bottom:270.759333pt;}
.y8b_c00001{bottom:270.919467pt;}
.yb76_c00001{bottom:271.157333pt;}
.yad1_c00001{bottom:271.159467pt;}
.y624_c00001{bottom:271.239467pt;}
.ycbf_c00001{bottom:271.479467pt;}
.y18f0_c00001{bottom:271.558347pt;}
.y14c3_c00001{bottom:271.562373pt;}
.yebe_c00001{bottom:271.954587pt;}
.y704_c00001{bottom:271.959467pt;}
.ye42_c00001{bottom:271.965387pt;}
.y193f_c00001{bottom:272.042800pt;}
.ydf_c00001{bottom:272.200000pt;}
.y50f_c00001{bottom:272.766347pt;}
.y449_c00001{bottom:272.837333pt;}
.y470_c00001{bottom:272.838667pt;}
.y47b_c00001{bottom:272.840000pt;}
.y1b24_c00001{bottom:272.843867pt;}
.y6b6_c00001{bottom:272.922347pt;}
.y193_c00001{bottom:272.999467pt;}
.y810_c00001{bottom:273.002907pt;}
.y765_c00001{bottom:273.319467pt;}
.y17ef_c00001{bottom:273.486933pt;}
.y11ec_c00001{bottom:273.639467pt;}
.yf0d_c00001{bottom:273.642187pt;}
.yf17_c00001{bottom:273.642827pt;}
.y11c3_c00001{bottom:273.722267pt;}
.y1b8d_c00001{bottom:273.795547pt;}
.y98e_c00001{bottom:274.120000pt;}
.y1caa_c00001{bottom:274.139547pt;}
.y181d_c00001{bottom:274.199467pt;}
.y5b0_c00001{bottom:274.525387pt;}
.y10de_c00001{bottom:274.602133pt;}
.y125f_c00001{bottom:274.924907pt;}
.y17c8_c00001{bottom:275.079333pt;}
.y13f6_c00001{bottom:275.079467pt;}
.yb75_c00001{bottom:275.159467pt;}
.y109c_c00001{bottom:275.477333pt;}
.y10a6_c00001{bottom:275.478667pt;}
.y10aa_c00001{bottom:275.480000pt;}
.y1b8b_c00001{bottom:275.639467pt;}
.y4bd_c00001{bottom:275.879467pt;}
.y7b7_c00001{bottom:275.966213pt;}
.yf88_c00001{bottom:276.279467pt;}
.y151e_c00001{bottom:276.359467pt;}
.y1327_c00001{bottom:276.839467pt;}
.y61f_c00001{bottom:277.159467pt;}
.y11f7_c00001{bottom:277.160827pt;}
.y11e9_c00001{bottom:277.162187pt;}
.yd48_c00001{bottom:277.399333pt;}
.yd58_c00001{bottom:277.399467pt;}
.y1b21_c00001{bottom:277.404907pt;}
.y19d1_c00001{bottom:277.490347pt;}
.y29a_c00001{bottom:277.800000pt;}
.y98d_c00001{bottom:278.119467pt;}
.y1c52_c00001{bottom:278.167947pt;}
.y1890_c00001{bottom:278.359333pt;}
.y1029_c00001{bottom:278.437067pt;}
.y15fa_c00001{bottom:278.439333pt;}
.y16be_c00001{bottom:278.519467pt;}
.y859_c00001{bottom:278.599467pt;}
.y107e_c00001{bottom:278.759333pt;}
.y16fb_c00001{bottom:278.840933pt;}
.y6b8_c00001{bottom:279.079467pt;}
.y80d_c00001{bottom:279.163467pt;}
.y1171_c00001{bottom:279.385707pt;}
.y3b8_c00001{bottom:279.550373pt;}
.y395_c00001{bottom:279.559467pt;}
.ya54_c00001{bottom:279.720000pt;}
.y1739_c00001{bottom:279.800933pt;}
.ye94_c00001{bottom:280.442267pt;}
.y1188_c00001{bottom:280.820693pt;}
.y340_c00001{bottom:280.840000pt;}
.y1736_c00001{bottom:280.999467pt;}
.y1a4d_c00001{bottom:281.237333pt;}
.y1319_c00001{bottom:281.239467pt;}
.y15d5_c00001{bottom:281.242267pt;}
.y7a4_c00001{bottom:281.315467pt;}
.y19d4_c00001{bottom:281.566800pt;}
.y65a_c00001{bottom:281.567467pt;}
.y672_c00001{bottom:281.570907pt;}
.y958_c00001{bottom:281.640000pt;}
.y204_c00001{bottom:281.719467pt;}
.y10c6_c00001{bottom:281.799333pt;}
.y3f_c00001{bottom:282.039467pt;}
.y249_c00001{bottom:282.047467pt;}
.y1bc0_c00001{bottom:282.119467pt;}
.ye44_c00001{bottom:282.199467pt;}
.y1670_c00001{bottom:282.279333pt;}
.y1371_c00001{bottom:282.367467pt;}
.y193c_c00001{bottom:282.439467pt;}
.ycfa_c00001{bottom:282.600000pt;}
.y19ce_c00001{bottom:282.682267pt;}
.y15d1_c00001{bottom:282.690213pt;}
.y904_c00001{bottom:282.739813pt;}
.y8ff_c00001{bottom:282.754453pt;}
.y12c6_c00001{bottom:282.910613pt;}
.y17ab_c00001{bottom:282.919467pt;}
.ya08_c00001{bottom:283.073307pt;}
.y908_c00001{bottom:283.157333pt;}
.y92d_c00001{bottom:283.158667pt;}
.y10fb_c00001{bottom:283.159467pt;}
.y10f9_c00001{bottom:283.239467pt;}
.y1891_c00001{bottom:283.243467pt;}
.y136e_c00001{bottom:283.559467pt;}
.ya53_c00001{bottom:283.639467pt;}
.y400_c00001{bottom:283.966213pt;}
.y1ae7_c00001{bottom:284.039467pt;}
.yebd_c00001{bottom:284.197467pt;}
.y87_c00001{bottom:284.199467pt;}
.y11c2_c00001{bottom:284.439467pt;}
.y34d_c00001{bottom:284.821227pt;}
.y347_c00001{bottom:284.835867pt;}
.y352_c00001{bottom:284.839467pt;}
.ya22_c00001{bottom:284.918587pt;}
.y2dc_c00001{bottom:284.923467pt;}
.y50e_c00001{bottom:285.002347pt;}
.yb1e_c00001{bottom:285.078667pt;}
.yb31_c00001{bottom:285.080000pt;}
.y6b5_c00001{bottom:285.243467pt;}
.y17ee_c00001{bottom:285.722933pt;}
.yfb2_c00001{bottom:285.875387pt;}
.y1a11_c00001{bottom:285.879467pt;}
.y119e_c00001{bottom:285.962747pt;}
.yd96_c00001{bottom:286.035387pt;}
.y1c91_c00001{bottom:286.279333pt;}
.y1630_c00001{bottom:286.439467pt;}
.ycf9_c00001{bottom:286.519467pt;}
.y29b_c00001{bottom:286.599467pt;}
.y13aa_c00001{bottom:286.599600pt;}
.yfdc_c00001{bottom:286.679467pt;}
.y1b64_c00001{bottom:286.839467pt;}
.ye1b_c00001{bottom:286.915387pt;}
.y149_c00001{bottom:286.919467pt;}
.ydf7_c00001{bottom:286.922187pt;}
.y17eb_c00001{bottom:286.999333pt;}
.y100d_c00001{bottom:287.075387pt;}
.yfef_c00001{bottom:287.555387pt;}
.y44b_c00001{bottom:287.563333pt;}
.yc78_c00001{bottom:287.640000pt;}
.ya85_c00001{bottom:287.801867pt;}
.y1599_c00001{bottom:287.879467pt;}
.ydd_c00001{bottom:287.966213pt;}
.y7b6_c00001{bottom:288.287333pt;}
.y623_c00001{bottom:288.437333pt;}
.y1b20_c00001{bottom:288.522267pt;}
.y1b36_c00001{bottom:288.526373pt;}
.y6fa_c00001{bottom:288.600000pt;}
.y1563_c00001{bottom:288.679467pt;}
.y1139_c00001{bottom:288.963787pt;}
.y115b_c00001{bottom:288.978427pt;}
.ybac_c00001{bottom:288.997573pt;}
.y13ea_c00001{bottom:288.999467pt;}
.yb1f_c00001{bottom:289.079467pt;}
.y13a9_c00001{bottom:289.322267pt;}
.yc12_c00001{bottom:289.800000pt;}
.yeea_c00001{bottom:289.805253pt;}
.y12a4_c00001{bottom:289.959467pt;}
.y1046_c00001{bottom:290.042133pt;}
.y767_c00001{bottom:290.118667pt;}
.yf32_c00001{bottom:290.599467pt;}
.yebf_c00001{bottom:290.680000pt;}
.y16fa_c00001{bottom:291.076933pt;}
.y1ae5_c00001{bottom:291.158027pt;}
.y510_c00001{bottom:291.159467pt;}
.y1c51_c00001{bottom:291.212587pt;}
.y80c_c00001{bottom:291.399467pt;}
.y1118_c00001{bottom:291.458827pt;}
.y1321_c00001{bottom:291.558667pt;}
.yc77_c00001{bottom:291.559467pt;}
.y1335_c00001{bottom:291.560000pt;}
.y15d4_c00001{bottom:291.959467pt;}
.y98c_c00001{bottom:292.038667pt;}
.y9ab_c00001{bottom:292.040000pt;}
.y14c2_c00001{bottom:292.116933pt;}
.y8ad_c00001{bottom:292.120000pt;}
.y299_c00001{bottom:292.679467pt;}
.y1c19_c00001{bottom:292.719467pt;}
.y18be_c00001{bottom:292.759467pt;}
.y3b7_c00001{bottom:293.233413pt;}
.y394_c00001{bottom:293.238347pt;}
.y1275_c00001{bottom:293.322187pt;}
.y1282_c00001{bottom:293.324267pt;}
.y19cd_c00001{bottom:293.399467pt;}
.y573_c00001{bottom:293.560000pt;}
.y44c_c00001{bottom:293.639467pt;}
.y15fd_c00001{bottom:293.718027pt;}
.y1c4_c00001{bottom:293.797573pt;}
.yc13_c00001{bottom:293.799333pt;}
.y19d3_c00001{bottom:293.802800pt;}
.y191_c00001{bottom:293.803467pt;}
.y671_c00001{bottom:293.806907pt;}
.y1b8_c00001{bottom:293.808213pt;}
.y185c_c00001{bottom:293.879333pt;}
.yf0c_c00001{bottom:293.879467pt;}
.yf16_c00001{bottom:293.880107pt;}
.y1216_c00001{bottom:294.039467pt;}
.y1026_c00001{bottom:294.042133pt;}
.y248_c00001{bottom:294.283467pt;}
.y7b9_c00001{bottom:294.373413pt;}
.y1370_c00001{bottom:294.603467pt;}
.yb74_c00001{bottom:294.677333pt;}
.yf78_c00001{bottom:294.679467pt;}
.y151d_c00001{bottom:294.759467pt;}
.y196b_c00001{bottom:295.003467pt;}
.y7a3_c00001{bottom:295.079467pt;}
.y10dd_c00001{bottom:295.156693pt;}
.y10c4_c00001{bottom:295.239467pt;}
.y854_c00001{bottom:295.240000pt;}
.y109d_c00001{bottom:295.479467pt;}
.y202_c00001{bottom:295.574213pt;}
.y12ed_c00001{bottom:295.639467pt;}
.yd6c_c00001{bottom:295.799333pt;}
.y1d_c00001{bottom:295.799467pt;}
.y104c_c00001{bottom:295.960000pt;}
.y1079_c00001{bottom:296.040000pt;}
.y3ff_c00001{bottom:296.202213pt;}
.yebc_c00001{bottom:296.599467pt;}
.y188f_c00001{bottom:296.759333pt;}
.y15f9_c00001{bottom:296.839333pt;}
.y2db_c00001{bottom:297.159467pt;}
.y1239_c00001{bottom:297.235813pt;}
.y50d_c00001{bottom:297.238347pt;}
.y1436_c00001{bottom:297.322347pt;}
.y11f6_c00001{bottom:297.398107pt;}
.y11e8_c00001{bottom:297.399467pt;}
.y6b4_c00001{bottom:297.479467pt;}
.y9d4_c00001{bottom:297.640000pt;}
.y18bf_c00001{bottom:297.643200pt;}
.ybe1_c00001{bottom:297.720000pt;}
.y1caf_c00001{bottom:298.023867pt;}
.y19d0_c00001{bottom:298.044907pt;}
.y147b_c00001{bottom:298.442613pt;}
.y1434_c00001{bottom:298.599467pt;}
.y185d_c00001{bottom:298.763467pt;}
.y102a_c00001{bottom:298.999467pt;}
.y1028_c00001{bottom:299.079467pt;}
.y4b3_c00001{bottom:299.237333pt;}
.y1b1f_c00001{bottom:299.239467pt;}
.y1b35_c00001{bottom:299.243573pt;}
.y196a_c00001{bottom:299.319467pt;}
.y1735_c00001{bottom:299.399467pt;}
.y956_c00001{bottom:299.560000pt;}
.y1478_c00001{bottom:299.719467pt;}
.y1a4f_c00001{bottom:299.798027pt;}
.y44a_c00001{bottom:299.799333pt;}
.y1bfd_c00001{bottom:299.957333pt;}
.yeec_c00001{bottom:300.039467pt;}
.ydc_c00001{bottom:300.287333pt;}
.y7b5_c00001{bottom:300.523333pt;}
.y903_c00001{bottom:300.585973pt;}
.y16f7_c00001{bottom:300.599467pt;}
.y8fe_c00001{bottom:300.600613pt;}
.y1045_c00001{bottom:300.759333pt;}
.ya07_c00001{bottom:300.919467pt;}
.y1a4e_c00001{bottom:301.239467pt;}
.y17aa_c00001{bottom:301.319467pt;}
.y907_c00001{bottom:301.720000pt;}
.y11c6_c00001{bottom:301.959467pt;}
.y1999_c00001{bottom:302.119467pt;}
.yf60_c00001{bottom:302.199333pt;}
.y807_c00001{bottom:302.357333pt;}
.y401_c00001{bottom:302.362773pt;}
.y1a83_c00001{bottom:302.604907pt;}
.y34c_c00001{bottom:302.667387pt;}
.y17c7_c00001{bottom:302.679333pt;}
.y12db_c00001{bottom:302.679467pt;}
.y346_c00001{bottom:302.682027pt;}
.yacf_c00001{bottom:303.000000pt;}
.ye65_c00001{bottom:303.156693pt;}
.y15d0_c00001{bottom:303.244773pt;}
.ycbd_c00001{bottom:303.317333pt;}
.yccf_c00001{bottom:303.318667pt;}
.ycd8_c00001{bottom:303.320000pt;}
.y702_c00001{bottom:303.323467pt;}
.y720_c00001{bottom:303.327253pt;}
.yfb1_c00001{bottom:303.399467pt;}
.y293_c00001{bottom:303.400000pt;}
.y957_c00001{bottom:303.559467pt;}
.y10f7_c00001{bottom:303.722267pt;}
.y1c50_c00001{bottom:304.172107pt;}
.y1a10_c00001{bottom:304.279467pt;}
.ye1a_c00001{bottom:304.439467pt;}
.ydf6_c00001{bottom:304.519467pt;}
.y100c_c00001{bottom:304.599467pt;}
.y1025_c00001{bottom:304.759333pt;}
.y80a_c00001{bottom:304.762347pt;}
.y769_c00001{bottom:304.843467pt;}
.ydc6_c00001{bottom:304.999467pt;}
.yfdb_c00001{bottom:305.079467pt;}
.y182a_c00001{bottom:305.395707pt;}
.y181b_c00001{bottom:305.397067pt;}
.y17ea_c00001{bottom:305.399333pt;}
.y3b6_c00001{bottom:305.554533pt;}
.y393_c00001{bottom:305.559467pt;}
.y1596_c00001{bottom:305.719467pt;}
.y15a8_c00001{bottom:305.719653pt;}
.ye41_c00001{bottom:305.959467pt;}
.y1c3_c00001{bottom:306.033573pt;}
.y190_c00001{bottom:306.039467pt;}
.y670_c00001{bottom:306.042907pt;}
.y1b7_c00001{bottom:306.044213pt;}
.y1170_c00001{bottom:306.264747pt;}
.y177b_c00001{bottom:306.287813pt;}
.yde_c00001{bottom:306.362773pt;}
.y247_c00001{bottom:306.519467pt;}
.y1c18_c00001{bottom:306.559467pt;}
.ycf8_c00001{bottom:306.600000pt;}
.y181c_c00001{bottom:306.675467pt;}
.y1b8a_c00001{bottom:306.683467pt;}
.y298_c00001{bottom:306.686347pt;}
.y8b1_c00001{bottom:306.766347pt;}
.y136f_c00001{bottom:306.839467pt;}
.ycbc_c00001{bottom:307.239467pt;}
.y1c22_c00001{bottom:307.359467pt;}
.y351_c00001{bottom:307.479467pt;}
.y1187_c00001{bottom:307.699733pt;}
.yc76_c00001{bottom:307.720000pt;}
.y201_c00001{bottom:307.810213pt;}
.y578_c00001{bottom:308.290347pt;}
.y3fe_c00001{bottom:308.438213pt;}
.y5af_c00001{bottom:308.519467pt;}
.ye92_c00001{bottom:308.520000pt;}
.y1212_c00001{bottom:308.680000pt;}
.y18e7_c00001{bottom:309.317333pt;}
.y18fc_c00001{bottom:309.318667pt;}
.y1904_c00001{bottom:309.320000pt;}
.y1326_c00001{bottom:309.323467pt;}
.y166d_c00001{bottom:309.399467pt;}
.y50c_c00001{bottom:309.559467pt;}
.y3e_c00001{bottom:309.639467pt;}
.y60d_c00001{bottom:309.640000pt;}
.y1435_c00001{bottom:309.643467pt;}
.y16bc_c00001{bottom:309.717067pt;}
.y143_c00001{bottom:309.720000pt;}
.y16ce_c00001{bottom:309.720667pt;}
.y12c5_c00001{bottom:309.789653pt;}
.y7c_c00001{bottom:309.797333pt;}
.yafe_c00001{bottom:309.880000pt;}
.yc43_c00001{bottom:309.960000pt;}
.y856_c00001{bottom:309.963467pt;}
.y125c_c00001{bottom:310.038667pt;}
.y1a13_c00001{bottom:310.365200pt;}
.ycf7_c00001{bottom:310.599467pt;}
.yec0_c00001{bottom:310.679467pt;}
.y147a_c00001{bottom:310.763733pt;}
.y76a_c00001{bottom:310.919467pt;}
.y16bd_c00001{bottom:310.995333pt;}
.y1c48_c00001{bottom:310.999467pt;}
.yc75_c00001{bottom:311.719467pt;}
.y1b89_c00001{bottom:312.039467pt;}
.y185b_c00001{bottom:312.279333pt;}
.y1433_c00001{bottom:312.362267pt;}
.ydb_c00001{bottom:312.523333pt;}
.y7b4_c00001{bottom:312.759333pt;}
.yf87_c00001{bottom:313.079467pt;}
.y18bd_c00001{bottom:313.239467pt;}
.y1274_c00001{bottom:313.559467pt;}
.y1281_c00001{bottom:313.561547pt;}
.y1323_c00001{bottom:313.639467pt;}
.yc44_c00001{bottom:313.959467pt;}
.y4b9_c00001{bottom:313.970213pt;}
.yd47_c00001{bottom:314.199333pt;}
.yd57_c00001{bottom:314.199467pt;}
.y1b63_c00001{bottom:314.202560pt;}
.y13e6_c00001{bottom:314.290347pt;}
.y10f6_c00001{bottom:314.439467pt;}
.y193b_c00001{bottom:314.443200pt;}
.y152d_c00001{bottom:315.236107pt;}
.y15f8_c00001{bottom:315.239333pt;}
.y151c_c00001{bottom:315.239467pt;}
.y17ad_c00001{bottom:315.398347pt;}
.ya06_c00001{bottom:315.558667pt;}
.y701_c00001{bottom:315.559467pt;}
.y71f_c00001{bottom:315.563253pt;}
.y1138_c00001{bottom:315.842827pt;}
.y115a_c00001{bottom:315.857467pt;}
.y162e_c00001{bottom:315.879467pt;}
.y11e4_c00001{bottom:315.880000pt;}
.y1644_c00001{bottom:315.883173pt;}
.y104d_c00001{bottom:315.959467pt;}
.y107c_c00001{bottom:316.037573pt;}
.y857_c00001{bottom:316.039467pt;}
.y1b1c_c00001{bottom:316.600000pt;}
.y38e_c00001{bottom:316.757333pt;}
.y3b4_c00001{bottom:316.758667pt;}
.y3c6_c00001{bottom:316.760000pt;}
.y768_c00001{bottom:317.079467pt;}
.y809_c00001{bottom:317.083467pt;}
.y655_c00001{bottom:317.160000pt;}
.y1c4f_c00001{bottom:317.216747pt;}
.y1b62_c00001{bottom:317.319467pt;}
.ybdf_c00001{bottom:317.880000pt;}
.y1477_c00001{bottom:318.119467pt;}
.yb6f_c00001{bottom:318.197333pt;}
.y18e_c00001{bottom:318.280000pt;}
.y1117_c00001{bottom:318.337867pt;}
.y902_c00001{bottom:318.505333pt;}
.y8fd_c00001{bottom:318.519973pt;}
.y19cf_c00001{bottom:318.599467pt;}
.y10e0_c00001{bottom:318.679467pt;}
.ya21_c00001{bottom:318.839467pt;}
.y297_c00001{bottom:319.007467pt;}
.y8b0_c00001{bottom:319.087467pt;}
.y193a_c00001{bottom:319.322267pt;}
.y9d3_c00001{bottom:319.559467pt;}
.y659_c00001{bottom:319.566347pt;}
.y17a9_c00001{bottom:319.719467pt;}
.y119d_c00001{bottom:319.956827pt;}
.y2d6_c00001{bottom:319.960000pt;}
.y16f0_c00001{bottom:320.040000pt;}
.y200_c00001{bottom:320.046213pt;}
.y1ef_c00001{bottom:320.279333pt;}
.y6b2_c00001{bottom:320.280000pt;}
.yf4e_c00001{bottom:320.519467pt;}
.y577_c00001{bottom:320.526347pt;}
.y34b_c00001{bottom:320.586747pt;}
.y345_c00001{bottom:320.601387pt;}
.y18f_c00001{bottom:320.759333pt;}
.yace_c00001{bottom:320.837333pt;}
.yae3_c00001{bottom:320.838667pt;}
.yaee_c00001{bottom:320.840000pt;}
.y1a12_c00001{bottom:321.082400pt;}
.y1325_c00001{bottom:321.559467pt;}
.ya84_c00001{bottom:321.795947pt;}
.ybe0_c00001{bottom:321.879467pt;}
.yfb0_c00001{bottom:322.195387pt;}
.y855_c00001{bottom:322.199467pt;}
.yb73_c00001{bottom:322.200613pt;}
.yd95_c00001{bottom:322.362187pt;}
.y445_c00001{bottom:322.518667pt;}
.y47a_c00001{bottom:322.520000pt;}
.y13e9_c00001{bottom:322.525333pt;}
.y1a0f_c00001{bottom:322.679467pt;}
.ybab_c00001{bottom:322.918453pt;}
.y1479_c00001{bottom:322.999733pt;}
.y1c90_c00001{bottom:323.079333pt;}
.y1432_c00001{bottom:323.079467pt;}
.ye19_c00001{bottom:323.155387pt;}
.y80b_c00001{bottom:323.158907pt;}
.y1a82_c00001{bottom:323.159467pt;}
.ydf5_c00001{bottom:323.235253pt;}
.y1400_c00001{bottom:323.239333pt;}
.y12e7_c00001{bottom:323.239467pt;}
.y100b_c00001{bottom:323.395387pt;}
.y140d_c00001{bottom:323.399333pt;}
.y1c_c00001{bottom:323.399467pt;}
.ycbb_c00001{bottom:323.400000pt;}
.y177d_c00001{bottom:323.403467pt;}
.ya52_c00001{bottom:323.717333pt;}
.yee9_c00001{bottom:323.799333pt;}
.y188d_c00001{bottom:323.799467pt;}
.ydc5_c00001{bottom:323.803227pt;}
.yfda_c00001{bottom:323.875387pt;}
.y350_c00001{bottom:324.120000pt;}
.y1257_c00001{bottom:324.279333pt;}
.y147_c00001{bottom:324.362213pt;}
.y82_c00001{bottom:324.519707pt;}
.yda_c00001{bottom:324.759333pt;}
.y1ca9_c00001{bottom:324.779307pt;}
.y1c45_c00001{bottom:324.835467pt;}
.yacd_c00001{bottom:324.839467pt;}
.y13a5_c00001{bottom:324.999333pt;}
.y446_c00001{bottom:324.999467pt;}
.y8b2_c00001{bottom:325.159467pt;}
.yc11_c00001{bottom:325.638667pt;}
.yc29_c00001{bottom:325.640000pt;}
.y1829_c00001{bottom:325.718107pt;}
.y181a_c00001{bottom:325.719467pt;}
.y17e9_c00001{bottom:325.879467pt;}
.y6fe_c00001{bottom:326.118667pt;}
.y72e_c00001{bottom:326.120000pt;}
.y4b8_c00001{bottom:326.206213pt;}
.y203_c00001{bottom:326.217413pt;}
.y1732_c00001{bottom:326.519467pt;}
.y177a_c00001{bottom:326.842373pt;}
.ycba_c00001{bottom:327.399467pt;}
.ya51_c00001{bottom:327.630907pt;}
.y17ac_c00001{bottom:327.719467pt;}
.y98b_c00001{bottom:327.797333pt;}
.y9a1_c00001{bottom:327.798667pt;}
.y166c_c00001{bottom:327.799467pt;}
.y9aa_c00001{bottom:327.800000pt;}
.yc73_c00001{bottom:327.880000pt;}
.y1851_c00001{bottom:327.959467pt;}
.ye93_c00001{bottom:328.519467pt;}
.y188e_c00001{bottom:328.683200pt;}
.y1215_c00001{bottom:328.684027pt;}
.y10dc_c00001{bottom:329.077573pt;}
.y808_c00001{bottom:329.319467pt;}
.y240_c00001{bottom:329.320000pt;}
.y18ec_c00001{bottom:329.325547pt;}
.y125d_c00001{bottom:330.038453pt;}
.y16bb_c00001{bottom:330.039467pt;}
.y16cd_c00001{bottom:330.043067pt;}
.y12da_c00001{bottom:330.119467pt;}
.y1c4e_c00001{bottom:330.261387pt;}
.y17c6_c00001{bottom:330.279333pt;}
.y13f5_c00001{bottom:330.279467pt;}
.ycf6_c00001{bottom:330.677333pt;}
.y64_c00001{bottom:330.763467pt;}
.y61c_c00001{bottom:330.840000pt;}
.y1238_c00001{bottom:331.156693pt;}
.y296_c00001{bottom:331.243467pt;}
.y8af_c00001{bottom:331.323467pt;}
.yf77_c00001{bottom:331.479467pt;}
.y613_c00001{bottom:331.550587pt;}
.y618_c00001{bottom:331.555227pt;}
.y60c_c00001{bottom:331.555867pt;}
.y10f1_c00001{bottom:331.720000pt;}
.y658_c00001{bottom:331.802347pt;}
.yc74_c00001{bottom:331.879467pt;}
.y1271_c00001{bottom:332.118667pt;}
.y1286_c00001{bottom:332.120000pt;}
.y1a85_c00001{bottom:332.122133pt;}
.y509_c00001{bottom:332.280000pt;}
.y391_c00001{bottom:332.282213pt;}
.y1ff_c00001{bottom:332.367333pt;}
.yf0a_c00001{bottom:332.436827pt;}
.y13e3_c00001{bottom:332.596453pt;}
.yd69_c00001{bottom:332.599467pt;}
.y17a0_c00001{bottom:332.756453pt;}
.y576_c00001{bottom:332.762347pt;}
.y13a8_c00001{bottom:333.011333pt;}
.y116f_c00001{bottom:333.070587pt;}
.y136c_c00001{bottom:333.079467pt;}
.y1967_c00001{bottom:333.479467pt;}
.y9d2_c00001{bottom:333.480000pt;}
.y15f7_c00001{bottom:333.639333pt;}
.y155d_c00001{bottom:333.959467pt;}
.yd2e_c00001{bottom:334.039467pt;}
.y1186_c00001{bottom:334.578773pt;}
.y162d_c00001{bottom:334.599467pt;}
.y1643_c00001{bottom:334.603173pt;}
.y2d8_c00001{bottom:334.683333pt;}
.y13e8_c00001{bottom:334.761333pt;}
.y13e5_c00001{bottom:334.844907pt;}
.y1a0e_c00001{bottom:334.922267pt;}
.y6b1_c00001{bottom:334.922347pt;}
.y1a23_c00001{bottom:334.926027pt;}
.y1c06_c00001{bottom:335.083333pt;}
.y1b1e_c00001{bottom:335.157893pt;}
.y955_c00001{bottom:335.320000pt;}
.y177c_c00001{bottom:335.639467pt;}
.yd6_c00001{bottom:335.800000pt;}
.y11e6_c00001{bottom:335.877067pt;}
.y1ae3_c00001{bottom:335.879467pt;}
.y1a4b_c00001{bottom:336.360000pt;}
.y906_c00001{bottom:336.424693pt;}
.y8fc_c00001{bottom:336.439333pt;}
.y12c4_c00001{bottom:336.595493pt;}
.y1b1d_c00001{bottom:336.599467pt;}
.y1ae4_c00001{bottom:336.600187pt;}
.y148_c00001{bottom:336.679467pt;}
.y146_c00001{bottom:336.683333pt;}
.y81_c00001{bottom:336.766347pt;}
.ye64_c00001{bottom:337.077573pt;}
.y3d_c00001{bottom:337.239467pt;}
.y136d_c00001{bottom:337.963467pt;}
.y17a8_c00001{bottom:338.119467pt;}
.y18ba_c00001{bottom:338.199467pt;}
.y7b0_c00001{bottom:338.202213pt;}
.y1cb2_c00001{bottom:338.345467pt;}
.y4ba_c00001{bottom:338.439467pt;}
.y4b7_c00001{bottom:338.442213pt;}
.y34a_c00001{bottom:338.506107pt;}
.y1297_c00001{bottom:338.520000pt;}
.y344_c00001{bottom:338.520747pt;}
.y1c44_c00001{bottom:338.599467pt;}
.yacc_c00001{bottom:338.760000pt;}
.y1998_c00001{bottom:338.919467pt;}
.yf5f_c00001{bottom:338.999333pt;}
.yf2d_c00001{bottom:339.078667pt;}
.y1858_c00001{bottom:339.319467pt;}
.yfaf_c00001{bottom:339.719467pt;}
.y766_c00001{bottom:339.797333pt;}
.yd94_c00001{bottom:339.959467pt;}
.y16f3_c00001{bottom:340.042507pt;}
.yb72_c00001{bottom:340.119973pt;}
.y1519_c00001{bottom:340.199467pt;}
.y1bbe_c00001{bottom:340.284267pt;}
.ye18_c00001{bottom:340.679467pt;}
.y700_c00001{bottom:340.758347pt;}
.y2d9_c00001{bottom:340.759333pt;}
.y100a_c00001{bottom:340.919467pt;}
.y6b3_c00001{bottom:341.079467pt;}
.ydc4_c00001{bottom:341.239467pt;}
.yfd9_c00001{bottom:341.399467pt;}
.y1c8f_c00001{bottom:341.479333pt;}
.y14c0_c00001{bottom:341.722347pt;}
.y188c_c00001{bottom:342.199467pt;}
.y13c_c00001{bottom:342.279467pt;}
.y1137_c00001{bottom:342.721867pt;}
.y1159_c00001{bottom:342.736507pt;}
.y1a84_c00001{bottom:342.839333pt;}
.y14bd_c00001{bottom:342.999467pt;}
.y1593_c00001{bottom:343.087813pt;}
.y1c4d_c00001{bottom:343.306027pt;}
.y13a4_c00001{bottom:343.399333pt;}
.y295_c00001{bottom:343.479467pt;}
.y18c_c00001{bottom:343.480000pt;}
.y8ae_c00001{bottom:343.559467pt;}
.ycb8_c00001{bottom:343.560000pt;}
.y1a81_c00001{bottom:343.799333pt;}
.y199b_c00001{bottom:343.806933pt;}
.y109a_c00001{bottom:343.960000pt;}
.y243_c00001{bottom:343.962347pt;}
.y657_c00001{bottom:344.123467pt;}
.y1813_c00001{bottom:344.200000pt;}
.y390_c00001{bottom:344.518213pt;}
.y392_c00001{bottom:344.528853pt;}
.y63_c00001{bottom:344.599467pt;}
.y1fe_c00001{bottom:344.603333pt;}
.y13e2_c00001{bottom:344.839333pt;}
.y1731_c00001{bottom:344.919467pt;}
.y179f_c00001{bottom:344.999333pt;}
.y850_c00001{bottom:345.000000pt;}
.y575_c00001{bottom:345.083467pt;}
.y1116_c00001{bottom:345.216907pt;}
.y13a7_c00001{bottom:345.247333pt;}
.ya50_c00001{bottom:345.550267pt;}
.y1a0d_c00001{bottom:345.639467pt;}
.y1a22_c00001{bottom:345.643227pt;}
.y98a_c00001{bottom:345.720000pt;}
.yc0f_c00001{bottom:345.797333pt;}
.yc21_c00001{bottom:345.798667pt;}
.yc28_c00001{bottom:345.800000pt;}
.y1b86_c00001{bottom:346.039333pt;}
.y166b_c00001{bottom:346.199467pt;}
.y2d7_c00001{bottom:346.919333pt;}
.y52d_c00001{bottom:346.994507pt;}
.y13e7_c00001{bottom:346.997333pt;}
.y508_c00001{bottom:347.002347pt;}
.y6b0_c00001{bottom:347.243467pt;}
.ye66_c00001{bottom:347.319467pt;}
.y131b_c00001{bottom:347.400000pt;}
.y1779_c00001{bottom:347.484773pt;}
.ycb9_c00001{bottom:347.559467pt;}
.y101f_c00001{bottom:347.560000pt;}
.y1969_c00001{bottom:347.566800pt;}
.y43c_c00001{bottom:347.717333pt;}
.y46e_c00001{bottom:347.718667pt;}
.y478_c00001{bottom:347.720000pt;}
.y142e_c00001{bottom:348.039333pt;}
.y1273_c00001{bottom:348.439467pt;}
.y901_c00001{bottom:348.590533pt;}
.yd2d_c00001{bottom:348.600000pt;}
.y34f_c00001{bottom:348.839333pt;}
.y145_c00001{bottom:348.919333pt;}
.y84_c00001{bottom:349.079467pt;}
.y80_c00001{bottom:349.087467pt;}
.y1473_c00001{bottom:349.159467pt;}
.y612_c00001{bottom:349.396747pt;}
.y617_c00001{bottom:349.401387pt;}
.y60b_c00001{bottom:349.402027pt;}
.yc42_c00001{bottom:349.793253pt;}
.yc10_c00001{bottom:349.799333pt;}
.yf86_c00001{bottom:349.879467pt;}
.y107b_c00001{bottom:349.958453pt;}
.y1b60_c00001{bottom:349.959467pt;}
.y18eb_c00001{bottom:349.967947pt;}
.y1ca8_c00001{bottom:350.062587pt;}
.y443_c00001{bottom:350.214347pt;}
.y7af_c00001{bottom:350.438213pt;}
.yd7_c00001{bottom:350.439467pt;}
.y10c1_c00001{bottom:350.442133pt;}
.y11c4_c00001{bottom:350.520000pt;}
.y125e_c00001{bottom:350.599467pt;}
.y4b6_c00001{bottom:350.763333pt;}
.y155e_c00001{bottom:350.835547pt;}
.y12fb_c00001{bottom:350.839467pt;}
.yd46_c00001{bottom:350.999333pt;}
.y1b_c00001{bottom:350.999467pt;}
.y1bbd_c00001{bottom:351.001467pt;}
.y9d0_c00001{bottom:351.317333pt;}
.y9ea_c00001{bottom:351.318667pt;}
.y9f3_c00001{bottom:351.320000pt;}
.yaa8_c00001{bottom:351.400000pt;}
.y136b_c00001{bottom:351.479467pt;}
.y10f4_c00001{bottom:351.804027pt;}
.y1966_c00001{bottom:351.879467pt;}
.y61b_c00001{bottom:352.038667pt;}
.y18d_c00001{bottom:352.039333pt;}
.y805_c00001{bottom:352.120000pt;}
.y19cb_c00001{bottom:352.442187pt;}
.y19e0_c00001{bottom:352.443973pt;}
.yd2c_c00001{bottom:352.599467pt;}
.y155c_c00001{bottom:352.679467pt;}
.y6ff_c00001{bottom:353.079467pt;}
.y50a_c00001{bottom:353.159467pt;}
.y954_c00001{bottom:353.237333pt;}
.y185a_c00001{bottom:353.403467pt;}
.ybde_c00001{bottom:353.640000pt;}
.y119c_c00001{bottom:353.877707pt;}
.y14bf_c00001{bottom:354.043467pt;}
.y15f6_c00001{bottom:354.119467pt;}
.ye39_c00001{bottom:354.437333pt;}
.y1ae2_c00001{bottom:354.599467pt;}
.ycf5_c00001{bottom:354.760000pt;}
.yf4c_c00001{bottom:355.083493pt;}
.y9d1_c00001{bottom:355.319467pt;}
.y13e4_c00001{bottom:355.399467pt;}
.ya83_c00001{bottom:355.716827pt;}
.y199a_c00001{bottom:356.042933pt;}
.y1b61_c00001{bottom:356.043467pt;}
.y1c4c_c00001{bottom:356.265547pt;}
.y244_c00001{bottom:356.279467pt;}
.y242_c00001{bottom:356.283467pt;}
.y656_c00001{bottom:356.359467pt;}
.y349_c00001{bottom:356.425467pt;}
.y11e7_c00001{bottom:356.439467pt;}
.y343_c00001{bottom:356.440107pt;}
.y11e5_c00001{bottom:356.519467pt;}
.y7b1_c00001{bottom:356.598773pt;}
.y18b9_c00001{bottom:356.599467pt;}
.yb1c_c00001{bottom:356.680000pt;}
.y1fd_c00001{bottom:356.839333pt;}
.y574_c00001{bottom:357.319467pt;}
.y13a6_c00001{bottom:357.483333pt;}
.y1857_c00001{bottom:357.719467pt;}
.y17c5_c00001{bottom:357.879333pt;}
.y13f4_c00001{bottom:357.879467pt;}
.yb71_c00001{bottom:358.039333pt;}
.y1431_c00001{bottom:358.051733pt;}
.y1b6_c00001{bottom:358.198613pt;}
.y18b_c00001{bottom:358.199467pt;}
.y3fa_c00001{bottom:358.202213pt;}
.y123a_c00001{bottom:358.359467pt;}
.yfae_c00001{bottom:358.515253pt;}
.y12a0_c00001{bottom:358.518107pt;}
.y1518_c00001{bottom:358.599467pt;}
.yd93_c00001{bottom:358.675387pt;}
.y15c4_c00001{bottom:358.998667pt;}
.y1734_c00001{bottom:359.003200pt;}
.yf2f_c00001{bottom:359.078453pt;}
.ye17_c00001{bottom:359.159467pt;}
.yeb9_c00001{bottom:359.160000pt;}
.y52c_c00001{bottom:359.230507pt;}
.y507_c00001{bottom:359.238347pt;}
.y6af_c00001{bottom:359.479467pt;}
.ydf4_c00001{bottom:359.562187pt;}
.y853_c00001{bottom:359.642347pt;}
.y1009_c00001{bottom:359.715387pt;}
.y1968_c00001{bottom:359.802800pt;}
.y116e_c00001{bottom:359.949627pt;}
.ydc3_c00001{bottom:360.042187pt;}
.y16ba_c00001{bottom:360.047867pt;}
.yfd8_c00001{bottom:360.195387pt;}
.y107d_c00001{bottom:360.199467pt;}
.y16f2_c00001{bottom:360.597067pt;}
.yb1d_c00001{bottom:360.679467pt;}
.y1938_c00001{bottom:361.242187pt;}
.y1b88_c00001{bottom:361.322133pt;}
.y7f_c00001{bottom:361.323467pt;}
.y1185_c00001{bottom:361.384613pt;}
.y14bc_c00001{bottom:361.399467pt;}
.y13a3_c00001{bottom:361.799333pt;}
.y162c_c00001{bottom:362.042133pt;}
.y1642_c00001{bottom:362.046693pt;}
.y1595_c00001{bottom:362.282133pt;}
.y1939_c00001{bottom:362.443467pt;}
.y442_c00001{bottom:362.450347pt;}
.y1214_c00001{bottom:362.604907pt;}
.y7ae_c00001{bottom:362.759333pt;}
.y10db_c00001{bottom:362.998453pt;}
.y4b5_c00001{bottom:362.999333pt;}
.y1730_c00001{bottom:363.319467pt;}
.ya4f_c00001{bottom:363.469627pt;}
.y12c3_c00001{bottom:363.474533pt;}
.y3ec_c00001{bottom:363.599333pt;}
.y988_c00001{bottom:363.640000pt;}
.y1592_c00001{bottom:363.642373pt;}
.yc72_c00001{bottom:363.720000pt;}
.y1bbc_c00001{bottom:363.879333pt;}
.y1818_c00001{bottom:363.879467pt;}
.y1bd2_c00001{bottom:363.883493pt;}
.y109b_c00001{bottom:363.959333pt;}
.y119f_c00001{bottom:364.039333pt;}
.y1b85_c00001{bottom:364.439333pt;}
.y1047_c00001{bottom:364.517333pt;}
.y1056_c00001{bottom:364.518667pt;}
.y105a_c00001{bottom:364.520000pt;}
.y166a_c00001{bottom:364.599467pt;}
.y3c_c00001{bottom:364.759467pt;}
.y763_c00001{bottom:364.998667pt;}
.y1237_c00001{bottom:365.077573pt;}
.y1320_c00001{bottom:365.158347pt;}
.y1a4c_c00001{bottom:365.322133pt;}
.y1abf_c00001{bottom:365.399467pt;}
.y34e_c00001{bottom:365.477333pt;}
.y1859_c00001{bottom:365.639467pt;}
.yc40_c00001{bottom:365.880000pt;}
.y1c42_c00001{bottom:366.199333pt;}
.y1c47_c00001{bottom:366.199467pt;}
.y14be_c00001{bottom:366.279467pt;}
.yf09_c00001{bottom:366.357707pt;}
.y8a8_c00001{bottom:366.360000pt;}
.y142d_c00001{bottom:366.439333pt;}
.y806_c00001{bottom:366.759333pt;}
.y28e_c00001{bottom:367.080000pt;}
.y611_c00001{bottom:367.316107pt;}
.y616_c00001{bottom:367.320747pt;}
.y60a_c00001{bottom:367.321387pt;}
.y1f8_c00001{bottom:367.397333pt;}
.y764_c00001{bottom:367.479467pt;}
.y1023_c00001{bottom:367.556827pt;}
.y1472_c00001{bottom:367.559467pt;}
.y989_c00001{bottom:367.639467pt;}
.yc71_c00001{bottom:367.640053pt;}
.y18ee_c00001{bottom:367.963467pt;}
.y1778_c00001{bottom:368.039333pt;}
.y16f5_c00001{bottom:368.118347pt;}
.yf76_c00001{bottom:368.279467pt;}
.y1b5f_c00001{bottom:368.359467pt;}
.y241_c00001{bottom:368.519467pt;}
.y8ab_c00001{bottom:368.762347pt;}
.y1092_c00001{bottom:368.923947pt;}
.y1960_c00001{bottom:368.999333pt;}
.y15c3_c00001{bottom:369.239467pt;}
.ya04_c00001{bottom:369.240000pt;}
.y1c4b_c00001{bottom:369.310187pt;}
.yd68_c00001{bottom:369.399467pt;}
.y131d_c00001{bottom:369.479467pt;}
.y1136_c00001{bottom:369.600907pt;}
.y1158_c00001{bottom:369.615547pt;}
.y2d4_c00001{bottom:369.720000pt;}
.yc41_c00001{bottom:369.879333pt;}
.y19cc_c00001{bottom:369.959333pt;}
.y6ab_c00001{bottom:369.960000pt;}
.y1965_c00001{bottom:370.279467pt;}
.y1430_c00001{bottom:370.287733pt;}
.y3f9_c00001{bottom:370.438213pt;}
.y3fb_c00001{bottom:370.439467pt;}
.y11c5_c00001{bottom:370.519467pt;}
.y18ea_c00001{bottom:370.522507pt;}
.ye63_c00001{bottom:370.998453pt;}
.y952_c00001{bottom:371.160000pt;}
.y1733_c00001{bottom:371.239200pt;}
.ybaa_c00001{bottom:371.400000pt;}
.y1a7f_c00001{bottom:371.482267pt;}
.y52b_c00001{bottom:371.551627pt;}
.y506_c00001{bottom:371.559467pt;}
.y13d_c00001{bottom:371.717333pt;}
.y1b5_c00001{bottom:371.956133pt;}
.y18a_c00001{bottom:371.959333pt;}
.y852_c00001{bottom:371.963467pt;}
.y1115_c00001{bottom:372.022747pt;}
.y1b87_c00001{bottom:372.039333pt;}
.yee2_c00001{bottom:372.280000pt;}
.y16b9_c00001{bottom:372.439467pt;}
.yd2b_c00001{bottom:372.677333pt;}
.yd31_c00001{bottom:372.678667pt;}
.y19ca_c00001{bottom:372.679467pt;}
.yd38_c00001{bottom:372.680000pt;}
.y19df_c00001{bottom:372.681253pt;}
.y162b_c00001{bottom:372.759333pt;}
.y1641_c00001{bottom:372.763893pt;}
.y8f4_c00001{bottom:372.915733pt;}
.y126c_c00001{bottom:372.917333pt;}
.y127f_c00001{bottom:372.918667pt;}
.y8fa_c00001{bottom:372.919333pt;}
.y1285_c00001{bottom:372.920000pt;}
.y1594_c00001{bottom:372.999333pt;}
.ya05_c00001{bottom:373.239467pt;}
.yd3_c00001{bottom:373.240000pt;}
.y7e_c00001{bottom:373.559467pt;}
.y141_c00001{bottom:374.122347pt;}
.y342_c00001{bottom:374.359467pt;}
.ye3d_c00001{bottom:374.437707pt;}
.yacb_c00001{bottom:374.597333pt;}
.yae2_c00001{bottom:374.598667pt;}
.yaed_c00001{bottom:374.600000pt;}
.y441_c00001{bottom:374.686347pt;}
.yd2_c00001{bottom:374.839333pt;}
.y18b8_c00001{bottom:374.999467pt;}
.y953_c00001{bottom:375.159467pt;}
.yba9_c00001{bottom:375.399467pt;}
.ybdd_c00001{bottom:375.559467pt;}
.y1997_c00001{bottom:375.719467pt;}
.y6fc_c00001{bottom:375.797333pt;}
.y71e_c00001{bottom:375.798667pt;}
.yf5e_c00001{bottom:375.799333pt;}
.y72d_c00001{bottom:375.800000pt;}
.yfad_c00001{bottom:376.039333pt;}
.y1856_c00001{bottom:376.119467pt;}
.yd92_c00001{bottom:376.199467pt;}
.yf0b_c00001{bottom:376.595467pt;}
.yd2a_c00001{bottom:376.679467pt;}
.ye90_c00001{bottom:376.998667pt;}
.y1517_c00001{bottom:376.999467pt;}
.ydf3_c00001{bottom:377.159467pt;}
.y61a_c00001{bottom:377.239467pt;}
.y131f_c00001{bottom:377.479467pt;}
.ydc2_c00001{bottom:377.639467pt;}
.yfd7_c00001{bottom:377.719467pt;}
.yebb_c00001{bottom:377.879333pt;}
.ye16_c00001{bottom:377.955387pt;}
.y1c8e_c00001{bottom:378.279333pt;}
.y6fd_c00001{bottom:378.279467pt;}
.y12ec_c00001{bottom:378.439467pt;}
.y140c_c00001{bottom:378.599333pt;}
.y1a_c00001{bottom:378.599467pt;}
.y15cb_c00001{bottom:379.010853pt;}
.y651_c00001{bottom:379.157333pt;}
.y66f_c00001{bottom:379.158667pt;}
.y15f3_c00001{bottom:379.159467pt;}
.y682_c00001{bottom:379.160000pt;}
.ycb7_c00001{bottom:379.320000pt;}
.y1367_c00001{bottom:379.399467pt;}
.ycf4_c00001{bottom:379.480000pt;}
.y1a0b_c00001{bottom:379.559467pt;}
.y1a20_c00001{bottom:379.563867pt;}
.yf30_c00001{bottom:379.639467pt;}
.y18bc_c00001{bottom:379.883467pt;}
.y17a1_c00001{bottom:379.960000pt;}
.y1c46_c00001{bottom:379.963467pt;}
.y56f_c00001{bottom:380.118667pt;}
.y18ed_c00001{bottom:380.199467pt;}
.y1a0c_c00001{bottom:380.280187pt;}
.y1a21_c00001{bottom:380.284587pt;}
.y16f4_c00001{bottom:380.439467pt;}
.y38c_c00001{bottom:380.440000pt;}
.y444_c00001{bottom:380.857547pt;}
.y8aa_c00001{bottom:381.083467pt;}
.y16f1_c00001{bottom:381.239467pt;}
.y1091_c00001{bottom:381.241707pt;}
.yecb_c00001{bottom:381.396187pt;}
.yeb8_c00001{bottom:381.397067pt;}
.y1937_c00001{bottom:381.479467pt;}
.yafd_c00001{bottom:381.557333pt;}
.yb4d_c00001{bottom:381.558667pt;}
.yb53_c00001{bottom:381.560000pt;}
.y172f_c00001{bottom:381.719467pt;}
.y290_c00001{bottom:381.803333pt;}
.ya4e_c00001{bottom:382.033147pt;}
.y1fb_c00001{bottom:382.042347pt;}
.y654_c00001{bottom:382.118347pt;}
.y1a7e_c00001{bottom:382.199467pt;}
.y1c4a_c00001{bottom:382.354827pt;}
.y142f_c00001{bottom:382.523733pt;}
.y10f5_c00001{bottom:382.599467pt;}
.y3f8_c00001{bottom:382.759333pt;}
.y1b84_c00001{bottom:382.839333pt;}
.y1669_c00001{bottom:382.999467pt;}
.y1213_c00001{bottom:383.159467pt;}
.ycb6_c00001{bottom:383.320187pt;}
.y17e8_c00001{bottom:383.323467pt;}
.y188_c00001{bottom:383.400000pt;}
.ycf3_c00001{bottom:383.479467pt;}
.yc6f_c00001{bottom:383.800000pt;}
.y107a_c00001{bottom:383.879333pt;}
.y851_c00001{bottom:384.199467pt;}
.y1591_c00001{bottom:384.284773pt;}
.y2d5_c00001{bottom:384.359467pt;}
.y10c0_c00001{bottom:384.363013pt;}
.y104a_c00001{bottom:384.518587pt;}
.y6ad_c00001{bottom:384.683333pt;}
.y1476_c00001{bottom:384.771467pt;}
.y1a80_c00001{bottom:384.919333pt;}
.y1817_c00001{bottom:385.079467pt;}
.y610_c00001{bottom:385.235467pt;}
.y615_c00001{bottom:385.240107pt;}
.y609_c00001{bottom:385.240747pt;}
.y13f3_c00001{bottom:385.319467pt;}
.y17c4_c00001{bottom:385.479333pt;}
.y12d9_c00001{bottom:385.479467pt;}
.y7a8_c00001{bottom:385.480000pt;}
.y10f3_c00001{bottom:385.724907pt;}
.y4b1_c00001{bottom:385.800000pt;}
.y1471_c00001{bottom:385.959467pt;}
.y13e1_c00001{bottom:386.282213pt;}
.y140_c00001{bottom:386.358347pt;}
.yf85_c00001{bottom:386.679467pt;}
.y116d_c00001{bottom:386.828667pt;}
.y440_c00001{bottom:387.007467pt;}
.y8ac_c00001{bottom:387.158907pt;}
.y9cf_c00001{bottom:387.160000pt;}
.y16ec_c00001{bottom:387.319467pt;}
.y136a_c00001{bottom:387.407333pt;}
.y13de_c00001{bottom:387.559333pt;}
.y17e6_c00001{bottom:387.639467pt;}
.y52a_c00001{bottom:387.713787pt;}
.y505_c00001{bottom:387.718213pt;}
.y119b_c00001{bottom:387.798587pt;}
.yc70_c00001{bottom:387.799333pt;}
.yd56_c00001{bottom:387.799467pt;}
.y291_c00001{bottom:387.959333pt;}
.yd5_c00001{bottom:387.963467pt;}
.y1184_c00001{bottom:388.263653pt;}
.y1cb9_c00001{bottom:388.727067pt;}
.y142c_c00001{bottom:388.839333pt;}
.y1bb9_c00001{bottom:388.839467pt;}
.y13a1_c00001{bottom:388.919467pt;}
.y38d_c00001{bottom:388.999333pt;}
.yf4b_c00001{bottom:389.004373pt;}
.y1b80_c00001{bottom:389.399467pt;}
.ybdc_c00001{bottom:389.477333pt;}
.y803_c00001{bottom:389.560000pt;}
.ya82_c00001{bottom:389.637707pt;}
.y1626_c00001{bottom:390.040000pt;}
.y348_c00001{bottom:390.112107pt;}
.y75d_c00001{bottom:390.197333pt;}
.y12c2_c00001{bottom:390.353573pt;}
.y6ae_c00001{bottom:390.759333pt;}
.y8f3_c00001{bottom:390.835093pt;}
.y18e9_c00001{bottom:391.077067pt;}
.ya20_c00001{bottom:391.159467pt;}
.y239_c00001{bottom:391.320000pt;}
.y1b19_c00001{bottom:391.722373pt;}
.y1adf_c00001{bottom:391.888587pt;}
.y189_c00001{bottom:391.959333pt;}
.y18bb_c00001{bottom:392.119467pt;}
.yee5_c00001{bottom:392.277707pt;}
.y151b_c00001{bottom:392.278267pt;}
.y3b_c00001{bottom:392.359467pt;}
.y129f_c00001{bottom:392.438987pt;}
.y14b8_c00001{bottom:392.439467pt;}
.y142_c00001{bottom:392.518907pt;}
.y188b_c00001{bottom:392.519680pt;}
.yaca_c00001{bottom:392.520000pt;}
.y126f_c00001{bottom:392.916187pt;}
.yf2e_c00001{bottom:392.999333pt;}
.y8f9_c00001{bottom:393.240000pt;}
.y8a9_c00001{bottom:393.319467pt;}
.y18b7_c00001{bottom:393.399467pt;}
.y1090_c00001{bottom:393.559467pt;}
.y1c41_c00001{bottom:393.799333pt;}
.y13a2_c00001{bottom:393.803200pt;}
.y28f_c00001{bottom:394.039333pt;}
.y6aa_c00001{bottom:394.119467pt;}
.yba8_c00001{bottom:394.277333pt;}
.ybb6_c00001{bottom:394.278667pt;}
.ybbd_c00001{bottom:394.280000pt;}
.y1fc_c00001{bottom:394.359467pt;}
.y1fa_c00001{bottom:394.363467pt;}
.y653_c00001{bottom:394.439467pt;}
.y4b2_c00001{bottom:394.519467pt;}
.y571_c00001{bottom:394.758347pt;}
.yfac_c00001{bottom:394.835387pt;}
.y1a4a_c00001{bottom:394.839333pt;}
.yd91_c00001{bottom:395.002187pt;}
.y1b5d_c00001{bottom:395.399333pt;}
.y1516_c00001{bottom:395.399467pt;}
.ye15_c00001{bottom:395.479467pt;}
.y17e7_c00001{bottom:395.559467pt;}
.ydf2_c00001{bottom:395.955387pt;}
.y1008_c00001{bottom:396.035387pt;}
.y1559_c00001{bottom:396.039467pt;}
.y79_c00001{bottom:396.360000pt;}
.y1135_c00001{bottom:396.406747pt;}
.y1157_c00001{bottom:396.421387pt;}
.ydc1_c00001{bottom:396.435253pt;}
.yfd6_c00001{bottom:396.515253pt;}
.y1c8d_c00001{bottom:396.679333pt;}
.yd29_c00001{bottom:396.760000pt;}
.y6ac_c00001{bottom:396.919333pt;}
.ye91_c00001{bottom:396.999333pt;}
.y1475_c00001{bottom:397.007467pt;}
.y1962_c00001{bottom:397.319467pt;}
.y15f2_c00001{bottom:397.559467pt;}
.y1366_c00001{bottom:397.799467pt;}
.yba7_c00001{bottom:398.279467pt;}
.y1a1f_c00001{bottom:398.283867pt;}
.y126b_c00001{bottom:398.362267pt;}
.y619_c00001{bottom:398.439467pt;}
.y13e0_c00001{bottom:398.603333pt;}
.y13f_c00001{bottom:398.679467pt;}
.y1114_c00001{bottom:398.901787pt;}
.y1236_c00001{bottom:398.998453pt;}
.y1258_c00001{bottom:399.160000pt;}
.yf4d_c00001{bottom:399.239467pt;}
.y43f_c00001{bottom:399.243467pt;}
.y987_c00001{bottom:399.400000pt;}
.ycb5_c00001{bottom:399.480000pt;}
.y1a7c_c00001{bottom:399.557333pt;}
.y1a95_c00001{bottom:399.558667pt;}
.y16b7_c00001{bottom:399.559333pt;}
.y1a9a_c00001{bottom:399.560000pt;}
.y15ca_c00001{bottom:399.565413pt;}
.y1369_c00001{bottom:399.643333pt;}
.y4ec_c00001{bottom:399.719467pt;}
.y192e_c00001{bottom:399.960000pt;}
.y17a5_c00001{bottom:399.964027pt;}
.y529_c00001{bottom:400.034907pt;}
.y504_c00001{bottom:400.039333pt;}
.y172e_c00001{bottom:400.119467pt;}
.yd4_c00001{bottom:400.199467pt;}
.yf08_c00001{bottom:400.278587pt;}
.y4b0_c00001{bottom:400.679467pt;}
.y7ab_c00001{bottom:400.683333pt;}
.y1b1b_c00001{bottom:400.686267pt;}
.yd28_c00001{bottom:400.759333pt;}
.y572_c00001{bottom:400.919333pt;}
.y6f8_c00001{bottom:400.998667pt;}
.y72c_c00001{bottom:401.000000pt;}
.y1211_c00001{bottom:401.079467pt;}
.y1668_c00001{bottom:401.399467pt;}
.y1022_c00001{bottom:401.477707pt;}
.y1b5e_c00001{bottom:401.483467pt;}
.y19c9_c00001{bottom:401.643333pt;}
.yc3f_c00001{bottom:401.717333pt;}
.yeca_c00001{bottom:401.718587pt;}
.yeb7_c00001{bottom:401.719467pt;}
.y151a_c00001{bottom:402.995467pt;}
.y60f_c00001{bottom:403.154827pt;}
.y1853_c00001{bottom:403.159333pt;}
.y614_c00001{bottom:403.159467pt;}
.y608_c00001{bottom:403.160107pt;}
.y1313_c00001{bottom:403.320000pt;}
.ya4d_c00001{bottom:403.392907pt;}
.y986_c00001{bottom:403.399467pt;}
.y6f9_c00001{bottom:403.479467pt;}
.y15f5_c00001{bottom:403.645200pt;}
.y1c04_c00001{bottom:404.119333pt;}
.y1bbb_c00001{bottom:404.122133pt;}
.ycf2_c00001{bottom:404.200000pt;}
.y804_c00001{bottom:404.279467pt;}
.y1470_c00001{bottom:404.359467pt;}
.y16b8_c00001{bottom:404.443200pt;}
.y10c2_c00001{bottom:404.839333pt;}
.y188a_c00001{bottom:404.840800pt;}
.y7b_c00001{bottom:404.919333pt;}
.y761_c00001{bottom:404.926347pt;}
.y11de_c00001{bottom:405.000000pt;}
.y104b_c00001{bottom:405.001467pt;}
.y9ce_c00001{bottom:405.078667pt;}
.yf75_c00001{bottom:405.079467pt;}
.y9f2_c00001{bottom:405.080000pt;}
.y3f1_c00001{bottom:405.480000pt;}
.y38a_c00001{bottom:405.640000pt;}
.y13dd_c00001{bottom:405.959333pt;}
.y23f_c00001{bottom:405.965227pt;}
.y12f2_c00001{bottom:406.039467pt;}
.y140b_c00001{bottom:406.199333pt;}
.y19_c00001{bottom:406.199467pt;}
.y10f2_c00001{bottom:406.279467pt;}
.y1f9_c00001{bottom:406.599467pt;}
.y1698_c00001{bottom:406.604987pt;}
.y7ad_c00001{bottom:406.759333pt;}
.y33f_c00001{bottom:406.840000pt;}
.y84e_c00001{bottom:406.998667pt;}
.y87c_c00001{bottom:407.000000pt;}
.y570_c00001{bottom:407.079467pt;}
.y2d0_c00001{bottom:407.160000pt;}
.y1bb8_c00001{bottom:407.239467pt;}
.y13a0_c00001{bottom:407.319467pt;}
.ye3c_c00001{bottom:408.358587pt;}
.y186_c00001{bottom:408.600000pt;}
.y8f2_c00001{bottom:408.754453pt;}
.yaa7_c00001{bottom:409.079467pt;}
.y1474_c00001{bottom:409.243467pt;}
.y7e8_c00001{bottom:409.399467pt;}
.y1a7b_c00001{bottom:409.639467pt;}
.y1a94_c00001{bottom:409.639813pt;}
.y14bb_c00001{bottom:409.644267pt;}
.y1b82_c00001{bottom:409.879467pt;}
.y198f_c00001{bottom:410.039333pt;}
.y1628_c00001{bottom:410.042507pt;}
.yb1a_c00001{bottom:410.357333pt;}
.yb2b_c00001{bottom:410.358667pt;}
.yb30_c00001{bottom:410.360000pt;}
.y13df_c00001{bottom:410.839333pt;}
.y14b7_c00001{bottom:410.839467pt;}
.y1773_c00001{bottom:410.919467pt;}
.y4af_c00001{bottom:411.400000pt;}
.y1b1a_c00001{bottom:411.403467pt;}
.y1964_c00001{bottom:411.406800pt;}
.y43e_c00001{bottom:411.479467pt;}
.y10d5_c00001{bottom:411.480000pt;}
.y18e8_c00001{bottom:411.719467pt;}
.y8f8_c00001{bottom:411.797333pt;}
.y92a_c00001{bottom:411.798667pt;}
.y18b6_c00001{bottom:411.799467pt;}
.y1368_c00001{bottom:411.879333pt;}
.y1a45_c00001{bottom:412.200000pt;}
.y289_c00001{bottom:412.279467pt;}
.yfab_c00001{bottom:412.359467pt;}
.y1b18_c00001{bottom:412.364773pt;}
.y1098_c00001{bottom:412.517333pt;}
.y10a5_c00001{bottom:412.518667pt;}
.y10a9_c00001{bottom:412.520000pt;}
.y1ade_c00001{bottom:412.530987pt;}
.yf5d_c00001{bottom:412.599333pt;}
.yd90_c00001{bottom:412.599467pt;}
.y7aa_c00001{bottom:412.919333pt;}
.y12d8_c00001{bottom:412.919467pt;}
.y129e_c00001{bottom:412.993547pt;}
.y13f2_c00001{bottom:413.079467pt;}
.yb6e_c00001{bottom:413.400000pt;}
.ydf1_c00001{bottom:413.479467pt;}
.y1007_c00001{bottom:413.559467pt;}
.y116c_c00001{bottom:413.634507pt;}
.y1515_c00001{bottom:413.799467pt;}
.y4fe_c00001{bottom:413.800000pt;}
.ydc0_c00001{bottom:413.959333pt;}
.yfee_c00001{bottom:414.039333pt;}
.yfd5_c00001{bottom:414.039467pt;}
.y1ca7_c00001{bottom:414.068667pt;}
.y38b_c00001{bottom:414.199467pt;}
.ye14_c00001{bottom:414.282053pt;}
.yb1b_c00001{bottom:414.359467pt;}
.y15f4_c00001{bottom:414.362400pt;}
.y1558_c00001{bottom:414.439467pt;}
.y1bba_c00001{bottom:414.839333pt;}
.y1c8c_c00001{bottom:415.079333pt;}
.y1819_c00001{bottom:415.083467pt;}
.y1183_c00001{bottom:415.142693pt;}
.y1961_c00001{bottom:415.719467pt;}
.y1b5c_c00001{bottom:415.879333pt;}
.y75c_c00001{bottom:415.883467pt;}
.y1b83_c00001{bottom:415.954160pt;}
.y15f1_c00001{bottom:415.959467pt;}
.y5aa_c00001{bottom:415.960000pt;}
.y8a6_c00001{bottom:416.118667pt;}
.y1365_c00001{bottom:416.199467pt;}
.y28a_c00001{bottom:416.837333pt;}
.y12c1_c00001{bottom:417.159413pt;}
.yba6_c00001{bottom:417.160000pt;}
.y760_c00001{bottom:417.162347pt;}
.y1855_c00001{bottom:417.236213pt;}
.y985_c00001{bottom:417.317333pt;}
.y9a0_c00001{bottom:417.318667pt;}
.y9a9_c00001{bottom:417.320000pt;}
.yc0e_c00001{bottom:417.400000pt;}
.y64b_c00001{bottom:417.797333pt;}
.y66e_c00001{bottom:417.798667pt;}
.y681_c00001{bottom:417.800000pt;}
.y10bf_c00001{bottom:418.283893pt;}
.y23e_c00001{bottom:418.286347pt;}
.y120f_c00001{bottom:418.360000pt;}
.y562_c00001{bottom:418.363467pt;}
.y1049_c00001{bottom:418.439467pt;}
.ye3e_c00001{bottom:418.599467pt;}
.y142b_c00001{bottom:418.682480pt;}
.y11ba_c00001{bottom:418.998667pt;}
.y125a_c00001{bottom:419.158587pt;}
.y1c2d_c00001{bottom:419.160000pt;}
.y158d_c00001{bottom:419.400000pt;}
.ye5b_c00001{bottom:419.560000pt;}
.y60e_c00001{bottom:419.639467pt;}
.yc6d_c00001{bottom:419.640000pt;}
.y1667_c00001{bottom:419.799467pt;}
.y3a_c00001{bottom:419.959467pt;}
.y1934_c00001{bottom:419.965547pt;}
.y16b6_c00001{bottom:420.039333pt;}
.yeb1_c00001{bottom:420.197333pt;}
.yec8_c00001{bottom:420.198667pt;}
.yecf_c00001{bottom:420.200000pt;}
.y15c9_c00001{bottom:420.207813pt;}
.y3f6_c00001{bottom:420.210347pt;}
.y17a4_c00001{bottom:420.518587pt;}
.y155b_c00001{bottom:420.522267pt;}
.yedd_c00001{bottom:420.759333pt;}
.ya4b_c00001{bottom:420.760000pt;}
.yd27_c00001{bottom:420.840000pt;}
.y607_c00001{bottom:421.079467pt;}
.yba5_c00001{bottom:421.159467pt;}
.y1852_c00001{bottom:421.559333pt;}
.y75_c00001{bottom:421.560000pt;}
.y84f_c00001{bottom:421.639467pt;}
.y119a_c00001{bottom:421.719467pt;}
.y1abe_c00001{bottom:421.724267pt;}
.y14ba_c00001{bottom:421.880267pt;}
.y2d2_c00001{bottom:421.883467pt;}
.y1024_c00001{bottom:421.959333pt;}
.y413_c00001{bottom:422.040000pt;}
.y146f_c00001{bottom:422.759467pt;}
.yd0_c00001{bottom:422.920000pt;}
.yf4a_c00001{bottom:422.998453pt;}
.y9cd_c00001{bottom:423.000000pt;}
.y1b4_c00001{bottom:423.237307pt;}
.y185_c00001{bottom:423.238347pt;}
.y187_c00001{bottom:423.239467pt;}
.y1134_c00001{bottom:423.285787pt;}
.y1156_c00001{bottom:423.300427pt;}
.y762_c00001{bottom:423.319467pt;}
.y1316_c00001{bottom:423.324773pt;}
.yf84_c00001{bottom:423.479467pt;}
.ya81_c00001{bottom:423.558587pt;}
.yc6e_c00001{bottom:423.639467pt;}
.y1963_c00001{bottom:423.642800pt;}
.y1270_c00001{bottom:423.719467pt;}
.y16ee_c00001{bottom:424.039467pt;}
.y4a9_c00001{bottom:424.360000pt;}
.y17e5_c00001{bottom:424.439467pt;}
.yd45_c00001{bottom:424.599333pt;}
.yd55_c00001{bottom:424.599467pt;}
.y17a7_c00001{bottom:424.603333pt;}
.ya4c_c00001{bottom:424.679467pt;}
.yd26_c00001{bottom:424.759333pt;}
.y11e2_c00001{bottom:425.002507pt;}
.y1775_c00001{bottom:425.003467pt;}
.ybdb_c00001{bottom:425.237333pt;}
.y1bb7_c00001{bottom:425.639467pt;}
.y1abd_c00001{bottom:425.644907pt;}
.y1113_c00001{bottom:425.780827pt;}
.y6eb_c00001{bottom:426.197333pt;}
.yee4_c00001{bottom:426.198587pt;}
.y71c_c00001{bottom:426.198667pt;}
.y72a_c00001{bottom:426.200000pt;}
.y13b_c00001{bottom:426.283467pt;}
.y8f1_c00001{bottom:426.600613pt;}
.y126e_c00001{bottom:426.837067pt;}
.y7ff_c00001{bottom:427.000000pt;}
.y1994_c00001{bottom:427.159333pt;}
.y172b_c00001{bottom:427.159467pt;}
.y1816_c00001{bottom:427.319467pt;}
.y2d3_c00001{bottom:427.959333pt;}
.yf28_c00001{bottom:428.200000pt;}
.y1b81_c00001{bottom:428.279467pt;}
.yac9_c00001{bottom:428.280000pt;}
.y1a7a_c00001{bottom:428.359467pt;}
.y1a93_c00001{bottom:428.359813pt;}
.y502_c00001{bottom:428.771467pt;}
.y951_c00001{bottom:428.839333pt;}
.y16ef_c00001{bottom:428.918347pt;}
.ycf1_c00001{bottom:429.000000pt;}
.y15cd_c00001{bottom:429.082133pt;}
.ybda_c00001{bottom:429.239467pt;}
.y162a_c00001{bottom:429.242133pt;}
.y1772_c00001{bottom:429.319467pt;}
.y75f_c00001{bottom:429.483467pt;}
.y1854_c00001{bottom:429.557333pt;}
.y75b_c00001{bottom:429.719467pt;}
.y568_c00001{bottom:429.797333pt;}
.y78_c00001{bottom:430.119467pt;}
.y18b5_c00001{bottom:430.199467pt;}
.y1b34_c00001{bottom:430.201547pt;}
.y8f7_c00001{bottom:430.440000pt;}
.y23d_c00001{bottom:430.522347pt;}
.y1627_c00001{bottom:430.684907pt;}
.y5ad_c00001{bottom:430.687467pt;}
.y8a5_c00001{bottom:430.766347pt;}
.y142a_c00001{bottom:430.918480pt;}
.y1318_c00001{bottom:431.003467pt;}
.yfaa_c00001{bottom:431.075387pt;}
.y14af_c00001{bottom:431.079467pt;}
.y155a_c00001{bottom:431.239467pt;}
.yd8f_c00001{bottom:431.395253pt;}
.y10da_c00001{bottom:431.475173pt;}
.yd1_c00001{bottom:431.479467pt;}
.y28c_c00001{bottom:431.563333pt;}
.ye13_c00001{bottom:431.879333pt;}
.y1a47_c00001{bottom:432.198587pt;}
.y561_c00001{bottom:432.199467pt;}
.y1312_c00001{bottom:432.202133pt;}
.ydf0_c00001{bottom:432.275253pt;}
.yfd4_c00001{bottom:432.439467pt;}
.y3f5_c00001{bottom:432.446347pt;}
.y1099_c00001{bottom:432.519467pt;}
.y64f_c00001{bottom:432.527333pt;}
.ydbf_c00001{bottom:432.762187pt;}
.yfed_c00001{bottom:432.835387pt;}
.y1557_c00001{bottom:432.839467pt;}
.ycf0_c00001{bottom:432.911067pt;}
.y1235_c00001{bottom:432.919333pt;}
.y1add_c00001{bottom:433.085547pt;}
.y1f7_c00001{bottom:433.159467pt;}
.y1428_c00001{bottom:433.638027pt;}
.y12f9_c00001{bottom:433.639467pt;}
.y1409_c00001{bottom:433.799333pt;}
.y18_c00001{bottom:433.799467pt;}
.y14b9_c00001{bottom:434.116267pt;}
.y2d1_c00001{bottom:434.119467pt;}
.yf07_c00001{bottom:434.199467pt;}
.y388_c00001{bottom:434.206213pt;}
.y3b2_c00001{bottom:434.209093pt;}
.y139e_c00001{bottom:434.359333pt;}
.y15f0_c00001{bottom:434.359467pt;}
.y6a6_c00001{bottom:434.365227pt;}
.y13d6_c00001{bottom:434.519467pt;}
.y983_c00001{bottom:435.240000pt;}
.ycb3_c00001{bottom:435.317333pt;}
.ycce_c00001{bottom:435.318667pt;}
.ycd7_c00001{bottom:435.320000pt;}
.y1021_c00001{bottom:435.398587pt;}
.y1b3_c00001{bottom:435.558427pt;}
.y184_c00001{bottom:435.559467pt;}
.y1a08_c00001{bottom:435.650213pt;}
.y7a5_c00001{bottom:436.200000pt;}
.yb6d_c00001{bottom:436.277333pt;}
.yee6_c00001{bottom:436.439467pt;}
.y43b_c00001{bottom:436.678213pt;}
.y17a6_c00001{bottom:436.839333pt;}
.y605_c00001{bottom:436.840000pt;}
.y1774_c00001{bottom:437.239467pt;}
.y1aba_c00001{bottom:437.316587pt;}
.yc3e_c00001{bottom:437.560000pt;}
.y28d_c00001{bottom:437.639467pt;}
.y1666_c00001{bottom:438.199467pt;}
.y1210_c00001{bottom:438.359467pt;}
.y13a_c00001{bottom:438.519467pt;}
.y13d9_c00001{bottom:438.839467pt;}
.y11c0_c00001{bottom:439.007067pt;}
.y4ad_c00001{bottom:439.086213pt;}
.y1ca6_c00001{bottom:439.190907pt;}
.y984_c00001{bottom:439.239467pt;}
.y139f_c00001{bottom:439.243467pt;}
.ycb4_c00001{bottom:439.319467pt;}
.y158f_c00001{bottom:439.402507pt;}
.ye61_c00001{bottom:439.568587pt;}
.y125b_c00001{bottom:439.639467pt;}
.y15cc_c00001{bottom:439.799333pt;}
.y1629_c00001{bottom:439.959333pt;}
.yba4_c00001{bottom:440.040000pt;}
.y19c7_c00001{bottom:440.119467pt;}
.yeb5_c00001{bottom:440.197573pt;}
.y116b_c00001{bottom:440.513547pt;}
.y13f1_c00001{bottom:440.519467pt;}
.y1933_c00001{bottom:440.607947pt;}
.y17c3_c00001{bottom:440.679333pt;}
.y15e0_c00001{bottom:440.679467pt;}
.y15c8_c00001{bottom:440.762373pt;}
.ya02_c00001{bottom:440.837333pt;}
.ya2c_c00001{bottom:440.838667pt;}
.y604_c00001{bottom:440.839333pt;}
.y1b5a_c00001{bottom:440.839467pt;}
.ya31_c00001{bottom:440.840000pt;}
.yaa6_c00001{bottom:440.920000pt;}
.y6f7_c00001{bottom:440.923467pt;}
.y501_c00001{bottom:441.007467pt;}
.y10ea_c00001{bottom:441.480000pt;}
.y75e_c00001{bottom:441.719467pt;}
.y801_c00001{bottom:441.723333pt;}
.yf74_c00001{bottom:441.879467pt;}
.y1ae1_c00001{bottom:441.957893pt;}
.y152c_c00001{bottom:441.959653pt;}
.y1514_c00001{bottom:441.962267pt;}
.y1182_c00001{bottom:442.021733pt;}
.ye3b_c00001{bottom:442.279467pt;}
.y16ed_c00001{bottom:442.439467pt;}
.y94f_c00001{bottom:442.757333pt;}
.y23c_c00001{bottom:442.758347pt;}
.y1311_c00001{bottom:442.919333pt;}
.y5ac_c00001{bottom:442.923467pt;}
.yd67_c00001{bottom:442.999467pt;}
.y8a7_c00001{bottom:443.079467pt;}
.y8a4_c00001{bottom:443.087467pt;}
.y1317_c00001{bottom:443.239467pt;}
.y1429_c00001{bottom:443.239600pt;}
.y28b_c00001{bottom:443.799333pt;}
.y1315_c00001{bottom:443.879333pt;}
.y12c0_c00001{bottom:444.038453pt;}
.y847_c00001{bottom:444.437333pt;}
.y86d_c00001{bottom:444.438667pt;}
.y1427_c00001{bottom:444.439467pt;}
.y87b_c00001{bottom:444.440000pt;}
.y8f0_c00001{bottom:444.519973pt;}
.y1a0a_c00001{bottom:444.522267pt;}
.y56d_c00001{bottom:444.530347pt;}
.y3f7_c00001{bottom:444.679467pt;}
.y3f4_c00001{bottom:444.682347pt;}
.y650_c00001{bottom:444.759333pt;}
.y64e_c00001{bottom:444.763333pt;}
.y9cc_c00001{bottom:444.839333pt;}
.yd25_c00001{bottom:444.840000pt;}
.y16b3_c00001{bottom:444.999333pt;}
.y1f5_c00001{bottom:445.000000pt;}
.y19c8_c00001{bottom:445.003467pt;}
.ybd9_c00001{bottom:445.397333pt;}
.y1c03_c00001{bottom:445.483333pt;}
.y1993_c00001{bottom:445.559333pt;}
.y172a_c00001{bottom:445.559467pt;}
.y1a72_c00001{bottom:445.637333pt;}
.y1a91_c00001{bottom:445.638667pt;}
.y1a98_c00001{bottom:445.640000pt;}
.y11e1_c00001{bottom:445.644907pt;}
.y182_c00001{bottom:446.040000pt;}
.y1abc_c00001{bottom:446.199467pt;}
.yb19_c00001{bottom:446.200000pt;}
.y387_c00001{bottom:446.527333pt;}
.y3b1_c00001{bottom:446.530213pt;}
.y6a5_c00001{bottom:446.686347pt;}
.y6f_c00001{bottom:446.760000pt;}
.y13dc_c00001{bottom:446.762347pt;}
.y1b5b_c00001{bottom:446.914160pt;}
.y129d_c00001{bottom:446.914427pt;}
.y1364_c00001{bottom:446.922480pt;}
.y503_c00001{bottom:447.159467pt;}
.y631_c00001{bottom:447.319467pt;}
.y1f6_c00001{bottom:447.479467pt;}
.y1b16_c00001{bottom:447.557333pt;}
.y1b32_c00001{bottom:447.558667pt;}
.y39_c00001{bottom:447.559467pt;}
.y1b3a_c00001{bottom:447.560000pt;}
.y14b6_c00001{bottom:447.639467pt;}
.y1a49_c00001{bottom:447.718267pt;}
.y1771_c00001{bottom:447.719467pt;}
.y1a44_c00001{bottom:447.722267pt;}
.y802_c00001{bottom:447.879333pt;}
.yc0_c00001{bottom:448.120000pt;}
.yf2b_c00001{bottom:448.197573pt;}
.y1361_c00001{bottom:448.199467pt;}
.y1815_c00001{bottom:448.519467pt;}
.yfa9_c00001{bottom:448.599467pt;}
.yf02_c00001{bottom:448.757333pt;}
.yf14_c00001{bottom:448.758667pt;}
.yf1a_c00001{bottom:448.760000pt;}
.yd24_c00001{bottom:448.839333pt;}
.yd8e_c00001{bottom:448.919333pt;}
.y8f6_c00001{bottom:448.998667pt;}
.y43a_c00001{bottom:448.999333pt;}
.y5ae_c00001{bottom:449.079467pt;}
.y11e3_c00001{bottom:449.159467pt;}
.yf5c_c00001{bottom:449.399333pt;}
.y1ab9_c00001{bottom:449.559467pt;}
.ydef_c00001{bottom:449.799333pt;}
.y1133_c00001{bottom:450.164827pt;}
.y1155_c00001{bottom:450.179467pt;}
.yac8_c00001{bottom:450.199467pt;}
.ydbe_c00001{bottom:450.359467pt;}
.y172d_c00001{bottom:450.439600pt;}
.ye12_c00001{bottom:450.683227pt;}
.ycef_c00001{bottom:450.830427pt;}
.y7a7_c00001{bottom:450.843467pt;}
.yfd3_c00001{bottom:451.235253pt;}
.y1556_c00001{bottom:451.239467pt;}
.y4ac_c00001{bottom:451.322213pt;}
.y17e2_c00001{bottom:451.479467pt;}
.y136_c00001{bottom:451.480000pt;}
.y1882_c00001{bottom:451.639467pt;}
.y1c8b_c00001{bottom:451.879333pt;}
.y10d9_c00001{bottom:452.117573pt;}
.y10be_c00001{bottom:452.204773pt;}
.y6a1_c00001{bottom:452.279467pt;}
.y1077_c00001{bottom:452.443013pt;}
.y1112_c00001{bottom:452.586667pt;}
.y389_c00001{bottom:452.602773pt;}
.y3b3_c00001{bottom:452.605653pt;}
.y152b_c00001{bottom:452.676853pt;}
.y1513_c00001{bottom:452.679467pt;}
.y1ae0_c00001{bottom:452.759333pt;}
.y6a7_c00001{bottom:452.762667pt;}
.y1259_c00001{bottom:453.079467pt;}
.y6f6_c00001{bottom:453.159467pt;}
.yb47_c00001{bottom:453.160000pt;}
.yc0d_c00001{bottom:453.240000pt;}
.y500_c00001{bottom:453.243467pt;}
.y195a_c00001{bottom:453.480000pt;}
.y1041_c00001{bottom:453.640000pt;}
.y1adc_c00001{bottom:453.640107pt;}
.y800_c00001{bottom:453.959333pt;}
.y1889_c00001{bottom:454.279600pt;}
.y17a3_c00001{bottom:454.439467pt;}
.y139d_c00001{bottom:454.839333pt;}
.y23b_c00001{bottom:455.079467pt;}
.y5ab_c00001{bottom:455.159467pt;}
.y1a09_c00001{bottom:455.239467pt;}
.y8a3_c00001{bottom:455.323467pt;}
.yc6c_c00001{bottom:455.400000pt;}
.y1a07_c00001{bottom:456.204773pt;}
.ya49_c00001{bottom:456.520000pt;}
.y1665_c00001{bottom:456.599467pt;}
.y56c_c00001{bottom:456.766347pt;}
.y2cd_c00001{bottom:456.918667pt;}
.yf49_c00001{bottom:456.919333pt;}
.y2ff_c00001{bottom:456.920000pt;}
.y64d_c00001{bottom:456.999333pt;}
.y3f3_c00001{bottom:457.003467pt;}
.yc0c_c00001{bottom:457.159467pt;}
.y13d8_c00001{bottom:457.239467pt;}
.y4ae_c00001{bottom:457.479467pt;}
.yb6c_c00001{bottom:458.119467pt;}
.ye2c_c00001{bottom:458.202133pt;}
.y1b7e_c00001{bottom:458.356933pt;}
.y1a48_c00001{bottom:458.435467pt;}
.y1a43_c00001{bottom:458.439467pt;}
.y19c6_c00001{bottom:458.519467pt;}
.y1888_c00001{bottom:458.599467pt;}
.y1590_c00001{bottom:458.602267pt;}
.y1936_c00001{bottom:458.603333pt;}
.y9cb_c00001{bottom:458.760000pt;}
.y386_c00001{bottom:458.763333pt;}
.y3b0_c00001{bottom:458.766213pt;}
.y6a4_c00001{bottom:458.922347pt;}
.y1b31_c00001{bottom:458.998347pt;}
.y1b15_c00001{bottom:459.002267pt;}
.y13db_c00001{bottom:459.083467pt;}
.y84c_c00001{bottom:459.085227pt;}
.y1363_c00001{bottom:459.158480pt;}
.y1b59_c00001{bottom:459.239467pt;}
.y603_c00001{bottom:459.399467pt;}
.y184b_c00001{bottom:459.400000pt;}
.y1996_c00001{bottom:459.643413pt;}
.y11bf_c00001{bottom:459.649467pt;}
.y158e_c00001{bottom:460.044907pt;}
.yee3_c00001{bottom:460.119467pt;}
.yf83_c00001{bottom:460.279467pt;}
.ya4a_c00001{bottom:460.519467pt;}
.y183_c00001{bottom:460.679467pt;}
.y1932_c00001{bottom:461.162507pt;}
.y12e6_c00001{bottom:461.239467pt;}
.y72_c00001{bottom:461.398347pt;}
.yd44_c00001{bottom:461.399333pt;}
.y17_c00001{bottom:461.399467pt;}
.y15c7_c00001{bottom:461.404773pt;}
.y10b5_c00001{bottom:461.481573pt;}
.y10ef_c00001{bottom:461.482133pt;}
.y8ef_c00001{bottom:462.439333pt;}
.y172c_c00001{bottom:462.675600pt;}
.y166f_c00001{bottom:462.682267pt;}
.ycf_c00001{bottom:462.839333pt;}
.yba3_c00001{bottom:462.840000pt;}
.y7a6_c00001{bottom:463.079467pt;}
.y16b2_c00001{bottom:463.399333pt;}
.y4ab_c00001{bottom:463.558213pt;}
.y1b7f_c00001{bottom:463.638533pt;}
.y1bb6_c00001{bottom:463.878000pt;}
.y1992_c00001{bottom:463.959333pt;}
.y1729_c00001{bottom:463.959467pt;}
.yac7_c00001{bottom:464.118667pt;}
.yaec_c00001{bottom:464.120000pt;}
.y18e6_c00001{bottom:464.278347pt;}
.y756_c00001{bottom:464.520000pt;}
.y1ca5_c00001{bottom:464.635227pt;}
.y1bb5_c00001{bottom:465.324773pt;}
.y4ff_c00001{bottom:465.479467pt;}
.ye8f_c00001{bottom:465.558587pt;}
.y17e4_c00001{bottom:465.563333pt;}
.y1a77_c00001{bottom:465.640107pt;}
.y1a46_c00001{bottom:466.119467pt;}
.y11e0_c00001{bottom:466.199467pt;}
.y138_c00001{bottom:466.203467pt;}
.y1360_c00001{bottom:466.599467pt;}
.y281_c00001{bottom:466.600000pt;}
.y18e5_c00001{bottom:466.924907pt;}
.y116a_c00001{bottom:467.392587pt;}
.yfa8_c00001{bottom:467.395253pt;}
.y12a1_c00001{bottom:467.483733pt;}
.y74_c00001{bottom:467.559467pt;}
.y8f5_c00001{bottom:467.560000pt;}
.y1233_c00001{bottom:467.563893pt;}
.yd8d_c00001{bottom:467.722187pt;}
.ye11_c00001{bottom:468.119467pt;}
.y17c2_c00001{bottom:468.279333pt;}
.y12d7_c00001{bottom:468.279467pt;}
.ydee_c00001{bottom:468.595387pt;}
.ycee_c00001{bottom:468.749787pt;}
.yf05_c00001{bottom:468.758587pt;}
.yfd2_c00001{bottom:468.759333pt;}
.y1181_c00001{bottom:468.827573pt;}
.ye2b_c00001{bottom:468.919333pt;}
.y287_c00001{bottom:468.999333pt;}
.ydbd_c00001{bottom:469.075387pt;}
.y56e_c00001{bottom:469.079467pt;}
.y56b_c00001{bottom:469.087467pt;}
.y3f2_c00001{bottom:469.239467pt;}
.y1020_c00001{bottom:469.319467pt;}
.yd23_c00001{bottom:469.637333pt;}
.yd30_c00001{bottom:469.638667pt;}
.y1555_c00001{bottom:469.639467pt;}
.yd37_c00001{bottom:469.640000pt;}
.y1b30_c00001{bottom:469.715547pt;}
.y1b14_c00001{bottom:469.719467pt;}
.y17e1_c00001{bottom:469.879467pt;}
.y1f3_c00001{bottom:470.200000pt;}
.y1935_c00001{bottom:470.839333pt;}
.y385_c00001{bottom:470.999333pt;}
.y3af_c00001{bottom:471.002213pt;}
.y982_c00001{bottom:471.078667pt;}
.y9a8_c00001{bottom:471.080000pt;}
.y146d_c00001{bottom:471.082187pt;}
.y1488_c00001{bottom:471.085013pt;}
.y6a3_c00001{bottom:471.158347pt;}
.y13da_c00001{bottom:471.319467pt;}
.y84b_c00001{bottom:471.406347pt;}
.y1362_c00001{bottom:471.479600pt;}
.yf47_c00001{bottom:471.480000pt;}
.y2cf_c00001{bottom:471.559467pt;}
.y1995_c00001{bottom:471.964533pt;}
.ya80_c00001{bottom:472.038667pt;}
.ya9b_c00001{bottom:472.040000pt;}
.y1426_c00001{bottom:472.117067pt;}
.y1398_c00001{bottom:472.120000pt;}
.y139_c00001{bottom:472.279467pt;}
.y1b7d_c00001{bottom:472.599467pt;}
.y10bd_c00001{bottom:472.759333pt;}
.y33a_c00001{bottom:472.833307pt;}
.y33e_c00001{bottom:472.839333pt;}
.y1c00_c00001{bottom:472.843467pt;}
.y1f4_c00001{bottom:472.919333pt;}
.yc0b_c00001{bottom:473.320000pt;}
.y166e_c00001{bottom:473.399467pt;}
.y195d_c00001{bottom:473.482507pt;}
.ye60_c00001{bottom:473.489467pt;}
.y1043_c00001{bottom:473.638587pt;}
.y71_c00001{bottom:473.719467pt;}
.y10b4_c00001{bottom:473.799333pt;}
.y146e_c00001{bottom:473.963333pt;}
.yeb4_c00001{bottom:474.118453pt;}
.y1adb_c00001{bottom:474.282507pt;}
.y176e_c00001{bottom:474.759333pt;}
.y14b2_c00001{bottom:474.759467pt;}
.y1664_c00001{bottom:474.999467pt;}
.y38_c00001{bottom:475.159467pt;}
.y13d7_c00001{bottom:475.639467pt;}
.y46c_c00001{bottom:475.643227pt;}
.y438_c00001{bottom:475.646347pt;}
.y4aa_c00001{bottom:475.879333pt;}
.y6f2_c00001{bottom:475.960000pt;}
.y14f5_c00001{bottom:476.439467pt;}
.y9ca_c00001{bottom:476.680000pt;}
.y1a06_c00001{bottom:476.759333pt;}
.y7fb_c00001{bottom:476.760000pt;}
.y1132_c00001{bottom:476.970667pt;}
.y1154_c00001{bottom:476.985307pt;}
.y234_c00001{bottom:477.797333pt;}
.y253_c00001{bottom:477.798667pt;}
.y17e3_c00001{bottom:477.799333pt;}
.y258_c00001{bottom:477.800000pt;}
.y12bf_c00001{bottom:477.959333pt;}
.y137_c00001{bottom:478.439467pt;}
.y94d_c00001{bottom:478.600000pt;}
.yf73_c00001{bottom:478.679467pt;}
.y16eb_c00001{bottom:478.919333pt;}
.y759_c00001{bottom:479.162347pt;}
.y184e_c00001{bottom:479.410347pt;}
.y1111_c00001{bottom:479.465707pt;}
.yd66_c00001{bottom:479.799467pt;}
.y647_c00001{bottom:479.800000pt;}
.y11be_c00001{bottom:480.204027pt;}
.y18b4_c00001{bottom:480.518213pt;}
.y602_c00001{bottom:480.599467pt;}
.y129c_c00001{bottom:480.835307pt;}
.y1093_c00001{bottom:481.000000pt;}
.y8a1_c00001{bottom:481.006213pt;}
.y286_c00001{bottom:481.239707pt;}
.ybd5_c00001{bottom:481.240000pt;}
.y56a_c00001{bottom:481.323467pt;}
.y414_c00001{bottom:481.359467pt;}
.y16b1_c00001{bottom:481.799333pt;}
.y1931_c00001{bottom:481.804907pt;}
.y15c6_c00001{bottom:481.959333pt;}
.y10ee_c00001{bottom:482.036693pt;}
.yb17_c00001{bottom:482.040000pt;}
.yf2a_c00001{bottom:482.118453pt;}
.y64a_c00001{bottom:482.206213pt;}
.y1991_c00001{bottom:482.359333pt;}
.y1728_c00001{bottom:482.359467pt;}
.y383_c00001{bottom:482.520000pt;}
.y1269_c00001{bottom:482.597333pt;}
.y127e_c00001{bottom:482.598667pt;}
.y94e_c00001{bottom:482.599467pt;}
.y1284_c00001{bottom:482.600000pt;}
.y14b5_c00001{bottom:482.686213pt;}
.y1bb4_c00001{bottom:483.399467pt;}
.y6a2_c00001{bottom:483.479467pt;}
.y180_c00001{bottom:483.480000pt;}
.y84d_c00001{bottom:483.639467pt;}
.y84a_c00001{bottom:483.642347pt;}
.yeb6_c00001{bottom:484.359467pt;}
.yefd_c00001{bottom:484.682267pt;}
.y384_c00001{bottom:484.919333pt;}
.yfa7_c00001{bottom:484.919467pt;}
.ybd8_c00001{bottom:485.233307pt;}
.ybd4_c00001{bottom:485.239467pt;}
.yd8c_c00001{bottom:485.319467pt;}
.y19c3_c00001{bottom:485.559333pt;}
.ycc_c00001{bottom:485.640000pt;}
.y79e_c00001{bottom:485.880000pt;}
.yb18_c00001{bottom:485.959333pt;}
.y10d8_c00001{bottom:486.038453pt;}
.yded_c00001{bottom:486.119467pt;}
.y8ed_c00001{bottom:486.120000pt;}
.yf5b_c00001{bottom:486.199333pt;}
.y1a76_c00001{bottom:486.282507pt;}
.y1076_c00001{bottom:486.363893pt;}
.yba2_c00001{bottom:486.437333pt;}
.ybb5_c00001{bottom:486.438667pt;}
.ybbc_c00001{bottom:486.440000pt;}
.y1529_c00001{bottom:486.597493pt;}
.ydbc_c00001{bottom:486.599467pt;}
.y1bff_c00001{bottom:486.679467pt;}
.y16b5_c00001{bottom:486.686933pt;}
.y1209_c00001{bottom:486.840000pt;}
.y1c02_c00001{bottom:486.919333pt;}
.ye10_c00001{bottom:486.922187pt;}
.yced_c00001{bottom:487.313307pt;}
.y152a_c00001{bottom:487.318213pt;}
.y1512_c00001{bottom:487.320187pt;}
.y1c3e_c00001{bottom:487.359147pt;}
.y10ba_c00001{bottom:487.397333pt;}
.yfd1_c00001{bottom:487.475253pt;}
.y18e4_c00001{bottom:487.479467pt;}
.y158c_c00001{bottom:487.722267pt;}
.y46b_c00001{bottom:487.879227pt;}
.y437_c00001{bottom:487.882347pt;}
.y1234_c00001{bottom:488.039333pt;}
.y17e0_c00001{bottom:488.279467pt;}
.y1250_c00001{bottom:488.280000pt;}
.y4f9_c00001{bottom:488.520000pt;}
.y1c8a_c00001{bottom:488.679333pt;}
.y1b58_c00001{bottom:488.762400pt;}
.y12f1_c00001{bottom:488.839467pt;}
.y13fe_c00001{bottom:488.999333pt;}
.y16_c00001{bottom:488.999467pt;}
.yf06_c00001{bottom:489.319467pt;}
.y33d_c00001{bottom:489.480000pt;}
.y1310_c00001{bottom:489.482187pt;}
.y1332_c00001{bottom:489.483893pt;}
.y1078_c00001{bottom:489.879333pt;}
.y1ca4_c00001{bottom:489.918507pt;}
.y8ec_c00001{bottom:490.119467pt;}
.y1196_c00001{bottom:490.198587pt;}
.y5a8_c00001{bottom:490.200000pt;}
.yba1_c00001{bottom:490.359467pt;}
.y11c1_c00001{bottom:490.439467pt;}
.y339_c00001{bottom:490.679467pt;}
.y6f4_c00001{bottom:490.683333pt;}
.ye32_c00001{bottom:490.757333pt;}
.yc6b_c00001{bottom:491.237333pt;}
.yc8a_c00001{bottom:491.238667pt;}
.yc95_c00001{bottom:491.240000pt;}
.y146c_c00001{bottom:491.319467pt;}
.y1487_c00001{bottom:491.322293pt;}
.y1a03_c00001{bottom:491.400000pt;}
.y195f_c00001{bottom:491.478213pt;}
.y75a_c00001{bottom:491.479467pt;}
.y758_c00001{bottom:491.483467pt;}
.y7fe_c00001{bottom:491.487333pt;}
.y181_c00001{bottom:492.039333pt;}
.y3ed_c00001{bottom:492.040000pt;}
.y139b_c00001{bottom:492.122507pt;}
.yf2c_c00001{bottom:492.359467pt;}
.ya48_c00001{bottom:492.360000pt;}
.y1425_c00001{bottom:492.439467pt;}
.y12ba_c00001{bottom:492.520000pt;}
.y237_c00001{bottom:492.523333pt;}
.y1885_c00001{bottom:492.759467pt;}
.y18b3_c00001{bottom:492.839333pt;}
.y981_c00001{bottom:492.919333pt;}
.y176d_c00001{bottom:493.159333pt;}
.y14b1_c00001{bottom:493.159467pt;}
.y8a0_c00001{bottom:493.242213pt;}
.ya7f_c00001{bottom:493.397333pt;}
.ya91_c00001{bottom:493.398667pt;}
.y1663_c00001{bottom:493.399467pt;}
.ya9a_c00001{bottom:493.400000pt;}
.yc3d_c00001{bottom:493.480000pt;}
.y569_c00001{bottom:493.559467pt;}
.y285_c00001{bottom:493.571467pt;}
.y69f_c00001{bottom:493.960000pt;}
.y18b2_c00001{bottom:494.039467pt;}
.y46d_c00001{bottom:494.039787pt;}
.y439_c00001{bottom:494.042907pt;}
.y1044_c00001{bottom:494.121467pt;}
.y195c_c00001{bottom:494.124907pt;}
.y1169_c00001{bottom:494.198427pt;}
.y2ca_c00001{bottom:494.357333pt;}
.y2fa_c00001{bottom:494.358667pt;}
.y2fe_c00001{bottom:494.360000pt;}
.y649_c00001{bottom:494.527333pt;}
.y9c8_c00001{bottom:494.597333pt;}
.y9e9_c00001{bottom:494.598667pt;}
.y9f1_c00001{bottom:494.600000pt;}
.y1ada_c00001{bottom:494.837067pt;}
.y12d_c00001{bottom:494.915467pt;}
.y14b4_c00001{bottom:494.922213pt;}
.y1a79_c00001{bottom:495.162133pt;}
.yc6a_c00001{bottom:495.239467pt;}
.yefc_c00001{bottom:495.399467pt;}
.y135e_c00001{bottom:495.479333pt;}
.y1180_c00001{bottom:495.706613pt;}
.y849_c00001{bottom:495.878347pt;}
.y17c1_c00001{bottom:495.879333pt;}
.y12d6_c00001{bottom:495.879467pt;}
.y1f0_c00001{bottom:495.880000pt;}
.y16e6_c00001{bottom:496.200000pt;}
.y6c_c00001{bottom:496.440000pt;}
.y1552_c00001{bottom:496.679467pt;}
.y6f5_c00001{bottom:496.759333pt;}
.yf82_c00001{bottom:497.079467pt;}
.y1850_c00001{bottom:497.403467pt;}
.y1770_c00001{bottom:498.039733pt;}
.yd43_c00001{bottom:498.199333pt;}
.y17f_c00001{bottom:498.199467pt;}
.y1b2_c00001{bottom:498.200427pt;}
.y1f2_c00001{bottom:498.278347pt;}
.y1b2e_c00001{bottom:498.432027pt;}
.y1b12_c00001{bottom:498.435227pt;}
.y158b_c00001{bottom:498.439467pt;}
.y9c9_c00001{bottom:498.599467pt;}
.y4a7_c00001{bottom:498.600000pt;}
.y238_c00001{bottom:498.679467pt;}
.y5a9_c00001{bottom:498.759333pt;}
.y16b4_c00001{bottom:498.922933pt;}
.y8a2_c00001{bottom:499.402773pt;}
.ye8e_c00001{bottom:499.479467pt;}
.yac6_c00001{bottom:499.878667pt;}
.yaeb_c00001{bottom:499.880000pt;}
.y184d_c00001{bottom:499.964907pt;}
.y16b0_c00001{bottom:500.199333pt;}
.y46a_c00001{bottom:500.200347pt;}
.y436_c00001{bottom:500.203467pt;}
.yce_c00001{bottom:500.279467pt;}
.y135f_c00001{bottom:500.358347pt;}
.y1c3d_c00001{bottom:500.403787pt;}
.y1a90_c00001{bottom:500.518187pt;}
.y1a71_c00001{bottom:500.519467pt;}
.y179e_c00001{bottom:500.523467pt;}
.y7a2_c00001{bottom:500.606347pt;}
.y1bb3_c00001{bottom:500.680000pt;}
.y11bd_c00001{bottom:500.758587pt;}
.y1990_c00001{bottom:500.759333pt;}
.y1096_c00001{bottom:500.996187pt;}
.y4a8_c00001{bottom:501.079467pt;}
.y11d7_c00001{bottom:501.400000pt;}
.y129b_c00001{bottom:501.477707pt;}
.y1232_c00001{bottom:501.484773pt;}
.y5ff_c00001{bottom:501.779947pt;}
.y5fb_c00001{bottom:501.794587pt;}
.y601_c00001{bottom:501.799333pt;}
.y18dc_c00001{bottom:502.038667pt;}
.y1902_c00001{bottom:502.040000pt;}
.y1930_c00001{bottom:502.359467pt;}
.y6a0_c00001{bottom:502.519467pt;}
.y126a_c00001{bottom:502.599467pt;}
.yf04_c00001{bottom:502.679467pt;}
.y37_c00001{bottom:502.759467pt;}
.y6f3_c00001{bottom:502.919333pt;}
.ybd7_c00001{bottom:503.079467pt;}
.y4fc_c00001{bottom:503.162347pt;}
.yfa6_c00001{bottom:503.319467pt;}
.y179d_c00001{bottom:503.476933pt;}
.y17b6_c00001{bottom:503.479627pt;}
.y757_c00001{bottom:503.719467pt;}
.y7fd_c00001{bottom:503.723333pt;}
.y195e_c00001{bottom:503.799333pt;}
.y1131_c00001{bottom:503.849707pt;}
.y1153_c00001{bottom:503.864347pt;}
.y19c2_c00001{bottom:503.959333pt;}
.yd8b_c00001{bottom:504.035387pt;}
.ye62_c00001{bottom:504.279467pt;}
.y15ef_c00001{bottom:504.282133pt;}
.ye0f_c00001{bottom:504.519467pt;}
.y101a_c00001{bottom:504.520000pt;}
.y236_c00001{bottom:504.759333pt;}
.y1006_c00001{bottom:504.915387pt;}
.ydec_c00001{bottom:504.922187pt;}
.y6e_c00001{bottom:504.999333pt;}
.y135_c00001{bottom:505.083467pt;}
.y1b7b_c00001{bottom:505.239467pt;}
.y1528_c00001{bottom:505.317493pt;}
.y1511_c00001{bottom:505.319467pt;}
.yfec_c00001{bottom:505.395253pt;}
.ydbb_c00001{bottom:505.402053pt;}
.y89f_c00001{bottom:505.478213pt;}
.y8eb_c00001{bottom:505.480000pt;}
.y288_c00001{bottom:505.803093pt;}
.y284_c00001{bottom:505.807467pt;}
.y1a78_c00001{bottom:505.879333pt;}
.yd22_c00001{bottom:506.118667pt;}
.yd36_c00001{bottom:506.120000pt;}
.y1110_c00001{bottom:506.344747pt;}
.y1623_c00001{bottom:506.450347pt;}
.y3ef_c00001{bottom:506.678213pt;}
.y648_c00001{bottom:506.763333pt;}
.y1a75_c00001{bottom:506.837067pt;}
.y980_c00001{bottom:506.837333pt;}
.y120d_c00001{bottom:506.837707pt;}
.y99f_c00001{bottom:506.838667pt;}
.y9a7_c00001{bottom:506.840000pt;}
.y1887_c00001{bottom:506.846667pt;}
.y1075_c00001{bottom:506.918453pt;}
.ycb2_c00001{bottom:506.920000pt;}
.y1c89_c00001{bottom:507.079333pt;}
.y14b3_c00001{bottom:507.243333pt;}
.ye5f_c00001{bottom:507.410347pt;}
.y1042_c00001{bottom:507.559467pt;}
.yb6a_c00001{bottom:507.880000pt;}
.yeb3_c00001{bottom:508.039333pt;}
.y848_c00001{bottom:508.199467pt;}
.y1255_c00001{bottom:508.275813pt;}
.y33c_c00001{bottom:508.598827pt;}
.yede_c00001{bottom:508.600000pt;}
.y14f4_c00001{bottom:508.677147pt;}
.y12c_c00001{bottom:508.679467pt;}
.y19c5_c00001{bottom:508.839733pt;}
.y750_c00001{bottom:508.915467pt;}
.y2cc_c00001{bottom:508.998347pt;}
.yc0a_c00001{bottom:509.160000pt;}
.y184f_c00001{bottom:509.639467pt;}
.y130f_c00001{bottom:509.719467pt;}
.y1331_c00001{bottom:509.721173pt;}
.yd21_c00001{bottom:510.039333pt;}
.y1a05_c00001{bottom:510.042133pt;}
.y139c_c00001{bottom:510.118347pt;}
.y1ab8_c00001{bottom:510.199467pt;}
.y176f_c00001{bottom:510.275733pt;}
.y1f1_c00001{bottom:510.599467pt;}
.y1197_c00001{bottom:510.681333pt;}
.ye37_c00001{bottom:510.756827pt;}
.y1bb2_c00001{bottom:510.839467pt;}
.y1bd1_c00001{bottom:510.843893pt;}
.y1884_c00001{bottom:511.159467pt;}
.y3ae_c00001{bottom:511.313867pt;}
.y1a41_c00001{bottom:511.315227pt;}
.y382_c00001{bottom:511.318347pt;}
.y1b7c_c00001{bottom:511.322133pt;}
.ycec_c00001{bottom:511.396107pt;}
.yc68_c00001{bottom:511.397333pt;}
.yc89_c00001{bottom:511.398667pt;}
.y1a04_c00001{bottom:511.399467pt;}
.yc94_c00001{bottom:511.400000pt;}
.y176c_c00001{bottom:511.559333pt;}
.y14b0_c00001{bottom:511.559467pt;}
.y1bf1_c00001{bottom:511.560000pt;}
.yf48_c00001{bottom:511.799333pt;}
.y1662_c00001{bottom:511.799467pt;}
.yb6b_c00001{bottom:511.879333pt;}
.y17e_c00001{bottom:511.883467pt;}
.y1743_c00001{bottom:512.115413pt;}
.y1726_c00001{bottom:512.117067pt;}
.y469_c00001{bottom:512.436347pt;}
.y435_c00001{bottom:512.439467pt;}
.y12bd_c00001{bottom:512.517707pt;}
.ya01_c00001{bottom:512.520000pt;}
.y139a_c00001{bottom:512.764907pt;}
.y3f0_c00001{bottom:512.839333pt;}
.y7a1_c00001{bottom:512.842347pt;}
.yc07_c00001{bottom:513.159467pt;}
.y1c3c_c00001{bottom:513.363307pt;}
.y135d_c00001{bottom:513.879333pt;}
.y1811_c00001{bottom:513.959333pt;}
.ye8a_c00001{bottom:514.038667pt;}
.y33b_c00001{bottom:514.118107pt;}
.ya47_c00001{bottom:514.199467pt;}
.y94c_c00001{bottom:514.360000pt;}
.y1bfc_c00001{bottom:514.519467pt;}
.y195b_c00001{bottom:514.679467pt;}
.ya7e_c00001{bottom:514.680000pt;}
.y15ee_c00001{bottom:514.999333pt;}
.y13d3_c00001{bottom:514.999973pt;}
.y1551_c00001{bottom:515.079467pt;}
.y1727_c00001{bottom:515.083333pt;}
.y1ca3_c00001{bottom:515.201787pt;}
.yc69_c00001{bottom:515.319467pt;}
.y1b2f_c00001{bottom:515.392347pt;}
.y1b13_c00001{bottom:515.395547pt;}
.y5a4_c00001{bottom:515.400000pt;}
.y4fd_c00001{bottom:515.479467pt;}
.y4fb_c00001{bottom:515.483467pt;}
.y1589_c00001{bottom:515.800000pt;}
.y10ed_c00001{bottom:515.957573pt;}
.y7fc_c00001{bottom:515.959333pt;}
.yf29_c00001{bottom:516.039333pt;}
.y16e8_c00001{bottom:516.204773pt;}
.y566_c00001{bottom:516.360000pt;}
.y13ff_c00001{bottom:516.439333pt;}
.y12f8_c00001{bottom:516.439467pt;}
.y1190_c00001{bottom:516.442267pt;}
.y1408_c00001{bottom:516.599333pt;}
.y15_c00001{bottom:516.599467pt;}
.y1b53_c00001{bottom:516.760000pt;}
.y1b2d_c00001{bottom:517.236267pt;}
.y1b11_c00001{bottom:517.239467pt;}
.y134_c00001{bottom:517.319467pt;}
.y1468_c00001{bottom:517.479467pt;}
.y89e_c00001{bottom:517.799333pt;}
.yac4_c00001{bottom:517.800000pt;}
.y283_c00001{bottom:518.043467pt;}
.y16af_c00001{bottom:518.599333pt;}
.y1422_c00001{bottom:518.599467pt;}
.y3ee_c00001{bottom:518.999333pt;}
.y1886_c00001{bottom:519.082667pt;}
.y699_c00001{bottom:519.160000pt;}
.y5fe_c00001{bottom:519.699307pt;}
.y5fa_c00001{bottom:519.713947pt;}
.y14f2_c00001{bottom:519.804907pt;}
.y10d7_c00001{bottom:519.959333pt;}
.y184c_c00001{bottom:520.519467pt;}
.y14f3_c00001{bottom:520.913147pt;}
.y19c4_c00001{bottom:521.075733pt;}
.y1168_c00001{bottom:521.077467pt;}
.y2cb_c00001{bottom:521.319467pt;}
.y11dc_c00001{bottom:521.396827pt;}
.y1921_c00001{bottom:521.479467pt;}
.yd8a_c00001{bottom:521.559467pt;}
.y1095_c00001{bottom:521.638587pt;}
.y68_c00001{bottom:521.640000pt;}
.yac5_c00001{bottom:521.799333pt;}
.y1231_c00001{bottom:522.039333pt;}
.y18e1_c00001{bottom:522.050853pt;}
.yfa5_c00001{bottom:522.115387pt;}
.y19c1_c00001{bottom:522.359333pt;}
.y1005_c00001{bottom:522.439467pt;}
.ydeb_c00001{bottom:522.519467pt;}
.y117f_c00001{bottom:522.585653pt;}
.y74f_c00001{bottom:522.679467pt;}
.yba0_c00001{bottom:522.918667pt;}
.yfeb_c00001{bottom:522.919333pt;}
.ybbb_c00001{bottom:522.920000pt;}
.ydba_c00001{bottom:522.999333pt;}
.yc8_c00001{bottom:523.080000pt;}
.ye0e_c00001{bottom:523.315253pt;}
.y12d5_c00001{bottom:523.479467pt;}
.y3ad_c00001{bottom:523.634987pt;}
.y381_c00001{bottom:523.639467pt;}
.yfd0_c00001{bottom:523.795387pt;}
.y179c_c00001{bottom:523.799333pt;}
.y4a6_c00001{bottom:523.800000pt;}
.y17b5_c00001{bottom:523.802027pt;}
.y16ea_c00001{bottom:523.883467pt;}
.y8ea_c00001{bottom:524.040000pt;}
.y17d_c00001{bottom:524.119467pt;}
.y431_c00001{bottom:524.440000pt;}
.y101d_c00001{bottom:524.517707pt;}
.y97f_c00001{bottom:524.760000pt;}
.y7a0_c00001{bottom:525.078347pt;}
.y1c88_c00001{bottom:525.479333pt;}
.y146b_c00001{bottom:525.487333pt;}
.y1625_c00001{bottom:525.642267pt;}
.y15a7_c00001{bottom:525.878587pt;}
.y1588_c00001{bottom:525.879467pt;}
.y10f0_c00001{bottom:526.199467pt;}
.y1c3b_c00001{bottom:526.407947pt;}
.y751_c00001{bottom:526.517333pt;}
.y1424_c00001{bottom:526.522347pt;}
.y13d5_c00001{bottom:526.927467pt;}
.y1622_c00001{bottom:527.004907pt;}
.ycb1_c00001{bottom:527.080000pt;}
.y118f_c00001{bottom:527.159467pt;}
.y15c2_c00001{bottom:527.239333pt;}
.y1a74_c00001{bottom:527.479467pt;}
.y1ab2_c00001{bottom:527.560000pt;}
.y4fa_c00001{bottom:527.719467pt;}
.ye5e_c00001{bottom:527.964907pt;}
.ya46_c00001{bottom:528.120000pt;}
.y1a42_c00001{bottom:528.275547pt;}
.yee0_c00001{bottom:528.598587pt;}
.y97e_c00001{bottom:528.759333pt;}
.y89c_c00001{bottom:528.760000pt;}
.y754_c00001{bottom:528.922347pt;}
.yc3a_c00001{bottom:529.240000pt;}
.y12e_c00001{bottom:529.320000pt;}
.y1883_c00001{bottom:529.559467pt;}
.y1bd0_c00001{bottom:529.563893pt;}
.y6f0_c00001{bottom:529.566347pt;}
.y176b_c00001{bottom:529.959333pt;}
.y1a40_c00001{bottom:530.119467pt;}
.y5a6_c00001{bottom:530.123467pt;}
.y6b_c00001{bottom:530.199467pt;}
.y282_c00001{bottom:530.279467pt;}
.y9c6_c00001{bottom:530.357333pt;}
.y9e8_c00001{bottom:530.358667pt;}
.y150e_c00001{bottom:530.359333pt;}
.y36_c00001{bottom:530.359467pt;}
.y9f0_c00001{bottom:530.360000pt;}
.yaa5_c00001{bottom:530.440000pt;}
.y198d_c00001{bottom:530.602053pt;}
.y1130_c00001{bottom:530.728747pt;}
.y1152_c00001{bottom:530.743387pt;}
.y32e_c00001{bottom:530.838667pt;}
.yd35_c00001{bottom:530.840000pt;}
.y83f_c00001{bottom:530.920000pt;}
.yc09_c00001{bottom:531.005627pt;}
.y565_c00001{bottom:531.087467pt;}
.y252_c00001{bottom:531.560053pt;}
.y233_c00001{bottom:531.562347pt;}
.y600_c00001{bottom:531.639467pt;}
.y1097_c00001{bottom:531.799333pt;}
.y94b_c00001{bottom:532.277333pt;}
.y1810_c00001{bottom:532.359333pt;}
.y1742_c00001{bottom:532.437813pt;}
.y1725_c00001{bottom:532.439467pt;}
.y1c32_c00001{bottom:532.443467pt;}
.y110f_c00001{bottom:533.150587pt;}
.yc39_c00001{bottom:533.239467pt;}
.yc3c_c00001{bottom:533.240107pt;}
.y1399_c00001{bottom:533.319467pt;}
.y1ec_c00001{bottom:533.320000pt;}
.y1550_c00001{bottom:533.479467pt;}
.y198e_c00001{bottom:533.555467pt;}
.y17dd_c00001{bottom:533.719467pt;}
.yf81_c00001{bottom:533.879467pt;}
.y69d_c00001{bottom:533.886347pt;}
.y16e5_c00001{bottom:534.039333pt;}
.ye8c_c00001{bottom:534.044907pt;}
.y9c7_c00001{bottom:534.359467pt;}
.y11bc_c00001{bottom:534.679467pt;}
.ybd3_c00001{bottom:534.918667pt;}
.yd42_c00001{bottom:534.999333pt;}
.yd54_c00001{bottom:534.999467pt;}
.y17c_c00001{bottom:535.320000pt;}
.y37c_c00001{bottom:535.397333pt;}
.y129a_c00001{bottom:535.398587pt;}
.y3ac_c00001{bottom:535.398667pt;}
.y3c5_c00001{bottom:535.400000pt;}
.yceb_c00001{bottom:535.478907pt;}
.y13d2_c00001{bottom:535.642373pt;}
.yb15_c00001{bottom:535.720000pt;}
.y1467_c00001{bottom:535.879467pt;}
.y130c_c00001{bottom:535.959467pt;}
.ya7d_c00001{bottom:536.040000pt;}
.y16e9_c00001{bottom:536.119467pt;}
.y5a7_c00001{bottom:536.279467pt;}
.y1624_c00001{bottom:536.359467pt;}
.y122a_c00001{bottom:536.597333pt;}
.y1242_c00001{bottom:536.598667pt;}
.y1246_c00001{bottom:536.600000pt;}
.y1b55_c00001{bottom:536.757067pt;}
.y16e7_c00001{bottom:536.759333pt;}
.y4a1_c00001{bottom:536.760000pt;}
.y16ae_c00001{bottom:536.999333pt;}
.y1421_c00001{bottom:536.999467pt;}
.y567_c00001{bottom:537.159467pt;}
.y1695_c00001{bottom:537.165547pt;}
.y89d_c00001{bottom:537.319467pt;}
.y79f_c00001{bottom:537.399467pt;}
.y5fd_c00001{bottom:537.545467pt;}
.y1924_c00001{bottom:537.557333pt;}
.y5f9_c00001{bottom:537.560107pt;}
.y1ad7_c00001{bottom:537.719467pt;}
.y146a_c00001{bottom:537.723333pt;}
.yca_c00001{bottom:537.803333pt;}
.yf00_c00001{bottom:537.880000pt;}
.y10bc_c00001{bottom:538.199467pt;}
.y7f8_c00001{bottom:538.757333pt;}
.y1423_c00001{bottom:538.843467pt;}
.y433_c00001{bottom:539.078347pt;}
.y13d4_c00001{bottom:539.163467pt;}
.y1b79_c00001{bottom:539.319467pt;}
.y1c3a_c00001{bottom:539.452587pt;}
.y18b0_c00001{bottom:539.559333pt;}
.yfa4_c00001{bottom:539.639467pt;}
.yb16_c00001{bottom:539.719467pt;}
.yf45_c00001{bottom:539.958667pt;}
.yf4f_c00001{bottom:539.960000pt;}
.y14f1_c00001{bottom:540.359467pt;}
.yd89_c00001{bottom:540.362053pt;}
.y1ca2_c00001{bottom:540.485067pt;}
.y4a5_c00001{bottom:540.519467pt;}
.y120c_c00001{bottom:540.758587pt;}
.y19c0_c00001{bottom:540.759333pt;}
.ye0d_c00001{bottom:540.839333pt;}
.y753_c00001{bottom:541.158347pt;}
.y1004_c00001{bottom:541.235253pt;}
.ydea_c00001{bottom:541.315253pt;}
.yfcf_c00001{bottom:541.319467pt;}
.y135c_c00001{bottom:541.562480pt;}
.yfea_c00001{bottom:541.715387pt;}
.y3da_c00001{bottom:541.720000pt;}
.ydb9_c00001{bottom:541.795387pt;}
.y641_c00001{bottom:541.800000pt;}
.y1ee_c00001{bottom:541.879333pt;}
.y6ef_c00001{bottom:541.887467pt;}
.y1bfb_c00001{bottom:542.119467pt;}
.y1254_c00001{bottom:542.196693pt;}
.y1b0e_c00001{bottom:542.199333pt;}
.y5a5_c00001{bottom:542.359467pt;}
.y8e8_c00001{bottom:542.597333pt;}
.y929_c00001{bottom:542.598667pt;}
.y97d_c00001{bottom:542.680000pt;}
.y18e0_c00001{bottom:542.693253pt;}
.y564_c00001{bottom:543.323467pt;}
.y1c74_c00001{bottom:543.399467pt;}
.y89b_c00001{bottom:543.479467pt;}
.yb68_c00001{bottom:543.640000pt;}
.y1c87_c00001{bottom:543.799333pt;}
.ycb_c00001{bottom:543.879333pt;}
.y251_c00001{bottom:543.881173pt;}
.y232_c00001{bottom:543.883467pt;}
.y132_c00001{bottom:543.962347pt;}
.y2c8_c00001{bottom:544.038667pt;}
.y12e5_c00001{bottom:544.039467pt;}
.y2fd_c00001{bottom:544.040000pt;}
.y1407_c00001{bottom:544.199333pt;}
.y14_c00001{bottom:544.199467pt;}
.y120e_c00001{bottom:544.359467pt;}
.y18b1_c00001{bottom:544.443467pt;}
.y15a6_c00001{bottom:544.598587pt;}
.y1587_c00001{bottom:544.599467pt;}
.ye36_c00001{bottom:544.677707pt;}
.y15ed_c00001{bottom:544.762267pt;}
.y1844_c00001{bottom:545.079467pt;}
.y434_c00001{bottom:545.239467pt;}
.y845_c00001{bottom:545.650347pt;}
.y1b57_c00001{bottom:545.722267pt;}
.y15c1_c00001{bottom:545.959333pt;}
.y69c_c00001{bottom:546.122347pt;}
.yb9b_c00001{bottom:546.437333pt;}
.y12bc_c00001{bottom:546.438587pt;}
.ybb4_c00001{bottom:546.438667pt;}
.ybba_c00001{bottom:546.440000pt;}
.y65_c00001{bottom:546.840000pt;}
.yc65_c00001{bottom:547.157333pt;}
.yc87_c00001{bottom:547.158667pt;}
.yc92_c00001{bottom:547.160000pt;}
.y755_c00001{bottom:547.318907pt;}
.y1a3a_c00001{bottom:547.397333pt;}
.y1621_c00001{bottom:547.559467pt;}
.yb69_c00001{bottom:547.639467pt;}
.y191e_c00001{bottom:547.719467pt;}
.y1167_c00001{bottom:547.956507pt;}
.y6f1_c00001{bottom:547.962907pt;}
.y17b_c00001{bottom:548.280000pt;}
.y1953_c00001{bottom:548.439467pt;}
.ye5d_c00001{bottom:548.519467pt;}
.y1661_c00001{bottom:548.599467pt;}
.y150d_c00001{bottom:548.679333pt;}
.y1554_c00001{bottom:548.762267pt;}
.ycb0_c00001{bottom:548.919333pt;}
.yc08_c00001{bottom:548.924987pt;}
.yee1_c00001{bottom:549.155867pt;}
.y117e_c00001{bottom:549.391493pt;}
.y799_c00001{bottom:549.479467pt;}
.y14ae_c00001{bottom:549.639467pt;}
.y10ec_c00001{bottom:549.878453pt;}
.y1469_c00001{bottom:549.959333pt;}
.y11d0_c00001{bottom:549.962267pt;}
.yc9_c00001{bottom:550.039333pt;}
.y37f_c00001{bottom:550.042347pt;}
.y94a_c00001{bottom:550.200000pt;}
.yb9f_c00001{bottom:550.433947pt;}
.y4f6_c00001{bottom:550.517333pt;}
.y528_c00001{bottom:550.518667pt;}
.y539_c00001{bottom:550.520000pt;}
.y180f_c00001{bottom:550.759333pt;}
.y198c_c00001{bottom:550.839333pt;}
.y12d4_c00001{bottom:550.919467pt;}
.y17c0_c00001{bottom:551.079333pt;}
.y13f0_c00001{bottom:551.079467pt;}
.yc3b_c00001{bottom:551.159467pt;}
.yc67_c00001{bottom:551.160107pt;}
.y432_c00001{bottom:551.399467pt;}
.y336_c00001{bottom:551.477333pt;}
.y154f_c00001{bottom:551.879467pt;}
.y135b_c00001{bottom:552.039333pt;}
.y17dc_c00001{bottom:552.119467pt;}
.yf72_c00001{bottom:552.199467pt;}
.y69e_c00001{bottom:552.282907pt;}
.y4a4_c00001{bottom:552.437333pt;}
.y1c39_c00001{bottom:552.497227pt;}
.yd20_c00001{bottom:552.680107pt;}
.y333_c00001{bottom:552.680747pt;}
.y32d_c00001{bottom:552.681387pt;}
.y5fc_c00001{bottom:552.829627pt;}
.y4f8_c00001{bottom:552.923467pt;}
.y1b7a_c00001{bottom:553.082533pt;}
.y14ad_c00001{bottom:553.162187pt;}
.yd65_c00001{bottom:553.399467pt;}
.y752_c00001{bottom:553.479467pt;}
.yac2_c00001{bottom:553.637333pt;}
.yae1_c00001{bottom:553.638667pt;}
.yaea_c00001{bottom:553.640000pt;}
.y899_c00001{bottom:553.960000pt;}
.y6ee_c00001{bottom:554.123467pt;}
.y7f7_c00001{bottom:554.125227pt;}
.y949_c00001{bottom:554.199467pt;}
.y1466_c00001{bottom:554.279467pt;}
.y130b_c00001{bottom:554.359467pt;}
.ye8d_c00001{bottom:554.519467pt;}
.ye8b_c00001{bottom:554.599467pt;}
.ybd2_c00001{bottom:555.078667pt;}
.y11db_c00001{bottom:555.317707pt;}
.y1420_c00001{bottom:555.399467pt;}
.y338_c00001{bottom:555.479467pt;}
.y1074_c00001{bottom:555.480000pt;}
.y27f_c00001{bottom:555.489093pt;}
.y563_c00001{bottom:555.559467pt;}
.y1812_c00001{bottom:555.643333pt;}
.y250_c00001{bottom:556.117173pt;}
.y231_c00001{bottom:556.119467pt;}
.y13d1_c00001{bottom:556.196933pt;}
.y133_c00001{bottom:556.279467pt;}
.y131_c00001{bottom:556.283467pt;}
.y1b56_c00001{bottom:556.439467pt;}
.y3e9_c00001{bottom:556.446347pt;}
.yeaf_c00001{bottom:556.517333pt;}
.yec6_c00001{bottom:556.518667pt;}
.yece_c00001{bottom:556.520000pt;}
.y122f_c00001{bottom:556.596827pt;}
.y12be_c00001{bottom:556.675467pt;}
.y1a02_c00001{bottom:556.682400pt;}
.y645_c00001{bottom:556.847467pt;}
.y1768_c00001{bottom:556.999467pt;}
.y12b9_c00001{bottom:557.079467pt;}
.y1015_c00001{bottom:557.162133pt;}
.y1b54_c00001{bottom:557.399467pt;}
.ya7c_c00001{bottom:557.400000pt;}
.y1b10_c00001{bottom:557.484267pt;}
.y112f_c00001{bottom:557.534587pt;}
.y1151_c00001{bottom:557.549227pt;}
.y1957_c00001{bottom:557.559467pt;}
.y192b_c00001{bottom:557.572373pt;}
.y1694_c00001{bottom:557.807947pt;}
.yf01_c00001{bottom:557.879333pt;}
.y844_c00001{bottom:557.886347pt;}
.yd88_c00001{bottom:557.959333pt;}
.y35_c00001{bottom:557.959467pt;}
.y69b_c00001{bottom:558.358347pt;}
.yfa3_c00001{bottom:558.435253pt;}
.y101c_c00001{bottom:558.438587pt;}
.y1e8_c00001{bottom:558.520000pt;}
.y2c9_c00001{bottom:558.759333pt;}
.yde9_c00001{bottom:558.839333pt;}
.yfe9_c00001{bottom:559.239467pt;}
.y130e_c00001{bottom:559.239733pt;}
.y189b_c00001{bottom:559.315413pt;}
.y1880_c00001{bottom:559.317067pt;}
.ydb8_c00001{bottom:559.319467pt;}
.y1191_c00001{bottom:559.320000pt;}
.y1553_c00001{bottom:559.479467pt;}
.ycea_c00001{bottom:559.561707pt;}
.ye0c_c00001{bottom:559.642187pt;}
.yf5a_c00001{bottom:559.799333pt;}
.yf46_c00001{bottom:559.959333pt;}
.y110e_c00001{bottom:560.029627pt;}
.y1c30_c00001{bottom:560.043333pt;}
.yfce_c00001{bottom:560.115387pt;}
.y79a_c00001{bottom:560.118667pt;}
.y7c8_c00001{bottom:560.120000pt;}
.yafc_c00001{bottom:560.520000pt;}
.y1b0d_c00001{bottom:560.599333pt;}
.y11cf_c00001{bottom:560.679467pt;}
.y178_c00001{bottom:561.240000pt;}
.y1723_c00001{bottom:561.557067pt;}
.y67_c00001{bottom:561.559467pt;}
.y1584_c00001{bottom:561.880000pt;}
.y880_c00001{bottom:562.199467pt;}
.y37e_c00001{bottom:562.278347pt;}
.y380_c00001{bottom:562.279467pt;}
.y1799_c00001{bottom:562.282507pt;}
.y1881_c00001{bottom:562.283467pt;}
.yedf_c00001{bottom:562.519467pt;}
.y103f_c00001{bottom:562.681493pt;}
.yc06_c00001{bottom:562.840000pt;}
.y15bd_c00001{bottom:563.237333pt;}
.y18df_c00001{bottom:563.247813pt;}
.y1848_c00001{bottom:563.399467pt;}
.y17a_c00001{bottom:563.643333pt;}
.y1510_c00001{bottom:563.957893pt;}
.ya45_c00001{bottom:563.958667pt;}
.y16ab_c00001{bottom:564.039333pt;}
.y8e7_c00001{bottom:564.513173pt;}
.yafb_c00001{bottom:564.519467pt;}
.yf24_c00001{bottom:564.520000pt;}
.y1b52_c00001{bottom:564.522267pt;}
.y5a1_c00001{bottom:565.157333pt;}
.y5c0_c00001{bottom:565.158667pt;}
.y4f7_c00001{bottom:565.159467pt;}
.y5c5_c00001{bottom:565.160000pt;}
.ye38_c00001{bottom:565.236267pt;}
.y49f_c00001{bottom:565.320000pt;}
.y1c38_c00001{bottom:565.456747pt;}
.y1620_c00001{bottom:565.479467pt;}
.y163f_c00001{bottom:565.484027pt;}
.y1724_c00001{bottom:565.634613pt;}
.y558_c00001{bottom:566.118667pt;}
.y191d_c00001{bottom:566.119467pt;}
.y17df_c00001{bottom:566.198347pt;}
.y9c5_c00001{bottom:566.200000pt;}
.y6ed_c00001{bottom:566.359467pt;}
.y7f6_c00001{bottom:566.446347pt;}
.y1697_c00001{bottom:566.682267pt;}
.y1baf_c00001{bottom:566.842373pt;}
.y1660_c00001{bottom:566.999467pt;}
.y150c_c00001{bottom:567.079333pt;}
.y1a01_c00001{bottom:567.399467pt;}
.y1a1e_c00001{bottom:567.403627pt;}
.y5a3_c00001{bottom:567.638213pt;}
.y27e_c00001{bottom:567.810213pt;}
.y1014_c00001{bottom:567.879333pt;}
.y22f_c00001{bottom:568.200000pt;}
.y1b0f_c00001{bottom:568.201467pt;}
.yb9e_c00001{bottom:568.280107pt;}
.y10d3_c00001{bottom:568.440000pt;}
.y130_c00001{bottom:568.519467pt;}
.y101e_c00001{bottom:568.599467pt;}
.y3e8_c00001{bottom:568.682347pt;}
.y89a_c00001{bottom:568.759333pt;}
.y646_c00001{bottom:569.079467pt;}
.y644_c00001{bottom:569.083467pt;}
.y180e_c00001{bottom:569.159333pt;}
.y1299_c00001{bottom:569.319467pt;}
.y1ab7_c00001{bottom:569.324400pt;}
.y1982_c00001{bottom:569.400000pt;}
.y14ed_c00001{bottom:569.642373pt;}
.y371_c00001{bottom:569.679467pt;}
.y179b_c00001{bottom:569.958347pt;}
.y5ee_c00001{bottom:570.120000pt;}
.y846_c00001{bottom:570.199467pt;}
.y843_c00001{bottom:570.207467pt;}
.y154e_c00001{bottom:570.279467pt;}
.y17db_c00001{bottom:570.519467pt;}
.yd1f_c00001{bottom:570.599467pt;}
.y332_c00001{bottom:570.600107pt;}
.y32c_c00001{bottom:570.600747pt;}
.y69a_c00001{bottom:570.679467pt;}
.y18e3_c00001{bottom:570.918347pt;}
.y1267_c00001{bottom:571.155067pt;}
.y1ad9_c00001{bottom:571.406133pt;}
.y130d_c00001{bottom:571.475733pt;}
.yb14_c00001{bottom:571.560000pt;}
.y12eb_c00001{bottom:571.639467pt;}
.yd41_c00001{bottom:571.799333pt;}
.y13_c00001{bottom:571.799467pt;}
.y7fa_c00001{bottom:572.519467pt;}
.y130a_c00001{bottom:572.759467pt;}
.yc2_c00001{bottom:572.838667pt;}
.yfe_c00001{bottom:572.840000pt;}
.y1ab6_c00001{bottom:573.239467pt;}
.y14ac_c00001{bottom:573.399467pt;}
.y4a0_c00001{bottom:573.879333pt;}
.y5f8_c00001{bottom:574.039333pt;}
.y5f3_c00001{bottom:574.041253pt;}
.y42d_c00001{bottom:574.120000pt;}
.y1ad6_c00001{bottom:574.519467pt;}
.y37d_c00001{bottom:574.599467pt;}
.y120b_c00001{bottom:574.679467pt;}
.y150f_c00001{bottom:574.759333pt;}
.y1166_c00001{bottom:574.762347pt;}
.y3ea_c00001{bottom:574.839333pt;}
.y79c_c00001{bottom:574.842347pt;}
.ye89_c00001{bottom:575.082133pt;}
.y1b51_c00001{bottom:575.239467pt;}
.yf26_c00001{bottom:575.244773pt;}
.y1767_c00001{bottom:575.399467pt;}
.yac3_c00001{bottom:575.479467pt;}
.y179_c00001{bottom:575.879333pt;}
.yfa2_c00001{bottom:575.959333pt;}
.y1956_c00001{bottom:575.959467pt;}
.y1253_c00001{bottom:576.117573pt;}
.y74d_c00001{bottom:576.197333pt;}
.y1394_c00001{bottom:576.199467pt;}
.y117d_c00001{bottom:576.270533pt;}
.y1a70_c00001{bottom:576.362267pt;}
.y1296_c00001{bottom:576.442267pt;}
.yeb0_c00001{bottom:576.519467pt;}
.yd87_c00001{bottom:576.755387pt;}
.y13d0_c00001{bottom:576.839333pt;}
.ybd1_c00001{bottom:576.919333pt;}
.ye0b_c00001{bottom:577.239467pt;}
.y18aa_c00001{bottom:577.320000pt;}
.y1696_c00001{bottom:577.399467pt;}
.y1003_c00001{bottom:577.475253pt;}
.yde8_c00001{bottom:577.562187pt;}
.yfcd_c00001{bottom:577.639467pt;}
.y14f0_c00001{bottom:577.885467pt;}
.yfe8_c00001{bottom:578.035387pt;}
.ydb7_c00001{bottom:578.115387pt;}
.y16ad_c00001{bottom:578.126800pt;}
.y192a_c00001{bottom:578.126933pt;}
.y6db_c00001{bottom:578.357333pt;}
.y715_c00001{bottom:578.358667pt;}
.y728_c00001{bottom:578.360000pt;}
.y1693_c00001{bottom:578.362507pt;}
.y97c_c00001{bottom:578.440000pt;}
.y1c37_c00001{bottom:578.501387pt;}
.y17de_c00001{bottom:578.519467pt;}
.ye35_c00001{bottom:578.598587pt;}
.y17bf_c00001{bottom:578.679333pt;}
.y13ef_c00001{bottom:578.679467pt;}
.y7f5_c00001{bottom:578.682347pt;}
.y1b0c_c00001{bottom:578.999333pt;}
.y1195_c00001{bottom:579.323147pt;}
.ya7b_c00001{bottom:579.400000pt;}
.yb66_c00001{bottom:579.480000pt;}
.y189a_c00001{bottom:579.637813pt;}
.y187f_c00001{bottom:579.639467pt;}
.y5a2_c00001{bottom:579.959333pt;}
.y1358_c00001{bottom:580.039333pt;}
.y27d_c00001{bottom:580.046213pt;}
.y19bd_c00001{bottom:580.116933pt;}
.y176a_c00001{bottom:580.279600pt;}
.y12bb_c00001{bottom:580.359467pt;}
.y1586_c00001{bottom:580.522267pt;}
.y1c86_c00001{bottom:580.599333pt;}
.y6e9_c00001{bottom:580.762347pt;}
.y55f_c00001{bottom:580.769227pt;}
.y3e7_c00001{bottom:581.003467pt;}
.y643_c00001{bottom:581.319467pt;}
.y1462_c00001{bottom:581.399333pt;}
.y2c6_c00001{bottom:581.560000pt;}
.y1847_c00001{bottom:581.799467pt;}
.y1585_c00001{bottom:581.879333pt;}
.y1208_c00001{bottom:581.882267pt;}
.y1ad8_c00001{bottom:582.123333pt;}
.y1722_c00001{bottom:582.199467pt;}
.y179a_c00001{bottom:582.279467pt;}
.y8e6_c00001{bottom:582.359333pt;}
.y16aa_c00001{bottom:582.439333pt;}
.y11dd_c00001{bottom:582.439467pt;}
.y842_c00001{bottom:582.443467pt;}
.y161d_c00001{bottom:582.760000pt;}
.y1798_c00001{bottom:582.837067pt;}
.y230_c00001{bottom:582.919333pt;}
.yc05_c00001{bottom:583.000000pt;}
.y15be_c00001{bottom:583.236053pt;}
.y18e2_c00001{bottom:583.239467pt;}
.ya7a_c00001{bottom:583.319467pt;}
.y103e_c00001{bottom:583.323893pt;}
.yb67_c00001{bottom:583.479467pt;}
.y1bfa_c00001{bottom:583.483467pt;}
.yce9_c00001{bottom:583.556667pt;}
.y10eb_c00001{bottom:583.799333pt;}
.y18de_c00001{bottom:583.802373pt;}
.y9c4_c00001{bottom:584.118667pt;}
.y9ef_c00001{bottom:584.120000pt;}
.y60_c00001{bottom:584.357333pt;}
.y112e_c00001{bottom:584.413627pt;}
.y1150_c00001{bottom:584.428267pt;}
.y191c_c00001{bottom:584.519467pt;}
.ycaf_c00001{bottom:584.759333pt;}
.y1c73_c00001{bottom:584.763467pt;}
.y165f_c00001{bottom:585.319467pt;}
.y150b_c00001{bottom:585.479333pt;}
.y8e9_c00001{bottom:585.480000pt;}
.y1eb_c00001{bottom:585.482213pt;}
.y34_c00001{bottom:585.559467pt;}
.ye88_c00001{bottom:585.799333pt;}
.y947_c00001{bottom:586.038667pt;}
.y1bb1_c00001{bottom:586.042133pt;}
.yb9d_c00001{bottom:586.199467pt;}
.y280_c00001{bottom:586.206773pt;}
.y1256_c00001{bottom:586.359467pt;}
.y184a_c00001{bottom:586.683333pt;}
.y110d_c00001{bottom:586.908667pt;}
.y79b_c00001{bottom:587.078347pt;}
.y79d_c00001{bottom:587.079467pt;}
.y1295_c00001{bottom:587.159467pt;}
.y1bae_c00001{bottom:587.396933pt;}
.yc5_c00001{bottom:587.478213pt;}
.y180d_c00001{bottom:587.559333pt;}
.y19bf_c00001{bottom:587.883467pt;}
.y1306_c00001{bottom:587.957893pt;}
.y334_c00001{bottom:587.958667pt;}
.y538_c00001{bottom:587.960000pt;}
.y1a3d_c00001{bottom:587.962507pt;}
.y10d4_c00001{bottom:588.439467pt;}
.y331_c00001{bottom:588.519467pt;}
.y32b_c00001{bottom:588.520107pt;}
.y154d_c00001{bottom:588.679467pt;}
.y42f_c00001{bottom:588.842347pt;}
.y17da_c00001{bottom:588.919467pt;}
.yf71_c00001{bottom:588.999467pt;}
.y11da_c00001{bottom:589.238587pt;}
.y198a_c00001{bottom:589.395067pt;}
.yac1_c00001{bottom:589.397333pt;}
.yae0_c00001{bottom:589.398667pt;}
.y15eb_c00001{bottom:589.399467pt;}
.yae9_c00001{bottom:589.400000pt;}
.y1920_c00001{bottom:589.403467pt;}
.y11b9_c00001{bottom:589.879867pt;}
.y1959_c00001{bottom:590.043467pt;}
.y2c7_c00001{bottom:590.119467pt;}
.y15ec_c00001{bottom:590.120187pt;}
.y14ef_c00001{bottom:590.121467pt;}
.y14ec_c00001{bottom:590.196933pt;}
.yd40_c00001{bottom:590.199333pt;}
.yd64_c00001{bottom:590.199467pt;}
.y16ac_c00001{bottom:590.362800pt;}
.y122e_c00001{bottom:590.517707pt;}
.y49b_c00001{bottom:590.520000pt;}
.y16e4_c00001{bottom:590.683333pt;}
.ybd0_c00001{bottom:590.838667pt;}
.y7f4_c00001{bottom:590.918347pt;}
.y74e_c00001{bottom:590.919333pt;}
.y1ca1_c00001{bottom:591.124827pt;}
.yf44_c00001{bottom:591.159467pt;}
.y125_c00001{bottom:591.317333pt;}
.y1bac_c00001{bottom:591.399467pt;}
.y1bcf_c00001{bottom:591.403440pt;}
.y1c36_c00001{bottom:591.546027pt;}
.y890_c00001{bottom:591.640000pt;}
.y5f2_c00001{bottom:591.960613pt;}
.y27c_c00001{bottom:592.282213pt;}
.y101b_c00001{bottom:592.359467pt;}
.y1769_c00001{bottom:592.515600pt;}
.y1207_c00001{bottom:592.599467pt;}
.y1b50_c00001{bottom:592.600000pt;}
.y62_c00001{bottom:592.919333pt;}
.y1ad5_c00001{bottom:592.919467pt;}
.y6e8_c00001{bottom:593.083467pt;}
.y55e_c00001{bottom:593.090347pt;}
.y3e6_c00001{bottom:593.239467pt;}
.y1397_c00001{bottom:593.319147pt;}
.y693_c00001{bottom:593.400000pt;}
.yc7_c00001{bottom:593.639467pt;}
.y1ab4_c00001{bottom:593.799333pt;}
.y1766_c00001{bottom:593.799467pt;}
.y135a_c00001{bottom:594.126800pt;}
.y16e2_c00001{bottom:594.202187pt;}
.yd86_c00001{bottom:594.279467pt;}
.y1955_c00001{bottom:594.359467pt;}
.y1393_c00001{bottom:594.599467pt;}
.y897_c00001{bottom:594.609093pt;}
.yfa1_c00001{bottom:594.675387pt;}
.y841_c00001{bottom:594.679467pt;}
.y1002_c00001{bottom:594.999467pt;}
.yde7_c00001{bottom:595.159467pt;}
.yfe7_c00001{bottom:595.559467pt;}
.ydb6_c00001{bottom:595.639467pt;}
.yf25_c00001{bottom:595.799333pt;}
.ye0a_c00001{bottom:595.955387pt;}
.y97b_c00001{bottom:596.357333pt;}
.y99e_c00001{bottom:596.358667pt;}
.y9a6_c00001{bottom:596.360000pt;}
.yfcc_c00001{bottom:596.435253pt;}
.yf59_c00001{bottom:596.599333pt;}
.y1bb0_c00001{bottom:596.759333pt;}
.y1a3f_c00001{bottom:596.922267pt;}
.ye58_c00001{bottom:597.078667pt;}
.ye74_c00001{bottom:597.080000pt;}
.y1b78_c00001{bottom:597.159333pt;}
.y37a_c00001{bottom:597.317333pt;}
.y3aa_c00001{bottom:597.318667pt;}
.y1bf9_c00001{bottom:597.319467pt;}
.y3c4_c00001{bottom:597.320000pt;}
.y18ad_c00001{bottom:597.322507pt;}
.y1ea_c00001{bottom:597.803333pt;}
.y1357_c00001{bottom:598.439333pt;}
.y1c72_c00001{bottom:598.599467pt;}
.y176_c00001{bottom:598.680000pt;}
.y1929_c00001{bottom:598.681493pt;}
.y1305_c00001{bottom:598.759333pt;}
.y1692_c00001{bottom:598.917067pt;}
.y1849_c00001{bottom:598.919333pt;}
.y1c85_c00001{bottom:598.999333pt;}
.y13cd_c00001{bottom:599.079333pt;}
.y6ea_c00001{bottom:599.158907pt;}
.y12f4_c00001{bottom:599.239467pt;}
.y1406_c00001{bottom:599.399333pt;}
.y12_c00001{bottom:599.399467pt;}
.y141f_c00001{bottom:599.559147pt;}
.y14a8_c00001{bottom:599.639467pt;}
.yc4_c00001{bottom:599.799333pt;}
.y1194_c00001{bottom:599.877707pt;}
.y19be_c00001{bottom:600.119467pt;}
.y1846_c00001{bottom:600.199467pt;}
.yf27_c00001{bottom:600.360533pt;}
.ya44_c00001{bottom:600.437333pt;}
.y5f7_c00001{bottom:600.679467pt;}
.y19bc_c00001{bottom:600.759333pt;}
.y141c_c00001{bottom:600.839467pt;}
.yc64_c00001{bottom:600.918667pt;}
.yc91_c00001{bottom:600.920000pt;}
.y42e_c00001{bottom:601.078347pt;}
.y430_c00001{bottom:601.079467pt;}
.y1c31_c00001{bottom:601.479467pt;}
.y191f_c00001{bottom:601.639467pt;}
.y1165_c00001{bottom:601.641387pt;}
.y9c2_c00001{bottom:602.040000pt;}
.y1958_c00001{bottom:602.279467pt;}
.y14ee_c00001{bottom:602.357467pt;}
.y1b4f_c00001{bottom:602.679467pt;}
.y527_c00001{bottom:602.684613pt;}
.y4f4_c00001{bottom:602.686347pt;}
.y161f_c00001{bottom:602.762373pt;}
.y5a0_c00001{bottom:602.838667pt;}
.y5c4_c00001{bottom:602.840000pt;}
.y16a9_c00001{bottom:602.919333pt;}
.y191b_c00001{bottom:602.919467pt;}
.yd1e_c00001{bottom:603.078667pt;}
.yd34_c00001{bottom:603.080000pt;}
.y117c_c00001{bottom:603.149573pt;}
.yc38_c00001{bottom:603.160000pt;}
.y7f3_c00001{bottom:603.239467pt;}
.y1797_c00001{bottom:603.479467pt;}
.y165e_c00001{bottom:603.719467pt;}
.y1040_c00001{bottom:603.799333pt;}
.y103d_c00001{bottom:603.878453pt;}
.y150a_c00001{bottom:603.879333pt;}
.y946_c00001{bottom:603.880000pt;}
.y8e1_c00001{bottom:604.038667pt;}
.y63d_c00001{bottom:604.440000pt;}
.y18dd_c00001{bottom:604.444773pt;}
.y1c35_c00001{bottom:604.590667pt;}
.y27b_c00001{bottom:604.603333pt;}
.yc04_c00001{bottom:604.839333pt;}
.yc63_c00001{bottom:604.840053pt;}
.y1266_c00001{bottom:605.075947pt;}
.y49e_c00001{bottom:605.242213pt;}
.y6e7_c00001{bottom:605.319467pt;}
.y55d_c00001{bottom:605.326347pt;}
.y1396_c00001{bottom:605.555147pt;}
.y22c_c00001{bottom:605.717333pt;}
.y24e_c00001{bottom:605.718667pt;}
.y257_c00001{bottom:605.720000pt;}
.y37b_c00001{bottom:605.879333pt;}
.y9c1_c00001{bottom:605.959333pt;}
.y129_c00001{bottom:605.962347pt;}
.yaa4_c00001{bottom:606.039333pt;}
.y1b09_c00001{bottom:606.039467pt;}
.y12d3_c00001{bottom:606.279467pt;}
.yefe_c00001{bottom:606.360000pt;}
.y1359_c00001{bottom:606.362800pt;}
.y32a_c00001{bottom:606.439467pt;}
.y2c4_c00001{bottom:606.760000pt;}
.y896_c00001{bottom:606.845093pt;}
.y154c_c00001{bottom:607.079467pt;}
.y17d9_c00001{bottom:607.319467pt;}
.yabf_c00001{bottom:607.320000pt;}
.yf80_c00001{bottom:607.399467pt;}
.y14ab_c00001{bottom:607.562347pt;}
.yce8_c00001{bottom:607.639467pt;}
.y1a00_c00001{bottom:607.642267pt;}
.y1465_c00001{bottom:607.722347pt;}
.y1bad_c00001{bottom:608.039333pt;}
.y15ea_c00001{bottom:608.119467pt;}
.y697_c00001{bottom:608.126213pt;}
.yf3f_c00001{bottom:608.520000pt;}
.yd53_c00001{bottom:608.599467pt;}
.y1a3c_c00001{bottom:608.604907pt;}
.y187d_c00001{bottom:608.757067pt;}
.y15c0_c00001{bottom:609.166533pt;}
.y108f_c00001{bottom:609.483467pt;}
.y5c_c00001{bottom:609.557333pt;}
.y5f1_c00001{bottom:609.879973pt;}
.y1205_c00001{bottom:609.880000pt;}
.y1252_c00001{bottom:610.038453pt;}
.y1e9_c00001{bottom:610.039333pt;}
.y11b8_c00001{bottom:610.434427pt;}
.y1307_c00001{bottom:610.517333pt;}
.y1330_c00001{bottom:610.518667pt;}
.y1333_c00001{bottom:610.520000pt;}
.y19fe_c00001{bottom:610.759467pt;}
.y14eb_c00001{bottom:610.839333pt;}
.ybcf_c00001{bottom:610.998667pt;}
.y1230_c00001{bottom:611.079467pt;}
.y112d_c00001{bottom:611.292667pt;}
.y114f_c00001{bottom:611.307307pt;}
.yac0_c00001{bottom:611.319467pt;}
.y560_c00001{bottom:611.399467pt;}
.y171f_c00001{bottom:611.400107pt;}
.y141e_c00001{bottom:611.880267pt;}
.yfa0_c00001{bottom:612.199467pt;}
.y1c70_c00001{bottom:612.363467pt;}
.y1265_c00001{bottom:612.510187pt;}
.ye34_c00001{bottom:612.519467pt;}
.y1954_c00001{bottom:612.759467pt;}
.y187e_c00001{bottom:612.834613pt;}
.y10a4_c00001{bottom:612.916373pt;}
.y108d_c00001{bottom:612.917067pt;}
.y1392_c00001{bottom:612.999467pt;}
.yd85_c00001{bottom:613.075387pt;}
.y192d_c00001{bottom:613.083467pt;}
.y33_c00001{bottom:613.159467pt;}
.y13cf_c00001{bottom:613.166800pt;}
.y177_c00001{bottom:613.399467pt;}
.ye09_c00001{bottom:613.479467pt;}
.y749_c00001{bottom:613.720000pt;}
.y110c_c00001{bottom:613.787707pt;}
.yde6_c00001{bottom:613.955387pt;}
.yfcb_c00001{bottom:613.959333pt;}
.yfe6_c00001{bottom:614.275253pt;}
.y1765_c00001{bottom:614.279467pt;}
.y97a_c00001{bottom:614.280000pt;}
.ydb5_c00001{bottom:614.435253pt;}
.y15bc_c00001{bottom:614.439467pt;}
.y7f0_c00001{bottom:614.440000pt;}
.y4f5_c00001{bottom:614.919333pt;}
.y526_c00001{bottom:614.920613pt;}
.y4f3_c00001{bottom:614.922347pt;}
.y18af_c00001{bottom:615.323467pt;}
.y1a6e_c00001{bottom:615.799467pt;}
.y1b77_c00001{bottom:615.879333pt;}
.ya79_c00001{bottom:615.880000pt;}
.yb65_c00001{bottom:615.960000pt;}
.y3e4_c00001{bottom:616.038667pt;}
.y1ca0_c00001{bottom:616.408107pt;}
.ycae_c00001{bottom:616.600000pt;}
.y27a_c00001{bottom:616.839333pt;}
.y7f2_c00001{bottom:616.843467pt;}
.ye5a_c00001{bottom:617.079467pt;}
.y157f_c00001{bottom:617.080000pt;}
.y10b8_c00001{bottom:617.084027pt;}
.y1c84_c00001{bottom:617.399333pt;}
.y83d_c00001{bottom:617.477333pt;}
.y49d_c00001{bottom:617.478213pt;}
.y86c_c00001{bottom:617.478667pt;}
.y13cc_c00001{bottom:617.479333pt;}
.y87a_c00001{bottom:617.480000pt;}
.y55c_c00001{bottom:617.562347pt;}
.y1c34_c00001{bottom:617.635307pt;}
.yedb_c00001{bottom:617.716827pt;}
.y1395_c00001{bottom:617.876267pt;}
.y18ac_c00001{bottom:617.877067pt;}
.y14a7_c00001{bottom:618.039467pt;}
.y178f_c00001{bottom:618.040000pt;}
.y128_c00001{bottom:618.198347pt;}
.y1461_c00001{bottom:618.199333pt;}
.y12b_c00001{bottom:618.199467pt;}
.yafa_c00001{bottom:618.279467pt;}
.y19ff_c00001{bottom:618.359467pt;}
.y1845_c00001{bottom:618.599467pt;}
.yb9a_c00001{bottom:618.677333pt;}
.ybb3_c00001{bottom:618.678667pt;}
.ybb9_c00001{bottom:618.680000pt;}
.yc03_c00001{bottom:618.760000pt;}
.y1356_c00001{bottom:618.919333pt;}
.y895_c00001{bottom:619.166213pt;}
.y63f_c00001{bottom:619.167467pt;}
.y141b_c00001{bottom:619.239467pt;}
.y1691_c00001{bottom:619.559467pt;}
.y14aa_c00001{bottom:619.798347pt;}
.ya78_c00001{bottom:619.799333pt;}
.ya00_c00001{bottom:619.878667pt;}
.y124d_c00001{bottom:619.878827pt;}
.ya30_c00001{bottom:619.880000pt;}
.y15bf_c00001{bottom:619.883733pt;}
.y1464_c00001{bottom:619.958347pt;}
.yb64_c00001{bottom:619.959333pt;}
.yaa3_c00001{bottom:619.960000pt;}
.y22d_c00001{bottom:620.359467pt;}
.y696_c00001{bottom:620.362213pt;}
.ycad_c00001{bottom:620.520187pt;}
.y16e3_c00001{bottom:620.839333pt;}
.yc61_c00001{bottom:621.000000pt;}
.y191a_c00001{bottom:621.319467pt;}
.y1b4e_c00001{bottom:621.399467pt;}
.y2f9_c00001{bottom:621.399627pt;}
.y2c3_c00001{bottom:621.406347pt;}
.y944_c00001{bottom:621.798667pt;}
.y5f6_c00001{bottom:621.879333pt;}
.y163e_c00001{bottom:621.959893pt;}
.y161c_c00001{bottom:621.962267pt;}
.y1e1_c00001{bottom:622.119467pt;}
.y797_c00001{bottom:622.120000pt;}
.yb6_c00001{bottom:622.517333pt;}
.yf7_c00001{bottom:622.518667pt;}
.yfb_c00001{bottom:622.520000pt;}
.y8e4_c00001{bottom:622.757333pt;}
.y927_c00001{bottom:622.758667pt;}
.y11d9_c00001{bottom:623.159467pt;}
.ye87_c00001{bottom:623.164907pt;}
.y13c4_c00001{bottom:623.239467pt;}
.y1989_c00001{bottom:623.315947pt;}
.y161e_c00001{bottom:623.316933pt;}
.y9ff_c00001{bottom:623.879333pt;}
.y1071_c00001{bottom:623.958667pt;}
.y141d_c00001{bottom:624.116267pt;}
.y5e_c00001{bottom:624.199467pt;}
.y330_c00001{bottom:624.437333pt;}
.y122d_c00001{bottom:624.438587pt;}
.y1b08_c00001{bottom:624.439467pt;}
.y1293_c00001{bottom:624.439867pt;}
.y3e5_c00001{bottom:624.599467pt;}
.y1264_c00001{bottom:624.753067pt;}
.yc62_c00001{bottom:624.999333pt;}
.y378_c00001{bottom:625.166213pt;}
.yb12_c00001{bottom:625.240000pt;}
.y192c_c00001{bottom:625.319467pt;}
.y13ce_c00001{bottom:625.402800pt;}
.y17d8_c00001{bottom:625.719467pt;}
.yf70_c00001{bottom:625.799467pt;}
.y8e0_c00001{bottom:625.960613pt;}
.yeff_c00001{bottom:626.359467pt;}
.y698_c00001{bottom:626.519467pt;}
.y12e4_c00001{bottom:626.839467pt;}
.yd3f_c00001{bottom:626.999333pt;}
.y11_c00001{bottom:626.999467pt;}
.y525_c00001{bottom:627.156613pt;}
.y4f2_c00001{bottom:627.158347pt;}
.yd1d_c00001{bottom:627.160000pt;}
.y272_c00001{bottom:627.317333pt;}
.y18ae_c00001{bottom:627.559467pt;}
.y5f0_c00001{bottom:627.799333pt;}
.y16a6_c00001{bottom:627.879333pt;}
.y1309_c00001{bottom:627.963467pt;}
.y59e_c00001{bottom:628.038667pt;}
.y5c3_c00001{bottom:628.040000pt;}
.y74b_c00001{bottom:628.358347pt;}
.yf42_c00001{bottom:628.517573pt;}
.y1164_c00001{bottom:628.520427pt;}
.y12b3_c00001{bottom:628.920000pt;}
.y1aaf_c00001{bottom:628.998667pt;}
.y7f1_c00001{bottom:629.079467pt;}
.y19fd_c00001{bottom:629.159467pt;}
.yb13_c00001{bottom:629.239467pt;}
.y187c_c00001{bottom:629.399467pt;}
.y14e3_c00001{bottom:629.400000pt;}
.y55b_c00001{bottom:629.798347pt;}
.y49c_c00001{bottom:629.799333pt;}
.y1206_c00001{bottom:629.879333pt;}
.y117b_c00001{bottom:629.955413pt;}
.y127_c00001{bottom:630.519467pt;}
.y1b0b_c00001{bottom:630.525200pt;}
.y1c33_c00001{bottom:630.594827pt;}
.yd84_c00001{bottom:630.599467pt;}
.y798_c00001{bottom:630.679467pt;}
.yf9f_c00001{bottom:630.995387pt;}
.y1507_c00001{bottom:630.999467pt;}
.y11b7_c00001{bottom:631.076827pt;}
.y1a6f_c00001{bottom:631.082133pt;}
.ybcd_c00001{bottom:631.157333pt;}
.yd1c_c00001{bottom:631.159467pt;}
.y640_c00001{bottom:631.399467pt;}
.y894_c00001{bottom:631.402213pt;}
.y63e_c00001{bottom:631.403467pt;}
.y898_c00001{bottom:631.412853pt;}
.yde5_c00001{bottom:631.479333pt;}
.yce7_c00001{bottom:631.719467pt;}
.yfe5_c00001{bottom:631.799467pt;}
.ydb4_c00001{bottom:631.959333pt;}
.y171e_c00001{bottom:632.042507pt;}
.y14a9_c00001{bottom:632.119467pt;}
.y124c_c00001{bottom:632.121707pt;}
.y1001_c00001{bottom:632.195387pt;}
.y83e_c00001{bottom:632.199467pt;}
.y979_c00001{bottom:632.200000pt;}
.y1463_c00001{bottom:632.279467pt;}
.ye08_c00001{bottom:632.282053pt;}
.y1928_c00001{bottom:632.602373pt;}
.yfca_c00001{bottom:632.675387pt;}
.y163d_c00001{bottom:632.677093pt;}
.y161b_c00001{bottom:632.679467pt;}
.y695_c00001{bottom:632.683333pt;}
.y1e2_c00001{bottom:632.838667pt;}
.y180a_c00001{bottom:632.999333pt;}
.y15e7_c00001{bottom:633.079333pt;}
.y10a3_c00001{bottom:633.238773pt;}
.y108c_c00001{bottom:633.239467pt;}
.yf58_c00001{bottom:633.399333pt;}
.y2c5_c00001{bottom:633.719467pt;}
.y2f8_c00001{bottom:633.720747pt;}
.y2c2_c00001{bottom:633.727467pt;}
.y1193_c00001{bottom:633.798587pt;}
.y17be_c00001{bottom:633.879333pt;}
.y13ee_c00001{bottom:633.879467pt;}
.y168a_c00001{bottom:634.120000pt;}
.y1549_c00001{bottom:634.199333pt;}
.y1a6d_c00001{bottom:634.199467pt;}
.y74c_c00001{bottom:634.519467pt;}
.ybce_c00001{bottom:635.159467pt;}
.y1c83_c00001{bottom:635.799333pt;}
.y13cb_c00001{bottom:635.879333pt;}
.y174_c00001{bottom:636.120000pt;}
.y1721_c00001{bottom:636.123467pt;}
.y14a6_c00001{bottom:636.439467pt;}
.y1460_c00001{bottom:636.519333pt;}
.ycac_c00001{bottom:636.677333pt;}
.yccd_c00001{bottom:636.678667pt;}
.ycd6_c00001{bottom:636.680000pt;}
.y796_c00001{bottom:636.839333pt;}
.y7c6_c00001{bottom:636.844373pt;}
.ya43_c00001{bottom:636.918667pt;}
.y10d1_c00001{bottom:637.000000pt;}
.y1581_c00001{bottom:637.084907pt;}
.ybf_c00001{bottom:637.243467pt;}
.y377_c00001{bottom:637.487333pt;}
.y10b9_c00001{bottom:637.559467pt;}
.y10b7_c00001{bottom:637.638587pt;}
.y141a_c00001{bottom:637.639467pt;}
.y103c_c00001{bottom:637.799333pt;}
.y9c0_c00001{bottom:637.800000pt;}
.ya77_c00001{bottom:637.878667pt;}
.ya99_c00001{bottom:637.880000pt;}
.y1794_c00001{bottom:638.047813pt;}
.y112c_c00001{bottom:638.098507pt;}
.y114e_c00001{bottom:638.113147pt;}
.y1ad2_c00001{bottom:638.359333pt;}
.y18ab_c00001{bottom:638.519467pt;}
.y1b4a_c00001{bottom:638.680000pt;}
.y1410_c00001{bottom:638.842267pt;}
.yc02_c00001{bottom:638.920000pt;}
.y10e9_c00001{bottom:638.996827pt;}
.y1032_c00001{bottom:639.077893pt;}
.y5f4_c00001{bottom:639.078667pt;}
.y1762_c00001{bottom:639.239333pt;}
.y524_c00001{bottom:639.477733pt;}
.y4f1_c00001{bottom:639.479467pt;}
.y108e_c00001{bottom:639.639467pt;}
.y1919_c00001{bottom:639.719467pt;}
.y943_c00001{bottom:639.720000pt;}
.y1c71_c00001{bottom:639.963467pt;}
.y110b_c00001{bottom:640.593547pt;}
.y74a_c00001{bottom:640.679467pt;}
.y32_c00001{bottom:640.759467pt;}
.y1b74_c00001{bottom:640.839467pt;}
.y1019_c00001{bottom:640.840000pt;}
.ya42_c00001{bottom:640.919333pt;}
.y3e2_c00001{bottom:641.237333pt;}
.y1b0a_c00001{bottom:641.242400pt;}
.y8e3_c00001{bottom:641.320000pt;}
.yb99_c00001{bottom:641.560000pt;}
.y1c9f_c00001{bottom:641.691387pt;}
.ya1f_c00001{bottom:641.799333pt;}
.y278_c00001{bottom:642.050347pt;}
.y55a_c00001{bottom:642.119467pt;}
.y5bf_c00001{bottom:642.683627pt;}
.y59d_c00001{bottom:642.686347pt;}
.y6e5_c00001{bottom:642.763333pt;}
.y1b07_c00001{bottom:642.839467pt;}
.y228_c00001{bottom:643.157333pt;}
.y24d_c00001{bottom:643.158667pt;}
.y256_c00001{bottom:643.160000pt;}
.y19ba_c00001{bottom:643.559333pt;}
.y893_c00001{bottom:643.638213pt;}
.y3e3_c00001{bottom:643.639467pt;}
.ye86_c00001{bottom:643.719467pt;}
.y1352_c00001{bottom:643.879467pt;}
.y8df_c00001{bottom:643.879973pt;}
.y1073_c00001{bottom:643.959333pt;}
.yf7f_c00001{bottom:644.199467pt;}
.yf21_c00001{bottom:644.280000pt;}
.y124b_c00001{bottom:644.439467pt;}
.y694_c00001{bottom:644.919333pt;}
.y1b2c_c00001{bottom:645.078027pt;}
.y1b00_c00001{bottom:645.079467pt;}
.y1292_c00001{bottom:645.082267pt;}
.yead_c00001{bottom:645.084027pt;}
.yd52_c00001{bottom:645.399467pt;}
.y16e1_c00001{bottom:645.563200pt;}
.y1a8f_c00001{bottom:645.638053pt;}
.y1841_c00001{bottom:645.639467pt;}
.y18a9_c00001{bottom:645.642267pt;}
.y2f7_c00001{bottom:645.956747pt;}
.y1583_c00001{bottom:645.957893pt;}
.y2c1_c00001{bottom:645.963467pt;}
.y16a5_c00001{bottom:646.279333pt;}
.ye48_c00001{bottom:646.598027pt;}
.y180c_c00001{bottom:647.078347pt;}
.y794_c00001{bottom:647.320000pt;}
.y1e6_c00001{bottom:647.482213pt;}
.y1aae_c00001{bottom:647.558027pt;}
.y1ab1_c00001{bottom:647.642267pt;}
.ye2f_c00001{bottom:647.717333pt;}
.y1720_c00001{bottom:648.359467pt;}
.y19bb_c00001{bottom:648.443147pt;}
.yf9e_c00001{bottom:648.519467pt;}
.y6e6_c00001{bottom:648.919333pt;}
.y12b7_c00001{bottom:648.927947pt;}
.y1ab0_c00001{bottom:648.999333pt;}
.y329_c00001{bottom:649.079467pt;}
.y325_c00001{bottom:649.080747pt;}
.y1268_c00001{bottom:649.159467pt;}
.yd83_c00001{bottom:649.395253pt;}
.y1506_c00001{bottom:649.399467pt;}
.y14e7_c00001{bottom:649.407947pt;}
.ybe_c00001{bottom:649.479467pt;}
.y140f_c00001{bottom:649.559467pt;}
.y1c10_c00001{bottom:649.560000pt;}
.y1000_c00001{bottom:649.719467pt;}
.y376_c00001{bottom:649.723333pt;}
.yde4_c00001{bottom:649.879333pt;}
.y4ed_c00001{bottom:649.960000pt;}
.y165b_c00001{bottom:650.039467pt;}
.y977_c00001{bottom:650.040000pt;}
.yfc9_c00001{bottom:650.199467pt;}
.y1204_c00001{bottom:650.362267pt;}
.y16e0_c00001{bottom:650.442267pt;}
.y138e_c00001{bottom:650.760000pt;}
.ydb3_c00001{bottom:650.762187pt;}
.y42b_c00001{bottom:650.836827pt;}
.y175_c00001{bottom:650.839333pt;}
.y1ba9_c00001{bottom:650.839467pt;}
.y1689_c00001{bottom:651.001707pt;}
.y169d_c00001{bottom:651.007227pt;}
.y1070_c00001{bottom:651.082133pt;}
.y5b_c00001{bottom:651.163467pt;}
.yd1b_c00001{bottom:651.240000pt;}
.y1809_c00001{bottom:651.399333pt;}
.y15e6_c00001{bottom:651.479333pt;}
.yeda_c00001{bottom:651.637707pt;}
.y108a_c00001{bottom:651.720000pt;}
.y7ea_c00001{bottom:651.880000pt;}
.y1355_c00001{bottom:651.887467pt;}
.yb63_c00001{bottom:652.440000pt;}
.y1bf7_c00001{bottom:652.511333pt;}
.y497_c00001{bottom:652.517333pt;}
.y1548_c00001{bottom:652.519333pt;}
.y1a6c_c00001{bottom:652.519467pt;}
.y171d_c00001{bottom:652.597067pt;}
.y17d5_c00001{bottom:652.839467pt;}
.y122_c00001{bottom:653.237333pt;}
.y1927_c00001{bottom:653.244773pt;}
.y978_c00001{bottom:654.039333pt;}
.y168f_c00001{bottom:654.125413pt;}
.y1c82_c00001{bottom:654.199333pt;}
.y277_c00001{bottom:654.286347pt;}
.y14dc_c00001{bottom:654.356587pt;}
.y1c17_c00001{bottom:654.360000pt;}
.y140a_c00001{bottom:654.439333pt;}
.y12f7_c00001{bottom:654.439467pt;}
.y19e9_c00001{bottom:654.599333pt;}
.y10_c00001{bottom:654.599467pt;}
.y836_c00001{bottom:654.918667pt;}
.y145f_c00001{bottom:654.919333pt;}
.y879_c00001{bottom:654.920000pt;}
.y59f_c00001{bottom:654.999333pt;}
.y5be_c00001{bottom:655.004747pt;}
.y59c_c00001{bottom:655.007467pt;}
.yd1a_c00001{bottom:655.239467pt;}
.y13c7_c00001{bottom:655.240000pt;}
.y7ee_c00001{bottom:655.242213pt;}
.y1163_c00001{bottom:655.399467pt;}
.y9bf_c00001{bottom:655.720000pt;}
.y124_c00001{bottom:655.723333pt;}
.y795_c00001{bottom:655.879333pt;}
.y379_c00001{bottom:655.883893pt;}
.y892_c00001{bottom:655.959333pt;}
.y1b76_c00001{bottom:656.124133pt;}
.y19fa_c00001{bottom:656.199467pt;}
.y18a8_c00001{bottom:656.359467pt;}
.y1582_c00001{bottom:656.759333pt;}
.y117a_c00001{bottom:656.834453pt;}
.yc60_c00001{bottom:656.838667pt;}
.yc90_c00001{bottom:656.840000pt;}
.y10d2_c00001{bottom:656.999333pt;}
.y1988_c00001{bottom:657.236827pt;}
.y68e_c00001{bottom:657.319467pt;}
.ye47_c00001{bottom:657.399467pt;}
.yed7_c00001{bottom:657.483947pt;}
.y1761_c00001{bottom:657.639333pt;}
.y1580_c00001{bottom:657.639467pt;}
.y942_c00001{bottom:657.640000pt;}
.y22a_c00001{bottom:657.883467pt;}
.y2f6_c00001{bottom:658.192747pt;}
.y2c0_c00001{bottom:658.199467pt;}
.y122c_c00001{bottom:658.359467pt;}
.y1390_c00001{bottom:658.439467pt;}
.y1793_c00001{bottom:658.602373pt;}
.y1879_c00001{bottom:658.607813pt;}
.ya3f_c00001{bottom:658.920000pt;}
.yc01_c00001{bottom:659.080000pt;}
.y1b73_c00001{bottom:659.239467pt;}
.y180b_c00001{bottom:659.399467pt;}
.yaa2_c00001{bottom:659.719467pt;}
.y1e7_c00001{bottom:659.799333pt;}
.y1e5_c00001{bottom:659.803333pt;}
.y8e2_c00001{bottom:659.880000pt;}
.y1b4d_c00001{bottom:659.880400pt;}
.y5ea_c00001{bottom:660.280000pt;}
.yc5f_c00001{bottom:660.839333pt;}
.y1203_c00001{bottom:661.079467pt;}
.yabe_c00001{bottom:661.080000pt;}
.y16df_c00001{bottom:661.159467pt;}
.y1b06_c00001{bottom:661.239467pt;}
.y17bd_c00001{bottom:661.479333pt;}
.y13ed_c00001{bottom:661.479467pt;}
.y8de_c00001{bottom:661.799333pt;}
.yedc_c00001{bottom:661.879333pt;}
.y263_c00001{bottom:661.955467pt;}
.y375_c00001{bottom:661.959333pt;}
.y1351_c00001{bottom:662.279467pt;}
.y10ce_c00001{bottom:662.282133pt;}
.yf41_c00001{bottom:662.438453pt;}
.y1764_c00001{bottom:662.519680pt;}
.yf6f_c00001{bottom:662.599467pt;}
.y53_c00001{bottom:662.919333pt;}
.y42c_c00001{bottom:663.079467pt;}
.y42a_c00001{bottom:663.083467pt;}
.y1688_c00001{bottom:663.319467pt;}
.y1391_c00001{bottom:663.323467pt;}
.y169c_c00001{bottom:663.324987pt;}
.y5a_c00001{bottom:663.399467pt;}
.y743_c00001{bottom:663.400000pt;}
.y14a3_c00001{bottom:663.479467pt;}
.y171c_c00001{bottom:663.718027pt;}
.ya76_c00001{bottom:663.799333pt;}
.yd63_c00001{bottom:663.799467pt;}
.y22b_c00001{bottom:663.959333pt;}
.y19b9_c00001{bottom:664.039333pt;}
.y1840_c00001{bottom:664.039467pt;}
.y1354_c00001{bottom:664.123467pt;}
.yf23_c00001{bottom:664.279467pt;}
.yb98_c00001{bottom:664.440000pt;}
.y4ef_c00001{bottom:664.598213pt;}
.y16a4_c00001{bottom:664.679333pt;}
.y1416_c00001{bottom:664.679467pt;}
.y1509_c00001{bottom:664.686133pt;}
.y557_c00001{bottom:664.840000pt;}
.y112b_c00001{bottom:664.977547pt;}
.y114d_c00001{bottom:664.992187pt;}
.y11b6_c00001{bottom:664.997707pt;}
.yb39_c00001{bottom:664.999333pt;}
.y165d_c00001{bottom:665.324267pt;}
.yeae_c00001{bottom:665.559467pt;}
.ye52_c00001{bottom:665.560000pt;}
.y327_c00001{bottom:665.800000pt;}
.y1bf4_c00001{bottom:666.039333pt;}
.y1bab_c00001{bottom:666.114960pt;}
.y1796_c00001{bottom:666.363467pt;}
.y3e0_c00001{bottom:666.437333pt;}
.y66d_c00001{bottom:666.438667pt;}
.y680_c00001{bottom:666.440000pt;}
.y279_c00001{bottom:666.599467pt;}
.y276_c00001{bottom:666.607467pt;}
.y1b75_c00001{bottom:666.841333pt;}
.ybcc_c00001{bottom:666.918667pt;}
.yd82_c00001{bottom:666.919333pt;}
.y17d7_c00001{bottom:666.926800pt;}
.y324_c00001{bottom:667.000107pt;}
.y5bd_c00001{bottom:667.240747pt;}
.y499_c00001{bottom:667.243467pt;}
.yf9d_c00001{bottom:667.315387pt;}
.y110a_c00001{bottom:667.472587pt;}
.y7ed_c00001{bottom:667.563333pt;}
.ye31_c00001{bottom:667.719467pt;}
.y690_c00001{bottom:667.720000pt;}
.y1505_c00001{bottom:667.799467pt;}
.y123_c00001{bottom:667.959333pt;}
.yaf9_c00001{bottom:667.960000pt;}
.yfff_c00001{bottom:668.119467pt;}
.y1c9e_c00001{bottom:668.248347pt;}
.y31_c00001{bottom:668.359467pt;}
.y165a_c00001{bottom:668.439467pt;}
.ye07_c00001{bottom:668.675253pt;}
.yde3_c00001{bottom:668.682053pt;}
.y3e1_c00001{bottom:668.839333pt;}
.y63b_c00001{bottom:668.842347pt;}
.yfc8_c00001{bottom:668.995253pt;}
.y1b72_c00001{bottom:669.002267pt;}
.y1ba8_c00001{bottom:669.239467pt;}
.y12b6_c00001{bottom:669.482507pt;}
.y16a8_c00001{bottom:669.558213pt;}
.y83b_c00001{bottom:669.646213pt;}
.y1808_c00001{bottom:669.799333pt;}
.yed6_c00001{bottom:669.801707pt;}
.y15e5_c00001{bottom:669.879333pt;}
.y14e6_c00001{bottom:669.962507pt;}
.y229_c00001{bottom:670.119467pt;}
.y692_c00001{bottom:670.123467pt;}
.yf57_c00001{bottom:670.199333pt;}
.y1b4c_c00001{bottom:670.597600pt;}
.y4f0_c00001{bottom:670.759333pt;}
.y18d9_c00001{bottom:670.842373pt;}
.y1547_c00001{bottom:670.919333pt;}
.y17d4_c00001{bottom:671.239467pt;}
.y19fc_c00001{bottom:671.474827pt;}
.y1bce_c00001{bottom:671.555813pt;}
.y10b6_c00001{bottom:671.559467pt;}
.y372_c00001{bottom:671.639467pt;}
.y11d1_c00001{bottom:671.640000pt;}
.y2f4_c00001{bottom:671.641707pt;}
.y2be_c00001{bottom:671.646213pt;}
.y108b_c00001{bottom:671.719467pt;}
.y1e4_c00001{bottom:672.039333pt;}
.y1ad4_c00001{bottom:672.045867pt;}
.ybb_c00001{bottom:672.280000pt;}
.y792_c00001{bottom:672.520000pt;}
.y1c81_c00001{bottom:672.599333pt;}
.yf43_c00001{bottom:672.599467pt;}
.y13ca_c00001{bottom:672.683467pt;}
.y1419_c00001{bottom:672.691200pt;}
.y10e8_c00001{bottom:672.917707pt;}
.y10cd_c00001{bottom:672.999333pt;}
.y1033_c00001{bottom:673.000000pt;}
.y491_c00001{bottom:673.159467pt;}
.y49a_c00001{bottom:673.399467pt;}
.y173_c00001{bottom:673.637333pt;}
.y1b0_c00001{bottom:673.638667pt;}
.y7ef_c00001{bottom:673.638773pt;}
.y1c2_c00001{bottom:673.640000pt;}
.y1926_c00001{bottom:673.799333pt;}
.y171b_c00001{bottom:674.519467pt;}
.y19f9_c00001{bottom:674.599467pt;}
.y1916_c00001{bottom:674.759467pt;}
.y168e_c00001{bottom:674.767813pt;}
.y1763_c00001{bottom:674.840800pt;}
.yef7_c00001{bottom:674.920000pt;}
.y1ad1_c00001{bottom:675.159333pt;}
.y13c9_c00001{bottom:675.239467pt;}
.yd19_c00001{bottom:675.317333pt;}
.yd2f_c00001{bottom:675.318667pt;}
.y429_c00001{bottom:675.319467pt;}
.yd33_c00001{bottom:675.320000pt;}
.y1508_c00001{bottom:675.403333pt;}
.y54_c00001{bottom:675.640000pt;}
.y262_c00001{bottom:675.719467pt;}
.yb5e_c00001{bottom:675.960000pt;}
.y1760_c00001{bottom:676.039333pt;}
.y165c_c00001{bottom:676.041467pt;}
.y1353_c00001{bottom:676.359467pt;}
.ycab_c00001{bottom:676.519467pt;}
.y1952_c00001{bottom:676.599467pt;}
.y138d_c00001{bottom:676.839333pt;}
.y1baa_c00001{bottom:676.916400pt;}
.y4ee_c00001{bottom:676.919333pt;}
.y154b_c00001{bottom:676.993360pt;}
.yc5e_c00001{bottom:676.998667pt;}
.yc8f_c00001{bottom:677.000000pt;}
.y748_c00001{bottom:678.119707pt;}
.y1a39_c00001{bottom:678.123333pt;}
.y1843_c00001{bottom:678.123413pt;}
.y58_c00001{bottom:678.127467pt;}
.y14ea_c00001{bottom:678.201947pt;}
.y11fb_c00001{bottom:678.360000pt;}
.y8dd_c00001{bottom:678.437333pt;}
.y926_c00001{bottom:678.438667pt;}
.y1795_c00001{bottom:678.599467pt;}
.y275_c00001{bottom:678.843467pt;}
.yabd_c00001{bottom:678.918667pt;}
.yae8_c00001{bottom:678.920000pt;}
.y1291_c00001{bottom:679.003147pt;}
.yeac_c00001{bottom:679.004907pt;}
.y1c66_c00001{bottom:679.080000pt;}
.yc36_c00001{bottom:679.157333pt;}
.y17d6_c00001{bottom:679.162800pt;}
.y1792_c00001{bottom:679.244773pt;}
.y1878_c00001{bottom:679.250213pt;}
.yd18_c00001{bottom:679.319467pt;}
.y88e_c00001{bottom:679.320000pt;}
.y5bc_c00001{bottom:679.476747pt;}
.y498_c00001{bottom:679.479467pt;}
.y556_c00001{bottom:679.559467pt;}
.y1a69_c00001{bottom:679.639333pt;}
.y1b71_c00001{bottom:679.719467pt;}
.y7ec_c00001{bottom:679.799333pt;}
.yb62_c00001{bottom:679.953947pt;}
.y1c14_c00001{bottom:680.035333pt;}
.y1bf6_c00001{bottom:680.039333pt;}
.y1350_c00001{bottom:680.679467pt;}
.ya41_c00001{bottom:680.759333pt;}
.ybc_c00001{bottom:680.839333pt;}
.yc00_c00001{bottom:680.919333pt;}
.yf7e_c00001{bottom:680.999467pt;}
.ya75_c00001{bottom:681.160000pt;}
.y63a_c00001{bottom:681.163467pt;}
.y6e3_c00001{bottom:681.251333pt;}
.y71a_c00001{bottom:681.253093pt;}
.y5ed_c00001{bottom:681.480000pt;}
.y16a7_c00001{bottom:681.879333pt;}
.y14a2_c00001{bottom:681.879467pt;}
.y83a_c00001{bottom:681.882213pt;}
.y12ea_c00001{bottom:682.039467pt;}
.y5ec_c00001{bottom:682.119467pt;}
.y5e9_c00001{bottom:682.119973pt;}
.y19ee_c00001{bottom:682.199333pt;}
.yf_c00001{bottom:682.199467pt;}
.y19fb_c00001{bottom:682.276267pt;}
.y691_c00001{bottom:682.359467pt;}
.y925_c00001{bottom:682.428773pt;}
.y8da_c00001{bottom:682.433813pt;}
.y183f_c00001{bottom:682.439467pt;}
.y1ad3_c00001{bottom:682.763067pt;}
.y16a3_c00001{bottom:683.079333pt;}
.y1415_c00001{bottom:683.079467pt;}
.yc37_c00001{bottom:683.159467pt;}
.y187b_c00001{bottom:683.326800pt;}
.y1179_c00001{bottom:683.713493pt;}
.y2f3_c00001{bottom:683.877707pt;}
.y2bd_c00001{bottom:683.882213pt;}
.y1aa8_c00001{bottom:684.197333pt;}
.yf9c_c00001{bottom:684.839467pt;}
.y323_c00001{bottom:684.919467pt;}
.y1418_c00001{bottom:684.927200pt;}
.ya74_c00001{bottom:685.159467pt;}
.y18db_c00001{bottom:685.246000pt;}
.ye56_c00001{bottom:685.557707pt;}
.yed9_c00001{bottom:685.558587pt;}
.yd81_c00001{bottom:685.722187pt;}
.y119_c00001{bottom:685.803467pt;}
.y976_c00001{bottom:685.878667pt;}
.y9a5_c00001{bottom:685.880000pt;}
.yeaa_c00001{bottom:686.122267pt;}
.ye06_c00001{bottom:686.199333pt;}
.y1504_c00001{bottom:686.199467pt;}
.y10b3_c00001{bottom:686.200000pt;}
.yde2_c00001{bottom:686.279333pt;}
.yfc7_c00001{bottom:686.519333pt;}
.yffe_c00001{bottom:686.915253pt;}
.ybcb_c00001{bottom:687.077333pt;}
.ydb2_c00001{bottom:687.155387pt;}
.y63c_c00001{bottom:687.238907pt;}
.yb97_c00001{bottom:687.317333pt;}
.ybb2_c00001{bottom:687.318667pt;}
.ybb8_c00001{bottom:687.320000pt;}
.y154a_c00001{bottom:687.794800pt;}
.y83c_c00001{bottom:688.039333pt;}
.y198b_c00001{bottom:688.202053pt;}
.y15e4_c00001{bottom:688.279333pt;}
.y1b03_c00001{bottom:688.279467pt;}
.yce6_c00001{bottom:688.920000pt;}
.y19b6_c00001{bottom:689.079333pt;}
.y12d2_c00001{bottom:689.079467pt;}
.y1294_c00001{bottom:689.159467pt;}
.y1803_c00001{bottom:689.237333pt;}
.y1828_c00001{bottom:689.238667pt;}
.y1619_c00001{bottom:689.239333pt;}
.y163b_c00001{bottom:689.239573pt;}
.y182d_c00001{bottom:689.240000pt;}
.y1546_c00001{bottom:689.319333pt;}
.y17d3_c00001{bottom:689.639467pt;}
.y1659_c00001{bottom:689.719467pt;}
.yaf8_c00001{bottom:689.879333pt;}
.y2f5_c00001{bottom:690.038267pt;}
.y12b8_c00001{bottom:690.039333pt;}
.y554_c00001{bottom:690.040000pt;}
.y2bf_c00001{bottom:690.042773pt;}
.y12b5_c00001{bottom:690.124907pt;}
.y57_c00001{bottom:690.363467pt;}
.y747_c00001{bottom:690.366347pt;}
.y326_c00001{bottom:690.438747pt;}
.y1a38_c00001{bottom:690.439333pt;}
.y1842_c00001{bottom:690.444533pt;}
.y14e9_c00001{bottom:690.523067pt;}
.y14e5_c00001{bottom:690.604907pt;}
.y120_c00001{bottom:690.760000pt;}
.y274_c00001{bottom:691.079467pt;}
.y1987_c00001{bottom:691.157707pt;}
.yb96_c00001{bottom:691.319467pt;}
.y18d8_c00001{bottom:691.484773pt;}
.y9be_c00001{bottom:691.560000pt;}
.y3de_c00001{bottom:691.637333pt;}
.y11d5_c00001{bottom:691.641627pt;}
.y1923_c00001{bottom:691.719467pt;}
.y1301_c00001{bottom:691.799467pt;}
.y112a_c00001{bottom:691.856587pt;}
.y114c_c00001{bottom:691.871227pt;}
.y7e9_c00001{bottom:692.039333pt;}
.y124e_c00001{bottom:692.440000pt;}
.ycaa_c00001{bottom:692.597333pt;}
.yccc_c00001{bottom:692.598667pt;}
.ycd5_c00001{bottom:692.600000pt;}
.y1579_c00001{bottom:692.837333pt;}
.y15a4_c00001{bottom:692.838667pt;}
.y1b47_c00001{bottom:692.839467pt;}
.y15a9_c00001{bottom:692.840000pt;}
.yce5_c00001{bottom:692.919467pt;}
.y224_c00001{bottom:692.920000pt;}
.y19f8_c00001{bottom:692.999467pt;}
.y1039_c00001{bottom:693.007067pt;}
.y1915_c00001{bottom:693.159467pt;}
.y639_c00001{bottom:693.399467pt;}
.y941_c00001{bottom:693.400000pt;}
.y6e2_c00001{bottom:693.487333pt;}
.y719_c00001{bottom:693.489093pt;}
.y1223_c00001{bottom:693.557333pt;}
.y1241_c00001{bottom:693.558667pt;}
.y1ad0_c00001{bottom:693.559333pt;}
.y1245_c00001{bottom:693.560000pt;}
.y1c9d_c00001{bottom:693.853707pt;}
.y88f_c00001{bottom:693.959333pt;}
.y1690_c00001{bottom:693.962267pt;}
.y88d_c00001{bottom:693.963333pt;}
.y839_c00001{bottom:694.203333pt;}
.y1109_c00001{bottom:694.351627pt;}
.y15e9_c00001{bottom:694.359333pt;}
.ybff_c00001{bottom:694.840000pt;}
.yefa_c00001{bottom:694.917707pt;}
.y1a6b_c00001{bottom:694.924267pt;}
.y168d_c00001{bottom:695.322373pt;}
.y9bd_c00001{bottom:695.479467pt;}
.yaa1_c00001{bottom:695.559467pt;}
.y187a_c00001{bottom:695.562800pt;}
.y30_c00001{bottom:695.959467pt;}
.y2f2_c00001{bottom:696.113707pt;}
.y2bc_c00001{bottom:696.118213pt;}
.yf40_c00001{bottom:696.359333pt;}
.y175f_c00001{bottom:696.519333pt;}
.y59_c00001{bottom:696.524027pt;}
.yca9_c00001{bottom:696.599467pt;}
.yea9_c00001{bottom:696.839467pt;}
.yb11_c00001{bottom:696.840000pt;}
.y1c6e_c00001{bottom:696.843333pt;}
.y8dc_c00001{bottom:697.000000pt;}
.yc5c_c00001{bottom:697.080000pt;}
.y1417_c00001{bottom:697.163200pt;}
.y36f_c00001{bottom:697.240000pt;}
.yb9_c00001{bottom:697.480000pt;}
.y18da_c00001{bottom:697.482000pt;}
.yb61_c00001{bottom:697.873307pt;}
.y1a68_c00001{bottom:698.039333pt;}
.y1201_c00001{bottom:698.359093pt;}
.y16dc_c00001{bottom:698.444907pt;}
.y11b5_c00001{bottom:698.918587pt;}
.y14a5_c00001{bottom:699.002347pt;}
.y106e_c00001{bottom:699.158587pt;}
.y791_c00001{bottom:699.240000pt;}
.y121_c00001{bottom:699.319467pt;}
.yf6e_c00001{bottom:699.399467pt;}
.yd17_c00001{bottom:699.400000pt;}
.yeab_c00001{bottom:699.559467pt;}
.y118_c00001{bottom:699.639467pt;}
.y4ea_c00001{bottom:699.640000pt;}
.y6e4_c00001{bottom:699.647893pt;}
.y15b9_c00001{bottom:699.647947pt;}
.y71b_c00001{bottom:699.649653pt;}
.y1791_c00001{bottom:699.799333pt;}
.y1877_c00001{bottom:699.804773pt;}
.y5e8_c00001{bottom:700.039333pt;}
.y134d_c00001{bottom:700.120000pt;}
.y14a1_c00001{bottom:700.279467pt;}
.y924_c00001{bottom:700.348133pt;}
.y8d9_c00001{bottom:700.353173pt;}
.y145b_c00001{bottom:700.439467pt;}
.yd62_c00001{bottom:700.519467pt;}
.yd3e_c00001{bottom:700.599333pt;}
.yabc_c00001{bottom:700.839467pt;}
.yc5d_c00001{bottom:701.079467pt;}
.y428_c00001{bottom:701.323467pt;}
.y468_c00001{bottom:701.324987pt;}
.y16a2_c00001{bottom:701.479333pt;}
.y1414_c00001{bottom:701.479467pt;}
.y4eb_c00001{bottom:702.119333pt;}
.y1718_c00001{bottom:702.442507pt;}
.ya73_c00001{bottom:702.520000pt;}
.y56_c00001{bottom:702.599467pt;}
.y746_c00001{bottom:702.602347pt;}
.y5eb_c00001{bottom:702.677333pt;}
.y14e8_c00001{bottom:702.759067pt;}
.yd16_c00001{bottom:703.319467pt;}
.y7e6_c00001{bottom:703.560000pt;}
.yf9b_c00001{bottom:703.635387pt;}
.y194f_c00001{bottom:703.639333pt;}
.y975_c00001{bottom:703.800000pt;}
.y138a_c00001{bottom:703.879467pt;}
.y1aab_c00001{bottom:704.210347pt;}
.yffd_c00001{bottom:704.439333pt;}
.ydb1_c00001{bottom:704.679467pt;}
.y59a_c00001{bottom:704.686347pt;}
.y555_c00001{bottom:704.759467pt;}
.y1bdd_c00001{bottom:704.760000pt;}
.yde1_c00001{bottom:704.995253pt;}
.y496_c00001{bottom:705.005093pt;}
.y15e8_c00001{bottom:705.076533pt;}
.y68f_c00001{bottom:705.160000pt;}
.yfc6_c00001{bottom:705.315387pt;}
.y1a6a_c00001{bottom:705.641467pt;}
.y6e1_c00001{bottom:705.723333pt;}
.y718_c00001{bottom:705.725093pt;}
.y161a_c00001{bottom:706.115413pt;}
.y163c_c00001{bottom:706.115653pt;}
.y16de_c00001{bottom:706.118213pt;}
.y88c_c00001{bottom:706.199333pt;}
.y3df_c00001{bottom:706.279333pt;}
.y838_c00001{bottom:706.439333pt;}
.ya72_c00001{bottom:706.519333pt;}
.y1527_c00001{bottom:706.676267pt;}
.y15e3_c00001{bottom:706.679333pt;}
.y1503_c00001{bottom:706.679467pt;}
.y10e7_c00001{bottom:706.838587pt;}
.y18d4_c00001{bottom:706.918027pt;}
.yf56_c00001{bottom:706.999333pt;}
.y322_c00001{bottom:707.080000pt;}
.y1df_c00001{bottom:707.246213pt;}
.y19b5_c00001{bottom:707.479333pt;}
.y226_c00001{bottom:707.563333pt;}
.y1545_c00001{bottom:707.719333pt;}
.y1618_c00001{bottom:707.959333pt;}
.y163a_c00001{bottom:707.959573pt;}
.y145e_c00001{bottom:708.362747pt;}
.y2f1_c00001{bottom:708.434827pt;}
.y2bb_c00001{bottom:708.439333pt;}
.y1304_c00001{bottom:708.926480pt;}
.y17cf_c00001{bottom:709.000000pt;}
.y1806_c00001{bottom:709.250213pt;}
.y9bc_c00001{bottom:709.397333pt;}
.y9e6_c00001{bottom:709.398667pt;}
.y1c80_c00001{bottom:709.399333pt;}
.y9ee_c00001{bottom:709.400000pt;}
.yaa0_c00001{bottom:709.480000pt;}
.y12f0_c00001{bottom:709.559467pt;}
.y19e8_c00001{bottom:709.719333pt;}
.ye_c00001{bottom:709.719467pt;}
.y169e_c00001{bottom:709.799467pt;}
.y1300_c00001{bottom:710.199467pt;}
.yb95_c00001{bottom:710.200000pt;}
.y1178_c00001{bottom:710.519333pt;}
.y1c6d_c00001{bottom:710.679333pt;}
.y12b4_c00001{bottom:710.679467pt;}
.y14e4_c00001{bottom:711.159467pt;}
.y940_c00001{bottom:711.317333pt;}
.y14a4_c00001{bottom:711.323467pt;}
.y1914_c00001{bottom:711.559467pt;}
.y18d7_c00001{bottom:712.039333pt;}
.y7e7_c00001{bottom:712.119333pt;}
.y78f_c00001{bottom:712.120000pt;}
.yba_c00001{bottom:712.199333pt;}
.ye85_c00001{bottom:712.278453pt;}
.y1c13_c00001{bottom:712.279333pt;}
.y11d4_c00001{bottom:712.284027pt;}
.y19b8_c00001{bottom:712.363467pt;}
.y124f_c00001{bottom:712.437067pt;}
.yca7_c00001{bottom:712.757333pt;}
.yccb_c00001{bottom:712.758667pt;}
.ycd4_c00001{bottom:712.760000pt;}
.y1b05_c00001{bottom:712.765200pt;}
.y157c_c00001{bottom:712.837067pt;}
.yf1e_c00001{bottom:712.840000pt;}
.y1290_c00001{bottom:712.924027pt;}
.ya3e_c00001{bottom:713.320000pt;}
.y1229_c00001{bottom:713.555947pt;}
.y427_c00001{bottom:713.559467pt;}
.y467_c00001{bottom:713.560987pt;}
.y1038_c00001{bottom:713.561627pt;}
.y1b6f_c00001{bottom:713.639333pt;}
.yce4_c00001{bottom:713.717333pt;}
.y227_c00001{bottom:713.719467pt;}
.y270_c00001{bottom:713.880000pt;}
.y1acf_c00001{bottom:714.039333pt;}
.yb94_c00001{bottom:714.119333pt;}
.yea2_c00001{bottom:714.197333pt;}
.yec4_c00001{bottom:714.198667pt;}
.yecc_c00001{bottom:714.200000pt;}
.y1b70_c00001{bottom:714.360053pt;}
.y172_c00001{bottom:714.437333pt;}
.y1af_c00001{bottom:714.438667pt;}
.y1c1_c00001{bottom:714.440000pt;}
.y1656_c00001{bottom:714.679467pt;}
.yabb_c00001{bottom:714.760000pt;}
.y745_c00001{bottom:714.923467pt;}
.ybfe_c00001{bottom:715.000000pt;}
.y8db_c00001{bottom:715.560000pt;}
.yb60_c00001{bottom:715.719467pt;}
.y168c_c00001{bottom:715.876933pt;}
.y632_c00001{bottom:716.200000pt;}
.y12fd_c00001{bottom:716.282267pt;}
.y1918_c00001{bottom:716.438347pt;}
.y1a67_c00001{bottom:716.439333pt;}
.y17bc_c00001{bottom:716.679333pt;}
.y12d1_c00001{bottom:716.679467pt;}
.yca8_c00001{bottom:716.759467pt;}
.y888_c00001{bottom:716.760000pt;}
.y171a_c00001{bottom:716.846000pt;}
.y599_c00001{bottom:717.007467pt;}
.y1017_c00001{bottom:717.079467pt;}
.y495_c00001{bottom:717.326213pt;}
.y134f_c00001{bottom:717.478213pt;}
.y1b49_c00001{bottom:717.558133pt;}
.y1951_c00001{bottom:717.716213pt;}
.y18d3_c00001{bottom:717.719467pt;}
.y6e0_c00001{bottom:717.959333pt;}
.y717_c00001{bottom:717.961093pt;}
.y923_c00001{bottom:718.194293pt;}
.y7e5_c00001{bottom:718.199333pt;}
.y16dd_c00001{bottom:718.439333pt;}
.y14a0_c00001{bottom:718.679467pt;}
.y1129_c00001{bottom:718.735627pt;}
.y114b_c00001{bottom:718.750267pt;}
.y145a_c00001{bottom:718.839467pt;}
.y15bb_c00001{bottom:718.842267pt;}
.yd51_c00001{bottom:718.919467pt;}
.y16db_c00001{bottom:718.999467pt;}
.y1200_c00001{bottom:719.001493pt;}
.y1b48_c00001{bottom:719.004907pt;}
.y1c9c_c00001{bottom:719.136987pt;}
.y183e_c00001{bottom:719.239467pt;}
.ye55_c00001{bottom:719.478587pt;}
.yed8_c00001{bottom:719.479467pt;}
.y1de_c00001{bottom:719.482213pt;}
.y106f_c00001{bottom:719.639467pt;}
.y225_c00001{bottom:719.799333pt;}
.y16a1_c00001{bottom:719.879333pt;}
.y134e_c00001{bottom:720.119333pt;}
.y19f5_c00001{bottom:720.119467pt;}
.y15a3_c00001{bottom:720.121067pt;}
.y1083_c00001{bottom:720.197333pt;}
.y10a1_c00001{bottom:720.198667pt;}
.y10a7_c00001{bottom:720.200000pt;}
.y15b8_c00001{bottom:720.202507pt;}
.y1876_c00001{bottom:720.359333pt;}
.y145d_c00001{bottom:720.598747pt;}
.y790_c00001{bottom:720.679467pt;}
.y13c6_c00001{bottom:720.839547pt;}
.y1108_c00001{bottom:721.157467pt;}
.yf9a_c00001{bottom:721.159467pt;}
.y1303_c00001{bottom:721.162480pt;}
.y5e6_c00001{bottom:721.240000pt;}
.y175c_c00001{bottom:721.559467pt;}
.y974_c00001{bottom:721.720000pt;}
.y157e_c00001{bottom:721.802133pt;}
.y194e_c00001{bottom:722.039333pt;}
.yd80_c00001{bottom:722.115387pt;}
.y1389_c00001{bottom:722.279467pt;}
.y36c_c00001{bottom:722.440000pt;}
.yde0_c00001{bottom:722.519333pt;}
.yfc5_c00001{bottom:722.839467pt;}
.ybca_c00001{bottom:722.920000pt;}
.y2f0_c00001{bottom:723.075467pt;}
.y59b_c00001{bottom:723.079467pt;}
.y2ba_c00001{bottom:723.083467pt;}
.y1717_c00001{bottom:723.084907pt;}
.yffc_c00001{bottom:723.235387pt;}
.y1aad_c00001{bottom:723.402133pt;}
.ydb0_c00001{bottom:723.402187pt;}
.y1b04_c00001{bottom:723.482400pt;}
.y2f_c00001{bottom:723.559467pt;}
.ya71_c00001{bottom:723.880000pt;}
.y15b5_c00001{bottom:724.119333pt;}
.yd15_c00001{bottom:724.120000pt;}
.y10b2_c00001{bottom:724.359333pt;}
.y1c6c_c00001{bottom:724.443333pt;}
.y19b7_c00001{bottom:724.599467pt;}
.y425_c00001{bottom:724.757333pt;}
.y466_c00001{bottom:724.758667pt;}
.y477_c00001{bottom:724.760000pt;}
.y1aaa_c00001{bottom:724.764907pt;}
.y4e8_c00001{bottom:724.840000pt;}
.y36e_c00001{bottom:724.843467pt;}
.y1986_c00001{bottom:725.078587pt;}
.y15e2_c00001{bottom:725.079333pt;}
.y1b02_c00001{bottom:725.079467pt;}
.y13c5_c00001{bottom:725.159467pt;}
.y5e5_c00001{bottom:725.239467pt;}
.y50_c00001{bottom:725.400000pt;}
.y10d0_c00001{bottom:725.478587pt;}
.y1ba7_c00001{bottom:725.637893pt;}
.y1e0_c00001{bottom:725.642773pt;}
.yb8_c00001{bottom:725.719467pt;}
.y19b4_c00001{bottom:725.879333pt;}
.y1544_c00001{bottom:726.119333pt;}
.y1c21_c00001{bottom:726.279467pt;}
.y12fc_c00001{bottom:726.999467pt;}
.y1ba6_c00001{bottom:727.079467pt;}
.y744_c00001{bottom:727.159467pt;}
.y1807_c00001{bottom:727.243467pt;}
.y9fd_c00001{bottom:727.320000pt;}
.y16f_c00001{bottom:727.397333pt;}
.y1ac_c00001{bottom:727.398667pt;}
.y1c0_c00001{bottom:727.400000pt;}
.ya70_c00001{bottom:727.799333pt;}
.y271_c00001{bottom:728.599467pt;}
.y26f_c00001{bottom:728.603467pt;}
.y1917_c00001{bottom:728.759467pt;}
.y7e2_c00001{bottom:728.760000pt;}
.yef9_c00001{bottom:728.838587pt;}
.y17d0_c00001{bottom:728.999467pt;}
.y1922_c00001{bottom:729.002373pt;}
.y1719_c00001{bottom:729.082000pt;}
.y832_c00001{bottom:729.240000pt;}
.y598_c00001{bottom:729.243467pt;}
.y6de_c00001{bottom:729.480000pt;}
.y15ba_c00001{bottom:729.559467pt;}
.y494_c00001{bottom:729.562213pt;}
.ye57_c00001{bottom:729.719467pt;}
.y1805_c00001{bottom:729.804773pt;}
.y1a35_c00001{bottom:729.807947pt;}
.y1913_c00001{bottom:729.959467pt;}
.y1950_c00001{bottom:730.037333pt;}
.y552_c00001{bottom:730.446347pt;}
.y637_c00001{bottom:731.086213pt;}
.y9fe_c00001{bottom:731.319467pt;}
.y88a_c00001{bottom:731.398347pt;}
.y1500_c00001{bottom:731.639333pt;}
.y319_c00001{bottom:731.715867pt;}
.y321_c00001{bottom:731.719467pt;}
.y835_c00001{bottom:731.723333pt;}
.y1dd_c00001{bottom:731.803333pt;}
.y3dd_c00001{bottom:732.359333pt;}
.y157d_c00001{bottom:732.519333pt;}
.yab9_c00001{bottom:732.677333pt;}
.yadf_c00001{bottom:732.678667pt;}
.yae7_c00001{bottom:732.680000pt;}
.y11d6_c00001{bottom:732.763067pt;}
.y11d3_c00001{bottom:732.838587pt;}
.y11b4_c00001{bottom:732.839467pt;}
.yf1f_c00001{bottom:732.844907pt;}
.yc5b_c00001{bottom:732.917333pt;}
.yc86_c00001{bottom:732.918667pt;}
.y145c_c00001{bottom:732.919867pt;}
.yc8e_c00001{bottom:732.920000pt;}
.y106d_c00001{bottom:733.079467pt;}
.y93f_c00001{bottom:733.239467pt;}
.y426_c00001{bottom:733.319467pt;}
.y157b_c00001{bottom:733.479467pt;}
.y1302_c00001{bottom:733.483600pt;}
.yb92_c00001{bottom:733.720000pt;}
.yed5_c00001{bottom:734.118667pt;}
.y1aac_c00001{bottom:734.119333pt;}
.yea7_c00001{bottom:734.196693pt;}
.y1037_c00001{bottom:734.204027pt;}
.y178a_c00001{bottom:735.000000pt;}
.yc35_c00001{bottom:735.160000pt;}
.y2ef_c00001{bottom:735.311467pt;}
.y2b9_c00001{bottom:735.319467pt;}
.y19f7_c00001{bottom:735.404267pt;}
.y1016_c00001{bottom:735.479467pt;}
.yce3_c00001{bottom:735.550933pt;}
.yf6d_c00001{bottom:736.199467pt;}
.ye2e_c00001{bottom:736.278453pt;}
.y138c_c00001{bottom:736.363147pt;}
.y168b_c00001{bottom:736.519333pt;}
.y1413_c00001{bottom:736.526080pt;}
.y36b_c00001{bottom:736.599467pt;}
.y11f_c00001{bottom:736.603467pt;}
.y17d2_c00001{bottom:736.678347pt;}
.yaba_c00001{bottom:736.679467pt;}
.yc5a_c00001{bottom:736.913387pt;}
.ybfd_c00001{bottom:736.919467pt;}
.y1c07_c00001{bottom:736.920000pt;}
.y36d_c00001{bottom:737.079467pt;}
.y12e3_c00001{bottom:737.159467pt;}
.y1459_c00001{bottom:737.239467pt;}
.y19e7_c00001{bottom:737.319333pt;}
.yd_c00001{bottom:737.319467pt;}
.yd3d_c00001{bottom:737.399333pt;}
.y14fb_c00001{bottom:737.399467pt;}
.y88b_c00001{bottom:737.559467pt;}
.y8d8_c00001{bottom:738.119333pt;}
.y1c6b_c00001{bottom:738.279333pt;}
.y19f4_c00001{bottom:738.519467pt;}
.ya3d_c00001{bottom:738.599467pt;}
.y1acc_c00001{bottom:738.999467pt;}
.y1872_c00001{bottom:739.000000pt;}
.yefb_c00001{bottom:739.079467pt;}
.y465_c00001{bottom:739.478907pt;}
.y424_c00001{bottom:739.479467pt;}
.y11ff_c00001{bottom:739.556053pt;}
.y4e9_c00001{bottom:739.559467pt;}
.yaf7_c00001{bottom:739.560000pt;}
.yd7f_c00001{bottom:739.639467pt;}
.y1bf0_c00001{bottom:739.875467pt;}
.y175b_c00001{bottom:739.959467pt;}
.y1c20_c00001{bottom:740.115467pt;}
.y1088_c00001{bottom:740.286933pt;}
.y194d_c00001{bottom:740.439333pt;}
.y1388_c00001{bottom:740.679467pt;}
.y15b7_c00001{bottom:740.757067pt;}
.yffb_c00001{bottom:740.759467pt;}
.y78d_c00001{bottom:740.766347pt;}
.y26e_c00001{bottom:740.839467pt;}
.ydaf_c00001{bottom:740.999467pt;}
.y18d6_c00001{bottom:741.083467pt;}
.ye05_c00001{bottom:741.315387pt;}
.y6dd_c00001{bottom:741.319467pt;}
.yddf_c00001{bottom:741.322187pt;}
.y597_c00001{bottom:741.479467pt;}
.yfc4_c00001{bottom:741.635387pt;}
.y493_c00001{bottom:741.798213pt;}
.y171_c00001{bottom:742.119333pt;}
.y21e_c00001{bottom:742.600000pt;}
.y551_c00001{bottom:742.682347pt;}
.y1018_c00001{bottom:742.998400pt;}
.y636_c00001{bottom:743.322213pt;}
.y7e4_c00001{bottom:743.398347pt;}
.y15e1_c00001{bottom:743.479333pt;}
.y1b01_c00001{bottom:743.479467pt;}
.y973_c00001{bottom:743.559467pt;}
.y1716_c00001{bottom:743.639467pt;}
.y889_c00001{bottom:743.719467pt;}
.yf55_c00001{bottom:743.799333pt;}
.y834_c00001{bottom:743.959333pt;}
.y1dc_c00001{bottom:744.039333pt;}
.y12d0_c00001{bottom:744.119467pt;}
.y6df_c00001{bottom:744.199333pt;}
.y17bb_c00001{bottom:744.279333pt;}
.y1ac0_c00001{bottom:744.279467pt;}
.y103a_c00001{bottom:744.359333pt;}
.y1c9b_c00001{bottom:744.420267pt;}
.ybc9_c00001{bottom:744.759467pt;}
.yf3d_c00001{bottom:744.840000pt;}
.y175e_c00001{bottom:744.843467pt;}
.y223_c00001{bottom:745.006213pt;}
.ya6f_c00001{bottom:745.157333pt;}
.ya90_c00001{bottom:745.158667pt;}
.ya98_c00001{bottom:745.160000pt;}
.y9bb_c00001{bottom:745.240000pt;}
.y1aa9_c00001{bottom:745.319467pt;}
.y1128_c00001{bottom:745.541467pt;}
.y114a_c00001{bottom:745.556107pt;}
.y19f6_c00001{bottom:746.121467pt;}
.ye84_c00001{bottom:746.199333pt;}
.y183b_c00001{bottom:746.359333pt;}
.y5df_c00001{bottom:746.420453pt;}
.y5da_c00001{bottom:746.435093pt;}
.y5e4_c00001{bottom:746.439333pt;}
.y18a6_c00001{bottom:746.842187pt;}
.y128f_c00001{bottom:746.844907pt;}
.y1502_c00001{bottom:746.924267pt;}
.y12ff_c00001{bottom:746.999467pt;}
.y52_c00001{bottom:747.319467pt;}
.y11b2_c00001{bottom:747.400000pt;}
.y1228_c00001{bottom:747.476827pt;}
.y3dc_c00001{bottom:747.799333pt;}
.y1107_c00001{bottom:748.036507pt;}
.yb5d_c00001{bottom:748.200000pt;}
.y1912_c00001{bottom:748.359467pt;}
.y31f_c00001{bottom:748.440000pt;}
.yca6_c00001{bottom:748.600000pt;}
.y138b_c00001{bottom:748.684267pt;}
.y1412_c00001{bottom:748.762080pt;}
.y11e_c00001{bottom:748.839467pt;}
.y553_c00001{bottom:748.842907pt;}
.y17d1_c00001{bottom:748.999467pt;}
.y1a37_c00001{bottom:749.002267pt;}
.ya6e_c00001{bottom:749.159467pt;}
.ya1e_c00001{bottom:749.239467pt;}
.y638_c00001{bottom:749.479467pt;}
.y17ce_c00001{bottom:749.556933pt;}
.y1a66_c00001{bottom:749.562133pt;}
.y318_c00001{bottom:749.635227pt;}
.y1202_c00001{bottom:749.799333pt;}
.y73f_c00001{bottom:749.958667pt;}
.y14ff_c00001{bottom:750.039333pt;}
.y1804_c00001{bottom:750.359333pt;}
.y1a34_c00001{bottom:750.362507pt;}
.yb0f_c00001{bottom:750.600000pt;}
.ybfc_c00001{bottom:750.840000pt;}
.y2e_c00001{bottom:751.159467pt;}
.y9b_c00001{bottom:751.240000pt;}
.y26a_c00001{bottom:751.320000pt;}
.y1655_c00001{bottom:751.479467pt;}
.y2ee_c00001{bottom:751.718347pt;}
.y2b8_c00001{bottom:751.723333pt;}
.y16a0_c00001{bottom:751.883333pt;}
.y1c69_c00001{bottom:752.043333pt;}
.yca5_c00001{bottom:752.593387pt;}
.y422_c00001{bottom:752.926347pt;}
.y463_c00001{bottom:752.927867pt;}
.yc58_c00001{bottom:753.000000pt;}
.y78c_c00001{bottom:753.002347pt;}
.y1542_c00001{bottom:753.239467pt;}
.yf20_c00001{bottom:753.321333pt;}
.ye54_c00001{bottom:753.399467pt;}
.yce2_c00001{bottom:753.470293pt;}
.y1bef_c00001{bottom:753.639467pt;}
.y18d5_c00001{bottom:753.959333pt;}
.y492_c00001{bottom:754.119333pt;}
.y1b43_c00001{bottom:754.120000pt;}
.yb10_c00001{bottom:754.519333pt;}
.y10b0_c00001{bottom:754.680000pt;}
.y550_c00001{bottom:755.003467pt;}
.y178c_c00001{bottom:755.004907pt;}
.y1616_c00001{bottom:755.319333pt;}
.y10e5_c00001{bottom:755.320000pt;}
.y149f_c00001{bottom:755.479467pt;}
.yb93_c00001{bottom:755.559467pt;}
.y1458_c00001{bottom:755.639467pt;}
.y635_c00001{bottom:755.643333pt;}
.y7e3_c00001{bottom:755.719467pt;}
.ya3c_c00001{bottom:755.958667pt;}
.yc59_c00001{bottom:756.999467pt;}
.y175d_c00001{bottom:757.079467pt;}
.y222_c00001{bottom:757.327333pt;}
.y1acb_c00001{bottom:757.399467pt;}
.y972_c00001{bottom:757.480000pt;}
.y1501_c00001{bottom:757.641467pt;}
.y175a_c00001{bottom:758.359467pt;}
.yd7e_c00001{bottom:758.362053pt;}
.yf99_c00001{bottom:758.363093pt;}
.y8d7_c00001{bottom:758.520000pt;}
.ybc8_c00001{bottom:758.680000pt;}
.ye04_c00001{bottom:758.839467pt;}
.ydde_c00001{bottom:758.919467pt;}
.y1a1d_c00001{bottom:758.996213pt;}
.y1873_c00001{bottom:758.999467pt;}
.y1387_c00001{bottom:759.079467pt;}
.yfc3_c00001{bottom:759.159467pt;}
.y12af_c00001{bottom:759.160000pt;}
.y78e_c00001{bottom:759.162907pt;}
.y1543_c00001{bottom:759.323467pt;}
.y10cf_c00001{bottom:759.399467pt;}
.y1617_c00001{bottom:759.402133pt;}
.yffa_c00001{bottom:759.555387pt;}
.y1a36_c00001{bottom:759.719467pt;}
.ydae_c00001{bottom:759.795387pt;}
.y1b6e_c00001{bottom:759.802533pt;}
.y368_c00001{bottom:759.880000pt;}
.yd14_c00001{bottom:760.600000pt;}
.ye82_c00001{bottom:760.757333pt;}
.y1087_c00001{bottom:760.841493pt;}
.y1411_c00001{bottom:761.083200pt;}
.y15b6_c00001{bottom:761.399467pt;}
.y1a65_c00001{bottom:761.879333pt;}
.y16d8_c00001{bottom:761.879467pt;}
.y4e5_c00001{bottom:762.360000pt;}
.y8cd_c00001{bottom:762.441893pt;}
.y91a_c00001{bottom:762.443040pt;}
.y8d2_c00001{bottom:762.456533pt;}
.y91f_c00001{bottom:762.457680pt;}
.y178e_c00001{bottom:762.683467pt;}
.yef8_c00001{bottom:762.759467pt;}
.y1349_c00001{bottom:762.919333pt;}
.y9ba_c00001{bottom:763.157333pt;}
.y9e5_c00001{bottom:763.158667pt;}
.y9ed_c00001{bottom:763.160000pt;}
.y19ae_c00001{bottom:763.637333pt;}
.y19de_c00001{bottom:763.638667pt;}
.y19e1_c00001{bottom:763.640000pt;}
.y2ed_c00001{bottom:763.954347pt;}
.y2b7_c00001{bottom:763.959333pt;}
.y1b46_c00001{bottom:764.198027pt;}
.y595_c00001{bottom:764.280000pt;}
.y5de_c00001{bottom:764.339813pt;}
.y5d9_c00001{bottom:764.354453pt;}
.yd13_c00001{bottom:764.519333pt;}
.y1d8_c00001{bottom:764.520000pt;}
.y741_c00001{bottom:764.598347pt;}
.y1c7f_c00001{bottom:764.599333pt;}
.y183a_c00001{bottom:764.759333pt;}
.y12f6_c00001{bottom:764.759467pt;}
.y4e7_c00001{bottom:764.763467pt;}
.y16d_c00001{bottom:764.837333pt;}
.y1aa_c00001{bottom:764.838667pt;}
.yf3e_c00001{bottom:764.839467pt;}
.y1bf_c00001{bottom:764.840000pt;}
.y19e6_c00001{bottom:764.919333pt;}
.yc_c00001{bottom:764.919467pt;}
.y48f_c00001{bottom:764.920000pt;}
.y14fa_c00001{bottom:764.999467pt;}
.y93b_c00001{bottom:765.000000pt;}
.y421_c00001{bottom:765.162347pt;}
.y462_c00001{bottom:765.163867pt;}
.y78b_c00001{bottom:765.238347pt;}
.y12fe_c00001{bottom:765.399467pt;}
.y1c68_c00001{bottom:765.879333pt;}
.yf6_c00001{bottom:765.958667pt;}
.yb5_c00001{bottom:765.959333pt;}
.yb4_c00001{bottom:765.963333pt;}
.y26c_c00001{bottom:766.043333pt;}
.y883_c00001{bottom:766.440000pt;}
.y1875_c00001{bottom:766.683467pt;}
.y1658_c00001{bottom:766.758267pt;}
.y11d2_c00001{bottom:766.759467pt;}
.y82e_c00001{bottom:766.840000pt;}
.y6d7_c00001{bottom:766.920000pt;}
.y18a5_c00001{bottom:767.079467pt;}
.y54f_c00001{bottom:767.239467pt;}
.y11b3_c00001{bottom:767.399467pt;}
.y169f_c00001{bottom:767.479467pt;}
.y16cc_c00001{bottom:767.483867pt;}
.y317_c00001{bottom:767.554587pt;}
.y5e3_c00001{bottom:767.639467pt;}
.y634_c00001{bottom:767.879333pt;}
.yea6_c00001{bottom:768.117573pt;}
.y1036_c00001{bottom:768.124907pt;}
.y1067_c00001{bottom:768.197333pt;}
.yab8_c00001{bottom:768.437333pt;}
.yade_c00001{bottom:768.438667pt;}
.yae6_c00001{bottom:768.440000pt;}
.y1572_c00001{bottom:768.600000pt;}
.yca3_c00001{bottom:768.677333pt;}
.ycca_c00001{bottom:768.678667pt;}
.ycd3_c00001{bottom:768.680000pt;}
.y1386_c00001{bottom:768.842267pt;}
.y886_c00001{bottom:768.927467pt;}
.y93d_c00001{bottom:768.999467pt;}
.y221_c00001{bottom:769.563333pt;}
.y1c9a_c00001{bottom:769.776747pt;}
.y1ba4_c00001{bottom:769.879333pt;}
.y1654_c00001{bottom:769.879467pt;}
.ye2d_c00001{bottom:770.199333pt;}
.yb91_c00001{bottom:770.200000pt;}
.y13c3_c00001{bottom:770.363333pt;}
.y14df_c00001{bottom:770.370347pt;}
.y1526_c00001{bottom:770.515947pt;}
.y14fe_c00001{bottom:770.519333pt;}
.y1afd_c00001{bottom:770.599333pt;}
.y742_c00001{bottom:770.759467pt;}
.yc34_c00001{bottom:770.920000pt;}
.y1a33_c00001{bottom:771.004907pt;}
.yb5c_c00001{bottom:771.077333pt;}
.y423_c00001{bottom:771.322907pt;}
.y464_c00001{bottom:771.324427pt;}
.yce1_c00001{bottom:771.389653pt;}
.y1541_c00001{bottom:771.639467pt;}
.y18d2_c00001{bottom:771.798667pt;}
.y1900_c00001{bottom:771.800000pt;}
.y13ec_c00001{bottom:771.879467pt;}
.y26d_c00001{bottom:772.199333pt;}
.y1127_c00001{bottom:772.420507pt;}
.y1149_c00001{bottom:772.435147pt;}
.yca4_c00001{bottom:772.679467pt;}
.y1713_c00001{bottom:772.930213pt;}
.yf6c_c00001{bottom:772.999467pt;}
.y31e_c00001{bottom:773.079467pt;}
.y16e_c00001{bottom:773.399467pt;}
.y3c8_c00001{bottom:773.400000pt;}
.y11fe_c00001{bottom:773.476933pt;}
.y1615_c00001{bottom:773.719333pt;}
.y13c1_c00001{bottom:773.882053pt;}
.yb90_c00001{bottom:774.119333pt;}
.yd61_c00001{bottom:774.119467pt;}
.yd3c_c00001{bottom:774.199333pt;}
.y10b1_c00001{bottom:774.679467pt;}
.y1106_c00001{bottom:774.915547pt;}
.ya6c_c00001{bottom:774.917333pt;}
.ya8f_c00001{bottom:774.918667pt;}
.y178d_c00001{bottom:774.919467pt;}
.ya97_c00001{bottom:774.920000pt;}
.y1b45_c00001{bottom:774.999467pt;}
.y10e6_c00001{bottom:775.319467pt;}
.yaf6_c00001{bottom:775.397333pt;}
.y178b_c00001{bottom:775.559467pt;}
.y4df_c00001{bottom:775.723467pt;}
.yf98_c00001{bottom:775.799333pt;}
.y1aca_c00001{bottom:775.799467pt;}
.y1ba5_c00001{bottom:775.958027pt;}
.yd7d_c00001{bottom:775.959333pt;}
.y16da_c00001{bottom:775.963333pt;}
.y1c0f_c00001{bottom:776.683467pt;}
.y1759_c00001{bottom:776.759467pt;}
.y2b5_c00001{bottom:776.760000pt;}
.y740_c00001{bottom:776.919467pt;}
.y4e6_c00001{bottom:776.999467pt;}
.y8d6_c00001{bottom:777.077333pt;}
.y922_c00001{bottom:777.078667pt;}
.yff9_c00001{bottom:777.079467pt;}
.ydad_c00001{bottom:777.319467pt;}
.y420_c00001{bottom:777.398347pt;}
.y461_c00001{bottom:777.399867pt;}
.y1657_c00001{bottom:777.475467pt;}
.y78a_c00001{bottom:777.559467pt;}
.y11a_c00001{bottom:777.640000pt;}
.ye03_c00001{bottom:777.642187pt;}
.yddd_c00001{bottom:777.715387pt;}
.yfc2_c00001{bottom:777.955387pt;}
.yf5_c00001{bottom:778.194667pt;}
.yb3_c00001{bottom:778.199333pt;}
.y54b_c00001{bottom:778.200000pt;}
.y26b_c00001{bottom:778.279333pt;}
.y7dc_c00001{bottom:778.440000pt;}
.y194c_c00001{bottom:778.603467pt;}
.y14e2_c00001{bottom:778.605333pt;}
.y2d_c00001{bottom:778.759467pt;}
.y183d_c00001{bottom:778.843467pt;}
.y1874_c00001{bottom:778.919467pt;}
.y594_c00001{bottom:779.007467pt;}
.y5bb_c00001{bottom:779.011947pt;}
.y12b1_c00001{bottom:779.156933pt;}
.y1da_c00001{bottom:779.243467pt;}
.y971_c00001{bottom:779.399467pt;}
.y16c_c00001{bottom:779.559467pt;}
.y490_c00001{bottom:779.639467pt;}
.y16d7_c00001{bottom:780.279467pt;}
.y8cc_c00001{bottom:780.361253pt;}
.y919_c00001{bottom:780.362400pt;}
.y8d1_c00001{bottom:780.375893pt;}
.y91e_c00001{bottom:780.377040pt;}
.y1aa3_c00001{bottom:780.520000pt;}
.yf54_c00001{bottom:780.599333pt;}
.ye83_c00001{bottom:780.759467pt;}
.y7e0_c00001{bottom:780.926347pt;}
.y9b8_c00001{bottom:781.000000pt;}
.ya9f_c00001{bottom:781.080000pt;}
.y885_c00001{bottom:781.163467pt;}
.y1348_c00001{bottom:781.319333pt;}
.y1086_c00001{bottom:781.396053pt;}
.y1227_c00001{bottom:781.397707pt;}
.y1cf_c00001{bottom:781.483467pt;}
.y830_c00001{bottom:781.563333pt;}
.y6d9_c00001{bottom:781.643333pt;}
.y1687_c00001{bottom:781.715093pt;}
.y169b_c00001{bottom:781.719627pt;}
.y220_c00001{bottom:781.799333pt;}
.y1ace_c00001{bottom:781.877733pt;}
.y36a_c00001{bottom:781.879333pt;}
.y128a_c00001{bottom:782.040000pt;}
.y1975_c00001{bottom:782.120720pt;}
.y194a_c00001{bottom:782.122053pt;}
.y5dd_c00001{bottom:782.185973pt;}
.y5d8_c00001{bottom:782.200613pt;}
.y1454_c00001{bottom:782.679333pt;}
.y1839_c00001{bottom:783.159333pt;}
.y19b1_c00001{bottom:783.642507pt;}
.y19f2_c00001{bottom:783.959333pt;}
.y18d1_c00001{bottom:784.116933pt;}
.y18fb_c00001{bottom:784.118187pt;}
.y10e3_c00001{bottom:784.441627pt;}
.y10cc_c00001{bottom:784.442187pt;}
.y9b9_c00001{bottom:784.999467pt;}
.y596_c00001{bottom:785.079467pt;}
.y2b6_c00001{bottom:785.319467pt;}
.yd10_c00001{bottom:785.320000pt;}
.y149e_c00001{bottom:785.327600pt;}
.y1db_c00001{bottom:785.399467pt;}
.y316_c00001{bottom:785.473947pt;}
.y1b9e_c00001{bottom:785.719467pt;}
.y1bcd_c00001{bottom:785.722427pt;}
.y11d_c00001{bottom:786.359333pt;}
.yb0d_c00001{bottom:786.360000pt;}
.y149b_c00001{bottom:786.519467pt;}
.ybfa_c00001{bottom:786.600000pt;}
.y1715_c00001{bottom:787.240747pt;}
.y887_c00001{bottom:787.324027pt;}
.y831_c00001{bottom:787.719467pt;}
.y6da_c00001{bottom:787.799333pt;}
.y1101_c00001{bottom:788.039333pt;}
.y3d9_c00001{bottom:788.119333pt;}
.y106b_c00001{bottom:788.196187pt;}
.y16d9_c00001{bottom:788.199333pt;}
.y1ba3_c00001{bottom:788.279333pt;}
.y1653_c00001{bottom:788.279467pt;}
.yea8_c00001{bottom:788.599467pt;}
.y1576_c00001{bottom:788.607813pt;}
.y1906_c00001{bottom:788.676587pt;}
.y1035_c00001{bottom:788.679467pt;}
.yb0_c00001{bottom:788.760000pt;}
.yc57_c00001{bottom:788.837333pt;}
.yc85_c00001{bottom:788.838667pt;}
.y5e2_c00001{bottom:788.839467pt;}
.yc8d_c00001{bottom:788.840000pt;}
.y1a63_c00001{bottom:788.919333pt;}
.y1afc_c00001{bottom:788.999333pt;}
.y789_c00001{bottom:789.000000pt;}
.y134c_c00001{bottom:789.327867pt;}
.y4de_c00001{bottom:789.559467pt;}
.y41f_c00001{bottom:789.719467pt;}
.y460_c00001{bottom:789.720987pt;}
.y31b_c00001{bottom:789.798667pt;}
.yce0_c00001{bottom:789.953173pt;}
.y16b_c00001{bottom:790.038667pt;}
.y1be_c00001{bottom:790.040000pt;}
.y19f3_c00001{bottom:790.043333pt;}
.yb0e_c00001{bottom:790.359333pt;}
.ybfb_c00001{bottom:790.599467pt;}
.y62f_c00001{bottom:790.840000pt;}
.y14e1_c00001{bottom:790.841333pt;}
.y14de_c00001{bottom:790.924907pt;}
.y183c_c00001{bottom:791.079467pt;}
.y1c5f_c00001{bottom:791.160000pt;}
.y593_c00001{bottom:791.243467pt;}
.y5ba_c00001{bottom:791.247947pt;}
.y1d9_c00001{bottom:791.479467pt;}
.y1a32_c00001{bottom:791.559467pt;}
.y1089_c00001{bottom:791.639467pt;}
.ya3a_c00001{bottom:791.800000pt;}
.y1aa1_c00001{bottom:792.042267pt;}
.y48b_c00001{bottom:792.043333pt;}
.y1614_c00001{bottom:792.119333pt;}
.y13fd_c00001{bottom:792.359467pt;}
.y19e5_c00001{bottom:792.519333pt;}
.yb_c00001{bottom:792.519467pt;}
.y1acd_c00001{bottom:792.594933pt;}
.yd3b_c00001{bottom:792.599333pt;}
.y14f9_c00001{bottom:792.599467pt;}
.y15b3_c00001{bottom:792.675227pt;}
.yc33_c00001{bottom:792.839467pt;}
.y54d_c00001{bottom:792.923467pt;}
.y7df_c00001{bottom:793.162347pt;}
.y1800_c00001{bottom:793.239333pt;}
.y970_c00001{bottom:793.320000pt;}
.y884_c00001{bottom:793.399467pt;}
.y1712_c00001{bottom:793.484773pt;}
.yb8f_c00001{bottom:793.720000pt;}
.y82f_c00001{bottom:793.799333pt;}
.y6d8_c00001{bottom:793.879333pt;}
.yb5a_c00001{bottom:793.960000pt;}
.y11fd_c00001{bottom:794.119333pt;}
.y1ac9_c00001{bottom:794.199467pt;}
.ybc7_c00001{bottom:794.520000pt;}
.yf97_c00001{bottom:794.595253pt;}
.yd7c_c00001{bottom:794.755253pt;}
.y1c99_c00001{bottom:795.060027pt;}
.ye2a_c00001{bottom:795.157067pt;}
.yddc_c00001{bottom:795.239467pt;}
.y1ce_c00001{bottom:795.319467pt;}
.yfc1_c00001{bottom:795.479467pt;}
.y8d5_c00001{bottom:795.640000pt;}
.ya3b_c00001{bottom:795.719467pt;}
.y1754_c00001{bottom:796.120000pt;}
.ydac_c00001{bottom:796.122187pt;}
.ya6d_c00001{bottom:796.759467pt;}
.y1871_c00001{bottom:797.479467pt;}
.yb2_c00001{bottom:797.559467pt;}
.y149d_c00001{bottom:797.563600pt;}
.y14fd_c00001{bottom:797.875227pt;}
.yb5b_c00001{bottom:797.959333pt;}
.y8cb_c00001{bottom:798.280613pt;}
.y918_c00001{bottom:798.281760pt;}
.y8d0_c00001{bottom:798.295253pt;}
.y91d_c00001{bottom:798.296400pt;}
.ybc6_c00001{bottom:798.519333pt;}
.y153e_c00001{bottom:798.679467pt;}
.y9fc_c00001{bottom:798.917333pt;}
.ya2b_c00001{bottom:798.918667pt;}
.ya2f_c00001{bottom:798.920000pt;}
.y54e_c00001{bottom:798.999467pt;}
.y1126_c00001{bottom:799.299547pt;}
.y1148_c00001{bottom:799.314187pt;}
.y1b41_c00001{bottom:799.319467pt;}
.y17ba_c00001{bottom:799.479333pt;}
.y12cf_c00001{bottom:799.479467pt;}
.y1714_c00001{bottom:799.561867pt;}
.y739_c00001{bottom:799.637333pt;}
.y1347_c00001{bottom:799.719333pt;}
.y12b2_c00001{bottom:799.719467pt;}
.y1457_c00001{bottom:799.799147pt;}
.y12b0_c00001{bottom:799.799333pt;}
.y4e0_c00001{bottom:799.800000pt;}
.y5dc_c00001{bottom:800.105333pt;}
.y5d7_c00001{bottom:800.119973pt;}
.y1984_c00001{bottom:800.199333pt;}
.y13c2_c00001{bottom:800.519333pt;}
.y169a_c00001{bottom:800.523867pt;}
.y1aa5_c00001{bottom:800.524907pt;}
.y41d_c00001{bottom:800.680000pt;}
.y93a_c00001{bottom:800.837333pt;}
.y1905_c00001{bottom:800.919467pt;}
.y267_c00001{bottom:801.077333pt;}
.y1453_c00001{bottom:801.079333pt;}
.y1c7e_c00001{bottom:801.399333pt;}
.y1838_c00001{bottom:801.479333pt;}
.y134b_c00001{bottom:801.563867pt;}
.y19b3_c00001{bottom:801.643333pt;}
.y1105_c00001{bottom:801.721387pt;}
.y190f_c00001{bottom:801.879467pt;}
.y2b3_c00001{bottom:801.960000pt;}
.yea5_c00001{bottom:802.038453pt;}
.y128d_c00001{bottom:802.043013pt;}
.y73d_c00001{bottom:802.126347pt;}
.y4e3_c00001{bottom:802.202347pt;}
.y1974_c00001{bottom:802.358000pt;}
.y1949_c00001{bottom:802.359333pt;}
.yed3_c00001{bottom:802.600000pt;}
.y1aa0_c00001{bottom:802.759467pt;}
.y169_c00001{bottom:802.997333pt;}
.y1a9_c00001{bottom:802.998667pt;}
.y1bd_c00001{bottom:803.000000pt;}
.y14e0_c00001{bottom:803.077333pt;}
.y4d_c00001{bottom:803.080000pt;}
.y115_c00001{bottom:803.237333pt;}
.y315_c00001{bottom:803.393307pt;}
.y269_c00001{bottom:803.478213pt;}
.y592_c00001{bottom:803.479467pt;}
.y5b9_c00001{bottom:803.483947pt;}
.y19b0_c00001{bottom:804.197067pt;}
.yab7_c00001{bottom:804.280000pt;}
.y1aff_c00001{bottom:804.282267pt;}
.y1c0e_c00001{bottom:804.283467pt;}
.y1a1c_c00001{bottom:804.435947pt;}
.y18d0_c00001{bottom:804.439333pt;}
.y18fa_c00001{bottom:804.440587pt;}
.yca1_c00001{bottom:804.520000pt;}
.y217_c00001{bottom:804.600000pt;}
.y10e2_c00001{bottom:804.678907pt;}
.y10cb_c00001{bottom:804.679467pt;}
.y939_c00001{bottom:804.839467pt;}
.y149a_c00001{bottom:804.919467pt;}
.y54c_c00001{bottom:805.159467pt;}
.y7de_c00001{bottom:805.398347pt;}
.y1b42_c00001{bottom:805.402133pt;}
.y7e1_c00001{bottom:805.408987pt;}
.y48a_c00001{bottom:805.879333pt;}
.y48e_c00001{bottom:805.967333pt;}
.y714_c00001{bottom:806.197867pt;}
.y6d6_c00001{bottom:806.199333pt;}
.y2c_c00001{bottom:806.359467pt;}
.y1652_c00001{bottom:806.679467pt;}
.yc32_c00001{bottom:806.760000pt;}
.yd12_c00001{bottom:807.160107pt;}
.y1a62_c00001{bottom:807.319333pt;}
.y18a4_c00001{bottom:807.323467pt;}
.y1afb_c00001{bottom:807.399333pt;}
.yca2_c00001{bottom:808.519333pt;}
.y194b_c00001{bottom:808.759467pt;}
.y106a_c00001{bottom:808.838587pt;}
.y1bed_c00001{bottom:808.839467pt;}
.y1c1f_c00001{bottom:809.079467pt;}
.y1575_c00001{bottom:809.250213pt;}
.y41e_c00001{bottom:809.479467pt;}
.yf6b_c00001{bottom:809.799467pt;}
.y149c_c00001{bottom:809.799600pt;}
.y5e1_c00001{bottom:810.039333pt;}
.y2b4_c00001{bottom:810.519333pt;}
.y1788_c00001{bottom:810.760000pt;}
.y3d7_c00001{bottom:810.840000pt;}
.yd60_c00001{bottom:810.919467pt;}
.y96f_c00001{bottom:811.240000pt;}
.ya6b_c00001{bottom:811.397333pt;}
.ya8e_c00001{bottom:811.398667pt;}
.ya96_c00001{bottom:811.400000pt;}
.y14dd_c00001{bottom:811.479467pt;}
.y17ff_c00001{bottom:811.639333pt;}
.y1834_c00001{bottom:811.639467pt;}
.y117_c00001{bottom:811.799333pt;}
.yf96_c00001{bottom:812.119333pt;}
.y1456_c00001{bottom:812.120267pt;}
.yd7b_c00001{bottom:812.279467pt;}
.y1ac8_c00001{bottom:812.599467pt;}
.y13bd_c00001{bottom:812.680000pt;}
.y630_c00001{bottom:812.839467pt;}
.y68d_c00001{bottom:813.159467pt;}
.yf3b_c00001{bottom:813.400000pt;}
.ydab_c00001{bottom:813.719467pt;}
.y134a_c00001{bottom:813.799867pt;}
.y19b2_c00001{bottom:813.879333pt;}
.y1540_c00001{bottom:813.962267pt;}
.ye02_c00001{bottom:814.035387pt;}
.ycdf_c00001{bottom:814.035973pt;}
.y58f_c00001{bottom:814.038667pt;}
.y1711_c00001{bottom:814.039333pt;}
.y5c1_c00001{bottom:814.040000pt;}
.yddb_c00001{bottom:814.042187pt;}
.yfc0_c00001{bottom:814.195387pt;}
.y1d3_c00001{bottom:814.277333pt;}
.y73c_c00001{bottom:814.362347pt;}
.y4e2_c00001{bottom:814.523467pt;}
.ybc4_c00001{bottom:814.600000pt;}
.y186a_c00001{bottom:814.757333pt;}
.y1898_c00001{bottom:814.758667pt;}
.y189c_c00001{bottom:814.760000pt;}
.y1385_c00001{bottom:814.995467pt;}
.y1afe_c00001{bottom:814.999467pt;}
.yaf5_c00001{bottom:815.159467pt;}
.y1085_c00001{bottom:815.316933pt;}
.y1226_c00001{bottom:815.318587pt;}
.y1ba0_c00001{bottom:815.399333pt;}
.ya6a_c00001{bottom:815.399467pt;}
.ye29_c00001{bottom:815.479467pt;}
.y45f_c00001{bottom:815.559253pt;}
.y41c_c00001{bottom:815.559467pt;}
.yb8e_c00001{bottom:815.560747pt;}
.y268_c00001{bottom:815.799333pt;}
.y11b1_c00001{bottom:815.958667pt;}
.y1911_c00001{bottom:815.963333pt;}
.y1756_c00001{bottom:816.124907pt;}
.y881_c00001{bottom:816.197333pt;}
.y8ca_c00001{bottom:816.199973pt;}
.y917_c00001{bottom:816.201120pt;}
.y8cf_c00001{bottom:816.214613pt;}
.y91c_c00001{bottom:816.215760pt;}
.y1802_c00001{bottom:816.523467pt;}
.y788_c00001{bottom:816.599467pt;}
.y829_c00001{bottom:816.600000pt;}
.y1384_c00001{bottom:816.677067pt;}
.y6d2_c00001{bottom:816.677333pt;}
.y713_c00001{bottom:816.678667pt;}
.y14fc_c00001{bottom:816.679467pt;}
.y727_c00001{bottom:816.680000pt;}
.y13b2_c00001{bottom:816.680427pt;}
.y9b6_c00001{bottom:816.840000pt;}
.y153d_c00001{bottom:817.079467pt;}
.yf53_c00001{bottom:817.399333pt;}
.y168_c00001{bottom:817.716693pt;}
.y7dd_c00001{bottom:817.719467pt;}
.y1a8_c00001{bottom:817.720747pt;}
.y1682_c00001{bottom:817.800000pt;}
.y5e0_c00001{bottom:818.024693pt;}
.y5d6_c00001{bottom:818.039333pt;}
.y1346_c00001{bottom:818.119333pt;}
.y1578_c00001{bottom:818.122267pt;}
.y8d4_c00001{bottom:818.199333pt;}
.y48d_c00001{bottom:818.203333pt;}
.y921_c00001{bottom:818.206800pt;}
.y1c2c_c00001{bottom:818.403307pt;}
.yf4_c00001{bottom:818.517067pt;}
.yaf_c00001{bottom:818.518347pt;}
.ybc5_c00001{bottom:818.599467pt;}
.y938_c00001{bottom:818.760000pt;}
.y15b4_c00001{bottom:818.995547pt;}
.y124a_c00001{bottom:819.076533pt;}
.y106c_c00001{bottom:819.079467pt;}
.y1611_c00001{bottom:819.159333pt;}
.y21c_c00001{bottom:819.326213pt;}
.y1452_c00001{bottom:819.479333pt;}
.y18a3_c00001{bottom:819.559467pt;}
.y1c7d_c00001{bottom:819.799333pt;}
.y1837_c00001{bottom:819.879333pt;}
.y12ef_c00001{bottom:819.959467pt;}
.y1a31_c00001{bottom:819.963333pt;}
.y13fb_c00001{bottom:820.119333pt;}
.ya_c00001{bottom:820.119467pt;}
.y190e_c00001{bottom:820.279467pt;}
.y1c98_c00001{bottom:820.343307pt;}
.y4e4_c00001{bottom:820.598907pt;}
.y9b7_c00001{bottom:820.839467pt;}
.y1aa4_c00001{bottom:821.079467pt;}
.y314_c00001{bottom:821.239467pt;}
.y11ce_c00001{bottom:821.959333pt;}
.ye50_c00001{bottom:821.964773pt;}
.yb0c_c00001{bottom:822.197333pt;}
.yb2a_c00001{bottom:822.198667pt;}
.yb2f_c00001{bottom:822.200000pt;}
.ybf9_c00001{bottom:822.437333pt;}
.yc20_c00001{bottom:822.438667pt;}
.yc27_c00001{bottom:822.440000pt;}
.y128c_c00001{bottom:822.597573pt;}
.y1a64_c00001{bottom:822.598027pt;}
.y10ff_c00001{bottom:822.598453pt;}
.yed4_c00001{bottom:822.599467pt;}
.y1bec_c00001{bottom:822.675467pt;}
.y1c1e_c00001{bottom:822.915467pt;}
.y10ae_c00001{bottom:823.157333pt;}
.y10e1_c00001{bottom:823.158667pt;}
.y10e4_c00001{bottom:823.160000pt;}
.y1b3e_c00001{bottom:823.639467pt;}
.y1758_c00001{bottom:823.798213pt;}
.y16a_c00001{bottom:823.799333pt;}
.y102b_c00001{bottom:823.878667pt;}
.y1058_c00001{bottom:823.880000pt;}
.y13c0_c00001{bottom:823.967333pt;}
.y1455_c00001{bottom:824.356267pt;}
.y153f_c00001{bottom:824.679467pt;}
.yc55_c00001{bottom:824.680000pt;}
.y19af_c00001{bottom:824.839467pt;}
.yd11_c00001{bottom:825.079467pt;}
.y3d6_c00001{bottom:825.562213pt;}
.y1a61_c00001{bottom:825.719333pt;}
.y16d4_c00001{bottom:825.719467pt;}
.y1afa_c00001{bottom:825.799333pt;}
.y1125_c00001{bottom:826.105387pt;}
.y1147_c00001{bottom:826.120027pt;}
.yab6_c00001{bottom:826.199333pt;}
.ybf8_c00001{bottom:826.439333pt;}
.y73b_c00001{bottom:826.598347pt;}
.y73e_c00001{bottom:826.608987pt;}
.y4e1_c00001{bottom:826.759467pt;}
.y13eb_c00001{bottom:826.919467pt;}
.y17b9_c00001{bottom:827.079333pt;}
.y12ce_c00001{bottom:827.079467pt;}
.y1651_c00001{bottom:827.159467pt;}
.ya38_c00001{bottom:827.560000pt;}
.y545_c00001{bottom:827.958667pt;}
.y1910_c00001{bottom:828.199333pt;}
.y1789_c00001{bottom:828.203333pt;}
.y111_c00001{bottom:828.437333pt;}
.y1337_c00001{bottom:828.519333pt;}
.yc56_c00001{bottom:828.599467pt;}
.y1104_c00001{bottom:828.600427pt;}
.y591_c00001{bottom:828.679467pt;}
.y1801_c00001{bottom:828.759467pt;}
.y15ab_c00001{bottom:828.760000pt;}
.y1577_c00001{bottom:828.839467pt;}
.y1d6_c00001{bottom:828.918347pt;}
.ye7c_c00001{bottom:829.240000pt;}
.y1787_c00001{bottom:829.317893pt;}
.yd50_c00001{bottom:829.319467pt;}
.y45e_c00001{bottom:829.561493pt;}
.y41b_c00001{bottom:829.565227pt;}
.y683_c00001{bottom:829.800000pt;}
.y1574_c00001{bottom:829.804773pt;}
.y167_c00001{bottom:829.963333pt;}
.y1a7_c00001{bottom:829.967387pt;}
.y17fe_c00001{bottom:830.039333pt;}
.y31a_c00001{bottom:830.199147pt;}
.y48c_c00001{bottom:830.439333pt;}
.y2eb_c00001{bottom:830.522053pt;}
.y2b1_c00001{bottom:830.526347pt;}
.yd7a_c00001{bottom:830.679467pt;}
.y1ba2_c00001{bottom:830.682267pt;}
.y15df_c00001{bottom:830.759467pt;}
.yf3_c00001{bottom:830.838187pt;}
.yae_c00001{bottom:830.839467pt;}
.yf95_c00001{bottom:830.915253pt;}
.y882_c00001{bottom:830.919467pt;}
.y5db_c00001{bottom:831.229973pt;}
.yef6_c00001{bottom:831.239467pt;}
.y82c_c00001{bottom:831.316693pt;}
.y6d4_c00001{bottom:831.318347pt;}
.y1c2b_c00001{bottom:831.447947pt;}
.ya39_c00001{bottom:831.559467pt;}
.y21b_c00001{bottom:831.562213pt;}
.ydda_c00001{bottom:831.639467pt;}
.y3d8_c00001{bottom:831.719467pt;}
.y19f1_c00001{bottom:831.795227pt;}
.y19ad_c00001{bottom:831.962267pt;}
.y1a30_c00001{bottom:832.279333pt;}
.ydaa_c00001{bottom:832.515253pt;}
.y18cd_c00001{bottom:832.519333pt;}
.y13be_c00001{bottom:832.679467pt;}
.y170e_c00001{bottom:832.680000pt;}
.y1ac7_c00001{bottom:833.079467pt;}
.yf3c_c00001{bottom:833.399467pt;}
.ya69_c00001{bottom:833.400000pt;}
.yb8d_c00001{bottom:833.480107pt;}
.yb59_c00001{bottom:833.799333pt;}
.y2b_c00001{bottom:833.959467pt;}
.y8c9_c00001{bottom:834.119333pt;}
.y916_c00001{bottom:834.120480pt;}
.y8d3_c00001{bottom:834.133973pt;}
.y920_c00001{bottom:834.135120pt;}
.y1613_c00001{bottom:834.438027pt;}
.y9fb_c00001{bottom:834.760000pt;}
.y186e_c00001{bottom:834.762373pt;}
.y1d7_c00001{bottom:835.079467pt;}
.y197e_c00001{bottom:835.320000pt;}
.y153c_c00001{bottom:835.479467pt;}
.yea4_c00001{bottom:835.959333pt;}
.y1496_c00001{bottom:836.039467pt;}
.y1757_c00001{bottom:836.119333pt;}
.y13bf_c00001{bottom:836.203333pt;}
.y1beb_c00001{bottom:836.439467pt;}
.y1c0d_c00001{bottom:836.443467pt;}
.y1345_c00001{bottom:836.519333pt;}
.y1755_c00001{bottom:836.679467pt;}
.y8ce_c00001{bottom:836.769173pt;}
.y91b_c00001{bottom:836.770320pt;}
.y4a_c00001{bottom:836.837333pt;}
.y114_c00001{bottom:836.999467pt;}
.y13b1_c00001{bottom:837.002827pt;}
.y1c5e_c00001{bottom:837.151467pt;}
.y936_c00001{bottom:837.317333pt;}
.y6d5_c00001{bottom:837.479467pt;}
.y365_c00001{bottom:837.557333pt;}
.y3a5_c00001{bottom:837.558667pt;}
.y1610_c00001{bottom:837.559333pt;}
.y3c0_c00001{bottom:837.560000pt;}
.y21d_c00001{bottom:837.719467pt;}
.y3d5_c00001{bottom:837.798213pt;}
.y1684_c00001{bottom:837.804773pt;}
.ycde_c00001{bottom:838.118773pt;}
.y1c7c_c00001{bottom:838.199333pt;}
.y190d_c00001{bottom:838.599467pt;}
.y73a_c00001{bottom:838.919467pt;}
.y786_c00001{bottom:839.400000pt;}
.y1451_c00001{bottom:839.959333pt;}
.y1786_c00001{bottom:840.119333pt;}
.yab5_c00001{bottom:840.120000pt;}
.y1aa7_c00001{bottom:840.278027pt;}
.yca0_c00001{bottom:840.360000pt;}
.y7d8_c00001{bottom:840.437333pt;}
.y14db_c00001{bottom:840.522347pt;}
.y1d5_c00001{bottom:841.239467pt;}
.y1ba1_c00001{bottom:841.399467pt;}
.y45d_c00001{bottom:841.882613pt;}
.y41a_c00001{bottom:841.886347pt;}
.y484_c00001{bottom:842.040000pt;}
.y166_c00001{bottom:842.199333pt;}
.y1a6_c00001{bottom:842.203387pt;}
.yf1d_c00001{bottom:842.439333pt;}
.ye51_c00001{bottom:842.441467pt;}
.ye4f_c00001{bottom:842.519333pt;}
.ybf6_c00001{bottom:842.520000pt;}
.y549_c00001{bottom:842.602347pt;}
.y14d8_c00001{bottom:842.604907pt;}
.y19ac_c00001{bottom:842.679467pt;}
.y2ea_c00001{bottom:842.758053pt;}
.y1069_c00001{bottom:842.759467pt;}
.y2b0_c00001{bottom:842.762347pt;}
.y1100_c00001{bottom:843.081333pt;}
.y1082_c00001{bottom:843.082133pt;}
.y266_c00001{bottom:843.087467pt;}
.y10af_c00001{bottom:843.159467pt;}
.y82d_c00001{bottom:843.559467pt;}
.y82b_c00001{bottom:843.563333pt;}
.y6d3_c00001{bottom:843.639467pt;}
.y21a_c00001{bottom:843.798213pt;}
.y1030_c00001{bottom:843.875947pt;}
.y1753_c00001{bottom:843.882267pt;}
.y1499_c00001{bottom:843.966213pt;}
.y1a60_c00001{bottom:844.119333pt;}
.y16d3_c00001{bottom:844.119467pt;}
.y1af9_c00001{bottom:844.199333pt;}
.y1c2a_c00001{bottom:844.492587pt;}
.y68b_c00001{bottom:844.526347pt;}
.y1612_c00001{bottom:845.239467pt;}
.y15d6_c00001{bottom:845.320000pt;}
.ybf7_c00001{bottom:846.519333pt;}
.yf6a_c00001{bottom:846.599467pt;}
.y1686_c00001{bottom:846.678027pt;}
.y30f_c00001{bottom:846.917333pt;}
.y1639_c00001{bottom:846.996907pt;}
.y1607_c00001{bottom:846.999467pt;}
.yaf4_c00001{bottom:847.000000pt;}
.y1646_c00001{bottom:847.006267pt;}
.y13fc_c00001{bottom:847.559333pt;}
.y12e9_c00001{bottom:847.559467pt;}
.y19e4_c00001{bottom:847.719333pt;}
.y9_c00001{bottom:847.719467pt;}
.y14f8_c00001{bottom:847.799467pt;}
.y787_c00001{bottom:847.959333pt;}
.y96d_c00001{bottom:848.357333pt;}
.y99d_c00001{bottom:848.358667pt;}
.y9a4_c00001{bottom:848.360000pt;}
.yf94_c00001{bottom:848.439333pt;}
.y5d2_c00001{bottom:848.440000pt;}
.y15b0_c00001{bottom:848.759467pt;}
.y2ec_c00001{bottom:848.918613pt;}
.y2b2_c00001{bottom:848.922907pt;}
.y1225_c00001{bottom:849.239467pt;}
.ye80_c00001{bottom:849.242373pt;}
.yad_c00001{bottom:849.243467pt;}
.yf2_c00001{bottom:849.245387pt;}
.y11f9_c00001{bottom:849.247067pt;}
.y189e_c00001{bottom:849.400000pt;}
.yd79_c00001{bottom:849.479467pt;}
.y4dc_c00001{bottom:849.557333pt;}
.y523_c00001{bottom:849.558667pt;}
.y537_c00001{bottom:849.560000pt;}
.y1710_c00001{bottom:850.038213pt;}
.yda9_c00001{bottom:850.039333pt;}
.y3d4_c00001{bottom:850.119333pt;}
.y1be3_c00001{bottom:850.279467pt;}
.ye01_c00001{bottom:850.282053pt;}
.ydd9_c00001{bottom:850.355253pt;}
.y1573_c00001{bottom:850.359333pt;}
.yfbf_c00001{bottom:850.515253pt;}
.y19f0_c00001{bottom:850.599467pt;}
.y1c5d_c00001{bottom:850.915467pt;}
.y18cc_c00001{bottom:850.919333pt;}
.y1aa6_c00001{bottom:851.079467pt;}
.ybc3_c00001{bottom:851.080000pt;}
.yb8c_c00001{bottom:851.399467pt;}
.y1836_c00001{bottom:851.883333pt;}
.y1681_c00001{bottom:852.039333pt;}
.y1699_c00001{bottom:852.040453pt;}
.y1b9f_c00001{bottom:852.199333pt;}
.y9b5_c00001{bottom:852.677333pt;}
.y9e4_c00001{bottom:852.678667pt;}
.y170f_c00001{bottom:852.679467pt;}
.y9ec_c00001{bottom:852.680000pt;}
.y14da_c00001{bottom:852.758347pt;}
.y162_c00001{bottom:852.760000pt;}
.y1870_c00001{bottom:852.763467pt;}
.y1124_c00001{bottom:852.984427pt;}
.y1146_c00001{bottom:852.999067pt;}
.y10d_c00001{bottom:853.638667pt;}
.y1081_c00001{bottom:853.799333pt;}
.ye28_c00001{bottom:853.958453pt;}
.y45c_c00001{bottom:854.118613pt;}
.y419_c00001{bottom:854.122347pt;}
.yf52_c00001{bottom:854.199333pt;}
.y1495_c00001{bottom:854.439467pt;}
.y164f_c00001{bottom:854.515227pt;}
.y12cd_c00001{bottom:854.519467pt;}
.y1752_c00001{bottom:854.599467pt;}
.y54a_c00001{bottom:854.919467pt;}
.y548_c00001{bottom:854.923467pt;}
.y58e_c00001{bottom:855.002347pt;}
.y5b8_c00001{bottom:855.003973pt;}
.y2e9_c00001{bottom:855.079173pt;}
.y2af_c00001{bottom:855.083467pt;}
.y7da_c00001{bottom:855.163467pt;}
.y914_c00001{bottom:855.316667pt;}
.y186d_c00001{bottom:855.316933pt;}
.y8c8_c00001{bottom:855.319200pt;}
.y8c4_c00001{bottom:855.320747pt;}
.y197f_c00001{bottom:855.322373pt;}
.y265_c00001{bottom:855.323467pt;}
.ya68_c00001{bottom:855.400000pt;}
.y1103_c00001{bottom:855.479467pt;}
.y1380_c00001{bottom:855.480000pt;}
.y82a_c00001{bottom:855.799333pt;}
.y934_c00001{bottom:855.880000pt;}
.y160f_c00001{bottom:855.959333pt;}
.y133d_c00001{bottom:855.960000pt;}
.y15dc_c00001{bottom:856.056427pt;}
.y219_c00001{bottom:856.119333pt;}
.y1498_c00001{bottom:856.202213pt;}
.y128e_c00001{bottom:856.439333pt;}
.y128b_c00001{bottom:856.518453pt;}
.y10fe_c00001{bottom:856.519333pt;}
.y1c7b_c00001{bottom:856.599333pt;}
.ya1d_c00001{bottom:856.599467pt;}
.y68a_c00001{bottom:856.762347pt;}
.y488_c00001{bottom:856.766347pt;}
.yd3a_c00001{bottom:856.999333pt;}
.y1c29_c00001{bottom:857.452107pt;}
.y1685_c00001{bottom:857.479467pt;}
.yd0f_c00001{bottom:857.560000pt;}
.yab3_c00001{bottom:857.958667pt;}
.yae5_c00001{bottom:857.960000pt;}
.y4dd_c00001{bottom:858.119333pt;}
.y16d6_c00001{bottom:858.203413pt;}
.y1683_c00001{bottom:858.359333pt;}
.y1249_c00001{bottom:859.238693pt;}
.ya67_c00001{bottom:859.399467pt;}
.y1b40_c00001{bottom:859.404267pt;}
.y935_c00001{bottom:859.879333pt;}
.y19ab_c00001{bottom:859.960000pt;}
.yc54_c00001{bottom:860.440000pt;}
.y1ac6_c00001{bottom:860.519467pt;}
.y7db_c00001{bottom:861.319467pt;}
.yac_c00001{bottom:861.479467pt;}
.yf1_c00001{bottom:861.481387pt;}
.y2a_c00001{bottom:861.559467pt;}
.y734_c00001{bottom:861.640000pt;}
.yab4_c00001{bottom:861.959333pt;}
.y189d_c00001{bottom:862.039333pt;}
.ycdd_c00001{bottom:862.113733pt;}
.yc9f_c00001{bottom:862.199333pt;}
.y1a5f_c00001{bottom:862.519333pt;}
.y153a_c00001{bottom:862.519467pt;}
.yc31_c00001{bottom:862.680000pt;}
.y68c_c00001{bottom:862.919467pt;}
.y14d7_c00001{bottom:863.159467pt;}
.ya37_c00001{bottom:863.400000pt;}
.y1c0c_c00001{bottom:863.803467pt;}
.y1d0_c00001{bottom:863.958667pt;}
.y1948_c00001{bottom:863.963600pt;}
.y1bea_c00001{bottom:864.039467pt;}
.y1be2_c00001{bottom:864.043467pt;}
.y1af4_c00001{bottom:864.279333pt;}
.y1b2b_c00001{bottom:864.279733pt;}
.y3d3_c00001{bottom:864.359333pt;}
.y782_c00001{bottom:864.600000pt;}
.y1c5c_c00001{bottom:864.679467pt;}
.yaf2_c00001{bottom:864.917333pt;}
.y144d_c00001{bottom:864.919467pt;}
.y186f_c00001{bottom:864.999467pt;}
.y18cf_c00001{bottom:865.003467pt;}
.y14d9_c00001{bottom:865.079467pt;}
.y1835_c00001{bottom:865.399467pt;}
.yb58_c00001{bottom:865.560000pt;}
.yb8b_c00001{bottom:865.960000pt;}
.yd4f_c00001{bottom:866.119467pt;}
.y45b_c00001{bottom:866.354613pt;}
.y6ca_c00001{bottom:866.357333pt;}
.y418_c00001{bottom:866.358347pt;}
.y712_c00001{bottom:866.358667pt;}
.y726_c00001{bottom:866.360000pt;}
.yd78_c00001{bottom:866.999467pt;}
.y5d5_c00001{bottom:867.000000pt;}
.y547_c00001{bottom:867.159467pt;}
.yf93_c00001{bottom:867.235387pt;}
.y58d_c00001{bottom:867.238347pt;}
.y5b7_c00001{bottom:867.239973pt;}
.y2e8_c00001{bottom:867.315173pt;}
.y2ae_c00001{bottom:867.319467pt;}
.y164_c00001{bottom:867.398347pt;}
.y7d9_c00001{bottom:867.399467pt;}
.y264_c00001{bottom:867.559467pt;}
.y17f8_c00001{bottom:867.798667pt;}
.y182b_c00001{bottom:867.800000pt;}
.ydd8_c00001{bottom:867.879333pt;}
.yfbe_c00001{bottom:868.039333pt;}
.y10f_c00001{bottom:868.359333pt;}
.y62d_c00001{bottom:868.517333pt;}
.y66b_c00001{bottom:868.518667pt;}
.y67e_c00001{bottom:868.520000pt;}
.y1497_c00001{bottom:868.523333pt;}
.y153b_c00001{bottom:868.602267pt;}
.y49_c00001{bottom:868.759333pt;}
.y30e_c00001{bottom:868.760107pt;}
.yda8_c00001{bottom:868.762053pt;}
.y6d0_c00001{bottom:868.850213pt;}
.yaf3_c00001{bottom:868.919467pt;}
.y689_c00001{bottom:868.998347pt;}
.y487_c00001{bottom:869.002347pt;}
.y12ad_c00001{bottom:869.084027pt;}
.y1bda_c00001{bottom:869.159467pt;}
.y18cb_c00001{bottom:869.319333pt;}
.y18a1_c00001{bottom:869.402507pt;}
.ye7f_c00001{bottom:869.884773pt;}
.y11f8_c00001{bottom:869.889467pt;}
.yb8a_c00001{bottom:869.959333pt;}
.y1b3f_c00001{bottom:870.121467pt;}
.y96e_c00001{bottom:870.199333pt;}
.y5d1_c00001{bottom:870.353173pt;}
.y1c28_c00001{bottom:870.496747pt;}
.y170d_c00001{bottom:870.519333pt;}
.y9b4_c00001{bottom:870.520000pt;}
.y16d5_c00001{bottom:870.524533pt;}
.y1c97_c00001{bottom:870.983067pt;}
.ye9b_c00001{bottom:871.080000pt;}
.y1af6_c00001{bottom:871.239333pt;}
.ya9e_c00001{bottom:871.240000pt;}
.y362_c00001{bottom:871.320000pt;}
.y1248_c00001{bottom:871.481573pt;}
.y313_c00001{bottom:871.559467pt;}
.y1a2d_c00001{bottom:871.642507pt;}
.ybc0_c00001{bottom:871.878667pt;}
.y19dd_c00001{bottom:872.357627pt;}
.y19aa_c00001{bottom:872.362187pt;}
.y1494_c00001{bottom:872.839467pt;}
.y1383_c00001{bottom:872.923467pt;}
.y1450_c00001{bottom:872.927467pt;}
.y913_c00001{bottom:873.236027pt;}
.y8c3_c00001{bottom:873.240107pt;}
.y1981_c00001{bottom:873.318347pt;}
.y164e_c00001{bottom:873.319467pt;}
.y165_c00001{bottom:873.559467pt;}
.yf1c_c00001{bottom:873.719467pt;}
.y4db_c00001{bottom:874.757333pt;}
.y522_c00001{bottom:874.758667pt;}
.y536_c00001{bottom:874.760000pt;}
.y140e_c00001{bottom:875.159467pt;}
.y489_c00001{bottom:875.162907pt;}
.y19e3_c00001{bottom:875.319333pt;}
.y8_c00001{bottom:875.319467pt;}
.yd39_c00001{bottom:875.399333pt;}
.y14f7_c00001{bottom:875.399467pt;}
.y13ba_c00001{bottom:875.479333pt;}
.y1382_c00001{bottom:875.479467pt;}
.y8c6_c00001{bottom:875.640000pt;}
.ya6_c00001{bottom:875.718667pt;}
.yfa_c00001{bottom:875.720000pt;}
.ybc2_c00001{bottom:875.879973pt;}
.yb0a_c00001{bottom:875.880000pt;}
.ybbf_c00001{bottom:875.881387pt;}
.y186c_c00001{bottom:875.959333pt;}
.y1341_c00001{bottom:875.964773pt;}
.yc9e_c00001{bottom:876.120000pt;}
.y3d1_c00001{bottom:876.280000pt;}
.y737_c00001{bottom:876.362347pt;}
.y15db_c00001{bottom:876.610987pt;}
.ya66_c00001{bottom:876.677333pt;}
.ya8d_c00001{bottom:876.678667pt;}
.ya95_c00001{bottom:876.680000pt;}
.y18ce_c00001{bottom:877.239467pt;}
.y1c0b_c00001{bottom:877.639467pt;}
.y102f_c00001{bottom:877.796827pt;}
.y1be9_c00001{bottom:877.875467pt;}
.y1be1_c00001{bottom:877.879467pt;}
.y1063_c00001{bottom:877.960000pt;}
.yaa_c00001{bottom:878.122347pt;}
.y1a5b_c00001{bottom:878.359333pt;}
.y1c5b_c00001{bottom:878.515467pt;}
.y823_c00001{bottom:878.597333pt;}
.y86a_c00001{bottom:878.598667pt;}
.y877_c00001{bottom:878.600000pt;}
.y45a_c00001{bottom:878.675733pt;}
.y417_c00001{bottom:878.679467pt;}
.y215_c00001{bottom:878.837333pt;}
.y24c_c00001{bottom:878.838667pt;}
.y255_c00001{bottom:878.840000pt;}
.ybf5_c00001{bottom:879.000000pt;}
.y1ac5_c00001{bottom:879.239467pt;}
.y784_c00001{bottom:879.323467pt;}
.y58c_c00001{bottom:879.559467pt;}
.y5b6_c00001{bottom:879.561093pt;}
.y163_c00001{bottom:879.719467pt;}
.yef4_c00001{bottom:879.798667pt;}
.yf19_c00001{bottom:879.800000pt;}
.y1123_c00001{bottom:879.863467pt;}
.y1145_c00001{bottom:879.878107pt;}
.yb0b_c00001{bottom:879.879333pt;}
.ye81_c00001{bottom:880.039333pt;}
.y259_c00001{bottom:880.200000pt;}
.y1a2f_c00001{bottom:880.522267pt;}
.yc52_c00001{bottom:880.600000pt;}
.ya65_c00001{bottom:880.679467pt;}
.y1650_c00001{bottom:880.835547pt;}
.y1539_c00001{bottom:880.919467pt;}
.y6cf_c00001{bottom:881.086213pt;}
.y688_c00001{bottom:881.319467pt;}
.y486_c00001{bottom:881.323467pt;}
.y827_c00001{bottom:881.482213pt;}
.y1b9d_c00001{bottom:881.639333pt;}
.yd0e_c00001{bottom:881.640000pt;}
.y1bcc_c00001{bottom:881.643707pt;}
.y17b8_c00001{bottom:882.279333pt;}
.y1102_c00001{bottom:882.279467pt;}
.y1aa2_c00001{bottom:882.837067pt;}
.yb46_c00001{bottom:882.840000pt;}
.y160c_c00001{bottom:883.079467pt;}
.y144c_c00001{bottom:883.319467pt;}
.yf69_c00001{bottom:883.399467pt;}
.y1c27_c00001{bottom:883.541387pt;}
.y1247_c00001{bottom:883.799333pt;}
.y1bd6_c00001{bottom:883.800000pt;}
.y1750_c00001{bottom:884.196933pt;}
.y11ac_c00001{bottom:884.440000pt;}
.yd5f_c00001{bottom:884.519467pt;}
.yc53_c00001{bottom:884.599467pt;}
.yf92_c00001{bottom:884.759467pt;}
.y1832_c00001{bottom:884.760000pt;}
.y96a_c00001{bottom:884.837333pt;}
.y99c_c00001{bottom:884.838667pt;}
.y9a3_c00001{bottom:884.840000pt;}
.y2e7_c00001{bottom:884.913733pt;}
.y2ad_c00001{bottom:884.918347pt;}
.y144f_c00001{bottom:885.163467pt;}
.y785_c00001{bottom:885.399467pt;}
.yd77_c00001{bottom:885.479467pt;}
.y1980_c00001{bottom:885.639467pt;}
.ycdc_c00001{bottom:886.196533pt;}
.yda7_c00001{bottom:886.359333pt;}
.y1af8_c00001{bottom:886.524400pt;}
.ye00_c00001{bottom:886.675253pt;}
.y30d_c00001{bottom:886.679467pt;}
.ydd7_c00001{bottom:886.682053pt;}
.yfbd_c00001{bottom:886.835253pt;}
.y216_c00001{bottom:887.399467pt;}
.yb57_c00001{bottom:887.479467pt;}
.y18a2_c00001{bottom:887.483467pt;}
.y4d9_c00001{bottom:887.640000pt;}
.y18ca_c00001{bottom:887.719333pt;}
.y1344_c00001{bottom:887.802213pt;}
.y17fc_c00001{bottom:887.802507pt;}
.ye27_c00001{bottom:887.879333pt;}
.y1708_c00001{bottom:887.880000pt;}
.y5d3_c00001{bottom:888.197333pt;}
.y5d0_c00001{bottom:888.199333pt;}
.y311_c00001{bottom:888.280000pt;}
.y9fa_c00001{bottom:888.437333pt;}
.ya29_c00001{bottom:888.438667pt;}
.ya2e_c00001{bottom:888.440000pt;}
.y736_c00001{bottom:888.598347pt;}
.y738_c00001{bottom:888.599467pt;}
.y96c_c00001{bottom:888.839467pt;}
.yb89_c00001{bottom:888.840000pt;}
.y9b3_c00001{bottom:889.157333pt;}
.y9e3_c00001{bottom:889.158667pt;}
.y29_c00001{bottom:889.159467pt;}
.y9eb_c00001{bottom:889.160000pt;}
.y1a2a_c00001{bottom:889.479467pt;}
.y13bc_c00001{bottom:889.556213pt;}
.y12ae_c00001{bottom:889.559467pt;}
.y12ac_c00001{bottom:889.638587pt;}
.y1947_c00001{bottom:889.639333pt;}
.y1a5c_c00001{bottom:889.639467pt;}
.ya9c_c00001{bottom:889.800000pt;}
.y15af_c00001{bottom:889.959333pt;}
.y415_c00001{bottom:889.960000pt;}
.y18a0_c00001{bottom:890.044907pt;}
.y4da_c00001{bottom:890.119333pt;}
.y7d4_c00001{bottom:890.200000pt;}
.y11fa_c00001{bottom:890.359333pt;}
.ye7e_c00001{bottom:890.439333pt;}
.ya9_c00001{bottom:890.443467pt;}
.y11cc_c00001{bottom:890.444027pt;}
.y3d2_c00001{bottom:890.919467pt;}
.yea0_c00001{bottom:891.076827pt;}
.y912_c00001{bottom:891.155387pt;}
.y8c2_c00001{bottom:891.159467pt;}
.y10b_c00001{bottom:891.160000pt;}
.y1a2e_c00001{bottom:891.239467pt;}
.yf51_c00001{bottom:891.319467pt;}
.y1be6_c00001{bottom:891.399467pt;}
.y1c0a_c00001{bottom:891.403467pt;}
.y783_c00001{bottom:891.559467pt;}
.y1be8_c00001{bottom:891.639467pt;}
.y1be0_c00001{bottom:891.643467pt;}
.y10ac_c00001{bottom:891.720000pt;}
.y1c1d_c00001{bottom:891.879467pt;}
.y1c5a_c00001{bottom:892.039467pt;}
.y190a_c00001{bottom:892.119467pt;}
.y1a2c_c00001{bottom:892.197067pt;}
.y19dc_c00001{bottom:892.594907pt;}
.y19a9_c00001{bottom:892.599467pt;}
.yb88_c00001{bottom:892.839467pt;}
.y6ce_c00001{bottom:893.322213pt;}
.y1c7a_c00001{bottom:893.399333pt;}
.y485_c00001{bottom:893.559467pt;}
.y826_c00001{bottom:893.718213pt;}
.ya9d_c00001{bottom:893.799333pt;}
.yb38_c00001{bottom:893.800000pt;}
.ybbe_c00001{bottom:893.800747pt;}
.y13b9_c00001{bottom:893.879333pt;}
.y14d6_c00001{bottom:893.962213pt;}
.yab2_c00001{bottom:894.437333pt;}
.yadd_c00001{bottom:894.438667pt;}
.yae4_c00001{bottom:894.440000pt;}
.y260_c00001{bottom:894.940107pt;}
.y10ab_c00001{bottom:895.319467pt;}
.y1571_c00001{bottom:895.639333pt;}
.y15a2_c00001{bottom:895.639787pt;}
.y14d3_c00001{bottom:896.044907pt;}
.yc9d_c00001{bottom:896.280000pt;}
.yab_c00001{bottom:896.518907pt;}
.y1340_c00001{bottom:896.519333pt;}
.y1c26_c00001{bottom:896.586027pt;}
.y190c_c00001{bottom:897.003467pt;}
.y15da_c00001{bottom:897.165547pt;}
.y2e6_c00001{bottom:897.234853pt;}
.y2ac_c00001{bottom:897.239467pt;}
.y1af7_c00001{bottom:897.241600pt;}
.y144e_c00001{bottom:897.399467pt;}
.y121d_c00001{bottom:897.798667pt;}
.y1244_c00001{bottom:897.800000pt;}
.y1065_c00001{bottom:897.958453pt;}
.ya64_c00001{bottom:898.038667pt;}
.ya94_c00001{bottom:898.040000pt;}
.y915_c00001{bottom:898.197227pt;}
.y8c5_c00001{bottom:898.201307pt;}
.y164b_c00001{bottom:898.279467pt;}
.y416_c00001{bottom:898.519333pt;}
.ya35_c00001{bottom:899.160000pt;}
.y16d2_c00001{bottom:899.319467pt;}
.y6d1_c00001{bottom:899.493413pt;}
.y10c_c00001{bottom:899.719467pt;}
.yef5_c00001{bottom:899.799333pt;}
.ybf3_c00001{bottom:899.800000pt;}
.y828_c00001{bottom:899.878773pt;}
.y1343_c00001{bottom:900.038213pt;}
.y1b9c_c00001{bottom:900.359333pt;}
.y1bcb_c00001{bottom:900.363707pt;}
.y735_c00001{bottom:900.919467pt;}
.yaf1_c00001{bottom:901.397333pt;}
.y160b_c00001{bottom:901.479467pt;}
.y144b_c00001{bottom:901.719467pt;}
.y13bb_c00001{bottom:901.877333pt;}
.ya63_c00001{bottom:902.039333pt;}
.y62a_c00001{bottom:902.280000pt;}
.y1493_c00001{bottom:902.602747pt;}
.ya8_c00001{bottom:902.679467pt;}
.y12e2_c00001{bottom:902.759467pt;}
.y19ed_c00001{bottom:902.919333pt;}
.y7_c00001{bottom:902.919467pt;}
.ya36_c00001{bottom:903.159467pt;}
.y361_c00001{bottom:903.239467pt;}
.y1833_c00001{bottom:903.479467pt;}
.yf91_c00001{bottom:903.555387pt;}
.y1680_c00001{bottom:903.642133pt;}
.y1bd7_c00001{bottom:903.798587pt;}
.ye26_c00001{bottom:903.798667pt;}
.y11ab_c00001{bottom:903.800000pt;}
.ybf2_c00001{bottom:903.800107pt;}
.y1490_c00001{bottom:903.879333pt;}
.y211_c00001{bottom:904.038667pt;}
.y254_c00001{bottom:904.040000pt;}
.yd76_c00001{bottom:904.195387pt;}
.ydff_c00001{bottom:904.199333pt;}
.ydd6_c00001{bottom:904.279333pt;}
.yfbc_c00001{bottom:904.359333pt;}
.y11af_c00001{bottom:904.443147pt;}
.y174f_c00001{bottom:904.519333pt;}
.y543_c00001{bottom:904.606347pt;}
.y7d6_c00001{bottom:904.923467pt;}
.yda6_c00001{bottom:905.155387pt;}
.y1c09_c00001{bottom:905.239467pt;}
.y1a4_c00001{bottom:905.321253pt;}
.y160_c00001{bottom:905.326213pt;}
.y1bdf_c00001{bottom:905.479467pt;}
.y6cd_c00001{bottom:905.643333pt;}
.yd0d_c00001{bottom:905.718667pt;}
.yd32_c00001{bottom:905.720000pt;}
.y17fd_c00001{bottom:905.798213pt;}
.y58b_c00001{bottom:905.799333pt;}
.y1cc_c00001{bottom:905.806347pt;}
.y825_c00001{bottom:906.039333pt;}
.y18c9_c00001{bottom:906.119333pt;}
.y14d5_c00001{bottom:906.283333pt;}
.ya1b_c00001{bottom:906.360000pt;}
.yf3a_c00001{bottom:906.438453pt;}
.y1122_c00001{bottom:906.669307pt;}
.y1144_c00001{bottom:906.683947pt;}
.y1831_c00001{bottom:906.997067pt;}
.y9f9_c00001{bottom:907.000000pt;}
.y25f_c00001{bottom:907.176107pt;}
.y9b2_c00001{bottom:907.720000pt;}
.y170a_c00001{bottom:907.878453pt;}
.y1946_c00001{bottom:908.039333pt;}
.y1536_c00001{bottom:908.039467pt;}
.y17fb_c00001{bottom:908.444907pt;}
.y190b_c00001{bottom:909.239467pt;}
.y5cc_c00001{bottom:909.400000pt;}
.y1530_c00001{bottom:909.479467pt;}
.y1c25_c00001{bottom:909.545547pt;}
.y17b7_c00001{bottom:909.879333pt;}
.yf50_c00001{bottom:909.879467pt;}
.ycdb_c00001{bottom:910.279333pt;}
.y1909_c00001{bottom:910.519467pt;}
.y189f_c00001{bottom:910.599467pt;}
.y11cd_c00001{bottom:910.919467pt;}
.ye4d_c00001{bottom:910.998587pt;}
.y7d7_c00001{bottom:910.999467pt;}
.y1866_c00001{bottom:911.080000pt;}
.y102e_c00001{bottom:911.717707pt;}
.yb36_c00001{bottom:911.718667pt;}
.y9b1_c00001{bottom:911.719467pt;}
.ybb7_c00001{bottom:911.720000pt;}
.y13b8_c00001{bottom:912.279333pt;}
.y1342_c00001{bottom:912.359333pt;}
.yb09_c00001{bottom:912.360000pt;}
.y933_c00001{bottom:912.364267pt;}
.y1865_c00001{bottom:912.442267pt;}
.y1a2b_c00001{bottom:912.839467pt;}
.y4d7_c00001{bottom:912.840000pt;}
.y309_c00001{bottom:912.913947pt;}
.y30c_c00001{bottom:912.919467pt;}
.yab1_c00001{bottom:913.000000pt;}
.y3cf_c00001{bottom:913.720000pt;}
.y1a5e_c00001{bottom:914.125200pt;}
.y781_c00001{bottom:914.357333pt;}
.y7c5_c00001{bottom:914.358667pt;}
.y1570_c00001{bottom:914.359333pt;}
.y15a1_c00001{bottom:914.359787pt;}
.y7c7_c00001{bottom:914.360000pt;}
.y1492_c00001{bottom:914.923867pt;}
.y411_c00001{bottom:915.160000pt;}
.y167f_c00001{bottom:915.319467pt;}
.yb37_c00001{bottom:915.719467pt;}
.y2e5_c00001{bottom:915.961253pt;}
.y2ab_c00001{bottom:915.962213pt;}
.y109_c00001{bottom:916.360000pt;}
.y1ac4_c00001{bottom:916.519333pt;}
.y14d2_c00001{bottom:916.599467pt;}
.y164a_c00001{bottom:916.679467pt;}
.y910_c00001{bottom:916.755573pt;}
.y8c1_c00001{bottom:916.759467pt;}
.y8be_c00001{bottom:916.760747pt;}
.y160e_c00001{bottom:916.766000pt;}
.y542_c00001{bottom:916.927467pt;}
.yab0_c00001{bottom:916.999467pt;}
.y133f_c00001{bottom:917.079467pt;}
.yc50_c00001{bottom:917.080000pt;}
.y7d5_c00001{bottom:917.159467pt;}
.y1a3_c00001{bottom:917.642373pt;}
.y15f_c00001{bottom:917.647333pt;}
.y1b98_c00001{bottom:917.718667pt;}
.y1bd3_c00001{bottom:917.720000pt;}
.y1221_c00001{bottom:917.794827pt;}
.y15d9_c00001{bottom:917.807947pt;}
.y6cc_c00001{bottom:917.879333pt;}
.y1a9e_c00001{bottom:918.040000pt;}
.yc9c_c00001{bottom:918.119333pt;}
.ycc9_c00001{bottom:918.122747pt;}
.y1cb_c00001{bottom:918.127467pt;}
.y1066_c00001{bottom:918.439333pt;}
.y14d4_c00001{bottom:918.519333pt;}
.yb45_c00001{bottom:918.600000pt;}
.y213_c00001{bottom:918.763467pt;}
.y686_c00001{bottom:918.766347pt;}
.y1bd9_c00001{bottom:919.317893pt;}
.ya62_c00001{bottom:919.397333pt;}
.y15b2_c00001{bottom:919.397893pt;}
.ya8c_c00001{bottom:919.398667pt;}
.ya93_c00001{bottom:919.400000pt;}
.y25e_c00001{bottom:919.412107pt;}
.y1c1c_c00001{bottom:919.479467pt;}
.y160a_c00001{bottom:919.879467pt;}
.yaf0_c00001{bottom:919.960000pt;}
.yf68_c00001{bottom:920.199467pt;}
.yc51_c00001{bottom:921.079467pt;}
.yd5e_c00001{bottom:921.319467pt;}
.y4d8_c00001{bottom:921.399467pt;}
.y1c96_c00001{bottom:921.549627pt;}
.y1289_c00001{bottom:921.639467pt;}
.yd75_c00001{bottom:921.719333pt;}
.ybf1_c00001{bottom:921.719467pt;}
.y1031_c00001{bottom:921.879333pt;}
.y170c_c00001{bottom:922.198213pt;}
.y1c24_c00001{bottom:922.590187pt;}
.yda5_c00001{bottom:922.679467pt;}
.y544_c00001{bottom:922.999467pt;}
.ydfe_c00001{bottom:923.002187pt;}
.ydd5_c00001{bottom:923.075387pt;}
.yfbb_c00001{bottom:923.155387pt;}
.y1864_c00001{bottom:923.159467pt;}
.y1538_c00001{bottom:923.322133pt;}
.ya61_c00001{bottom:923.399467pt;}
.y1707_c00001{bottom:923.402133pt;}
.y12ab_c00001{bottom:923.559467pt;}
.y1a5_c00001{bottom:923.717813pt;}
.y161_c00001{bottom:923.722773pt;}
.y1cd_c00001{bottom:924.199333pt;}
.y969_c00001{bottom:924.588667pt;}
.y1a5d_c00001{bottom:924.842400pt;}
.ya19_c00001{bottom:924.917333pt;}
.ya28_c00001{bottom:924.918667pt;}
.y214_c00001{bottom:924.919467pt;}
.ya2d_c00001{bottom:924.920000pt;}
.ye9f_c00001{bottom:924.997707pt;}
.ya1_c00001{bottom:925.480000pt;}
.y9f7_c00001{bottom:925.638667pt;}
.y1535_c00001{bottom:926.439467pt;}
.y1491_c00001{bottom:927.159867pt;}
.y77f_c00001{bottom:927.240000pt;}
.y1830_c00001{bottom:927.319467pt;}
.y160d_c00001{bottom:927.483200pt;}
.y4d6_c00001{bottom:927.559467pt;}
.y521_c00001{bottom:927.563947pt;}
.y15de_c00001{bottom:927.722133pt;}
.y1a9d_c00001{bottom:928.119467pt;}
.y137f_c00001{bottom:928.278347pt;}
.y2e4_c00001{bottom:928.282373pt;}
.y2aa_c00001{bottom:928.283333pt;}
.y148f_c00001{bottom:928.359333pt;}
.y3d0_c00001{bottom:928.439333pt;}
.y732_c00001{bottom:928.526347pt;}
.y589_c00001{bottom:928.600000pt;}
.ya1a_c00001{bottom:928.919467pt;}
.y17fa_c00001{bottom:928.999467pt;}
.y541_c00001{bottom:929.163467pt;}
.y81c_c00001{bottom:929.237333pt;}
.y868_c00001{bottom:929.238667pt;}
.y875_c00001{bottom:929.240000pt;}
.y30b_c00001{bottom:929.560000pt;}
.yd0c_c00001{bottom:929.800000pt;}
.y1a2_c00001{bottom:929.878373pt;}
.y412_c00001{bottom:929.879333pt;}
.y15e_c00001{bottom:929.883333pt;}
.y1bd8_c00001{bottom:930.119333pt;}
.y15b1_c00001{bottom:930.199333pt;}
.y12ee_c00001{bottom:930.359467pt;}
.y1ca_c00001{bottom:930.363467pt;}
.y1404_c00001{bottom:930.519333pt;}
.y6_c00001{bottom:930.519467pt;}
.y174c_c00001{bottom:930.679467pt;}
.y308_c00001{bottom:930.760107pt;}
.y1bdb_c00001{bottom:930.840000pt;}
.yb07_c00001{bottom:930.917333pt;}
.yb29_c00001{bottom:930.918667pt;}
.yb2e_c00001{bottom:930.920000pt;}
.y137e_c00001{bottom:930.924907pt;}
.y10a_c00001{bottom:930.999467pt;}
.y482_c00001{bottom:931.002347pt;}
.y15ae_c00001{bottom:931.079467pt;}
.y1867_c00001{bottom:931.087947pt;}
.y5ce_c00001{bottom:931.319467pt;}
.y5cb_c00001{bottom:931.320107pt;}
.y144a_c00001{bottom:931.562613pt;}
.y13b5_c00001{bottom:931.720000pt;}
.y821_c00001{bottom:931.726213pt;}
.y25d_c00001{bottom:931.733227pt;}
.y1064_c00001{bottom:931.879333pt;}
.y1ac3_c00001{bottom:932.440000pt;}
.yc9a_c00001{bottom:932.760000pt;}
.y1447_c00001{bottom:932.839467pt;}
.y1c1a_c00001{bottom:933.319467pt;}
.y1121_c00001{bottom:933.548347pt;}
.y1143_c00001{bottom:933.562987pt;}
.y1c57_c00001{bottom:933.715467pt;}
.yd0b_c00001{bottom:933.799333pt;}
.y1537_c00001{bottom:934.039333pt;}
.y1706_c00001{bottom:934.119333pt;}
.y629_c00001{bottom:934.199467pt;}
.ycda_c00001{bottom:934.359333pt;}
.y170b_c00001{bottom:934.519333pt;}
.y5cf_c00001{bottom:934.599467pt;}
.yb87_c00001{bottom:934.600000pt;}
.y90f_c00001{bottom:934.674933pt;}
.y8bd_c00001{bottom:934.680107pt;}
.y1649_c00001{bottom:935.079467pt;}
.y911_c00001{bottom:935.397467pt;}
.y8c0_c00001{bottom:935.399200pt;}
.y1c23_c00001{bottom:935.634827pt;}
.ya34_c00001{bottom:935.640000pt;}
.y780_c00001{bottom:935.799333pt;}
.y1b9b_c00001{bottom:936.278027pt;}
.yb44_c00001{bottom:936.520000pt;}
.yc9b_c00001{bottom:936.759467pt;}
.y687_c00001{bottom:937.159467pt;}
.yb55_c00001{bottom:937.240000pt;}
.ye25_c00001{bottom:937.560000pt;}
.y1b9a_c00001{bottom:937.719467pt;}
.yc4e_c00001{bottom:937.878667pt;}
.yc8c_c00001{bottom:937.880000pt;}
.y1782_c00001{bottom:937.962267pt;}
.y4d4_c00001{bottom:938.040000pt;}
.y1609_c00001{bottom:938.279467pt;}
.y15d8_c00001{bottom:938.362507pt;}
.y11ae_c00001{bottom:938.364027pt;}
.y15dd_c00001{bottom:938.439333pt;}
.yb86_c00001{bottom:938.599467pt;}
.ye78_c00001{bottom:938.920000pt;}
.y1062_c00001{bottom:939.002267pt;}
.ya33_c00001{bottom:939.639467pt;}
.yd4e_c00001{bottom:939.719467pt;}
.yf90_c00001{bottom:939.795387pt;}
.y7d1_c00001{bottom:939.960000pt;}
.ya4_c00001{bottom:940.118213pt;}
.yd74_c00001{bottom:940.119333pt;}
.yf39_c00001{bottom:940.359333pt;}
.y2e3_c00001{bottom:940.518373pt;}
.y2a9_c00001{bottom:940.519333pt;}
.y16d1_c00001{bottom:940.526800pt;}
.ydd4_c00001{bottom:940.599467pt;}
.yfba_c00001{bottom:940.679467pt;}
.y6c7_c00001{bottom:940.680000pt;}
.y731_c00001{bottom:940.847467pt;}
.yb56_c00001{bottom:941.159467pt;}
.y1af5_c00001{bottom:941.163467pt;}
.y540_c00001{bottom:941.399467pt;}
.yda4_c00001{bottom:941.482187pt;}
.y1709_c00001{bottom:941.799333pt;}
.yc4d_c00001{bottom:941.873307pt;}
.yc2f_c00001{bottom:941.878507pt;}
.yc30_c00001{bottom:941.879333pt;}
.y1a1_c00001{bottom:942.114373pt;}
.y15d_c00001{bottom:942.119333pt;}
.y7d3_c00001{bottom:942.363467pt;}
.y1c6_c00001{bottom:942.439333pt;}
.y968_c00001{bottom:942.508027pt;}
.y1c9_c00001{bottom:942.599467pt;}
.y483_c00001{bottom:943.319467pt;}
.y481_c00001{bottom:943.323467pt;}
.y58a_c00001{bottom:943.327333pt;}
.ya18_c00001{bottom:943.480000pt;}
.y1449_c00001{bottom:943.798613pt;}
.y820_c00001{bottom:943.962213pt;}
.y25c_c00001{bottom:943.969227pt;}
.y9b0_c00001{bottom:944.200000pt;}
.y48_c00001{bottom:944.279333pt;}
.y14f6_c00001{bottom:944.279467pt;}
.y28_c00001{bottom:944.359467pt;}
.ya60_c00001{bottom:944.679467pt;}
.y174e_c00001{bottom:944.766800pt;}
.y1534_c00001{bottom:944.839467pt;}
.y1bca_c00001{bottom:944.841253pt;}
.y1b97_c00001{bottom:944.842267pt;}
.ye4c_c00001{bottom:944.919467pt;}
.yed2_c00001{bottom:945.556267pt;}
.yea1_c00001{bottom:945.559467pt;}
.y102d_c00001{bottom:945.638587pt;}
.y1cbb_c00001{bottom:946.146869pt;}
.ya5_c00001{bottom:946.279333pt;}
.y932_c00001{bottom:946.285147pt;}
.y1c95_c00001{bottom:946.832907pt;}
.y1a9c_c00001{bottom:946.839467pt;}
.y1bd5_c00001{bottom:946.842267pt;}
.y1785_c00001{bottom:946.918347pt;}
.y733_c00001{bottom:946.922907pt;}
.y1c1b_c00001{bottom:947.079467pt;}
.y9f8_c00001{bottom:947.479467pt;}
.y14ce_c00001{bottom:947.734507pt;}
.y87e_c00001{bottom:948.123333pt;}
.yb35_c00001{bottom:948.197333pt;}
.yef1_c00001{bottom:948.280000pt;}
.y1c79_c00001{bottom:948.599333pt;}
.y307_c00001{bottom:948.679467pt;}
.y174b_c00001{bottom:949.079467pt;}
.y5ca_c00001{bottom:949.239467pt;}
.y87f_c00001{bottom:949.399467pt;}
.yaaf_c00001{bottom:949.480000pt;}
.y1061_c00001{bottom:949.719467pt;}
.y8bf_c00001{bottom:949.960000pt;}
.y261_c00001{bottom:950.119147pt;}
.y164d_c00001{bottom:950.358267pt;}
.y1446_c00001{bottom:951.239467pt;}
.y137d_c00001{bottom:951.479467pt;}
.y167e_c00001{bottom:951.723147pt;}
.y1220_c00001{bottom:951.730347pt;}
.y5cd_c00001{bottom:951.798667pt;}
.y1ac1_c00001{bottom:951.880000pt;}
.y1c65_c00001{bottom:952.185893pt;}
.y11b0_c00001{bottom:952.199333pt;}
.y1338_c00001{bottom:952.277333pt;}
.ya3_c00001{bottom:952.439333pt;}
.y77d_c00001{bottom:952.440000pt;}
.y90e_c00001{bottom:952.594293pt;}
.y8bc_c00001{bottom:952.599467pt;}
.y40f_c00001{bottom:952.680000pt;}
.y4d5_c00001{bottom:952.759467pt;}
.y16d0_c00001{bottom:952.762800pt;}
.yb08_c00001{bottom:952.839467pt;}
.y730_c00001{bottom:953.083467pt;}
.y15a_c00001{bottom:953.160000pt;}
.y1648_c00001{bottom:953.479467pt;}
.yc98_c00001{bottom:953.560000pt;}
.y102_c00001{bottom:953.800000pt;}
.yd0a_c00001{bottom:953.880000pt;}
.ybf0_c00001{bottom:954.197333pt;}
.yc1f_c00001{bottom:954.198667pt;}
.y30a_c00001{bottom:954.198747pt;}
.yc26_c00001{bottom:954.200000pt;}
.y7d2_c00001{bottom:954.599467pt;}
.y3cd_c00001{bottom:954.606347pt;}
.ycd9_c00001{bottom:955.080000pt;}
.y6c9_c00001{bottom:955.479467pt;}
.y1bc9_c00001{bottom:955.558453pt;}
.y480_c00001{bottom:955.559467pt;}
.y15c_c00001{bottom:955.563333pt;}
.y1647_c00001{bottom:955.719467pt;}
.y10ad_c00001{bottom:955.799333pt;}
.y1448_c00001{bottom:956.119733pt;}
.y81f_c00001{bottom:956.198213pt;}
.y25b_c00001{bottom:956.205227pt;}
.y9af_c00001{bottom:956.440000pt;}
.y1608_c00001{bottom:956.679467pt;}
.yf67_c00001{bottom:956.999467pt;}
.y174d_c00001{bottom:957.002800pt;}
.yf8f_c00001{bottom:957.319467pt;}
.yb85_c00001{bottom:957.480000pt;}
.y1bd4_c00001{bottom:957.559467pt;}
.yd09_c00001{bottom:957.799333pt;}
.y1405_c00001{bottom:957.959333pt;}
.y12e8_c00001{bottom:957.959467pt;}
.y19e2_c00001{bottom:958.119333pt;}
.y5_c00001{bottom:958.119467pt;}
.yd73_c00001{bottom:958.519333pt;}
.y1222_c00001{bottom:958.839467pt;}
.ye7a_c00001{bottom:958.917067pt;}
.ye9e_c00001{bottom:958.918587pt;}
.yda3_c00001{bottom:959.079467pt;}
.y1784_c00001{bottom:959.239467pt;}
.ydd3_c00001{bottom:959.395387pt;}
.y1869_c00001{bottom:959.403467pt;}
.ye49_c00001{bottom:959.560000pt;}
.yc4c_c00001{bottom:959.719467pt;}
.y967_c00001{bottom:960.427387pt;}
.y1142_c00001{bottom:960.442027pt;}
.y77e_c00001{bottom:960.999467pt;}
.y164c_c00001{bottom:961.075467pt;}
.y1c56_c00001{bottom:961.315467pt;}
.y410_c00001{bottom:961.479467pt;}
.y87d_c00001{bottom:961.959333pt;}
.y9f6_c00001{bottom:962.040000pt;}
.y148b_c00001{bottom:962.599467pt;}
.ya5f_c00001{bottom:962.680000pt;}
.y53e_c00001{bottom:964.200000pt;}
.y1cb7_c00001{bottom:964.405333pt;}
.y1c64_c00001{bottom:965.230533pt;}
.y72f_c00001{bottom:965.319467pt;}
.y1c7_c00001{bottom:965.400000pt;}
.y14d1_c00001{bottom:966.201147pt;}
.yb34_c00001{bottom:966.760000pt;}
.y3cc_c00001{bottom:966.842347pt;}
.y105e_c00001{bottom:967.000000pt;}
.y40b_c00001{bottom:967.079467pt;}
.yb06_c00001{bottom:967.397333pt;}
.yb28_c00001{bottom:967.398667pt;}
.yb2d_c00001{bottom:967.400000pt;}
.y174a_c00001{bottom:967.479467pt;}
.y459_c00001{bottom:967.558107pt;}
.y40e_c00001{bottom:967.559467pt;}
.y1945_c00001{bottom:967.563200pt;}
.y18c8_c00001{bottom:967.563333pt;}
.y15b_c00001{bottom:967.799333pt;}
.y14cd_c00001{bottom:968.289067pt;}
.y1cba_c00001{bottom:968.468933pt;}
.y210_c00001{bottom:968.515707pt;}
.y81e_c00001{bottom:968.519333pt;}
.y8bb_c00001{bottom:968.520000pt;}
.y107_c00001{bottom:968.526347pt;}
.y1a29_c00001{bottom:968.766000pt;}
.y13b7_c00001{bottom:969.723333pt;}
.y5c7_c00001{bottom:970.360000pt;}
.y148e_c00001{bottom:970.526080pt;}
.y305_c00001{bottom:970.920000pt;}
.y156f_c00001{bottom:970.922267pt;}
.ye22_c00001{bottom:971.237333pt;}
.y11a7_c00001{bottom:971.238667pt;}
.y11aa_c00001{bottom:971.240000pt;}
.y1868_c00001{bottom:971.639467pt;}
.y1746_c00001{bottom:971.879333pt;}
.y1531_c00001{bottom:971.879467pt;}
.ya32_c00001{bottom:972.120000pt;}
.y121f_c00001{bottom:972.284907pt;}
.y90d_c00001{bottom:972.516587pt;}
.y8ba_c00001{bottom:972.519333pt;}
.y53f_c00001{bottom:972.759467pt;}
.y1af2_c00001{bottom:972.840000pt;}
.yb43_c00001{bottom:973.000000pt;}
.y3ce_c00001{bottom:973.002907pt;}
.yb54_c00001{bottom:973.638667pt;}
.y133c_c00001{bottom:973.887333pt;}
.ybec_c00001{bottom:974.357333pt;}
.yc1e_c00001{bottom:974.358667pt;}
.y5c9_c00001{bottom:974.359333pt;}
.yc25_c00001{bottom:974.360000pt;}
.y822_c00001{bottom:974.605413pt;}
.y1c55_c00001{bottom:975.079467pt;}
.yc99_c00001{bottom:975.399467pt;}
.yc97_c00001{bottom:975.404107pt;}
.y4d2_c00001{bottom:975.480000pt;}
.y1c15_c00001{bottom:975.798667pt;}
.yf8e_c00001{bottom:976.119333pt;}
.y1b6d_c00001{bottom:976.279333pt;}
.yd4d_c00001{bottom:976.519467pt;}
.y182f_c00001{bottom:976.763467pt;}
.ydd2_c00001{bottom:976.919467pt;}
.y1704_c00001{bottom:976.920000pt;}
.yd72_c00001{bottom:977.319467pt;}
.y7cc_c00001{bottom:977.400000pt;}
.y1cbc_c00001{bottom:977.478096pt;}
.y1a27_c00001{bottom:977.639467pt;}
.y77b_c00001{bottom:977.640000pt;}
.yda2_c00001{bottom:977.795387pt;}
.y1c63_c00001{bottom:978.275173pt;}
.y966_c00001{bottom:978.346747pt;}
.ybef_c00001{bottom:978.353813pt;}
.y40c_c00001{bottom:978.360000pt;}
.y9ae_c00001{bottom:978.361387pt;}
.y14d0_c00001{bottom:978.522267pt;}
.yd08_c00001{bottom:978.600000pt;}
.y520_c00001{bottom:978.681227pt;}
.y4d1_c00001{bottom:978.683467pt;}
.y27_c00001{bottom:978.759467pt;}
.yf0_c00001{bottom:978.841067pt;}
.ya0_c00001{bottom:978.843467pt;}
.y3cb_c00001{bottom:979.078347pt;}
.ye7b_c00001{bottom:979.479467pt;}
.y1a28_c00001{bottom:979.483200pt;}
.ye4b_c00001{bottom:979.559467pt;}
.y1944_c00001{bottom:979.799200pt;}
.y18c7_c00001{bottom:979.799333pt;}
.y1908_c00001{bottom:979.958213pt;}
.ya17_c00001{bottom:979.960000pt;}
.y1c8_c00001{bottom:980.119333pt;}
.y931_c00001{bottom:980.206027pt;}
.y106_c00001{bottom:980.762347pt;}
.y137c_c00001{bottom:980.930933pt;}
.y148a_c00001{bottom:980.999467pt;}
.yb84_c00001{bottom:981.000000pt;}
.y156e_c00001{bottom:981.639467pt;}
.y13b6_c00001{bottom:981.959333pt;}
.yd07_c00001{bottom:982.599467pt;}
.y148d_c00001{bottom:982.847200pt;}
.yef3_c00001{bottom:984.119333pt;}
.ya5e_c00001{bottom:984.677333pt;}
.ya8b_c00001{bottom:984.678667pt;}
.ya92_c00001{bottom:984.680000pt;}
.y4d3_c00001{bottom:984.839467pt;}
.yb83_c00001{bottom:984.999467pt;}
.y1445_c00001{bottom:985.002480pt;}
.y1c78_c00001{bottom:985.399333pt;}
.y12e1_c00001{bottom:985.559467pt;}
.y4_c00001{bottom:985.719467pt;}
.y1060_c00001{bottom:985.799333pt;}
.y17f7_c00001{bottom:985.963333pt;}
.y133b_c00001{bottom:986.123333pt;}
.y77c_c00001{bottom:986.199333pt;}
.y1442_c00001{bottom:986.279467pt;}
.y1747_c00001{bottom:986.837333pt;}
.y108_c00001{bottom:986.919467pt;}
.y1b3d_c00001{bottom:987.162133pt;}
.y1533_c00001{bottom:987.164267pt;}
.y1120_c00001{bottom:987.233227pt;}
.y1141_c00001{bottom:987.247867pt;}
.ya5d_c00001{bottom:988.667947pt;}
.y1c59_c00001{bottom:988.675467pt;}
.y14cc_c00001{bottom:988.843627pt;}
.y1c54_c00001{bottom:988.915467pt;}
.y182e_c00001{bottom:988.999467pt;}
.y105d_c00001{bottom:989.322187pt;}
.y53a_c00001{bottom:989.400000pt;}
.y137a_c00001{bottom:990.279467pt;}
.y159_c00001{bottom:990.600000pt;}
.y14cf_c00001{bottom:990.758267pt;}
.y51f_c00001{bottom:990.917227pt;}
.y4d0_c00001{bottom:990.919467pt;}
.yef_c00001{bottom:991.077067pt;}
.y9f_c00001{bottom:991.079467pt;}
.y1c62_c00001{bottom:991.234693pt;}
.y3ca_c00001{bottom:991.399467pt;}
.y1af3_c00001{bottom:991.482133pt;}
.yb41_c00001{bottom:991.560000pt;}
.y1606_c00001{bottom:992.039467pt;}
.y1907_c00001{bottom:992.279333pt;}
.ya16_c00001{bottom:992.280000pt;}
.y7ce_c00001{bottom:992.518347pt;}
.y304_c00001{bottom:992.759467pt;}
.ye9d_c00001{bottom:992.839467pt;}
.y105_c00001{bottom:992.998347pt;}
.y137b_c00001{bottom:993.166933pt;}
.yf8d_c00001{bottom:994.359333pt;}
.yf66_c00001{bottom:994.439467pt;}
.yd5d_c00001{bottom:994.919467pt;}
.y148c_c00001{bottom:995.083200pt;}
.y16cf_c00001{bottom:995.163467pt;}
.yda1_c00001{bottom:995.319467pt;}
.yb42_c00001{bottom:995.559467pt;}
.yb40_c00001{bottom:995.563387pt;}
.ydfd_c00001{bottom:995.642187pt;}
.ydd1_c00001{bottom:995.715387pt;}
.y965_c00001{bottom:996.192907pt;}
.ybee_c00001{bottom:996.199973pt;}
.y9ad_c00001{bottom:996.207547pt;}
.y1749_c00001{bottom:997.323467pt;}
.y1444_c00001{bottom:997.323600pt;}
.y1c94_c00001{bottom:997.399467pt;}
.y1b3c_c00001{bottom:997.879333pt;}
.y1532_c00001{bottom:997.881467pt;}
.y17f6_c00001{bottom:998.199333pt;}
.y133a_c00001{bottom:998.359333pt;}
.y7d0_c00001{bottom:998.679467pt;}
.y40d_c00001{bottom:999.158907pt;}
.y1489_c00001{bottom:999.399467pt;}
.y121c_c00001{bottom:1000.042267pt;}
.y1af1_c00001{bottom:1000.439333pt;}
.y4cd_c00001{bottom:1002.197333pt;}
.y51d_c00001{bottom:1002.198667pt;}
.y534_c00001{bottom:1002.200000pt;}
.y1c58_c00001{bottom:1002.439467pt;}
.y1c53_c00001{bottom:1002.679467pt;}
.y9d_c00001{bottom:1002.840000pt;}
.ye21_c00001{bottom:1003.159467pt;}
.yb33_c00001{bottom:1003.240000pt;}
.yd06_c00001{bottom:1003.320000pt;}
.y1c77_c00001{bottom:1003.799333pt;}
.y1c61_c00001{bottom:1004.279333pt;}
.yb82_c00001{bottom:1004.520000pt;}
.y53c_c00001{bottom:1004.679467pt;}
.y7cd_c00001{bottom:1004.839467pt;}
.y4cf_c00001{bottom:1004.919467pt;}
.y104_c00001{bottom:1005.319467pt;}
.y5c6_c00001{bottom:1006.840000pt;}
.yd05_c00001{bottom:1007.319307pt;}
.yb81_c00001{bottom:1008.519787pt;}
.y1379_c00001{bottom:1008.679467pt;}
.y8b9_c00001{bottom:1008.999467pt;}
.y14cb_c00001{bottom:1009.486027pt;}
.y105c_c00001{bottom:1009.559467pt;}
.y1443_c00001{bottom:1009.559600pt;}
.y121b_c00001{bottom:1010.759467pt;}
.y9e_c00001{bottom:1011.399467pt;}
.y47_c00001{bottom:1013.079467pt;}
.y12f3_c00001{bottom:1013.159467pt;}
.y26_c00001{bottom:1013.239467pt;}
.y3_c00001{bottom:1013.319467pt;}
.y964_c00001{bottom:1014.112267pt;}
.ybed_c00001{bottom:1014.119333pt;}
.y930_c00001{bottom:1014.126907pt;}
.y1c76_c00001{bottom:1025.560747pt;}
.y25_c00001{bottom:1043.480107pt;}
.y46_c00001{bottom:1060.599467pt;}
.y2_c00001{bottom:1061.399467pt;}
.y8b8_c00001{bottom:1061.879333pt;}
.h9c_c00001{height:6.880000pt;}
.h9a_c00001{height:6.960000pt;}
.h25_c00001{height:12.240000pt;}
.h36_c00001{height:12.317333pt;}
.h39_c00001{height:12.318667pt;}
.h34_c00001{height:12.320000pt;}
.h184_c00001{height:13.760000pt;}
.h38_c00001{height:13.840000pt;}
.h32_c00001{height:13.998667pt;}
.h8e_c00001{height:17.837333pt;}
.h84_c00001{height:17.838667pt;}
.h86_c00001{height:17.840000pt;}
.h6e_c00001{height:17.920000pt;}
.h6b_c00001{height:17.921333pt;}
.h6f_c00001{height:17.922667pt;}
.h87_c00001{height:18.000000pt;}
.hea_c00001{height:18.400000pt;}
.h4b_c00001{height:18.401333pt;}
.h6_c00001{height:18.402667pt;}
.h89_c00001{height:18.640000pt;}
.h4a_c00001{height:19.997333pt;}
.h44_c00001{height:19.998667pt;}
.h45_c00001{height:20.000000pt;}
.ha7_c00001{height:20.080000pt;}
.ha5_c00001{height:20.081333pt;}
.ha6_c00001{height:20.082667pt;}
.ha4_c00001{height:20.160000pt;}
.h73_c00001{height:20.478667pt;}
.h68_c00001{height:20.560000pt;}
.h6d_c00001{height:20.561333pt;}
.h6c_c00001{height:20.562667pt;}
.h93_c00001{height:21.280000pt;}
.h95_c00001{height:21.281333pt;}
.h96_c00001{height:21.282667pt;}
.h92_c00001{height:21.360000pt;}
.h72_c00001{height:22.640000pt;}
.ha0_c00001{height:22.800000pt;}
.ha2_c00001{height:22.877333pt;}
.h9e_c00001{height:22.878667pt;}
.h9d_c00001{height:22.880000pt;}
.h8a_c00001{height:23.680000pt;}
.hac_c00001{height:24.000000pt;}
.ha9_c00001{height:24.077333pt;}
.haa_c00001{height:24.078667pt;}
.hab_c00001{height:24.080000pt;}
.hf_c00001{height:24.480000pt;}
.h19_c00001{height:24.557333pt;}
.h11_c00001{height:24.558667pt;}
.h2a_c00001{height:24.560000pt;}
.h1d_c00001{height:24.960000pt;}
.h37_c00001{height:25.038667pt;}
.h3a_c00001{height:25.040000pt;}
.h60_c00001{height:25.200000pt;}
.h61_c00001{height:25.997333pt;}
.h63_c00001{height:25.998667pt;}
.h64_c00001{height:26.000000pt;}
.h3b_c00001{height:26.480000pt;}
.h16_c00001{height:27.600000pt;}
.h5d_c00001{height:27.917333pt;}
.h98_c00001{height:29.120000pt;}
.h7_c00001{height:32.718667pt;}
.h4c_c00001{height:32.720000pt;}
.h185_c00001{height:35.099531pt;}
.h43_c00001{height:35.760000pt;}
.h83_c00001{height:35.837333pt;}
.h69_c00001{height:35.838667pt;}
.h47_c00001{height:35.840000pt;}
.h3d_c00001{height:36.720000pt;}
.h10_c00001{height:36.797333pt;}
.h1e_c00001{height:36.798667pt;}
.he_c00001{height:36.800000pt;}
.h26_c00001{height:36.960000pt;}
.h5b_c00001{height:37.040000pt;}
.h16e_c00001{height:37.518667pt;}
.h65_c00001{height:37.997333pt;}
.h5f_c00001{height:38.000000pt;}
.h191_c00001{height:39.030469pt;}
.hcb_c00001{height:39.585938pt;}
.hb0_c00001{height:39.948480pt;}
.h154_c00001{height:39.949013pt;}
.h175_c00001{height:39.950080pt;}
.hef_c00001{height:40.160000pt;}
.hf6_c00001{height:40.560000pt;}
.h129_c00001{height:40.574531pt;}
.h124_c00001{height:40.584960pt;}
.h17_c00001{height:41.357333pt;}
.h125_c00001{height:41.857920pt;}
.h12f_c00001{height:42.194880pt;}
.h112_c00001{height:43.968000pt;}
.h4d_c00001{height:44.080000pt;}
.h9_c00001{height:44.081333pt;}
.h35_c00001{height:44.388750pt;}
.h12c_c00001{height:44.441280pt;}
.h116_c00001{height:44.740800pt;}
.h2_c00001{height:44.800000pt;}
.h101_c00001{height:44.801333pt;}
.ha_c00001{height:45.411520pt;}
.h121_c00001{height:45.438667pt;}
.h15e_c00001{height:45.440000pt;}
.h17c_c00001{height:45.520000pt;}
.h67_c00001{height:48.267324pt;}
.h77_c00001{height:48.271804pt;}
.h3_c00001{height:48.294844pt;}
.h12_c00001{height:49.037333pt;}
.h1a_c00001{height:49.038667pt;}
.h1b_c00001{height:49.040000pt;}
.hc_c00001{height:49.120000pt;}
.h29_c00001{height:49.121333pt;}
.h21_c00001{height:49.122667pt;}
.h7e_c00001{height:49.997333pt;}
.h7d_c00001{height:49.998667pt;}
.h82_c00001{height:50.000000pt;}
.h140_c00001{height:50.400000pt;}
.h137_c00001{height:50.477333pt;}
.h13c_c00001{height:50.478667pt;}
.h13e_c00001{height:50.480000pt;}
.h7f_c00001{height:50.958667pt;}
.hb_c00001{height:51.216000pt;}
.h179_c00001{height:52.134844pt;}
.ha1_c00001{height:53.680000pt;}
.h94_c00001{height:53.681333pt;}
.ha8_c00001{height:53.682667pt;}
.ha3_c00001{height:53.760000pt;}
.hdf_c00001{height:54.480000pt;}
.h167_c00001{height:54.557333pt;}
.h109_c00001{height:54.558667pt;}
.h150_c00001{height:54.560000pt;}
.h10d_c00001{height:55.011520pt;}
.hf5_c00001{height:55.200000pt;}
.h12e_c00001{height:56.768000pt;}
.h17d_c00001{height:58.214310pt;}
.h16a_c00001{height:59.165990pt;}
.h143_c00001{height:59.174310pt;}
.he0_c00001{height:59.492053pt;}
.h170_c00001{height:59.598667pt;}
.h134_c00001{height:59.950400pt;}
.h17f_c00001{height:59.951360pt;}
.h162_c00001{height:59.966613pt;}
.h12b_c00001{height:59.967467pt;}
.hf9_c00001{height:59.968000pt;}
.h110_c00001{height:59.968533pt;}
.h118_c00001{height:59.980800pt;}
.h158_c00001{height:59.981013pt;}
.h11a_c00001{height:59.981440pt;}
.h117_c00001{height:59.981547pt;}
.h15a_c00001{height:59.982187pt;}
.h6a_c00001{height:60.318667pt;}
.hdd_c00001{height:60.400000pt;}
.hca_c00001{height:60.401333pt;}
.h88_c00001{height:60.800000pt;}
.h19a_c00001{height:60.802804pt;}
.h30_c00001{height:61.277333pt;}
.h31_c00001{height:61.278667pt;}
.h2f_c00001{height:61.280000pt;}
.h2c_c00001{height:61.360000pt;}
.h27_c00001{height:61.361333pt;}
.h74_c00001{height:61.362667pt;}
.h51_c00001{height:61.997333pt;}
.h53_c00001{height:61.998667pt;}
.h54_c00001{height:62.000000pt;}
.h8_c00001{height:62.483520pt;}
.h42_c00001{height:63.040000pt;}
.h52_c00001{height:63.041333pt;}
.h50_c00001{height:63.042667pt;}
.h192_c00001{height:63.479040pt;}
.h12a_c00001{height:64.584000pt;}
.h199_c00001{height:66.654436pt;}
.h5_c00001{height:66.750000pt;}
.h166_c00001{height:67.134720pt;}
.h164_c00001{height:67.157013pt;}
.hb8_c00001{height:67.840000pt;}
.hc1_c00001{height:67.841333pt;}
.hb2_c00001{height:67.842667pt;}
.hd4_c00001{height:67.920000pt;}
.h4_c00001{height:68.288000pt;}
.h15_c00001{height:68.957333pt;}
.h14_c00001{height:68.960000pt;}
.h1c_c00001{height:69.713280pt;}
.h22_c00001{height:70.021653pt;}
.hd_c00001{height:70.053760pt;}
.h3c_c00001{height:70.096320pt;}
.h161_c00001{height:70.348480pt;}
.h160_c00001{height:70.349547pt;}
.h173_c00001{height:70.686613pt;}
.h9f_c00001{height:71.597333pt;}
.h8d_c00001{height:71.598667pt;}
.h99_c00001{height:71.600000pt;}
.h97_c00001{height:71.682667pt;}
.hae_c00001{height:71.981872pt;}
.h57_c00001{height:72.291520pt;}
.h2d_c00001{height:73.600000pt;}
.h3e_c00001{height:73.601333pt;}
.h59_c00001{height:73.602667pt;}
.h85_c00001{height:73.760000pt;}
.h177_c00001{height:73.894310pt;}
.h62_c00001{height:73.998667pt;}
.h4f_c00001{height:74.000000pt;}
.h80_c00001{height:74.960000pt;}
.hf4_c00001{height:75.041333pt;}
.hda_c00001{height:75.120000pt;}
.hbf_c00001{height:75.545600pt;}
.hc2_c00001{height:75.549120pt;}
.h16f_c00001{height:77.030187pt;}
.h14b_c00001{height:77.076053pt;}
.h148_c00001{height:77.091520pt;}
.h155_c00001{height:77.387947pt;}
.h11f_c00001{height:77.388480pt;}
.h120_c00001{height:77.389013pt;}
.h108_c00001{height:77.416320pt;}
.h114_c00001{height:77.725440pt;}
.hce_c00001{height:79.120000pt;}
.h19c_c00001{height:81.637166pt;}
.h131_c00001{height:82.198080pt;}
.he3_c00001{height:82.864640pt;}
.h105_c00001{height:83.464853pt;}
.hfe_c00001{height:84.109760pt;}
.h138_c00001{height:84.130987pt;}
.hf3_c00001{height:84.131520pt;}
.h151_c00001{height:84.132053pt;}
.h115_c00001{height:85.700160pt;}
.h41_c00001{height:85.840000pt;}
.h3f_c00001{height:85.841333pt;}
.h5e_c00001{height:85.842667pt;}
.h13_c00001{height:85.920000pt;}
.h16b_c00001{height:86.027217pt;}
.h156_c00001{height:86.037120pt;}
.h168_c00001{height:86.043644pt;}
.hb9_c00001{height:86.051520pt;}
.he6_c00001{height:86.052053pt;}
.hb1_c00001{height:86.055040pt;}
.hbd_c00001{height:86.056320pt;}
.hc7_c00001{height:86.059840pt;}
.hd6_c00001{height:86.353920pt;}
.hd3_c00001{height:86.357440pt;}
.hb3_c00001{height:86.370987pt;}
.hc5_c00001{height:86.371520pt;}
.hc6_c00001{height:86.372053pt;}
.hb7_c00001{height:86.374507pt;}
.hba_c00001{height:86.375040pt;}
.hd5_c00001{height:86.375573pt;}
.h139_c00001{height:86.380604pt;}
.h10c_c00001{height:86.836800pt;}
.h75_c00001{height:86.958667pt;}
.h10b_c00001{height:87.173760pt;}
.h183_c00001{height:87.360000pt;}
.h15c_c00001{height:88.397333pt;}
.hbb_c00001{height:88.398667pt;}
.hc0_c00001{height:88.400000pt;}
.hc3_c00001{height:88.480000pt;}
.hd1_c00001{height:88.481333pt;}
.hcf_c00001{height:88.482667pt;}
.h70_c00001{height:89.520000pt;}
.hf0_c00001{height:90.556800pt;}
.hf8_c00001{height:90.558293pt;}
.hd2_c00001{height:90.562560pt;}
.he5_c00001{height:90.564587pt;}
.hd0_c00001{height:90.565120pt;}
.he7_c00001{height:90.566827pt;}
.h10a_c00001{height:90.585067pt;}
.haf_c00001{height:90.905600pt;}
.h159_c00001{height:92.901760pt;}
.h157_c00001{height:92.916800pt;}
.h2e_c00001{height:94.355520pt;}
.h5c_c00001{height:94.398080pt;}
.h33_c00001{height:94.696000pt;}
.h174_c00001{height:95.340604pt;}
.h102_c00001{height:95.680000pt;}
.hed_c00001{height:95.681333pt;}
.h11d_c00001{height:95.682667pt;}
.h144_c00001{height:95.760000pt;}
.h19b_c00001{height:95.966265pt;}
.h16c_c00001{height:96.115200pt;}
.h169_c00001{height:96.128000pt;}
.h66_c00001{height:98.081333pt;}
.h81_c00001{height:98.160000pt;}
.h20_c00001{height:98.851520pt;}
.h113_c00001{height:99.128960pt;}
.h12d_c00001{height:99.148480pt;}
.h106_c00001{height:99.532160pt;}
.hff_c00001{height:99.545600pt;}
.h163_c00001{height:100.720000pt;}
.hdc_c00001{height:100.780587pt;}
.hdb_c00001{height:100.781120pt;}
.h165_c00001{height:100.800000pt;}
.hf7_c00001{height:101.717653pt;}
.h10e_c00001{height:101.718187pt;}
.hf2_c00001{height:101.760000pt;}
.h100_c00001{height:102.836800pt;}
.h119_c00001{height:102.847253pt;}
.h178_c00001{height:103.943680pt;}
.hcd_c00001{height:104.956373pt;}
.hfd_c00001{height:105.905387pt;}
.h16d_c00001{height:107.147947pt;}
.h11b_c00001{height:107.148480pt;}
.h11c_c00001{height:107.153280pt;}
.h172_c00001{height:107.153813pt;}
.h9b_c00001{height:107.358667pt;}
.h49_c00001{height:107.441333pt;}
.h171_c00001{height:107.453013pt;}
.h17a_c00001{height:107.469013pt;}
.h198_c00001{height:107.960000pt;}
.h107_c00001{height:108.450987pt;}
.he4_c00001{height:108.960000pt;}
.hc4_c00001{height:109.038667pt;}
.hde_c00001{height:109.040000pt;}
.h13a_c00001{height:111.006187pt;}
.h14d_c00001{height:111.282667pt;}
.h14f_c00001{height:111.365120pt;}
.h135_c00001{height:111.370667pt;}
.h132_c00001{height:111.385067pt;}
.h145_c00001{height:111.385600pt;}
.h147_c00001{height:111.391040pt;}
.h18a_c00001{height:111.437333pt;}
.h18d_c00001{height:111.438667pt;}
.h18f_c00001{height:111.440000pt;}
.h7c_c00001{height:111.761333pt;}
.h194_c00001{height:112.114669pt;}
.h46_c00001{height:113.600000pt;}
.h133_c00001{height:113.889920pt;}
.h104_c00001{height:113.890453pt;}
.hfc_c00001{height:113.890987pt;}
.hfb_c00001{height:113.891520pt;}
.h103_c00001{height:113.892053pt;}
.h136_c00001{height:114.211520pt;}
.hfa_c00001{height:114.212053pt;}
.h146_c00001{height:114.231253pt;}
.h15f_c00001{height:116.237333pt;}
.h142_c00001{height:116.238667pt;}
.h15b_c00001{height:116.240000pt;}
.h149_c00001{height:116.320000pt;}
.h11e_c00001{height:116.321333pt;}
.h15d_c00001{height:116.322667pt;}
.h111_c00001{height:118.073280pt;}
.h10f_c00001{height:118.084587pt;}
.h153_c00001{height:118.085653pt;}
.h13b_c00001{height:118.425067pt;}
.h14a_c00001{height:118.425600pt;}
.h13d_c00001{height:118.431680pt;}
.h14c_c00001{height:118.432213pt;}
.h197_c00001{height:121.571823pt;}
.hee_c00001{height:122.400000pt;}
.h48_c00001{height:125.280000pt;}
.h71_c00001{height:126.558667pt;}
.h2b_c00001{height:128.080000pt;}
.h28_c00001{height:128.081333pt;}
.h1f_c00001{height:128.082667pt;}
.hd9_c00001{height:129.600000pt;}
.h17b_c00001{height:132.608000pt;}
.h17e_c00001{height:132.622613pt;}
.h195_c00001{height:135.095289pt;}
.he1_c00001{height:135.677333pt;}
.hbc_c00001{height:135.678667pt;}
.hb5_c00001{height:135.680000pt;}
.hb6_c00001{height:135.761333pt;}
.h130_c00001{height:136.878667pt;}
.h127_c00001{height:136.880000pt;}
.h176_c00001{height:137.869547pt;}
.h13f_c00001{height:138.641333pt;}
.h79_c00001{height:139.920000pt;}
.heb_c00001{height:142.960000pt;}
.h8c_c00001{height:143.200000pt;}
.had_c00001{height:143.201333pt;}
.h8b_c00001{height:143.202667pt;}
.h40_c00001{height:147.197333pt;}
.h76_c00001{height:147.840000pt;}
.hd8_c00001{height:150.160000pt;}
.he2_c00001{height:150.240000pt;}
.h7b_c00001{height:151.520000pt;}
.hc9_c00001{height:156.240000pt;}
.hc8_c00001{height:156.317333pt;}
.hcc_c00001{height:156.318667pt;}
.hb4_c00001{height:156.320000pt;}
.h19d_c00001{height:156.578162pt;}
.h126_c00001{height:157.440000pt;}
.h141_c00001{height:161.440000pt;}
.h193_c00001{height:168.171719pt;}
.hec_c00001{height:169.600000pt;}
.h14e_c00001{height:170.801333pt;}
.h78_c00001{height:173.040000pt;}
.h23_c00001{height:173.760000pt;}
.hbe_c00001{height:176.800000pt;}
.he8_c00001{height:176.801333pt;}
.h128_c00001{height:182.080000pt;}
.h7a_c00001{height:187.920000pt;}
.h181_c00001{height:193.200000pt;}
.h90_c00001{height:196.960000pt;}
.h8f_c00001{height:196.961333pt;}
.h122_c00001{height:197.441333pt;}
.h123_c00001{height:198.640000pt;}
.hd7_c00001{height:203.520000pt;}
.he9_c00001{height:203.598667pt;}
.h18b_c00001{height:206.958667pt;}
.h190_c00001{height:206.960000pt;}
.h182_c00001{height:211.601333pt;}
.h91_c00001{height:214.800000pt;}
.h180_c00001{height:225.360000pt;}
.h55_c00001{height:228.798667pt;}
.h56_c00001{height:231.040000pt;}
.h196_c00001{height:233.976098pt;}
.h187_c00001{height:234.557333pt;}
.h189_c00001{height:236.237333pt;}
.h18c_c00001{height:236.238667pt;}
.h18e_c00001{height:236.240000pt;}
.h24_c00001{height:238.640000pt;}
.h188_c00001{height:258.558667pt;}
.h152_c00001{height:265.277333pt;}
.hf1_c00001{height:265.278667pt;}
.h18_c00001{height:276.160000pt;}
.h186_c00001{height:317.441333pt;}
.h58_c00001{height:374.718667pt;}
.h5a_c00001{height:492.480000pt;}
.h4e_c00001{height:580.800000pt;}
.h0_c00001{height:1122.520000pt;}
.h1_c00001{height:1122.666667pt;}
.w20_c00001{width:-591.222667pt;}
.wf_c00001{width:-591.141333pt;}
.w9_c00001{width:-590.502667pt;}
.w5c_c00001{width:-583.221333pt;}
.w43_c00001{width:-581.718667pt;}
.w7a_c00001{width:-575.701333pt;}
.w78_c00001{width:-575.381333pt;}
.w96_c00001{width:-572.580000pt;}
.w94_c00001{width:-572.578667pt;}
.wad_c00001{width:-557.541333pt;}
.w87_c00001{width:-557.460000pt;}
.w81_c00001{width:-557.458667pt;}
.w6a_c00001{width:-550.260000pt;}
.w65_c00001{width:-550.258667pt;}
.w49_c00001{width:-519.221333pt;}
.w73_c00001{width:-478.341333pt;}
.w57_c00001{width:-475.541333pt;}
.w8f_c00001{width:-470.821333pt;}
.w82_c00001{width:-462.901333pt;}
.w1e_c00001{width:-423.701333pt;}
.w66_c00001{width:-415.861333pt;}
.w83_c00001{width:-406.261333pt;}
.w40_c00001{width:-405.318667pt;}
.w67_c00001{width:-374.181333pt;}
.w74_c00001{width:-361.141333pt;}
.w84_c00001{width:-358.261333pt;}
.w58_c00001{width:-353.781333pt;}
.w90_c00001{width:-350.581333pt;}
.w4a_c00001{width:-343.061333pt;}
.w41_c00001{width:-331.318667pt;}
.w64_c00001{width:-316.821333pt;}
.w85_c00001{width:-273.141333pt;}
.w4b_c00001{width:-272.901333pt;}
.w44_c00001{width:-257.560000pt;}
.w42_c00001{width:-257.558667pt;}
.w75_c00001{width:-247.062667pt;}
.w59_c00001{width:-239.621333pt;}
.w91_c00001{width:-234.661333pt;}
.w68_c00001{width:-215.301333pt;}
.wae_c00001{width:-206.502667pt;}
.w4c_c00001{width:-202.661333pt;}
.wa1_c00001{width:-167.142667pt;}
.w30_c00001{width:-164.024000pt;}
.w31_c00001{width:-164.022667pt;}
.w98_c00001{width:-162.261333pt;}
.w9c_c00001{width:-159.141333pt;}
.w21_c00001{width:-158.821333pt;}
.w9a_c00001{width:-158.661333pt;}
.wa_c00001{width:-158.101333pt;}
.w11_c00001{width:-158.100000pt;}
.w10_c00001{width:-158.098667pt;}
.w3e_c00001{width:-156.997333pt;}
.w9e_c00001{width:-155.144000pt;}
.w9f_c00001{width:-155.142667pt;}
.w86_c00001{width:-132.181333pt;}
.w4d_c00001{width:-117.621333pt;}
.w76_c00001{width:-111.702667pt;}
.w34_c00001{width:-109.064000pt;}
.w35_c00001{width:-109.062667pt;}
.wb_c00001{width:-109.061333pt;}
.w69_c00001{width:-108.661333pt;}
.w1f_c00001{width:-107.141333pt;}
.w5a_c00001{width:-103.701333pt;}
.w92_c00001{width:-97.941333pt;}
.w3f_c00001{width:-57.558667pt;}
.wac_c00001{width:-37.701333pt;}
.w79_c00001{width:-22.500000pt;}
.w77_c00001{width:-22.181333pt;}
.w4e_c00001{width:-21.621333pt;}
.w5d_c00001{width:-10.421333pt;}
.w5b_c00001{width:-10.101333pt;}
.w95_c00001{width:-6.341333pt;}
.w93_c00001{width:-6.021333pt;}
.w2_c00001{width:0.000000pt;}
.w3_c00001{width:0.058667pt;}
.w60_c00001{width:41.680000pt;}
.w7e_c00001{width:48.000000pt;}
.w8_c00001{width:48.400000pt;}
.w22_c00001{width:49.120000pt;}
.w32_c00001{width:54.317333pt;}
.w7d_c00001{width:56.640000pt;}
.w61_c00001{width:57.360000pt;}
.w47_c00001{width:70.240000pt;}
.w2c_c00001{width:73.360000pt;}
.w3a_c00001{width:73.440000pt;}
.w39_c00001{width:73.680000pt;}
.w2b_c00001{width:73.920000pt;}
.w15_c00001{width:75.280000pt;}
.w16_c00001{width:84.960000pt;}
.w48_c00001{width:85.040000pt;}
.w7f_c00001{width:85.120000pt;}
.wa8_c00001{width:87.040000pt;}
.w72_c00001{width:89.201333pt;}
.w70_c00001{width:89.520000pt;}
.w8e_c00001{width:91.600000pt;}
.w8c_c00001{width:91.920000pt;}
.w12_c00001{width:92.080000pt;}
.w56_c00001{width:93.280000pt;}
.w1d_c00001{width:93.438667pt;}
.wd_c00001{width:93.520000pt;}
.w54_c00001{width:93.600000pt;}
.w17_c00001{width:94.080000pt;}
.w6_c00001{width:94.158667pt;}
.w18_c00001{width:94.240000pt;}
.w7b_c00001{width:94.560000pt;}
.w46_c00001{width:96.000000pt;}
.w6c_c00001{width:97.040000pt;}
.w4f_c00001{width:98.080000pt;}
.w55_c00001{width:98.720000pt;}
.w37_c00001{width:99.040000pt;}
.w36_c00001{width:100.241333pt;}
.w29_c00001{width:100.480000pt;}
.w62_c00001{width:101.520000pt;}
.w28_c00001{width:101.760000pt;}
.w71_c00001{width:105.920000pt;}
.w6b_c00001{width:106.560000pt;}
.w63_c00001{width:106.640000pt;}
.w50_c00001{width:107.680000pt;}
.w88_c00001{width:108.720000pt;}
.w8d_c00001{width:109.362667pt;}
.w1a_c00001{width:113.760000pt;}
.w6e_c00001{width:114.078667pt;}
.w52_c00001{width:114.160000pt;}
.w8a_c00001{width:115.920000pt;}
.w6d_c00001{width:117.200000pt;}
.w89_c00001{width:120.240000pt;}
.wa6_c00001{width:120.560000pt;}
.w51_c00001{width:121.760000pt;}
.w3b_c00001{width:123.120000pt;}
.w7c_c00001{width:124.482667pt;}
.w5e_c00001{width:131.682667pt;}
.w19_c00001{width:132.160000pt;}
.w5f_c00001{width:134.400000pt;}
.w6f_c00001{width:135.438667pt;}
.w53_c00001{width:135.920000pt;}
.w8b_c00001{width:136.720000pt;}
.w24_c00001{width:140.082667pt;}
.w80_c00001{width:140.960000pt;}
.wa3_c00001{width:144.000000pt;}
.wa5_c00001{width:144.078667pt;}
.wa4_c00001{width:144.080000pt;}
.w3c_c00001{width:147.437333pt;}
.w2d_c00001{width:147.677333pt;}
.w2a_c00001{width:162.720000pt;}
.w25_c00001{width:163.040000pt;}
.wab_c00001{width:168.800000pt;}
.w38_c00001{width:176.080000pt;}
.w45_c00001{width:176.160000pt;}
.wa9_c00001{width:179.520000pt;}
.w3d_c00001{width:199.680000pt;}
.w2e_c00001{width:202.560000pt;}
.w14_c00001{width:246.240000pt;}
.w4_c00001{width:262.800000pt;}
.wa7_c00001{width:274.080000pt;}
.w27_c00001{width:303.440000pt;}
.w5_c00001{width:315.600000pt;}
.w1c_c00001{width:349.277333pt;}
.w1b_c00001{width:349.600000pt;}
.w26_c00001{width:350.560000pt;}
.waa_c00001{width:350.958667pt;}
.wb0_c00001{width:378.522667pt;}
.wa0_c00001{width:424.638667pt;}
.w97_c00001{width:426.160000pt;}
.w2f_c00001{width:426.557333pt;}
.wa2_c00001{width:426.960000pt;}
.w9d_c00001{width:427.997333pt;}
.w99_c00001{width:431.680000pt;}
.w7_c00001{width:431.760000pt;}
.w9b_c00001{width:432.160000pt;}
.we_c00001{width:432.402667pt;}
.w13_c00001{width:433.760000pt;}
.w33_c00001{width:520.637333pt;}
.w23_c00001{width:525.840000pt;}
.wc_c00001{width:526.560000pt;}
.waf_c00001{width:793.700000pt;}
.w0_c00001{width:793.701333pt;}
.w1_c00001{width:794.000000pt;}
.x1_c00001{left:-745.700800pt;}
.x1cf_c00001{left:-729.860800pt;}
.x9b_c00001{left:-704.197867pt;}
.x9c_c00001{left:-700.517867pt;}
.x2_c00001{left:-680.260800pt;}
.x198_c00001{left:-678.260800pt;}
.xbd_c00001{left:-677.300800pt;}
.x43_c00001{left:-675.540800pt;}
.x8c_c00001{left:-672.980800pt;}
.x1bc_c00001{left:-672.020800pt;}
.x36_c00001{left:-670.820800pt;}
.x35_c00001{left:-668.900800pt;}
.x18a_c00001{left:-667.220800pt;}
.x5e_c00001{left:-665.304800pt;}
.x18e_c00001{left:-664.020800pt;}
.x5d_c00001{left:-662.580800pt;}
.x20_c00001{left:-661.540800pt;}
.x23_c00001{left:-659.860800pt;}
.x1b3_c00001{left:-658.260800pt;}
.x27_c00001{left:-656.900800pt;}
.x182_c00001{left:-655.216160pt;}
.x18c_c00001{left:-653.940800pt;}
.x5c_c00001{left:-652.900800pt;}
.x3_c00001{left:-651.860800pt;}
.x18b_c00001{left:-650.578720pt;}
.x1b4_c00001{left:-648.897440pt;}
.x181_c00001{left:-639.461440pt;}
.x5a_c00001{left:-635.940800pt;}
.x19b_c00001{left:-631.221733pt;}
.x192_c00001{left:-630.263040pt;}
.x188_c00001{left:-628.342160pt;}
.x1a9_c00001{left:-627.378400pt;}
.x25_c00001{left:-626.260800pt;}
.x1bd_c00001{left:-624.818400pt;}
.x1a5_c00001{left:-623.062080pt;}
.x58_c00001{left:-608.260800pt;}
.x19c_c00001{left:-586.980933pt;}
.x32_c00001{left:-585.460800pt;}
.x17f_c00001{left:-584.115440pt;}
.x3e_c00001{left:-583.222880pt;}
.xee_c00001{left:-578.580800pt;}
.x24_c00001{left:-576.420800pt;}
.x21_c00001{left:-574.100800pt;}
.x13b_c00001{left:-570.660800pt;}
.x16f_c00001{left:-567.860800pt;}
.xf7_c00001{left:-558.260800pt;}
.x1a1_c00001{left:-555.300800pt;}
.x175_c00001{left:-553.460800pt;}
.x1d0_c00001{left:-550.256800pt;}
.x161_c00001{left:-547.224400pt;}
.x155_c00001{left:-540.820800pt;}
.x156_c00001{left:-532.500800pt;}
.x1ba_c00001{left:-528.180800pt;}
.x120_c00001{left:-523.940800pt;}
.x1b8_c00001{left:-521.460800pt;}
.x13f_c00001{left:-516.340800pt;}
.x57_c00001{left:-513.780800pt;}
.x113_c00001{left:-510.980933pt;}
.x114_c00001{left:-509.220800pt;}
.xf6_c00001{left:-506.180800pt;}
.x157_c00001{left:-505.138640pt;}
.xd4_c00001{left:-504.100800pt;}
.x1bb_c00001{left:-500.820800pt;}
.x141_c00001{left:-497.860800pt;}
.x1ac_c00001{left:-496.500800pt;}
.x1c1_c00001{left:-492.740800pt;}
.x158_c00001{left:-490.980933pt;}
.xc2_c00001{left:-489.380800pt;}
.x1ad_c00001{left:-488.180240pt;}
.x1c5_c00001{left:-484.423653pt;}
.x15d_c00001{left:-482.420800pt;}
.x197_c00001{left:-480.420800pt;}
.x15b_c00001{left:-474.980933pt;}
.x13c_c00001{left:-473.700800pt;}
.xef_c00001{left:-470.900800pt;}
.x154_c00001{left:-467.540800pt;}
.x170_c00001{left:-466.180800pt;}
.x8b_c00001{left:-464.180800pt;}
.x65_c00001{left:-461.540800pt;}
.x193_c00001{left:-460.576800pt;}
.x26_c00001{left:-458.740800pt;}
.x1a6_c00001{left:-457.136800pt;}
.x1a0_c00001{left:-453.784800pt;}
.x81_c00001{left:-446.660800pt;}
.x115_c00001{left:-443.940800pt;}
.x124_c00001{left:-442.820800pt;}
.xf8_c00001{left:-436.420800pt;}
.x118_c00001{left:-435.380800pt;}
.x176_c00001{left:-433.220800pt;}
.x1c2_c00001{left:-431.780800pt;}
.x1c6_c00001{left:-430.500800pt;}
.x11a_c00001{left:-427.940800pt;}
.x15e_c00001{left:-425.780800pt;}
.x11c_c00001{left:-423.780800pt;}
.x110_c00001{left:-420.500800pt;}
.x15c_c00001{left:-418.340800pt;}
.x8a_c00001{left:-413.780800pt;}
.x89_c00001{left:-412.580800pt;}
.x37_c00001{left:-410.740800pt;}
.x33_c00001{left:-409.220800pt;}
.x1be_c00001{left:-406.423040pt;}
.x162_c00001{left:-401.540800pt;}
.xa7_c00001{left:-400.277867pt;}
.x159_c00001{left:-394.900800pt;}
.x121_c00001{left:-393.700800pt;}
.x140_c00001{left:-391.780800pt;}
.x173_c00001{left:-388.580800pt;}
.xc3_c00001{left:-385.380800pt;}
.xf4_c00001{left:-384.340800pt;}
.x11d_c00001{left:-382.100800pt;}
.x145_c00001{left:-380.740800pt;}
.x111_c00001{left:-378.820800pt;}
.x15f_c00001{left:-377.780800pt;}
.x189_c00001{left:-375.380800pt;}
.x142_c00001{left:-373.300800pt;}
.xc7_c00001{left:-371.220800pt;}
.xd5_c00001{left:-370.100800pt;}
.x160_c00001{left:-366.180800pt;}
.xcc_c00001{left:-362.660800pt;}
.x127_c00001{left:-360.100800pt;}
.x13d_c00001{left:-356.500800pt;}
.xd0_c00001{left:-355.220800pt;}
.x116_c00001{left:-353.460800pt;}
.x9f_c00001{left:-350.517867pt;}
.xf0_c00001{left:-349.140800pt;}
.xbe_c00001{left:-347.780800pt;}
.x167_c00001{left:-345.060800pt;}
.x59_c00001{left:-344.020800pt;}
.xa5_c00001{left:-343.077733pt;}
.x122_c00001{left:-336.340800pt;}
.x119_c00001{left:-328.900800pt;}
.x11e_c00001{left:-324.740800pt;}
.xf9_c00001{left:-322.340800pt;}
.x80_c00001{left:-316.580800pt;}
.xc8_c00001{left:-309.780800pt;}
.x163_c00001{left:-300.100800pt;}
.x117_c00001{left:-295.780800pt;}
.xd9_c00001{left:-292.420800pt;}
.xa0_c00001{left:-287.797867pt;}
.xcd_c00001{left:-284.980800pt;}
.xc4_c00001{left:-280.820800pt;}
.xbf_c00001{left:-277.540800pt;}
.x143_c00001{left:-274.100800pt;}
.x174_c00001{left:-272.660800pt;}
.x64_c00001{left:-270.660800pt;}
.xa6_c00001{left:-269.317867pt;}
.x9d_c00001{left:-252.597867pt;}
.xd8_c00001{left:-246.020800pt;}
.x125_c00001{left:-242.340800pt;}
.xc9_c00001{left:-239.380800pt;}
.xf1_c00001{left:-234.980800pt;}
.x168_c00001{left:-232.180800pt;}
.x171_c00001{left:-229.940800pt;}
.x11b_c00001{left:-227.460800pt;}
.x11f_c00001{left:-223.300800pt;}
.x112_c00001{left:-220.020800pt;}
.x3f_c00001{left:-216.820800pt;}
.xce_c00001{left:-214.820800pt;}
.x15a_c00001{left:-212.580800pt;}
.xc5_c00001{left:-210.660800pt;}
.x12b_c00001{left:-208.740800pt;}
.xbc_c00001{left:-207.374160pt;}
.x1d1_c00001{left:-199.300800pt;}
.xca_c00001{left:-198.020800pt;}
.xc6_c00001{left:-189.540800pt;}
.xa1_c00001{left:-176.191707pt;}
.xa3_c00001{left:-168.769227pt;}
.x1aa_c00001{left:-162.183067pt;}
.x7b_c00001{left:-159.058720pt;}
.x185_c00001{left:-157.300800pt;}
.x7a_c00001{left:-156.100800pt;}
.x187_c00001{left:-154.340800pt;}
.x22_c00001{left:-153.140800pt;}
.x9e_c00001{left:-151.957733pt;}
.x34_c00001{left:-149.620800pt;}
.x194_c00001{left:-148.660800pt;}
.x186_c00001{left:-147.220800pt;}
.x180_c00001{left:-146.015867pt;}
.xd6_c00001{left:-144.580800pt;}
.x148_c00001{left:-142.260800pt;}
.x19d_c00001{left:-139.697200pt;}
.x1b2_c00001{left:-138.349040pt;}
.xcf_c00001{left:-137.140800pt;}
.x126_c00001{left:-135.700800pt;}
.xf5_c00001{left:-134.340800pt;}
.x146_c00001{left:-131.220800pt;}
.xd1_c00001{left:-129.700800pt;}
.x123_c00001{left:-128.260800pt;}
.xcb_c00001{left:-125.540800pt;}
.x144_c00001{left:-123.780800pt;}
.xc0_c00001{left:-122.260800pt;}
.x12c_c00001{left:-120.820800pt;}
.xfa_c00001{left:-115.860800pt;}
.xc1_c00001{left:-112.980800pt;}
.x13e_c00001{left:-107.060933pt;}
.xf2_c00001{left:-99.060933pt;}
.xa2_c00001{left:-95.247147pt;}
.x172_c00001{left:-93.300933pt;}
.xa4_c00001{left:-87.824667pt;}
.xd7_c00001{left:-48.660800pt;}
.xd2_c00001{left:-41.220800pt;}
.xd3_c00001{left:-33.781067pt;}
.x147_c00001{left:-26.900933pt;}
.xf3_c00001{left:-14.820933pt;}
.x177_c00001{left:-10.740933pt;}
.x0_c00001{left:0.000000pt;}
.x14_c00001{left:4.400000pt;}
.x129_c00001{left:6.560000pt;}
.x31_c00001{left:7.840000pt;}
.x60_c00001{left:9.040000pt;}
.x85_c00001{left:10.800000pt;}
.x1b_c00001{left:13.440000pt;}
.x104_c00001{left:14.720000pt;}
.x10_c00001{left:15.760000pt;}
.x14c_c00001{left:19.760000pt;}
.xff_c00001{left:20.720000pt;}
.x105_c00001{left:22.160000pt;}
.x19_c00001{left:23.120000pt;}
.x1a_c00001{left:24.800000pt;}
.x102_c00001{left:26.160000pt;}
.x1e_c00001{left:27.760000pt;}
.xa8_c00001{left:29.840000pt;}
.xed_c00001{left:31.440000pt;}
.xad_c00001{left:33.360000pt;}
.x75_c00001{left:35.680000pt;}
.x5f_c00001{left:37.840000pt;}
.xec_c00001{left:39.120000pt;}
.x150_c00001{left:40.080000pt;}
.x128_c00001{left:41.040000pt;}
.x6e_c00001{left:43.120000pt;}
.x106_c00001{left:45.280000pt;}
.x7_c00001{left:48.000000pt;}
.x103_c00001{left:49.440000pt;}
.xb2_c00001{left:50.720000pt;}
.x10b_c00001{left:52.720000pt;}
.x50_c00001{left:54.720000pt;}
.x38_c00001{left:56.400000pt;}
.x13_c00001{left:58.400000pt;}
.x14e_c00001{left:60.560000pt;}
.x6c_c00001{left:62.240000pt;}
.x4f_c00001{left:63.440000pt;}
.xb4_c00001{left:65.520000pt;}
.x135_c00001{left:66.480000pt;}
.x56_c00001{left:67.440000pt;}
.x9a_c00001{left:68.800133pt;}
.x133_c00001{left:69.920000pt;}
.x10a_c00001{left:72.160000pt;}
.x77_c00001{left:73.840000pt;}
.x76_c00001{left:75.120000pt;}
.xe5_c00001{left:76.080000pt;}
.xb0_c00001{left:77.120000pt;}
.xb_c00001{left:78.240000pt;}
.xb8_c00001{left:80.400000pt;}
.x54_c00001{left:82.320000pt;}
.xba_c00001{left:83.839733pt;}
.x13a_c00001{left:84.800000pt;}
.xe7_c00001{left:87.120000pt;}
.xe1_c00001{left:88.080000pt;}
.x55_c00001{left:89.120000pt;}
.x136_c00001{left:90.160000pt;}
.xe4_c00001{left:91.200000pt;}
.x8f_c00001{left:93.182933pt;}
.xe2_c00001{left:94.560000pt;}
.xe9_c00001{left:95.520000pt;}
.x10d_c00001{left:96.800000pt;}
.xe3_c00001{left:98.560000pt;}
.x1b6_c00001{left:100.240000pt;}
.xe8_c00001{left:102.240000pt;}
.xe6_c00001{left:105.280000pt;}
.x1c7_c00001{left:106.240000pt;}
.xa_c00001{left:107.200000pt;}
.xd_c00001{left:109.040000pt;}
.x66_c00001{left:112.480000pt;}
.x5_c00001{left:113.440000pt;}
.x108_c00001{left:114.880000pt;}
.x134_c00001{left:115.920000pt;}
.x44_c00001{left:117.040000pt;}
.x2f_c00001{left:118.484000pt;}
.x39_c00001{left:120.080000pt;}
.x82_c00001{left:121.440000pt;}
.x16_c00001{left:123.520000pt;}
.x2c_c00001{left:124.800000pt;}
.x1b0_c00001{left:125.840000pt;}
.x2b_c00001{left:126.804000pt;}
.x63_c00001{left:127.760000pt;}
.x2a_c00001{left:128.796000pt;}
.x109_c00001{left:129.760000pt;}
.x29_c00001{left:131.520000pt;}
.x17d_c00001{left:132.480000pt;}
.x17_c00001{left:133.444000pt;}
.xe_c00001{left:134.800000pt;}
.x14f_c00001{left:136.320000pt;}
.x40_c00001{left:137.840000pt;}
.x17a_c00001{left:139.520800pt;}
.x5b_c00001{left:140.800000pt;}
.x6_c00001{left:141.840000pt;}
.x184_c00001{left:143.122080pt;}
.x1b1_c00001{left:144.803360pt;}
.x8_c00001{left:145.840000pt;}
.x2e_c00001{left:147.200000pt;}
.xb1_c00001{left:149.120000pt;}
.x179_c00001{left:154.244400pt;}
.xb3_c00001{left:156.560000pt;}
.x1ae_c00001{left:157.520000pt;}
.x1c3_c00001{left:158.720000pt;}
.x1d2_c00001{left:160.640000pt;}
.x199_c00001{left:162.479067pt;}
.xb5_c00001{left:164.000000pt;}
.x183_c00001{left:165.360000pt;}
.x87_c00001{left:166.720000pt;}
.xaf_c00001{left:168.160000pt;}
.xb6_c00001{left:171.440000pt;}
.x86_c00001{left:176.800000pt;}
.x83_c00001{left:178.000000pt;}
.x61_c00001{left:179.360000pt;}
.x30_c00001{left:180.640000pt;}
.x3a_c00001{left:201.840000pt;}
.xf_c00001{left:203.840000pt;}
.x17b_c00001{left:205.280000pt;}
.x19a_c00001{left:206.720000pt;}
.x18_c00001{left:208.240000pt;}
.x17e_c00001{left:209.585360pt;}
.x3c_c00001{left:210.477920pt;}
.x93_c00001{left:212.302667pt;}
.x1b9_c00001{left:213.440000pt;}
.x178_c00001{left:214.400000pt;}
.x18f_c00001{left:215.840000pt;}
.x1c_c00001{left:217.280000pt;}
.x12d_c00001{left:218.320000pt;}
.x11_c00001{left:219.600000pt;}
.x169_c00001{left:221.120000pt;}
.x137_c00001{left:223.040000pt;}
.x16c_c00001{left:225.840000pt;}
.x4e_c00001{left:226.800000pt;}
.x1c4_c00001{left:229.440000pt;}
.x4b_c00001{left:231.436960pt;}
.x1cd_c00001{left:234.000000pt;}
.x149_c00001{left:236.240000pt;}
.x41_c00001{left:237.520000pt;}
.xfb_c00001{left:243.440000pt;}
.x151_c00001{left:246.480000pt;}
.x1c8_c00001{left:250.240000pt;}
.x67_c00001{left:252.880000pt;}
.x71_c00001{left:257.520000pt;}
.x14a_c00001{left:261.200000pt;}
.x1b5_c00001{left:265.520000pt;}
.x42_c00001{left:267.760000pt;}
.x107_c00001{left:269.760000pt;}
.x1b7_c00001{left:272.240000pt;}
.x7e_c00001{left:274.000000pt;}
.x1d5_c00001{left:276.560000pt;}
.x9_c00001{left:279.920000pt;}
.x10e_c00001{left:282.720000pt;}
.xfc_c00001{left:284.480000pt;}
.x14b_c00001{left:288.562160pt;}
.x1a3_c00001{left:297.596000pt;}
.x164_c00001{left:302.720000pt;}
.xb9_c00001{left:304.320000pt;}
.x1ab_c00001{left:305.521920pt;}
.x1c0_c00001{left:309.280000pt;}
.x190_c00001{left:313.280000pt;}
.x12e_c00001{left:315.360000pt;}
.xdc_c00001{left:318.160000pt;}
.x8d_c00001{left:319.520000pt;}
.x1cc_c00001{left:321.360000pt;}
.x3b_c00001{left:322.560000pt;}
.x7c_c00001{left:326.000000pt;}
.x16d_c00001{left:327.520000pt;}
.x1ce_c00001{left:328.560000pt;}
.x88_c00001{left:329.520000pt;}
.x2d_c00001{left:331.520000pt;}
.x191_c00001{left:333.124000pt;}
.x1d_c00001{left:334.960000pt;}
.x1a4_c00001{left:336.564000pt;}
.x19f_c00001{left:339.916000pt;}
.x7f_c00001{left:347.040000pt;}
.x28_c00001{left:350.400000pt;}
.x19e_c00001{left:354.720000pt;}
.x1bf_c00001{left:356.720000pt;}
.x45_c00001{left:359.280000pt;}
.x7d_c00001{left:363.920000pt;}
.x15_c00001{left:367.280000pt;}
.x8e_c00001{left:368.640000pt;}
.xc_c00001{left:370.960000pt;}
.x3d_c00001{left:373.680000pt;}
.xfd_c00001{left:377.840000pt;}
.x1a8_c00001{left:383.603040pt;}
.x14d_c00001{left:387.440000pt;}
.x94_c00001{left:388.702667pt;}
.x165_c00001{left:392.160000pt;}
.x1c9_c00001{left:394.320000pt;}
.x1cb_c00001{left:401.520000pt;}
.xa9_c00001{left:408.320000pt;}
.x62_c00001{left:414.000000pt;}
.x68_c00001{left:416.240000pt;}
.x1a2_c00001{left:418.400000pt;}
.xfe_c00001{left:419.520000pt;}
.xdb_c00001{left:422.480000pt;}
.x166_c00001{left:430.800000pt;}
.x12f_c00001{left:432.560000pt;}
.x10f_c00001{left:433.600000pt;}
.x46_c00001{left:434.880000pt;}
.x138_c00001{left:437.200000pt;}
.xdd_c00001{left:439.920000pt;}
.x16a_c00001{left:443.120000pt;}
.xea_c00001{left:444.560000pt;}
.xbb_c00001{left:445.920000pt;}
.x16e_c00001{left:447.840000pt;}
.xac_c00001{left:450.560000pt;}
.x1d3_c00001{left:461.440000pt;}
.x95_c00001{left:462.702667pt;}
.x10c_c00001{left:472.240000pt;}
.x100_c00001{left:476.880000pt;}
.x6d_c00001{left:490.560000pt;}
.x153_c00001{left:515.920000pt;}
.x48_c00001{left:520.240000pt;}
.x47_c00001{left:524.880000pt;}
.x90_c00001{left:536.462667pt;}
.x1ca_c00001{left:538.400000pt;}
.x91_c00001{left:541.102933pt;}
.x130_c00001{left:546.560000pt;}
.xda_c00001{left:547.680000pt;}
.x139_c00001{left:551.280000pt;}
.xde_c00001{left:554.080000pt;}
.xeb_c00001{left:558.720000pt;}
.x69_c00001{left:564.240000pt;}
.x6a_c00001{left:568.960000pt;}
.x12a_c00001{left:573.680000pt;}
.x101_c00001{left:578.400000pt;}
.xb7_c00001{left:586.320000pt;}
.xae_c00001{left:591.040000pt;}
.x52_c00001{left:595.109200pt;}
.x4c_c00001{left:602.531680pt;}
.x4a_c00001{left:614.640000pt;}
.x1d4_c00001{left:615.931040pt;}
.x96_c00001{left:617.509093pt;}
.x49_c00001{left:619.360000pt;}
.x98_c00001{left:624.937013pt;}
.x84_c00001{left:630.320000pt;}
.x1a7_c00001{left:631.517733pt;}
.x79_c00001{left:634.646640pt;}
.x1f_c00001{left:636.240000pt;}
.x78_c00001{left:637.600000pt;}
.x17c_c00001{left:639.361600pt;}
.x12_c00001{left:640.560960pt;}
.x92_c00001{left:641.743067pt;}
.x196_c00001{left:643.840000pt;}
.x18d_c00001{left:645.603867pt;}
.x73_c00001{left:646.797280pt;}
.x195_c00001{left:649.440000pt;}
.x6f_c00001{left:654.240000pt;}
.x1af_c00001{left:655.351760pt;}
.x152_c00001{left:656.880000pt;}
.x6b_c00001{left:666.320000pt;}
.x53_c00001{left:671.193280pt;}
.xaa_c00001{left:676.080000pt;}
.x4d_c00001{left:678.615760pt;}
.xab_c00001{left:680.720000pt;}
.x132_c00001{left:682.000000pt;}
.x131_c00001{left:686.640000pt;}
.xdf_c00001{left:690.000000pt;}
.xe0_c00001{left:694.640000pt;}
.x16b_c00001{left:695.760000pt;}
.x51_c00001{left:697.113040pt;}
.x97_c00001{left:698.453653pt;}
.x99_c00001{left:705.881573pt;}
.x4_c00001{left:714.992133pt;}
.x74_c00001{left:729.118000pt;}
.x70_c00001{left:736.560000pt;}
.x72_c00001{left:755.044320pt;}
.x1dc_c00001{left:830.831333pt;}
.x1df_c00001{left:836.648800pt;}
.x1dd_c00001{left:853.496281pt;}
.x1e1_c00001{left:857.394400pt;}
.x1e0_c00001{left:869.625012pt;}
.x1de_c00001{left:876.161228pt;}
.x1d6_c00001{left:975.887733pt;}
.x1d7_c00001{left:1024.856667pt;}
.x1d8_c00001{left:1171.640400pt;}
.x1da_c00001{left:1184.477733pt;}
.x1db_c00001{left:1306.934667pt;}
.x1d9_c00001{left:1342.981467pt;}
}




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